Update runtime files

This commit is contained in:
Bram Moolenaar
2022-02-20 19:48:20 +00:00
parent ad6c45f625
commit 944697ae19
28 changed files with 378 additions and 326 deletions

View File

@ -1,4 +1,4 @@
*builtin.txt* For Vim version 8.2. Last change: 2022 Feb 08 *builtin.txt* For Vim version 8.2. Last change: 2022 Feb 18
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -2082,9 +2082,12 @@ exists({expr}) The result is a Number, which is |TRUE| if {expr} is defined,
dict.key |internal-variables|). Also works dict.key |internal-variables|). Also works
list[i] for |curly-braces-names|, |Dictionary| list[i] for |curly-braces-names|, |Dictionary|
import.Func entries, |List| items, imported import.Func entries, |List| items, imported
items,etc. items, etc.
Does not work for local variables in a Does not work for local variables in a
compiled `:def` function. compiled `:def` function.
Also works for a function in |Vim9|
script, since it can be used as a
function reference.
Beware that evaluating an index may Beware that evaluating an index may
cause an error message for an invalid cause an error message for an invalid
expression. E.g.: > expression. E.g.: >
@ -2137,7 +2140,8 @@ exists({expr}) The result is a Number, which is |TRUE| if {expr} is defined,
exists("&shortname") exists("&shortname")
exists("$HOSTNAME") exists("$HOSTNAME")
exists("*strftime") exists("*strftime")
exists("*s:MyFunc") exists("*s:MyFunc") " only for legacy script
exists("*MyFunc")
exists("bufcount") exists("bufcount")
exists(":Make") exists(":Make")
exists("#CursorHold") exists("#CursorHold")
@ -4999,12 +5003,12 @@ listener_add({callback} [, {buf}]) *listener_add()*
Returns a unique ID that can be passed to |listener_remove()|. Returns a unique ID that can be passed to |listener_remove()|.
The {callback} is invoked with five arguments: The {callback} is invoked with five arguments:
a:bufnr the buffer that was changed bufnr the buffer that was changed
a:start first changed line number start first changed line number
a:end first line number below the change end first line number below the change
a:added number of lines added, negative if lines were added number of lines added, negative if lines were
deleted deleted
a:changes a List of items with details about the changes changes a List of items with details about the changes
Example: > Example: >
func Listener(bufnr, start, end, added, changes) func Listener(bufnr, start, end, added, changes)
@ -5012,7 +5016,7 @@ listener_add({callback} [, {buf}]) *listener_add()*
endfunc endfunc
call listener_add('Listener', bufnr) call listener_add('Listener', bufnr)
< The List cannot be changed. Each item in a:changes is a < The List cannot be changed. Each item in "changes" is a
dictionary with these entries: dictionary with these entries:
lnum the first line number of the change lnum the first line number of the change
end the first line below the change end the first line below the change
@ -5139,7 +5143,7 @@ luaeval({expr} [, {expr}]) *luaeval()*
map({expr1}, {expr2}) *map()* map({expr1}, {expr2}) *map()*
{expr1} must be a |List|, |String|, |Blob| or |Dictionary|. {expr1} must be a |List|, |String|, |Blob| or |Dictionary|.
When {expr1} is a |List|| or |Dictionary|, replace each When {expr1} is a |List| or |Dictionary|, replace each
item in {expr1} with the result of evaluating {expr2}. item in {expr1} with the result of evaluating {expr2}.
For a |Blob| each byte is replaced. For a |Blob| each byte is replaced.
For a |String|, each character, including composing For a |String|, each character, including composing
@ -6617,16 +6621,22 @@ reltimestr({time}) *reltimestr()*
*remote_expr()* *E449* *remote_expr()* *E449*
remote_expr({server}, {string} [, {idvar} [, {timeout}]]) remote_expr({server}, {string} [, {idvar} [, {timeout}]])
Send the {string} to {server}. The string is sent as an Send the {string} to {server}. The {server} argument is a
expression and the result is returned after evaluation. string, also see |{server}|.
The result must be a String or a |List|. A |List| is turned
into a String by joining the items with a line break in The string is sent as an expression and the result is returned
between (not at the end), like with join(expr, "\n"). after evaluation. The result must be a String or a |List|. A
|List| is turned into a String by joining the items with a
line break in between (not at the end), like with join(expr,
"\n").
If {idvar} is present and not empty, it is taken as the name If {idvar} is present and not empty, it is taken as the name
of a variable and a {serverid} for later use with of a variable and a {serverid} for later use with
|remote_read()| is stored there. |remote_read()| is stored there.
If {timeout} is given the read times out after this many If {timeout} is given the read times out after this many
seconds. Otherwise a timeout of 600 seconds is used. seconds. Otherwise a timeout of 600 seconds is used.
See also |clientserver| |RemoteReply|. See also |clientserver| |RemoteReply|.
This function is not available in the |sandbox|. This function is not available in the |sandbox|.
{only available when compiled with the |+clientserver| feature} {only available when compiled with the |+clientserver| feature}
@ -6647,7 +6657,7 @@ remote_expr({server}, {string} [, {idvar} [, {timeout}]])
remote_foreground({server}) *remote_foreground()* remote_foreground({server}) *remote_foreground()*
Move the Vim server with the name {server} to the foreground. Move the Vim server with the name {server} to the foreground.
The {server} argument is a string. The {server} argument is a string, also see |{server}|.
This works like: > This works like: >
remote_expr({server}, "foreground()") remote_expr({server}, "foreground()")
< Except that on Win32 systems the client does the work, to work < Except that on Win32 systems the client does the work, to work
@ -6696,12 +6706,17 @@ remote_read({serverid}, [{timeout}]) *remote_read()*
< <
*remote_send()* *E241* *remote_send()* *E241*
remote_send({server}, {string} [, {idvar}]) remote_send({server}, {string} [, {idvar}])
Send the {string} to {server}. The string is sent as input Send the {string} to {server}. The {server} argument is a
keys and the function returns immediately. At the Vim server string, also see |{server}|.
the keys are not mapped |:map|.
The string is sent as input keys and the function returns
immediately. At the Vim server the keys are not mapped
|:map|.
If {idvar} is present, it is taken as the name of a variable If {idvar} is present, it is taken as the name of a variable
and a {serverid} for later use with remote_read() is stored and a {serverid} for later use with remote_read() is stored
there. there.
See also |clientserver| |RemoteReply|. See also |clientserver| |RemoteReply|.
This function is not available in the |sandbox|. This function is not available in the |sandbox|.
{only available when compiled with the |+clientserver| feature} {only available when compiled with the |+clientserver| feature}
@ -6916,6 +6931,8 @@ screenpos({winid}, {lnum}, {col}) *screenpos()*
as if 'conceallevel' is zero. You can set the cursor to the as if 'conceallevel' is zero. You can set the cursor to the
right position and use |screencol()| to get the value with right position and use |screencol()| to get the value with
|conceal| taken into account. |conceal| taken into account.
If the position is in a closed fold the screen position of the
first character is returned, {col} is not used.
Can also be used as a |method|: > Can also be used as a |method|: >
GetWinid()->screenpos(lnum, col) GetWinid()->screenpos(lnum, col)
@ -7897,7 +7914,7 @@ sha256({string}) *sha256()*
shellescape({string} [, {special}]) *shellescape()* shellescape({string} [, {special}]) *shellescape()*
Escape {string} for use as a shell command argument. Escape {string} for use as a shell command argument.
When the 'shell' contains powershell (MS-Windows) or pwsh When the 'shell' contains powershell (MS-Windows) or pwsh
(MS-Windows, Linux, and MacOS) then it will enclose {string} (MS-Windows, Linux, and macOS) then it will enclose {string}
in single quotes and will double up all internal single in single quotes and will double up all internal single
quotes. quotes.
On MS-Windows, when 'shellslash' is not set, it will enclose On MS-Windows, when 'shellslash' is not set, it will enclose

View File

@ -1,4 +1,4 @@
*editing.txt* For Vim version 8.2. Last change: 2022 Feb 04 *editing.txt* For Vim version 8.2. Last change: 2022 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -222,7 +222,7 @@ If you want to keep the changed buffer without saving it, switch on the
Edit {file} always. Discard any changes to the Edit {file} always. Discard any changes to the
current buffer. current buffer.
Also see |++opt| and |+cmd|. Also see |++opt| and |+cmd|.
*:edit_#* *:e#*
:e[dit] [++opt] [+cmd] #[count] :e[dit] [++opt] [+cmd] #[count]
Edit the [count]th buffer (as shown by |:files|). Edit the [count]th buffer (as shown by |:files|).
This command does the same as [count] CTRL-^. But ":e This command does the same as [count] CTRL-^. But ":e
@ -389,7 +389,7 @@ as a wildcard when "[" is in the 'isfname' option. A simple way to avoid this
is to use "path\[[]abc]", this matches the file "path\[abc]". is to use "path\[[]abc]", this matches the file "path\[abc]".
*starstar-wildcard* *starstar-wildcard*
Expanding "**" is possible on Unix, Win32, Mac OS/X and a few other systems. Expanding "**" is possible on Unix, Win32, macOS and a few other systems.
This allows searching a directory tree. This goes up to 100 directories deep. This allows searching a directory tree. This goes up to 100 directories deep.
Note there are some commands where this works slightly differently, see Note there are some commands where this works slightly differently, see
|file-searching|. |file-searching|.
@ -1695,7 +1695,7 @@ which version of the file you want to keep.
The accuracy of the time check depends on the filesystem. On Unix it is The accuracy of the time check depends on the filesystem. On Unix it is
usually sub-second. With old file sytems and on MS-Windows it is normally one usually sub-second. With old file sytems and on MS-Windows it is normally one
second. Use has('nanotime') check if sub-second time stamp checks are second. Use `has('nanotime')` to check if sub-second time stamp checks are
available. available.
There is one situation where you get the message while there is nothing wrong: There is one situation where you get the message while there is nothing wrong:

View File

@ -1,4 +1,4 @@
*eval.txt* For Vim version 8.2. Last change: 2022 Feb 04 *eval.txt* For Vim version 8.2. Last change: 2022 Feb 20
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -1371,7 +1371,7 @@ And NOT: >
-(1.234->string()) -(1.234->string())
What comes after "->" can be a name, a simple expression (not containing any What comes after "->" can be a name, a simple expression (not containing any
parenthesis), or any expression in parenthesis: > parenthesis), or any expression in parentheses: >
base->name(args) base->name(args)
base->some.name(args) base->some.name(args)
base->alist[idx](args) base->alist[idx](args)
@ -2182,7 +2182,8 @@ v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
*v:maxcol* *maxcol-variable* *v:maxcol* *maxcol-variable*
v:maxcol Maximum line length. Depending on where it is used it can be v:maxcol Maximum line length. Depending on where it is used it can be
screen columns, characters or bytes. screen columns, characters or bytes. The value currently is
2147483647 on all systems.
*v:mouse_win* *mouse_win-variable* *v:mouse_win* *mouse_win-variable*
v:mouse_win Window number for a mouse click obtained with |getchar()|. v:mouse_win Window number for a mouse click obtained with |getchar()|.
@ -3001,8 +3002,9 @@ Also note that if you have two script files, and one calls a function in the
other and vice versa, before the used function is defined, it won't work. other and vice versa, before the used function is defined, it won't work.
Avoid using the autoload functionality at the toplevel. Avoid using the autoload functionality at the toplevel.
In |Vim9| script you will get error *E1263* if you use a function name with a In |Vim9| script you will get error *E1263* if you define a function with
"#" character when not in an autoload script. a "#" character in the name. You should use a name without "#" and use
`:export`.
Hint: If you distribute a bunch of scripts you can pack them together with the Hint: If you distribute a bunch of scripts you can pack them together with the
|vimball| utility. Also read the user manual |distribute-script|. |vimball| utility. Also read the user manual |distribute-script|.

View File

@ -1,4 +1,4 @@
*options.txt* For Vim version 8.2. Last change: 2022 Feb 08 *options.txt* For Vim version 8.2. Last change: 2022 Feb 18
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -4038,7 +4038,7 @@ A jump table for the options with a short description can be found at |Q_op|.
'guitablabel' 'gtl' string (default empty) 'guitablabel' 'gtl' string (default empty)
global global
{only available when compiled with GUI enabled} {only available when compiled with GUI enabled}
When nonempty describes the text to use in a label of the GUI tab When non-empty describes the text to use in a label of the GUI tab
pages line. When empty and when the result is empty Vim will use a pages line. When empty and when the result is empty Vim will use a
default label. See |setting-guitablabel| for more info. default label. See |setting-guitablabel| for more info.
@ -4056,7 +4056,7 @@ A jump table for the options with a short description can be found at |Q_op|.
'guitabtooltip' 'gtt' string (default empty) 'guitabtooltip' 'gtt' string (default empty)
global global
{only available when compiled with GUI enabled} {only available when compiled with GUI enabled}
When nonempty describes the text to use in a tooltip for the GUI tab When non-empty describes the text to use in a tooltip for the GUI tab
pages line. When empty Vim will use a default tooltip. pages line. When empty Vim will use a default tooltip.
This option is otherwise just like 'guitablabel' above. This option is otherwise just like 'guitablabel' above.
You can include a line break. Simplest method is to use |:let|: > You can include a line break. Simplest method is to use |:let|: >
@ -7459,7 +7459,7 @@ A jump table for the options with a short description can be found at |Q_op|.
global or local to window |global-local| global or local to window |global-local|
{not available when compiled without the |+statusline| {not available when compiled without the |+statusline|
feature} feature}
When nonempty, this option determines the content of the status line. When non-empty, this option determines the content of the status line.
Also see |status-line|. Also see |status-line|.
The option consists of printf style '%' items interspersed with The option consists of printf style '%' items interspersed with
@ -7767,7 +7767,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'tabline'* *'tal'* *'tabline'* *'tal'*
'tabline' 'tal' string (default empty) 'tabline' 'tal' string (default empty)
global global
When nonempty, this option determines the content of the tab pages When non-empty, this option determines the content of the tab pages
line at the top of the Vim window. When empty Vim will use a default line at the top of the Vim window. When empty Vim will use a default
tab pages line. See |setting-tabline| for more info. tab pages line. See |setting-tabline| for more info.

View File

@ -1,4 +1,4 @@
*os_win32.txt* For Vim version 8.2. Last change: 2021 Apr 05 *os_win32.txt* For Vim version 8.2. Last change: 2022 Feb 14
VIM REFERENCE MANUAL by George Reilly VIM REFERENCE MANUAL by George Reilly
@ -294,7 +294,7 @@ A. When using :! to run an external command, you can run it with "start". For
/b no console window will be opened /b no console window will be opened
You can use only one of these flags at a time. A second one will be You can use only one of these flags at a time. A second one will be
treated as the start of the command. treated as the start of the command.
*windows-asynchronously*
Q. How do I avoid getting a window for programs that I run asynchronously? Q. How do I avoid getting a window for programs that I run asynchronously?
A. You have two possible solutions depending on what you want: A. You have two possible solutions depending on what you want:
1) You may use the /min flag in order to run program in a minimized state 1) You may use the /min flag in order to run program in a minimized state
@ -308,17 +308,17 @@ A. You have two possible solutions depending on what you want:
Example for a console application, run Exuberant ctags: > Example for a console application, run Exuberant ctags: >
:!start /min ctags -R . :!start /min ctags -R .
< When it has finished you should see file named "tags" in your current < When it has finished you should see file named "tags" in your current
directory. You should notice the window title blinking on your taskbar. directory. You should notice the window title blinking on your taskbar.
This is more noticeable for commands that take longer. This is more noticeable for commands that take longer.
Now delete the "tags" file and run this command: > Now delete the "tags" file and run this command: >
:!start /b ctags -R . :!start /b ctags -R .
< You should have the same "tags" file, but this time there will be no < You should have the same "tags" file, but this time there will be no
blinking on the taskbar. blinking on the taskbar.
Example for a GUI application: > Example for a GUI application: >
:!start /min notepad :!start /min notepad
:!start /b notepad :!start /b notepad
< The first command runs notepad minimized and the second one runs it < The first command runs notepad minimized and the second one runs it
normally. normally.
*windows-icon* *windows-icon*

View File

@ -1,4 +1,4 @@
*remote.txt* For Vim version 8.2. Last change: 2021 Dec 27 *remote.txt* For Vim version 8.2. Last change: 2022 Feb 17
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -120,6 +120,10 @@ when sending command to it.
The --serverlist argument will cause Vim to print a list of registered command The --serverlist argument will cause Vim to print a list of registered command
servers on the standard output (stdout) and exit. servers on the standard output (stdout) and exit.
*{server}*
The {server} argument is used by several functions. When this is an empty
string then on Unix the default server name is used, which is "GVIM". On
MS-Windows an empty string does not work.
Win32 Note: Making the Vim server go to the foreground doesn't always work, Win32 Note: Making the Vim server go to the foreground doesn't always work,
because MS-Windows doesn't allow it. The client will move the server to the because MS-Windows doesn't allow it. The client will move the server to the

View File

@ -2415,6 +2415,7 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
:dsp tagsrch.txt /*:dsp* :dsp tagsrch.txt /*:dsp*
:dsplit tagsrch.txt /*:dsplit* :dsplit tagsrch.txt /*:dsplit*
:e editing.txt /*:e* :e editing.txt /*:e*
:e# editing.txt /*:e#*
:ea undo.txt /*:ea* :ea undo.txt /*:ea*
:earlier undo.txt /*:earlier* :earlier undo.txt /*:earlier*
:ec eval.txt /*:ec* :ec eval.txt /*:ec*
@ -2432,6 +2433,7 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
:edit editing.txt /*:edit* :edit editing.txt /*:edit*
:edit! editing.txt /*:edit!* :edit! editing.txt /*:edit!*
:edit!_f editing.txt /*:edit!_f* :edit!_f editing.txt /*:edit!_f*
:edit_# editing.txt /*:edit_#*
:edit_f editing.txt /*:edit_f* :edit_f editing.txt /*:edit_f*
:el eval.txt /*:el* :el eval.txt /*:el*
:else eval.txt /*:else* :else eval.txt /*:else*
@ -4032,6 +4034,7 @@ E1075 vim9.txt /*E1075*
E1076 eval.txt /*E1076* E1076 eval.txt /*E1076*
E1077 vim9.txt /*E1077* E1077 vim9.txt /*E1077*
E108 eval.txt /*E108* E108 eval.txt /*E108*
E1080 vim9.txt /*E1080*
E1081 eval.txt /*E1081* E1081 eval.txt /*E1081*
E1083 editing.txt /*E1083* E1083 editing.txt /*E1083*
E1084 eval.txt /*E1084* E1084 eval.txt /*E1084*
@ -10529,6 +10532,7 @@ vim9-namespace vim9.txt /*vim9-namespace*
vim9-no-dict-function vim9.txt /*vim9-no-dict-function* vim9-no-dict-function vim9.txt /*vim9-no-dict-function*
vim9-rationale vim9.txt /*vim9-rationale* vim9-rationale vim9.txt /*vim9-rationale*
vim9-reload vim9.txt /*vim9-reload* vim9-reload vim9.txt /*vim9-reload*
vim9-s-namespace vim9.txt /*vim9-s-namespace*
vim9-scopes vim9.txt /*vim9-scopes* vim9-scopes vim9.txt /*vim9-scopes*
vim9-script-intro usr_46.txt /*vim9-script-intro* vim9-script-intro usr_46.txt /*vim9-script-intro*
vim9-types vim9.txt /*vim9-types* vim9-types vim9.txt /*vim9-types*
@ -10686,6 +10690,7 @@ windowid windows.txt /*windowid*
windowid-variable eval.txt /*windowid-variable* windowid-variable eval.txt /*windowid-variable*
windows windows.txt /*windows* windows windows.txt /*windows*
windows-3.1 os_win32.txt /*windows-3.1* windows-3.1 os_win32.txt /*windows-3.1*
windows-asynchronously os_win32.txt /*windows-asynchronously*
windows-icon os_win32.txt /*windows-icon* windows-icon os_win32.txt /*windows-icon*
windows-intro windows.txt /*windows-intro* windows-intro windows.txt /*windows-intro*
windows-starting windows.txt /*windows-starting* windows-starting windows.txt /*windows-starting*
@ -10859,6 +10864,7 @@ zz scroll.txt /*zz*
{offset} pattern.txt /*{offset}* {offset} pattern.txt /*{offset}*
{register} change.txt /*{register}* {register} change.txt /*{register}*
{rhs} map.txt /*{rhs}* {rhs} map.txt /*{rhs}*
{server} remote.txt /*{server}*
{subject} helphelp.txt /*{subject}* {subject} helphelp.txt /*{subject}*
{} intro.txt /*{}* {} intro.txt /*{}*
} motion.txt /*}* } motion.txt /*}*

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 8.2. Last change: 2022 Feb 11 *todo.txt* For Vim version 8.2. Last change: 2022 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -38,13 +38,9 @@ browser use: https://github.com/vim/vim/issues/1234
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
Disallow using "s:" in Vim9 script at the script level.
Disallow a legacy function creating an s: variable in Vim9 script.
Once Vim9 is stable: Once Vim9 is stable:
- Use Vim9 for runtime files. - Use Vim9 for runtime files.
- Check code coverage, add more tests if needed. - Check code coverage, add more tests if needed.
vim9compile.c
vim9execute.c vim9execute.c
vim9expr.c vim9expr.c
vim9instr.c vim9instr.c
@ -421,9 +417,6 @@ When editing a file with ":edit" the output of :swapname is relative, while
editing it with "vim file" it is absolute. (#355) editing it with "vim file" it is absolute. (#355)
Which one should it be? Which one should it be?
:map output does not clear the reset of the command line.
(#5623, also see #5962)
Problem with auto-formatting - inserting space and putting cursor before added Problem with auto-formatting - inserting space and putting cursor before added
character. (#6154) character. (#6154)

View File

@ -162,7 +162,7 @@ and avoid errors. Such as thinking that the "-0o36" above makes the number
negative, while it is actually seen as a subtraction. negative, while it is actually seen as a subtraction.
To actually have the minus sign be used for negation, you can put the second To actually have the minus sign be used for negation, you can put the second
expression in parenthesis: > expression in parentheses: >
echo -0x7f (-0o36) echo -0x7f (-0o36)

View File

@ -1,4 +1,4 @@
.TH VIM 1 "2006 Apr 11" .TH VIM 1 "2021 Jun 13"
.SH 名前 .SH 名前
vim \- Vi IMproved, プログラマのテキストエディタ vim \- Vi IMproved, プログラマのテキストエディタ
.SH 書式 .SH 書式

View File

@ -1,4 +1,4 @@
*vim9.txt* For Vim version 8.2. Last change: 2022 Feb 11 *vim9.txt* For Vim version 8.2. Last change: 2022 Feb 18
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -282,13 +282,14 @@ If you do want to keep items, use: >
vim9script noclear vim9script noclear
You want to use this in scripts that use a `finish` command to bail out at You want to use this in scripts that use a `finish` command to bail out at
some point when loaded again. E.g. when a buffer local option is set: > some point when loaded again. E.g. when a buffer local option is set to a
function, the function does not need to be defined more than once: >
vim9script noclear vim9script noclear
setlocal completefunc=SomeFunc setlocal completefunc=SomeFunc
if exists('*g:SomeFunc') if exists('*SomeFunc')
finish finish
endif endif
def g:SomeFunc() def SomeFunc()
.... ....
@ -422,7 +423,7 @@ similar to how a function argument can be ignored: >
[a, _, c] = theList [a, _, c] = theList
To ignore any remaining items: > To ignore any remaining items: >
[a, b; _] = longList [a, b; _] = longList
< *E1163* < *E1163* *E1080*
Declaring more than one variable at a time, using the unpack notation, is Declaring more than one variable at a time, using the unpack notation, is
possible. Each variable can have a type or infer it from the value: > possible. Each variable can have a type or infer it from the value: >
var [v1: number, v2] = GetValues() var [v1: number, v2] = GetValues()
@ -837,6 +838,7 @@ Instead of `:k` you can use `:mark`.
Comparators ~ Comparators ~
The 'ignorecase' option is not used for comparators that use strings. The 'ignorecase' option is not used for comparators that use strings.
Thus "=~" works like "=~#".
Abort after error ~ Abort after error ~
@ -1430,32 +1432,61 @@ In legacy Vim script, where a number was expected, a string would be
automatically converted to a number. This was convenient for an actual number automatically converted to a number. This was convenient for an actual number
such as "123", but leads to unexpected problems (and no error message) if the such as "123", but leads to unexpected problems (and no error message) if the
string doesn't start with a number. Quite often this leads to hard-to-find string doesn't start with a number. Quite often this leads to hard-to-find
bugs. bugs. e.g.: >
echo 123 == '123'
< 1 ~
With an accidental space: >
echo 123 == ' 123'
< 0 ~
*E1206* *E1210* *E1212* *E1206* *E1210* *E1212*
In Vim9 script this has been made stricter. In most places it works just as In Vim9 script this has been made stricter. In most places it works just as
before, if the value used matches the expected type. There will sometimes be before if the value used matches the expected type. There will sometimes be
an error, thus breaking backwards compatibility. For example: an error, thus breaking backwards compatibility. For example:
- Using a number other than 0 or 1 where a boolean is expected. *E1023* - Using a number other than 0 or 1 where a boolean is expected. *E1023*
- Using a string value when setting a number option. - Using a string value when setting a number option.
- Using a number where a string is expected. *E1024* *E1105* - Using a number where a string is expected. *E1024* *E1105*
One consequence is that the item type of a list or dict given to |map()| must One consequence is that the item type of a list or dict given to |map()| must
not change. This will give an error in Vim9 script: > not change, if the type was declared. This will give an error in Vim9
echo map([1, 2, 3], (i, v) => 'item ' .. i) script: >
E1012: Type mismatch; expected number but got string var mylist: list<number> = [1, 2, 3]
Instead use |mapnew()|: > echo map(mylist, (i, v) => 'item ' .. i)
echo mapnew([1, 2, 3], (i, v) => 'item ' .. i) < E1012: Type mismatch; expected number but got string in map() ~
['item 0', 'item 1', 'item 2']
If the item type was determined to be "any" it can change to a more specific Instead use |mapnew()|, it creates a new list: >
type. E.g. when a list of mixed types gets changed to a list of strings: > var mylist: list<number> = [1, 2, 3]
echo mapnew(mylist, (i, v) => 'item ' .. i)
< ['item 0', 'item 1', 'item 2'] ~
If the item type was not declared or determined to be "any" it can change to a
more specific type. E.g. when a list of mixed types gets changed to a list of
strings: >
var mylist = [1, 2.0, '3'] var mylist = [1, 2.0, '3']
# typename(mylist) == "list<any>" # typename(mylist) == "list<any>"
map(mylist, (i, v) => 'item ' .. i) map(mylist, (i, v) => 'item ' .. i)
# typename(mylist) == "list<string>", no error # typename(mylist) == "list<string>", no error
< *E1158*
There is a subtle difference between using a list constant directly and
through a variable declaraiton. Because of type inference, when using a list
constant to initialize a variable, this also sets the declared type: >
var mylist = [1, 2, 3]
# typename(mylist) == "list<number>"
echo map(mylist, (i, v) => 'item ' .. i) # Error!
When using the list constant directly, the type is not declared and is allowed
to change: >
echo map([1, 2, 3], (i, v) => 'item ' .. i) # OK
The reasoning behind this is that when a type is declared and the list is
passed around and changed, the declaration must always hold. So that you can
rely on the type to match the declared type. For a constant this is not
needed.
*E1158*
Same for |extend()|, use |extendnew()| instead, and for |flatten()|, use Same for |extend()|, use |extendnew()| instead, and for |flatten()|, use
|flattennew()| instead. |flattennew()| instead. Since |flatten()| is intended to always change the
type, it can not be used in Vim9 script.
*E1211* *E1217* *E1218* *E1219* *E1220* *E1221* *E1211* *E1217* *E1218* *E1219* *E1220* *E1221*
*E1222* *E1223* *E1224* *E1225* *E1226* *E1227* *E1222* *E1223* *E1224* *E1225* *E1226* *E1227*
*E1228* *E1238* *E1250* *E1251* *E1252* *E1253* *E1228* *E1238* *E1250* *E1251* *E1252* *E1253*

View File

@ -1,7 +1,7 @@
" Vim support file to detect file types " Vim support file to detect file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2022 Jan 31 " Last Change: 2022 Feb 13
" Listen very carefully, I will say this only once " Listen very carefully, I will say this only once
if exists("did_load_filetypes") if exists("did_load_filetypes")

View File

@ -2,13 +2,14 @@
" "
" Menu Translations: Japanese (EUC-JP) " Menu Translations: Japanese (EUC-JP)
" Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com>
" Last Change: 18-Jul-2018. " Last Change: 20-Feb-2022.
" Generated from menu_ja_jp.utf-8.vim, DO NOT EDIT
" "
" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
" vim-jp <http://vim-jp.org/> " vim-jp <http://vim-jp.org/>
" "
" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
"
" Generated from menu_ja_jp.utf-8.vim, DO NOT EDIT
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@ -24,7 +25,7 @@ scriptencoding euc-jp
menutrans &Help <09>إ<EFBFBD><EFBFBD><EFBFBD>(&H) menutrans &Help <09>إ<EFBFBD><EFBFBD><EFBFBD>(&H)
menutrans &Overview<Tab><F1> <09><>ά(&O)<Tab><F1> menutrans &Overview<Tab><F1> <09><>ά(&O)<Tab><F1>
menutrans &User\ Manual <09><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ˥<EFBFBD><EFBFBD>(&U) menutrans &User\ Manual <09><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ˥<EFBFBD><EFBFBD>(&U)
menutrans &How-to\ links &How-to<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> menutrans &How-To\ links &How-to<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
menutrans &Credits <09><><EFBFBD><EFBFBD>å<EFBFBD>(&C) menutrans &Credits <09><><EFBFBD><EFBFBD>å<EFBFBD>(&C)
menutrans Co&pying <09><><EFBFBD><EFBFBD><EEB8A2><EFBFBD><EFBFBD>(&P) menutrans Co&pying <09><><EFBFBD><EFBFBD><EEB8A2><EFBFBD><EFBFBD>(&P)
menutrans &Sponsor/Register <09><><EFBFBD>ݥ󥵡<DDA5>/<EFBFBD><EFBFBD>Ͽ(&S) menutrans &Sponsor/Register <09><><EFBFBD>ݥ󥵡<DDA5>/<EFBFBD><EFBFBD>Ͽ(&S)
@ -271,10 +272,9 @@ if has("toolbar")
tmenu ToolBar.Cut <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤ<EFBFBD><EFBFBD>ڤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.Cut <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤ<EFBFBD><EFBFBD>ڤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
tmenu ToolBar.Copy <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤإ<EFBFBD><EFBFBD>ԡ<EFBFBD> tmenu ToolBar.Copy <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤإ<EFBFBD><EFBFBD>ԡ<EFBFBD>
tmenu ToolBar.Paste <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤ<EFBFBD><EFBFBD><EFBFBD>Ž<EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD> tmenu ToolBar.Paste <09><><EFBFBD><EFBFBD><EFBFBD>åץܡ<EFBFBD><EFBFBD>ɤ<EFBFBD><EFBFBD><EFBFBD>Ž<EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD>
tmenu ToolBar.Find <EFBFBD><EFBFBD><EFBFBD><EFBFBD>... tmenu ToolBar.Replace <EFBFBD><EFBFBD><EFBFBD><EFBFBD> / <20>ִ<EFBFBD>...
tmenu ToolBar.FindNext <09><><EFBFBD>򸡺<EFBFBD> tmenu ToolBar.FindNext <09><><EFBFBD>򸡺<EFBFBD>
tmenu ToolBar.FindPrev <09><><EFBFBD>򸡺<EFBFBD> tmenu ToolBar.FindPrev <09><><EFBFBD>򸡺<EFBFBD>
tmenu ToolBar.Replace <09>ִ<EFBFBD>...
if 0 " disabled; These are in the Windows menu if 0 " disabled; These are in the Windows menu
tmenu ToolBar.New <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.New <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
tmenu ToolBar.WinSplit <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD>ʬ<EFBFBD><EFBFBD> tmenu ToolBar.WinSplit <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD>ʬ<EFBFBD><EFBFBD>

View File

@ -2,13 +2,14 @@
" "
" Menu Translations: Japanese (UTF-8) " Menu Translations: Japanese (UTF-8)
" Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com>
" Last Change: 18-Jul-2018. " Last Change: 20-Feb-2022.
" Original translations
" "
" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
" vim-jp <http://vim-jp.org/> " vim-jp <http://vim-jp.org/>
" "
" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
"
" Original translations
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@ -24,7 +25,7 @@ scriptencoding utf-8
menutrans &Help ヘルプ(&H) menutrans &Help ヘルプ(&H)
menutrans &Overview<Tab><F1> 概略(&O)<Tab><F1> menutrans &Overview<Tab><F1> 概略(&O)<Tab><F1>
menutrans &User\ Manual ユーザーマニュアル(&U) menutrans &User\ Manual ユーザーマニュアル(&U)
menutrans &How-to\ links &How-toリンク menutrans &How-To\ links &How-toリンク
menutrans &Credits クレジット(&C) menutrans &Credits クレジット(&C)
menutrans Co&pying 著作権情報(&P) menutrans Co&pying 著作権情報(&P)
menutrans &Sponsor/Register スポンサー/登録(&S) menutrans &Sponsor/Register スポンサー/登録(&S)
@ -271,10 +272,9 @@ if has("toolbar")
tmenu ToolBar.Cut クリップボードへ切り取り tmenu ToolBar.Cut クリップボードへ切り取り
tmenu ToolBar.Copy クリップボードへコピー tmenu ToolBar.Copy クリップボードへコピー
tmenu ToolBar.Paste クリップボードから貼り付け tmenu ToolBar.Paste クリップボードから貼り付け
tmenu ToolBar.Find 検索... tmenu ToolBar.Replace 検索 / 置換...
tmenu ToolBar.FindNext 次を検索 tmenu ToolBar.FindNext 次を検索
tmenu ToolBar.FindPrev 前を検索 tmenu ToolBar.FindPrev 前を検索
tmenu ToolBar.Replace 置換...
if 0 " disabled; These are in the Windows menu if 0 " disabled; These are in the Windows menu
tmenu ToolBar.New 新規ウィンドウ作成 tmenu ToolBar.New 新規ウィンドウ作成
tmenu ToolBar.WinSplit ウィンドウ分割 tmenu ToolBar.WinSplit ウィンドウ分割

View File

@ -2,13 +2,14 @@
" "
" Menu Translations: Japanese (CP932) " Menu Translations: Japanese (CP932)
" Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com>
" Last Change: 18-Jul-2018. " Last Change: 20-Feb-2022.
" Generated from menu_ja_jp.utf-8.vim, DO NOT EDIT
" "
" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
" vim-jp <http://vim-jp.org/> " vim-jp <http://vim-jp.org/>
" "
" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
"
" Generated from menu_ja_jp.utf-8.vim, DO NOT EDIT
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@ -24,7 +25,7 @@ scriptencoding cp932
menutrans &Help <09>w<EFBFBD><EFBFBD><EFBFBD>v(&H) menutrans &Help <09>w<EFBFBD><EFBFBD><EFBFBD>v(&H)
menutrans &Overview<Tab><F1> <09>T<EFBFBD><EFBFBD>(&O)<Tab><F1> menutrans &Overview<Tab><F1> <09>T<EFBFBD><EFBFBD>(&O)<Tab><F1>
menutrans &User\ Manual <09><><EFBFBD>[<5B>U<EFBFBD>[<5B>}<7D>j<EFBFBD><EFBFBD><EFBFBD>A<EFBFBD><EFBFBD>(&U) menutrans &User\ Manual <09><><EFBFBD>[<5B>U<EFBFBD>[<5B>}<7D>j<EFBFBD><EFBFBD><EFBFBD>A<EFBFBD><EFBFBD>(&U)
menutrans &How-to\ links &How-to<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>N menutrans &How-To\ links &How-to<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>N
menutrans &Credits <09>N<EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>b<EFBFBD>g(&C) menutrans &Credits <09>N<EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>b<EFBFBD>g(&C)
menutrans Co&pying <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&P) menutrans Co&pying <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&P)
menutrans &Sponsor/Register <09>X<EFBFBD>|<7C><><EFBFBD>T<EFBFBD>[/<EFBFBD>o<EFBFBD>^(&S) menutrans &Sponsor/Register <09>X<EFBFBD>|<7C><><EFBFBD>T<EFBFBD>[/<EFBFBD>o<EFBFBD>^(&S)
@ -271,10 +272,9 @@ if has("toolbar")
tmenu ToolBar.Cut <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD>֐؂<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.Cut <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD>֐؂<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
tmenu ToolBar.Copy <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD>փR<EFBFBD>s<EFBFBD>[ tmenu ToolBar.Copy <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD>փR<EFBFBD>s<EFBFBD>[
tmenu ToolBar.Paste <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\<5C><><EFBFBD>t<EFBFBD><EFBFBD> tmenu ToolBar.Paste <09>N<EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>v<EFBFBD>{<7B>[<5B>h<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\<5C><><EFBFBD>t<EFBFBD><EFBFBD>
tmenu ToolBar.Find <09><><EFBFBD><EFBFBD>... tmenu ToolBar.Replace <09><><EFBFBD><EFBFBD> / <20>u<EFBFBD><EFBFBD>...
tmenu ToolBar.FindNext <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.FindNext <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
tmenu ToolBar.FindPrev <09>O<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.FindPrev <09>O<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
tmenu ToolBar.Replace <09>u<EFBFBD><EFBFBD>...
if 0 " disabled; These are in the Windows menu if 0 " disabled; These are in the Windows menu
tmenu ToolBar.New <09>V<EFBFBD>K<EFBFBD>E<EFBFBD>B<EFBFBD><EFBFBD><EFBFBD>h<EFBFBD>E<EFBFBD> tmenu ToolBar.New <09>V<EFBFBD>K<EFBFBD>E<EFBFBD>B<EFBFBD><EFBFBD><EFBFBD>h<EFBFBD>E<EFBFBD>
tmenu ToolBar.WinSplit <09>E<EFBFBD>B<EFBFBD><EFBFBD><EFBFBD>h<EFBFBD>E<EFBFBD><EFBFBD><EFBFBD><EFBFBD> tmenu ToolBar.WinSplit <09>E<EFBFBD>B<EFBFBD><EFBFBD><EFBFBD>h<EFBFBD>E<EFBFBD><EFBFBD><EFBFBD><EFBFBD>

View File

@ -1,7 +1,7 @@
" Vim syntax file " Vim syntax file
" Language: Structurizr DSL " Language: Structurizr DSL
" Maintainer: Bastian Venthur <venthur@debian.org> " Maintainer: Bastian Venthur <venthur@debian.org>
" Last Change: 2021-08-16 " Last Change: 2022-02-15
" Remark: For a language reference, see " Remark: For a language reference, see
" https://github.com/structurizr/dsl " https://github.com/structurizr/dsl
@ -30,6 +30,7 @@ syn keyword skeyword deployment
syn keyword skeyword deploymentenvironment syn keyword skeyword deploymentenvironment
syn keyword skeyword deploymentgroup syn keyword skeyword deploymentgroup
syn keyword skeyword deploymentnode syn keyword skeyword deploymentnode
syn keyword skeyword description
syn keyword skeyword dynamic syn keyword skeyword dynamic
syn keyword skeyword element syn keyword skeyword element
syn keyword skeyword enterprise syn keyword skeyword enterprise
@ -37,7 +38,6 @@ syn keyword skeyword exclude
syn keyword skeyword filtered syn keyword skeyword filtered
syn keyword skeyword group syn keyword skeyword group
syn keyword skeyword healthcheck syn keyword skeyword healthcheck
syn keyword skeyword impliedrelationships
syn keyword skeyword include syn keyword skeyword include
syn keyword skeyword infrastructurenode syn keyword skeyword infrastructurenode
syn keyword skeyword model syn keyword skeyword model
@ -51,6 +51,7 @@ syn keyword skeyword styles
syn keyword skeyword systemcontext syn keyword skeyword systemcontext
syn keyword skeyword systemlandscape syn keyword skeyword systemlandscape
syn keyword skeyword tags syn keyword skeyword tags
syn keyword skeyword technology
syn keyword skeyword terminology syn keyword skeyword terminology
syn keyword skeyword theme syn keyword skeyword theme
syn keyword skeyword title syn keyword skeyword title
@ -63,7 +64,11 @@ syn match skeyword "\!adrs\s\+"
syn match skeyword "\!constant\s\+" syn match skeyword "\!constant\s\+"
syn match skeyword "\!docs\s\+" syn match skeyword "\!docs\s\+"
syn match skeyword "\!identifiers\s\+" syn match skeyword "\!identifiers\s\+"
syn match skeyword "\!impliedrelationships\s\+"
syn match skeyword "\!include\s\+" syn match skeyword "\!include\s\+"
syn match skeyword "\!plugin\s\+"
syn match skeyword "\!ref\s\+"
syn match skeyword "\!script\s\+"
syn region sstring oneline start='"' end='"' syn region sstring oneline start='"' end='"'

View File

@ -10038,5 +10038,3 @@ msgstr "Name der dynamischen MzScheme Bibliothek"
msgid "name of the MzScheme GC dynamic library" msgid "name of the MzScheme GC dynamic library"
msgstr "Name der dynamischen MzScheme GC Bibliothek" msgstr "Name der dynamischen MzScheme GC Bibliothek"

View File

@ -557,7 +557,6 @@ msgid "E536: comma required"
msgstr "E536: Comma required" msgstr "E536: Comma required"
msgid "E542: unbalanced groups" msgid "E542: unbalanced groups"
msgstr "E542: Unbalanced groups" msgstr "E542: Unbalanced groups"
@ -761,5 +760,3 @@ msgstr "E749: Empty buffer"
msgid "can't delete OutputObject attributes" msgid "can't delete OutputObject attributes"
msgstr "cannot delete OutputObject attributes" msgstr "cannot delete OutputObject attributes"

View File

@ -6337,5 +6337,3 @@ msgstr "La búsqueda ha llegado al PRINCIPIO, continuando desde el FINAL"
msgid "search hit BOTTOM, continuing at TOP" msgid "search hit BOTTOM, continuing at TOP"
msgstr "La búsqueda ha llegado al FINAL, continuando desde el PRINCIPIO" msgstr "La búsqueda ha llegado al FINAL, continuando desde el PRINCIPIO"

View File

@ -9883,5 +9883,3 @@ msgstr "MzSchemen dynaamisen kirjaston nimi"
msgid "name of the MzScheme GC dynamic library" msgid "name of the MzScheme GC dynamic library"
msgstr "MzSchemen GC:n dynaamisen kirjaston nimi" msgstr "MzSchemen GC:n dynaamisen kirjaston nimi"

View File

@ -9278,4 +9278,3 @@ msgstr "nome della libreria dinamica MzScheme"
msgid "name of the MzScheme GC dynamic library" msgid "name of the MzScheme GC dynamic library"
msgstr "nome della libreria dinamica MzScheme GC" msgstr "nome della libreria dinamica MzScheme GC"

View File

@ -14,8 +14,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim 8.2\n" "Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-16 10:46+0900\n" "POT-Creation-Date: 2022-02-18 13:52+0900\n"
"PO-Revision-Date: 2022-01-16 12:43+0900\n" "PO-Revision-Date: 2022-02-20 01:53+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n" "Language: ja\n"
@ -780,10 +780,12 @@ msgstr "
msgid "" msgid ""
"&OK\n" "&OK\n"
"&Load File" "&Load File\n"
"Load File &and Options"
msgstr "" msgstr ""
"&OK\n" "&OK\n"
"<22>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>(&L)" "<22>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>(&L)\n"
"<22>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>(&A)"
msgid "<empty>" msgid "<empty>"
msgstr "<<3C><>>" msgstr "<<3C><>>"
@ -3082,36 +3084,6 @@ msgstr "
msgid "'redrawtime' exceeded, syntax highlighting disabled" msgid "'redrawtime' exceeded, syntax highlighting disabled"
msgstr "'redrawtime' <20><>Ķ<EFBFBD><EFBFBD><E1A4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A1A2>ʸ<EFBFBD>ϥ<EFBFBD><CFA5><EFBFBD>Ȥ<EFBFBD>̵<EFBFBD><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>" msgstr "'redrawtime' <20><>Ķ<EFBFBD><EFBFBD><E1A4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A1A2>ʸ<EFBFBD>ϥ<EFBFBD><CFA5><EFBFBD>Ȥ<EFBFBD>̵<EFBFBD><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>"
msgid "syntax conceal on"
msgstr "<22><>ʸ<EFBFBD><CAB8> conceal <20>ϸ<EFBFBD><CFB8><EFBFBD> on <20>Ǥ<EFBFBD>"
msgid "syntax conceal off"
msgstr "<22><>ʸ<EFBFBD><CAB8> conceal <20>ϸ<EFBFBD><CFB8><EFBFBD> off <20>Ǥ<EFBFBD>"
msgid "syntax case ignore"
msgstr "<22><>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD>ϸ<EFBFBD><CFB8><EFBFBD> ignore <20>Ǥ<EFBFBD>"
msgid "syntax case match"
msgstr "<22><>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD>ϸ<EFBFBD><CFB8><EFBFBD> match <20>Ǥ<EFBFBD>"
msgid "syntax foldlevel start"
msgstr "<22><>ʸ<EFBFBD><CAB8> foldlevel <20>ϸ<EFBFBD><CFB8><EFBFBD> start <20>Ǥ<EFBFBD>"
msgid "syntax foldlevel minimum"
msgstr "<22><>ʸ<EFBFBD><CAB8> foldlevel <20>ϸ<EFBFBD><CFB8><EFBFBD> minimum <20>Ǥ<EFBFBD>"
msgid "syntax spell toplevel"
msgstr "<22><>ʸ<EFBFBD><CAB8> spell <20>ϸ<EFBFBD><CFB8><EFBFBD> toplevel <20>Ǥ<EFBFBD>"
msgid "syntax spell notoplevel"
msgstr "<22><>ʸ<EFBFBD><CAB8> spell <20>ϸ<EFBFBD><CFB8><EFBFBD> notoplevel <20>Ǥ<EFBFBD>"
msgid "syntax spell default"
msgstr "<22><>ʸ<EFBFBD><CAB8> spell <20>ϸ<EFBFBD><CFB8><EFBFBD> default <20>Ǥ<EFBFBD>"
msgid "syntax iskeyword "
msgstr "<22><>ʸ<EFBFBD><CAB8> iskeyword "
msgid "syntax iskeyword not set" msgid "syntax iskeyword not set"
msgstr "<22><>ʸ<EFBFBD><CAB8> iskeyword <20>ϥ<EFBFBD><CFA5>åȤ<C3A5><C8A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "<22><>ʸ<EFBFBD><CAB8> iskeyword <20>ϥ<EFBFBD><CFA5>åȤ<C3A5><C8A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -3248,7 +3220,7 @@ msgstr "
msgid "(Invalid)" msgid "(Invalid)"
msgstr "(̵<><CCB5>)" msgstr "(̵<><CCB5>)"
# no-c-format #, no-c-format
msgid "%a %b %d %H:%M:%S %Y" msgid "%a %b %d %H:%M:%S %Y"
msgstr "%Y/%m/%d (%a) %H:%M:%S" msgstr "%Y/%m/%d (%a) %H:%M:%S"
@ -3816,11 +3788,6 @@ msgstr ""
"<22><><EFBFBD>Υ<EFBFBD><CEA5>ޥ<EFBFBD><DEA5>ɤ<EFBFBD>̵<EFBFBD><CCB5><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD>: Perl<72><EFBFBD>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤǤ<C9A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>Ǥ<EFBFBD>" "<22><><EFBFBD>Υ<EFBFBD><CEA5>ޥ<EFBFBD><DEA5>ɤ<EFBFBD>̵<EFBFBD><CCB5><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD>: Perl<72><EFBFBD>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤǤ<C9A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>Ǥ<EFBFBD>"
"<22><><EFBFBD><EFBFBD>" "<22><><EFBFBD><EFBFBD>"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: <20><><EFBFBD><EFBFBD><EFBFBD>ɥܥå<DCA5><C3A5><EFBFBD><EFBFBD>Ǥ<EFBFBD> Safe <20><EFBFBD><EFBFBD><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ʤ<EFBFBD>Perl<72><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤ϶ؤ<CFB6><D8A4><EFBFBD><EFBFBD><EFBFBD>"
"<22>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>"
msgid "Edit with Vim using &tabpages" msgid "Edit with Vim using &tabpages"
msgstr "Vim<69>ǥ<EFBFBD><C7A5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥä<C8A4><C3A4>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> (&T)" msgstr "Vim<69>ǥ<EFBFBD><C7A5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥä<C8A4><C3A4>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> (&T)"
@ -4836,6 +4803,11 @@ msgstr "E298:
msgid "E298: Didn't get block nr 2?" msgid "E298: Didn't get block nr 2?"
msgstr "E298: <20>֥<EFBFBD><D6A5>å<EFBFBD> 2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>?" msgstr "E298: <20>֥<EFBFBD><D6A5>å<EFBFBD> 2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>?"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: <20><><EFBFBD><EFBFBD><EFBFBD>ɥܥå<DCA5><C3A5><EFBFBD><EFBFBD>Ǥ<EFBFBD> Safe <20><EFBFBD><EFBFBD><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ʤ<EFBFBD>Perl<72><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤ϶ؤ<CFB6><D8A4><EFBFBD><EFBFBD><EFBFBD>"
"<22>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>"
msgid "E300: Swap file already exists (symlink attack?)" msgid "E300: Swap file already exists (symlink attack?)"
msgstr "E300: <20><><EFBFBD><EFBFBD><EFBFBD>åץե<D7A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EBA4AC><EFBFBD><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>ޤ<EFBFBD> (symlink<6E>ˤ<EFBFBD><CBA4><EFBFBD><EBB9B6>?)" msgstr "E300: <20><><EFBFBD><EFBFBD><EFBFBD>åץե<D7A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EBA4AC><EFBFBD><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>ޤ<EFBFBD> (symlink<6E>ˤ<EFBFBD><CBA4><EFBFBD><EBB9B6>?)"
@ -5418,6 +5390,10 @@ msgstr "E463:
msgid "E464: Ambiguous use of user-defined command" msgid "E464: Ambiguous use of user-defined command"
msgstr "E464: <20><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><DEA5>ɤΤ<C9A4><CEA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>ʻ<EFBFBD><CABB>ѤǤ<D1A4>" msgstr "E464: <20><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><DEA5>ɤΤ<C9A4><CEA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>ʻ<EFBFBD><CABB>ѤǤ<D1A4>"
#, c-format
msgid "E464: Ambiguous use of user-defined command: %s"
msgstr "E464: <20><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><DEA5>ɤΤ<C9A4><CEA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>ʻ<EFBFBD><CABB>ѤǤ<D1A4>: %s"
msgid "E465: :winsize requires two number arguments" msgid "E465: :winsize requires two number arguments"
msgstr "E465: :winsize <20>ˤ<EFBFBD>2<EFBFBD>Ĥο<C4A4><CEBF>ͤΰ<CDA4><CEB0><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>" msgstr "E465: :winsize <20>ˤ<EFBFBD>2<EFBFBD>Ĥο<C4A4><CEBF>ͤΰ<CDA4><CEB0><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>"
@ -6498,6 +6474,7 @@ msgstr "E802: ̵
msgid "E803: ID not found: %d" msgid "E803: ID not found: %d"
msgstr "E803: ID <20>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %d" msgstr "E803: ID <20>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %d"
#, no-c-format
msgid "E804: Cannot use '%' with Float" msgid "E804: Cannot use '%' with Float"
msgstr "E804: '%' <20><><EFBFBD><EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ߹<C8A4><DFB9><EFBFBD>ƤϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E804: '%' <20><><EFBFBD><EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ߹<C8A4><DFB9><EFBFBD>ƤϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -6696,6 +6673,7 @@ msgstr "E862:
msgid "E863: Not allowed for a terminal in a popup window" msgid "E863: Not allowed for a terminal in a popup window"
msgstr "E863: ü<><C3BC><EFBFBD>ϥݥåץ<C3A5><D7A5>åץ<C3A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>Ǥϵ<C7A4><CFB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E863: ü<><C3BC><EFBFBD>ϥݥåץ<C3A5><D7A5>åץ<C3A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>Ǥϵ<C7A4><CFB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
#, no-c-format
msgid "" msgid ""
"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " "E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
"used" "used"
@ -7019,6 +6997,7 @@ msgstr "E949:
msgid "E950: Cannot convert between %s and %s" msgid "E950: Cannot convert between %s and %s"
msgstr "E950: %s <20><> %s <20>δ֤<CEB4><D6A4>Ѵ<EFBFBD><D1B4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E950: %s <20><> %s <20>δ֤<CEB4><D6A4>Ѵ<EFBFBD><D1B4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
#, no-c-format
msgid "E951: \\% value too large" msgid "E951: \\% value too large"
msgstr "E951: \\% <20>ͤ<EFBFBD><CDA4><EFBFBD><EFBFBD>ޤ<EFBFBD>" msgstr "E951: \\% <20>ͤ<EFBFBD><CDA4><EFBFBD><EFBFBD>ޤ<EFBFBD>"
@ -7325,6 +7304,7 @@ msgstr "E1033:
msgid "E1034: Cannot use reserved name %s" msgid "E1034: Cannot use reserved name %s"
msgstr "E1034: ͽ<><CDBD>̾ %s <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1034: ͽ<><CDBD>̾ %s <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
#, no-c-format
msgid "E1035: % requires number arguments" msgid "E1035: % requires number arguments"
msgstr "E1035: % <20>ˤϿ<CBA4><CFBF>ͤΰ<CDA4><CEB0><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>" msgstr "E1035: % <20>ˤϿ<CBA4><CFBF>ͤΰ<CDA4><CEB0><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>"
@ -7466,10 +7446,16 @@ msgstr "E1076:
msgid "E1077: Missing argument type for %s" msgid "E1077: Missing argument type for %s"
msgstr "E1077: %s <20>ΰ<EFBFBD><CEB0><EFBFBD><EFBFBD>η<EFBFBD><CEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1077: %s <20>ΰ<EFBFBD><CEB0><EFBFBD><EFBFBD>η<EFBFBD><CEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1080: Invalid assignment"
msgstr "E1080: ̵<><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD>"
#, c-format #, c-format
msgid "E1081: Cannot unlet %s" msgid "E1081: Cannot unlet %s"
msgstr "E1081: %s <20><> unlet <20>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1081: %s <20><> unlet <20>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1082: Command modifier without command"
msgstr "E1082: <20><><EFBFBD>ޥ<EFBFBD><DEA5>ɤʤ<C9A4><CAA4>Υ<EFBFBD><CEA5>ޥ<EFBFBD><DEA5>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD>ҤǤ<D2A4>"
msgid "E1083: Missing backtick" msgid "E1083: Missing backtick"
msgstr "E1083: <20>Хå<D0A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1083: <20>Хå<D0A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -7487,6 +7473,9 @@ msgstr "E1086:
msgid "E1087: Cannot use an index when declaring a variable" msgid "E1087: Cannot use an index when declaring a variable"
msgstr "E1087: <20>ѿ<EFBFBD><D1BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݤ˥<DDA4><CBA5><EFBFBD><EFBFBD>ǥå<C7A5><C3A5><EFBFBD><EFBFBD>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1087: <20>ѿ<EFBFBD><D1BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݤ˥<DDA4><CBA5><EFBFBD><EFBFBD>ǥå<C7A5><C3A5><EFBFBD><EFBFBD>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1088: Script cannot import itself"
msgstr "E1088: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȼ<D7A5><C8BC>Ȥ򥤥<C8A4><F2A5A4A5>ݡ<EFBFBD><DDA1>ȤǤ<C8A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
#, c-format #, c-format
msgid "E1089: Unknown variable: %s" msgid "E1089: Unknown variable: %s"
msgstr "E1089: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѿ<EFBFBD>: %s" msgstr "E1089: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѿ<EFBFBD>: %s"
@ -7499,6 +7488,9 @@ msgstr "E1090:
msgid "E1091: Function is not compiled: %s" msgid "E1091: Function is not compiled: %s"
msgstr "E1091: <20>ؿ<EFBFBD><D8BF>ϥ<EFBFBD><CFA5><EFBFBD><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD><EBA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s" msgstr "E1091: <20>ؿ<EFBFBD><D8BF>ϥ<EFBFBD><CFA5><EFBFBD><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD><EBA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
msgid "E1092: Cannot nest :redir"
msgstr "E1092: :redir <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҤˤǤ<CBA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
#, c-format #, c-format
msgid "E1093: Expected %d items but got %d" msgid "E1093: Expected %d items but got %d"
msgstr "E1093: %d <20>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> %d <20>ĤǤ<C4A4><C7A4><EFBFBD>" msgstr "E1093: %d <20>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> %d <20>ĤǤ<C4A4><C7A4><EFBFBD>"
@ -7591,11 +7583,11 @@ msgstr "E1116: \"assert_fails()\"
msgid "E1117: Cannot use ! with nested :def" msgid "E1117: Cannot use ! with nested :def"
msgstr "E1117: ! <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҥˤʤä<CAA4> :def <20><><EFBFBD>Ȥ߹<C8A4><DFB9><EFBFBD>ƤϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1117: ! <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҥˤʤä<CAA4> :def <20><><EFBFBD>Ȥ߹<C8A4><DFB9><EFBFBD>ƤϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1118: Cannot change list" msgid "E1118: Cannot change locked list"
msgstr "E1118: <20><EFBFBD>Ȥ<EFBFBD><C8A4>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1118: <20><EFBFBD><EFBFBD>å<EFBFBD><EFBFBD><EFBFBD><EFBFBD>줿<EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>"
msgid "E1119: Cannot change list item" msgid "E1119: Cannot change locked list item"
msgstr "E1119: <20><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1119: <20><EFBFBD><EFBFBD>å<EFBFBD><EFBFBD><EFBFBD><EFBFBD>줿<EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>"
msgid "E1120: Cannot change dict" msgid "E1120: Cannot change dict"
msgstr "E1120: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1120: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -7669,6 +7661,11 @@ msgstr "E1140: :for
msgid "E1141: Indexable type required" msgid "E1141: Indexable type required"
msgstr "E1141: <20><><EFBFBD><EFBFBD><EFBFBD>ǥå<C7A5><C3A5><EFBFBD><EFBFBD><EFBFBD>ǽ<EFBFBD>ʷ<EFBFBD><CAB7><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>" msgstr "E1141: <20><><EFBFBD><EFBFBD><EFBFBD>ǥå<C7A5><C3A5><EFBFBD><EFBFBD><EFBFBD>ǽ<EFBFBD>ʷ<EFBFBD><CAB7><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>"
msgid "E1142: Calling test_garbagecollect_now() while v:testing is not set"
msgstr ""
"E1142: v:testing <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EAA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD>֤<EFBFBD> test_garbagecollect_now() <20><><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD>"
"<22><><EFBFBD>ޤ<EFBFBD>"
#, c-format #, c-format
msgid "E1143: Empty expression: \"%s\"" msgid "E1143: Empty expression: \"%s\""
msgstr "E1143: <20><><EFBFBD>μ<EFBFBD><CEBC>Ǥ<EFBFBD>: \"%s\"" msgstr "E1143: <20><><EFBFBD>μ<EFBFBD><CEBC>Ǥ<EFBFBD>: \"%s\""
@ -7721,8 +7718,10 @@ msgstr "E1156:
msgid "E1157: Missing return type" msgid "E1157: Missing return type"
msgstr "E1157: <20><><EFBFBD><EFBFBD><EFBFBD>ͤη<CDA4><CEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1157: <20><><EFBFBD><EFBFBD><EFBFBD>ͤη<CDA4><CEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1158: Cannot use flatten() in Vim9 script" msgid "E1158: Cannot use flatten() in Vim9 script, use flattennew()"
msgstr "E1158: Vim9 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤǤ<C8A4> flatten() <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr ""
"E1158: Vim9 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤǤ<C8A4> flatten() <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>flattennew() <20><><EFBFBD>Ȥä<C8A4>"
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
msgid "E1159: Cannot split a window when closing the buffer" msgid "E1159: Cannot split a window when closing the buffer"
msgstr "E1159: <20>Хåե<C3A5><D5A5><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>֤˥<D6A4><CBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD>ʬ<EFBFBD><EFBFBD><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1159: <20>Хåե<C3A5><D5A5><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>֤˥<D6A4><CBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD>ʬ<EFBFBD><EFBFBD><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -7764,8 +7763,9 @@ msgstr "E1167:
msgid "E1168: Argument already declared in the script: %s" msgid "E1168: Argument already declared in the script: %s"
msgstr "E1168: <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>˥<EFBFBD><CBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>: %s" msgstr "E1168: <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>˥<EFBFBD><CBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>: %s"
msgid "E1169: 'import * as {name}' not supported here" #, c-format
msgstr "E1169: 'import * as {name}' <20>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>Ǥϥ<C7A4><CFA5>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgid "E1169: Expression too recursive: %s"
msgstr "E1169: <20><><EFBFBD>κƵ<CEBA><C6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
msgid "E1170: Cannot use #{ to start a comment" msgid "E1170: Cannot use #{ to start a comment"
msgstr "E1170: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥγ<C8A4><CEB3>Ϥ<EFBFBD> #{ <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1170: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥγ<C8A4><CEB3>Ϥ<EFBFBD> #{ <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -7813,9 +7813,6 @@ msgstr "E1180:
msgid "E1181: Cannot use an underscore here" msgid "E1181: Cannot use an underscore here"
msgstr "E1181: <20><><EFBFBD><EFBFBD><EFBFBD>Ǥϥ<C7A4><CFA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1181: <20><><EFBFBD><EFBFBD><EFBFBD>Ǥϥ<C7A4><CFA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1182: Blob required"
msgstr "E1182: Blob<6F><62><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>"
#, c-format #, c-format
msgid "E1183: Cannot use a range with an assignment operator: %s" msgid "E1183: Cannot use a range with an assignment operator: %s"
msgstr "E1183: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҥ<EFBFBD><D2A4>ϰϤϻ<CFA4><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s" msgstr "E1183: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҥ<EFBFBD><D2A4>ϰϤϻ<CFA4><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
@ -7823,9 +7820,6 @@ msgstr "E1183:
msgid "E1184: Blob not set" msgid "E1184: Blob not set"
msgstr "E1184: Blob <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EAA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1184: Blob <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EAA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1185: Cannot nest :redir"
msgstr "E1185: :redir <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҤˤǤ<CBA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid "E1185: Missing :redir END" msgid "E1185: Missing :redir END"
msgstr "E1185: :redir END <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>" msgstr "E1185: :redir END <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
@ -8115,14 +8109,38 @@ msgstr "E1261: \"as\"
msgid "E1262: Cannot import the same script twice: %s" msgid "E1262: Cannot import the same script twice: %s"
msgstr "E1262: Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤ<D7A5>2<EFBFBD>󥤥<EFBFBD><F3A5A4A5>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s" msgstr "E1262: Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤ<D7A5>2<EFBFBD>󥤥<EFBFBD><F3A5A4A5>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
msgid "E1263: Using autoload in a script not under an autoload directory" msgid "E1263: cannot use name with # in Vim9 script, use export instead"
msgstr "E1263: autoload<61>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD>̵<EFBFBD><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤ<D7A5>autoload<61><64><EFBFBD>ȤäƤ<C3A4><C6A4>ޤ<EFBFBD>" msgstr ""
"E1263: Vim9 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤǤ<C8A4> # <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> export <20><><EFBFBD><EFBFBD>"
"<22>Ѥ<EFBFBD><D1A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
#, c-format #, c-format
msgid "E1264: Autoload import cannot use absolute or relative path: %s" msgid "E1264: Autoload import cannot use absolute or relative path: %s"
msgstr "" msgstr ""
"E1264: autoload<61><64><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>Фޤ<D0A4><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Хѥ<D0A5><D1A5><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s" "E1264: autoload<61><64><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>Фޤ<D0A4><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Хѥ<D0A5><D1A5><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
msgid "E1265: Cannot use a partial here"
msgstr "E1265: <20><><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>ʬŬ<CAAC>ѤϻȤ<CFBB><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>"
msgid ""
"E1266: Critical error in python3 initialization, check your python3 "
"installation"
msgstr ""
"E1266: python3<6E><33><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˽<EFBFBD><CBBD><EFBFBD><EFBFBD>ʥ<EFBFBD><CAA5><EFBFBD><E9A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>python3<6E>Υ<EFBFBD><CEA5>󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
"<22><>ǧ<EFBFBD><C7A7><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
#, c-format
msgid "E1267: Function name must start with a capital: %s"
msgstr "E1267: <20>ؿ<EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD>ǻϤޤ<CFA4><DEA4>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD>Фʤ<D0A4><CAA4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
#, c-format
msgid "E1268: Cannot use s: in Vim9 script: %s"
msgstr "E1268: Vim9 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȤǤ<C8A4> :s <20>ϻ<EFBFBD><CFBB>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
#, c-format
msgid "E1269: Cannot create a Vim9 script variable in a function: %s"
msgstr "E1269: <20>ؿ<EFBFBD><D8BF><EFBFBD><EFBFBD><EFBFBD> Vim9 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5>ѿ<EFBFBD><D1BF>Ϻ<EFBFBD><CFBA><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
msgid "--No lines in buffer--" msgid "--No lines in buffer--"
msgstr "--<2D>Хåե<C3A5><D5A5>˹Ԥ<CBB9><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>--" msgstr "--<2D>Хåե<C3A5><D5A5>˹Ԥ<CBB9><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>--"

View File

@ -14,8 +14,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim 8.2\n" "Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-16 10:46+0900\n" "POT-Creation-Date: 2022-02-18 13:52+0900\n"
"PO-Revision-Date: 2022-01-16 12:43+0900\n" "PO-Revision-Date: 2022-02-20 01:53+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n" "Language: ja\n"
@ -780,10 +780,12 @@ msgstr "警告"
msgid "" msgid ""
"&OK\n" "&OK\n"
"&Load File" "&Load File\n"
"Load File &and Options"
msgstr "" msgstr ""
"&OK\n" "&OK\n"
"ファイル読込(&L)" "ファイル読込(&L)\n"
"ファイルとオプションを読込(&A)"
msgid "<empty>" msgid "<empty>"
msgstr "<空>" msgstr "<空>"
@ -3082,36 +3084,6 @@ msgstr "このバッファに定義された構文要素はありません"
msgid "'redrawtime' exceeded, syntax highlighting disabled" msgid "'redrawtime' exceeded, syntax highlighting disabled"
msgstr "'redrawtime' を超過したため、構文ハイライトは無効化されます" msgstr "'redrawtime' を超過したため、構文ハイライトは無効化されます"
msgid "syntax conceal on"
msgstr "構文の conceal は現在 on です"
msgid "syntax conceal off"
msgstr "構文の conceal は現在 off です"
msgid "syntax case ignore"
msgstr "構文の大文字小文字は現在 ignore です"
msgid "syntax case match"
msgstr "構文の大文字小文字は現在 match です"
msgid "syntax foldlevel start"
msgstr "構文の foldlevel は現在 start です"
msgid "syntax foldlevel minimum"
msgstr "構文の foldlevel は現在 minimum です"
msgid "syntax spell toplevel"
msgstr "構文の spell は現在 toplevel です"
msgid "syntax spell notoplevel"
msgstr "構文の spell は現在 notoplevel です"
msgid "syntax spell default"
msgstr "構文の spell は現在 default です"
msgid "syntax iskeyword "
msgstr "構文用 iskeyword "
msgid "syntax iskeyword not set" msgid "syntax iskeyword not set"
msgstr "構文用 iskeyword はセットされていません" msgstr "構文用 iskeyword はセットされていません"
@ -3248,7 +3220,7 @@ msgstr "終了"
msgid "(Invalid)" msgid "(Invalid)"
msgstr "(無効)" msgstr "(無効)"
# no-c-format #, no-c-format
msgid "%a %b %d %H:%M:%S %Y" msgid "%a %b %d %H:%M:%S %Y"
msgstr "%Y/%m/%d (%a) %H:%M:%S" msgstr "%Y/%m/%d (%a) %H:%M:%S"
@ -3816,11 +3788,6 @@ msgstr ""
"このコマンドは無効です、ごめんなさい: Perlライブラリをロードできませんでし" "このコマンドは無効です、ごめんなさい: Perlライブラリをロードできませんでし"
"た。" "た。"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: サンドボックスでは Safe モジュールを使用しないPerlスクリプトは禁じられ"
"ています"
msgid "Edit with Vim using &tabpages" msgid "Edit with Vim using &tabpages"
msgstr "Vimでタブページを使って編集する (&T)" msgstr "Vimでタブページを使って編集する (&T)"
@ -4836,6 +4803,11 @@ msgstr "E298: ブロック 1 を取得できません?"
msgid "E298: Didn't get block nr 2?" msgid "E298: Didn't get block nr 2?"
msgstr "E298: ブロック 2 を取得できません?" msgstr "E298: ブロック 2 を取得できません?"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: サンドボックスでは Safe モジュールを使用しないPerlスクリプトは禁じられ"
"ています"
msgid "E300: Swap file already exists (symlink attack?)" msgid "E300: Swap file already exists (symlink attack?)"
msgstr "E300: スワップファイルが既に存在します (symlinkによる攻撃?)" msgstr "E300: スワップファイルが既に存在します (symlinkによる攻撃?)"
@ -5418,6 +5390,10 @@ msgstr "E463: 領域が保護されているので、変更できません"
msgid "E464: Ambiguous use of user-defined command" msgid "E464: Ambiguous use of user-defined command"
msgstr "E464: ユーザー定義コマンドのあいまいな使用です" msgstr "E464: ユーザー定義コマンドのあいまいな使用です"
#, c-format
msgid "E464: Ambiguous use of user-defined command: %s"
msgstr "E464: ユーザー定義コマンドのあいまいな使用です: %s"
msgid "E465: :winsize requires two number arguments" msgid "E465: :winsize requires two number arguments"
msgstr "E465: :winsize には2つの数値の引数が必要です" msgstr "E465: :winsize には2つの数値の引数が必要です"
@ -6498,6 +6474,7 @@ msgstr "E802: 無効な ID: %d (1 以上でなければなりません)"
msgid "E803: ID not found: %d" msgid "E803: ID not found: %d"
msgstr "E803: ID はありません: %d" msgstr "E803: ID はありません: %d"
#, no-c-format
msgid "E804: Cannot use '%' with Float" msgid "E804: Cannot use '%' with Float"
msgstr "E804: '%' を浮動小数点数と組み合わせては使えません" msgstr "E804: '%' を浮動小数点数と組み合わせては使えません"
@ -6696,6 +6673,7 @@ msgstr "E862: ここでは g: は使えません"
msgid "E863: Not allowed for a terminal in a popup window" msgid "E863: Not allowed for a terminal in a popup window"
msgstr "E863: 端末はポップアップウィンドウでは許されません" msgstr "E863: 端末はポップアップウィンドウでは許されません"
#, no-c-format
msgid "" msgid ""
"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " "E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
"used" "used"
@ -7019,6 +6997,7 @@ msgstr "E949: 書込み中にファイルが変更されました"
msgid "E950: Cannot convert between %s and %s" msgid "E950: Cannot convert between %s and %s"
msgstr "E950: %s と %s の間で変換できません" msgstr "E950: %s と %s の間で変換できません"
#, no-c-format
msgid "E951: \\% value too large" msgid "E951: \\% value too large"
msgstr "E951: \\% 値が大き過ぎます" msgstr "E951: \\% 値が大き過ぎます"
@ -7325,6 +7304,7 @@ msgstr "E1033: 全てをcatchした後のcatchには到達しません"
msgid "E1034: Cannot use reserved name %s" msgid "E1034: Cannot use reserved name %s"
msgstr "E1034: 予約名 %s は使用できません" msgstr "E1034: 予約名 %s は使用できません"
#, no-c-format
msgid "E1035: % requires number arguments" msgid "E1035: % requires number arguments"
msgstr "E1035: % には数値の引数が必要です" msgstr "E1035: % には数値の引数が必要です"
@ -7466,10 +7446,16 @@ msgstr "E1076: このVimは浮動小数点数サポート付きでコンパイ
msgid "E1077: Missing argument type for %s" msgid "E1077: Missing argument type for %s"
msgstr "E1077: %s の引数の型がありません" msgstr "E1077: %s の引数の型がありません"
msgid "E1080: Invalid assignment"
msgstr "E1080: 無効な代入です"
#, c-format #, c-format
msgid "E1081: Cannot unlet %s" msgid "E1081: Cannot unlet %s"
msgstr "E1081: %s を unlet できません" msgstr "E1081: %s を unlet できません"
msgid "E1082: Command modifier without command"
msgstr "E1082: コマンドなしのコマンド修飾子です"
msgid "E1083: Missing backtick" msgid "E1083: Missing backtick"
msgstr "E1083: バッククォートがありません" msgstr "E1083: バッククォートがありません"
@ -7487,6 +7473,9 @@ msgstr "E1086: 関数参照が不正です"
msgid "E1087: Cannot use an index when declaring a variable" msgid "E1087: Cannot use an index when declaring a variable"
msgstr "E1087: 変数を宣言する際にインデックスは使用できません" msgstr "E1087: 変数を宣言する際にインデックスは使用できません"
msgid "E1088: Script cannot import itself"
msgstr "E1088: スクリプト自身をインポートできません"
#, c-format #, c-format
msgid "E1089: Unknown variable: %s" msgid "E1089: Unknown variable: %s"
msgstr "E1089: 不明な変数: %s" msgstr "E1089: 不明な変数: %s"
@ -7499,6 +7488,9 @@ msgstr "E1090: 引数 %s に対して代入できません"
msgid "E1091: Function is not compiled: %s" msgid "E1091: Function is not compiled: %s"
msgstr "E1091: 関数はコンパイルされていません: %s" msgstr "E1091: 関数はコンパイルされていません: %s"
msgid "E1092: Cannot nest :redir"
msgstr "E1092: :redir は入れ子にできません"
#, c-format #, c-format
msgid "E1093: Expected %d items but got %d" msgid "E1093: Expected %d items but got %d"
msgstr "E1093: %d 個の要素が期待されていますが %d 個でした" msgstr "E1093: %d 個の要素が期待されていますが %d 個でした"
@ -7591,11 +7583,11 @@ msgstr "E1116: \"assert_fails()\" の第5引数は文字列でなければなり
msgid "E1117: Cannot use ! with nested :def" msgid "E1117: Cannot use ! with nested :def"
msgstr "E1117: ! を入れ子になった :def と組み合わせては使えません" msgstr "E1117: ! を入れ子になった :def と組み合わせては使えません"
msgid "E1118: Cannot change list" msgid "E1118: Cannot change locked list"
msgstr "E1118: リストを変更できません" msgstr "E1118: ロックされたリストを変更できません"
msgid "E1119: Cannot change list item" msgid "E1119: Cannot change locked list item"
msgstr "E1119: リストの要素を変更できません" msgstr "E1119: ロックされたリストの要素を変更できません"
msgid "E1120: Cannot change dict" msgid "E1120: Cannot change dict"
msgstr "E1120: 辞書を変更できません" msgstr "E1120: 辞書を変更できません"
@ -7669,6 +7661,11 @@ msgstr "E1140: :for の引数はリストのシーケンスでなければなり
msgid "E1141: Indexable type required" msgid "E1141: Indexable type required"
msgstr "E1141: インデックス可能な型が必要です" msgstr "E1141: インデックス可能な型が必要です"
msgid "E1142: Calling test_garbagecollect_now() while v:testing is not set"
msgstr ""
"E1142: v:testing が設定されていない状態で test_garbagecollect_now() を呼んで"
"います"
#, c-format #, c-format
msgid "E1143: Empty expression: \"%s\"" msgid "E1143: Empty expression: \"%s\""
msgstr "E1143: 空の式です: \"%s\"" msgstr "E1143: 空の式です: \"%s\""
@ -7721,8 +7718,10 @@ msgstr "E1156: 引数リストを再帰的に変更することはできませ
msgid "E1157: Missing return type" msgid "E1157: Missing return type"
msgstr "E1157: 戻り値の型がありません" msgstr "E1157: 戻り値の型がありません"
msgid "E1158: Cannot use flatten() in Vim9 script" msgid "E1158: Cannot use flatten() in Vim9 script, use flattennew()"
msgstr "E1158: Vim9 スクリプトでは flatten() は使用できません" msgstr ""
"E1158: Vim9 スクリプトでは flatten() は使用できません、flattennew() を使って"
"ください"
msgid "E1159: Cannot split a window when closing the buffer" msgid "E1159: Cannot split a window when closing the buffer"
msgstr "E1159: バッファを閉じている間にウィンドウを分割することはできません" msgstr "E1159: バッファを閉じている間にウィンドウを分割することはできません"
@ -7764,8 +7763,9 @@ msgstr "E1167: 引数名が既存の変数を隠しています: %s"
msgid "E1168: Argument already declared in the script: %s" msgid "E1168: Argument already declared in the script: %s"
msgstr "E1168: 引数は既にスクリプト内で宣言されています: %s" msgstr "E1168: 引数は既にスクリプト内で宣言されています: %s"
msgid "E1169: 'import * as {name}' not supported here" #, c-format
msgstr "E1169: 'import * as {name}' はここではサポートされていません" msgid "E1169: Expression too recursive: %s"
msgstr "E1169: 式の再帰が深すぎます: %s"
msgid "E1170: Cannot use #{ to start a comment" msgid "E1170: Cannot use #{ to start a comment"
msgstr "E1170: コメントの開始に #{ は使用できません" msgstr "E1170: コメントの開始に #{ は使用できません"
@ -7813,9 +7813,6 @@ msgstr "E1180: 可変引数の型はリストでなければなりません: %s"
msgid "E1181: Cannot use an underscore here" msgid "E1181: Cannot use an underscore here"
msgstr "E1181: ここではアンダースコアは使えません" msgstr "E1181: ここではアンダースコアは使えません"
msgid "E1182: Blob required"
msgstr "E1182: Blob型が必要です"
#, c-format #, c-format
msgid "E1183: Cannot use a range with an assignment operator: %s" msgid "E1183: Cannot use a range with an assignment operator: %s"
msgstr "E1183: 代入演算子で範囲は使用できません: %s" msgstr "E1183: 代入演算子で範囲は使用できません: %s"
@ -7823,9 +7820,6 @@ msgstr "E1183: 代入演算子で範囲は使用できません: %s"
msgid "E1184: Blob not set" msgid "E1184: Blob not set"
msgstr "E1184: Blob は設定されていません" msgstr "E1184: Blob は設定されていません"
msgid "E1185: Cannot nest :redir"
msgstr "E1185: :redir は入れ子にできません"
msgid "E1185: Missing :redir END" msgid "E1185: Missing :redir END"
msgstr "E1185: :redir END がありません" msgstr "E1185: :redir END がありません"
@ -8115,14 +8109,38 @@ msgstr "E1261: \"as\" を使わずに .vim をインポートすることはで
msgid "E1262: Cannot import the same script twice: %s" msgid "E1262: Cannot import the same script twice: %s"
msgstr "E1262: 同じスクリプトを2回インポートすることはできません: %s" msgstr "E1262: 同じスクリプトを2回インポートすることはできません: %s"
msgid "E1263: Using autoload in a script not under an autoload directory" msgid "E1263: cannot use name with # in Vim9 script, use export instead"
msgstr "E1263: autoloadディレクトリに無いスクリプトでautoloadを使っています" msgstr ""
"E1263: Vim9 スクリプトでは # 入りの名前は使用できません、代わりに export を使"
"用してください"
#, c-format #, c-format
msgid "E1264: Autoload import cannot use absolute or relative path: %s" msgid "E1264: Autoload import cannot use absolute or relative path: %s"
msgstr "" msgstr ""
"E1264: autoloadインポートで絶対または相対パスを使うことはできません: %s" "E1264: autoloadインポートで絶対または相対パスを使うことはできません: %s"
msgid "E1265: Cannot use a partial here"
msgstr "E1265: ここでは部分適用は使えません"
msgid ""
"E1266: Critical error in python3 initialization, check your python3 "
"installation"
msgstr ""
"E1266: python3初期化中に重大なエラーが起きました。python3のインストール状況を"
"確認してください"
#, c-format
msgid "E1267: Function name must start with a capital: %s"
msgstr "E1267: 関数名は大文字で始まらなければなりません: %s"
#, c-format
msgid "E1268: Cannot use s: in Vim9 script: %s"
msgstr "E1268: Vim9 スクリプトでは :s は使用できません: %s"
#, c-format
msgid "E1269: Cannot create a Vim9 script variable in a function: %s"
msgstr "E1269: 関数内で Vim9 スクリプト変数は作成できません: %s"
msgid "--No lines in buffer--" msgid "--No lines in buffer--"
msgstr "--バッファに行がありません--" msgstr "--バッファに行がありません--"

View File

@ -14,8 +14,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim 8.2\n" "Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-16 10:46+0900\n" "POT-Creation-Date: 2022-02-18 13:52+0900\n"
"PO-Revision-Date: 2022-01-16 12:43+0900\n" "PO-Revision-Date: 2022-02-20 01:53+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n" "Language: ja\n"
@ -780,10 +780,12 @@ msgstr "
msgid "" msgid ""
"&OK\n" "&OK\n"
"&Load File" "&Load File\n"
"Load File &and Options"
msgstr "" msgstr ""
"&OK\n" "&OK\n"
"<22>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>Ǎ<EFBFBD>(&L)" "<22>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>Ǎ<EFBFBD>(&L)\n"
"<22>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>ƃI<C683>v<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǎ<EFBFBD>(&A)"
msgid "<empty>" msgid "<empty>"
msgstr "<<3C><>>" msgstr "<<3C><>>"
@ -3082,36 +3084,6 @@ msgstr "
msgid "'redrawtime' exceeded, syntax highlighting disabled" msgid "'redrawtime' exceeded, syntax highlighting disabled"
msgstr "'redrawtime' <20>𒴉߂<F092B489><DF82><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߁A<DF81>\\<5C><><EFBFBD>n<EFBFBD>C<EFBFBD><43><EFBFBD>C<EFBFBD>g<EFBFBD>͖<EFBFBD><CD96><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>" msgstr "'redrawtime' <20>𒴉߂<F092B489><DF82><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߁A<DF81>\\<5C><><EFBFBD>n<EFBFBD>C<EFBFBD><43><EFBFBD>C<EFBFBD>g<EFBFBD>͖<EFBFBD><CD96><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>"
msgid "syntax conceal on"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> conceal <20>͌<EFBFBD><CD8C><EFBFBD> on <20>ł<EFBFBD>"
msgid "syntax conceal off"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> conceal <20>͌<EFBFBD><CD8C><EFBFBD> off <20>ł<EFBFBD>"
msgid "syntax case ignore"
msgstr "<22>\\<5C><><EFBFBD>̑啶<CC91><E595B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͌<EFBFBD><CD8C><EFBFBD> ignore <20>ł<EFBFBD>"
msgid "syntax case match"
msgstr "<22>\\<5C><><EFBFBD>̑啶<CC91><E595B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͌<EFBFBD><CD8C><EFBFBD> match <20>ł<EFBFBD>"
msgid "syntax foldlevel start"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> foldlevel <20>͌<EFBFBD><CD8C><EFBFBD> start <20>ł<EFBFBD>"
msgid "syntax foldlevel minimum"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> foldlevel <20>͌<EFBFBD><CD8C><EFBFBD> minimum <20>ł<EFBFBD>"
msgid "syntax spell toplevel"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> spell <20>͌<EFBFBD><CD8C><EFBFBD> toplevel <20>ł<EFBFBD>"
msgid "syntax spell notoplevel"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> spell <20>͌<EFBFBD><CD8C><EFBFBD> notoplevel <20>ł<EFBFBD>"
msgid "syntax spell default"
msgstr "<22>\\<5C><><EFBFBD><EFBFBD> spell <20>͌<EFBFBD><CD8C><EFBFBD> default <20>ł<EFBFBD>"
msgid "syntax iskeyword "
msgstr "<22>\\<5C><><EFBFBD>p iskeyword "
msgid "syntax iskeyword not set" msgid "syntax iskeyword not set"
msgstr "<22>\\<5C><><EFBFBD>p iskeyword <20>̓Z<CD83>b<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>" msgstr "<22>\\<5C><><EFBFBD>p iskeyword <20>̓Z<CD83>b<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>"
@ -3248,7 +3220,7 @@ msgstr "
msgid "(Invalid)" msgid "(Invalid)"
msgstr "(<28><><EFBFBD><EFBFBD>)" msgstr "(<28><><EFBFBD><EFBFBD>)"
# no-c-format #, no-c-format
msgid "%a %b %d %H:%M:%S %Y" msgid "%a %b %d %H:%M:%S %Y"
msgstr "%Y/%m/%d (%a) %H:%M:%S" msgstr "%Y/%m/%d (%a) %H:%M:%S"
@ -3816,11 +3788,6 @@ msgstr ""
"<22><><EFBFBD>̃R<CC83>}<7D><><EFBFBD>h<EFBFBD>͖<EFBFBD><CD96><EFBFBD><EFBFBD>ł<EFBFBD><C582>A<EFBFBD><41><EFBFBD>߂<EFBFBD><DF82>Ȃ<EFBFBD><C882><EFBFBD>: Perl<72><6C><EFBFBD>C<EFBFBD>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[<5B>h<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD><EFBFBD>ł<EFBFBD>" "<22><><EFBFBD>̃R<CC83>}<7D><><EFBFBD>h<EFBFBD>͖<EFBFBD><CD96><EFBFBD><EFBFBD>ł<EFBFBD><C582>A<EFBFBD><41><EFBFBD>߂<EFBFBD><DF82>Ȃ<EFBFBD><C882><EFBFBD>: Perl<72><6C><EFBFBD>C<EFBFBD>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[<5B>h<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD><EFBFBD>ł<EFBFBD>"
"<22><><EFBFBD>B" "<22><><EFBFBD>B"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: <20>T<EFBFBD><54><EFBFBD>h<EFBFBD>{<7B>b<EFBFBD>N<EFBFBD>X<EFBFBD>ł<EFBFBD> Safe <20><><EFBFBD>W<EFBFBD><57><EFBFBD>[<5B><><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>Ȃ<EFBFBD>Perl<72>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>͋ւ<CD8B><D682><EFBFBD><EFBFBD><EFBFBD>"
"<22>Ă<EFBFBD><C482>܂<EFBFBD>"
msgid "Edit with Vim using &tabpages" msgid "Edit with Vim using &tabpages"
msgstr "Vim<69>Ń^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>g<EFBFBD><67><EFBFBD>ĕҏW<D28F><57><EFBFBD><EFBFBD> (&T)" msgstr "Vim<69>Ń^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>g<EFBFBD><67><EFBFBD>ĕҏW<D28F><57><EFBFBD><EFBFBD> (&T)"
@ -4836,6 +4803,11 @@ msgstr "E298:
msgid "E298: Didn't get block nr 2?" msgid "E298: Didn't get block nr 2?"
msgstr "E298: <20>u<EFBFBD><75><EFBFBD>b<EFBFBD>N 2 <20><><EFBFBD><EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>?" msgstr "E298: <20>u<EFBFBD><75><EFBFBD>b<EFBFBD>N 2 <20><><EFBFBD><EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>?"
msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
msgstr ""
"E299: <20>T<EFBFBD><54><EFBFBD>h<EFBFBD>{<7B>b<EFBFBD>N<EFBFBD>X<EFBFBD>ł<EFBFBD> Safe <20><><EFBFBD>W<EFBFBD><57><EFBFBD>[<5B><><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>Ȃ<EFBFBD>Perl<72>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>͋ւ<CD8B><D682><EFBFBD><EFBFBD><EFBFBD>"
"<22>Ă<EFBFBD><C482>܂<EFBFBD>"
msgid "E300: Swap file already exists (symlink attack?)" msgid "E300: Swap file already exists (symlink attack?)"
msgstr "E300: <20>X<EFBFBD><58><EFBFBD>b<EFBFBD>v<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɑ<EFBFBD><C991>݂<EFBFBD><DD82>܂<EFBFBD> (symlink<6E>ɂ<EFBFBD><C982><EFBFBD><EFBFBD>U<EFBFBD><55>?)" msgstr "E300: <20>X<EFBFBD><58><EFBFBD>b<EFBFBD>v<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɑ<EFBFBD><C991>݂<EFBFBD><DD82>܂<EFBFBD> (symlink<6E>ɂ<EFBFBD><C982><EFBFBD><EFBFBD>U<EFBFBD><55>?)"
@ -5418,6 +5390,10 @@ msgstr "E463:
msgid "E464: Ambiguous use of user-defined command" msgid "E464: Ambiguous use of user-defined command"
msgstr "E464: <20><><EFBFBD>[<5B>U<EFBFBD>[<5B><><EFBFBD>`<60>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD>̂<EFBFBD><CC82><EFBFBD><EFBFBD>܂<EFBFBD><DC82>Ȏg<C88E>p<EFBFBD>ł<EFBFBD>" msgstr "E464: <20><><EFBFBD>[<5B>U<EFBFBD>[<5B><><EFBFBD>`<60>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD>̂<EFBFBD><CC82><EFBFBD><EFBFBD>܂<EFBFBD><DC82>Ȏg<C88E>p<EFBFBD>ł<EFBFBD>"
#, c-format
msgid "E464: Ambiguous use of user-defined command: %s"
msgstr "E464: <20><><EFBFBD>[<5B>U<EFBFBD>[<5B><><EFBFBD>`<60>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD>̂<EFBFBD><CC82><EFBFBD><EFBFBD>܂<EFBFBD><DC82>Ȏg<C88E>p<EFBFBD>ł<EFBFBD>: %s"
msgid "E465: :winsize requires two number arguments" msgid "E465: :winsize requires two number arguments"
msgstr "E465: :winsize <20>ɂ<EFBFBD>2<EFBFBD>‚̐<C282><CC90>l<EFBFBD>̈<EFBFBD><CC88><EFBFBD><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>" msgstr "E465: :winsize <20>ɂ<EFBFBD>2<EFBFBD>‚̐<C282><CC90>l<EFBFBD>̈<EFBFBD><CC88><EFBFBD><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>"
@ -6498,6 +6474,7 @@ msgstr "E802:
msgid "E803: ID not found: %d" msgid "E803: ID not found: %d"
msgstr "E803: ID <20>͂<EFBFBD><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: %d" msgstr "E803: ID <20>͂<EFBFBD><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: %d"
#, no-c-format
msgid "E804: Cannot use '%' with Float" msgid "E804: Cannot use '%' with Float"
msgstr "E804: '%' <20>𕂓<EFBFBD><F0958293><EFBFBD><EFBFBD><EFBFBD><EFBFBD>_<EFBFBD><5F><EFBFBD>Ƒg<C691>ݍ<EFBFBD><DD8D><EFBFBD>Ă͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E804: '%' <20>𕂓<EFBFBD><F0958293><EFBFBD><EFBFBD><EFBFBD><EFBFBD>_<EFBFBD><5F><EFBFBD>Ƒg<C691>ݍ<EFBFBD><DD8D><EFBFBD>Ă͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
@ -6696,6 +6673,7 @@ msgstr "E862:
msgid "E863: Not allowed for a terminal in a popup window" msgid "E863: Not allowed for a terminal in a popup window"
msgstr "E863: <20>[<5B><><EFBFBD>̓|<7C>b<EFBFBD>v<EFBFBD>A<EFBFBD>b<EFBFBD>v<EFBFBD>E<EFBFBD>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD>ł͋<C582><CD8B><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E863: <20>[<5B><><EFBFBD>̓|<7C>b<EFBFBD>v<EFBFBD>A<EFBFBD>b<EFBFBD>v<EFBFBD>E<EFBFBD>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD>ł͋<C582><CD8B><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
#, no-c-format
msgid "" msgid ""
"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " "E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
"used" "used"
@ -7019,6 +6997,7 @@ msgstr "E949:
msgid "E950: Cannot convert between %s and %s" msgid "E950: Cannot convert between %s and %s"
msgstr "E950: %s <20><> %s <20>̊Ԃŕϊ<C595><CF8A>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E950: %s <20><> %s <20>̊Ԃŕϊ<C595><CF8A>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
#, no-c-format
msgid "E951: \\% value too large" msgid "E951: \\% value too large"
msgstr "E951: \\% <20>l<EFBFBD><6C><EFBFBD><EFBFBD>߂<EFBFBD><DF82>܂<EFBFBD>" msgstr "E951: \\% <20>l<EFBFBD><6C><EFBFBD><EFBFBD>߂<EFBFBD><DF82>܂<EFBFBD>"
@ -7325,6 +7304,7 @@ msgstr "E1033:
msgid "E1034: Cannot use reserved name %s" msgid "E1034: Cannot use reserved name %s"
msgstr "E1034: <20>\\<5C><><EFBFBD><EFBFBD> %s <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1034: <20>\\<5C><><EFBFBD><EFBFBD> %s <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
#, no-c-format
msgid "E1035: % requires number arguments" msgid "E1035: % requires number arguments"
msgstr "E1035: % <20>ɂ͐<C982><CD90>l<EFBFBD>̈<EFBFBD><CC88><EFBFBD><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>" msgstr "E1035: % <20>ɂ͐<C982><CD90>l<EFBFBD>̈<EFBFBD><CC88><EFBFBD><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>"
@ -7466,10 +7446,16 @@ msgstr "E1076:
msgid "E1077: Missing argument type for %s" msgid "E1077: Missing argument type for %s"
msgstr "E1077: %s <20>̈<EFBFBD><CC88><EFBFBD><EFBFBD>̌^<5E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1077: %s <20>̈<EFBFBD><CC88><EFBFBD><EFBFBD>̌^<5E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1080: Invalid assignment"
msgstr "E1080: <20><><EFBFBD><EFBFBD><EFBFBD>ȑ<EFBFBD><C891><EFBFBD><EFBFBD>ł<EFBFBD>"
#, c-format #, c-format
msgid "E1081: Cannot unlet %s" msgid "E1081: Cannot unlet %s"
msgstr "E1081: %s <20><> unlet <20>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1081: %s <20><> unlet <20>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1082: Command modifier without command"
msgstr "E1082: <20>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD>Ȃ<EFBFBD><C882>̃R<CC83>}<7D><><EFBFBD>h<EFBFBD>C<EFBFBD><43><EFBFBD>q<EFBFBD>ł<EFBFBD>"
msgid "E1083: Missing backtick" msgid "E1083: Missing backtick"
msgstr "E1083: <20>o<EFBFBD>b<EFBFBD>N<EFBFBD>N<EFBFBD>H<EFBFBD>[<5B>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1083: <20>o<EFBFBD>b<EFBFBD>N<EFBFBD>N<EFBFBD>H<EFBFBD>[<5B>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
@ -7487,6 +7473,9 @@ msgstr "E1086:
msgid "E1087: Cannot use an index when declaring a variable" msgid "E1087: Cannot use an index when declaring a variable"
msgstr "E1087: <20>ϐ<EFBFBD><CF90><EFBFBD><EFBFBD><EFBFBD><E98CBE><EFBFBD><EFBFBD><EFBFBD>ۂɃC<C983><43><EFBFBD>f<EFBFBD>b<EFBFBD>N<EFBFBD>X<EFBFBD>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1087: <20>ϐ<EFBFBD><CF90><EFBFBD><EFBFBD><EFBFBD><E98CBE><EFBFBD><EFBFBD><EFBFBD>ۂɃC<C983><43><EFBFBD>f<EFBFBD>b<EFBFBD>N<EFBFBD>X<EFBFBD>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1088: Script cannot import itself"
msgstr "E1088: <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67><EFBFBD>g<EFBFBD><67><EFBFBD>C<EFBFBD><43><EFBFBD>|<7C>[<5B>g<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
#, c-format #, c-format
msgid "E1089: Unknown variable: %s" msgid "E1089: Unknown variable: %s"
msgstr "E1089: <20>s<EFBFBD><73><EFBFBD>ȕϐ<C895>: %s" msgstr "E1089: <20>s<EFBFBD><73><EFBFBD>ȕϐ<C895>: %s"
@ -7499,6 +7488,9 @@ msgstr "E1090:
msgid "E1091: Function is not compiled: %s" msgid "E1091: Function is not compiled: %s"
msgstr "E1091: <20>֐<EFBFBD><D690>̓R<CD83><52><EFBFBD>p<EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>: %s" msgstr "E1091: <20>֐<EFBFBD><D690>̓R<CD83><52><EFBFBD>p<EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>: %s"
msgid "E1092: Cannot nest :redir"
msgstr "E1092: :redir <20>͓<EFBFBD><CD93><EFBFBD><EFBFBD>q<EFBFBD>ɂł<C982><C582>܂<EFBFBD><DC82><EFBFBD>"
#, c-format #, c-format
msgid "E1093: Expected %d items but got %d" msgid "E1093: Expected %d items but got %d"
msgstr "E1093: %d <20>‚̗v<CC97>f<EFBFBD><66><EFBFBD><EFBFBD><EFBFBD>҂<EFBFBD><D282><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD> %d <20>‚ł<C282><C582><EFBFBD>" msgstr "E1093: %d <20>‚̗v<CC97>f<EFBFBD><66><EFBFBD><EFBFBD><EFBFBD>҂<EFBFBD><D282><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD> %d <20>‚ł<C282><C582><EFBFBD>"
@ -7591,11 +7583,11 @@ msgstr "E1116: \"assert_fails()\"
msgid "E1117: Cannot use ! with nested :def" msgid "E1117: Cannot use ! with nested :def"
msgstr "E1117: ! <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>q<EFBFBD>ɂȂ<C982><C882><EFBFBD> :def <20>Ƒg<C691>ݍ<EFBFBD><DD8D><EFBFBD>Ă͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1117: ! <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>q<EFBFBD>ɂȂ<C982><C882><EFBFBD> :def <20>Ƒg<C691>ݍ<EFBFBD><DD8D><EFBFBD>Ă͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1118: Cannot change list" msgid "E1118: Cannot change locked list"
msgstr "E1118: <20><><EFBFBD>X<EFBFBD>g<EFBFBD><67><EFBFBD>ύX<CF8D>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1118: <20><><EFBFBD>b<EFBFBD>N<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g<EFBFBD><EFBFBD><EFBFBD>ύX<EFBFBD>ł<EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD>"
msgid "E1119: Cannot change list item" msgid "E1119: Cannot change locked list item"
msgstr "E1119: <20><><EFBFBD>X<EFBFBD>g<EFBFBD>̗v<CC97>f<EFBFBD><66><EFBFBD>ύX<CF8D>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1119: <20><><EFBFBD>b<EFBFBD>N<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g<EFBFBD>̗v<EFBFBD>f<EFBFBD><EFBFBD><EFBFBD>ύX<EFBFBD>ł<EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD>"
msgid "E1120: Cannot change dict" msgid "E1120: Cannot change dict"
msgstr "E1120: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ύX<CF8D>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1120: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ύX<CF8D>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
@ -7669,6 +7661,11 @@ msgstr "E1140: :for
msgid "E1141: Indexable type required" msgid "E1141: Indexable type required"
msgstr "E1141: <20>C<EFBFBD><43><EFBFBD>f<EFBFBD>b<EFBFBD>N<EFBFBD>X<EFBFBD>”\\<5C>Ȍ^<5E><><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>" msgstr "E1141: <20>C<EFBFBD><43><EFBFBD>f<EFBFBD>b<EFBFBD>N<EFBFBD>X<EFBFBD>”\\<5C>Ȍ^<5E><><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>"
msgid "E1142: Calling test_garbagecollect_now() while v:testing is not set"
msgstr ""
"E1142: v:testing <20><><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD>Ă<EFBFBD><C482>Ȃ<EFBFBD><C882><EFBFBD><EFBFBD>Ԃ<EFBFBD> test_garbagecollect_now() <20><><EFBFBD>Ă<EFBFBD><C482><EFBFBD>"
"<22><><EFBFBD>܂<EFBFBD>"
#, c-format #, c-format
msgid "E1143: Empty expression: \"%s\"" msgid "E1143: Empty expression: \"%s\""
msgstr "E1143: <20><><EFBFBD>̎<EFBFBD><CC8E>ł<EFBFBD>: \"%s\"" msgstr "E1143: <20><><EFBFBD>̎<EFBFBD><CC8E>ł<EFBFBD>: \"%s\""
@ -7721,8 +7718,10 @@ msgstr "E1156:
msgid "E1157: Missing return type" msgid "E1157: Missing return type"
msgstr "E1157: <20>߂<EFBFBD><DF82>l<EFBFBD>̌^<5E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1157: <20>߂<EFBFBD><DF82>l<EFBFBD>̌^<5E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1158: Cannot use flatten() in Vim9 script" msgid "E1158: Cannot use flatten() in Vim9 script, use flattennew()"
msgstr "E1158: Vim9 <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>ł<EFBFBD> flatten() <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr ""
"E1158: Vim9 <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>ł<EFBFBD> flatten() <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD><EFBFBD>Aflattennew() <20><><EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD>"
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
msgid "E1159: Cannot split a window when closing the buffer" msgid "E1159: Cannot split a window when closing the buffer"
msgstr "E1159: <20>o<EFBFBD>b<EFBFBD>t<EFBFBD>@<40><><EFBFBD>‚<EFBFBD><C282>Ă<EFBFBD><C482><EFBFBD><EFBFBD>ԂɃE<C983>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD>𕪊<EFBFBD><F095AA8A><EFBFBD><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1159: <20>o<EFBFBD>b<EFBFBD>t<EFBFBD>@<40><><EFBFBD>‚<EFBFBD><C282>Ă<EFBFBD><C482><EFBFBD><EFBFBD>ԂɃE<C983>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD>𕪊<EFBFBD><F095AA8A><EFBFBD><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>"
@ -7764,8 +7763,9 @@ msgstr "E1167:
msgid "E1168: Argument already declared in the script: %s" msgid "E1168: Argument already declared in the script: %s"
msgstr "E1168: <20><><EFBFBD><EFBFBD><EFBFBD>͊<EFBFBD><CD8A>ɃX<C983>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67><EFBFBD>Ő錾<C590><E98CBE><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>: %s" msgstr "E1168: <20><><EFBFBD><EFBFBD><EFBFBD>͊<EFBFBD><CD8A>ɃX<C983>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67><EFBFBD>Ő錾<C590><E98CBE><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>: %s"
msgid "E1169: 'import * as {name}' not supported here" #, c-format
msgstr "E1169: 'import * as {name}' <20>͂<EFBFBD><CD82><EFBFBD><EFBFBD>ł̓T<CD83>|<7C>[<5B>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>" msgid "E1169: Expression too recursive: %s"
msgstr "E1169: <20><><EFBFBD>̍ċA<C48B><41><EFBFBD>[<5B><><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
msgid "E1170: Cannot use #{ to start a comment" msgid "E1170: Cannot use #{ to start a comment"
msgstr "E1170: <20>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>̊J<CC8A>n<EFBFBD><6E> #{ <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1170: <20>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>̊J<CC8A>n<EFBFBD><6E> #{ <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
@ -7813,9 +7813,6 @@ msgstr "E1180:
msgid "E1181: Cannot use an underscore here" msgid "E1181: Cannot use an underscore here"
msgstr "E1181: <20><><EFBFBD><EFBFBD><EFBFBD>ł̓A<CD83><41><EFBFBD>_<EFBFBD>[<5B>X<EFBFBD>R<EFBFBD>A<EFBFBD>͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1181: <20><><EFBFBD><EFBFBD><EFBFBD>ł̓A<CD83><41><EFBFBD>_<EFBFBD>[<5B>X<EFBFBD>R<EFBFBD>A<EFBFBD>͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1182: Blob required"
msgstr "E1182: Blob<6F>^<5E><><EFBFBD>K<EFBFBD>v<EFBFBD>ł<EFBFBD>"
#, c-format #, c-format
msgid "E1183: Cannot use a range with an assignment operator: %s" msgid "E1183: Cannot use a range with an assignment operator: %s"
msgstr "E1183: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Z<EFBFBD>q<EFBFBD>Ŕ͈͎͂g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>: %s" msgstr "E1183: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Z<EFBFBD>q<EFBFBD>Ŕ͈͎͂g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>: %s"
@ -7823,9 +7820,6 @@ msgstr "E1183:
msgid "E1184: Blob not set" msgid "E1184: Blob not set"
msgstr "E1184: Blob <20>͐ݒ肳<DD92><E882B3><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1184: Blob <20>͐ݒ肳<DD92><E882B3><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1185: Cannot nest :redir"
msgstr "E1185: :redir <20>͓<EFBFBD><CD93><EFBFBD><EFBFBD>q<EFBFBD>ɂł<C982><C582>܂<EFBFBD><DC82><EFBFBD>"
msgid "E1185: Missing :redir END" msgid "E1185: Missing :redir END"
msgstr "E1185: :redir END <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>" msgstr "E1185: :redir END <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
@ -8115,14 +8109,38 @@ msgstr "E1261: \"as\"
msgid "E1262: Cannot import the same script twice: %s" msgid "E1262: Cannot import the same script twice: %s"
msgstr "E1262: <20><><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67>2<EFBFBD><32><EFBFBD>C<EFBFBD><43><EFBFBD>|<7C>[<5B>g<EFBFBD><67><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>: %s" msgstr "E1262: <20><><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67>2<EFBFBD><32><EFBFBD>C<EFBFBD><43><EFBFBD>|<7C>[<5B>g<EFBFBD><67><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>: %s"
msgid "E1263: Using autoload in a script not under an autoload directory" msgid "E1263: cannot use name with # in Vim9 script, use export instead"
msgstr "E1263: autoload<61>f<EFBFBD>B<EFBFBD><42><EFBFBD>N<EFBFBD>g<EFBFBD><67><EFBFBD>ɖ<EFBFBD><C996><EFBFBD><EFBFBD>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67>autoload<61><64><EFBFBD>g<EFBFBD><67><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>" msgstr ""
"E1263: Vim9 <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>ł<EFBFBD> # <20><><EFBFBD><EFBFBD><EFBFBD>̖<EFBFBD><CC96>O<EFBFBD>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> export <20><><EFBFBD>g"
"<22>p<EFBFBD><70><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
#, c-format #, c-format
msgid "E1264: Autoload import cannot use absolute or relative path: %s" msgid "E1264: Autoload import cannot use absolute or relative path: %s"
msgstr "" msgstr ""
"E1264: autoload<61>C<EFBFBD><43><EFBFBD>|<7C>[<5B>g<EFBFBD>Ő<EFBFBD><C590>΂܂<CE82><DC82>͑<EFBFBD><CD91>΃p<CE83>X<EFBFBD><58><EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>: %s" "E1264: autoload<61>C<EFBFBD><43><EFBFBD>|<7C>[<5B>g<EFBFBD>Ő<EFBFBD><C590>΂܂<CE82><DC82>͑<EFBFBD><CD91>΃p<CE83>X<EFBFBD><58><EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>: %s"
msgid "E1265: Cannot use a partial here"
msgstr "E1265: <20><><EFBFBD><EFBFBD><EFBFBD>ł͕<C582><CD95><EFBFBD><EFBFBD>K<EFBFBD>p<EFBFBD>͎g<CD8E><67><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
msgid ""
"E1266: Critical error in python3 initialization, check your python3 "
"installation"
msgstr ""
"E1266: python3<6E><33><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɏd<C98F><64><EFBFBD>ȃG<C883><47><EFBFBD>[<5B><><EFBFBD>N<EFBFBD><4E><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>Bpython3<6E>̃C<CC83><43><EFBFBD>X<EFBFBD>g<EFBFBD>[<5B><><EFBFBD>󋵂<EFBFBD>"
"<22>m<EFBFBD>F<EFBFBD><46><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
#, c-format
msgid "E1267: Function name must start with a capital: %s"
msgstr "E1267: <20>֐<EFBFBD><D690><EFBFBD><EFBFBD>͑啶<CD91><E595B6><EFBFBD>Ŏn<C58E>܂<EFBFBD><DC82>Ȃ<EFBFBD><C882><EFBFBD><EFBFBD>΂Ȃ<CE82><C882>܂<EFBFBD><DC82><EFBFBD>: %s"
#, c-format
msgid "E1268: Cannot use s: in Vim9 script: %s"
msgstr "E1268: Vim9 <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>ł<EFBFBD> :s <20>͎g<CD8E>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>: %s"
#, c-format
msgid "E1269: Cannot create a Vim9 script variable in a function: %s"
msgstr "E1269: <20>֐<EFBFBD><D690><EFBFBD><EFBFBD><EFBFBD> Vim9 <20>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>ϐ<EFBFBD><CF90>͍쐬<CD8D>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>: %s"
msgid "--No lines in buffer--" msgid "--No lines in buffer--"
msgstr "--<2D>o<EFBFBD>b<EFBFBD>t<EFBFBD>@<40>ɍs<C98D><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>--" msgstr "--<2D>o<EFBFBD>b<EFBFBD>t<EFBFBD>@<40>ɍs<C98D><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>--"

View File

@ -284,9 +284,6 @@ msgstr "Preh
msgid " Adding" msgid " Adding"
msgstr " Prid<69>vam" msgstr " Prid<69>vam"
#. showmode might reset the internal line pointers, so it must
#. * be called before line = ml_get(), or when this address is no
#. * longer needed. -- Acevedo.
#. #.
msgid "-- Searching..." msgid "-- Searching..."
msgstr "-- H<>ad<61>m..." msgstr "-- H<>ad<61>m..."
@ -476,10 +473,6 @@ msgstr "E724: premenn
msgid "E699: Too many arguments" msgid "E699: Too many arguments"
msgstr "E699: Pr<50>li<6C> mnoho argumentov" msgstr "E699: Pr<50>li<6C> mnoho argumentov"
#.
#. * Yes this is ugly, I don't particularly like it either. But doing it
#. * this way has the compelling advantage that translations need not to
#. * be touched at all. See below what 'ok' and 'ync' are used for.
#. #.
msgid "&Ok" msgid "&Ok"
msgstr "&Ok" msgstr "&Ok"
@ -709,7 +702,6 @@ msgstr "E138: Ned
msgid "Writing viminfo file \"%s\"" msgid "Writing viminfo file \"%s\""
msgstr "Ukl<6B>d<EFBFBD>m viminfo s<>boru \"%s\"" msgstr "Ukl<6B>d<EFBFBD>m viminfo s<>boru \"%s\""
#. Write the info:
#, c-format #, c-format
msgid "# This viminfo file was generated by Vim %s.\n" msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# Tento viminfo s<>bor bol vytvoren<65> editorom Vim %s.\n" msgstr "# Tento viminfo s<>bor bol vytvoren<65> editorom Vim %s.\n"
@ -1212,7 +1204,6 @@ msgstr "E196: V tejto verzi nie s
msgid "E608: Cannot :throw exceptions with 'Vim' prefix" msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
msgstr "E608: Nemo<6D>no spracova<76> v<>nimku :throw s preponou 'Vim'" msgstr "E608: Nemo<6D>no spracova<76> v<>nimku :throw s preponou 'Vim'"
#. always scroll up, don't overwrite
#, c-format #, c-format
msgid "Exception thrown: %s" msgid "Exception thrown: %s"
msgstr "Spracovanie v<>nimky: %s" msgstr "Spracovanie v<>nimky: %s"
@ -1295,7 +1286,6 @@ msgstr "E601: vnorenie :try je pr
msgid "E603: :catch without :try" msgid "E603: :catch without :try"
msgstr "E603: :catch bez :try" msgstr "E603: :catch bez :try"
#. Give up for a ":catch" after ":finally" and ignore it.
#. * Just parse. #. * Just parse.
msgid "E604: :catch after :finally" msgid "E604: :catch after :finally"
msgstr "E604: :catch nasleduje po :finally" msgstr "E604: :catch nasleduje po :finally"
@ -1568,8 +1558,6 @@ msgstr "[bez znaku konca riadku]"
msgid "[Incomplete last line]" msgid "[Incomplete last line]"
msgstr "[ne<6E>pln<6C> posledn<64> riadok]" msgstr "[ne<6E>pln<6C> posledn<64> riadok]"
#. don't overwrite messages here
#. must give this prompt
#. don't use emsg() here, don't want to flush the buffers #. don't use emsg() here, don't want to flush the buffers
msgid "WARNING: The file has been changed since reading it!!!" msgid "WARNING: The file has been changed since reading it!!!"
msgstr "VAROVANIE: S<>bor bol zmenen<65> od jeho na<6E><61>tania!!!" msgstr "VAROVANIE: S<>bor bol zmenen<65> od jeho na<6E><61>tania!!!"
@ -1649,7 +1637,6 @@ msgstr "--Vymazan
msgid "auto-removing autocommand: %s <buffer=%d>" msgid "auto-removing autocommand: %s <buffer=%d>"
msgstr "samomazac<61> automatick<63> pr<70>kaz: %s <buffer=%d>" msgstr "samomazac<61> automatick<63> pr<70>kaz: %s <buffer=%d>"
#. the group doesn't exist
#, c-format #, c-format
msgid "E367: No such group: \"%s\"" msgid "E367: No such group: \"%s\""
msgstr "E367: Skupina \"%s\" neexistuje" msgstr "E367: Skupina \"%s\" neexistuje"
@ -1923,7 +1910,6 @@ msgstr "N
msgid "Find & Replace (use '\\\\' to find a '\\')" msgid "Find & Replace (use '\\\\' to find a '\\')"
msgstr "N<>js<6A> a Nahradi<64> (pou<6F>ite '\\\\' ak chcete n<>js<6A> '\\')" msgstr "N<>js<6A> a Nahradi<64> (pou<6F>ite '\\\\' ak chcete n<>js<6A> '\\')"
#. We fake this: Use a filter that doesn't select anything and a default
#. * file name that won't be used. #. * file name that won't be used.
msgid "Not Used" msgid "Not Used"
msgstr "[neupravovan<61>]" msgstr "[neupravovan<61>]"
@ -2960,7 +2946,6 @@ msgstr ""
"\n" "\n"
"# S<>borov<6F> zna<6E>ky:\n" "# S<>borov<6F> zna<6E>ky:\n"
#. Write the jumplist with -'
#, c-format #, c-format
msgid "" msgid ""
"\n" "\n"
@ -3329,7 +3314,6 @@ msgstr "Pri otv
msgid " NEWER than swap file!\n" msgid " NEWER than swap file!\n"
msgstr " NOV<4F><56> ako odkladac<61> s<>bor!\n" msgstr " NOV<4F><56> ako odkladac<61> s<>bor!\n"
#. Some of these messages are long to allow translation to
#. * other languages. #. * other languages.
msgid "" msgid ""
"\n" "\n"
@ -3433,7 +3417,6 @@ msgstr "E331: Polo
msgid "E332: Separator cannot be part of a menu path" msgid "E332: Separator cannot be part of a menu path"
msgstr "E332: Odde<64>ova<76> nesmie by<62> <20>as<61>ou cesty ponuky" msgstr "E332: Odde<64>ova<76> nesmie by<62> <20>as<61>ou cesty ponuky"
#. Now we have found the matching menu, and we list the mappings
#. Highlight title #. Highlight title
msgid "" msgid ""
"\n" "\n"
@ -4714,7 +4697,6 @@ msgstr "Prep
msgid "Sorry, only %ld suggestions" msgid "Sorry, only %ld suggestions"
msgstr "Prep<65><70>te, iba %ld n<>vrhov" msgstr "Prep<65><70>te, iba %ld n<>vrhov"
#. avoid more prompt
#, c-format #, c-format
msgid "Change \"%.*s\" to:" msgid "Change \"%.*s\" to:"
msgstr "Zmeni<6E> \"%.*s\" na:" msgstr "Zmeni<6E> \"%.*s\" na:"
@ -4730,7 +4712,6 @@ msgstr "E752:
msgid "E753: Not found: %s" msgid "E753: Not found: %s"
msgstr "E753: Nen<65>jden<65>: %s" msgstr "E753: Nen<65>jden<65>: %s"
#. This should have been checked when generating the .spl
#. * file. #. * file.
msgid "E783: duplicate char in MAP entry" msgid "E783: duplicate char in MAP entry"
msgstr "E783: duplicitn<74> znak v MAP polo<6C>ke" msgstr "E783: duplicitn<74> znak v MAP polo<6C>ke"
@ -4955,7 +4936,6 @@ msgstr "E428: Za posledn
msgid "File \"%s\" does not exist" msgid "File \"%s\" does not exist"
msgstr "S<>bor \"%s\" neexistuje" msgstr "S<>bor \"%s\" neexistuje"
#. Give an indication of the number of matching tags
#, c-format #, c-format
msgid "tag %d of %d%s" msgid "tag %d of %d%s"
msgstr "tag %d z %d%s" msgstr "tag %d z %d%s"
@ -5435,9 +5415,6 @@ msgstr "Pr
msgid "--No lines in buffer--" msgid "--No lines in buffer--"
msgstr "--Buffer neobsahuje <20>iadne riadky--" msgstr "--Buffer neobsahuje <20>iadne riadky--"
#.
#. * The error messages that can be shared are included here.
#. * Excluded are errors that are only used once and debugging messages.
#. #.
msgid "E470: Command aborted" msgid "E470: Command aborted"
msgstr "E470: Pr<50>kaz preru<72>en<65>" msgstr "E470: Pr<50>kaz preru<72>en<65>"
@ -5775,4 +5752,3 @@ msgstr "h
msgid "search hit BOTTOM, continuing at TOP" msgid "search hit BOTTOM, continuing at TOP"
msgstr "h<>adanie dosiahlo koniec, pokra<72>ovanie od za<7A>iatku" msgstr "h<>adanie dosiahlo koniec, pokra<72>ovanie od za<7A>iatku"

View File

@ -284,9 +284,6 @@ msgstr "Preh
msgid " Adding" msgid " Adding"
msgstr " Prid<69>vam" msgstr " Prid<69>vam"
#. showmode might reset the internal line pointers, so it must
#. * be called before line = ml_get(), or when this address is no
#. * longer needed. -- Acevedo.
#. #.
msgid "-- Searching..." msgid "-- Searching..."
msgstr "-- H<>ad<61>m..." msgstr "-- H<>ad<61>m..."
@ -476,10 +473,6 @@ msgstr "E724: premenn
msgid "E699: Too many arguments" msgid "E699: Too many arguments"
msgstr "E699: Pr<50>li<6C> mnoho argumentov" msgstr "E699: Pr<50>li<6C> mnoho argumentov"
#.
#. * Yes this is ugly, I don't particularly like it either. But doing it
#. * this way has the compelling advantage that translations need not to
#. * be touched at all. See below what 'ok' and 'ync' are used for.
#. #.
msgid "&Ok" msgid "&Ok"
msgstr "&Ok" msgstr "&Ok"
@ -709,7 +702,6 @@ msgstr "E138: Ned
msgid "Writing viminfo file \"%s\"" msgid "Writing viminfo file \"%s\""
msgstr "Ukl<6B>d<EFBFBD>m viminfo s<>boru \"%s\"" msgstr "Ukl<6B>d<EFBFBD>m viminfo s<>boru \"%s\""
#. Write the info:
#, c-format #, c-format
msgid "# This viminfo file was generated by Vim %s.\n" msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# Tento viminfo s<>bor bol vytvoren<65> editorom Vim %s.\n" msgstr "# Tento viminfo s<>bor bol vytvoren<65> editorom Vim %s.\n"
@ -1212,7 +1204,6 @@ msgstr "E196: V tejto verzi nie s
msgid "E608: Cannot :throw exceptions with 'Vim' prefix" msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
msgstr "E608: Nemo<6D>no spracova<76> v<>nimku :throw s preponou 'Vim'" msgstr "E608: Nemo<6D>no spracova<76> v<>nimku :throw s preponou 'Vim'"
#. always scroll up, don't overwrite
#, c-format #, c-format
msgid "Exception thrown: %s" msgid "Exception thrown: %s"
msgstr "Spracovanie v<>nimky: %s" msgstr "Spracovanie v<>nimky: %s"
@ -1295,7 +1286,6 @@ msgstr "E601: vnorenie :try je pr
msgid "E603: :catch without :try" msgid "E603: :catch without :try"
msgstr "E603: :catch bez :try" msgstr "E603: :catch bez :try"
#. Give up for a ":catch" after ":finally" and ignore it.
#. * Just parse. #. * Just parse.
msgid "E604: :catch after :finally" msgid "E604: :catch after :finally"
msgstr "E604: :catch nasleduje po :finally" msgstr "E604: :catch nasleduje po :finally"
@ -1568,8 +1558,6 @@ msgstr "[bez znaku konca riadku]"
msgid "[Incomplete last line]" msgid "[Incomplete last line]"
msgstr "[ne<6E>pln<6C> posledn<64> riadok]" msgstr "[ne<6E>pln<6C> posledn<64> riadok]"
#. don't overwrite messages here
#. must give this prompt
#. don't use emsg() here, don't want to flush the buffers #. don't use emsg() here, don't want to flush the buffers
msgid "WARNING: The file has been changed since reading it!!!" msgid "WARNING: The file has been changed since reading it!!!"
msgstr "VAROVANIE: S<>bor bol zmenen<65> od jeho na<6E><61>tania!!!" msgstr "VAROVANIE: S<>bor bol zmenen<65> od jeho na<6E><61>tania!!!"
@ -1649,7 +1637,6 @@ msgstr "--Vymazan
msgid "auto-removing autocommand: %s <buffer=%d>" msgid "auto-removing autocommand: %s <buffer=%d>"
msgstr "samomazac<61> automatick<63> pr<70>kaz: %s <buffer=%d>" msgstr "samomazac<61> automatick<63> pr<70>kaz: %s <buffer=%d>"
#. the group doesn't exist
#, c-format #, c-format
msgid "E367: No such group: \"%s\"" msgid "E367: No such group: \"%s\""
msgstr "E367: Skupina \"%s\" neexistuje" msgstr "E367: Skupina \"%s\" neexistuje"
@ -1923,7 +1910,6 @@ msgstr "N
msgid "Find & Replace (use '\\\\' to find a '\\')" msgid "Find & Replace (use '\\\\' to find a '\\')"
msgstr "N<>js<6A> a Nahradi<64> (pou<6F>ite '\\\\' ak chcete n<>js<6A> '\\')" msgstr "N<>js<6A> a Nahradi<64> (pou<6F>ite '\\\\' ak chcete n<>js<6A> '\\')"
#. We fake this: Use a filter that doesn't select anything and a default
#. * file name that won't be used. #. * file name that won't be used.
msgid "Not Used" msgid "Not Used"
msgstr "[neupravovan<61>]" msgstr "[neupravovan<61>]"
@ -2960,7 +2946,6 @@ msgstr ""
"\n" "\n"
"# S<>borov<6F> zna<6E>ky:\n" "# S<>borov<6F> zna<6E>ky:\n"
#. Write the jumplist with -'
#, c-format #, c-format
msgid "" msgid ""
"\n" "\n"
@ -3329,7 +3314,6 @@ msgstr "Pri otv
msgid " NEWER than swap file!\n" msgid " NEWER than swap file!\n"
msgstr " NOV<4F><56> ako odkladac<61> s<>bor!\n" msgstr " NOV<4F><56> ako odkladac<61> s<>bor!\n"
#. Some of these messages are long to allow translation to
#. * other languages. #. * other languages.
msgid "" msgid ""
"\n" "\n"
@ -3433,7 +3417,6 @@ msgstr "E331: Polo
msgid "E332: Separator cannot be part of a menu path" msgid "E332: Separator cannot be part of a menu path"
msgstr "E332: Odde<64>ova<76> nesmie by<62> <20>as<61>ou cesty ponuky" msgstr "E332: Odde<64>ova<76> nesmie by<62> <20>as<61>ou cesty ponuky"
#. Now we have found the matching menu, and we list the mappings
#. Highlight title #. Highlight title
msgid "" msgid ""
"\n" "\n"
@ -4714,7 +4697,6 @@ msgstr "Prep
msgid "Sorry, only %ld suggestions" msgid "Sorry, only %ld suggestions"
msgstr "Prep<65><70>te, iba %ld n<>vrhov" msgstr "Prep<65><70>te, iba %ld n<>vrhov"
#. avoid more prompt
#, c-format #, c-format
msgid "Change \"%.*s\" to:" msgid "Change \"%.*s\" to:"
msgstr "Zmeni<6E> \"%.*s\" na:" msgstr "Zmeni<6E> \"%.*s\" na:"
@ -4730,7 +4712,6 @@ msgstr "E752:
msgid "E753: Not found: %s" msgid "E753: Not found: %s"
msgstr "E753: Nen<65>jden<65>: %s" msgstr "E753: Nen<65>jden<65>: %s"
#. This should have been checked when generating the .spl
#. * file. #. * file.
msgid "E783: duplicate char in MAP entry" msgid "E783: duplicate char in MAP entry"
msgstr "E783: duplicitn<74> znak v MAP polo<6C>ke" msgstr "E783: duplicitn<74> znak v MAP polo<6C>ke"
@ -4955,7 +4936,6 @@ msgstr "E428: Za posledn
msgid "File \"%s\" does not exist" msgid "File \"%s\" does not exist"
msgstr "S<>bor \"%s\" neexistuje" msgstr "S<>bor \"%s\" neexistuje"
#. Give an indication of the number of matching tags
#, c-format #, c-format
msgid "tag %d of %d%s" msgid "tag %d of %d%s"
msgstr "tag %d z %d%s" msgstr "tag %d z %d%s"
@ -5435,9 +5415,6 @@ msgstr "Pr
msgid "--No lines in buffer--" msgid "--No lines in buffer--"
msgstr "--Buffer neobsahuje <20>iadne riadky--" msgstr "--Buffer neobsahuje <20>iadne riadky--"
#.
#. * The error messages that can be shared are included here.
#. * Excluded are errors that are only used once and debugging messages.
#. #.
msgid "E470: Command aborted" msgid "E470: Command aborted"
msgstr "E470: Pr<50>kaz preru<72>en<65>" msgstr "E470: Pr<50>kaz preru<72>en<65>"
@ -5775,4 +5752,3 @@ msgstr "h
msgid "search hit BOTTOM, continuing at TOP" msgid "search hit BOTTOM, continuing at TOP"
msgstr "h<>adanie dosiahlo koniec, pokra<72>ovanie od za<7A>iatku" msgstr "h<>adanie dosiahlo koniec, pokra<72>ovanie od za<7A>iatku"

View File

@ -9972,5 +9972,3 @@ msgstr "име MzScheme динамичке библиотеке"
msgid "name of the MzScheme GC dynamic library" msgid "name of the MzScheme GC dynamic library"
msgstr "име MzScheme GC динамичке библиотеке" msgstr "име MzScheme GC динамичке библиотеке"

View File

@ -9,7 +9,7 @@
# Edyfox <edyfox@gmail.com> # Edyfox <edyfox@gmail.com>
# Yuheng Xie <elephant@linux.net.cn> # Yuheng Xie <elephant@linux.net.cn>
# #
# Original translations. # Generated from zh_CN.UTF-8.po, DO NOT EDIT.
# #
msgid "" msgid ""
msgstr "" msgstr ""
@ -17,8 +17,8 @@ msgstr ""
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-04-21 15:16+0800\n" "POT-Creation-Date: 2006-04-21 15:16+0800\n"
"PO-Revision-Date: 2006-04-21 14:00+0800\n" "PO-Revision-Date: 2006-04-21 14:00+0800\n"
"Last-Translator: Yuheng Xie <elephant@linux.net.cn>\n" "Last-Translator: Yuheng Xie\n"
"Language-Team: Simplified Chinese <i18n-translation@lists.linux.net.cn>\n" "Language-Team: Simplified Chinese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=gb2312\n" "Content-Type: text/plain; charset=gb2312\n"
"Content-Transfer-Encoding: 8-bit\n" "Content-Transfer-Encoding: 8-bit\n"
@ -241,9 +241,8 @@ msgstr "
msgid " Tag completion (^]^N^P)" msgid " Tag completion (^]^N^P)"
msgstr " Tag <20><>ȫ (^]^N^P)" msgstr " Tag <20><>ȫ (^]^N^P)"
#, fuzzy msgid " Path pattern completion (^N^P)"
#~ msgid " Path pattern completion (^N^P)" msgstr " ͷ<>ļ<EFBFBD>ģʽ<C4A3><CABD>ȫ (^N^P)"
#~ msgstr " ·<><C2B7>ģʽ<C4A3><CABD>ȫ (^N^P)"
msgid " Definition completion (^D^N^P)" msgid " Definition completion (^D^N^P)"
msgstr " <20><><EFBFBD>岹ȫ (^D^N^P)" msgstr " <20><><EFBFBD>岹ȫ (^D^N^P)"
@ -2862,7 +2861,8 @@ msgstr "-X\t\t\t
msgid "--remote <files>\tEdit <files> in a Vim server if possible" msgid "--remote <files>\tEdit <files> in a Vim server if possible"
msgstr "--remote <files>\t<><74><EFBFBD>п<EFBFBD><D0BF>ܣ<EFBFBD><DCA3><EFBFBD> Vim <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϱ<CFB1>ļ<EFBFBD> <files>" msgstr "--remote <files>\t<><74><EFBFBD>п<EFBFBD><D0BF>ܣ<EFBFBD><DCA3><EFBFBD> Vim <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϱ<CFB1>ļ<EFBFBD> <files>"
msgid "--remote-silent <files> Same, don't complain if there is no server" msgid ""
"--remote-silent <files> Same, don't complain if there is no server"
msgstr "--remote-silent <files> ͬ<>ϣ<EFBFBD><CFA3>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Թ" msgstr "--remote-silent <files> ͬ<>ϣ<EFBFBD><CFA3>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Թ"
msgid "" msgid ""
@ -5243,7 +5243,7 @@ msgstr "Vim:
#. must display the prompt #. must display the prompt
msgid "No undo possible; continue anyway" msgid "No undo possible; continue anyway"
msgstr "<22>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" msgstr "<22>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
msgid "Already at oldest change" msgid "Already at oldest change"
msgstr "<22><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD>ɵĸı<C4B8>" msgstr "<22><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD>ɵĸı<C4B8>"
@ -5560,13 +5560,13 @@ msgid "type :help cp-default<Enter> for info on this"
msgstr "<22><><EFBFBD><EFBFBD> :help cp-default<Enter> <20><EFBFBD><E9BFB4><EFBFBD><EFBFBD>˵<EFBFBD><CBB5> " msgstr "<22><><EFBFBD><EFBFBD> :help cp-default<Enter> <20><EFBFBD><E9BFB4><EFBFBD><EFBFBD>˵<EFBFBD><CBB5> "
msgid "menu Help->Orphans for information " msgid "menu Help->Orphans for information "
msgstr "<22>˵<EFBFBD> Help->Orphans <20>鿴˵<E9BFB4><CBB5> " msgstr "<22>˵<EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>-><3E><EFBFBD> <20>鿴˵<E9BFB4><CBB5> "
msgid "Running modeless, typed text is inserted" msgid "Running modeless, typed text is inserted"
msgstr "<22><>ģʽ<C4A3><CABD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ּ<EFBFBD><D6BC><EFBFBD><EFBFBD><EFBFBD>" msgstr "<22><>ģʽ<C4A3><CABD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ּ<EFBFBD><D6BC><EFBFBD><EFBFBD><EFBFBD>"
msgid "menu Edit->Global Settings->Toggle Insert Mode " msgid "menu Edit->Global Settings->Toggle Insert Mode "
msgstr "<22>˵<EFBFBD> Edit->Global Settings->Toggle Insert Mode " msgstr "<22>˵<EFBFBD> <EFBFBD>༭->ȫ<><C8AB><EFBFBD>趨-><3E><>/<2F>ز<EFBFBD><D8B2><EFBFBD>ģʽ "
#, fuzzy #, fuzzy
#~ msgid " for two modes " #~ msgid " for two modes "