Update runtime files
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim
index 342731b..0d6841a 100644
--- a/runtime/autoload/dist/ft.vim
+++ b/runtime/autoload/dist/ft.vim
@@ -1,7 +1,7 @@
" Vim functions for file type detection
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Dec 17
+" Last Change: 2022 Jan 11
" These functions are moved here from runtime/filetype.vim to make startup
" faster.
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index c1aee0e..96a0e4b 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -1,4 +1,4 @@
-*autocmd.txt* For Vim version 8.2. Last change: 2021 Nov 20
+*autocmd.txt* For Vim version 8.2. Last change: 2022 Jan 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -51,10 +51,10 @@
2. Defining autocommands *autocmd-define*
*:au* *:autocmd*
-:au[tocmd] [group] {event} {pat} [++once] [++nested] {cmd}
+:au[tocmd] [group] {event} {aupat} [++once] [++nested] {cmd}
Add {cmd} to the list of commands that Vim will
execute automatically on {event} for a file matching
- {pat} |autocmd-patterns|.
+ {aupat} |autocmd-patterns|.
Here {event} cannot be "*". *E1155*
Note: A quote character is seen as argument to the
:autocmd and won't start a comment.
@@ -145,19 +145,19 @@
==============================================================================
3. Removing autocommands *autocmd-remove*
-:au[tocmd]! [group] {event} {pat} [++once] [++nested] {cmd}
+:au[tocmd]! [group] {event} {aupat} [++once] [++nested] {cmd}
Remove all autocommands associated with {event} and
- {pat}, and add the command {cmd}.
+ {aupat}, and add the command {cmd}.
See |autocmd-once| for [++once].
See |autocmd-nested| for [++nested].
-:au[tocmd]! [group] {event} {pat}
+:au[tocmd]! [group] {event} {aupat}
Remove all autocommands associated with {event} and
- {pat}.
+ {aupat}.
-:au[tocmd]! [group] * {pat}
- Remove all autocommands associated with {pat} for all
- events.
+:au[tocmd]! [group] * {aupat}
+ Remove all autocommands associated with {aupat} for
+ all events.
:au[tocmd]! [group] {event}
Remove ALL autocommands for {event}.
@@ -177,12 +177,12 @@
==============================================================================
4. Listing autocommands *autocmd-list*
-:au[tocmd] [group] {event} {pat}
+:au[tocmd] [group] {event} {aupat}
Show the autocommands associated with {event} and
- {pat}.
+ {aupat}.
-:au[tocmd] [group] * {pat}
- Show the autocommands associated with {pat} for all
+:au[tocmd] [group] * {aupat}
+ Show the autocommands associated with {aupat} for all
events.
:au[tocmd] [group] {event}
@@ -1311,16 +1311,16 @@
Before a WinEnter event.
==============================================================================
-6. Patterns *autocmd-patterns* *{pat}*
+6. Patterns *autocmd-patterns* *{aupat}*
-The {pat} argument can be a comma separated list. This works as if the
-command was given with each pattern separately. Thus this command: >
+The {aupat} argument of `:autocmd` can be a comma separated list. This works as
+if the command was given with each pattern separately. Thus this command: >
:autocmd BufRead *.txt,*.info set et
Is equivalent to: >
:autocmd BufRead *.txt set et
:autocmd BufRead *.info set et
-The file pattern {pat} is tested for a match against the file name in one of
+The file pattern {aupat} is tested for a match against the file name in one of
two ways:
1. When there is no '/' in the pattern, Vim checks for a match against only
the tail part of the file name (without its leading directory path).
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 9029685..3850b38 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 8.2. Last change: 2022 Jan 08
+*builtin.txt* For Vim version 8.2. Last change: 2022 Jan 16
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index ebb78b0..4f217fd 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt* For Vim version 8.2. Last change: 2021 Dec 27
+*editing.txt* For Vim version 8.2. Last change: 2022 Jan 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1388,7 +1388,8 @@
command has not been used stick to the global or tab-local current directory.
When jumping to another window the current directory is changed to the last
specified local current directory. If none was specified, the global or
-tab-local current directory is used.
+tab-local current directory is used. When creating a new window it inherits
+the local directory of the current window.
When a |:tcd| command has been used for a tab page, the specified directory
becomes the current directory for the current tab page and the current window.
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index 1072d56..2727a4c 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -1,4 +1,4 @@
-*map.txt* For Vim version 8.2. Last change: 2022 Jan 03
+*map.txt* For Vim version 8.2. Last change: 2022 Jan 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -270,7 +270,7 @@
endfunc
nnoremap <expr> <F3> <SID>OpenPopup()
-Also, keep in mind that the expression may be evaluated when looking for
+Keep in mind that the expression may be evaluated when looking for
typeahead, before the previous command has been executed. For example: >
func StoreColumn()
let g:column = col('.')
@@ -353,7 +353,7 @@
in a plugin using an autoload script: >
vim9script
import autoload 'implementation.vim' as impl
- nnoremap <silent> <F4> <ScriptCmd>impl.DoTheWork()<CR>
+ nnoremap <F4> <ScriptCmd>impl.DoTheWork()<CR>
No matter where <F4> is typed, the "impl" import will be found in the script
context of where the mapping was defined. And since it's an autoload import,
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 407c23c..8ea1958 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt* For Vim version 8.2. Last change: 2021 Dec 27
+*repeat.txt* For Vim version 8.2. Last change: 2022 Jan 09
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 78e88f3..8914fc2 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -3649,6 +3649,7 @@
<S-xF4> term.txt /*<S-xF4>*
<SID> map.txt /*<SID>*
<SNR> map.txt /*<SNR>*
+<ScriptCmd> map.txt /*<ScriptCmd>*
<ScrollWheelDown> scroll.txt /*<ScrollWheelDown>*
<ScrollWheelLeft> scroll.txt /*<ScrollWheelLeft>*
<ScrollWheelRight> scroll.txt /*<ScrollWheelRight>*
@@ -10278,6 +10279,7 @@
vim7 version7.txt /*vim7*
vim8 version8.txt /*vim8*
vim9 vim9.txt /*vim9*
+vim9-autoload vim9.txt /*vim9-autoload*
vim9-boolean vim9.txt /*vim9-boolean*
vim9-classes vim9.txt /*vim9-classes*
vim9-const vim9.txt /*vim9-const*
@@ -10435,6 +10437,8 @@
win_gotoid() builtin.txt /*win_gotoid()*
win_id2tabwin() builtin.txt /*win_id2tabwin()*
win_id2win() builtin.txt /*win_id2win()*
+win_move_separator() builtin.txt /*win_move_separator()*
+win_move_statusline() builtin.txt /*win_move_statusline()*
win_screenpos() builtin.txt /*win_screenpos()*
win_splitmove() builtin.txt /*win_splitmove()*
winbufnr() builtin.txt /*winbufnr()*
@@ -10617,6 +10621,7 @@
{Visual} intro.txt /*{Visual}*
{address} cmdline.txt /*{address}*
{arglist} editing.txt /*{arglist}*
+{aupat} autocmd.txt /*{aupat}*
{bufname} windows.txt /*{bufname}*
{char1-char2} intro.txt /*{char1-char2}*
{event} autocmd.txt /*{event}*
@@ -10626,7 +10631,6 @@
{motion} intro.txt /*{motion}*
{move-around} visual.txt /*{move-around}*
{offset} pattern.txt /*{offset}*
-{pat} autocmd.txt /*{pat}*
{register} change.txt /*{register}*
{rhs} map.txt /*{rhs}*
{subject} helphelp.txt /*{subject}*
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index 3ff1450..0459aa3 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -1,4 +1,4 @@
-*testing.txt* For Vim version 8.2. Last change: 2021 Dec 11
+*testing.txt* For Vim version 8.2. Last change: 2022 Jan 13
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index b18effd..851c167 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 8.2. Last change: 2022 Jan 08
+*todo.txt* For Vim version 8.2. Last change: 2022 Jan 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,15 +38,15 @@
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Autoload import syntax:
- import autoload "filename"
- import autoload "filename" as name
-doesn't load the script yet
- autoload items can be used without the "#dir#file#" prefix, but file.item
- Add a test_override() item to load the script and compile functions the
- moment it is encountered, so that types are checked.
-"vim9script autoload" in an autoload script, using "export" will prefix
- "dir#file#" to the exported item.
+TODO in eval_method() for using partial.
+
+TODO in compile_load_scriptvar()
+Try using a variable or function that is not exported
+
+"return Msg()" does not give an error if there is no return value. #9497
+
+eval_map_expr() in getchar.c saves stuff because "mp" can change, this does
+not happen in map.c for an abbreviation. Test that this fails, fix it.
Once Vim9 is stable:
- Add all the error numbers in a good place in documentation.
@@ -207,6 +207,8 @@
When using 'cryptmethod' xchaha20 the undo file is not encrypted.
Need to handle extra bytes.
+Some prompts are not translated: #9495
+
Test_communicate_ipv6(): is flaky on many systems
Fails in line 64 of Ch_communicate, no exception is thrown.
@@ -904,9 +906,6 @@
included in the existing fold. Deleting the empty line and undo fixes it.
(Oleg Koshovetc, 2018 Jul 15, #3214)
-Patch to support "xxd -ps". (Erik Auerswald, 2018 May 1)
-Lacks a test.
-
Column number is wrong when using 'linebreak' and 'wrap'. (Keith Smiley, 2018
Jan 15, #2555)
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index a3feeb0..fb0a357 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 8.2. Last change: 2022 Jan 08
+*various.txt* For Vim version 8.2. Last change: 2022 Jan 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -570,19 +570,19 @@
:redi[r] END End redirecting messages.
*:filt* *:filter*
-:filt[er][!] {pat} {command}
-:filt[er][!] /{pat}/ {command}
+:filt[er][!] {pattern} {command}
+:filt[er][!] /{pattern}/ {command}
Restrict the output of {command} to lines matching
- with {pat}. For example, to list only xml files: >
+ with {pattern}. For example, to list only xml files: >
:filter /\.xml$/ oldfiles
< If the [!] is given, restrict the output of {command}
- to lines that do NOT match {pat}.
+ to lines that do NOT match {pattern}.
- {pat} is a Vim search pattern. Instead of enclosing
+ {pattern} is a Vim search pattern. Instead of enclosing
it in / any non-ID character (see |'isident'|) can be
- used, so long as it does not appear in {pat}. Without
- the enclosing character the pattern cannot include the
- bar character. 'ignorecase' is not used.
+ used, so long as it does not appear in {pattern}.
+ Without the enclosing character the pattern cannot
+ include the bar character. 'ignorecase' is not used.
The pattern is matched against the relevant part of
the output, not necessarily the whole line. Only some
diff --git a/runtime/doc/vim-ja.UTF-8.1 b/runtime/doc/vim-ja.UTF-8.1
index 363922b..8751391 100644
--- a/runtime/doc/vim-ja.UTF-8.1
+++ b/runtime/doc/vim-ja.UTF-8.1
@@ -166,7 +166,7 @@
.TP
\-d
差分モードで起動します。
-二つか三つの四つのファイルを引数に指定してください。
+2 個から 8 個のファイルを引数に指定してください。
指定されたファイルが開かれ、それらのファイルの差分が表示されます。
vimdiff(1) と同様の動作です。
.TP
@@ -217,8 +217,7 @@
サポートされていない場合はエラーメッセージを表示して終了します。
.TP
\-i {viminfo}
-viminfo ファイルを使う設定になっている場合は、初期設定の "~/.viminfo"
-の代わりに、指定されたファイルを設定します。
+初期設定の "~/.viminfo" の代わりに、viminfo ファイルを読み書きする際に使うファイル名を指定します。
"NONE" を指定すると、.viminfo ファイルを使わないように設定できます。
.TP
\-L
@@ -356,6 +355,10 @@
これ以降の引数はすべてファイル名として扱われます。
ファイル名が '\-' で始まっているファイルを開くときに使ってください。
.TP
+\-\-clean
+一切の個人設定 (vimrc、プラグイン、その他) を使用しません。
+ある問題がクリーンな Vim セットアップで再現するかを確認するのに有用です。
+.TP
\-\-echo\-wid
GTK GUI のみ: Window ID を標準出力に出力します。
.TP
@@ -398,6 +401,9 @@
\-\-socketid {id}
GTK GUI のみ: GtkPlug メカニズムを使って gvim を別のウィンドウの中で実行します。
.TP
+\-\-startuptime {file}
+起動処理の間、経過時間のメッセージをファイル {fname} に書き出します。
+.TP
\-\-version
バージョン情報を表示して終了します。
.SH オンラインヘルプ
diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt
index 8942466..94a5057 100644
--- a/runtime/doc/vim9.txt
+++ b/runtime/doc/vim9.txt
@@ -1,4 +1,4 @@
-*vim9.txt* For Vim version 8.2. Last change: 2022 Jan 07
+*vim9.txt* For Vim version 8.2. Last change: 2022 Jan 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -103,6 +103,8 @@
`:exe`: >
:exe @a
- Unless mentioned specifically, the highest |scriptversion| is used.
+- When defining an expression mapping, the expression will be evaluated in the
+ context of the script where it was defined.
Comments starting with # ~
@@ -1357,9 +1359,11 @@
5. Namespace, Import and Export
*vim9script* *vim9-export* *vim9-import*
-A Vim9 script can be written to be imported. This means that everything in
-the script is local, except for items that are exported. Those exported
-items, and only those items, can then be imported in another script.
+A Vim9 script can be written to be imported. This means that some items are
+intentionally exported, made available to other scripts. When the exporting
+script is imported in another script, these exported items can then be used in
+that script. All the other items remain script-local in the exporting script
+and cannot be accessed by the importing script.
This mechanism exists for writing a script that can be sourced (imported) by
other scripts, while making sure these other scripts only have access to what
@@ -1367,8 +1371,8 @@
risc of name collisions. For example when you have two plugins with similar
functionality.
-You can cheat by using the global namespace explicitly. We will assume here
-that you don't do that.
+You can cheat by using the global namespace explicitly. That should be done
+only for things that really are global.
Namespace ~
@@ -1500,7 +1504,7 @@
result in undefined items.
-Import in an autoload script ~
+Importing an autoload script ~
*vim9-autoload*
For optimal startup speed, loading scripts should be postponed until they are
actually needed. Using the autoload mechanism is recommended:
@@ -1534,16 +1538,30 @@
You can split up the functionality and import other scripts from the
autoload script as you like. This way you can share code between plugins.
+For defining a mapping that uses the imported autoload script the special key
+|<ScriptCmd>| is useful. It allows for a command in a mapping to use the
+script context of where the mapping was defined.
+
When compiling a `:def` function and a function in an autoload script is
encountered, the script is not loaded until the `:def` function is called.
This also means you get any errors only at runtime, since the argument and
return types are not known yet.
+For testing the |test_override()| function can be used to have the
+`import autoload` load the script right away, so that the items and types can
+be checked without waiting for them to be actually used: >
+ test_override('autoload', 1)
+Reset it later with: >
+ test_override('autoload', 0)
+Or: >
+ test_override('ALL', 0)
+
Import in legacy Vim script ~
If an `import` statement is used in legacy Vim script, the script-local "s:"
-namespace will be used for the imported item, even when "s:" is not specified.
+namespace will be used for the imported items, even when "s:" is not
+specified.
==============================================================================
diff --git a/runtime/doc/vimdiff-ja.UTF-8.1 b/runtime/doc/vimdiff-ja.UTF-8.1
index 03fb900..b9324ee 100644
--- a/runtime/doc/vimdiff-ja.UTF-8.1
+++ b/runtime/doc/vimdiff-ja.UTF-8.1
@@ -1,15 +1,15 @@
.TH VIMDIFF 1 "2001 March 30"
.SH 名前
-vimdiff \- 二つか三つか四つのファイルを Vim で開いて、その差分を表示する
+vimdiff \- 2 個から 8 個のファイルを Vim で開いて、その差分を表示する
.SH 書式
.br
.B vimdiff
-[options] file1 file2 [file3 [file4]]
+[options] file1 file2 [file3 [file4 [file5 [file6 [file7 [file8]]]]]]
.PP
.B gvimdiff
.SH 説明
.B Vimdiff
-は、二つ (か三つか四つ) のファイルを
+は、2 個から 8 個のファイルを
.B Vim
で開きます。
ファイルは個別のウィンドウで開かれ、差分が強調表示されます。
diff --git a/runtime/doc/xxd-ja.UTF-8.1 b/runtime/doc/xxd-ja.UTF-8.1
index b0640cf..a03671c 100644
--- a/runtime/doc/xxd-ja.UTF-8.1
+++ b/runtime/doc/xxd-ja.UTF-8.1
@@ -74,6 +74,7 @@
一行
.RI < cols >
オクテットで出力する。標準設定は 16 (\-i: 12, \-ps: 30, \-b: 6)。最大 256。
+\-ps には最大値がありません。 \-ps 付きの場合、0 を指定すると単一の長い行で出力されます。
.TP
.IR \-C " | " \-capitalize
\-i を使用した際に、C インクルードファイル形式の変数名を大文字にする。
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index b1e6c6d..3b61295 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1,7 +1,7 @@
" Vim support file to detect file types
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Jan 05
+" Last Change: 2022 Jan 13
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
index d288af1..fde59df 100644
--- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
+++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
@@ -2,7 +2,7 @@
"
" Author: Bram Moolenaar
" Copyright: Vim license applies, see ":help license"
-" Last Change: 2021 Dec 16
+" Last Change: 2022 Jan 13
"
" WORK IN PROGRESS - Only the basics work
" Note: On MS-Windows you need a recent version of gdb. The one included with
@@ -1252,8 +1252,17 @@
if a:msg =~ '^\(\*stopped\|=thread-selected\)' && filereadable(fname)
let lnum = substitute(a:msg, '.*line="\([^"]*\)".*', '\1', '')
if lnum =~ '^[0-9]*$'
- call s:GotoSourcewinOrCreateIt()
+ call s:GotoSourcewinOrCreateIt()
if expand('%:p') != fnamemodify(fname, ':p')
+ augroup Termdebug
+ " Always open a file read-only instead of showing the ATTENTION
+ " prompt, since we are unlikely to want to edit the file.
+ " The file may be changed but not saved, warn for that.
+ au SwapExists * echohl WarningMsg
+ \ | echo 'Warning: file is being edited elsewhere'
+ \ | echohl None
+ \ | let v:swapchoice = '0'
+ augroup END
if &modified
" TODO: find existing window
exe 'split ' . fnameescape(fname)
@@ -1262,6 +1271,9 @@
else
exe 'edit ' . fnameescape(fname)
endif
+ augroup Termdebug
+ au! SwapExists
+ augroup END
endif
exe lnum
normal! zv
diff --git a/runtime/syntax/i3config.vim b/runtime/syntax/i3config.vim
index f9e15d5..a2f50e5 100644
--- a/runtime/syntax/i3config.vim
+++ b/runtime/syntax/i3config.vim
@@ -3,7 +3,7 @@
" Original Author: Mohamed Boughaba <mohamed dot bgb at gmail dot com>
" Maintainer: Quentin Hibon (github user hiqua)
" Version: 0.4
-" Last Change: 2022 Jan 04
+" Last Change: 2022 Jan 15
" References:
" http://i3wm.org/docs/userguide.html#configuring
@@ -175,7 +175,7 @@
syn match i3ConfigDrawingMarks /^\s*show_marks\s\+\(yes\|no\)\s\?$/ contains=i3ConfigFocusWrappingType,i3ConfigDrawingMarksKeyword
" Group mode/bar
-syn keyword i3ConfigBlockKeyword mode bar colors i3bar_command status_command position exec mode hidden_state modifier id position output background statusline tray_output tray_padding separator separator_symbol workspace_buttons strip_workspace_numbers binding_mode_indicator focused_workspace active_workspace inactive_workspace urgent_workspace binding_mode contained
+syn keyword i3ConfigBlockKeyword mode bar colors i3bar_command status_command position exec mode hidden_state modifier id position output background statusline tray_output tray_padding separator separator_symbol workspace_min_width workspace_buttons strip_workspace_numbers binding_mode_indicator focused_workspace active_workspace inactive_workspace urgent_workspace binding_mode contained
syn region i3ConfigBlock start=+.*s\?{$+ end=+^}$+ contains=i3ConfigBlockKeyword,i3ConfigString,i3ConfigBind,i3ConfigComment,i3ConfigFont,i3ConfigFocusWrappingType,i3ConfigColor,i3ConfigVariable transparent keepend extend
" Line continuation
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim
index 1810623..abdce6a 100644
--- a/runtime/syntax/vim.vim
+++ b/runtime/syntax/vim.vim
@@ -1,8 +1,8 @@
" Vim syntax file
" Language: Vim 8.2 script
" Maintainer: Charles E. Campbell <NcampObell@SdrPchip.AorgM-NOSPAM>
-" Last Change: December 29, 2021
-" Version: 8.2-23
+" Last Change: January 11, 2022
+" Version: 8.2-24
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_VIM
" Automatically generated keyword lists: {{{1
@@ -78,12 +78,12 @@
syn case match
" Function Names {{{2
-syn keyword vimFuncName contained abs argc assert_equal assert_match atan browse bufloaded byteidx charclass chdir ch_log ch_sendexpr col copy debugbreak diff_hlID empty execute expandcmd filter floor foldlevel function getchangelist getcmdline getcursorcharpos getftime getmarklist getreg gettabwinvar getwinposx globpath histadd hlget indent inputrestore invert items job_status json_decode libcallnr list2str log mapcheck matchaddpos matchfuzzypos menu_info nextnonblank popup_atcursor popup_dialog popup_getoptions popup_menu popup_show prompt_setcallback prop_clear prop_type_change pumvisible range reduce reltimestr remote_send resolve screenchar screenstring searchpairpos setbufvar setcursorcharpos setmatches settabwinvar shiftwidth sign_place simplify sound_clear spellbadword state strcharpart stridx strridx swapinfo synIDtrans tabpagenr tanh term_getaltscreen term_getline term_gettty term_setansicolors term_start test_garbagecollect_now test_ignore_error test_null_job test_override test_srand_seed timer_start tr undofile visualmode win_execute winheight winnr win_splitmove
-syn keyword vimFuncName contained acos argidx assert_equalfile assert_nobeep atan2 browsedir bufname byteidxcomp charcol ch_evalexpr ch_logfile ch_sendraw complete cos deepcopy digraph_get environ exepath extend finddir fmod foldtext garbagecollect getchar getcmdpos getcwd getftype getmatches getreginfo gettagstack getwinposy has histdel hlID index inputsave isdirectory job_getchannel job_stop json_encode line listener_add log10 mapnew matcharg matchlist min nr2char popup_beval popup_filter_menu popup_getpos popup_move pow prompt_setinterrupt prop_find prop_type_delete py3eval readblob reg_executing remote_expr remote_startserver reverse screenchars search searchpos setcellwidths setenv setpos settagstack sign_define sign_placelist sin soundfold spellsuggest str2float strchars string strtrans swapname synstack tabpagewinnr tempname term_getansicolors term_getscrolled terminalprops term_setapi term_wait test_garbagecollect_soon test_null_blob test_null_list test_refcount test_unknown timer_stop trim undotree wildmenumode win_findbuf win_id2tabwin winrestcmd winwidth
-syn keyword vimFuncName contained add arglistid assert_exception assert_notequal balloon_gettext bufadd bufnr call charidx ch_evalraw ch_open ch_setoptions complete_add cosh delete digraph_getlist escape exists extendnew findfile fnameescape foldtextresult get getcharmod getcmdtype getenv getimstatus getmousepos getregtype gettext getwinvar has_key histget hlset input inputsecret isinf job_info join keys line2byte listener_flush luaeval mapset matchdelete matchstr mkdir or popup_clear popup_filter_yesno popup_hide popup_notification prevnonblank prompt_setprompt prop_list prop_type_get pyeval readdir reg_recording remote_foreground remove round screencol searchcount server2client setcharpos setfperm setqflist setwinvar sign_getdefined sign_undefine sinh sound_playevent split str2list strdisplaywidth strlen strwidth synconcealed system tagfiles term_dumpdiff term_getattr term_getsize term_list term_setkill test_alloc_fail test_getvalue test_null_channel test_null_partial test_scrollbar test_void timer_stopall trunc uniq winbufnr win_getid win_id2win winrestview wordcount
-syn keyword vimFuncName contained and argv assert_fails assert_notmatch balloon_show bufexists bufwinid ceil ch_canread ch_getbufnr ch_read ch_status complete_check count deletebufline digraph_set eval exists_compiled feedkeys flatten fnamemodify foreground getbufinfo getcharpos getcmdwintype getfontname getjumplist getpid gettabinfo getwininfo glob haslocaldir histnr hostname inputdialog insert islocked job_setoptions js_decode len lispindent listener_remove map match matchend matchstrpos mode pathshorten popup_close popup_findinfo popup_list popup_setoptions printf prop_add prop_remove prop_type_list pyxeval readdirex reltime remote_peek rename rubyeval screenpos searchdecl serverlist setcharsearch setline setreg sha256 sign_getplaced sign_unplace slice sound_playfile sqrt str2nr strftime strpart submatch synID systemlist taglist term_dumpload term_getcursor term_getstatus term_scrape term_setrestore test_autochdir test_gui_drop_files test_null_dict test_null_string test_setmouse timer_info tolower type values wincol win_gettype winlayout winsaveview writefile
-syn keyword vimFuncName contained append asin assert_false assert_report balloon_split buflisted bufwinnr changenr ch_close ch_getjob ch_readblob cindent complete_info cscope_connection did_filetype digraph_setlist eventhandler exp filereadable flattennew foldclosed fullcommand getbufline getcharsearch getcompletion getfperm getline getpos gettabvar getwinpos glob2regpat hasmapto hlexists iconv inputlist interrupt isnan job_start js_encode libcall list2blob localtime maparg matchadd matchfuzzy max mzeval perleval popup_create popup_findpreview popup_locate popup_settext prompt_getprompt prop_add_list prop_type_add pum_getpos rand readfile reltimefloat remote_read repeat screenattr screenrow searchpair setbufline setcmdpos setloclist settabvar shellescape sign_jump sign_unplacelist sort sound_stop srand strcharlen strgetchar strptime substitute synIDattr tabpagebuflist tan term_dumpwrite term_getjob term_gettitle term_sendkeys term_setsize test_feedinput test_gui_mouse_event test_null_function test_option_not_set test_settime timer_pause toupper typename virtcol windowsversion win_gotoid winline win_screenpos xor
-syn keyword vimFuncName contained appendbufline assert_beeps assert_inrange assert_true blob2list bufload byte2line char2nr ch_close_in ch_info ch_readraw clearmatches confirm cursor diff_filler echoraw executable expand filewritable float2nr foldclosedend funcref getbufvar getcharstr getcurpos getfsize getloclist getqflist
+syn keyword vimFuncName contained abs argc assert_equal assert_match atan browse bufloaded byteidx charclass chdir ch_log ch_sendexpr col copy debugbreak diff_hlID empty execute expandcmd filter floor foldlevel function getchangelist getcmdline getcursorcharpos getftime getmarklist getreg gettagstack getwinvar has_key histget hlset input inputsecret isinf job_info join keys line2byte listener_flush luaeval mapset matchdelete matchstr mkdir or popup_clear popup_filter_yesno popup_hide popup_notification prevnonblank prompt_setprompt prop_list prop_type_get pyeval readdir reg_recording remote_foreground remove round screencol searchcount server2client setcharpos setfperm setqflist setwinvar sign_getdefined sign_undefine sinh sound_playevent split str2list strdisplaywidth strlen strwidth synconcealed system tagfiles term_dumpdiff term_getattr term_getsize term_list term_setkill test_alloc_fail test_getvalue test_null_channel test_null_partial test_scrollbar test_void timer_stopall trunc uniq winbufnr win_getid win_id2win winnr win_splitmove
+syn keyword vimFuncName contained acos argidx assert_equalfile assert_nobeep atan2 browsedir bufname byteidxcomp charcol ch_evalexpr ch_logfile ch_sendraw complete cos deepcopy digraph_get environ exepath extend finddir fmod foldtext garbagecollect getchar getcmdpos getcwd getftype getmatches getreginfo gettext glob haslocaldir histnr hostname inputdialog insert islocked job_setoptions js_decode len lispindent listener_remove map match matchend matchstrpos mode pathshorten popup_close popup_findinfo popup_list popup_setoptions printf prop_add prop_remove prop_type_list pyxeval readdirex reltime remote_peek rename rubyeval screenpos searchdecl serverlist setcharsearch setline setreg sha256 sign_getplaced sign_unplace slice sound_playfile sqrt str2nr strftime strpart submatch synID systemlist taglist term_dumpload term_getcursor term_getstatus term_scrape term_setrestore test_autochdir test_gui_drop_files test_null_dict test_null_string test_setmouse timer_info tolower type values wincol win_gettype winlayout winrestcmd winwidth
+syn keyword vimFuncName contained add arglistid assert_exception assert_notequal balloon_gettext bufadd bufnr call charidx ch_evalraw ch_open ch_setoptions complete_add cosh delete digraph_getlist escape exists extendnew findfile fnameescape foldtextresult get getcharmod getcmdtype getenv getimstatus getmousepos getregtype getwininfo glob2regpat hasmapto hlexists iconv inputlist interrupt isnan job_start js_encode libcall list2blob localtime maparg matchadd matchfuzzy max mzeval perleval popup_create popup_findpreview popup_locate popup_settext prompt_getprompt prop_add_list prop_type_add pum_getpos rand readfile reltimefloat remote_read repeat screenattr screenrow searchpair setbufline setcmdpos setloclist settabvar shellescape sign_jump sign_unplacelist sort sound_stop srand strcharlen strgetchar strptime substitute synIDattr tabpagebuflist tan term_dumpwrite term_getjob term_gettitle term_sendkeys term_setsize test_feedinput test_gui_mouse_event test_null_function test_option_not_set test_settime timer_pause toupper typename virtcol windowsversion win_gotoid winline winrestview wordcount
+syn keyword vimFuncName contained and argv assert_fails assert_notmatch balloon_show bufexists bufwinid ceil ch_canread ch_getbufnr ch_read ch_status complete_check count deletebufline digraph_set eval exists_compiled feedkeys flatten fnamemodify foreground getbufinfo getcharpos getcmdwintype getfontname getjumplist getpid gettabinfo getwinpos globpath histadd hlget indent inputrestore invert items job_status json_decode libcallnr list2str log mapcheck matchaddpos matchfuzzypos menu_info nextnonblank popup_atcursor popup_dialog popup_getoptions popup_menu popup_show prompt_setcallback prop_clear prop_type_change pumvisible range reduce reltimestr remote_send resolve screenchar screenstring searchpairpos setbufvar setcursorcharpos setmatches settabwinvar shiftwidth sign_place simplify sound_clear spellbadword state strcharpart stridx strridx swapinfo synIDtrans tabpagenr tanh term_getaltscreen term_getline term_gettty term_setansicolors term_start test_garbagecollect_now test_ignore_error test_null_job test_override test_srand_seed timer_start tr undofile visualmode win_execute winheight win_move_separator winsaveview writefile
+syn keyword vimFuncName contained append asin assert_false assert_report balloon_split buflisted bufwinnr changenr ch_close ch_getjob ch_readblob cindent complete_info cscope_connection did_filetype digraph_setlist eventhandler exp filereadable flattennew foldclosed fullcommand getbufline getcharsearch getcompletion getfperm getline getpos gettabvar getwinposx has histdel hlID index inputsave isdirectory job_getchannel job_stop json_encode line listener_add log10 mapnew matcharg matchlist min nr2char popup_beval popup_filter_menu popup_getpos popup_move pow prompt_setinterrupt prop_find prop_type_delete py3eval readblob reg_executing remote_expr remote_startserver reverse screenchars search searchpos setcellwidths setenv setpos settagstack sign_define sign_placelist sin soundfold spellsuggest str2float strchars string strtrans swapname synstack tabpagewinnr tempname term_getansicolors term_getscrolled terminalprops term_setapi term_wait test_garbagecollect_soon test_null_blob test_null_list test_refcount test_unknown timer_stop trim undotree wildmenumode win_findbuf win_id2tabwin win_move_statusline win_screenpos xor
+syn keyword vimFuncName contained appendbufline assert_beeps assert_inrange assert_true blob2list bufload byte2line char2nr ch_close_in ch_info ch_readraw clearmatches confirm cursor diff_filler echoraw executable expand filewritable float2nr foldclosedend funcref getbufvar getcharstr getcurpos getfsize getloclist getqflist gettabwinvar getwinposy
"--- syntax here and above generated by mkvimvim ---
" Special Vim Highlighting (not automatic) {{{1
diff --git a/runtime/tutor/tutor.ja.euc b/runtime/tutor/tutor.ja.euc
index 70986d2..3b41337 100644
--- a/runtime/tutor/tutor.ja.euc
+++ b/runtime/tutor/tutor.ja.euc
@@ -8,7 +8,7 @@
¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
¥Á¥å¡¼¥È¥ê¥¢¥ë¤ò´°Î»¤¹¤ë¤Î¤ËɬÍפʻþ´Ö¤Ï¡¢³Ð¤¨¤¿¥³¥Þ¥ó¥É¤ò»î¤¹¤Î¤Ë¤É¤ì¤À
- ¤±»þ´Ö¤ò»È¤¦¤Î¤«¤Ë¤â¤è¤ê¤Þ¤¹¤¬¡¢¤ª¤è¤½25¤«¤é30ʬ¤Ç¤¹¡£
+ ¤±»þ´Ö¤ò»È¤¦¤Î¤«¤Ë¤â¤è¤ê¤Þ¤¹¤¬¡¢¤ª¤è¤½30ʬ¤Ç¤¹¡£
ATTENTION:
°Ê²¼¤ÎÎý½¬ÍÑ¥³¥Þ¥ó¥É¤Ë¤Ï¤³¤Îʸ¾Ï¤òÊѹ¹¤¹¤ë¤â¤Î¤â¤¢¤ê¤Þ¤¹¡£Îý½¬¤ò»Ï¤á¤ëÁ°
@@ -24,7 +24,7 @@
¥ì¥Ã¥¹¥ó 1.1: ¥«¡¼¥½¥ë¤Î°Üư
- ** ¥«¡¼¥½¥ë¤ò°Üư¤¹¤ë¤Ë¤Ï¡¢¼¨¤µ¤ì¤ëÍÍ¤Ë h,j,k,l ¤ò²¡¤·¤Þ¤¹ **
+ ** ¥«¡¼¥½¥ë¤ò°Üư¤¹¤ë¤Ë¤Ï¡¢¼¨¤µ¤ì¤ëÍÍ¤Ë h,j,k,l ¤ò²¡¤·¤Þ¤¹¡£ **
^
k ¥Ò¥ó¥È: h ¥¡¼¤Ïº¸Êý¸þ¤Ë°Üư¤·¤Þ¤¹¡£
< h l > l ¥¡¼¤Ï±¦Êý¸þ¤Ë°Üư¤·¤Þ¤¹¡£
@@ -65,11 +65,12 @@
5. 1.3¤Þ¤Ç¥«¡¼¥½¥ë¤ò°Üư¤µ¤»¤Þ¤·¤ç¤¦¡£
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 1.3: ¥Æ¥¥¹¥ÈÊÔ½¸ - ºï½ü
- ** ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥«¡¼¥½¥ë¤Î²¼¤Îʸ»ú¤òºï½ü¤¹¤ë¤Ë¤Ï x ¤ò²¡¤·¤Þ¤¹ **
+ ** ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥«¡¼¥½¥ë¤Î²¼¤Îʸ»ú¤òºï½ü¤¹¤ë¤Ë¤Ï x ¤ò²¡¤·¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -87,12 +88,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 1.4: ¥Æ¥¥¹¥ÈÊÔ½¸ - ÁÞÆþ
- ** ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥Æ¥¥¹¥È¤òÁÞÆþ¤¹¤ë¤Ë¤Ï i ¤ò²¡¤·¤Þ¤¹ **
+ ** ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥Æ¥¥¹¥È¤òÁÞÆþ¤¹¤ë¤Ë¤Ï i ¤ò²¡¤·¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -115,10 +115,10 @@
¥ì¥Ã¥¹¥ó 1.5: ¥Æ¥¥¹¥ÈÊÔ½¸ - ÄɲÃ
- ** ¥Æ¥¥¹¥È¤òÄɲ乤ë¤Ë¤Ï A ¤ò²¡¤·¤Þ¤·¤ç¤¦ **
+ ** ¥Æ¥¥¹¥È¤òÄɲ乤ë¤Ë¤Ï A ¤ò²¡¤·¤Þ¤·¤ç¤¦¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
- ¥«¡¼¥½¥ë¤¬¤½¤Îʸ»ú¾å¤Ë¤¢¤Ã¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£
+ ¥«¡¼¥½¥ë¤¬¤½¤Î¹Ô¤Î¤É¤Îʸ»ú¾å¤Ë¤¢¤Ã¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£
2. Äɲä¬É¬Íפʾì½ê¤Ç A ¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
@@ -137,18 +137,17 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 1.6: ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸
-
- ** ¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤Æ½ªÎ»¤¹¤ë¤Ë¤Ï :wq ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤Æ½ªÎ»¤¹¤ë¤Ë¤Ï :wq ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
!! NOTE: °Ê²¼¤Î¥¹¥Æ¥Ã¥×¤ò¼Â¹Ô¤¹¤ëÁ°¤Ë¡¢¤Þ¤ºÁ´ÂΤòÆÉ¤ó¤Ç¤¯¤À¤µ¤¤!!
- 1. ¥ì¥Ã¥¹¥ó 1.2 ¤Ç¤ä¤Ã¤¿¤è¤¦¤Ë :q! ¤ò¥¿¥¤¥×¤·¤Æ¡¢¤³¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë¤ò½ªÎ»
- ¤·¤Þ¤¹¡£¤¢¤ë¤¤¤Ï¡¢Ê̤ÎüËö¤¬¤¢¤ë¾ì¹ç¤Ï¤½¤³¤Ç°Ê²¼¤ÎÆâÍÆ¤ò¹Ô¤Ã¤Æ¤â¤«¤Þ¤¤
- ¤Þ¤»¤ó¡£
+ 1. Ê̤ÎüËö¤¬¤¢¤ë¾ì¹ç¤Ï¤½¤³¤Ç°Ê²¼¤ÎÆâÍÆ¤ò¹Ô¤Ã¤Æ¤¯¤À¤µ¤¤¡£¤½¤¦¤Ç¤Ê¤±¤ì¤Ð¡¢
+ ¥ì¥Ã¥¹¥ó 1.2 ¤Ç¤ä¤Ã¤¿¤è¤¦¤Ë :q! ¤ò¥¿¥¤¥×¤·¤Æ¡¢¤³¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë¤ò½ªÎ»
+ ¤·¤Þ¤¹¡£
- 2. ¥·¥§¥ë¥×¥í¥ó¥×¥È¤Ç¤³¤Î¥³¥Þ¥ó¥É¤ò¥¿¥¤¥×¤·¤Þ¤¹: vim tutor <ENTER>
- 'vim' ¤¬ Vim ¥¨¥Ç¥£¥¿¤òµ¯Æ°¤¹¤ë¥³¥Þ¥ó¥É¡¢'tutor' ¤ÏÊÔ½¸¤·¤¿¤¤¥Õ¥¡¥¤¥ë¤Î
- ̾Á°¤Ç¤¹¡£Êѹ¹¤·¤Æ¤â¤è¤¤¥Õ¥¡¥¤¥ë¤ò»È¤¤¤Þ¤·¤ç¤¦¡£
+ 2. ¥·¥§¥ë¥×¥í¥ó¥×¥È¤Ç¤³¤Î¥³¥Þ¥ó¥É¤ò¥¿¥¤¥×¤·¤Þ¤¹: vim file.txt <ENTER>
+ 'vim' ¤¬ Vim ¥¨¥Ç¥£¥¿¤òµ¯Æ°¤¹¤ë¥³¥Þ¥ó¥É¡¢'file.txt' ¤ÏÊÔ½¸¤·¤¿¤¤¥Õ¥¡¥¤¥ë
+ ¤Î̾Á°¤Ç¤¹¡£Êѹ¹¤Ç¤¤ë¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»È¤¤¤Þ¤·¤ç¤¦¡£
3. Á°¤Î¥ì¥Ã¥¹¥ó¤Ç³Ø¤ó¤À¤è¤¦¤Ë¡¢¥Æ¥¥¹¥È¤òÁÞÆþ¡¢ºï½ü¤·¤Þ¤¹¡£
@@ -186,9 +185,9 @@
¥ì¥Ã¥¹¥ó 2.1: ºï½ü¥³¥Þ¥ó¥É
- ** ñ¸ì¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï dw ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦ **
+ ** ñ¸ì¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï dw ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£ **
- 1. ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ç¤¢¤ë¤³¤È¤ò³Îǧ¤¹¤ë¤¿¤á¤Ë <ESC> ¤ò²¡¤·¤Þ¤·¤ç¤¦¡£
+ 1. ³Î¼Â¤Ë¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤¹¤ë¤¿¤á <ESC> ¤ò²¡¤·¤Þ¤·¤ç¤¦¡£
2. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -196,22 +195,22 @@
4. ñ¸ì¤òºï½ü¤¹¤ë¤¿¤á¤Ë dw ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
- NOTE: ¥¿¥¤¥×¤¹¤ë¤È¡¢dw ¤È¤¤¤¦Ê¸»ú¤¬¥¹¥¯¥ê¡¼¥ó¤ÎºÇ²¼¹Ô¤Ë¸½¤ï¤ì¤Þ¤¹¡£
- ¥¿¥¤¥×¤ò´Ö°ã¤Ã¤Æ¤·¤Þ¤Ã¤¿»þ¤Ë¤Ï <ESC> ¤ò²¡¤·¤Æ¤ä¤êľ¤·¤Þ¤·¤ç¤¦¡£
+ NOTE: d ¤ò¥¿¥¤¥×¤¹¤ë¤È¡¢¤½¤Îʸ»ú¤¬¥¹¥¯¥ê¡¼¥ó¤ÎºÇ²¼¹Ô¤Ë¸½¤ï¤ì¤Þ¤¹¡£Vim ¤Ï
+ ¤¢¤Ê¤¿¤¬ w ¤ò¥¿¥¤¥×¤¹¤ë¤Î¤òÂԤäƤ¤¤Þ¤¹¡£¤â¤· d °Ê³°¤Îʸ»ú¤¬É½¼¨¤µ¤ì¤¿
+ »þ¤Ï²¿¤«´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹¡£ <ESC> ¤ò²¡¤·¤Æ¤ä¤êľ¤·¤Þ¤·¤ç¤¦¡£
---> ¤³¤Î ʸ »æ ¤Ë¤Ï ¤¤¤¯¤Ä¤«¤Î ¤¿¤Î¤·¤¤ ɬÍפΤʤ¤ ñ¸ì ¤¬ ´Þ¤Þ¤ì¤Æ ¤¤¤Þ¤¹¡£
5. 3 ¤«¤é 4 ¤Þ¤Ç¤òʸ¤¬Àµ¤·¤¯¤Ê¤ë¤Þ¤Ç·«¤êÊÖ¤·¡¢¥ì¥Ã¥¹¥ó 2.2 ¤Ø¿Ê¤ß¤Þ¤·¤ç¤¦¡£
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 2.2: ¤½¤Î¾¤Îºï½ü¥³¥Þ¥ó¥É
- ** ¹Ô¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï d$ ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦ **
+ ** ¹Ô¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï d$ ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£ **
- 1. ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ç¤¢¤ë¤³¤È¤ò³Îǧ¤¹¤ë¤Î¤Ë <ESC> ¤ò²¡¤·¤Þ¤·¤ç¤¦¡£
+ 1. ³Î¼Â¤Ë¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤¹¤ë¤¿¤á <ESC> ¤ò²¡¤·¤Þ¤·¤ç¤¦¡£
2. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -232,7 +231,7 @@
¥ì¥Ã¥¹¥ó 2.3: ¥ª¥Ú¥ì¡¼¥¿¤È¥â¡¼¥·¥ç¥ó
- ¿¤¯¤Î¥³¥Þ¥ó¥É¤Ï¥ª¥Ú¥ì¡¼¥¿¤È¥â¡¼¥·¥ç¥ó¤«¤é¥Æ¥¥¹¥È¤ËÊѹ¹¤ò²Ã¤¨¤Þ¤¹¡£
+ ¥Æ¥¥¹¥È¤ËÊѹ¹¤ò²Ã¤¨¤ë¿¤¯¤Î¥³¥Þ¥ó¥É¤Ï¥ª¥Ú¥ì¡¼¥¿¤È¥â¡¼¥·¥ç¥ó¤«¤é¤Ê¤ê¤Þ¤¹¡£
ºï½ü¥³¥Þ¥ó¥É d ¤Î¥ª¥Ú¥ì¡¼¥¿¤Ï¼¡¤ÎÍͤˤʤäƤ¤¤Þ¤¹:
d ¥â¡¼¥·¥ç¥ó
@@ -248,7 +247,7 @@
¤Ä¤Þ¤ê de ¤È¥¿¥¤¥×¤¹¤ë¤È¡¢¥«¡¼¥½¥ë°ÌÃÖ¤«¤éñ¸ì¤Î½ª¤ï¤ê¤Þ¤Ç¤òºï½ü¤·¤Þ¤¹¡£
-NOTE: ËÁ¸±¤·¤¿¤¤¿Í¤Ï¡¢¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥³¥Þ¥ó¥É¤Ê¤·¤Ë¥â¡¼¥·¥ç¥ó¤ò²¡¤·¤Æ
+NOTE: ËÁ¸±¤·¤¿¤¤¿Í¤Ï¡¢¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ë¤Æ¥ª¥Ú¥ì¡¼¥¿¤Ê¤·¤Ë¥â¡¼¥·¥ç¥ó¤ò²¡¤·¤Æ
¤ß¤Þ¤·¤ç¤¦¡£¥«¡¼¥½¥ë¤¬ÌÜŪ¸ì°ìÍ÷¤Ç¼¨¤µ¤ì¤ë°ÌÃÖ¤Ë°ÜÆ°¤¹¤ë¤Ï¤º¤Ç¤¹¡£
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -259,7 +258,7 @@
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤ÎÀèÆ¬¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤¹¡£
- 2. 2w ¤ò¥¿¥¤¥×¤·¤ÆÃ±¸ì2¤ÄʬÁ°¤Ë°Üư¤·¤Þ¤¹¡£
+ 2. 2w ¤ò¥¿¥¤¥×¤·¤ÆÃ±¸ì2¤ÄʬÀè¤Ë°Üư¤·¤Þ¤¹¡£
3. 3e ¤ò¥¿¥¤¥×¤·¤Æ3¤ÄÌܤÎñ¸ì¤Î½ªÃ¼¤Ë°Üư¤·¤Þ¤¹¡£
@@ -284,24 +283,24 @@
¤è¤ê¿¤¯¤Îºï½ü¤¬¹Ô¤¨¤Þ¤¹:
d ¿ôÃÍ ¥â¡¼¥·¥ç¥ó
- 1. ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Î¹ÔƬÉôʬ¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
+ 1. ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤ÎºÇ½é¤ÎÂçʸ»ú¤Îñ¸ì¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
- 2. UPPER CASE ¤Îñ¸ì2¤Ä¤ò d2w ¤È¥¿¥¤¥×¤·¤Æºï½ü¤·¤Þ¤¹¡£
+ 2. Âçʸ»ú¤Îñ¸ì2¤Ä¤ò d2w ¤È¥¿¥¤¥×¤·¤Æºï½ü¤·¤Þ¤¹¡£
- 3. UPPER CASE ¤È¤¤¤¦Ï¢Â³¤·¤¿Ã±¸ì¤ò¡¢1¤Ä¤Î¥³¥Þ¥ó¥É¤È°Û¤Ê¤ë¥«¥¦¥ó¥È¤ò»ØÄꤷ¡¢
+ 3. Ϣ³¤·¤¿Âçʸ»ú¤Îñ¸ì¤ò¡¢°Û¤Ê¤ë¥«¥¦¥ó¥È¤ò»ØÄꤷ¤¿1¤Ä¤Î¥³¥Þ¥ó¥É¤Çºï½ü¤·¡¢
¥¹¥Æ¥Ã¥× 1 ¤È 2 ¤ò·«¤êÊÖ¤·¤Þ¤¹¡£
---> ¤³¤ÎABC DE¹Ô¤ÎFGHI JK LMN OPñ¸ì¤ÏQ RS TUVåºÎï¤Ë¤Ê¤Ã¤¿¡£
-NOTE: ¥ª¥Ú¥ì¡¼¥¿ d ¤È¥â¡¼¥·¥ç¥ó¤Î´Ö¤Ë¥«¥¦¥ó¥È¤ò»È¤Ã¤¿¾ì¹ç¡¢¥ª¥Ú¥ì¡¼¥¿¤Î¤Ê¤¤
- ¾ì¹ç¤Î¥â¡¼¥·¥ç¥ó¤Î¤è¤¦¤Ëưºî¤·¤Þ¤¹¡£
- Îã: 3dw ¤È d3w ¤ÏƱÅù¤Ç¡¢3w ¤òºï½ü¤·¤Þ¤¹¡£
+
+
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 2.6: ¹Ô¤ÎÁàºî
- ** ¹ÔÁ´ÂΤòºï½ü¤¹¤ë¤Ë¤Ï dd ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¹ÔÁ´ÂΤòºï½ü¤¹¤ë¤Ë¤Ï dd ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
¹ÔÁ´ÂΤòºï½ü¤¹¤ëÉÑÅÙ¤¬Â¿¤¤¤Î¤Ç¡¢Vi¤Î¥Ç¥¶¥¤¥Ê¡¼¤Ï¹Ô¤Îºï½ü¤ò d ¤Î2²ó¥¿¥¤¥×¤È
¤¤¤¦´Êñ¤Ê¤â¤Î¤Ë·è¤á¤Þ¤·¤¿¡£
@@ -319,24 +318,25 @@
---> 6) º½Åü¤Ï´Å¤¤
---> 7) ¥ª¥Þ¥¨¥â¥Ê¡¼
+2²ó¥¿¥¤¥×¤Ç1¹Ô¤ËÂФ·¤ÆºîÍѤµ¤»¤ëÊýË¡¤Ï°Ê²¼¤Ç½Ò¤Ù¤ë¥ª¥Ú¥ì¡¼¥¿¤Ç¤âưºî¤·¤Þ¤¹¡£
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 2.7: ¤ä¤êľ¤·¥³¥Þ¥ó¥É
- ** ºÇ¸å¤Î¥³¥Þ¥ó¥É¤ò¼è¤ê¾Ã¤¹¤Ë¤Ï u ¤ò²¡¤·¤Þ¤¹¡£U ¤Ï¹ÔÁ´ÂΤμè¾Ã¤Ç¤¹¡£ **
+ ** ºÇ¸å¤Î¥³¥Þ¥ó¥É¤ò¼è¤ê¾Ã¤¹¤Ë¤Ï u ¤ò²¡¤·¤Þ¤¹¡£U ¤Ï¹ÔÁ´ÂΤμè¤ê¾Ã¤·¤Ç¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¡¢ºÇ½é¤Î´Ö°ã¤¤¤Ë¥«¡¼¥½¥ë
¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
- 2. x ¤ò¥¿¥¤¥×¤·¤Æ¤¤¤é¤Ê¤¤ÀèÆ¬¤Îʸ»ú¤òºï½ü¤·¤Þ¤·¤ç¤¦¡£
+ 2. x ¤ò¥¿¥¤¥×¤·¤ÆºÇ½é¤Î¤¤¤é¤Ê¤¤Ê¸»ú¤òºï½ü¤·¤Þ¤·¤ç¤¦¡£
3. ¤µ¤¡¡¢u ¤ò¥¿¥¤¥×¤·¤ÆºÇ¸å¤Ë¼Â¹Ô¤·¤¿¥³¥Þ¥ó¥É¤ò¼è¤ê¾Ã¤·¤Þ¤·¤ç¤¦¡£
- 4. º£Å٤ϡ¢x ¤ò»ÈÍѤ·¤Æ¸í¤ê¤òÁ´¤Æ½¤Àµ¤·¤Þ¤·¤ç¤¦¡£
+ 4. º£Å٤ϡ¢x ¤ò»ÈÍѤ·¤Æ¹ÔÆâ¤Î¸í¤ê¤òÁ´¤Æ½¤Àµ¤·¤Þ¤·¤ç¤¦¡£
5. Âçʸ»ú¤Î U ¤ò¥¿¥¤¥×¤·¤Æ¡¢¹Ô¤ò¸µ¤Î¾õÂÖ¤ËÌᤷ¤Þ¤·¤ç¤¦¡£
- 6. u ¤ò¥¿¥¤¥×¤·¤ÆÄ¾Á°¤Î U ¥³¥Þ¥ó¥É¤ò¼è¾Ã¤·¤Þ¤·¤ç¤¦¡£
+ 6. u ¤ò¥¿¥¤¥×¤·¤ÆÄ¾Á°¤Î U ¥³¥Þ¥ó¥É¤ò¼è¤ê¾Ã¤·¤Þ¤·¤ç¤¦¡£
7. ¤Ç¤Ï¥³¥Þ¥ó¥É¤òºÆ¼Â¹Ô¤¹¤ë¤Î¤Ë CTRL-R (CTRL ¤ò²¡¤·¤¿¤Þ¤Þ R ¤òÂǤÄ)¤ò¿ô²ó
- ¥¿¥¤¥×¤·¤Æ¤ß¤Þ¤·¤ç¤¦(¼è¾Ã¤Î¼è¾Ã)¡£
+ ¥¿¥¤¥×¤·¤Æ¤ß¤Þ¤·¤ç¤¦(¼è¤ê¾Ã¤·¤Î¼è¤ê¾Ã¤·)¡£
----> ¤³¤Î¤Î¹Ô¤Î¤Î´Ö°ã¤¤¤ò½¤Àµ¡¹¤·¡¢¸å¤Ç¤½¤ì¤é¤Î½¤Àµ¤ò¤ò¼è¾Ã¤·¤Þ¤Þ¤¹¤¹¡£
+---> ¤³¤Î¤Î¹Ô¤Î¤Î´Ö°ã¤¤¤ò½¤Àµ¡¹¤·¡¢¸å¤Ç¤½¤ì¤é¤Î½¤Àµ¤ò¤ò¼è¤ê¾Ã¤·¤Þ¤Þ¤¹¤¹¡£
8. ¤³¤ì¤Ï¤È¤Æ¤âÊØÍø¤Ê¥³¥Þ¥ó¥É¤Ç¤¹¡£¤µ¤¡¥ì¥Ã¥¹¥ó 2 Í×Ìó¤Ø¿Ê¤ß¤Þ¤·¤ç¤¦¡£
@@ -347,45 +347,47 @@
¥ì¥Ã¥¹¥ó 2 Í×Ìó
- 1. ¥«¡¼¥½¥ë°ÌÃÖ¤«¤éñ¸ì¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï dw ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
- 2. ¥«¡¼¥½¥ë°ÌÃÖ¤«¤é¹Ô¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï d$ ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
- 3. ¹ÔÁ´ÂΤòºï½ü¤¹¤ë¤Ë¤Ï dd ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 1. ¥«¡¼¥½¥ë°ÌÃÖ¤«¤é¼¡¤Îñ¸ì¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï dw ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 2. ¥«¡¼¥½¥ë°ÌÃÖ¤«¤éñ¸ì¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï de ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 3. ¥«¡¼¥½¥ë°ÌÃÖ¤«¤é¹Ô¤ÎËöÈø¤Þ¤Ç¤òºï½ü¤¹¤ë¤Ë¤Ï d$ ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 4. ¹ÔÁ´ÂΤòºï½ü¤¹¤ë¤Ë¤Ï dd ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£
- 4. ¥â¡¼¥·¥ç¥ó¤ò·«¤êÊÖ¤¹¤Ë¤Ï¿ôÃͤòÉÕÍ¿¤·¤Þ¤¹: 2w
- 5. Êѹ¹¤ËÍѤ¤¤ë¥³¥Þ¥ó¥É¤Î·Á¼°¤Ï
+ 5. ¥â¡¼¥·¥ç¥ó¤ò·«¤êÊÖ¤¹¤Ë¤Ï¿ôÃͤòÉÕÍ¿¤·¤Þ¤¹: 2w
+ 6. Êѹ¹¤ËÍѤ¤¤ë¥³¥Þ¥ó¥É¤Î·Á¼°¤Ï
¥ª¥Ú¥ì¡¼¥¿ [¿ôÃÍ] ¥â¡¼¥·¥ç¥ó
-
¤½¤ì¤¾¤ì:
¥ª¥Ú¥ì¡¼¥¿ - ºï½ü d ¤ÎÎà¤Ç²¿¤ò¤¹¤ë¤«¡£
- ¿ôÃÍ - ¤½¤Î¥³¥Þ¥ó¥É¤ò²¿²ó·«¤êÊÖ¤¹¤«¡£
- ¥â¡¼¥·¥ç¥ó - w (ñ¸ì)¤ä $ (¹ÔËö)¤Ê¤É¤ÎÎà¤Ç¡¢¥Æ¥¥¹¥È¤Î²¿¤ËÂФ·¤ÆÆ¯¤¤«
- ¤±¤ë¤«¡£
+ [¿ôÃÍ] - ¤½¤Î¥³¥Þ¥ó¥É¤ò²¿²ó·«¤êÊÖ¤¹¤«¡£
+ ¥â¡¼¥·¥ç¥ó - w (ñ¸ì)¤ä e (ñ¸ìËöÈø)¡¢$ (¹ÔËö)¤Ê¤É¤ÎÎà¤Ç¡¢¥Æ¥¥¹¥È¤Î
+ ²¿¤ËÂФ·¤ÆÆ¯¤¤«¤±¤ë¤«¡£
- 6. ¹Ô¤ÎÀèÆ¬¤Ë°Üư¤¹¤ë¤Ë¤Ï¥¼¥í¤ò»ÈÍѤ·¤Þ¤¹: 0
+ 7. ¹Ô¤ÎÀèÆ¬¤Ë°Üư¤¹¤ë¤Ë¤Ï¥¼¥í¤ò»ÈÍѤ·¤Þ¤¹: 0
- 7. Á°²ó¤Îưºî¤ò¼è¾Ã¤¹: u (¾®Ê¸»ú u)
- ¹ÔÁ´ÂΤÎÊѹ¹¤ò¼è¾Ã¤¹: U (Âçʸ»ú U)
- ¼è¾Ã¤·¤Î¼è¾Ã¤·: CTRL-R
+ 8. Á°²ó¤Îưºî¤ò¼è¤ê¾Ã¤¹: u (¾®Ê¸»ú u)
+ ¹ÔÁ´ÂΤÎÊѹ¹¤ò¼è¤ê¾Ã¤¹: U (Âçʸ»ú U)
+ ¼è¤ê¾Ã¤·¤Î¼è¤ê¾Ã¤·: CTRL-R
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 3.1: ޤêÉÕ¤±¥³¥Þ¥ó¥É
- ** ºÇ¸å¤Ëºï½ü¤µ¤ì¤¿¹Ô¤ò¥«¡¼¥½¥ë¤Î¸å¤ËޤêÉÕ¤±¤ë¤Ë¤Ï p ¤ò¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ºÇ¸å¤Ëºï½ü¤µ¤ì¤¿¹Ô¤ò¥«¡¼¥½¥ë¤Î¸å¤ËޤêÉÕ¤±¤ë¤Ë¤Ï p ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
- 1. °Ê²¼¤ÎÃÊÍî¤ÎºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
+ 1. ---> ¤È¼¨¤µ¤ì¤¿°Ê²¼¤ÎºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
- 2. dd ¤È¥¿¥¤¥×¤·¤Æ¹Ô¤òºï½ü¤·¡¢Vim ¤Î¥Ð¥Ã¥Õ¥¡¤Ë³ÊǼ¤·¤Þ¤·¤ç¤¦¡£
+ 2. dd ¤È¥¿¥¤¥×¤·¤Æ¹Ô¤òºï½ü¤·¡¢Vim ¤Î¥ì¥¸¥¹¥¿¤Ë³ÊǼ¤·¤Þ¤·¤ç¤¦¡£
- 3. ºï½ü¤·¤¿¹Ô¤¬ËÜÍ褢¤ë¤Ù¤°ÌÃ֤ξå¤Î¹Ô¤Þ¤Ç¡¢¥«¡¼¥½¥ë¤ò°Üư¤µ¤»¤Þ¤·¤ç¤¦¡£
+ 3. ºï½ü¤·¤¿¹Ô¤¬ËÜÍ褢¤ë¤Ù¤°ÌÃ֤ξå¤Î¹Ô¤Ç¤¢¤ë c) ¹Ô¤Þ¤Ç¡¢¥«¡¼¥½¥ë¤ò°Üư¤µ¤»
+ ¤Þ¤·¤ç¤¦¡£
- 4. ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ç p ¤ò¥¿¥¤¥×¤·¤Æ³ÊǼ¤·¤¿¹Ô¤ò²èÌ̤ËÌᤷ¤Þ¤¹¡£
+ 4. ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ç p ¤ò¥¿¥¤¥×¤·¤Æ³ÊǼ¤·¤¿¹Ô¤ò¥«¡¼¥½¥ë¤Î²¼¤ËÌᤷ¤Þ¤¹¡£
5. ½çÈÖ¤¬Àµ¤·¤¯¤Ê¤ëÍͤ˥¹¥Æ¥Ã¥× 2 ¤«¤é 4 ¤ò·«¤êÊÖ¤·¤Þ¤·¤ç¤¦¡£
- d) µ®Êý¤â³Ø¤Ö¤³¤È¤¬¤Ç¤¤ë?
- b) ¥¹¥ß¥ì¤ÏÀĤ¤¡¢
- c) ÃηäȤϳؤ֤â¤Î¡¢
- a) ¥Ð¥é¤ÏÀÖ¤¤¡¢
+---> d) µ®Êý¤â³Ø¤Ö¤³¤È¤¬¤Ç¤¤ë?
+---> b) ¥¹¥ß¥ì¤ÏÀĤ¤¡¢
+---> c) ÃηäȤϳؤ֤â¤Î¡¢
+---> a) ¥Ð¥é¤ÏÀÖ¤¤¡¢
@@ -393,7 +395,7 @@
¥ì¥Ã¥¹¥ó 3.2: ÃÖ¤´¹¤¨¥³¥Þ¥ó¥É
- ** ¥«¡¼¥½¥ë¤Î²¼¤Îʸ»ú¤òÃÖ¤´¹¤¨¤ë¤Ë¤Ï r ¤ò¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¥«¡¼¥½¥ë¤Î²¼¤Îʸ»ú¤ò x ¤ËÃÖ¤´¹¤¨¤ë¤Ë¤Ï rx ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -416,38 +418,38 @@
¥ì¥Ã¥¹¥ó 3.3: Êѹ¹¥³¥Þ¥ó¥É
- ** ñ¸ì¤Î°ìÉô¡¢¤â¤·¤¯¤ÏÁ´ÂΤòÊѹ¹¤¹¤ë¤Ë¤Ï cw ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ñ¸ì¤ÎËöÈø¤Þ¤Ç¤òÊѹ¹¤¹¤ë¤Ë¤Ï ce ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
2. lubw ¤Î u ¤Î°ÌÃ֤˥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
- 3. cw ¤È¥¿¥¤¥×¤·¡¢Àµ¤·¤¤Ã±¸ì¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦(¤³¤Î¾ì¹ç 'ine' ¤È¥¿¥¤¥×)¡£
+ 3. ce ¤È¥¿¥¤¥×¤·¡¢Àµ¤·¤¤Ã±¸ì¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦(¤³¤Î¾ì¹ç 'ine' ¤È¥¿¥¤¥×)¡£
- 4. ¼¡¤Î´Ö°ã¤¤(Êѹ¹¤¹¤Ù¤Ê¸»ú¤ÎÀèÆ¬)¤Ë°Üư¤¹¤ë¤¿¤á¤Ë <ESC> ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 4. <ESC> ¤ò¥¿¥¤¥×¤·¤Æ¤«¤é¼¡¤Î´Ö°ã¤¤(Êѹ¹¤¹¤Ù¤Ê¸»ú¤ÎÀèÆ¬)¤Ë°Üư¤·¤Þ¤¹¡£
5. ºÇ½é¤Î¹Ô¤¬¼¡¤Î¹Ô¤ÎÍͤˤʤë¤Þ¤Ç¥¹¥Æ¥Ã¥× 3 ¤È 4 ¤ò·«¤êÊÖ¤·¤Þ¤¹¡£
---> This lubw has a few wptfd that mrrf changing usf the change operator.
---> This line has a few words that need changing using the change operator.
-cw ¤Ïñ¸ì¤òÊѹ¹¤¹¤ë¤À¤±¤Ç¤Ê¤¯¡¢ÁÞÆþ¤â¹Ô¤¨¤ë¤³¤È¤ËÃí°Õ¤·¤Þ¤·¤ç¤¦¡£
-
+ce ¤Ïñ¸ì¤òºï½ü¤·¤¿¸å¡¢ÁÞÆþ¥â¡¼¥É¤ËÆþ¤ë¤³¤È¤ËÃí°Õ¤·¤Þ¤·¤ç¤¦¡£
+cc ¤ÏƱ¤¸¤³¤È¤ò¹ÔÁ´ÂΤËÂФ·¤Æ¹Ô¤¤¤Þ¤¹¡£
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 3.4: c ¤ò»ÈÍѤ·¤¿¤½¤Î¾¤ÎÊѹ¹
- ** Êѹ¹¥³¥Þ¥ó¥É¤Ï¡¢ºï½ü¥³¥Þ¥ó¥É¤ÈƱ¤¸Íͤ˥ª¥Ö¥¸¥§¥¯¥È¤ò»ÈÍѤ·¤Þ¤¹ **
+ ** Êѹ¹¥ª¥Ú¥ì¡¼¥¿¤Ï¡¢ºï½ü¤ÈƱ¤¸Íͤ˥⡼¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£ **
- 1. Êѹ¹¥³¥Þ¥ó¥É¤Ï¡¢ºï½ü¥³¥Þ¥ó¥É¤ÈƱ¤¸¤è¤¦¤Êưºî¤ò¤·¤Þ¤¹¡£¤½¤Î·Á¼°¤Ï
+ 1. Êѹ¹¥ª¥Ú¥ì¡¼¥¿¤Ï¡¢ºï½ü¤ÈƱ¤¸¤è¤¦¤Êưºî¤ò¤·¤Þ¤¹¡£¤½¤Î·Á¼°¤Ï
c [¿ôÃÍ] ¥â¡¼¥·¥ç¥ó
- 2. ¥ª¥Ö¥¸¥§¥¯¥È¤âƱ¤¸¤Ç¡¢w ¤Ïñ¸ì¡¢ $ ¤Ï¹ÔËö¤Ê¤É¤È¤¤¤Ã¤¿¤â¤Î¤Ç¤¹¡£
+ 2. ¥â¡¼¥·¥ç¥ó¤âƱ¤¸¤Ç¡¢w ¤Ïñ¸ì¡¢ $ ¤Ï¹ÔËö¤Ê¤É¤È¤¤¤Ã¤¿¤â¤Î¤Ç¤¹¡£
- 3. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
+ 3. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
4. ºÇ½é¤Î´Ö°ã¤¤¤Ø¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -470,7 +472,7 @@
ʸ»ú¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
3. Êѹ¹¥³¥Þ¥ó¥É¤Ç¤Ï¥«¡¼¥½¥ë°ÌÃÖ¤«¤éÆÃÄê¤Î¥â¡¼¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤ë½ªÃ¼¤Þ¤Ç¤òÊÑ
- ¹¹¤¹¤ë¤³¤È¤¬²Äǽ¤Ç¤¹¡£Î㤨¤Ð cw ¤Ê¤é¤Ð¥«¡¼¥½¥ë°ÌÃÖ¤«¤éñ¸ì¤Î½ª¤ï¤ê¤Þ¤Ç¡¢
+ ¹¹¤¹¤ë¤³¤È¤¬²Äǽ¤Ç¤¹¡£Î㤨¤Ð ce ¤Ê¤é¤Ð¥«¡¼¥½¥ë°ÌÃÖ¤«¤éñ¸ì¤Î½ª¤ï¤ê¤Þ¤Ç¡¢
c$ ¤Ê¤é¤Ð¹Ô¤Î½ª¤ï¤ê¤Þ¤Ç¤òÊѹ¹¤·¤Þ¤¹¡£
4. Êѹ¹¥³¥Þ¥ó¥É¤Î·Á¼°¤Ï
@@ -485,7 +487,7 @@
¥ì¥Ã¥¹¥ó 4.1: °ÌÃ֤ȥե¡¥¤¥ë¤Î¾ðÊó
** ¥Õ¥¡¥¤¥ëÆâ¤Ç¤Î°ÌÃ֤ȥե¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤¹¤ë¤Ë¤Ï CTRL-G ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
- ¥Õ¥¡¥¤¥ëÆâ¤Î¤¢¤ë¹Ô¤Ë°Üư¤¹¤ë¤Ë¤Ï G ¤ò¥¿¥¤¥×¤·¤Þ¤¹ **
+ ¥Õ¥¡¥¤¥ëÆâ¤Î¤¢¤ë¹Ô¤Ë°Üư¤¹¤ë¤Ë¤Ï G ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
NOTE: ¥¹¥Æ¥Ã¥×¤ò¼Â¹Ô¤¹¤ëÁ°¤Ë¡¢¤³¤Î¥ì¥Ã¥¹¥óÁ´¤Æ¤ËÌܤòÄ̤·¤Þ¤·¤ç¤¦!!
@@ -496,7 +498,7 @@
NOTE: ²èÌ̤ᦲ¼¶ù¤Ë¥«¡¼¥½¥ë¤Î°ÌÃÖ¤¬É½¼¨¤µ¤ì¤Æ¤¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¡£¤³¤ì¤Ï
'ruler' ¥ª¥×¥·¥ç¥ó(:help 'ruler' ¤ò»²¾È)¤òÀßÄꤹ¤ë¤³¤È¤Çɽ¼¨¤µ¤ì¤Þ¤¹¡£
- 2. ºÇ²¼¹Ô¤Ë°Üư¤¹¤ë¤¿¤á¤Ë G ¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
+ 2. ¥Õ¥¡¥¤¥ë¤ÎºÇ²¼¹Ô¤Ë°Üư¤¹¤ë¤¿¤á¤Ë G ¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
¥Õ¥¡¥¤¥ë¤ÎÀèÆ¬¤Ë°Üư¤¹¤ë¤Ë¤Ï gg ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
3. Àè¤Û¤É¤Î¹Ô¤ÎÈÖ¹æ¤ò¥¿¥¤¥×¤· G ¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£ºÇ½é¤Ë CTRL-G ¤ò²¡¤·¤¿¹Ô
@@ -508,19 +510,19 @@
¥ì¥Ã¥¹¥ó 4.2: ¸¡º÷¥³¥Þ¥ó¥É
- ** ¸ì¶ç¤ò¸¡º÷¤¹¤ë¤Ë¤Ï / ¤È¡¢Á°Êý¸¡º÷¤¹¤ë¸ì¶ç¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£**
+ ** ¸ì¶ç¤ò¸¡º÷¤¹¤ë¤Ë¤Ï / ¤È¡¢Á°Êý¸¡º÷¤¹¤ë¸ì¶ç¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ¥Î¡¼¥Þ¥ë¥â¡¼¥É¤Ç / ¤È¤¤¤¦Ê¸»ú¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£²èḬ̀ìÈÖ²¼¤Ë : ¥³¥Þ¥ó¥É¤È
Ʊ¤¸ÍÍ¤Ë / ¤¬¸½¤ì¤ë¤³¤È¤Ëµ¤¤Å¤¯¤Ç¤·¤ç¤¦¡£
2. ¤Ç¤Ï¡¢'errroor' <ENTER> ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£¤³¤ì¤¬¸¡º÷¤·¤¿¤¤Ã±¸ì¤Ç¤¹¡£
- 3. Ʊ¤¸¸ì¤ò¤â¤¦°ìÅÙ¸¡º÷¤¹¤ë¤È¤¤Ï ñ¤Ë n ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 3. Ʊ¤¸¸ì¶ç¤ò¤â¤¦°ìÅÙ¸¡º÷¤¹¤ë¤È¤¤Ï ñ¤Ë n ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
µÕÊý¸þ¤Ë¸ì¶ç¤ò¸¡º÷¤¹¤ë¤È¤¤Ï N ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
4. µÕÊý¸þ¤Ë¸ì¶ç¤ò¸¡º÷¤¹¤ë¾ì¹ç¤Ï¡¢/ ¤ÎÂå¤ï¤ê¤Ë ? ¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
- 5. ¸µ¤Î¾ì½ê¤ËÌá¤ë¤Ë¤Ï CTRL-O (Ctrl ¤ò²¡¤·Â³¤±¤Ê¤¬¤é o ʸ»ú¥¿¥¤¥×)¤ò¥¿¥¤¥×¤·
+ 5. ¸µ¤Î¾ì½ê¤ËÌá¤ë¤Ë¤Ï CTRL-O (Ctrl ¤ò²¡¤·Â³¤±¤Ê¤¬¤éʸ»ú o ¤ò¥¿¥¤¥×)¤ò¥¿¥¤¥×¤·
¤Þ¤¹¡£¤µ¤é¤ËÌá¤ë¤Ë¤Ï¤³¤ì¤ò·«¤êÊÖ¤·¤Þ¤¹¡£CTRL-I ¤ÏÁ°Êý¸þ¤Ç¤¹¡£
---> "errroor" ¤Ï error ¤È¥¹¥Ú¥ë¤¬°ã¤¤¤Þ¤¹; errroor ¤Ï¤¤¤ï¤æ¤ë error ¤Ç¤¹¡£
@@ -531,7 +533,7 @@
¥ì¥Ã¥¹¥ó 4.3: Âбþ¤¹¤ë³ç¸Ì¤ò¸¡º÷
- ** Âбþ¤¹¤ë ),] ¤ä } ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï % ¤ò¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** Âбþ¤¹¤ë ),] ¤ä } ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï % ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ²¼¤Î ---> ¤Ç¼¨¤µ¤ì¤¿¹Ô¤Ç (,[ ¤« { ¤Î¤É¤ì¤«¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -554,7 +556,7 @@
¥ì¥Ã¥¹¥ó 4.4: ´Ö°ã¤¤¤òÊѹ¹¤¹¤ëÊýË¡
- ** 'old' ¤ò 'new' ¤ËÃÖ´¹¤¹¤ë¤Ë¤Ï :s/old/new/g ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** 'old' ¤ò 'new' ¤ËÃÖ´¹¤¹¤ë¤Ë¤Ï :s/old/new/g ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -567,9 +569,8 @@
---> thee best time to see thee flowers is in thee spring.
- 4. Ê£¿ô¹Ô¤«¤é¸«¤Ä¤«¤ëʸ»ú¤òÊѹ¹¤¹¤ë¤Ë¤Ï
- :#,#s/old/new/g #,# ¤Ë¤ÏÃÖ¤´¹¤¨¤ëÈϰϤγ«»Ï¤È½ªÎ»¤Î¹ÔÈÖ¹æ¤ò»ØÄꤷ¤Þ
- ¤¹¡£
+ 4. Ê£¿ô¹Ô¤«¤é¸«¤Ä¤«¤ëʸ»ú¤ÎÁ´¤Æ¤Î²Õ½ê¤òÊѹ¹¤¹¤ë¤Ë¤Ï
+ :#,#s/old/new/g #,# ¤Ë¤ÏÃÖ¤´¹¤¨¤ëÈϰϤγ«»Ï¤È½ªÎ»¤Î¹ÔÈÖ¹æ¤ò»ØÄꤹ¤ë¡£
:%s/old/new/g ¥Õ¥¡¥¤¥ëÁ´ÂΤǸ«¤Ä¤«¤ë¤â¤Î¤ËÂФ·¤ÆÊѹ¹¤¹¤ë¡£
:%s/old/new/gc ¥Õ¥¡¥¤¥ëÁ´ÂΤǸ«¤Ä¤«¤ë¤â¤Î¤ËÂФ·¤Æ¡¢1¤Ä1¤Ä³Îǧ¤ò¤È¤ê¤Ê
¤¬¤éÊѹ¹¤¹¤ë¡£
@@ -593,7 +594,7 @@
4. ¸½ºß¹Ô¤ÎºÇ½é¤Î old ¤ò new ¤ËÃÖ´¹¤¹¤ë¡£ :s/old/new
¸½ºß¹Ô¤ÎÁ´¤Æ¤Î old ¤ò new ¤ËÃÖ´¹¤¹¤ë¡£ :s/old/new/g
- 2¤Ä¤Î # ´Ö¤Ç¸ì¶ç¤òÃÖ´¹¤¹¤ë¡£ :#,#s/old/new/g
+ 2¤Ä¤Î # ¹Ô¤Î´Ö¤Ç¸ì¶ç¤òÃÖ´¹¤¹¤ë¡£ :#,#s/old/new/g
¥Õ¥¡¥¤¥ë¤ÎÃæ¤ÎÁ´¤Æ¤Î¸¡º÷¸ì¶ç¤òÃÖ´¹¤¹¤ë¡£ :%s/old/new/g
'c' ¤ò²Ã¤¨¤ë¤ÈÃÖ´¹¤ÎÅ٤˳Îǧ¤òµá¤á¤ë¡£ :%s/old/new/gc
@@ -601,10 +602,10 @@
¥ì¥Ã¥¹¥ó 5.1: ³°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ëÊýË¡
- ** :! ¤Î¸å¤Ë¼Â¹Ô¤¹¤ë³°Éô¥³¥Þ¥ó¥É¤ò¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** :! ¤Î¸å¤Ë¼Â¹Ô¤¹¤ë³°Éô¥³¥Þ¥ó¥É¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ²èÌ̤κDz¼Éô¤Ë¥«¡¼¥½¥ë¤¬°Üư¤¹¤ë¤è¤¦¡¢´·¤ì¿Æ¤·¤ó¤À : ¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
- ¤³¤ì¤Ç¥³¥Þ¥ó¥É¤¬¥¿¥¤¥×¤Ç¤¤ëÍͤˤʤê¤Þ¤¹¡£
+ ¤³¤ì¤Ç¥³¥Þ¥ó¥É¥é¥¤¥óÌ¿Î᤬¥¿¥¤¥×¤Ç¤¤ëÍͤˤʤê¤Þ¤¹¡£
2. ¤³¤³¤Ç ! ¤È¤¤¤¦Ê¸»ú(´¶Ã²Éä)¤ò¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
¤³¤ì¤Ç³°Éô¥·¥§¥ë¥³¥Þ¥ó¥É¤¬¼Â¹Ô¤Ç¤¤ëÍͤˤʤê¤Þ¤¹¡£
@@ -624,7 +625,7 @@
¥ì¥Ã¥¹¥ó 5.2: ¤½¤Î¾¤Î¥Õ¥¡¥¤¥ë¤Ø½ñ¤¹þ¤ß
- ** ¥Õ¥¡¥¤¥ë¤ØÊѹ¹¤òÊݸ¤¹¤ë¤Ë¤Ï :w ¥Õ¥¡¥¤¥ë̾ ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¥Õ¥¡¥¤¥ë¤ØÊѹ¹¤òÊݸ¤¹¤ë¤Ë¤Ï :w ¥Õ¥¡¥¤¥ë̾ ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ¥Ç¥£¥ì¥¯¥È¥ê¤Î°ìÍ÷¤òÆÀ¤ë¤¿¤á¤Ë :!dir ¤â¤·¤¯¤Ï :!ls ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£
¤³¤Î¤¢¤È <ENTER> ¤ò²¡¤¹¤Î¤Ï´û¤Ë¤´Â¸ÃΤǤ¹¤Í¡£
@@ -634,7 +635,7 @@
3. ¤Ç¤Ï :w TEST ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦ (TEST ¤Ï¡¢Áª¤ó¤À¥Õ¥¡¥¤¥ë̾¤Ç¤¹)¡£
4. ¤³¤ì¤Ë¤è¤ê¥Õ¥¡¥¤¥ëÁ´ÂΤ¬ TEST ¤È¤¤¤¦Ì¾Á°¤ÇÊݸ¤µ¤ì¤Þ¤¹¡£
- ¤â¤¦°ìÅÙ :!dir ¤â¤·¤¯¤Ï :!ls ¤È¥¿¥¤¥×¤·¤Æ³Îǧ¤·¤Æ¤ß¤Þ¤·¤ç¤¦¡£
+ ¤â¤¦°ìÅÙ :!dir ¤â¤·¤¯¤Ï :!ls ¤È¥¿¥¤¥×¤·¤Æ¥Ç¥£¥ì¥¯¥È¥ê¤ò³Îǧ¤·¤Æ¤ß¤Þ¤·¤ç¤¦¡£
NOTE: ¤³¤³¤Ç Vim ¤ò½ªÎ»¤·¡¢¥Õ¥¡¥¤¥ë̾ TEST ¤È¶¦¤Ëµ¯Æ°¤¹¤ë¤È¡¢Êݸ¤·¤¿»þ¤Î
¥Á¥å¡¼¥È¥ê¥¢¥ë¤ÎÊ£À½¤¬¤Ç¤¾å¤¬¤ë¤Ï¤º¤Ç¤¹¡£
@@ -647,7 +648,7 @@
¥ì¥Ã¥¹¥ó 5.3: ÁªÂò¤·¤¿½ñ¤¹þ¤ß
-** ¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤òÊݸ¤¹¤ë¤Ë¤Ï¡¢v ¥â¡¼¥·¥ç¥ó¤È :w FILENAME ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
+** ¥Õ¥¡¥¤¥ë¤Î°ìÉô¤òÊݸ¤¹¤ë¤Ë¤Ï¡¢v ¥â¡¼¥·¥ç¥ó¤È :w FILENAME ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ¤³¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤¹¡£
@@ -660,20 +661,20 @@
<ENTER> ¤ò²¡¤¹Á°¤Ë :'<,'>w TEST ¤È¤Ê¤Ã¤Æ¤¤¤ë¤³¤È¤ò³Îǧ¤·¤Æ²¼¤µ¤¤¡£
5. Vim ¤Ï TEST ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤ËÁªÂò¤µ¤ì¤¿¹Ô¤ò½ñ¤¹þ¤à¤Ç¤·¤ç¤¦¡£
- !dir ¤â¤·¤¯¤Ï !ls ¤Ç¤½¤ì¤ò³Îǧ¤·¤Þ¤¹¡£
+ :!dir ¤â¤·¤¯¤Ï :!ls ¤Ç¤½¤ì¤ò³Îǧ¤·¤Þ¤¹¡£
¤½¤ì¤Ïºï½ü¤·¤Ê¤¤¤Ç¤ª¤¤¤Æ²¼¤µ¤¤¡£¼¡¤Î¥ì¥Ã¥¹¥ó¤Ç»ÈÍѤ·¤Þ¤¹¡£
NOTE: v ¤ò²¡¤¹¤È¡¢Visual ÁªÂò¤¬»Ï¤Þ¤ê¤Þ¤¹¡£¥«¡¼¥½¥ë¤òư¤«¤¹¤³¤È¤Ç¡¢ÁªÂòÈϰϤò
Â礤¯¤â¾®¤µ¤¯¤â¤Ç¤¤Þ¤¹¡£¤µ¤é¤Ë¡¢¤½¤ÎÁªÂòÈϰϤËÂФ·¤Æ¥ª¥Ú¥ì¡¼¥¿¤òŬÍÑ
- ¤¤Þ¤¹¡£Î㤨¤Ð d ¤Ï¥Æ¥¥¹¥È¤òºï½ü¤·¤Þ¤¹¡£
+ ¤Ç¤¤Þ¤¹¡£Î㤨¤Ð d ¤Ï¥Æ¥¥¹¥È¤òºï½ü¤·¤Þ¤¹¡£
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 5.4: ¥Õ¥¡¥¤¥ë¤Î¼è¹þ¤È¹çÊ»
- ** ¥Õ¥¡¥¤¥ë¤ÎÃæ¿È¤òÁÞÆþ¤¹¤ë¤Ë¤Ï :r ¥Õ¥¡¥¤¥ë̾ ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¥Õ¥¡¥¤¥ë¤ÎÃæ¿È¤òÁÞÆþ¤¹¤ë¤Ë¤Ï :r ¥Õ¥¡¥¤¥ë̾ ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
- 1. ¥«¡¼¥½¥ë¤ò°Ê²¼¤Î¹Ô¤Ë¹ç¤ï¤»¤Þ¤¹¡£
+ 1. ¥«¡¼¥½¥ë¤ò¤³¤Î¹Ô¤Î¤¹¤°¾å¤Ë¹ç¤ï¤»¤Þ¤¹¡£
NOTE: ¥¹¥Æ¥Ã¥× 2 ¤Î¼Â¹Ô¸å¡¢¥ì¥Ã¥¹¥ó 5.3 ¤Î¥Æ¥¥¹¥È¤¬¸½¤ì¤Þ¤¹¡£²¼¤Ë²¼¤¬¤Ã¤Æ¤³
¤Î¥ì¥Ã¥¹¥ó¤Ë°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -682,19 +683,18 @@
¤³¤³¤Ç¤¤¤¦ TEST ¤Ï»È¤¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤Î¤³¤È¤Ç¤¹¡£
ÆÉ¤ß¹þ¤Þ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ï¡¢¥«¡¼¥½¥ë¹Ô¤Î²¼¤Ë¤¢¤ê¤Þ¤¹¡£
- 3. ¼è¹þ¤ó¤À¥Õ¥¡¥¤¥ë¤ò³Îǧ¤·¤Æ¤ß¤Þ¤·¤ç¤¦¡£¥«¡¼¥½¥ë¤òÌ᤹¤È¡¢¥ì¥Ã¥¹¥ó5.3 ¤Î
+ 3. ¼è¤ê¹þ¤ó¤À¥Õ¥¡¥¤¥ë¤ò³Îǧ¤·¤Æ¤ß¤Þ¤·¤ç¤¦¡£¥«¡¼¥½¥ë¤òÌ᤹¤È¡¢¥ì¥Ã¥¹¥ó5.3 ¤Î
¥ª¥ê¥¸¥Ê¥ë¤È¥Õ¥¡¥¤¥ë¤Ë¤è¤ë¤â¤Î¤Î2¤Ä¤¬¤¢¤ë¤³¤È¤¬¤ï¤«¤ê¤Þ¤¹¡£
-NOTE: ³°Éô¥³¥Þ¥ó¥É¤Î½ÐÎϤòÆÉ¤ß¹þ¤à¤³¤È¤â½ÐÍè¤Þ¤¹¡£Î㤨¤Ð¡¢
+NOTE: ³°Éô¥³¥Þ¥ó¥É¤Î½ÐÎϤòÆÉ¤ß¹þ¤à¤³¤È¤â¤Ç¤¤Þ¤¹¡£Î㤨¤Ð¡¢
:r !ls ¤Ï ls ¥³¥Þ¥ó¥É¤Î½ÐÎϤò¥«¡¼¥½¥ë°Ê²¼¤ËÆÉ¤ß¹þ¤ß¤Þ¤¹¡£
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 5 Í×Ìó
- 1. :!command ¤Ë¤è¤Ã¤Æ ³°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
+ 1. :!command ¤Ë¤è¤Ã¤Æ ³°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¡£
¤è¤¯»È¤¦Îã:
(Windows) (Unix)
@@ -717,13 +717,14 @@
¥ì¥Ã¥¹¥ó 6.1: ¥ª¡¼¥×¥ó¥³¥Þ¥ó¥É
- ** o ¤ò¥¿¥¤¥×¤¹¤ë¤È¡¢¥«¡¼¥½¥ë¤Î²¼¤Î¹Ô¤¬³«¤¡¢ÁÞÆþ¥â¡¼¥É¤ËÆþ¤ê¤Þ¤¹ **
+ ** o ¤ò¥¿¥¤¥×¤¹¤ë¤È¡¢¥«¡¼¥½¥ë¤Î²¼¤Î¹Ô¤¬³«¤¡¢ÁÞÆþ¥â¡¼¥É¤ËÆþ¤ê¤Þ¤¹¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤·¤ç¤¦¡£
2. o (¾®Ê¸»ú) ¤ò¥¿¥¤¥×¤·¤Æ¡¢¥«¡¼¥½¥ë¤Î²¼¤Î¹Ô¤ò³«¤¡¢ÁÞÆþ¥â¡¼¥É¤ËÆþ¤ê¤Þ¤¹¡£
- 3. ¤µ¤é¤ËÁÞÆþ¥â¡¼¥É¤ò½ªÎ»¤¹¤ë°Ù¤Ë <ESC> ¤ò¥¿¥¤¥×¤·¤Þ¤¹¡£
+ 3. ¤¤¤¯¤Ä¤«Ê¸»ú¤ò¥¿¥¤¥×¤·¤Æ¤«¤é¡¢ÁÞÆþ¥â¡¼¥É¤ò½ªÎ»¤¹¤ë°Ù¤Ë <ESC> ¤ò
+ ¥¿¥¤¥×¤·¤Þ¤¹¡£
---> o ¤ò¥¿¥¤¥×¤¹¤ë¤È¥«¡¼¥½¥ë¤Ï³«¤¤¤¿¹Ô¤Ø°Üư¤·ÁÞÆþ¥â¡¼¥É¤ËÆþ¤ê¤Þ¤¹¡£
@@ -735,12 +736,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 6.2: Äɲå³¥Þ¥ó¥É
- ** ¥«¡¼¥½¥ë¤Î¼¡¤Î°ÌÃÖ¤«¤é¥Æ¥¥¹¥È¤òÄɲ乤ë¤Ë¤Ï a ¤È¥¿¥¤¥×¤·¤Þ¤¹ **
+ ** ¥«¡¼¥½¥ë¤Î¼¡¤Î°ÌÃÖ¤«¤é¥Æ¥¥¹¥È¤òÄɲ乤ë¤Ë¤Ï a ¤È¥¿¥¤¥×¤·¤Þ¤¹¡£ **
1. ¥«¡¼¥½¥ë¤ò ---> ¤Ç¼¨¤µ¤ì¤¿ºÇ½é¤Î¹Ô¤Ø°Üư¤·¤Þ¤·¤ç¤¦¡£
@@ -763,7 +763,7 @@
¥ì¥Ã¥¹¥ó 6.3: ¤½¤Î¾¤ÎÃÖ´¹ÊýË¡
- ** 1ʸ»ú°Ê¾å¤òÃÖ¤´¹¤¨¤ë¤Ë¤ÏÂçʸ»ú¤Î R ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦ **
+ ** 1ʸ»ú°Ê¾å¤òÃÖ¤´¹¤¨¤ë¤Ë¤ÏÂçʸ»ú¤Î R ¤È¥¿¥¤¥×¤·¤Þ¤·¤ç¤¦¡£ **
1. °Ê²¼¤Î ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ë¥«¡¼¥½¥ë¤ò°Üư¤·¤Þ¤¹¡£ºÇ½é¤Î xxx ¤ÎÀèÆ¬¤Ë°Üư¤·
¤Þ¤¹¡£
@@ -781,12 +781,11 @@
NOTE: ÃÖ´¹¥â¡¼¥É¤ÏÁÞÆþ¥â¡¼¥É¤Ë»÷¤Æ¤¤¤Þ¤¹¤¬¡¢Á´¤Æ¤Î¥¿¥¤¥×¤µ¤ì¤¿Ê¸»ú¤Ï´û¸¤Îʸ»ú
¤òºï½ü¤·¤Þ¤¹¡£
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 6.4: ¥Æ¥¥¹¥È¤Î¥³¥Ô¡¼¤È¥Ú¡¼¥¹¥È
- ** ¥Æ¥¥¹¥È¤Î¥³¥Ô¡¼¤Ë¤Ï¥ª¥Ú¥ì¡¼¥¿ y ¤ò¡¢¥Ú¡¼¥¹¥È¤Ë¤Ï p ¤ò»È¤¤¤Þ¤¹ **
+ ** ¥Æ¥¥¹¥È¤Î¥³¥Ô¡¼¤Ë¤Ï¥ª¥Ú¥ì¡¼¥¿ y ¤ò¡¢¥Ú¡¼¥¹¥È¤Ë¤Ï p ¤ò»È¤¤¤Þ¤¹¡£ **
1. ---> ¤È¼¨¤µ¤ì¤¿¹Ô¤Ø°Üư¤·¡¢¥«¡¼¥½¥ë¤ò "a)" ¤Î¸å¤ËÃÖ¤¤¤Æ¤ª¤¤Þ¤¹¡£
@@ -804,12 +803,13 @@
---> a) this is the first item.
b)
- NOTE: ñ¸ì¤ò1¤Ä yank ¤¹¤ë¤Î¤Ë y ¤ò¥ª¥Ú¥ì¡¼¥¿¤È¤·¤Æ yw ¤È¤¹¤ë¤³¤È¤â½ÐÍè¤Þ¤¹¡£
+ NOTE: y ¤ò¥ª¥Ú¥ì¡¼¥¿¤È¤·¤Æ»È¤¦¤³¤È¤â¤Ç¤¤Þ¤¹¡£yw ¤Ïñ¸ì¤ò1¤Ä yank ¤·¤Þ¤¹¡£
+ yy ¤Ï¹Ô¤ò1¤Ä yank ¤·¡¢p ¤Ç¤½¤Î¹Ô¤ò put ¤·¤Þ¤¹¡£
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 6.5: ¥ª¥×¥·¥ç¥ó¤ÎÀßÄê
- ** ¸¡º÷¤äÃÖ´¹¤ÎºÝ¤ËÂçʸ»ú/¾®Ê¸»ú¤ò̵»ë¤¹¤ë¤Ë¤Ï¡¢¥ª¥×¥·¥ç¥ó¤òÀßÄꤷ¤Þ¤¹ **
+ ** ¸¡º÷¤äÃÖ´¹¤ÎºÝ¤ËÂçʸ»ú/¾®Ê¸»ú¤ò̵»ë¤¹¤ë¤Ë¤Ï¡¢¥ª¥×¥·¥ç¥ó¤òÀßÄꤷ¤Þ¤¹¡£ **
1. ¼¡¤ÎÍÍ¤ËÆþÎϤ·¤Æ 'ignore' ¤ò¸¡º÷¤·¤Þ¤·¤ç¤¦: /ignore <ENTER>
n ¤ò²¡¤·¤Æ²¿ÅÙ¤«¸¡º÷¤ò·«¤êÊÖ¤·¤Þ¤¹¡£
@@ -826,7 +826,7 @@
6. Âçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò̵¸ú¤Ë¤¹¤ë¤Ë¤Ï¼¡¤ÎÍÍ¤ËÆþÎϤ·¤Þ¤¹: :set noic
NOTE: ¥Þ¥Ã¥Á¤Î¶¯Ä´É½¼¨¤ò¤ä¤á¤ë¤Ë¤Ï¼¡¤ÎÍÍ¤ËÆþÎϤ·¤Þ¤¹: :nohlsearch
-NOTE: 1¤Ä¤Î¸¡º÷¥³¥Þ¥ó¥É¤À¤±Âçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò¤ä¤á¤¿¤¤¤Ê¤é¤Ð¡¢¥Õ¥ì¡¼¥º¤Ë \c
+NOTE: 1¤Ä¤Î¸¡º÷¥³¥Þ¥ó¥É¤À¤±Âçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò¤ä¤á¤¿¤¤¤Ê¤é¤Ð¡¢¸ì¶çÆâ¤Ç \c
¤ò»ÈÍѤ·¤Þ¤¹: /ignore\c <ENTER>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 6 Í×Ìó
@@ -835,13 +835,13 @@
O (Âçʸ»ú) ¤ò¥¿¥¤¥×¤¹¤ë¤È¥«¡¼¥½¥ë¤Î¾å¤Î¹Ô¤ÇÁÞÆþ¥â¡¼¥É¤Ë¤Ê¤ë¡£
2. ¥«¡¼¥½¥ë¾å¤Îʸ»ú¤Î¼¡¤«¤é¥Æ¥¥¹¥È¤òÄɲ乤ë¤Ë¤Ï a ¤È¥¿¥¤¥×¤¹¤ë¡£
- ¹ÔËö¤Ë¼«Æ°¤Ç¥Æ¥¥¹¥È¤òÁÞÆþ¤¹¤ë¤Ë¤ÏÂçʸ»ú A ¤ò¥¿¥¤¥×¤¹¤ë¡£
+ ¹ÔËö¤Ë¥Æ¥¥¹¥È¤òÁÞÆþ¤¹¤ë¤Ë¤ÏÂçʸ»ú A ¤ò¥¿¥¤¥×¤¹¤ë¡£
- 3. e ¥³¥Þ¥ó¥É¤Ïñ¸ì¤Î½ªÃ¼Éô¥«¡¼¥½¥ë¤ò°Üư¤¹¤ë¡£
+ 3. e ¥³¥Þ¥ó¥É¤Ïñ¸ì¤Î½ªÃ¼¤Ë¥«¡¼¥½¥ë¤ò°Üư¤¹¤ë¡£
4. y ¥ª¥Ú¥ì¡¼¥¿¤Ï¥Æ¥¥¹¥È¤ò yank (¥³¥Ô¡¼)¤·¡¢p ¤Ï¤½¤ì¤ò put (¥Ú¡¼¥¹¥È)¤¹¤ë¡£
- 5. Âçʸ»ú¤Î R ¤ò¥¿¥¤¥×¤¹¤ë¤ÈÃÖ´¹¥â¡¼¥É¤ËÆþ¤ê¡¢<ESC>¤ò²¡¤¹¤ÈÈ´¤±¤ë¡£
+ 5. Âçʸ»ú¤Î R ¤ò¥¿¥¤¥×¤¹¤ë¤ÈÃÖ´¹¥â¡¼¥É¤ËÆþ¤ê¡¢<ESC> ¤ò²¡¤¹¤ÈÈ´¤±¤ë¡£
6. ":set xxx" ¤È¥¿¥¤¥×¤¹¤ë¤È¥ª¥×¥·¥ç¥ó "xxx" ¤¬ÀßÄꤵ¤ì¤ë¡£
'ic' 'ignorecase' ¸¡º÷»þ¤ËÂçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤·¤Ê¤¤
@@ -849,7 +849,7 @@
'hls' 'hlsearch' ¥Þ¥Ã¥Á¤¹¤ë¤¹¤Ù¤Æ¤ò¶¯Ä´É½¼¨¤¹¤ë
Ť¤Êý¡¢Ã»¤¤Êý¡¢¤É¤Á¤é¤Î¥ª¥×¥·¥ç¥ó̾¤Ç¤â»ÈÍѤǤ¤Þ¤¹¡£
- 7. ¥ª¥×¥·¥ç¥ó¤ò̵¸ú¤Ë¤¹¤ë¤Ë¤Ï "no" ¤òÉÕÍ¿¤·¤Þ¤¹: :set noic
+ 7. ¥ª¥×¥·¥ç¥ó¤ò̵¸ú¤Ë¤¹¤ë¤Ë¤Ï "no" ¤òÉÕÍ¿¤¹¤ë: :set noic
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
¥ì¥Ã¥¹¥ó 7.1: ¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¥³¥Þ¥ó¥É
@@ -883,15 +883,15 @@
»ÈÍÑÉԲĤȤʤäƤ¤¤Þ¤¹¡£¤è¤ê¿¤¯¤ÎÆÃħ¤ò»È¤¤¤Ï¤¸¤á¤ë¤Ë¤Ï "vimrc" ¥Õ¥¡¥¤¥ë
¤òºîÀ®¤·¤Þ¤¹¡£
- 1. "vimrc" ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤ò³«»Ï¤¹¤ë¡£¤³¤ì¤Ï¥·¥¹¥Æ¥à¤Ë°Í¸¤·¤Þ¤¹¡£
- :edit ~/.vimrc UNIX ¸þ¤±
- :edit ~/_vimrc Windows ¸þ¤±
+ 1. "vimrc" ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤ò³«»Ï¤·¤Þ¤¹¡£¤³¤ì¤Ï¥·¥¹¥Æ¥à¤Ë°Í¸¤·¤Þ¤¹¡£
+ :e ~/.vimrc UNIX ¸þ¤±
+ :e ~/_vimrc Windows ¸þ¤±
2. ¤³¤³¤Ç¥µ¥ó¥×¥ë¤Î "vimrc" ¤òÆÉ¤ß¹þ¤ß¤Þ¤¹¡£
- :read $VIMRUNTIME/vimrc_example.vim
+ :r $VIMRUNTIME/vimrc_example.vim
3. °Ê²¼¤Î¤è¤¦¤Ë¥Õ¥¡¥¤¥ë¤Ø½ñ¤¹þ¤ß¤Þ¤¹¡£
- :write
+ :w
¼¡²ó Vim ¤òµ¯Æ°¤¹¤ë¤È¡¢¿§¤Å¤±¹½Ê¸¤¬»È¤¨¤ë¤è¤¦¤Ë¤Ê¤ë¤Ç¤·¤ç¤¦¡£
¤³¤Î "vimrc" ¥Õ¥¡¥¤¥ë¤Ø¡¢¤ª¹¥¤ß¤ÎÀßÄê¤òÄɲ乤뤳¤È¤¬¤Ç¤¤Þ¤¹¡£
@@ -907,7 +907,7 @@
2. ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ëºß¤ë¥Õ¥¡¥¤¥ë¤ò :!ls ¤« :!dir ¤Ç³Îǧ¤·¤Þ¤¹¡£
- 3. ¥³¥Þ¥ó¥É¤Î³«»Ï¤ò¥¿¥¤¥×¤·¤Þ¤¹: :e
+ 3. ¥³¥Þ¥ó¥É¤ÎÀèÆ¬¤ò¥¿¥¤¥×¤·¤Þ¤¹: :e
4. CTRL-D ¤ò²¡¤¹¤È Vim ¤Ï "e" ¤«¤é»Ï¤Þ¤ë¥³¥Þ¥ó¥É¤Î°ìÍ÷¤òɽ¼¨¤·¤Þ¤¹¡£
diff --git a/runtime/tutor/tutor.ja.sjis b/runtime/tutor/tutor.ja.sjis
index 8cb916e..451745b 100644
--- a/runtime/tutor/tutor.ja.sjis
+++ b/runtime/tutor/tutor.ja.sjis
@@ -8,7 +8,7 @@
ÉÈÁĢܷB
`
[gA𮹷éÌÉKvÈÔÍAo¦½R}hð·ÌÉÇê¾
- ¯Ôðg¤Ì©ÉàæèÜ·ªA¨æ»25©ç30ªÅ·B
+ ¯Ôðg¤Ì©ÉàæèÜ·ªA¨æ»30ªÅ·B
ATTENTION:
ȺÌûKpR}hÉͱ̶ÍðÏX·éàÌà èÜ·BûKðnßéO
@@ -24,7 +24,7 @@
bX 1.1: J[\ÌÚ®
- ** J[\ðÚ®·éÉÍA¦³êélÉ h,j,k,l ðµÜ· **
+ ** J[\ðÚ®·éÉÍA¦³êélÉ h,j,k,l ðµÜ·B **
^
k qg: h L[ͶûüÉÚ®µÜ·B
< h l > l L[ÍEûüÉÚ®µÜ·B
@@ -65,11 +65,12 @@
5. 1.3ÜÅJ[\ðÚ®³¹Üµå¤B
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 1.3: eLXgÒW - í
- ** m[}[hÉÄJ[\̶̺ðí·éÉÍ x ðµÜ· **
+ ** m[}[hÉÄJ[\̶̺ðí·éÉÍ x ðµÜ·B **
1. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜµå¤B
@@ -87,12 +88,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 1.4: eLXgÒW - }ü
- ** m[}[hÉÄeLXgð}ü·éÉÍ i ðµÜ· **
+ ** m[}[hÉÄeLXgð}ü·éÉÍ i ðµÜ·B **
1. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
@@ -115,10 +115,10 @@
bX 1.5: eLXgÒW - ÇÁ
- ** eLXgðÇÁ·éÉÍ A ðµÜµå¤ **
+ ** eLXgðÇÁ·éÉÍ A ðµÜµå¤B **
1. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
- J[\ª»Ì¶ãÉ ÁÄà©Ü¢Ü¹ñB
+ J[\ª»ÌsÌÇ̶ãÉ ÁÄà©Ü¢Ü¹ñB
2. ÇÁªKvÈêÅ A ð^CvµÜµå¤B
@@ -137,18 +137,17 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 1.6: t@CÌÒW
-
- ** t@CðÛ¶µÄI¹·éÉÍ :wq Æ^CvµÜ· **
+ ** t@CðÛ¶µÄI¹·éÉÍ :wq Æ^CvµÜ·B **
!! NOTE: ȺÌXebvðÀs·éOÉAܸSÌðÇñž³¢!!
- 1. bX 1.2 ÅâÁ½æ¤É :q! ð^CvµÄA±Ì`
[gAðI¹
- µÜ·B é¢ÍAÊÌ[ª éêÍ»±ÅȺÌàeðsÁÄà©Ü¢
- ܹñB
+ 1. ÊÌ[ª éêÍ»±ÅȺÌàeðsÁľ³¢B»¤ÅȯêÎA
+ bX 1.2 ÅâÁ½æ¤É :q! ð^CvµÄA±Ì`
[gAðI¹
+ µÜ·B
- 2. VFvvgűÌR}hð^CvµÜ·: vim tutor <ENTER>
- 'vim' ª Vim GfB^ðN®·éR}hA'tutor' ÍÒWµ½¢t@CÌ
- ¼OÅ·BÏXµÄàæ¢t@Cðg¢Üµå¤B
+ 2. VFvvgűÌR}hð^CvµÜ·: vim file.txt <ENTER>
+ 'vim' ª Vim GfB^ðN®·éR}hA'file.txt' ÍÒWµ½¢t@C
+ ̼OÅ·BÏXÅ«ét@C̼Oðg¢Üµå¤B
3. OÌbXÅwñ¾æ¤ÉAeLXgð}üAíµÜ·B
@@ -186,9 +185,9 @@
bX 2.1: íR}h
- ** PêÌöÜÅðí·éÉÍ dw Æ^CvµÜµå¤ **
+ ** PêÌöÜÅðí·éÉÍ dw Æ^CvµÜµå¤B **
- 1. m[}[hŠ鱯ðmF·é½ßÉ <ESC> ðµÜµå¤B
+ 1. mÀÉm[}[hÉ·é½ß <ESC> ðµÜµå¤B
2. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜµå¤B
@@ -196,22 +195,22 @@
4. Pêðí·é½ßÉ dw Æ^CvµÜµå¤B
- NOTE: ^Cv·éÆAdw Æ¢¤¶ªXN[ÌźsÉ»íêÜ·B
- ^CvðÔáÁĵÜÁ½ÉÍ <ESC> ðµÄâ輵ܵå¤B
+ NOTE: d ð^Cv·éÆA»Ì¶ªXN[ÌźsÉ»íêÜ·BVim Í
+ Ƚª w ð^Cv·éÌðÒÁĢܷBൠd ÈO̶ª\¦³ê½
+ ͽ©ÔáÁĢܷB <ESC> ðµÄâ輵ܵå¤B
---> ±Ì ¶ ÉÍ ¢Â©Ì ½Ìµ¢ KvÌÈ¢ Pê ª ÜÜêÄ ¢Ü·B
5. 3 ©ç 4 ÜÅ𶪳µÈéÜÅJèÔµAbX 2.2 ÖiÝܵå¤B
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 2.2: »Ì¼ÌíR}h
- ** sÌöÜÅðí·éÉÍ d$ Æ^CvµÜµå¤ **
+ ** sÌöÜÅðí·éÉÍ d$ Æ^CvµÜµå¤B **
- 1. m[}[hŠ鱯ðmF·éÌÉ <ESC> ðµÜµå¤B
+ 1. mÀÉm[}[hÉ·é½ß <ESC> ðµÜµå¤B
2. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜµå¤B
@@ -232,7 +231,7 @@
bX 2.3: Iy[^Æ[V
- ½ÌR}hÍIy[^Æ[V©çeLXgÉÏXðÁ¦Ü·B
+ eLXgÉÏXðÁ¦é½ÌR}hÍIy[^Æ[V©çÈèÜ·B
íR}h d ÌIy[^ÍÌlÉÈÁĢܷ:
d [V
@@ -248,7 +247,7 @@
ÂÜè de Æ^Cv·éÆAJ[\Êu©çPêÌIíèÜÅðíµÜ·B
-NOTE: `¯µ½¢lÍAm[}[hÉÄR}hȵÉ[VðµÄ
+NOTE: `¯µ½¢lÍAm[}[hÉÄIy[^ȵÉ[VðµÄ
Ýܵå¤BJ[\ªÚIêêŦ³êéÊuÉÚ®·é͸ŷB
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -259,7 +258,7 @@
1. ÈºÌ ---> Ʀ³ê½sÌæªÉJ[\ðÚ®µÜ·B
- 2. 2w ð^CvµÄPê2ªOÉÚ®µÜ·B
+ 2. 2w ð^CvµÄPê2ªæÉÚ®µÜ·B
3. 3e ð^CvµÄ3ÂÚÌPêÌI[ÉÚ®µÜ·B
@@ -284,24 +283,24 @@
æè½Ìíªs¦Ü·:
d l [V
- 1. ---> Ʀ³ê½sÌsªªÉJ[\ðÚ®µÜµå¤B
+ 1. ---> Ʀ³ê½sÌÅÌå¶ÌPêÉJ[\ðÚ®µÜµå¤B
- 2. UPPER CASE ÌPê2Âð d2w Æ^CvµÄíµÜ·B
+ 2. å¶ÌPê2Âð d2w Æ^CvµÄíµÜ·B
- 3. UPPER CASE Æ¢¤A±µ½PêðA1ÂÌR}hÆÙÈéJEgðwèµA
+ 3. A±µ½å¶ÌPêðAÙÈéJEgðwèµ½1ÂÌR}hÅíµA
Xebv 1 Æ 2 ðJèԵܷB
---> ±ÌABC DEsÌFGHI JK LMN OPPêÍQ RS TUVãYíÉÈÁ½B
-NOTE: Iy[^ d Æ[VÌÔÉJEgðgÁ½êAIy[^ÌÈ¢
- êÌ[VÌæ¤É®ìµÜ·B
- á: 3dw Æ d3w ͯÅA3w ðíµÜ·B
+
+
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 2.6: sÌì
- ** sSÌðí·éÉÍ dd Æ^CvµÜ· **
+ ** sSÌðí·éÉÍ dd Æ^CvµÜ·B **
sSÌðí·épxª½¢ÌÅAViÌfUCi[ÍsÌíð d Ì2ñ^CvÆ
¢¤ÈPÈàÌÉßܵ½B
@@ -319,24 +318,25 @@
---> 6) »Íâ
---> 7) I}Gi[
+2ñ^CvÅ1sÉεÄìp³¹éû@ÍȺÅq×éIy[^Åà®ìµÜ·B
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 2.7: âè¼µR}h
- ** ÅãÌR}hðæèÁ·ÉÍ u ðµÜ·BU ÍsSÌÌæÁÅ·B **
+ ** ÅãÌR}hðæèÁ·ÉÍ u ðµÜ·BU ÍsSÌÌæèÁµÅ·B **
1. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µAÅÌÔá¢ÉJ[\
ðÚ®µÜµå¤B
- 2. x ð^CvµÄ¢çÈ¢æªÌ¶ðíµÜµå¤B
+ 2. x ð^CvµÄÅÌ¢çÈ¢¶ðíµÜµå¤B
3. ³Au ð^CvµÄÅãÉÀsµ½R}hðæèÁµÜµå¤B
- 4. ¡xÍAx ðgpµÄëèðSÄC³µÜµå¤B
+ 4. ¡xÍAx ðgpµÄsàÌëèðSÄC³µÜµå¤B
5. å¶Ì U ð^CvµÄAsð³ÌóÔÉߵܵå¤B
- 6. u ð^CvµÄ¼OÌ U R}hðæÁµÜµå¤B
+ 6. u ð^CvµÄ¼OÌ U R}hðæèÁµÜµå¤B
7. ÅÍR}hðÄÀs·éÌÉ CTRL-R (CTRL ðµ½ÜÜ R ðÅÂ)ðñ
- ^CvµÄÝܵå¤(æÁÌæÁ)B
+ ^CvµÄÝܵå¤(æèÁµÌæèÁµ)B
----> ±ÌÌsÌÌÔá¢ðC³XµAãÅ»êçÌC³ððæÁµÜÜ··B
+---> ±ÌÌsÌÌÔá¢ðC³XµAãÅ»êçÌC³ððæèÁµÜÜ··B
8. ±êÍÆÄàÖÈR}hÅ·B³bX 2 vñÖiÝܵå¤B
@@ -347,45 +347,47 @@
bX 2 vñ
- 1. J[\Êu©çPêÌöÜÅðí·éÉÍ dw Æ^CvµÜ·B
- 2. J[\Êu©çsÌöÜÅðí·éÉÍ d$ Æ^CvµÜ·B
- 3. sSÌðí·éÉÍ dd Æ^CvµÜ·B
+ 1. J[\Êu©çÌPêÜÅðí·éÉÍ dw Æ^CvµÜ·B
+ 2. J[\Êu©çPêÌöÜÅðí·éÉÍ de Æ^CvµÜ·B
+ 3. J[\Êu©çsÌöÜÅðí·éÉÍ d$ Æ^CvµÜ·B
+ 4. sSÌðí·éÉÍ dd Æ^CvµÜ·B
- 4. [VðJèÔ·ÉÍlðt^µÜ·: 2w
- 5. ÏXÉp¢éR}hÌ`®Í
+ 5. [VðJèÔ·ÉÍlðt^µÜ·: 2w
+ 6. ÏXÉp¢éR}hÌ`®Í
Iy[^ [l] [V
-
»ê¼ê:
Iy[^ - í d ÌÞŽð·é©B
- l - »ÌR}hð½ñJèÔ·©B
- [V - w (Pê)â $ (s)ÈÇÌÞÅAeLXg̽Éεī©
- ¯é©B
+ [l] - »ÌR}hð½ñJèÔ·©B
+ [V - w (Pê)â e (Pêö)A$ (s)ÈÇÌÞÅAeLXgÌ
+ ½Éεé©B
- 6. sÌæªÉÚ®·éÉÍ[ðgpµÜ·: 0
+ 7. sÌæªÉÚ®·éÉÍ[ðgpµÜ·: 0
- 7. OñÌ®ìðæÁ·: u (¬¶ u)
- sSÌÌÏXðæÁ·: U (å¶ U)
- æÁµÌæÁµ: CTRL-R
+ 8. OñÌ®ìðæèÁ·: u (¬¶ u)
+ sSÌÌÏXðæèÁ·: U (å¶ U)
+ æèÁµÌæèÁµ: CTRL-R
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 3.1: \èt¯R}h
- ** ÅãÉí³ê½sðJ[\ÌãÉ\èt¯éÉÍ p ð^CvµÜ· **
+ ** ÅãÉí³ê½sðJ[\ÌãÉ\èt¯éÉÍ p ð^CvµÜ·B **
- 1. ȺÌiÌÅÌsÉJ[\ðÚ®µÜµå¤B
+ 1. ---> Ʀ³ê½ÈºÌÅÌsÉJ[\ðÚ®µÜµå¤B
- 2. dd Æ^CvµÄsðíµAVim Ìobt@Éi[µÜµå¤B
+ 2. dd Æ^CvµÄsðíµAVim ÌWX^Éi[µÜµå¤B
- 3. íµ½sª{ é׫ÊuÌãÌsÜÅAJ[\ðÚ®³¹Üµå¤B
+ 3. íµ½sª{ é׫ÊuÌãÌsÅ é c) sÜÅAJ[\ðÚ®³¹
+ ܵå¤B
- 4. m[}[hÅ p ð^CvµÄi[µ½sðæÊÉߵܷB
+ 4. m[}[hÅ p ð^CvµÄi[µ½sðJ[\̺ÉߵܷB
5. Ôª³µÈélÉXebv 2 ©ç 4 ðJèԵܵå¤B
- d) MûàwԱƪūé?
- b) X~Í¢A
- c) mbÆÍwÔàÌA
- a) oÍÔ¢A
+---> d) MûàwԱƪūé?
+---> b) X~Í¢A
+---> c) mbÆÍwÔàÌA
+---> a) oÍÔ¢A
@@ -393,7 +395,7 @@
bX 3.2: u«·¦R}h
- ** J[\̶̺ðu«·¦éÉÍ r ð^CvµÜ· **
+ ** J[\̶̺ð x Éu«·¦éÉÍ rx ð^CvµÜ·B **
1. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
@@ -416,38 +418,38 @@
bX 3.3: ÏXR}h
- ** PêÌêAàµÍSÌðÏX·éÉÍ cw Æ^CvµÜ· **
+ ** PêÌöÜÅðÏX·éÉÍ ce Æ^CvµÜ·B **
1. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
2. lubw Ì u ÌÊuÉJ[\ðÚ®µÜµå¤B
- 3. cw Æ^CvµA³µ¢Pêð^CvµÜµå¤(±Ìê 'ine' Æ^Cv)B
+ 3. ce Æ^CvµA³µ¢Pêð^CvµÜµå¤(±Ìê 'ine' Æ^Cv)B
- 4. ÌÔá¢(ÏX·×«¶Ìæª)ÉÚ®·é½ßÉ <ESC> ð^CvµÜ·B
+ 4. <ESC> ð^CvµÄ©çÌÔá¢(ÏX·×«¶Ìæª)ÉÚ®µÜ·B
5. ÅÌsªÌsÌlÉÈéÜÅXebv 3 Æ 4 ðJèԵܷB
---> This lubw has a few wptfd that mrrf changing usf the change operator.
---> This line has a few words that need changing using the change operator.
-cw ÍPêðÏX·é¾¯ÅÈA}üàs¦é±ÆÉӵܵå¤B
-
+ce ÍPêðíµ½ãA}ü[hÉü鱯Éӵܵå¤B
+cc ͯ¶±ÆðsSÌÉεÄs¢Ü·B
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 3.4: c ðgpµ½»Ì¼ÌÏX
- ** ÏXR}hÍAíR}hƯ¶lÉIuWFNgðgpµÜ· **
+ ** ÏXIy[^ÍAíÆ¯¶lÉ[VðgpµÜ·B **
- 1. ÏXR}hÍAíR}hƯ¶æ¤È®ìðµÜ·B»Ì`®Í
+ 1. ÏXIy[^ÍAíÆ¯¶æ¤È®ìðµÜ·B»Ì`®Í
c [l] [V
- 2. IuWFNg௶ÅAw ÍPêA $ ÍsÈÇÆ¢Á½àÌÅ·B
+ 2. [V௶ÅAw ÍPêA $ ÍsÈÇÆ¢Á½àÌÅ·B
- 3. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜµå¤B
+ 3. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
4. ÅÌÔá¢ÖJ[\ðÚ®µÜµå¤B
@@ -470,7 +472,7 @@
¶ð^CvµÜ·B
3. ÏXR}hÅÍJ[\Êu©çÁèÌ[VÅwè³êéI[ÜÅðÏ
- X·é±ÆªÂ\Å·Bá¦Î cw ÈçÎJ[\Êu©çPêÌIíèÜÅA
+ X·é±ÆªÂ\Å·Bá¦Î ce ÈçÎJ[\Êu©çPêÌIíèÜÅA
c$ ÈçÎsÌIíèÜÅðÏXµÜ·B
4. ÏXR}hÌ`®Í
@@ -485,7 +487,7 @@
bX 4.1: ÊuÆt@CÌîñ
** t@CàÅÌÊuÆt@CÌóÔð\¦·éÉÍ CTRL-G ð^CvµÜ·B
- t@CàÌ ésÉÚ®·éÉÍ G ð^CvµÜ· **
+ t@CàÌ ésÉÚ®·éÉÍ G ð^CvµÜ·B **
NOTE: XebvðÀs·éOÉA±ÌbXSÄÉÚðʵܵå¤!!
@@ -496,7 +498,7 @@
NOTE: æÊÌEº÷ÉJ[\ÌÊuª\¦³êÄ¢é©àµêܹñB±êÍ
'ruler' IvV(:help 'ruler' ðQÆ)ðÝè·é±ÆÅ\¦³êÜ·B
- 2. źsÉÚ®·é½ßÉ G ð^CvµÜµå¤B
+ 2. t@CÌźsÉÚ®·é½ßÉ G ð^CvµÜµå¤B
t@CÌæªÉÚ®·éÉÍ gg Æ^CvµÜµå¤B
3. æÙÇÌsÌÔð^Cvµ G ð^CvµÜµå¤BÅÉ CTRL-G ðµ½s
@@ -508,19 +510,19 @@
bX 4.2: õR}h
- ** êåðõ·éÉÍ / ÆAOûõ·éêåð^CvµÜ·B**
+ ** êåðõ·éÉÍ / ÆAOûõ·éêåð^CvµÜ·B **
1. m[}[hÅ / Æ¢¤¶ð^CvµÜ·BæÊê# : R}hÆ
¯¶lÉ / ª»ê鱯ÉCÃŵå¤B
2. ÅÍA'errroor' <ENTER> Æ^CvµÜµå¤B±êªõµ½¢PêÅ·B
- 3. ¯¶êðà¤êxõ·éÆ«Í PÉ n ð^CvµÜ·B
+ 3. ¯¶êåðà¤êxõ·éÆ«Í PÉ n ð^CvµÜ·B
tûüÉêåðõ·éÆ«Í N ð^CvµÜ·B
4. tûüÉêåðõ·éêÍA/ ÌãíèÉ ? R}hðgpµÜ·B
- 5. ³ÌêÉßéÉÍ CTRL-O (Ctrl 𵱯Ȫç o ¶^Cv)ð^Cvµ
+ 5. ³ÌêÉßéÉÍ CTRL-O (Ctrl ðµ±¯Èªç¶ o ð^Cv)ð^Cvµ
Ü·B³çÉßéÉͱêðJèԵܷBCTRL-I ÍOûüÅ·B
---> "errroor" Í error ÆXyªá¢Ü·; errroor Í¢íäé error Å·B
@@ -531,7 +533,7 @@
bX 4.3: ηéÊðõ
- ** ηé ),] â } ðõ·éÉÍ % ð^CvµÜ· **
+ ** ηé ),] â } ðõ·éÉÍ % ð^CvµÜ·B **
1. ºÌ ---> Ŧ³ê½sÅ (,[ © { ÌÇê©ÉJ[\ðÚ®µÜµå¤B
@@ -554,7 +556,7 @@
bX 4.4: Ôá¢ðÏX·éû@
- ** 'old' ð 'new' Éu··éÉÍ :s/old/new/g Æ^CvµÜ· **
+ ** 'old' ð 'new' Éu··éÉÍ :s/old/new/g Æ^CvµÜ·B **
1. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜµå¤B
@@ -567,9 +569,8 @@
---> thee best time to see thee flowers is in thee spring.
- 4. ¡s©ç©Â©é¶ðÏX·éÉÍ
- :#,#s/old/new/g #,# ÉÍu«·¦éÍÍÌJnÆI¹ÌsÔðwèµÜ
- ·B
+ 4. ¡s©ç©Â©é¶ÌSÄÌÓðÏX·éÉÍ
+ :#,#s/old/new/g #,# ÉÍu«·¦éÍÍÌJnÆI¹ÌsÔðwè·éB
:%s/old/new/g t@CSÌũ©éàÌÉεÄÏX·éB
:%s/old/new/gc t@CSÌũ©éàÌÉεÄA1Â1ÂmFðÆèÈ
ªçÏX·éB
@@ -593,7 +594,7 @@
4. »ÝsÌÅÌ old ð new Éu··éB :s/old/new
»ÝsÌSÄÌ old ð new Éu··éB :s/old/new/g
- 2ÂÌ # ÔÅêåðu··éB :#,#s/old/new/g
+ 2ÂÌ # sÌÔÅêåðu··éB :#,#s/old/new/g
t@CÌÌSÄÌõêåðu··éB :%s/old/new/g
'c' ðÁ¦éÆu·ÌxÉmFðßéB :%s/old/new/gc
@@ -601,10 +602,10 @@
bX 5.1: OR}hðÀs·éû@
- ** :! ÌãÉÀs·éOR}hð^CvµÜ· **
+ ** :! ÌãÉÀs·éOR}hð^CvµÜ·B **
1. æÊÌźÉJ[\ªÚ®·éæ¤Aµêeµñ¾ : ð^CvµÜµå¤B
- ±êÅR}hª^CvÅ«élÉÈèÜ·B
+ ±êÅR}hC½ßª^CvÅ«élÉÈèÜ·B
2. ±±Å ! Æ¢¤¶(´Q)ð^CvµÜµå¤B
±êÅOVFR}hªÀsÅ«élÉÈèÜ·B
@@ -624,7 +625,7 @@
bX 5.2: »Ì¼Ìt@CÖ«Ý
- ** t@CÖÏXðÛ¶·éÉÍ :w t@C¼ Æ^CvµÜ· **
+ ** t@CÖÏXðÛ¶·éÉÍ :w t@C¼ Æ^CvµÜ·B **
1. fBNgÌêð¾é½ßÉ :!dir àµÍ :!ls Æ^CvµÜµå¤B
±Ì Æ <ENTER> ð·ÌÍùɲ¶mÅ·ËB
@@ -634,7 +635,7 @@
3. ÅÍ :w TEST Æ^CvµÜµå¤ (TEST ÍAIñ¾t@C¼Å·)B
4. ±êÉæèt@CS̪ TEST Æ¢¤¼OÅÛ¶³êÜ·B
- à¤êx :!dir àµÍ :!ls Æ^CvµÄmFµÄÝܵå¤B
+ à¤êx :!dir àµÍ :!ls Æ^CvµÄfBNgðmFµÄÝܵå¤B
NOTE: ±±Å Vim ðI¹µAt@C¼ TEST ƤÉN®·éÆAÛ¶µ½Ì
`
[gAÌ¡»ªÅ«ãªé͸ŷB
@@ -647,7 +648,7 @@
bX 5.3: I𵽫Ý
-** t@CÌÊuðÛ¶·éÉÍAv [VÆ :w FILENAME ð^CvµÜ·B **
+** t@CÌêðÛ¶·éÉÍAv [VÆ :w FILENAME ð^CvµÜ·B **
1. ±ÌsÉJ[\ðÚ®µÜ·B
@@ -660,20 +661,20 @@
<ENTER> ð·OÉ :'<,'>w TEST ÆÈÁĢ鱯ðmFµÄº³¢B
5. Vim Í TEST Æ¢¤t@CÉIð³ê½sð«Þŵå¤B
- !dir àµÍ !ls Å»êðmFµÜ·B
+ :!dir àµÍ :!ls Å»êðmFµÜ·B
»êÍíµÈ¢Å¨¢Äº³¢BÌbXÅgpµÜ·B
NOTE: v ð·ÆAVisual IðªnÜèÜ·BJ[\𮩷±ÆÅAIðÍÍð
å«à¬³àūܷB³çÉA»ÌIðÍÍÉεÄIy[^ðKp
- «Ü·Bá¦Î d ÍeLXgðíµÜ·B
+ ūܷBá¦Î d ÍeLXgðíµÜ·B
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 5.4: t@CÌæÆ¹
- ** t@CÌgð}ü·éÉÍ :r t@C¼ Æ^CvµÜ· **
+ ** t@CÌgð}ü·éÉÍ :r t@C¼ Æ^CvµÜ·B **
- 1. J[\ðȺÌsÉí¹Ü·B
+ 1. J[\ð±ÌsÌ·®ãÉí¹Ü·B
NOTE: Xebv 2 ÌÀsãAbX 5.3 ÌeLXgª»êÜ·BºÉºªÁı
ÌbXÉÚ®µÜµå¤B
@@ -682,19 +683,18 @@
±±Å¢¤ TEST Íg¤t@C̼O̱ÆÅ·B
ÇÝÜê½t@CÍAJ[\sÌºÉ èÜ·B
- 3. æñ¾t@CðmFµÄÝܵå¤BJ[\ðß·ÆAbX5.3 Ì
+ 3. æèñ¾t@CðmFµÄÝܵå¤BJ[\ðß·ÆAbX5.3 Ì
IWiÆt@CÉæéàÌÌ2ª 鱯ªí©èÜ·B
-NOTE: OR}hÌoÍðÇÝÞ±ÆàoÜ·Bá¦ÎA
+NOTE: OR}hÌoÍðÇÝÞ±ÆàūܷBá¦ÎA
:r !ls Í ls R}hÌoÍðJ[\ȺÉÇÝÝÜ·B
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 5 vñ
- 1. :!command ÉæÁÄ OR}hðÀsµÜ·B
+ 1. :!command ÉæÁÄ OR}hðÀs·éB
æg¤á:
(Windows) (Unix)
@@ -717,13 +717,14 @@
bX 6.1: I[vR}h
- ** o ð^Cv·éÆAJ[\̺ÌsªJ«A}ü[hÉüèÜ· **
+ ** o ð^Cv·éÆAJ[\̺ÌsªJ«A}ü[hÉüèÜ·B **
1. ÈºÌ ---> Ʀ³ê½ÅÌsÉJ[\ðÚ®µÜµå¤B
2. o (¬¶) ð^CvµÄAJ[\̺ÌsðJ«A}ü[hÉüèÜ·B
- 3. ³çÉ}ü[hðI¹·é×É <ESC> ð^CvµÜ·B
+ 3. ¢Â©¶ð^CvµÄ©çA}ü[hðI¹·é×É <ESC> ð
+ ^CvµÜ·B
---> o ð^Cv·éÆJ[\ÍJ¢½sÖÚ®µ}ü[hÉüèÜ·B
@@ -735,12 +736,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 6.2: ÇÁR}h
- ** J[\ÌÌÊu©çeLXgðÇÁ·éÉÍ a Æ^CvµÜ· **
+ ** J[\ÌÌÊu©çeLXgðÇÁ·éÉÍ a Æ^CvµÜ·B **
1. J[\ð ---> Ŧ³ê½ÅÌsÖÚ®µÜµå¤B
@@ -763,7 +763,7 @@
bX 6.3: »Ì¼Ìu·û@
- ** 1¶Èãðu«·¦éÉÍå¶Ì R Æ^CvµÜµå¤ **
+ ** 1¶Èãðu«·¦éÉÍå¶Ì R Æ^CvµÜµå¤B **
1. ÈºÌ ---> Ʀ³ê½sÉJ[\ðÚ®µÜ·BÅÌ xxx ÌæªÉÚ®µ
Ü·B
@@ -781,12 +781,11 @@
NOTE: u·[hÍ}ü[hÉĢܷªASÄÌ^Cv³ê½¶Íù¶Ì¶
ðíµÜ·B
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 6.4: eLXgÌRs[Æy[Xg
- ** eLXgÌRs[ÉÍIy[^ y ðAy[XgÉÍ p ðg¢Ü· **
+ ** eLXgÌRs[ÉÍIy[^ y ðAy[XgÉÍ p ðg¢Ü·B **
1. ---> Ʀ³ê½sÖÚ®µAJ[\ð "a)" ÌãÉu¢Ä¨«Ü·B
@@ -804,12 +803,13 @@
---> a) this is the first item.
b)
- NOTE: Pêð1 yank ·éÌÉ y ðIy[^ÆµÄ yw Æ·é±ÆàoÜ·B
+ NOTE: y ðIy[^ƵÄg¤±ÆàūܷByw ÍPêð1 yank µÜ·B
+ yy Ísð1 yank µAp Å»Ìsð put µÜ·B
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 6.5: IvVÌÝè
- ** õâu·ÌÛÉå¶/¬¶ð³·éÉÍAIvVðÝèµÜ· **
+ ** õâu·ÌÛÉå¶/¬¶ð³·éÉÍAIvVðÝèµÜ·B **
1. ÌlÉü굀 'ignore' ðõµÜµå¤: /ignore <ENTER>
n ðµÄ½x©õðJèԵܷB
@@ -826,7 +826,7 @@
6. 嶬¶ÌæÊð³øÉ·éÉÍÌlÉü͵ܷ: :set noic
NOTE: }b`̲\¦ðâßéÉÍÌlÉü͵ܷ: :nohlsearch
-NOTE: 1ÂÌõR}h¾¯å¶¬¶ÌæÊðâß½¢ÈçÎAt[YÉ \c
+NOTE: 1ÂÌõR}h¾¯å¶¬¶ÌæÊðâß½¢ÈçÎAêåàÅ \c
ðgpµÜ·: /ignore\c <ENTER>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 6 vñ
@@ -835,13 +835,13 @@
O (å¶) ð^Cv·éÆJ[\ÌãÌsÅ}ü[hÉÈéB
2. J[\ã̶̩çeLXgðÇÁ·éÉÍ a Æ^Cv·éB
- sÉ©®ÅeLXgð}ü·éÉÍå¶ A ð^Cv·éB
+ sÉeLXgð}ü·éÉÍå¶ A ð^Cv·éB
- 3. e R}hÍPêÌI[J[\ðÚ®·éB
+ 3. e R}hÍPêÌI[ÉJ[\ðÚ®·éB
4. y Iy[^ÍeLXgð yank (Rs[)µAp Í»êð put (y[Xg)·éB
- 5. å¶Ì R ð^Cv·éÆu·[hÉüèA<ESC>ð·Æ²¯éB
+ 5. å¶Ì R ð^Cv·éÆu·[hÉüèA<ESC> ð·Æ²¯éB
6. ":set xxx" Æ^Cv·éÆIvV "xxx" ªÝè³êéB
'ic' 'ignorecase' õÉ嶬¶ÌæÊµÈ¢
@@ -849,7 +849,7 @@
'hls' 'hlsearch' }b`·é·×Äð²\¦·é
·¢ûAZ¢ûAÇ¿çÌIvV¼ÅàgpūܷB
- 7. IvVð³øÉ·éÉÍ "no" ðt^µÜ·: :set noic
+ 7. IvVð³øÉ·éÉÍ "no" ðt^·é: :set noic
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bX 7.1: ICwvR}h
@@ -883,15 +883,15 @@
gpsÂÆÈÁĢܷBæè½ÌÁ¥ðg¢Í¶ßéÉÍ "vimrc" t@C
ð쬵ܷB
- 1. "vimrc" t@CÌÒWðJn·éB±êÍVXeÉ˶µÜ·B
- :edit ~/.vimrc UNIX ü¯
- :edit ~/_vimrc Windows ü¯
+ 1. "vimrc" t@CÌÒWðJnµÜ·B±êÍVXeÉ˶µÜ·B
+ :e ~/.vimrc UNIX ü¯
+ :e ~/_vimrc Windows ü¯
2. ±±ÅTvÌ "vimrc" ðÇÝÝÜ·B
- :read $VIMRUNTIME/vimrc_example.vim
+ :r $VIMRUNTIME/vimrc_example.vim
3. ÈºÌæ¤Ét@CÖ«ÝÜ·B
- :write
+ :w
ñ Vim ðN®·éÆAFï\¶ªg¦éæ¤ÉÈéŵå¤B
±Ì "vimrc" t@CÖA¨DÝÌÝèðÇÁ·é±ÆªÅ«Ü·B
@@ -907,7 +907,7 @@
2. »ÝÌfBNgÉÝét@Cð :!ls © :!dir ÅmFµÜ·B
- 3. R}hÌJnð^CvµÜ·: :e
+ 3. R}hÌæªð^CvµÜ·: :e
4. CTRL-D ð·Æ Vim Í "e" ©çnÜéR}hÌêð\¦µÜ·B
diff --git a/runtime/tutor/tutor.ja.utf-8 b/runtime/tutor/tutor.ja.utf-8
index 8ba9622..2632233 100644
--- a/runtime/tutor/tutor.ja.utf-8
+++ b/runtime/tutor/tutor.ja.utf-8
@@ -8,7 +8,7 @@
になっています。
チュートリアルを完了するのに必要な時間は、覚えたコマンドを試すのにどれだ
- け時間を使うのかにもよりますが、およそ25から30分です。
+ け時間を使うのかにもよりますが、およそ30分です。
ATTENTION:
以下の練習用コマンドにはこの文章を変更するものもあります。練習を始める前
@@ -24,7 +24,7 @@
レッスン 1.1: カーソルの移動
- ** カーソルを移動するには、示される様に h,j,k,l を押します **
+ ** カーソルを移動するには、示される様に h,j,k,l を押します。 **
^
k ヒント: h キーは左方向に移動します。
< h l > l キーは右方向に移動します。
@@ -65,11 +65,12 @@
5. 1.3までカーソルを移動させましょう。
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 1.3: テキスト編集 - 削除
- ** ノーマルモードにてカーソルの下の文字を削除するには x を押します **
+ ** ノーマルモードにてカーソルの下の文字を削除するには x を押します。 **
1. 以下の ---> と示された行にカーソルを移動しましょう。
@@ -87,12 +88,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 1.4: テキスト編集 - 挿入
- ** ノーマルモードにてテキストを挿入するには i を押します **
+ ** ノーマルモードにてテキストを挿入するには i を押します。 **
1. 以下の ---> と示された最初の行にカーソルを移動しましょう。
@@ -115,10 +115,10 @@
レッスン 1.5: テキスト編集 - 追加
- ** テキストを追加するには A を押しましょう **
+ ** テキストを追加するには A を押しましょう。 **
1. 以下の ---> と示された最初の行にカーソルを移動しましょう。
- カーソルがその文字上にあってもかまいません。
+ カーソルがその行のどの文字上にあってもかまいません。
2. 追加が必要な場所で A をタイプしましょう。
@@ -137,18 +137,17 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 1.6: ファイルの編集
-
- ** ファイルを保存して終了するには :wq とタイプします **
+ ** ファイルを保存して終了するには :wq とタイプします。 **
!! NOTE: 以下のステップを実行する前に、まず全体を読んでください!!
- 1. レッスン 1.2 でやったように :q! をタイプして、このチュートリアルを終了
- します。あるいは、別の端末がある場合はそこで以下の内容を行ってもかまい
- ません。
+ 1. 別の端末がある場合はそこで以下の内容を行ってください。そうでなければ、
+ レッスン 1.2 でやったように :q! をタイプして、このチュートリアルを終了
+ します。
- 2. シェルプロンプトでこのコマンドをタイプします: vim tutor <ENTER>
- 'vim' が Vim エディタを起動するコマンド、'tutor' は編集したいファイルの
- 名前です。変更してもよいファイルを使いましょう。
+ 2. シェルプロンプトでこのコマンドをタイプします: vim file.txt <ENTER>
+ 'vim' が Vim エディタを起動するコマンド、'file.txt' は編集したいファイル
+ の名前です。変更できるファイルの名前を使いましょう。
3. 前のレッスンで学んだように、テキストを挿入、削除します。
@@ -186,9 +185,9 @@
レッスン 2.1: 削除コマンド
- ** 単語の末尾までを削除するには dw とタイプしましょう **
+ ** 単語の末尾までを削除するには dw とタイプしましょう。 **
- 1. ノーマルモードであることを確認するために <ESC> を押しましょう。
+ 1. 確実にノーマルモードにするため <ESC> を押しましょう。
2. 以下の ---> と示された行にカーソルを移動しましょう。
@@ -196,22 +195,22 @@
4. 単語を削除するために dw とタイプしましょう。
- NOTE: タイプすると、dw という文字がスクリーンの最下行に現われます。
- タイプを間違ってしまった時には <ESC> を押してやり直しましょう。
+ NOTE: d をタイプすると、その文字がスクリーンの最下行に現われます。Vim は
+ あなたが w をタイプするのを待っています。もし d 以外の文字が表示された
+ 時は何か間違っています。 <ESC> を押してやり直しましょう。
---> この 文 紙 には いくつかの たのしい 必要のない 単語 が 含まれて います。
5. 3 から 4 までを文が正しくなるまで繰り返し、レッスン 2.2 へ進みましょう。
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 2.2: その他の削除コマンド
- ** 行の末尾までを削除するには d$ とタイプしましょう **
+ ** 行の末尾までを削除するには d$ とタイプしましょう。 **
- 1. ノーマルモードであることを確認するのに <ESC> を押しましょう。
+ 1. 確実にノーマルモードにするため <ESC> を押しましょう。
2. 以下の ---> と示された行にカーソルを移動しましょう。
@@ -232,7 +231,7 @@
レッスン 2.3: オペレータとモーション
- 多くのコマンドはオペレータとモーションからテキストに変更を加えます。
+ テキストに変更を加える多くのコマンドはオペレータとモーションからなります。
削除コマンド d のオペレータは次の様になっています:
d モーション
@@ -248,7 +247,7 @@
つまり de とタイプすると、カーソル位置から単語の終わりまでを削除します。
-NOTE: 冒険したい人は、ノーマルモードにてコマンドなしにモーションを押して
+NOTE: 冒険したい人は、ノーマルモードにてオペレータなしにモーションを押して
みましょう。カーソルが目的語一覧で示される位置に移動するはずです。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -259,7 +258,7 @@
1. 以下の ---> と示された行の先頭にカーソルを移動します。
- 2. 2w をタイプして単語2つ分前に移動します。
+ 2. 2w をタイプして単語2つ分先に移動します。
3. 3e をタイプして3つ目の単語の終端に移動します。
@@ -284,24 +283,24 @@
より多くの削除が行えます:
d 数値 モーション
- 1. ---> と示された行の行頭部分にカーソルを移動しましょう。
+ 1. ---> と示された行の最初の大文字の単語にカーソルを移動しましょう。
- 2. UPPER CASE の単語2つを d2w とタイプして削除します。
+ 2. 大文字の単語2つを d2w とタイプして削除します。
- 3. UPPER CASE という連続した単語を、1つのコマンドと異なるカウントを指定し、
+ 3. 連続した大文字の単語を、異なるカウントを指定した1つのコマンドで削除し、
ステップ 1 と 2 を繰り返します。
---> このABC DE行のFGHI JK LMN OP単語はQ RS TUV綺麗になった。
-NOTE: オペレータ d とモーションの間にカウントを使った場合、オペレータのない
- 場合のモーションのように動作します。
- 例: 3dw と d3w は同等で、3w を削除します。
+
+
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 2.6: 行の操作
- ** 行全体を削除するには dd とタイプします **
+ ** 行全体を削除するには dd とタイプします。 **
行全体を削除する頻度が多いので、Viのデザイナーは行の削除を d の2回タイプと
いう簡単なものに決めました。
@@ -319,24 +318,25 @@
---> 6) 砂糖は甘い
---> 7) オマエモナー
+2回タイプで1行に対して作用させる方法は以下で述べるオペレータでも動作します。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 2.7: やり直しコマンド
- ** 最後のコマンドを取り消すには u を押します。U は行全体の取消です。 **
+ ** 最後のコマンドを取り消すには u を押します。U は行全体の取り消しです。 **
1. 以下の ---> と示された行にカーソルを移動し、最初の間違いにカーソル
を移動しましょう。
- 2. x をタイプしていらない先頭の文字を削除しましょう。
+ 2. x をタイプして最初のいらない文字を削除しましょう。
3. さぁ、u をタイプして最後に実行したコマンドを取り消しましょう。
- 4. 今度は、x を使用して誤りを全て修正しましょう。
+ 4. 今度は、x を使用して行内の誤りを全て修正しましょう。
5. 大文字の U をタイプして、行を元の状態に戻しましょう。
- 6. u をタイプして直前の U コマンドを取消しましょう。
+ 6. u をタイプして直前の U コマンドを取り消しましょう。
7. ではコマンドを再実行するのに CTRL-R (CTRL を押したまま R を打つ)を数回
- タイプしてみましょう(取消の取消)。
+ タイプしてみましょう(取り消しの取り消し)。
----> このの行のの間違いを修正々し、後でそれらの修正をを取消しまますす。
+---> このの行のの間違いを修正々し、後でそれらの修正をを取り消しまますす。
8. これはとても便利なコマンドです。さぁレッスン 2 要約へ進みましょう。
@@ -347,45 +347,47 @@
レッスン 2 要約
- 1. カーソル位置から単語の末尾までを削除するには dw とタイプします。
- 2. カーソル位置から行の末尾までを削除するには d$ とタイプします。
- 3. 行全体を削除するには dd とタイプします。
+ 1. カーソル位置から次の単語までを削除するには dw とタイプします。
+ 2. カーソル位置から単語の末尾までを削除するには de とタイプします。
+ 3. カーソル位置から行の末尾までを削除するには d$ とタイプします。
+ 4. 行全体を削除するには dd とタイプします。
- 4. モーションを繰り返すには数値を付与します: 2w
- 5. 変更に用いるコマンドの形式は
+ 5. モーションを繰り返すには数値を付与します: 2w
+ 6. 変更に用いるコマンドの形式は
オペレータ [数値] モーション
-
それぞれ:
オペレータ - 削除 d の類で何をするか。
- 数値 - そのコマンドを何回繰り返すか。
- モーション - w (単語)や $ (行末)などの類で、テキストの何に対して働きか
- けるか。
+ [数値] - そのコマンドを何回繰り返すか。
+ モーション - w (単語)や e (単語末尾)、$ (行末)などの類で、テキストの
+ 何に対して働きかけるか。
- 6. 行の先頭に移動するにはゼロを使用します: 0
+ 7. 行の先頭に移動するにはゼロを使用します: 0
- 7. 前回の動作を取消す: u (小文字 u)
- 行全体の変更を取消す: U (大文字 U)
- 取消しの取消し: CTRL-R
+ 8. 前回の動作を取り消す: u (小文字 u)
+ 行全体の変更を取り消す: U (大文字 U)
+ 取り消しの取り消し: CTRL-R
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 3.1: 貼り付けコマンド
- ** 最後に削除された行をカーソルの後に貼り付けるには p をタイプします **
+ ** 最後に削除された行をカーソルの後に貼り付けるには p をタイプします。 **
- 1. 以下の段落の最初の行にカーソルを移動しましょう。
+ 1. ---> と示された以下の最初の行にカーソルを移動しましょう。
- 2. dd とタイプして行を削除し、Vim のバッファに格納しましょう。
+ 2. dd とタイプして行を削除し、Vim のレジスタに格納しましょう。
- 3. 削除した行が本来あるべき位置の上の行まで、カーソルを移動させましょう。
+ 3. 削除した行が本来あるべき位置の上の行である c) 行まで、カーソルを移動させ
+ ましょう。
- 4. ノーマルモードで p をタイプして格納した行を画面に戻します。
+ 4. ノーマルモードで p をタイプして格納した行をカーソルの下に戻します。
5. 順番が正しくなる様にステップ 2 から 4 を繰り返しましょう。
- d) 貴方も学ぶことができる?
- b) スミレは青い、
- c) 知恵とは学ぶもの、
- a) バラは赤い、
+---> d) 貴方も学ぶことができる?
+---> b) スミレは青い、
+---> c) 知恵とは学ぶもの、
+---> a) バラは赤い、
@@ -393,7 +395,7 @@
レッスン 3.2: 置き換えコマンド
- ** カーソルの下の文字を置き換えるには r をタイプします **
+ ** カーソルの下の文字を x に置き換えるには rx をタイプします。 **
1. 以下の ---> と示された最初の行にカーソルを移動しましょう。
@@ -416,38 +418,38 @@
レッスン 3.3: 変更コマンド
- ** 単語の一部、もしくは全体を変更するには cw とタイプします **
+ ** 単語の末尾までを変更するには ce とタイプします。 **
1. 以下の ---> と示された最初の行にカーソルを移動しましょう。
2. lubw の u の位置にカーソルを移動しましょう。
- 3. cw とタイプし、正しい単語をタイプしましょう(この場合 'ine' とタイプ)。
+ 3. ce とタイプし、正しい単語をタイプしましょう(この場合 'ine' とタイプ)。
- 4. 次の間違い(変更すべき文字の先頭)に移動するために <ESC> をタイプします。
+ 4. <ESC> をタイプしてから次の間違い(変更すべき文字の先頭)に移動します。
5. 最初の行が次の行の様になるまでステップ 3 と 4 を繰り返します。
---> This lubw has a few wptfd that mrrf changing usf the change operator.
---> This line has a few words that need changing using the change operator.
-cw は単語を変更するだけでなく、挿入も行えることに注意しましょう。
-
+ce は単語を削除した後、挿入モードに入ることに注意しましょう。
+cc は同じことを行全体に対して行います。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 3.4: c を使用したその他の変更
- ** 変更コマンドは、削除コマンドと同じ様にオブジェクトを使用します **
+ ** 変更オペレータは、削除と同じ様にモーションを使用します。 **
- 1. 変更コマンドは、削除コマンドと同じような動作をします。その形式は
+ 1. 変更オペレータは、削除と同じような動作をします。その形式は
c [数値] モーション
- 2. オブジェクトも同じで、w は単語、 $ は行末などといったものです。
+ 2. モーションも同じで、w は単語、 $ は行末などといったものです。
- 3. 以下の ---> と示された行にカーソルを移動しましょう。
+ 3. 以下の ---> と示された最初の行にカーソルを移動しましょう。
4. 最初の間違いへカーソルを移動しましょう。
@@ -470,7 +472,7 @@
文字をタイプします。
3. 変更コマンドではカーソル位置から特定のモーションで指定される終端までを変
- 更することが可能です。例えば cw ならばカーソル位置から単語の終わりまで、
+ 更することが可能です。例えば ce ならばカーソル位置から単語の終わりまで、
c$ ならば行の終わりまでを変更します。
4. 変更コマンドの形式は
@@ -485,7 +487,7 @@
レッスン 4.1: 位置とファイルの情報
** ファイル内での位置とファイルの状態を表示するには CTRL-G をタイプします。
- ファイル内のある行に移動するには G をタイプします **
+ ファイル内のある行に移動するには G をタイプします。 **
NOTE: ステップを実行する前に、このレッスン全てに目を通しましょう!!
@@ -496,7 +498,7 @@
NOTE: 画面の右下隅にカーソルの位置が表示されているかもしれません。これは
'ruler' オプション(:help 'ruler' を参照)を設定することで表示されます。
- 2. 最下行に移動するために G をタイプしましょう。
+ 2. ファイルの最下行に移動するために G をタイプしましょう。
ファイルの先頭に移動するには gg とタイプしましょう。
3. 先ほどの行の番号をタイプし G をタイプしましょう。最初に CTRL-G を押した行
@@ -508,19 +510,19 @@
レッスン 4.2: 検索コマンド
- ** 語句を検索するには / と、前方検索する語句をタイプします。**
+ ** 語句を検索するには / と、前方検索する語句をタイプします。 **
1. ノーマルモードで / という文字をタイプします。画面一番下に : コマンドと
同じ様に / が現れることに気づくでしょう。
2. では、'errroor' <ENTER> とタイプしましょう。これが検索したい単語です。
- 3. 同じ語をもう一度検索するときは 単に n をタイプします。
+ 3. 同じ語句をもう一度検索するときは 単に n をタイプします。
逆方向に語句を検索するときは N をタイプします。
4. 逆方向に語句を検索する場合は、/ の代わりに ? コマンドを使用します。
- 5. 元の場所に戻るには CTRL-O (Ctrl を押し続けながら o 文字タイプ)をタイプし
+ 5. 元の場所に戻るには CTRL-O (Ctrl を押し続けながら文字 o をタイプ)をタイプし
ます。さらに戻るにはこれを繰り返します。CTRL-I は前方向です。
---> "errroor" は error とスペルが違います; errroor はいわゆる error です。
@@ -531,7 +533,7 @@
レッスン 4.3: 対応する括弧を検索
- ** 対応する ),] や } を検索するには % をタイプします **
+ ** 対応する ),] や } を検索するには % をタイプします。 **
1. 下の ---> で示された行で (,[ か { のどれかにカーソルを移動しましょう。
@@ -554,7 +556,7 @@
レッスン 4.4: 間違いを変更する方法
- ** 'old' を 'new' に置換するには :s/old/new/g とタイプします **
+ ** 'old' を 'new' に置換するには :s/old/new/g とタイプします。 **
1. 以下の ---> と示された行にカーソルを移動しましょう。
@@ -567,9 +569,8 @@
---> thee best time to see thee flowers is in thee spring.
- 4. 複数行から見つかる文字を変更するには
- :#,#s/old/new/g #,# には置き換える範囲の開始と終了の行番号を指定しま
- す。
+ 4. 複数行から見つかる文字の全ての箇所を変更するには
+ :#,#s/old/new/g #,# には置き換える範囲の開始と終了の行番号を指定する。
:%s/old/new/g ファイル全体で見つかるものに対して変更する。
:%s/old/new/gc ファイル全体で見つかるものに対して、1つ1つ確認をとりな
がら変更する。
@@ -593,7 +594,7 @@
4. 現在行の最初の old を new に置換する。 :s/old/new
現在行の全ての old を new に置換する。 :s/old/new/g
- 2つの # 間で語句を置換する。 :#,#s/old/new/g
+ 2つの # 行の間で語句を置換する。 :#,#s/old/new/g
ファイルの中の全ての検索語句を置換する。 :%s/old/new/g
'c' を加えると置換の度に確認を求める。 :%s/old/new/gc
@@ -601,10 +602,10 @@
レッスン 5.1: 外部コマンドを実行する方法
- ** :! の後に実行する外部コマンドをタイプします **
+ ** :! の後に実行する外部コマンドをタイプします。 **
1. 画面の最下部にカーソルが移動するよう、慣れ親しんだ : をタイプしましょう。
- これでコマンドがタイプできる様になります。
+ これでコマンドライン命令がタイプできる様になります。
2. ここで ! という文字(感嘆符)をタイプしましょう。
これで外部シェルコマンドが実行できる様になります。
@@ -624,7 +625,7 @@
レッスン 5.2: その他のファイルへ書き込み
- ** ファイルへ変更を保存するには :w ファイル名 とタイプします **
+ ** ファイルへ変更を保存するには :w ファイル名 とタイプします。 **
1. ディレクトリの一覧を得るために :!dir もしくは :!ls とタイプしましょう。
このあと <ENTER> を押すのは既にご存知ですね。
@@ -634,7 +635,7 @@
3. では :w TEST とタイプしましょう (TEST は、選んだファイル名です)。
4. これによりファイル全体が TEST という名前で保存されます。
- もう一度 :!dir もしくは :!ls とタイプして確認してみましょう。
+ もう一度 :!dir もしくは :!ls とタイプしてディレクトリを確認してみましょう。
NOTE: ここで Vim を終了し、ファイル名 TEST と共に起動すると、保存した時の
チュートリアルの複製ができ上がるはずです。
@@ -647,7 +648,7 @@
レッスン 5.3: 選択した書き込み
-** ファイルの位置を保存するには、v モーションと :w FILENAME をタイプします。 **
+** ファイルの一部を保存するには、v モーションと :w FILENAME をタイプします。 **
1. この行にカーソルを移動します。
@@ -660,20 +661,20 @@
<ENTER> を押す前に :'<,'>w TEST となっていることを確認して下さい。
5. Vim は TEST というファイルに選択された行を書き込むでしょう。
- !dir もしくは !ls でそれを確認します。
+ :!dir もしくは :!ls でそれを確認します。
それは削除しないでおいて下さい。次のレッスンで使用します。
NOTE: v を押すと、Visual 選択が始まります。カーソルを動かすことで、選択範囲を
大きくも小さくもできます。さらに、その選択範囲に対してオペレータを適用
- きます。例えば d はテキストを削除します。
+ できます。例えば d はテキストを削除します。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 5.4: ファイルの取込と合併
- ** ファイルの中身を挿入するには :r ファイル名 とタイプします **
+ ** ファイルの中身を挿入するには :r ファイル名 とタイプします。 **
- 1. カーソルを以下の行に合わせます。
+ 1. カーソルをこの行のすぐ上に合わせます。
NOTE: ステップ 2 の実行後、レッスン 5.3 のテキストが現れます。下に下がってこ
のレッスンに移動しましょう。
@@ -682,19 +683,18 @@
ここでいう TEST は使うファイルの名前のことです。
読み込まれたファイルは、カーソル行の下にあります。
- 3. 取込んだファイルを確認してみましょう。カーソルを戻すと、レッスン5.3 の
+ 3. 取り込んだファイルを確認してみましょう。カーソルを戻すと、レッスン5.3 の
オリジナルとファイルによるものの2つがあることがわかります。
-NOTE: 外部コマンドの出力を読み込むことも出来ます。例えば、
+NOTE: 外部コマンドの出力を読み込むこともできます。例えば、
:r !ls は ls コマンドの出力をカーソル以下に読み込みます。
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 5 要約
- 1. :!command によって 外部コマンドを実行します。
+ 1. :!command によって 外部コマンドを実行する。
よく使う例:
(Windows) (Unix)
@@ -717,13 +717,14 @@
レッスン 6.1: オープンコマンド
- ** o をタイプすると、カーソルの下の行が開き、挿入モードに入ります **
+ ** o をタイプすると、カーソルの下の行が開き、挿入モードに入ります。 **
1. 以下の ---> と示された最初の行にカーソルを移動しましょう。
2. o (小文字) をタイプして、カーソルの下の行を開き、挿入モードに入ります。
- 3. さらに挿入モードを終了する為に <ESC> をタイプします。
+ 3. いくつか文字をタイプしてから、挿入モードを終了する為に <ESC> を
+ タイプします。
---> o をタイプするとカーソルは開いた行へ移動し挿入モードに入ります。
@@ -735,12 +736,11 @@
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 6.2: 追加コマンド
- ** カーソルの次の位置からテキストを追加するには a とタイプします **
+ ** カーソルの次の位置からテキストを追加するには a とタイプします。 **
1. カーソルを ---> で示された最初の行へ移動しましょう。
@@ -763,7 +763,7 @@
レッスン 6.3: その他の置換方法
- ** 1文字以上を置き換えるには大文字の R とタイプしましょう **
+ ** 1文字以上を置き換えるには大文字の R とタイプしましょう。 **
1. 以下の ---> と示された行にカーソルを移動します。最初の xxx の先頭に移動し
ます。
@@ -781,12 +781,11 @@
NOTE: 置換モードは挿入モードに似ていますが、全てのタイプされた文字は既存の文字
を削除します。
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 6.4: テキストのコピーとペースト
- ** テキストのコピーにはオペレータ y を、ペーストには p を使います **
+ ** テキストのコピーにはオペレータ y を、ペーストには p を使います。 **
1. ---> と示された行へ移動し、カーソルを "a)" の後に置いておきます。
@@ -804,12 +803,13 @@
---> a) this is the first item.
b)
- NOTE: 単語を1つ yank するのに y をオペレータとして yw とすることも出来ます。
+ NOTE: y をオペレータとして使うこともできます。yw は単語を1つ yank します。
+ yy は行を1つ yank し、p でその行を put します。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 6.5: オプションの設定
- ** 検索や置換の際に大文字/小文字を無視するには、オプションを設定します **
+ ** 検索や置換の際に大文字/小文字を無視するには、オプションを設定します。 **
1. 次の様に入力して 'ignore' を検索しましょう: /ignore <ENTER>
n を押して何度か検索を繰り返します。
@@ -826,7 +826,7 @@
6. 大文字小文字の区別を無効にするには次の様に入力します: :set noic
NOTE: マッチの強調表示をやめるには次の様に入力します: :nohlsearch
-NOTE: 1つの検索コマンドだけ大文字小文字の区別をやめたいならば、フレーズに \c
+NOTE: 1つの検索コマンドだけ大文字小文字の区別をやめたいならば、語句内で \c
を使用します: /ignore\c <ENTER>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 6 要約
@@ -835,13 +835,13 @@
O (大文字) をタイプするとカーソルの上の行で挿入モードになる。
2. カーソル上の文字の次からテキストを追加するには a とタイプする。
- 行末に自動でテキストを挿入するには大文字 A をタイプする。
+ 行末にテキストを挿入するには大文字 A をタイプする。
- 3. e コマンドは単語の終端部カーソルを移動する。
+ 3. e コマンドは単語の終端にカーソルを移動する。
4. y オペレータはテキストを yank (コピー)し、p はそれを put (ペースト)する。
- 5. 大文字の R をタイプすると置換モードに入り、<ESC>を押すと抜ける。
+ 5. 大文字の R をタイプすると置換モードに入り、<ESC> を押すと抜ける。
6. ":set xxx" とタイプするとオプション "xxx" が設定される。
'ic' 'ignorecase' 検索時に大文字小文字の区別しない
@@ -849,7 +849,7 @@
'hls' 'hlsearch' マッチするすべてを強調表示する
長い方、短い方、どちらのオプション名でも使用できます。
- 7. オプションを無効にするには "no" を付与します: :set noic
+ 7. オプションを無効にするには "no" を付与する: :set noic
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
レッスン 7.1: オンラインヘルプコマンド
@@ -883,15 +883,15 @@
使用不可となっています。より多くの特徴を使いはじめるには "vimrc" ファイル
を作成します。
- 1. "vimrc" ファイルの編集を開始する。これはシステムに依存します。
- :edit ~/.vimrc UNIX 向け
- :edit ~/_vimrc Windows 向け
+ 1. "vimrc" ファイルの編集を開始します。これはシステムに依存します。
+ :e ~/.vimrc UNIX 向け
+ :e ~/_vimrc Windows 向け
2. ここでサンプルの "vimrc" を読み込みます。
- :read $VIMRUNTIME/vimrc_example.vim
+ :r $VIMRUNTIME/vimrc_example.vim
3. 以下のようにファイルへ書き込みます。
- :write
+ :w
次回 Vim を起動すると、色づけ構文が使えるようになるでしょう。
この "vimrc" ファイルへ、お好みの設定を追加することができます。
@@ -907,7 +907,7 @@
2. 現在のディレクトリに在るファイルを :!ls か :!dir で確認します。
- 3. コマンドの開始をタイプします: :e
+ 3. コマンドの先頭をタイプします: :e
4. CTRL-D を押すと Vim は "e" から始まるコマンドの一覧を表示します。
diff --git a/src/po/it.po b/src/po/it.po
index c7b3497..648640f 100644
--- a/src/po/it.po
+++ b/src/po/it.po
@@ -4,7 +4,7 @@
# Vlad Sandrini <vlad.gently@gmail.com>, 2002
# Luciano Montanaro <mikelima@cirulla.net>, 2006
#
-# Ogni commento è benvenuto...
+# Ogni commento è benvenuto...
# Every remark is very welcome...
#
# Translation done under Linux and using an Italian keyboard.
@@ -15,13 +15,13 @@
msgstr ""
"Project-Id-Version: vim 8.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-25 10:24+0200\n"
-"PO-Revision-Date: 2021-10-25 10:31+0100\n"
+"POT-Creation-Date: 2022-01-16 09:48+0100\n"
+"PO-Revision-Date: 2022-01-16 12:45+0100\n"
"Last-Translator: Antonio Colombo <azc100@gmail.com>\n"
"Language-Team: Italian\n"
"Language: it\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -42,50 +42,14 @@
"[chiamate] totale re/malloc() %lu, totale free() %lu\n"
"\n"
-msgid "E341: Internal error: lalloc(0, )"
-msgstr "E341: Errore interno: lalloc(0, )"
-
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: Non c'è più memoria! (stavo allocando %lu byte)"
-
-msgid "E163: There is only one file to edit"
-msgstr "E163: C'è un solo file da elaborare"
-
-msgid "E164: Cannot go before first file"
-msgstr "E164: Non posso andare davanti al primo file"
-
-msgid "E165: Cannot go beyond last file"
-msgstr "E165: Non posso oltrepassare l'ultimo file"
-
-msgid "E610: No argument to delete"
-msgstr "E610: Nessun argomento da eliminare"
-
-msgid "E249: window layout changed unexpectedly"
-msgstr "E249: la struttura della finestra è inaspettatamente cambiata"
-
msgid "--Deleted--"
msgstr "--Cancellato--"
msgid "auto-removing autocommand: %s <buffer=%d>"
msgstr "auto-rimozione dell'autocomando: %s <buffer=%d>"
-msgid "E367: No such group: \"%s\""
-msgstr "E367: Gruppo inesistente: \"%s\""
-
-msgid "E936: Cannot delete the current group"
-msgstr "E936: Non posso cancellare il gruppo corrente"
-
msgid "W19: Deleting augroup that is still in use"
-msgstr "W19: Cancello augroup, ma è ancora in uso"
-
-msgid "E215: Illegal character after *: %s"
-msgstr "E215: Carattere non ammesso dopo *: %s"
-
-msgid "E216: No such event: %s"
-msgstr "E216: Evento inesistente: %s"
-
-msgid "E216: No such group or event: %s"
-msgstr "E216: Evento o gruppo inesistente: %s"
+msgstr "W19: Cancello augroup, ma è ancora in uso"
msgid ""
"\n"
@@ -94,18 +58,9 @@
"\n"
"--- Autocomandi ---"
-msgid "E680: <buffer=%d>: invalid buffer number "
-msgstr "E680: <buffer=%d>: numero buffer non valido"
-
-msgid "E217: Can't execute autocommands for ALL events"
-msgstr "E217: Non posso eseguire autocomandi per TUTTI gli eventi"
-
msgid "No matching autocommands: %s"
msgstr "Nessun autocomando corrispondente: %s"
-msgid "E218: autocommand nesting too deep"
-msgstr "E218: nidificazione dell'autocomando troppo estesa"
-
msgid "%s Autocommands for \"%s\""
msgstr "%s Autocomandi per \"%s\""
@@ -115,23 +70,11 @@
msgid "autocommand %s"
msgstr "autocomando %s"
-msgid "E972: Blob value does not have the right number of bytes"
-msgstr "E972: Il valore del Blob non ha il numero giusto di byte"
+msgid "add() argument"
+msgstr "argomento di add()"
-msgid "E831: bf_key_init() called with empty password"
-msgstr "E831: chiamata a bf_key_init() con password nulla"
-
-msgid "E820: sizeof(uint32_t) != 4"
-msgstr "E820: sizeof(uint32_t) != 4"
-
-msgid "E817: Blowfish big/little endian use wrong"
-msgstr "E817: uso errato di big/little endian in Blowfish"
-
-msgid "E818: sha256 test failed"
-msgstr "E818: test sha256 fallito"
-
-msgid "E819: Blowfish test failed"
-msgstr "E819: test Blowfish fallito"
+msgid "insert() argument"
+msgstr "argomento di insert()"
msgid "[Location List]"
msgstr "[Lista Locazioni]"
@@ -139,49 +82,6 @@
msgid "[Quickfix List]"
msgstr "[Lista Quickfix]"
-msgid "E855: Autocommands caused command to abort"
-msgstr "E855: Comando non completato a causa di autocomandi"
-
-msgid "E82: Cannot allocate any buffer, exiting..."
-msgstr "E82: Non riesco ad allocare alcun buffer, esco..."
-
-msgid "E83: Cannot allocate buffer, using other one..."
-msgstr "E83: Non riesco ad allocare un buffer, uso l'altro..."
-
-msgid "E931: Buffer cannot be registered"
-msgstr "E931: Non riesco a registrare il buffer"
-
-msgid "E937: Attempt to delete a buffer that is in use: %s"
-msgstr "E937: Tentativo di eliminare un buffer ancora usato: %s"
-
-msgid "E90: Cannot unload last buffer"
-msgstr "E90: Non riesco a scaricare l'ultimo buffer"
-
-msgid "E84: No modified buffer found"
-msgstr "E84: Nessun buffer risulta modificato"
-
-msgid "E85: There is no listed buffer"
-msgstr "E85: Non c'è alcun buffer elencato"
-
-msgid "E87: Cannot go beyond last buffer"
-msgstr "E87: Non posso oltrepassare l'ultimo buffer"
-
-msgid "E88: Cannot go before first buffer"
-msgstr "E88: Non posso andare prima del primo buffer"
-
-msgid "E89: No write since last change for buffer %d (add ! to override)"
-msgstr ""
-"E89: Buffer %d non salvato dopo modifica (aggiungi ! per eseguire comunque)"
-
-msgid "E515: No buffers were unloaded"
-msgstr "E515: Nessun buffer scaricato"
-
-msgid "E516: No buffers were deleted"
-msgstr "E516: Nessun buffer tolto dalla lista"
-
-msgid "E517: No buffers were wiped out"
-msgstr "E517: Nessun buffer cancellato"
-
msgid "%d buffer unloaded"
msgid_plural "%d buffers unloaded"
msgstr[0] "%d buffer scaricato"
@@ -197,30 +97,12 @@
msgstr[0] "%d buffer cancellato"
msgstr[1] "%d buffer cancellati"
-msgid "E948: Job still running (add ! to end the job)"
-msgstr "E948: Job ancora in esecuzione (aggiungi! per terminarlo)"
-
-msgid "E948: Job still running"
-msgstr "E948: Job ancora attivo"
-
msgid "W14: Warning: List of file names overflow"
msgstr "W14: Avviso: Superato limite della lista dei nomi di file"
-msgid "E92: Buffer %d not found"
-msgstr "E92: Buffer %d non trovato"
-
-msgid "E93: More than one match for %s"
-msgstr "E93: Più di una corrispondenza per %s"
-
-msgid "E94: No matching buffer for %s"
-msgstr "E94: Nessun buffer corrispondente a %s"
-
msgid "line %ld"
msgstr "riga %ld"
-msgid "E95: Buffer with this name already exists"
-msgstr "E95: C'è già un buffer con questo nome"
-
msgid " [Modified]"
msgstr " [Modificato]"
@@ -265,9 +147,6 @@
msgid "Top"
msgstr "Cim"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: Non posso scrivere, l'opzione 'buftype' è impostata"
-
msgid "[Prompt]"
msgstr "[Richiesta]"
@@ -289,90 +168,6 @@
msgid "[New File]"
msgstr "[File nuovo]"
-msgid "E676: No matching autocommands for acwrite buffer"
-msgstr "E676: Nessun autocomando corrispondente per buffer acwrite"
-
-msgid "E203: Autocommands deleted or unloaded buffer to be written"
-msgstr "E203: Buffer in scrittura cancellato o scaricato dagli autocomandi"
-
-msgid "E204: Autocommand changed number of lines in unexpected way"
-msgstr "E204: L'autocomando ha modificato numero righe in maniera imprevista"
-
-msgid "NetBeans disallows writes of unmodified buffers"
-msgstr "NetBeans non permette la scrittura di un buffer non modificato"
-
-msgid "Partial writes disallowed for NetBeans buffers"
-msgstr "Scrittura parziale disabilitata per i buffer di NetBeans"
-
-msgid "is a directory"
-msgstr "è una directory"
-
-msgid "is not a file or writable device"
-msgstr "non è un file o un dispositivo su cui si possa scrivere"
-
-msgid "writing to device disabled with 'opendevice' option"
-msgstr "scrittura su periferica disabilitata con l'opzione 'opendevice'"
-
-msgid "is read-only (add ! to override)"
-msgstr "è in sola-lettura (aggiungi ! per eseguire comunque)"
-
-msgid "E506: Can't write to backup file (add ! to override)"
-msgstr ""
-"E506: Non posso scrivere sul file di backup (aggiungi ! per eseguire "
-"comunque)"
-
-msgid "E507: Close error for backup file (add ! to override)"
-msgstr ""
-"E507: Errore in chiusura sul file di backup (aggiungi ! per eseguire "
-"comunque)"
-
-msgid "E508: Can't read file for backup (add ! to override)"
-msgstr ""
-"E508: Non riesco a leggere il file di backup (aggiungi ! per eseguire "
-"comunque)"
-
-msgid "E509: Cannot create backup file (add ! to override)"
-msgstr ""
-"E509: Non posso creare il file di backup (aggiungi ! per eseguire comunque)"
-
-msgid "E510: Can't make backup file (add ! to override)"
-msgstr ""
-"E510: Non posso fare il file di backup (aggiungi ! per eseguire comunque)"
-
-msgid "E214: Can't find temp file for writing"
-msgstr "E214: Non riesco a trovare un file 'temp' su cui scrivere"
-
-msgid "E213: Cannot convert (add ! to write without conversion)"
-msgstr ""
-"E213: Non riesco a convertire (aggiungi ! per scrivere senza conversione)"
-
-msgid "E166: Can't open linked file for writing"
-msgstr "E166: Non posso aprire il file collegato ('linked') in scrittura"
-
-msgid "E212: Can't open file for writing"
-msgstr "E212: Non posso aprire il file in scrittura"
-
-msgid "E949: File changed while writing"
-msgstr "E949: File modificato in fase di riscrittura"
-
-msgid "E512: Close failed"
-msgstr "E512: Chiusura fallita"
-
-msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
-msgstr ""
-"E513: errore in scrittura, conversione fallita (rendere 'fenc' nullo per "
-"eseguire comunque)"
-
-msgid ""
-"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
-"override)"
-msgstr ""
-"E513: errore in scrittura, conversione fallita alla riga %ld (rendere 'fenc' "
-"nullo per eseguire comunque)"
-
-msgid "E514: write error (file system full?)"
-msgstr "E514: errore in scrittura ('File System' pieno?)"
-
msgid " CONVERSION ERROR"
msgstr " ERRORE DI CONVERSIONE"
@@ -400,21 +195,12 @@
msgid " written"
msgstr " scritti"
-msgid "E205: Patchmode: can't save original file"
-msgstr "E205: Patchmode: non posso salvare il file originale"
-
-msgid "E206: patchmode: can't touch empty original file"
-msgstr "E206: Patchmode: non posso alterare il file vuoto originale"
-
-msgid "E207: Can't delete backup file"
-msgstr "E207: Non riesco a cancellare il file di backup"
-
msgid ""
"\n"
"WARNING: Original file may be lost or damaged\n"
msgstr ""
"\n"
-"AVVISO: Il file originale può essere perso o danneggiato\n"
+"AVVISO: Il file originale può essere perso o danneggiato\n"
msgid "don't quit the editor until the file is successfully written!"
msgstr "non uscire dall'editor prima della fine della scrittura del file!"
@@ -422,45 +208,6 @@
msgid "W10: Warning: Changing a readonly file"
msgstr "W10: Avviso: Modifica a un file in sola-lettura"
-msgid "E902: Cannot connect to port"
-msgstr "E902: Non posso connettermi alla porta"
-
-msgid "E898: socket() in channel_connect()"
-msgstr "E898: socket() in channel_connect()"
-
-msgid "E901: getaddrinfo() in channel_open(): %s"
-msgstr "E901: getaddrinfo() in channel_open(): %s"
-
-msgid "E901: gethostbyname() in channel_open()"
-msgstr "E901: gethostbyname() in channel_open()"
-
-msgid "E903: received command with non-string argument"
-msgstr "E903: il comando ricevuto non aveva come argomento una stringa"
-
-msgid "E904: last argument for expr/call must be a number"
-msgstr "E904: l'ultimo argomento per espressione/chiamata dev'essere numerico"
-
-msgid "E904: third argument for call must be a list"
-msgstr "E904: il terzo argomento della chiamata dev'essere una Lista"
-
-msgid "E905: received unknown command: %s"
-msgstr "E905: ricevuto comando sconosciuto: %s"
-
-msgid "E906: not an open channel"
-msgstr "E906: canale non aperto"
-
-msgid "E630: %s(): write while not connected"
-msgstr "E630: %s(): scrittura in mancanza di connessione"
-
-msgid "E631: %s(): write failed"
-msgstr "E631: %s(): scrittura non riuscita"
-
-msgid "E917: Cannot use a callback with %s()"
-msgstr "E917: Non posso usare callback con %s()"
-
-msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
-msgstr "E912: non posso usare ch_evalexpr() con un canale grezzo o nl"
-
msgid "No display"
msgstr "Manca display"
@@ -479,24 +226,6 @@
msgid ": Send expression failed.\n"
msgstr ": Invio di espressione fallito.\n"
-msgid "E240: No connection to the X server"
-msgstr "E240: Manca connessione con server Vim"
-
-msgid "E241: Unable to send to %s"
-msgstr "E241: Impossibile inviare a %s"
-
-msgid "E277: Unable to read a server reply"
-msgstr "E277: Non riesco a leggere una risposta del server"
-
-msgid "E941: already started a server"
-msgstr "E941: un server è già stato predisposto"
-
-msgid "E942: +clientserver feature not available"
-msgstr "E942: funzionalità +clientserver non disponibile"
-
-msgid "E258: Unable to send to client"
-msgstr "E258: Impossibile inviare al client"
-
msgid "Used CUT_BUFFER0 instead of empty selection"
msgstr "Uso CUT_BUFFER0 invece che una scelta nulla"
@@ -507,17 +236,14 @@
msgstr " tipo file\n"
msgid "'history' option is zero"
-msgstr "l'opzione 'history' è a zero"
-
-msgid "E821: File is encrypted with unknown method"
-msgstr "E821: File cifrato con metodo sconosciuto"
+msgstr "l'opzione 'history' è a zero"
msgid "Warning: Using a weak encryption method; see :help 'cm'"
msgstr "Avviso: Metodo di cifratura debole in uso; vedere :help 'cm'"
msgid "Note: Encryption of swapfile not supported, disabling swap file"
msgstr ""
-"Nota: La cifratura del file di swap non è supportata, file di swap "
+"Nota: La cifratura del file di swap non è supportata, file di swap "
"disabilitato"
msgid "Enter encryption key: "
@@ -533,7 +259,7 @@
msgstr "[cifrato]"
msgid "Entering Debug mode. Type \"cont\" to continue."
-msgstr "Entro modalità Debug. Batti \"cont\" per continuare."
+msgstr "Entro modalità Debug. Batti \"cont\" per continuare."
msgid "Oldval = \"%s\""
msgstr "Vecchioval = \"%s\""
@@ -551,14 +277,11 @@
msgstr "al livello zero"
msgid "frame at highest level: %d"
-msgstr "al livello più alto: %d"
+msgstr "al livello più alto: %d"
msgid "Breakpoint in \"%s%s\" line %ld"
msgstr "Pausa in \"%s%s\" riga %ld"
-msgid "E161: Breakpoint not found: %s"
-msgstr "E161: Breakpoint %s non trovato"
-
msgid "No breakpoints defined"
msgstr "Nessun 'breakpoint' definito"
@@ -571,60 +294,12 @@
msgid "extend() argument"
msgstr "argomento di extend()"
-msgid "E737: Key already exists: %s"
-msgstr "E737: Chiave già esistente: %s"
-
-msgid "E96: Cannot diff more than %d buffers"
-msgstr "E96: Non supporto differenze fra più di %d buffer"
-
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "Memoria insufficiente per usare diff interna per il buffer \"%s\""
-msgid "E810: Cannot read or write temp files"
-msgstr "E810: Non riesco a leggere o scrivere file temporanei"
-
-msgid "E97: Cannot create diffs"
-msgstr "E97: Non riesco a creare differenze"
-
-msgid "E960: Problem creating the internal diff"
-msgstr "E960: Problemi nella preparazione della diff interna"
-
msgid "Patch file"
msgstr "File di differenze"
-msgid "E816: Cannot read patch output"
-msgstr "E816: Non riesco a leggere output del comando 'patch'"
-
-msgid "E98: Cannot read diff output"
-msgstr "E98: Non riesco a leggere output del comando 'diff'"
-
-msgid "E959: Invalid diff format."
-msgstr "E959: Formato diff non valido."
-
-msgid "E99: Current buffer is not in diff mode"
-msgstr "E99: Buffer corrente non in modalità 'diff'"
-
-msgid "E793: No other buffer in diff mode is modifiable"
-msgstr "E793: Nessun altro buffer è modificabile in modalità 'diff'"
-
-msgid "E100: No other buffer in diff mode"
-msgstr "E100: Non c'è nessun altro buffer in modalità 'diff'"
-
-msgid "E101: More than two buffers in diff mode, don't know which one to use"
-msgstr "E101: Più di due buffer in modalità 'diff', non so quale usare"
-
-msgid "E102: Can't find buffer \"%s\""
-msgstr "E102: Non riesco a trovare il buffer: \"%s\""
-
-msgid "E103: Buffer \"%s\" is not in diff mode"
-msgstr "E103: Il buffer \"%s\" non è in modalità 'diff'"
-
-msgid "E787: Buffer changed unexpectedly"
-msgstr "E787: Il buffer è variato inaspettatamente"
-
-msgid "E104: Escape not allowed in digraph"
-msgstr "E104: Escape non consentito nei digrammi"
-
msgid "Custom"
msgstr "Personalizzato"
@@ -700,45 +375,9 @@
msgid "Bopomofo"
msgstr "Bopomofo"
-msgid "E544: Keymap file not found"
-msgstr "E544: File keymap non trovato"
-
-msgid "E105: Using :loadkeymap not in a sourced file"
-msgstr "E105: Uso di :loadkeymap fuori da un file di comandi"
-
-msgid "E791: Empty keymap entry"
-msgstr "E791: Nessuna keymap per questo tasto"
-
-msgid "E689: Can only index a List, Dictionary or Blob"
-msgstr "E689: Posso indicizzare solo una Lista, un Dizionario o un Blob"
-
-msgid "E708: [:] must come last"
-msgstr "E708: [:] dev'essere alla fine"
-
-msgid "E709: [:] requires a List or Blob value"
-msgstr "E709: [:] richiede un valore Lista o Blob"
-
-msgid "E996: Cannot lock a range"
-msgstr "E996: Non posso bloccare un intervallo"
-
-msgid "E996: Cannot lock a list or dict"
-msgstr "E996: Non posso bloccare una Lista o un Dizionario"
-
-msgid "E260: Missing name after ->"
-msgstr "E260: Manca nome dopo ->"
-
-msgid "E695: Cannot index a Funcref"
-msgstr "E695: Non posso indicizzare un Funcref"
-
msgid "Not enough memory to set references, garbage collection aborted!"
msgstr "Memoria insufficiente per impostarlo, recupero memoria fallito!"
-msgid "E724: variable nested too deep for displaying"
-msgstr "E724: variabile troppo nidificata per la visualizzazione"
-
-msgid "E698: variable nested too deep for making a copy"
-msgstr "E698: Variabile troppo nidificata per poterla copiare"
-
msgid ""
"\n"
"\tLast set from "
@@ -746,25 +385,9 @@
"\n"
"\tImpostata l'ultima volta da "
-msgid "E158: Invalid buffer name: %s"
-msgstr "E158: Nome buffer non valido: %s"
-
msgid "&Ok"
msgstr "&OK"
-msgid "E980: lowlevel input not supported"
-msgstr "E980: input a livello basso non supportato"
-
-msgid "E700: Unknown function: %s"
-msgstr "E700: Funzione sconosciuta: %s"
-
-msgid "E922: expected a dict"
-msgstr "E922: Atteso un Dizionario"
-
-msgid "E923: Second argument of function() must be a list or a dict"
-msgstr ""
-"E923: Il secondo argomento di function() dev'essere una Lista o un Dizionario"
-
msgid ""
"&OK\n"
"&Cancel"
@@ -773,89 +396,7 @@
"&Non eseguire"
msgid "called inputrestore() more often than inputsave()"
-msgstr "inputrestore() chiamata più volte di inputsave()"
-
-msgid "E786: Range not allowed"
-msgstr "E786: Intervallo non consentito"
-
-msgid "E701: Invalid type for len()"
-msgstr "E701: Tipo non valido per len()"
-
-msgid "E726: Stride is zero"
-msgstr "E726: Incremento indice a zero"
-
-msgid "E727: Start past end"
-msgstr "E727: Indice iniziale superiore a quello finale"
-
-msgid "E962: Invalid action: '%s'"
-msgstr "E962: Azione non valida: '%s'"
-
-msgid "E935: invalid submatch number: %d"
-msgstr "E935: numero di sotto-corrispondenza non valido: %d"
-
-msgid "E991: cannot use =<< here"
-msgstr "E991: non posso usare =<< qui"
-
-msgid "E221: Marker cannot start with lower case letter"
-msgstr "E221: Un marcatore non può iniziare con una lettera minuscola"
-
-msgid "E172: Missing marker"
-msgstr "E172: Manca un marcatore"
-
-msgid "E990: Missing end marker '%s'"
-msgstr "E990: Manca marcatore di fine '%s'"
-
-msgid "E985: .= is not supported with script version >= 2"
-msgstr "E985: .= non è supportato con la versione di script >= 2"
-
-msgid "E687: Less targets than List items"
-msgstr "E687: Destinazioni più numerose degli elementi di Lista"
-
-msgid "E688: More targets than List items"
-msgstr "E688: Destinazioni meno numerose degli elementi di Lista"
-
-msgid "E452: Double ; in list of variables"
-msgstr "E452: Doppio ; nella lista di variabili"
-
-msgid "E738: Can't list variables for %s"
-msgstr "E738: Non riesco a elencare le variabili per %s"
-
-msgid "E996: Cannot lock an environment variable"
-msgstr "E996: Non posso bloccare una variabile di ambiente"
-
-msgid "E996: Cannot lock a register"
-msgstr "E996: Non posso bloccare un registro"
-
-msgid "E108: No such variable: \"%s\""
-msgstr "E108: Variabile inesistente: \"%s\""
-
-msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: variabile troppo nidificata per lock/unlock"
-
-msgid "E963: setting %s to value with wrong type"
-msgstr "E963: impostazione di %s a un valore di tipo errato"
-
-msgid "E795: Cannot delete variable %s"
-msgstr "E795: Non posso cancellare la variabile %s"
-
-msgid "E704: Funcref variable name must start with a capital: %s"
-msgstr ""
-"E704: Il nome della variabile Funcref deve iniziare con una maiuscola: %s"
-
-msgid "E705: Variable name conflicts with existing function: %s"
-msgstr "E705: Nome di variabile in conflitto con una funzione esistente: %s"
-
-msgid "E741: Value is locked: %s"
-msgstr "E741: Valore di %s non modificabile"
-
-msgid "Unknown"
-msgstr "Sconosciuto"
-
-msgid "E742: Cannot change value of %s"
-msgstr "E742: Non riesco a cambiare il valore di %s"
-
-msgid "E921: Invalid callback argument"
-msgstr "E921: Argomento callback non valido"
+msgstr "inputrestore() chiamata più volte di inputsave()"
msgid "<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"
msgstr "<%s>%s%s %d, Esa %02x, Ottale %03o, Digr %s"
@@ -875,9 +416,6 @@
msgid "> %d, Hex %08x, Octal %o"
msgstr "> %d, Esa %08x, Ottale %o"
-msgid "E134: Cannot move a range of lines into itself"
-msgstr "E134: Non si può muovere un intervallo di righe in se stesso"
-
msgid "%ld line moved"
msgid_plural "%ld lines moved"
msgstr[0] "%ld riga mossa"
@@ -886,38 +424,20 @@
msgid "%ld lines filtered"
msgstr "%ld righe filtrate"
-msgid "E135: *Filter* Autocommands must not change current buffer"
-msgstr "E135: *Filter* Gli autocomandi non devono modificare il buffer in uso"
-
msgid "[No write since last change]\n"
msgstr "[Non salvato dopo l'ultima modifica]\n"
-msgid "E503: \"%s\" is not a file or writable device"
-msgstr "E503: \"%s\" non è un file o un dispositivo scrivibile"
-
msgid "Save As"
msgstr "Salva con Nome"
msgid "Write partial file?"
msgstr "Scrivo il file incompleto?"
-msgid "E140: Use ! to write partial buffer"
-msgstr "E140: Usa ! per scrivere il buffer incompleto"
-
msgid "Overwrite existing file \"%s\"?"
msgstr "Riscrittura del file esistente \"%s\"?"
msgid "Swap file \"%s\" exists, overwrite anyway?"
-msgstr "Il file swap \"%s\" esiste già, sovrascrivo?"
-
-msgid "E768: Swap file exists: %s (:silent! overrides)"
-msgstr "E768: File swap esistente: %s (:silent! per sovrascriverlo)"
-
-msgid "E141: No file name for buffer %ld"
-msgstr "E141: Manca nome file per il buffer %ld"
-
-msgid "E142: File not written: Writing is disabled by 'write' option"
-msgstr "E142: File non scritto: Scrittura inibita da opzione 'write'"
+msgstr "Il file swap \"%s\" esiste già, sovrascrivo?"
msgid ""
"'readonly' option is set for \"%s\".\n"
@@ -935,25 +455,9 @@
"Questo potrebbe non impedire la scrittura.\n"
"Vuoi provare?"
-msgid "E505: \"%s\" is read-only (add ! to override)"
-msgstr "E505: \"%s\" è in sola-lettura (aggiungi ! per eseguire comunque)"
-
msgid "Edit File"
msgstr "Elabora File"
-msgid "E143: Autocommands unexpectedly deleted new buffer %s"
-msgstr ""
-"E143: Gli autocomandi hanno inaspettatamente cancellato il nuovo buffer %s"
-
-msgid "E144: non-numeric argument to :z"
-msgstr "E144: argomento non-numerico a :z"
-
-msgid "E145: Shell commands and some functionality not allowed in rvim"
-msgstr "E145: Comandi Shell e alcune funzionalità non consentiti in rvim"
-
-msgid "E146: Regular expressions can't be delimited by letters"
-msgstr "E146: Le espressioni regolari non possono essere delimitate da lettere"
-
msgid "replace with %s (y/n/a/q/l/^E/^Y)?"
msgstr "sostituire con %s (y/n/a/q/l/^E/^Y)?"
@@ -980,12 +484,6 @@
msgstr[0] "%ld sostituzione in %ld righe"
msgstr[1] "%ld sostituzioni in %ld righe"
-msgid "E147: Cannot do :global recursive with a range"
-msgstr "E147: :global non può essere usato ricorsivamente con un intervallo"
-
-msgid "E148: Regular expression missing from global"
-msgstr "E148: Manca espressione regolare nel comando 'global'"
-
msgid "Pattern found in every line: %s"
msgstr "Espressione trovata su ogni riga: %s"
@@ -998,19 +496,10 @@
msgid "Save changes to \"%s\"?"
msgstr "Salvare modifiche a \"%s\"?"
-msgid "E947: Job still running in buffer \"%s\""
-msgstr "E947: Job ancora in esecuzione nel buffer \"%s\""
-
-msgid "E162: No write since last change for buffer \"%s\""
-msgstr "E162: Buffer \"%s\" non salvato dopo modifica"
-
msgid "Warning: Entered other buffer unexpectedly (check autocommands)"
msgstr ""
"Avviso: Entrato in altro buffer inaspettatamente (controllare autocomandi)"
-msgid "E666: compiler not supported: %s"
-msgstr "E666: compilatore non supportato: %s"
-
msgid "W20: Required python version 2.x not supported, ignoring file: %s"
msgstr ""
"W20: Versione richiesta di python 2.x non supportata, ignoro il file: %s"
@@ -1020,77 +509,39 @@
"W21: Versione richiesta di python 3.x non supportata, ignoro il file: %s"
msgid "Entering Ex mode. Type \"visual\" to go to Normal mode."
-msgstr "Entro modalità Ex. Batti \"visual\" per tornare a modalità Normale."
-
-msgid "E501: At end-of-file"
-msgstr "E501: Alla fine-file"
+msgstr "Entro modalità Ex. Batti \"visual\" per tornare a modalità Normale."
msgid "Executing: %s"
msgstr "Sto eseguendo: %s"
-msgid "E169: Command too recursive"
-msgstr "E169: Comando troppo ricorsivo"
-
msgid "End of sourced file"
msgstr "Fine del file di comandi"
msgid "End of function"
msgstr "Fine funzione"
-msgid "E605: Exception not caught: %s"
-msgstr "E605: Eccezione non intercettata: %s"
-
-msgid "E492: Not an editor command"
-msgstr "E492: Non è un comando dell'editor"
-
-msgid "E981: Command not allowed in rvim"
-msgstr "E981: Comando non consentito in rvim"
-
-msgid "E493: Backwards range given"
-msgstr "E493: Intervallo rovesciato"
-
msgid "Backwards range given, OK to swap"
msgstr "Intervallo rovesciato, OK invertirlo"
-msgid "E494: Use w or w>>"
-msgstr "E494: Usa w oppure w>>"
-
-msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
-msgstr "E943: Tabella dei comandi da aggiornare, eseguire 'make cmdidxs'"
-
msgid ""
"INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"
msgstr ""
"INTERNO: Non posso usare EX_DFLALL con ADDR_NONE, ADDR_UNSIGNED o "
"ADDR_QUICKFIX"
-msgid "E319: Sorry, the command is not available in this version"
-msgstr "E319: Spiacente, comando non disponibile in questa versione"
-
msgid "%d more file to edit. Quit anyway?"
msgid_plural "%d more files to edit. Quit anyway?"
msgstr[0] "%d ulteriore file da elaborare. Esco lo stesso?"
msgstr[1] "%d ulteriori file da elaborare. Esco lo stesso?"
-msgid "E173: %d more file to edit"
-msgid_plural "E173: %d more files to edit"
-msgstr[0] "E173: %d ulteriore file da elaborare"
-msgstr[1] "E173: %d ulteriori file da elaborare"
-
msgid "unknown"
msgstr "sconosciuto"
-msgid "E185: Cannot find color scheme '%s'"
-msgstr "E185: Non riesco a trovare schema colore '%s'"
-
msgid "Greetings, Vim user!"
msgstr "Salve, utente Vim!"
-msgid "E784: Cannot close last tab page"
-msgstr "E784: Non posso chiudere l'ultima pagina di linguette"
-
msgid "Already only one tab page"
-msgstr "C'è già un'unica pagina di linguette"
+msgstr "C'è già un'unica pagina di linguette"
msgid "Edit File in new tab page"
msgstr "Apri il File in una nuova pagina di linguette"
@@ -1107,94 +558,15 @@
msgid "Append File"
msgstr "In aggiunta al File"
-msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
-msgstr ""
-"E747: Non posso cambiare directory, buffer modificato (aggiungi ! per "
-"eseguire comunque)"
-
-msgid "E186: No previous directory"
-msgstr "E186: Non c'è una directory precedente"
-
-msgid "E187: Unknown"
-msgstr "E187: Sconosciuto"
-
-msgid "E465: :winsize requires two number arguments"
-msgstr "E465: :winsize richiede due argomenti numerici"
-
msgid "Window position: X %d, Y %d"
msgstr "Posizione finestra: X %d, Y %d"
-msgid "E188: Obtaining window position not implemented for this platform"
-msgstr ""
-"E188: Informazioni posizione finestra non disponibili su questa piattaforma"
-
-msgid "E466: :winpos requires two number arguments"
-msgstr "E466: :winpos richiede due argomenti numerici"
-
-msgid "E930: Cannot use :redir inside execute()"
-msgstr "E930: Non si può usare :redir all'interno di execute()"
-
msgid "Save Redirection"
msgstr "Salva Ridirezione"
-msgid "E739: Cannot create directory: %s"
-msgstr "E739: Non posso creare la directory: %s"
-
-msgid "E189: \"%s\" exists (add ! to override)"
-msgstr "E189: \"%s\" esiste (aggiungi ! per eseguire comunque)"
-
-msgid "E190: Cannot open \"%s\" for writing"
-msgstr "E190: Non riesco ad aprire \"%s\" in scrittura"
-
-msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr ""
-"E191: L'argomento dev'essere una lettera, oppure un apice/apice inversa"
-
-msgid "E192: Recursive use of :normal too deep"
-msgstr "E192: Uso ricorsivo di :normal troppo esteso"
-
-msgid "E809: #< is not available without the +eval feature"
-msgstr "E809: #< non disponibile se Vim è compilato senza +eval"
-
-msgid "E194: No alternate file name to substitute for '#'"
-msgstr "E194: Nessun nome file alternativo da sostituire a '#'"
-
-msgid "E495: no autocommand file name to substitute for \"<afile>\""
-msgstr "E495: nessun file di autocomandi da sostituire per \"<afile>\""
-
-msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
-msgstr ""
-"E496: nessun numero di buffer di autocomandi da sostituire per \"<abuf>\""
-
-msgid "E497: no autocommand match name to substitute for \"<amatch>\""
-msgstr ""
-"E497: nessun nome di autocomandi trovato da sostituire per \"<amatch>\""
-
-msgid "E498: no :source file name to substitute for \"<sfile>\""
-msgstr ""
-"E498: nessun nome di file :source trovato da sostituire per \"<sfile>\""
-
-msgid "E489: no call stack to substitute for \"<stack>\""
-msgstr "E489: nessuna stack di chiamata da sostituire per \"<stack>\""
-
-msgid "E842: no line number to use for \"<slnum>\""
-msgstr "E842: nessun numero di riga da usare per \"<slnum>\""
-
-msgid "E961: no line number to use for \"<sflnum>\""
-msgstr "E961: nessun numero di riga da usare per \"<sflnum>\""
-
-msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
-msgstr "E499: Un nome di file nullo per '%' o '#', va bene solo con \":p:h\""
-
-msgid "E500: Evaluates to an empty string"
-msgstr "E500: Il valore è una stringa nulla"
-
msgid "Untitled"
msgstr "Senza Nome"
-msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
-msgstr "E608: Impossibile lanciare eccezioni con prefisso 'Vim'"
-
msgid "Exception thrown: %s"
msgstr "Eccezione lanciata: %s"
@@ -1231,62 +603,20 @@
msgid "Interrupt"
msgstr "Interruzione"
-msgid "E579: :if nesting too deep"
-msgstr "E579: nidificazione di :if troppo estesa"
-
-msgid "E583: multiple :else"
-msgstr "E583: :else multipli"
-
-msgid "E584: :elseif after :else"
-msgstr "E584: :elseif dopo :else"
-
-msgid "E585: :while/:for nesting too deep"
-msgstr "E585: nidificazione di :while/:for troppo estesa"
-
-msgid "E732: Using :endfor with :while"
-msgstr "E732: Uso di :endfor con :while"
-
-msgid "E733: Using :endwhile with :for"
-msgstr "E733: Uso di :endwhile con :for"
-
-msgid "E579: block nesting too deep"
-msgstr "E579: nidificazione di blocco troppo estesa"
-
-msgid "E601: :try nesting too deep"
-msgstr "E601: nidificazione di :try troppo estesa"
-
-msgid "E604: :catch after :finally"
-msgstr "E604: :catch dopo :finally"
-
-msgid "E193: :enddef not inside a function"
-msgstr "E193: :enddef non contenuto in una funzione"
-
-msgid "E193: :endfunction not inside a function"
-msgstr "E193: :endfunction non contenuto in una funzione"
-
-msgid "E788: Not allowed to edit another buffer now"
-msgstr "E788: Non consentito aprire ora un altro buffer"
-
-msgid "E811: Not allowed to change buffer information now"
-msgstr "E811: Non consentito modificare informazioni del buffer ora"
-
msgid "[Command Line]"
msgstr "[Riga-di-comando]"
-msgid "E199: Active window or buffer deleted"
-msgstr "E199: Finestra attiva o buffer cancellato"
-
-msgid "E812: Autocommands changed buffer or buffer name"
-msgstr "E812: Gli autocomandi hanno modificato il buffer o il nome del buffer"
+msgid "is a directory"
+msgstr "è una directory"
msgid "Illegal file name"
msgstr "Nome di file non consentito"
msgid "is not a file"
-msgstr "non è un file"
+msgstr "non è un file"
msgid "is a device (disabled with 'opendevice' option)"
-msgstr "è una periferica (disabilitata con l'opzione 'opendevice')"
+msgstr "è una periferica (disabilitata con l'opzione 'opendevice')"
msgid "[New DIRECTORY]"
msgstr "[Nuova DIRECTORY]"
@@ -1297,21 +627,12 @@
msgid "[Permission Denied]"
msgstr "[Tipo di accesso non consentito]"
-msgid "E200: *ReadPre autocommands made the file unreadable"
-msgstr "E200: Gli autocomandi *ReadPre hanno reso il file illeggibile"
-
-msgid "E201: *ReadPre autocommands must not change current buffer"
-msgstr "E201: Gli autocomandi *ReadPre non devono modificare il buffer in uso"
-
msgid "Vim: Reading from stdin...\n"
msgstr "Vim: Leggo da stdin...\n"
msgid "Reading from stdin..."
msgstr "Leggo da stdin..."
-msgid "E202: Conversion made file unreadable!"
-msgstr "E202: La conversione ha reso il file illeggibile!"
-
msgid "[fifo]"
msgstr "[fifo]"
@@ -1379,21 +700,6 @@
msgid "[Incomplete last line]"
msgstr "[Manca carattere di fine riga]"
-msgid "E208: Error writing to \"%s\""
-msgstr "E208: Errore in scrittura di \"%s\""
-
-msgid "E209: Error closing \"%s\""
-msgstr "E209: Errore in chiusura di \"%s\""
-
-msgid "E210: Error reading \"%s\""
-msgstr "E210: Errore in lettura di \"%s\""
-
-msgid "E246: FileChangedShell autocommand deleted buffer"
-msgstr "E246: L'autocomando 'FileChangedShell' ha cancellato il buffer"
-
-msgid "E211: File \"%s\" no longer available"
-msgstr "E211: Il file \"%s\" non esiste più"
-
msgid ""
"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as "
"well"
@@ -1428,24 +734,9 @@
"&OK\n"
"&Carica File"
-msgid "E462: Could not prepare for reloading \"%s\""
-msgstr "E462: Non riesco a preparare per ricaricare \"%s\""
-
-msgid "E321: Could not reload \"%s\""
-msgstr "E321: Non riesco a ricaricare \"%s\""
-
-msgid "E219: Missing {."
-msgstr "E219: Manca {."
-
-msgid "E220: Missing }."
-msgstr "E220: Manca }."
-
msgid "<empty>"
msgstr "<vuoto>"
-msgid "E655: Too many symbolic links (cycle?)"
-msgstr "E655: Troppi link simbolici (circolarità?)"
-
msgid "writefile() first argument must be a List or a Blob"
msgstr "il primo argomento di writefile() dev'essere una Lista o un Blob"
@@ -1458,52 +749,9 @@
msgid "Open File dialog"
msgstr "Apri File dialogo"
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: Spiacente, niente esplorazione file in modalità console"
-
msgid "no matches"
msgstr "nessuna corrispondenza"
-msgid "E854: path too long for completion"
-msgstr "E854: percorso troppo lungo per il completamento"
-
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: Percorso non valido: '**[numero]' dev'essere a fine percorso o essere "
-"seguito da '%s'."
-
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: Non riesco a trovare la directory \"%s\" nel 'cdpath'"
-
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: Non riesco a trovare il file \"%s\" nel percorso"
-
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: Nessun altra directory \"%s\" trovata nel 'cdpath'"
-
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: Nessun altro file \"%s\" trovato nel percorso"
-
-msgid "E446: No file name under cursor"
-msgstr "E446: Nessun nome file sotto il cursore"
-
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: Non riesco a trovare il file \"%s\" nel percorso"
-
-msgid "E808: Number or Float required"
-msgstr "E808: Richiesto un Numero o un Numero-a-virgola-mobile"
-
-msgid "E490: No fold found"
-msgstr "E490: Non trovo alcuna piegatura"
-
-msgid "E350: Cannot create fold with current 'foldmethod'"
-msgstr "E350: Non posso creare piegatura con il 'foldmethod' in uso"
-
-msgid "E351: Cannot delete fold with current 'foldmethod'"
-msgstr "E351: Non posso cancellare piegatura con il 'foldmethod' in uso"
-
msgid "+--%3ld line folded "
msgid_plural "+--%3ld lines folded "
msgstr[0] "+--%3ld riga piegata "
@@ -1514,51 +762,15 @@
msgstr[0] "+-%s%3ld riga: "
msgstr[1] "+-%s%3ld righe: "
-msgid "E222: Add to read buffer"
-msgstr "E222: Aggiunto al buffer di lettura"
-
-msgid "E223: recursive mapping"
-msgstr "E223: mappatura ricorsiva"
-
-msgid "E851: Failed to create a new process for the GUI"
-msgstr "E851: Creazione di un nuovo processo fallita per la GUI"
-
-msgid "E852: The child process failed to start the GUI"
-msgstr "E852: Il processo figlio non è riuscito a far partire la GUI"
-
-msgid "E229: Cannot start the GUI"
-msgstr "E229: Non posso inizializzare la GUI"
-
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: Non posso leggere da \"%s\""
-
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: Non posso inizializzare la GUI, nessun carattere valido trovato"
-
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' non valido"
-
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: Valore di 'imactivatekey' non valido"
-
msgid "No match at cursor, finding next"
msgstr "Nessuna corrispondenza al cursore, cerco la prossima"
msgid "<cannot open> "
msgstr "<non posso aprire> "
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: non riesco a trovare il carattere %s"
-
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: non posso tornare alla directory in uso"
-
msgid "Pathname:"
msgstr "Nome percorso:"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: non riesco ad ottenere la directory in uso"
-
msgid "OK"
msgstr "OK"
@@ -1571,9 +783,6 @@
msgid "Vim dialog"
msgstr "Dialogo Vim"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: Non riesco a creare 'BalloonEval' con sia messaggio che callback"
-
msgid "_Save"
msgstr "_Salva"
@@ -1591,12 +800,12 @@
"&No\n"
"&Cancel"
msgstr ""
-"&Y Sì\n"
+"&Y Sì\n"
"&No\n"
"&C Ignora"
msgid "Yes"
-msgstr "Sì"
+msgstr "Sì"
msgid "No"
msgstr "No"
@@ -1629,7 +838,7 @@
msgstr "Su"
msgid "Down"
-msgstr "Giù"
+msgstr "Giù"
msgid "Find Next"
msgstr "Trova il Prossimo"
@@ -1709,35 +918,6 @@
msgid "Directory\t*.nothing\n"
msgstr "Directory\t*.niente\n"
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: Non trovo il titolo della finestra \"%s\""
-
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: Argomento non supportato: \"-%s\"; Usa la versione OLE."
-
-msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
-msgstr "E988: GUI non utilizzabile. Non riesco a eseguire gvim.exe."
-
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: Non posso aprire la finestra in un'applicazione MDI"
-
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr ""
-"Vim E458: Non riesco ad allocare elemento di colormap, alcuni colori possono "
-"essere errati"
-
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: Mancano descrizioni per i seguenti caratteri nel font: %s"
-
-msgid "E252: Fontset name: %s"
-msgstr "E252: Nome carattere: %s"
-
-msgid "Font '%s' is not fixed-width"
-msgstr "Il carattere '%s' non di larghezza fissa"
-
-msgid "E253: Fontset name: %s"
-msgstr "E253: Nome fontset: %s"
-
msgid "Font0: %s"
msgstr "Font0: %s"
@@ -1745,7 +925,7 @@
msgstr "Font%d: %s"
msgid "Font%d width is not twice that of font0"
-msgstr "La larghezza di font%d non è doppia di quella di font0"
+msgstr "La larghezza di font%d non è doppia di quella di font0"
msgid "Font0 width: %d"
msgstr "Larghezza di Font0: %d"
@@ -1753,24 +933,6 @@
msgid "Font%d width: %d"
msgstr "Larghezza di Font%d: %d"
-msgid "E284: Cannot set IC values"
-msgstr "E284: Non posso assegnare valori IC"
-
-msgid "E285: Failed to create input context"
-msgstr "E285: Creazione di un contesto di input fallita"
-
-msgid "E286: Failed to open input method"
-msgstr "E286: Apertura Metodo di Input fallita"
-
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: Avviso: Non posso assegnare IM a 'destroy callback'"
-
-msgid "E288: input method doesn't support any style"
-msgstr "E288: Metodo di Input non sopporta alcuno stile"
-
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: Metodo di Input non supporta il mio tipo di preedit"
-
msgid "Invalid font specification"
msgstr "Specifica di carattere non valida"
@@ -1801,15 +963,6 @@
msgid "Size:"
msgstr "Dimensione:"
-msgid "E550: Missing colon"
-msgstr "E550: Manca ':'"
-
-msgid "E551: Illegal component"
-msgstr "E551: Componente non consentito"
-
-msgid "E552: digit expected"
-msgstr "E552: Atteso un numero"
-
msgid "Page %d"
msgstr "Pagina %d"
@@ -1828,147 +981,18 @@
msgid "Printing aborted"
msgstr "Stampa non completata"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: Errore in scrittura su file PostScript di output"
-
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: Non riesco ad aprire il file \"%s\""
-
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: Non riesco a leggere file risorse PostScript \"%s\""
-
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: file \"%s\" non è un file di risorse PostScript"
-
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: file \"%s\" non è un file di risorse PostScript supportato"
-
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: il file di risorse \"%s\" ha una versione sbagliata"
-
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: Codifica e set di caratteri multi-byte non compatibili."
-
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr "E674: printmbcharset non può essere nullo con codifica multi-byte."
-
-msgid "E675: No default font specified for multi-byte printing."
-msgstr "E675: Carattere predefinito non specificato per stampa multi-byte."
-
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: Non riesco ad aprire file PostScript di output"
-
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: Non riesco ad aprire il file \"%s\""
-
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: Non trovo file risorse PostScript \"prolog.ps\""
-
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: Non trovo file risorse PostScript \"cidfont.ps\""
-
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: Non trovo file risorse PostScript \"%s.ps\""
-
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: Impossibile convertire a codifica di stampa \"%s\""
-
msgid "Sending to printer..."
msgstr "Invio a stampante..."
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: Non riesco ad aprire file PostScript"
-
msgid "Print job sent."
msgstr "Richiesta di stampa inviata."
-msgid "E478: Don't panic!"
-msgstr "E478: Non lasciarti prendere dal panico!"
-
-msgid "E661: Sorry, no '%s' help for %s"
-msgstr "E661: Spiacente, nessun aiuto '%s' per %s"
-
-msgid "E149: Sorry, no help for %s"
-msgstr "E149: Spiacente, nessun aiuto per %s"
-
msgid "Sorry, help file \"%s\" not found"
msgstr "Spiacente, non trovo file di aiuto \"%s\""
-msgid "E151: No match: %s"
-msgstr "E151: Nessuna corrispondenza: %s"
-
-msgid "E152: Cannot open %s for writing"
-msgstr "E152: Non posso aprire %s in scrittura"
-
-msgid "E153: Unable to open %s for reading"
-msgstr "E153: Non riesco ad aprire %s in lettura"
-
-msgid "E670: Mix of help file encodings within a language: %s"
-msgstr "E670: Codifiche diverse fra file di aiuto nella stessa lingua: %s"
-
-msgid "E154: Duplicate tag \"%s\" in file %s/%s"
-msgstr "E154: Tag duplicato \"%s\" nel file %s/%s"
-
-msgid "E150: Not a directory: %s"
-msgstr "E150: %s non è una directory"
-
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: ciclo ricorsivo nel caricamento di syncolor.vim"
-
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: 'group' ha impostazioni, 'highlight link' ignorato"
-
-msgid "E418: Illegal value: %s"
-msgstr "E418: Valore non consentito: %s"
-
-msgid "E419: FG color unknown"
-msgstr "E419: colore di testo sconosciuto"
-
-msgid "E420: BG color unknown"
-msgstr "E420: colore di sfondo sconosciuto"
-
-msgid "E453: UL color unknown"
-msgstr "E453: colore UL sconosciuto"
-
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: Numero o nome di colore non riconosciuto: %s"
-
-msgid "E422: terminal code too long: %s"
-msgstr "E422: codice terminale troppo lungo: %s"
-
-msgid "E411: highlight group not found: %s"
-msgstr "E411: gruppo evidenziazione non trovato: %s"
-
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: Argomenti non sufficienti: \":highlight link %s\""
-
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: Troppi argomenti: \":highlight link %s\""
-
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: segno '=' inatteso: %s"
-
-msgid "E416: missing equal sign: %s"
-msgstr "E416: manca segno '=': %s"
-
-msgid "E417: missing argument: %s"
-msgstr "E417: manca argomento: %s"
-
-msgid "E423: Illegal argument: %s"
-msgstr "E423: Argomento non consentito: %s"
-
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: Troppi gruppi evidenziazione differenti in uso"
-
-msgid "E669: Unprintable character in group name"
-msgstr "E669: Carattere non stampabile in un nome di gruppo"
-
msgid "W18: Invalid character in group name"
msgstr "W18: Carattere non valido in un nome di gruppo"
-msgid "E849: Too many highlight and syntax groups"
-msgstr "E849: Troppi gruppi di evidenziazione e sintassi"
-
msgid "Add a new database"
msgstr "Aggiungi un nuovo database"
@@ -1987,39 +1011,12 @@
msgid "Show connections"
msgstr "Visualizza connessioni"
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: Uso: cs[cope] %s"
-
msgid "This cscope command does not support splitting the window.\n"
msgstr "Questo comando cscope non gestisce la divisione della finestra.\n"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: Uso: cstag <ident>"
-
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: tag non trovato"
-
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: errore stat(%s): %d"
-
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s non è una directory o un database cscope valido"
-
msgid "Added cscope database %s"
msgstr "Aggiunto database cscope %s"
-msgid "E262: error reading cscope connection %d"
-msgstr "E262: errore leggendo connessione cscope %d"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: tipo di ricerca cscope sconosciuta"
-
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: Non riesco a creare pipe cscope"
-
-msgid "E622: Could not fork for cscope"
-msgstr "E622: Non riesco a fare fork per cscope"
-
msgid "cs_create_connection setpgid failed"
msgstr "cs_create_connection setpgid fallita"
@@ -2032,18 +1029,6 @@
msgid "cs_create_connection: fdopen for fr_fp failed"
msgstr "cs_create_connection: fdopen di fr_fp fallita"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: Non riesco a generare processo cscope"
-
-msgid "E567: no cscope connections"
-msgstr "E567: nessuna connessione cscope"
-
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: flag cscopequickfix %c non valido per %c"
-
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: nessuna corrispondenza trovata per la richiesta cscope %s di %s"
-
msgid "cscope commands:\n"
msgstr "comandi cscope:\n"
@@ -2073,24 +1058,9 @@
" s: Trova questo simbolo C\n"
" t: Trova questa stringa di testo\n"
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: impossibile aprire database cscope: %s"
-
-msgid "E626: cannot get cscope database information"
-msgstr "E626: impossibile leggere informazioni sul database cscope"
-
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: database cscope duplicato, non aggiunto"
-
-msgid "E261: cscope connection %s not found"
-msgstr "E261: connessione cscope %s non trovata"
-
msgid "cscope connection %s closed"
msgstr "connessione cscope %s chiusa"
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: errore irreparabile in cs_manage_matches"
-
msgid "Cscope tag: %s"
msgstr "Tag cscope: %s"
@@ -2104,9 +1074,6 @@
msgid "filename / context / line\n"
msgstr "nomefile / contest / riga\n"
-msgid "E609: Cscope error: %s"
-msgstr "E609: Errore cscope: %s"
-
msgid "All cscope databases reset"
msgstr "Tutti i database cscope annullati"
@@ -2122,20 +1089,6 @@
msgid "cannot save undo information"
msgstr "non riesco a salvare informazioni per 'undo'"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr ""
-"E815: Spiacente, comando non disponibile, non riesco a caricare librerie "
-"programmi MzScheme."
-
-msgid ""
-"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
-"could not be loaded."
-msgstr ""
-"E815: Spiacente, comando non disponibile, non riesco a caricare modulo "
-"racket/base di MzScheme."
-
msgid "invalid expression"
msgstr "espressione non valida"
@@ -2164,7 +1117,7 @@
msgstr "non posso inserire la riga"
msgid "string cannot contain newlines"
-msgstr "la stringa non può contenere caratteri 'A CAPO'"
+msgstr "la stringa non può contenere caratteri 'A CAPO'"
msgid "error converting Scheme values to Vim"
msgstr "errore nel convertire i valori Scheme a Vim"
@@ -2187,59 +1140,6 @@
msgid "not allowed in the Vim sandbox"
msgstr "non consentito in ambiente protetto"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: Python: Impossibile usare :py e :py3 nella stessa sessione"
-
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: Spiacente, comando non disponibile, non riesco a caricare libreria "
-"programmi Python."
-
-msgid ""
-"E887: Sorry, this command is disabled, the Python's site module could not be "
-"loaded."
-msgstr ""
-"E887: Spiacente, comando non disponibile, non riesco a caricare il modulo "
-"Python locale."
-
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python non può essere chiamato ricorsivamente"
-
-msgid "E837: This Vim cannot execute :py3 after using :python"
-msgstr "E837: Impossibile usare ora :py3 dopo aver usato :python"
-
-msgid "E265: $_ must be an instance of String"
-msgstr "E265: $_ dev'essere un'istanza di Stringa"
-
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: Spiacente, comando non disponibile, non riesco a caricare libreria "
-"programmi Ruby."
-
-msgid "E267: unexpected return"
-msgstr "E267: return inatteso"
-
-msgid "E268: unexpected next"
-msgstr "E268: next inatteso"
-
-msgid "E269: unexpected break"
-msgstr "E269: break inatteso"
-
-msgid "E270: unexpected redo"
-msgstr "E270: redo inatteso"
-
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: retry fuori da clausola rescue"
-
-msgid "E272: unhandled exception"
-msgstr "E272: eccezione non gestita"
-
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: tipo sconosciuto di salto nel programma %d"
-
msgid "invalid buffer number"
msgstr "numero buffer non valido"
@@ -2280,44 +1180,19 @@
msgid ""
"cannot register callback command: buffer/window is already being deleted"
msgstr ""
-"non posso registrare comando callback: buffer/finestra già in cancellazione"
-
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: ERRORE FATALE TCL: reflist corrotta!? Si prega notificare a vim-"
-"dev@vim.org"
+"non posso registrare comando callback: buffer/finestra già in cancellazione"
msgid "cannot register callback command: buffer/window reference not found"
msgstr ""
"non posso registrare comando callback: riferimento a buffer/finestra "
"inesistente"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: Spiacente, comando non disponibile, non riesco a caricare libreria "
-"programmi Tcl."
-
-msgid "E572: exit code %d"
-msgstr "E572: codice di uscita %d"
-
msgid "cannot get line"
msgstr "non riesco a ottenere la riga"
msgid "Unable to register a command server name"
msgstr "Non riesco a registrare un nome di server comando"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: Fallito invio comando a programma destinatario"
-
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: Identificativo di server non valido: %s"
-
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: Proprietà registry relative a VIM non adeguate. Cancellate!"
-
msgid "%ld lines to indent... "
msgstr "%ld righe da rientrare... "
@@ -2330,7 +1205,7 @@
msgstr " Completamento parola (^N^P)"
msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)"
-msgstr " modalità ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)"
+msgstr " modalità ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)"
msgid " Whole line completion (^L^N^P)"
msgstr " Completamento riga intera (^L^N^P)"
@@ -2371,14 +1246,11 @@
msgid "Hit end of paragraph"
msgstr "Giunto alla fine del paragrafo"
-msgid "E840: Completion function deleted text"
-msgstr "E840: La funzione di completamento ha eliminato del testo"
-
msgid "'dictionary' option is empty"
-msgstr "l'opzione 'dictionary' non è impostata"
+msgstr "l'opzione 'dictionary' non è impostata"
msgid "'thesaurus' option is empty"
-msgstr "l'opzione 'thesaurus' non è impostata"
+msgstr "l'opzione 'thesaurus' non è impostata"
msgid "Scanning dictionary: %s"
msgstr "Scansione Dizionario: %s"
@@ -2389,9 +1261,6 @@
msgid " (replace) Scroll (^E/^Y)"
msgstr " (sostituisci) Scroll (^E/^Y)"
-msgid "E785: complete() can only be used in Insert mode"
-msgstr "E785: complete() può essere usata solo in modalità inserimento"
-
msgid "Scanning: %s"
msgstr "Scansione: %s"
@@ -2422,48 +1291,15 @@
msgid "match %d"
msgstr "corrispondenza %d"
-msgid "E920: _io file requires _name to be set"
-msgstr "E920: il file _io necessita di impostare _name"
-
-msgid "E915: in_io buffer requires in_buf or in_name to be set"
-msgstr "E915: il buffer in_io necessita di impostare in_buf o in_name"
-
-msgid "E918: buffer must be loaded: %s"
-msgstr "E918: il buffer dev'essere caricato: %s"
-
-msgid "E916: not a valid job"
-msgstr "E916: job non valido"
-
-msgid "E491: json decode error at '%s'"
-msgstr "E491: errore di decodifica json a '%s'"
-
-msgid "E938: Duplicate key in JSON: \"%s\""
-msgstr "E938: Chiave duplicata in JSON: \"%s\""
-
-msgid "E899: Argument of %s must be a List or Blob"
-msgstr "E899: L'argomento di %s dev'essere una Lista o un Blob"
-
-msgid "E900: maxdepth must be non-negative number"
-msgstr "E900: maxdepth dev'essere un numero non-negativo"
-
msgid "flatten() argument"
msgstr "argomento di flatten()"
-msgid "E696: Missing comma in List: %s"
-msgstr "E696: Manca virgola nella Lista: %s"
-
msgid "sort() argument"
msgstr "argomento di sort()"
msgid "uniq() argument"
msgstr "argomento di uniq()"
-msgid "E702: Sort compare function failed"
-msgstr "E702: Funzione confronto in sort fallita"
-
-msgid "E882: Uniq compare function failed"
-msgstr "E882: Funzione confronto in uniq fallita"
-
msgid "map() argument"
msgstr "argomento di map()"
@@ -2473,15 +1309,9 @@
msgid "filter() argument"
msgstr "argomento di filter()"
-msgid "add() argument"
-msgstr "argomento di add()"
-
msgid "extendnew() argument"
msgstr "argomento di extendnew()"
-msgid "insert() argument"
-msgstr "argomento di insert()"
-
msgid "remove() argument"
msgstr "argomento di remove()"
@@ -2491,9 +1321,6 @@
msgid "Current %slanguage: \"%s\""
msgstr "Lingua %sin uso: \"%s\""
-msgid "E197: Cannot set language to \"%s\""
-msgstr "E197: Non posso impostare lingua a \"%s\""
-
msgid "Unknown option argument"
msgstr "Argomento di opzione sconosciuto"
@@ -2516,13 +1343,13 @@
msgstr "%d file da elaborare\n"
msgid "netbeans is not supported with this GUI\n"
-msgstr "netbeans non è supportato con questa GUI\n"
+msgstr "netbeans non è supportato con questa GUI\n"
msgid "'-nb' cannot be used: not enabled at compile time\n"
msgstr "'-nb' non disponibile: non abilitato in compilazione\n"
msgid "This Vim was not compiled with the diff feature."
-msgstr "Vim non compilato con funzionalità 'diff'."
+msgstr "Vim non compilato con funzionalità 'diff'."
msgid "Attempt to open script file again: \""
msgstr "Tento di riaprire lo script file: \""
@@ -2549,9 +1376,6 @@
msgid "pre-vimrc command line"
msgstr "riga comandi prima di vimrc"
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: Non posso leggere da \"%s\""
-
msgid ""
"\n"
"More info with: \"vim -h\"\n"
@@ -2566,7 +1390,7 @@
msgstr "- leggi testo da 'stdin'"
msgid "-t tag edit file where tag is defined"
-msgstr "-t tag apri file in cui è definito il tag"
+msgstr "-t tag apri file in cui è definito il tag"
msgid "-q [errorfile] edit file with first error"
msgstr "-q [errorfile] apri file col primo errore"
@@ -2625,19 +1449,19 @@
msgstr "-f opp. --nofork\tForeground: Non usare 'fork' inizializzando GUI"
msgid "-v\t\t\tVi mode (like \"vi\")"
-msgstr "-v\t\t\tModalità Vi (come \"vi\")"
+msgstr "-v\t\t\tModalità Vi (come \"vi\")"
msgid "-e\t\t\tEx mode (like \"ex\")"
-msgstr "-e\t\t\tModalità Ex (come \"ex\")"
+msgstr "-e\t\t\tModalità Ex (come \"ex\")"
msgid "-E\t\t\tImproved Ex mode"
-msgstr "-E\t\t\tModalità Ex migliorata"
+msgstr "-E\t\t\tModalità Ex migliorata"
msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")"
-msgstr "-s\t\t\tModalità Silenziosa (batch) (solo per \"ex\")"
+msgstr "-s\t\t\tModalità Silenziosa (batch) (solo per \"ex\")"
msgid "-d\t\t\tDiff mode (like \"vimdiff\")"
-msgstr "-d\t\t\tModalità Diff (come \"vimdiff\")"
+msgstr "-d\t\t\tModalità Diff (come \"vimdiff\")"
msgid "-y\t\t\tEasy mode (like \"evim\", modeless)"
msgstr "-y\t\t\tModo Facile (come \"evim\", senza modi)"
@@ -2646,7 +1470,7 @@
msgstr "-R\t\t\tModo Sola-Lettura (come \"view\")"
msgid "-Z\t\t\tRestricted mode (like \"rvim\")"
-msgstr "-Z\t\t\tModalità Ristretta (come \"rvim\")"
+msgstr "-Z\t\t\tModalità Ristretta (come \"rvim\")"
msgid "-m\t\t\tModifications (writing files) not allowed"
msgstr "-m\t\t\tModifiche (riscritture file) non consentita"
@@ -2655,7 +1479,7 @@
msgstr "-M\t\t\tModifiche nel testo non consentite"
msgid "-b\t\t\tBinary mode"
-msgstr "-b\t\t\tModalità Binaria"
+msgstr "-b\t\t\tModalità Binaria"
msgid "-l\t\t\tLisp mode"
msgstr "-l\t\t\tModo Lisp"
@@ -2667,10 +1491,10 @@
msgstr "-N\t\t\tNon interamente compatibile con Vi: 'nocompatible'"
msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"
-msgstr "-V[N][fname]\t\tVerbosità [livello N] [log su file fname]"
+msgstr "-V[N][fname]\t\tVerbosità [livello N] [log su file fname]"
msgid "-D\t\t\tDebugging mode"
-msgstr "-D\t\t\tModalità Debug"
+msgstr "-D\t\t\tModalità Debug"
msgid "-n\t\t\tNo swap file, use memory only"
msgstr "-n\t\t\tNiente file di swap, usa solo memoria"
@@ -2691,10 +1515,10 @@
msgstr "-dev <dispositivo>\t\tUsa <dispositivo> per I/O"
msgid "-A\t\t\tStart in Arabic mode"
-msgstr "-A\t\t\tComincia in modalità Araba"
+msgstr "-A\t\t\tComincia in modalità Araba"
msgid "-H\t\t\tStart in Hebrew mode"
-msgstr "-H\t\t\tComincia in modalità Ebraica"
+msgstr "-H\t\t\tComincia in modalità Ebraica"
msgid "-T <terminal>\tSet terminal type to <terminal>"
msgstr "-T <terminale>\tImposta tipo terminale a <terminale>"
@@ -2741,7 +1565,7 @@
"-S <sessione>\tEsegui comandi in file <sessione> dopo caricamento primo file"
msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>"
-msgstr "-s <scriptin>\tLeggi comandi in modalità normale da file <scriptin>"
+msgstr "-s <scriptin>\tLeggi comandi in modalità normale da file <scriptin>"
msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>"
msgstr "-w <scriptout>\tAggiungi tutti i comandi immessi a file <scriptout>"
@@ -2861,7 +1685,7 @@
msgstr "-scrollbarwidth <larg> Usa larghezza <larg> per scorrere (anche: -sw)"
msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"
-msgstr "-menuheight <alt>\tUsa altezza <alt> per barra menù (anche: -mh)"
+msgstr "-menuheight <alt>\tUsa altezza <alt> per barra menù (anche: -mh)"
msgid "-reverse\t\tUse reverse video (also: -rv)"
msgstr "-reverse\t\tUsa colori invertiti (anche: -rv)"
@@ -2899,42 +1723,15 @@
msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
msgstr "--windowid <HWND>\tApri Vim dentro un altro widget win32"
-msgid "E224: global abbreviation already exists for %s"
-msgstr "E224: una abbreviazione globale già esiste per %s"
-
-msgid "E225: global mapping already exists for %s"
-msgstr "E225: una mappatura globale già esiste per %s"
-
-msgid "E226: abbreviation already exists for %s"
-msgstr "E226: un'abbreviazione già esiste per %s"
-
-msgid "E227: mapping already exists for %s"
-msgstr "E227: una mappatura già esiste per %s"
-
msgid "No abbreviation found"
msgstr "Non trovo l'abbreviazione"
msgid "No mapping found"
msgstr "Non trovo la mappatura"
-msgid "E228: makemap: Illegal mode"
-msgstr "E228: makemap: modo non consentito"
-
-msgid "E460: entries missing in mapset() dict argument"
-msgstr "E460: elemento non presente nell'argomento dict di mapset()"
-
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': Manca carattere corrispondente per %s"
-
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': Caratteri in più dopo il ';': %s"
-
msgid "No marks set"
msgstr "Nessuna marcatura impostata"
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: Nessuna marcatura corrispondente a \"%s\""
-
msgid ""
"\n"
"mark line col file/text"
@@ -2956,79 +1753,9 @@
"\n"
"modif riga col testo"
-msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E799: ID non valido: %d (dev'essere maggiore o uguale a 1)"
-
-msgid "E801: ID already taken: %d"
-msgstr "E801: ID già utilizzato: %d"
-
-msgid "E290: List or number required"
-msgstr "E290: È necessaria una Lista o un Numero"
-
-msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E802: ID non valido: %d (dev'essere maggiore o uguale a 1)"
-
-msgid "E803: ID not found: %d"
-msgstr "E803: ID non trovato: %d"
-
-msgid "E798: ID is reserved for \":match\": %d"
-msgstr "E798: ID riservato per \":match\": %d"
-
-msgid "E543: Not a valid codepage"
-msgstr "E543: Codepage non valido"
-
-msgid "E293: block was not locked"
-msgstr "E293: il blocco non era riservato"
-
-msgid "E294: Seek error in swap file read"
-msgstr "E294: Errore di posizionamento durante lettura swap file"
-
-msgid "E295: Read error in swap file"
-msgstr "E295: Errore leggendo swap file"
-
-msgid "E296: Seek error in swap file write"
-msgstr "E296: Errore di posizionamento scrivendo swap file"
-
-msgid "E297: Write error in swap file"
-msgstr "E297: Errore scrivendo swap file"
-
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: Lo swap file esiste già (un link simbolico?)"
-
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: Non riesco a leggere blocco numero 0?"
-
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: Non riesco a leggere blocco numero 1?"
-
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: Non riesco a leggere blocco numero 2?"
-
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: Errore aggiornando cifratura dello swap file"
-
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: Ahimè, lo swap file è perduto!!!"
-
-msgid "E302: Could not rename swap file"
-msgstr "E302: Non riesco a rinominare lo swap file"
-
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr ""
-"E303: Non riesco ad aprile lo swap file per \"%s\", recupero impossibile"
-
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): Non riesco a leggere blocco 0??"
-
-msgid "E305: No swap file found for %s"
-msgstr "E305: Nessun swap file trovato per %s"
-
msgid "Enter number of swap file to use (0 to quit): "
msgstr "Dimmi numero di swap file da usare (0 per lasciar perdere): "
-msgid "E306: Cannot open %s"
-msgstr "E306: Non riesco ad aprire %s"
-
msgid "Unable to read block 0 from "
msgstr "Non riesco a leggere il blocco 0 da "
@@ -3040,34 +1767,27 @@
"Forse non ci sono state modifiche oppure Vim non ha aggiornato lo swap file."
msgid " cannot be used with this version of Vim.\n"
-msgstr " non può essere usato con questa versione di Vim.\n"
+msgstr " non può essere usato con questa versione di Vim.\n"
msgid "Use Vim version 3.0.\n"
msgstr "Usa Vim versione 3.0.\n"
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s non sembra uno swap file Vim"
-
msgid " cannot be used on this computer.\n"
-msgstr " non può essere usato su questo computer.\n"
+msgstr " non può essere usato su questo computer.\n"
msgid "The file was created on "
-msgstr "Il file è stato creato il "
+msgstr "Il file è stato creato il "
msgid ""
",\n"
"or the file has been damaged."
msgstr ""
",\n"
-"o il file è stato danneggiato."
-
-msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
-msgstr "E833: %s è cifrato e questa versione di Vim non supporta la cifratura"
+"o il file è stato danneggiato."
msgid " has been damaged (page size is smaller than minimum value).\n"
msgstr ""
-" è stato danneggiato (la dimensione della pagina è inferiore al minimo).\n"
+" è stato danneggiato (la dimensione della pagina è inferiore al minimo).\n"
msgid "Using swap file \"%s\""
msgstr "Uso swap file \"%s\""
@@ -3075,12 +1795,8 @@
msgid "Original file \"%s\""
msgstr "File originale \"%s\""
-msgid "E308: Warning: Original file may have been changed"
-msgstr ""
-"E308: Avviso: il file originale può essere stato modificato nel frattempo"
-
msgid "Swap file is encrypted: \"%s\""
-msgstr "Il file swap è cifrato: \"%s\""
+msgstr "Il file swap è cifrato: \"%s\""
msgid ""
"\n"
@@ -3110,9 +1826,6 @@
"\n"
"per usare la stessa chiave sia per il testo che per il file swap"
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: Impossibile leggere blocco 1 da %s"
-
msgid "???MANY LINES MISSING"
msgstr "???MOLTE RIGHE MANCANTI"
@@ -3125,9 +1838,6 @@
msgid "???LINES MISSING"
msgstr "???RIGHE MANCANTI"
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: ID del Blocco 1 errato (che %s non sia un .swp file?)"
-
msgid "???BLOCK MISSING"
msgstr "???BLOCCO MANCANTE"
@@ -3141,14 +1851,6 @@
msgid "???END"
msgstr "???END"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: Recupero Interrotto"
-
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: Trovati errori durante recupero; controlla righe che iniziano con ???"
-
msgid "See \":help E312\" for more information."
msgstr "Vedere \":help E312\" per ulteriori informazioni."
@@ -3279,63 +1981,21 @@
msgid " [cannot be opened]"
msgstr " [non riesco ad aprire]"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: Non posso preservare, manca swap file"
-
msgid "File preserved"
msgstr "File preservato"
-msgid "E314: Preserve failed"
-msgstr "E314: Preservazione fallita"
-
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: numero di riga non valido: %ld"
-
-msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
-msgstr "E316: ml_get: non riesco a trovare la riga %ld nel buffer %d %s"
-
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: ID blocco puntatori errato 3"
-
msgid "stack_idx should be 0"
msgstr "stack_idx dovrebbe essere 0"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: Aggiornati troppi blocchi?"
-
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: ID blocco puntatori errato 4"
-
msgid "deleted block 1?"
msgstr "cancellato blocco 1?"
-msgid "E320: Cannot find line %ld"
-msgstr "E320: Non riesco a trovare la riga %ld"
-
-msgid "E317: pointer block id wrong"
-msgstr "E317: ID blocco puntatori errato"
-
msgid "pe_line_count is zero"
msgstr "pe_line_count a zero"
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: numero di riga non ammissibile: %ld dopo la fine"
-
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: contatore righe errato nel blocco %ld"
-
msgid "Stack size increases"
msgstr "Dimensione stack aumentata"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: ID blocco puntatori errato 2"
-
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: Collegamento simbolico ricorsivo per \"%s\""
-
-msgid "E325: ATTENTION"
-msgstr "E325: ATTENZIONE"
-
msgid ""
"\n"
"Found a swap file by the name \""
@@ -3350,7 +2010,7 @@
msgstr " NON TROVATO"
msgid " NEWER than swap file!\n"
-msgstr " PIÙ RECENTE dello swap file!\n"
+msgstr " PIÙ RECENTE dello swap file!\n"
msgid ""
"\n"
@@ -3359,15 +2019,15 @@
" file when making changes. Quit, or continue with caution.\n"
msgstr ""
"\n"
-"(1) Un altro programma può essere in edit sullo stesso file. Se è così,\n"
+"(1) Un altro programma può essere in edit sullo stesso file. Se è così,\n"
" attenzione a non finire con due sessioni differenti che modificano lo\n"
" stesso file. Uscire da Vim, o continuare con cautela.\n"
msgid "(2) An edit session for this file crashed.\n"
-msgstr "(2) Una sessione di edit per questo file è finita male.\n"
+msgstr "(2) Una sessione di edit per questo file è finita male.\n"
msgid " If this is the case, use \":recover\" or \"vim -r "
-msgstr " Se è così, usa \":recover\" oppure \"vim -r "
+msgstr " Se è così, usa \":recover\" oppure \"vim -r "
msgid ""
"\"\n"
@@ -3377,7 +2037,7 @@
" per recuperare modifiche fatte (vedi \":help recovery\").\n"
msgid " If you did this already, delete the swap file \""
-msgstr " Se hai già fatto ciò, cancella il file di swap \""
+msgstr " Se hai già fatto ciò, cancella il file di swap \""
msgid ""
"\"\n"
@@ -3393,13 +2053,13 @@
msgstr "Swap file \""
msgid "\" already exists!"
-msgstr "\" già esistente!"
+msgstr "\" già esistente!"
msgid "VIM - ATTENTION"
msgstr "VIM - ATTENZIONE"
msgid "Swap file already exists!"
-msgstr "Lo swap file esiste già!"
+msgstr "Lo swap file esiste già!"
msgid ""
"&Open Read-Only\n"
@@ -3429,53 +2089,15 @@
"&Q Esci\n"
"&Annulla"
-msgid "E326: Too many swap files found"
-msgstr "E326: Trovati troppi swap file"
-
-msgid "E327: Part of menu-item path is not sub-menu"
-msgstr ""
-"E327: Parte del percorso di questo elemento di Menù non è un sotto-Menù"
-
-msgid "E329: No menu \"%s\""
-msgstr "E329: Nessun Menù \"%s\""
-
-msgid "E792: Empty menu name"
-msgstr "E792: Nome Menù vuoto"
-
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: Il percorso del Menù non deve condurre a un sotto-Menù"
-
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr ""
-"E331: Non si devono aggiungere elementi di Menù direttamente alla barra Menù"
-
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: Il separatore non può far parte di un percorso di Menù"
-
msgid ""
"\n"
"--- Menus ---"
msgstr ""
"\n"
-"--- Menù ---"
+"--- Menù ---"
msgid "Tear off this menu"
-msgstr "Togli questo Menù"
-
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: Menù non definito per la modalità %s"
-
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: Il percorso Menù deve condurre ad un elemento Menù"
-
-msgid "E334: Menu not found: %s"
-msgstr "E334: Menù non trovato: %s"
-
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: Il percorso Menù deve condurre ad un sotto-Menù"
-
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: Menù non trovato - controlla nomi Menù"
+msgstr "Togli questo Menù"
msgid "Error detected while compiling %s:"
msgstr "Trovato errore compilando %s:"
@@ -3486,9 +2108,6 @@
msgid "line %4ld:"
msgstr "riga %4ld:"
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: Nome registro non valido: '%s'"
-
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
msgstr "Manutentore messaggi: Antonio Colombo <azc100@gmail.com>"
@@ -3498,6 +2117,9 @@
msgid "Press ENTER or type command to continue"
msgstr "Premi INVIO o un comando per proseguire"
+msgid "Unknown"
+msgstr "Sconosciuto"
+
msgid "%s line %ld"
msgstr "%s riga %ld"
@@ -3505,7 +2127,7 @@
msgstr "-- Ancora --"
msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "
-msgstr " SPAZIO/d/j: schermo/pagina/riga giù, b/u/k: su, q: abbandona "
+msgstr " SPAZIO/d/j: schermo/pagina/riga giù, b/u/k: su, q: abbandona "
msgid "Question"
msgstr "Domanda"
@@ -3514,7 +2136,7 @@
"&Yes\n"
"&No"
msgstr ""
-"&Y Sì\n"
+"&Y Sì\n"
"&No"
msgid ""
@@ -3524,7 +2146,7 @@
"&Discard All\n"
"&Cancel"
msgstr ""
-"&Y Sì\n"
+"&Y Sì\n"
"&No\n"
"&A Salva tutto\n"
"&D Scarta Tutto\n"
@@ -3540,8 +2162,8 @@
msgid "%ld more line"
msgid_plural "%ld more lines"
-msgstr[0] "%ld riga in più"
-msgstr[1] "%ld righe in più"
+msgstr[0] "%ld riga in più"
+msgstr[1] "%ld righe in più"
msgid "%ld line less"
msgid_plural "%ld fewer lines"
@@ -3554,63 +2176,11 @@
msgid "Beep!"
msgstr "Beep!"
-msgid "E677: Error writing temp file"
-msgstr "E677: Errore in scrittura su file temporaneo"
-
msgid "Calling shell to execute: \"%s\""
msgstr "Chiamo la shell per eseguire: \"%s\""
-msgid "E545: Missing colon"
-msgstr "E545: Manca ':'"
-
-msgid "E546: Illegal mode"
-msgstr "E546: Modalità non consentita"
-
-msgid "E547: Illegal mouseshape"
-msgstr "E547: Forma del mouse non consentita"
-
-msgid "E548: digit expected"
-msgstr "E548: Atteso un numero"
-
-msgid "E549: Illegal percentage"
-msgstr "E549: Percentuale non consentita"
-
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: Modalità errata di accesso a file info connessione NetBeans: \"%s\""
-
-msgid "E658: NetBeans connection lost for buffer %d"
-msgstr "E658: Connessione NetBeans persa per il buffer %d"
-
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: netbeans non è supportato con questa GUI"
-
-msgid "E511: netbeans already connected"
-msgstr "E511: netbeans già connesso"
-
-msgid "E505: %s is read-only (add ! to override)"
-msgstr "E505: %s è in sola-lettura (aggiungi ! per eseguire comunque)"
-
-msgid "E349: No identifier under cursor"
-msgstr "E349: Nessun identificativo sotto il cursore"
-
msgid "Warning: terminal cannot highlight"
-msgstr "Avviso: il terminale non è in grado di evidenziare"
-
-msgid "E348: No string under cursor"
-msgstr "E348: Nessuna stringa sotto il cursore"
-
-msgid "E352: Cannot erase folds with current 'foldmethod'"
-msgstr "E352: Non posso togliere piegature con il 'foldmethod' in uso"
-
-msgid "E664: changelist is empty"
-msgstr "E664: lista modifiche assente"
-
-msgid "E662: At start of changelist"
-msgstr "E662: All'inizio della lista modifiche"
-
-msgid "E663: At end of changelist"
-msgstr "E663: Alla fine della lista modifiche"
+msgstr "Avviso: il terminale non è in grado di evidenziare"
msgid "Type :qa! and press <Enter> to abandon all changes and exit Vim"
msgstr "Batti :qa! e premi <Invio> per ignorare le modifiche e uscire da Vim"
@@ -3669,59 +2239,9 @@
msgid "(+%lld for BOM)"
msgstr "(+%lld per BOM)"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: opzione 'operatorfunc' non impostata"
-
-msgid "E775: Eval feature not available"
-msgstr "E775: Funzionalità [eval] non disponibile"
-
-msgid "E518: Unknown option"
-msgstr "E518: Opzione sconosciuta"
-
-msgid "E519: Option not supported"
-msgstr "E519: Opzione non supportata"
-
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: Non consentito in una 'modeline'"
-
-msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
-msgstr "E992: Non consentito in una modeline quando a 'modelineexpr' vale off"
-
-msgid "E846: Key code not set"
-msgstr "E846: Codice di tasto non impostato"
-
-msgid "E521: Number required after ="
-msgstr "E521: Richiesto un numero dopo ="
-
-msgid "E522: Not found in termcap"
-msgstr "E522: Non trovato in 'termcap'"
-
-msgid "E946: Cannot make a terminal with running job modifiable"
-msgstr ""
-"E946: Non posso aprire un terminale mentre ci sono lavori modificabili in "
-"esecuzione"
-
-msgid "E590: A preview window already exists"
-msgstr "E590: Una finestra di anteprima esiste già"
-
msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
msgstr "W17: Arabo richiede UTF-8, esegui ':set encoding=utf-8'"
-msgid "E954: 24-bit colors are not supported on this environment"
-msgstr "E954: colori a 24-bit non supportati in questo ambiente"
-
-msgid "E593: Need at least %d lines"
-msgstr "E593: Servono almeno %d righe"
-
-msgid "E594: Need at least %d columns"
-msgstr "E594: Servono almeno %d colonne"
-
-msgid "E355: Unknown option: %s"
-msgstr "E355: Opzione sconosciuta: %s"
-
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: Richiesto un numero: &%s = '%s'"
-
msgid ""
"\n"
"--- Terminal codes ---"
@@ -3750,81 +2270,9 @@
"\n"
"--- Opzioni ---"
-msgid "E356: get_varp ERROR"
-msgstr "E356: ERRORE get_varp"
-
-msgid "E539: Illegal character <%s>"
-msgstr "E539: Carattere non consentito <%s>"
-
msgid "For option %s"
msgstr "Per opzione %s"
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: Espressione non terminata"
-
-msgid "E542: unbalanced groups"
-msgstr "E542: gruppi sbilanciati"
-
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: Non posso assegnare a 'term' il valore 'stringa nulla'"
-
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: Non posso modificare 'term' mentre sono nella GUI"
-
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: Usa \":gui\" per far partire la GUI"
-
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' e 'patchmode' sono uguali"
-
-msgid "E617: Cannot be changed in the GTK+ 2 GUI"
-msgstr "E617: Non può essere cambiato nella GUI GTK+ 2"
-
-msgid "E950: Cannot convert between %s and %s"
-msgstr "E950: Non si può convertire da %s a %s"
-
-msgid "E524: Missing colon"
-msgstr "E524: Manca ':'"
-
-msgid "E525: Zero length string"
-msgstr "E525: Stringa nulla"
-
-msgid "E526: Missing number after <%s>"
-msgstr "E526: Manca numero dopo <%s>"
-
-msgid "E527: Missing comma"
-msgstr "E527: Manca virgola"
-
-msgid "E528: Must specify a ' value"
-msgstr "E528: Devi specificare un valore '"
-
-msgid "E595: 'showbreak' contains unprintable or wide character"
-msgstr "E595: 'showbreak' contiene carattere non-stampabili o larghi"
-
-msgid "E596: Invalid font(s)"
-msgstr "E596: Caratteri non validi"
-
-msgid "E597: can't select fontset"
-msgstr "E597: non posso selezionare fontset"
-
-msgid "E598: Invalid fontset"
-msgstr "E598: Fontset non valido"
-
-msgid "E533: can't select wide font"
-msgstr "E533: non posso selezionare 'wide font'"
-
-msgid "E534: Invalid wide font"
-msgstr "E534: 'Wide font' non valido"
-
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: Carattere non consentito dopo <%c>"
-
-msgid "E536: comma required"
-msgstr "E536: virgola mancante"
-
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' dev'essere nulla o contenere %s"
-
msgid "cannot open "
msgstr "non riesco ad aprire "
@@ -3847,14 +2295,11 @@
msgstr "Vim esce con %d\n"
msgid "cannot change console mode ?!\n"
-msgstr "non posso modificare modalità console ?!\n"
+msgstr "non posso modificare modalità console ?!\n"
msgid "mch_get_shellsize: not a console??\n"
msgstr "mch_get_shellsize: non una console??\n"
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: Non posso eseguire la shell con l'opzione -f"
-
msgid "Cannot execute "
msgstr "Non riesco a eseguire "
@@ -3873,32 +2318,12 @@
msgid "Message"
msgstr "Messaggio"
-msgid "E237: Printer selection failed"
-msgstr "E237: Scelta stampante non riuscita"
-
msgid "to %s on %s"
msgstr "a %s su %s"
-msgid "E613: Unknown printer font: %s"
-msgstr "E613: Carattere di stampa sconosciuto: %s"
-
-msgid "E238: Print error: %s"
-msgstr "E238: Errore durante stampa: %s"
-
msgid "Printing '%s'"
msgstr "Stampato: '%s'"
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr ""
-"E244: Nome di charset non consentito \"%s\" nel carattere di nome \"%s\""
-
-msgid "E244: Illegal quality name \"%s\" in font name \"%s\""
-msgstr ""
-"E244: Nome di qualità non consentito \"%s\" nel carattere di nome \"%s\""
-
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: Carattere non consentito '%c' nel carattere di nome \"%s\""
-
msgid "Opening the X display took %ld msec"
msgstr "Attivazione visualizzazione X ha richiesto %ld msec"
@@ -3907,7 +2332,7 @@
"Vim: Got X error\n"
msgstr ""
"\n"
-"Vim: Preso errore X\n"
+"Vim: Ottenuto errore X\n"
msgid "restoring display %s"
msgstr "ripristino display %s"
@@ -4016,9 +2441,6 @@
msgid "shutdown"
msgstr "shutdown"
-msgid "E371: Command not found"
-msgstr "E371: Comando non trovato"
-
msgid ""
"VIMRUN.EXE not found in your $PATH.\n"
"External commands will not pause after completion.\n"
@@ -4034,63 +2456,6 @@
msgid "shell returned %d"
msgstr "shell terminata con codice di ritorno %d"
-msgid "E861: Cannot open a second popup with a terminal"
-msgstr "E861: Non posso aprire una seconda finestra dinamica con un terminale"
-
-msgid "E450: buffer number, text or a list required"
-msgstr "E450: occorre un numero di buffer, del testo, o una Lista"
-
-msgid "E997: Tabpage not found: %d"
-msgstr "E997: Pagina-di-linguette non trovata: %d"
-
-msgid "E993: window %d is not a popup window"
-msgstr "E993: la finestra %d non è una finestra dinamica"
-
-msgid "E994: Not allowed in a popup window"
-msgstr "E994: Non consentito in una finestra dinamica"
-
-msgid "E863: Not allowed for a terminal in a popup window"
-msgstr "E863: Non consentito per un terminale in una finestra dinamica"
-
-msgid "E750: First use \":profile start {fname}\""
-msgstr "E750: Usare prima \":profile start {fname}\""
-
-msgid "E553: No more items"
-msgstr "E553: Non ci sono più elementi"
-
-msgid "E925: Current quickfix list was changed"
-msgstr "E925: La Lista quickfix corrente è stata cambiata"
-
-msgid "E926: Current location list was changed"
-msgstr "E926: La lista delle locazioni corrente è stata cambiata"
-
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: Troppi %%%c nella stringa di 'format'"
-
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: %%%c imprevisto nella stringa di 'format'"
-
-msgid "E374: Missing ] in format string"
-msgstr "E374: Manca ] nella stringa di 'format'"
-
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: %%%c non supportato nella stringa di 'format'"
-
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: %%%c non valido nel prefisso della stringa di 'format'"
-
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: %%%c non valido nella stringa di 'format'"
-
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' non contiene alcun modello"
-
-msgid "E379: Missing or empty directory name"
-msgstr "E379: Nome directory mancante o nullo"
-
-msgid "E924: Current window was closed"
-msgstr "E924: La finestra corrente è stata chiusa"
-
msgid "(%d of %d)%s%s: "
msgstr "(%d di %d)%s%s: "
@@ -4100,177 +2465,28 @@
msgid "%serror list %d of %d; %d errors "
msgstr "%slista errori %d di %d; %d errori"
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: Al fondo dello stack di quickfix"
-
-msgid "E381: At top of quickfix stack"
-msgstr "E381: In cima allo stack di quickfix"
-
msgid "No entries"
msgstr "Nessun elemento"
msgid "Error file"
msgstr "File errori"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: Nome file mancante o espressione non valida"
-
msgid "Cannot open file \"%s\""
msgstr "Non riesco ad aprire il file \"%s\""
msgid "cannot have both a list and a \"what\" argument"
-msgstr "non si può avere come argomenti sia una Lista che un \"what\""
-
-msgid "E681: Buffer is not loaded"
-msgstr "E681: Buffer non caricato"
-
-msgid "E777: String or List expected"
-msgstr "E777: attesa Stringa o Lista"
-
-msgid "E927: Invalid action: '%s'"
-msgstr "E927: Azione non valida: '%s'"
-
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: elemento non valido in %s%%[]"
-
-msgid "E769: Missing ] after %s["
-msgstr "E769: Manca ] dopo %s["
-
-msgid "E944: Reverse range in character class"
-msgstr "E944: Intervallo invertito nella classe di caratteri"
-
-msgid "E945: Range too large in character class"
-msgstr "E945: Intervallo troppo ampio nella classe di caratteri"
-
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( non consentito qui"
-
-msgid "E67: \\z1 - \\z9 not allowed here"
-msgstr "E67: \\z1 - \\z9 non consentiti qui"
-
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: Manca ] dopo %s%%["
-
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] vuoto"
-
-msgid "E956: Cannot use pattern recursively"
-msgstr "E956: Uso ricorsivo di espressione di ricerca non consentito"
-
-msgid "E654: missing delimiter after search pattern: %s"
-msgstr "E654: manca un delimitatore dopo l'espressione di ricerca: %s"
-
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: Errore sintattico in %s{...}"
-
-msgid "E888: (NFA regexp) cannot repeat %s"
-msgstr "E888: (NFA regexp) non riesco a ripetere %s"
-
-msgid ""
-"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
-"used "
-msgstr ""
-"E864: \\%#= può essere seguito solo da 0, 1 o 2. Sarà usato il motore "
-"automatico "
+msgstr "non si può avere come argomenti sia una Lista che un \"what\""
msgid "Switching to backtracking RE engine for pattern: "
msgstr "Passo alla ricerca di RE col vecchio metodo: "
-msgid "E65: Illegal back reference"
-msgstr "E65: Riferimento all'indietro non consentito"
-
-msgid "E63: invalid use of \\_"
-msgstr "E63: uso non valido di \\_"
-
-msgid "E64: %s%c follows nothing"
-msgstr "E64: %s%c senza nulla prima"
-
-msgid "E68: Invalid character after \\z"
-msgstr "E68: Carattere non valido dopo \\z"
-
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: Carattere non valido dopo %s%%[dxouU]"
-
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: Carattere non valido dopo %s%%"
-
-msgid "E61: Nested %s*"
-msgstr "E61: %s* nidificato"
-
-msgid "E62: Nested %s%c"
-msgstr "E62: %s%c nidificato"
-
-msgid "E339: Pattern too long"
-msgstr "E339: Espressione troppo lunga"
-
msgid "External submatches:\n"
msgstr "Sotto-corrispondenze esterne:\n"
-msgid "E865: (NFA) Regexp end encountered prematurely"
-msgstr "E865: (NFA) Fine prematura dell'espressione regolare"
-
-msgid "E866: (NFA regexp) Misplaced %c"
-msgstr "E866: (NFA regexp) %c fuori posto"
-
-msgid "E877: (NFA regexp) Invalid character class: %d"
-msgstr "E877: (NFA regexp) Classe di caratteri non valida: %d"
-
-msgid "E951: \\% value too large"
-msgstr "E951: \\% valore troppo grande"
-
-msgid "E867: (NFA) Unknown operator '\\z%c'"
-msgstr "E867: (NFA) Operatore sconosciuto '\\z%c'"
-
-msgid "E867: (NFA) Unknown operator '\\%%%c'"
-msgstr "E867: (NFA) Operatore sconosciuto '\\%%%c'"
-
-msgid "E868: Error building NFA with equivalence class!"
-msgstr "E868: Errore nel build di NFA con classe di equivalenza!"
-
-msgid "E869: (NFA) Unknown operator '\\@%c'"
-msgstr "E869: (NFA) Operatore sconosciuto '\\@%c'"
-
-msgid "E870: (NFA regexp) Error reading repetition limits"
-msgstr "E870: (NFA regexp) Errore nella lettura dei limiti di ripetizione"
-
-msgid "E871: (NFA regexp) Can't have a multi follow a multi"
-msgstr "E871: (NFA regexp) Non si può avere multi dopo multi"
-
-msgid "E872: (NFA regexp) Too many '('"
-msgstr "E872: (NFA regexp) Troppi '('"
-
-msgid "E879: (NFA regexp) Too many \\z("
-msgstr "E879: (NFA regexp) Troppi \\z("
-
-msgid "E873: (NFA regexp) proper termination error"
-msgstr "E873: (NFA regexp) errore di terminazione corretta"
-
msgid "Could not open temporary log file for writing, displaying on stderr... "
msgstr ""
"Non posso aprire il file temporaneo di log in scrittura, mostro su stderr... "
-msgid "E874: (NFA) Could not pop the stack!"
-msgstr "E874: (NFA) Impossibile riprendere lo stack!"
-
-msgid ""
-"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
-"left on stack"
-msgstr ""
-"E875: (NFA regexp) (Nella conversione da postfix a NFA), troppi stati "
-"lasciati sullo stack"
-
-msgid "E876: (NFA regexp) Not enough space to store the whole NFA "
-msgstr "E876: (NFA regexp) Non c'è spazio per immagazzinare l'intero NFA "
-
-msgid "E878: (NFA) Could not allocate memory for branch traversal!"
-msgstr "E878: (NFA) Non posso allocare memoria per lo zigzag di ramo!"
-
-msgid "E748: No previously used register"
-msgstr "E748: Nessun registro usato in precedenza"
-
-msgid "freeing %ld lines"
-msgstr "libero %ld righe"
-
msgid " into \"%c"
msgstr " in \"%c"
@@ -4284,9 +2500,6 @@
msgstr[0] "%ld riga messa in registro%s"
msgstr[1] "%ld righe messe in registro%s"
-msgid "E353: Nothing in register %s"
-msgstr "E353: Niente nel registro %s"
-
msgid ""
"\n"
"Type Name Content"
@@ -4294,13 +2507,6 @@
"\n"
"Tipo Nome Contenuto"
-msgid ""
-"E883: search pattern and expression register may not contain two or more "
-"lines"
-msgstr ""
-"E883: espressione di ricerca e registro dell'espressione non possono "
-"contenere due o più righe"
-
msgid " VREPLACE"
msgstr " V-SOSTITUISCI"
@@ -4406,30 +2612,6 @@
msgid "W15: Warning: Wrong line separator, ^M may be missing"
msgstr "W15: Avviso: Separatore di riga errato, forse manca ^M"
-msgid "E167: :scriptencoding used outside of a sourced file"
-msgstr "E167: :scriptencoding usato fuori da un file di comandi"
-
-msgid "E984: :scriptversion used outside of a sourced file"
-msgstr "E984: :scriptversion usato fuori da un file di comandi"
-
-msgid "E999: scriptversion not supported: %d"
-msgstr "E999: scriptversion non supportata: %d"
-
-msgid "E168: :finish used outside of a sourced file"
-msgstr "E168: :finish usato fuori da file di comandi"
-
-msgid "E383: Invalid search string: %s"
-msgstr "E383: Stringa di ricerca non valida: %s"
-
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: la ricerca ha raggiunto la CIMA senza successo per: %s"
-
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: la ricerca ha raggiunto il FONDO senza successo per: %s"
-
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: '?' o '/' atteso dopo ';'"
-
msgid " (includes previously listed match)"
msgstr " (comprese corrispondenze elencate prima)"
@@ -4443,7 +2625,7 @@
msgstr "nel percorso ---\n"
msgid " (Already listed)"
-msgstr " (Già elencati)"
+msgstr " (Già elencati)"
msgid " NOT FOUND"
msgstr " NON TROVATO"
@@ -4454,21 +2636,12 @@
msgid "Searching included file %s"
msgstr "Cerco nel file incluso: %s"
-msgid "E387: Match is on current line"
-msgstr "E387: Corrispondenza nella riga corrente"
-
msgid "All included files were found"
msgstr "Tutti i file inclusi sono stati trovati"
msgid "No included files"
msgstr "Nessun file incluso"
-msgid "E388: Couldn't find definition"
-msgstr "E388: Non sono riuscito a trovare la definizione"
-
-msgid "E389: Couldn't find pattern"
-msgstr "E389: Non sono riuscito a trovare il modello"
-
msgid "Save View"
msgstr "Salva Veduta"
@@ -4495,34 +2668,7 @@
msgstr " gruppo=%s"
msgid " line=%ld id=%d%s name=%s priority=%d"
-msgstr " riga=%ld id=%d%s, nome=%s priorità=%d"
-
-msgid "E612: Too many signs defined"
-msgstr "E612: Troppi 'sign' definiti"
-
-msgid "E239: Invalid sign text: %s"
-msgstr "E239: Testo 'sign' non valido: %s"
-
-msgid "E155: Unknown sign: %s"
-msgstr "E155: 'sign' sconosciuto: %s"
-
-msgid "E885: Not possible to change sign %s"
-msgstr "E885: Impossibile cambiare segno %s"
-
-msgid "E159: Missing sign number"
-msgstr "E159: Manca numero 'sign'"
-
-msgid "E157: Invalid sign ID: %d"
-msgstr "E157: ID 'sign' non valido: %d"
-
-msgid "E934: Cannot jump to a buffer that does not have a name"
-msgstr "E934: Impossibile passare a un buffer che non ha un nome"
-
-msgid "E160: Unknown sign command: %s"
-msgstr "E160: Comando 'sign' sconosciuto: %s"
-
-msgid "E156: Missing sign name"
-msgstr "E156: Manca nome 'sign'"
+msgstr " riga=%ld id=%d%s, nome=%s priorità=%d"
msgid " (NOT FOUND)"
msgstr " (NON TROVATO)"
@@ -4536,66 +2682,21 @@
msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""
msgstr "Avviso: Non trovo lista parole \"%s.%s.spl\" o \"%s.ascii.spl\""
-msgid "E797: SpellFileMissing autocommand deleted buffer"
-msgstr "E797: L'autocomando 'SpellFileMissing' ha cancellato il buffer"
-
msgid "Warning: region %s not supported"
msgstr "Avviso: regione %s non supportata"
-msgid "E752: No previous spell replacement"
-msgstr "E752: Nessuna sostituzione ortografica precedente"
-
-msgid "E753: Not found: %s"
-msgstr "E753: Non trovato: %s"
-
-msgid "E758: Truncated spell file"
-msgstr "E758: File ortografico troncato"
-
msgid "Trailing text in %s line %d: %s"
msgstr "Testo in eccesso in %s riga %d: %s"
msgid "Affix name too long in %s line %d: %s"
msgstr "Nome affisso troppo lungo in %s riga %d: %s"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
-msgstr "E761: Errore di formato nel file affissi FOL, LOW o UPP"
-
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: Carattere fuori intervallo in FOL, LOW o UPP"
-
msgid "Compressing word tree..."
msgstr "Comprimo albero di parole..."
msgid "Reading spell file \"%s\""
msgstr "Lettura file ortografico \"%s\""
-msgid "E757: This does not look like a spell file"
-msgstr "E757: Questo non sembra un file ortografico"
-
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: File ortografico obsoleto, è necessario aggiornarlo"
-
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: Il file ortografico è per versioni di Vim più recenti"
-
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: Sezione non supportata nel file ortografico"
-
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: Questo non sembra un file .sug: %s"
-
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: File .sug obsoleto, è necessario aggiornarlo: %s"
-
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: Il file .sug è per versioni di Vim più recenti: %s"
-
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: Il file .sug non corrisponde al file .spl: %s"
-
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: Errore leggendo il file .sug: %s"
-
msgid "Reading affix file %s..."
msgstr "Lettura file affissi %s..."
@@ -4693,20 +2794,17 @@
msgstr "Righe sia SAL che SOFO in %s"
msgid "Flag is not a number in %s line %d: %s"
-msgstr "Il flag non è un numero in %s riga %d: %s"
+msgstr "Il flag non è un numero in %s riga %d: %s"
msgid "Illegal flag in %s line %d: %s"
msgstr "Flag non consentita in %s riga %d: %s"
msgid "%s value differs from what is used in another .aff file"
-msgstr "Il valore di %s è diverso da quello usato in un altro file .aff"
+msgstr "Il valore di %s è diverso da quello usato in un altro file .aff"
msgid "Reading dictionary file %s..."
msgstr "Lettura file Dizionario %s..."
-msgid "E760: No word count in %s"
-msgstr "E760: Nessun contatore parole in %s"
-
msgid "line %6d, word %6ld - %s"
msgstr "riga %6d, parola %6ld - %s"
@@ -4752,9 +2850,6 @@
msgid "Ignored %d words with non-ASCII characters"
msgstr "%d parole con caratteri non-ASCII ignorate"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: Memoria insufficiente, la lista parole sarà incompleta"
-
msgid "Compressed %s: %ld of %ld nodes; %ld (%ld%%) remaining"
msgstr "Compressi %s: %ld di %ld nodi; ne restano %ld (%ld%%)"
@@ -4776,15 +2871,6 @@
msgid "Estimated runtime memory use: %d bytes"
msgstr "Uso stimato di memoria durante esecuzione: %d byte"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: Il nome del file di output non deve avere il nome di regione"
-
-msgid "E754: Only up to %d regions supported"
-msgstr "E754: Sono supportate al massimo %d regioni"
-
-msgid "E755: Invalid region in %s"
-msgstr "E755: Regione non valida in %s"
-
msgid "Warning: both compounding and NOBREAK specified"
msgstr "Avviso: specificati sia composizione sia NOBREAK"
@@ -4794,9 +2880,6 @@
msgid "Done!"
msgstr "Fatto!"
-msgid "E765: 'spellfile' does not have %d entries"
-msgstr "E765: 'spellfile' non ha %d elementi"
-
msgid "Word '%.*s' removed from %s"
msgstr "Parola '%.*s' rimossa da %s"
@@ -4806,12 +2889,6 @@
msgid "Word '%.*s' added to %s"
msgstr "Parola '%.*s' aggiunta a %s"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: Caratteri di parola differenti nei file ortografici"
-
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: carattere duplicato nell'elemento MAP"
-
msgid "Sorry, no suggestions"
msgstr "Spiacente, nessun suggerimento"
@@ -4824,18 +2901,6 @@
msgid " < \"%.*s\""
msgstr " < \"%.*s\""
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: Argomenti non sufficienti per printf()"
-
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: Numero-a-virgola-mobile atteso come argomento per printf()"
-
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: Troppi argomenti per printf()"
-
-msgid "E390: Illegal argument: %s"
-msgstr "E390: Argomento non consentito: %s"
-
msgid "No Syntax items defined for this buffer"
msgstr "Nessun elemento sintattico definito per questo buffer"
@@ -4875,9 +2940,6 @@
msgid "syntax iskeyword not set"
msgstr "syntax iskeyword non impostato"
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: 'cluster' sintattico inesistente: %s"
-
msgid "syncing on C-style comments"
msgstr "sincronizzo i commenti nello stile C"
@@ -4914,9 +2976,6 @@
"\n"
"--- Elementi sintattici ---"
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: 'cluster' sintattico inesistente: %s"
-
msgid "from the first line"
msgstr "dalla prima riga"
@@ -4932,101 +2991,10 @@
msgid " line breaks"
msgstr " interruzioni di riga"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: contiene argomenti non accettati qui"
-
-msgid "E844: invalid cchar value"
-msgstr "E844: valore cchar non valido"
-
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: group[t]here non consentito qui"
-
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: Elemento di 'region' non trovato per %s"
-
-msgid "E397: Filename required"
-msgstr "E397: Nome file necessario"
-
-msgid "E847: Too many syntax includes"
-msgstr "E847: Troppe inclusioni di sintassi"
-
-msgid "E789: Missing ']': %s"
-msgstr "E789: Manca ']': %s"
-
-msgid "E890: trailing char after ']': %s]%s"
-msgstr "E890: Caratteri in più dopo ']': %s]%s"
-
-msgid "E398: Missing '=': %s"
-msgstr "E398: Manca '=': %s"
-
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: Argomenti non sufficienti per: 'syntax region' %s"
-
-msgid "E848: Too many syntax clusters"
-msgstr "E848: Troppi 'cluster' sintattici"
-
-msgid "E400: No cluster specified"
-msgstr "E400: Nessun 'cluster' specificato"
-
-msgid "E401: Pattern delimiter not found: %s"
-msgstr "E401: Delimitatore di espressione non trovato: %s"
-
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: Spazzatura dopo espressione: %s"
-
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr ""
-"E403: syntax sync: espressione di continuazione riga specificata due volte"
-
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: Argomenti non consentiti: %s"
-
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: Manca '=': %s"
-
-msgid "E406: Empty argument: %s"
-msgstr "E406: Argomento nullo: %s"
-
-msgid "E407: %s not allowed here"
-msgstr "E407: %s non consentito qui"
-
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s deve venire per primo nella lista 'contains'"
-
-msgid "E409: Unknown group name: %s"
-msgstr "E409: Nome gruppo sconosciuto: %s"
-
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: Sotto-comando :syntax non valido: %s"
-
msgid ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
msgstr ""
-" TOTALE CONT. CORRIS. PIÙ LENTO MEDIA NOME MODELLO"
-
-msgid "E555: at bottom of tag stack"
-msgstr "E555: al fondo dello stack dei tag"
-
-msgid "E556: at top of tag stack"
-msgstr "E556: in cima allo stack dei tag"
-
-msgid "E986: cannot modify the tag stack within tagfunc"
-msgstr "E986: non posso modificare lo stack dei tag all'interno di tagfunc"
-
-msgid "E987: invalid return value from tagfunc"
-msgstr "E987: valore non valido restituito da tagfunc"
-
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: Non posso andare prima del primo tag corrispondente"
-
-msgid "E426: tag not found: %s"
-msgstr "E426: tag non trovato: %s"
-
-msgid "E427: There is only one matching tag"
-msgstr "E427: C'è solo un tag corrispondente"
-
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: Non posso andare oltre l'ultimo tag corrispondente"
+" TOTALE CONT. CORRIS. PIÙ LENTO MEDIA NOME MODELLO"
msgid "File \"%s\" does not exist"
msgstr "Il file \"%s\" non esiste"
@@ -5035,14 +3003,11 @@
msgstr "tag %d di %d%s"
msgid " or more"
-msgstr " o più"
+msgstr " o più"
msgid " Using tag with different case!"
msgstr " Uso tag ignorando maiuscole/minuscole!"
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: Il file \"%s\" non esiste"
-
msgid " # pri kind tag"
msgstr " # pri tipo tag"
@@ -5059,30 +3024,12 @@
msgid "Searching tags file %s"
msgstr "Ricerca nel tag file %s"
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: Percorso tag file troncato per %s\n"
-
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: Errore di formato nel tag file \"%s\""
-
msgid "Before byte %ld"
msgstr "Prima del byte %ld"
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: Tag file non ordinato alfabeticamente: %s"
-
-msgid "E433: No tags file"
-msgstr "E433: Nessun tag file"
-
msgid "Ignoring long line in tags file"
msgstr "Riga lunga ignorata nel tag file"
-msgid "E434: Can't find tag pattern"
-msgstr "E434: Non riesco a trovare modello tag"
-
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: Non riesco a trovare tag, sto solo tirando a indovinare!"
-
msgid "Duplicate field name: %s"
msgstr "Nome di campo duplicato: %s"
@@ -5092,21 +3039,6 @@
msgid "defaulting to '"
msgstr "predefinito a '"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: Non posso aprire file 'termcap'"
-
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: Descrizione terminale non trovata in 'terminfo'"
-
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: Descrizione terminale non trovata in 'termcap'"
-
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: Nessuna descrizione per \"%s\" in 'termcap'"
-
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: capacità \"cm\" del terminale necessaria"
-
msgid ""
"\n"
"--- Terminal keys ---"
@@ -5114,12 +3046,6 @@
"\n"
"--- Tasti Terminale ---"
-msgid "E181: Invalid attribute: %s"
-msgstr "E181: Attributo non valido: %s"
-
-msgid "E279: Sorry, ++shell is not supported on this system"
-msgstr "E279: Spiacente, ++shell non è supportato in questo sistema"
-
msgid "Kill job in \"%s\"?"
msgstr "Cancello lavoro \"%s\"?"
@@ -5138,48 +3064,6 @@
msgid "finished"
msgstr "terminato"
-msgid "E958: Job already finished"
-msgstr "E958: Job già terminato"
-
-msgid "E953: File exists: %s"
-msgstr "E953: File già esistente: %s"
-
-msgid "E955: Not a terminal buffer"
-msgstr "E955: Il buffer non è un terminale"
-
-msgid "E982: ConPTY is not available"
-msgstr "E982: ConPTY non disponibile"
-
-msgid "E971: Property type %s does not exist"
-msgstr "E971: Tipo di proprietà %s non esistente"
-
-msgid "E964: Invalid column number: %ld"
-msgstr "E964: Numero di colonna non valido: %ld"
-
-msgid "E966: Invalid line number: %ld"
-msgstr "E966: Numero di riga non valido: %ld"
-
-msgid "E275: Cannot add text property to unloaded buffer"
-msgstr "E275: Non posso aggiungere proprietà di testo a un buffer scaricato"
-
-msgid "E965: missing property type name"
-msgstr "E965: Nome del tipo di proprietà non disponibile"
-
-msgid "E967: text property info corrupted"
-msgstr "E967: informazione sulle proprietà del testo corrotta"
-
-msgid "E968: Need at least one of 'id' or 'type'"
-msgstr "E968: Occorre conoscere almeno un 'id' o 'type'"
-
-msgid "E860: Need 'id' and 'type' with 'both'"
-msgstr "E860: Servono 'id' e 'type' specificando 'both'"
-
-msgid "E969: Property type %s already defined"
-msgstr "E969: Tipo di proprietà %s già definito"
-
-msgid "E970: Unknown highlight group name: '%s'"
-msgstr "E970: Nome gruppo di evidenziazione sconosciuto: '%s'"
-
msgid "(Invalid)"
msgstr "(Non valido)"
@@ -5191,117 +3075,14 @@
msgstr[0] "%ld secondo fa"
msgstr[1] "%ld secondi fa"
-msgid "E805: Using a Float as a Number"
-msgstr "E805: Uso di un Numero-a-virgola-mobile come un Numero"
-
-msgid "E703: Using a Funcref as a Number"
-msgstr "E703: Uso di una Funcref come un Numero"
-
-msgid "E745: Using a List as a Number"
-msgstr "E745: Uso di una Lista come un Numero"
-
-msgid "E728: Using a Dictionary as a Number"
-msgstr "E728: Uso di un Dizionario come un Numero"
-
-msgid "E611: Using a Special as a Number"
-msgstr "E611: Uso di uno Special come un Numero"
-
-msgid "E910: Using a Job as a Number"
-msgstr "E910: Uso di un Job come un Numero"
-
-msgid "E913: Using a Channel as a Number"
-msgstr "E913: Uso di un Canale come un Numero"
-
-msgid "E974: Using a Blob as a Number"
-msgstr "E974: Uso di un Blob come un Numero"
-
-msgid "E891: Using a Funcref as a Float"
-msgstr "E891: Uso di una Funcref come un Numero-a-virgola-mobile"
-
-msgid "E892: Using a String as a Float"
-msgstr "E892: Uso di una Stringa come un Numero-a-virgola-mobile"
-
-msgid "E893: Using a List as a Float"
-msgstr "E893: Uso di una Lista come un Numero-a-virgola-mobile"
-
-msgid "E894: Using a Dictionary as a Float"
-msgstr "E894: Uso di un Dizionario come un Numero-a-virgola-mobile"
-
-msgid "E362: Using a boolean value as a Float"
-msgstr "E362: Uso di un valore Booleano come un Numero-a-virgola-mobile"
-
-msgid "E907: Using a special value as a Float"
-msgstr "E907: Uso di un valore speciale come un Numero-a-virgola-mobile"
-
-msgid "E911: Using a Job as a Float"
-msgstr "E911: Uso di un Job come un Numero-a-virgola-mobile"
-
-msgid "E914: Using a Channel as a Float"
-msgstr "E914: Uso di un Canale come un Numero-a-virgola-mobile"
-
-msgid "E975: Using a Blob as a Float"
-msgstr "E975: Uso di un Blob come un Numero-a-virgola-mobile"
-
-msgid "E729: Using a Funcref as a String"
-msgstr "E729: Uso di una Funcref come una Stringa"
-
-msgid "E730: Using a List as a String"
-msgstr "E730: Uso di una Lista come una Stringa"
-
-msgid "E731: Using a Dictionary as a String"
-msgstr "E731: Uso di un Dizionario come una Stringa"
-
-msgid "E976: Using a Blob as a String"
-msgstr "E976: Uso di un Blob come una Stringa"
-
-msgid "E977: Can only compare Blob with Blob"
-msgstr "E977: Posso confrontare un Blob solo con un altro Blob"
-
-msgid "E691: Can only compare List with List"
-msgstr "E691: Posso confrontare una Lista solo con un'altra Lista"
-
-msgid "E692: Invalid operation for List"
-msgstr "E692: Operazione non valida per Liste"
-
-msgid "E735: Can only compare Dictionary with Dictionary"
-msgstr "E735: Posso confrontare un Dizionario solo con un altro Dizionario"
-
-msgid "E736: Invalid operation for Dictionary"
-msgstr "E736: Operazione non valida per Dizionari"
-
-msgid "E694: Invalid operation for Funcrefs"
-msgstr "E694: Operazione non valida per Funcref"
-
-msgid "E112: Option name missing: %s"
-msgstr "E112: Nome Opzione mancante: %s"
-
-msgid "E973: Blob literal should have an even number of hex characters"
-msgstr ""
-"E973: Una stringa Blob dovrebbe avere un numero pari di caratteri esadecimali"
-
-msgid "E114: Missing quote: %s"
-msgstr "E114: Manca '\"': %s"
-
-msgid "E115: Missing quote: %s"
-msgstr "E115: Manca apostrofo: %s"
-
msgid "new shell started\n"
msgstr "fatto eseguire nuova shell\n"
msgid "Vim: Error reading input, exiting...\n"
msgstr "Vim: Errore leggendo l'input, esco...\n"
-msgid "E881: Line count changed unexpectedly"
-msgstr "E881: Contatore righe è inaspettatamente cambiato"
-
msgid "No undo possible; continue anyway"
-msgstr "'undo' non più possibile; continuo comunque"
-
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: Non posso aprire il file Undo in scrittura: %s"
-
-msgid "E825: Corrupted undo file (%s): %s"
-msgstr "E825: File Undo corrotto (%s): %s"
+msgstr "'undo' non più possibile; continuo comunque"
msgid "Cannot write undo file in any directory in 'undodir'"
msgstr "Non posso scrivere un file Undo in alcuna directory di 'undodir'"
@@ -5310,7 +3091,7 @@
msgstr "File Undo non sovrascritto, non riesco a leggere: %s"
msgid "Will not overwrite, this is not an undo file: %s"
-msgstr "Non sovrascritto, non è un file Undo: %s"
+msgstr "Non sovrascritto, non è un file Undo: %s"
msgid "Skipping undo file write, nothing to undo"
msgstr "Ometto scrittura del file Undo, non ci sono modifiche"
@@ -5318,33 +3099,12 @@
msgid "Writing undo file: %s"
msgstr "Scrivo file Undo: %s"
-msgid "E829: write error in undo file: %s"
-msgstr "E829: errore scrivendo nel file Undo: %s"
-
msgid "Not reading undo file, owner differs: %s"
msgstr "Non leggo file Undo, appartiene a un altro utente: %s"
msgid "Reading undo file: %s"
msgstr "Lettura file Undo: %s"
-msgid "E822: Cannot open undo file for reading: %s"
-msgstr "E822: Non posso aprire il file Undo in lettura: %s"
-
-msgid "E823: Not an undo file: %s"
-msgstr "E823: Non è un file Undo: %s"
-
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: File non cifrato con file Undo cifrato: %s"
-
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: Decodifica fallita del file Undo: %s"
-
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: File Undo cifrato: %s"
-
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: File Undo incompatibile: %s"
-
msgid "File contents changed, cannot use undo info"
msgstr "File ulteriormente modificato, non posso usare informazioni di Undo"
@@ -5352,22 +3112,16 @@
msgstr "Lettura del file Undo %s effettuata"
msgid "Already at oldest change"
-msgstr "Questa è già la prima modifica"
+msgstr "Questa è già la prima modifica"
msgid "Already at newest change"
-msgstr "Questa è già l'ultima modifica"
-
-msgid "E830: Undo number %ld not found"
-msgstr "E830: Undo numero %ld non trovato"
-
-msgid "E438: u_undo: line numbers wrong"
-msgstr "E438: u_undo: numeri righe errati"
+msgstr "Questa è già l'ultima modifica"
msgid "more line"
-msgstr "riga in più"
+msgstr "riga in più"
msgid "more lines"
-msgstr "righe in più"
+msgstr "righe in più"
msgid "line less"
msgstr "riga in meno"
@@ -5396,15 +3150,6 @@
msgid "number changes when saved"
msgstr "numero modif. quando salv."
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undojoin non è consentito dopo undo"
-
-msgid "E439: undo list corrupt"
-msgstr "E439: lista 'undo' non valida"
-
-msgid "E440: undo line missing"
-msgstr "E440: riga di 'undo' mancante"
-
msgid ""
"\n"
" Name Args Address Complete Definition"
@@ -5415,92 +3160,9 @@
msgid "No user-defined commands found"
msgstr "Non trovo comandi definiti dall'utente"
-msgid "E180: Invalid address type value: %s"
-msgstr "E180: Tipo di indirizzo non valido: %s"
-
-msgid "E180: Invalid complete value: %s"
-msgstr "E180: Valore %s non valido per 'complete'"
-
-msgid "E468: Completion argument only allowed for custom completion"
-msgstr ""
-"E468: Argomento di completamento consentito solo per completamento "
-"personalizzato"
-
-msgid "E467: Custom completion requires a function argument"
-msgstr ""
-"E467: Il completamento personalizzato richiede un argomento di funzione"
-
-msgid "E175: No attribute specified"
-msgstr "E175: Nessun attributo specificato"
-
-msgid "E176: Invalid number of arguments"
-msgstr "E176: Numero di argomenti non valido"
-
-msgid "E177: Count cannot be specified twice"
-msgstr "E177: Non si può specificare due volte il contatore"
-
-msgid "E178: Invalid default value for count"
-msgstr "E178: Valore predefinito del contatore non valido"
-
-msgid "E179: argument required for -complete"
-msgstr "E179: argomento necessario per -complete"
-
-msgid "E179: argument required for -addr"
-msgstr "E179: argomento necessario per -addr"
-
-msgid "E174: Command already exists: add ! to replace it: %s"
-msgstr "E174: Il comando esiste già: aggiungi ! per sostituirlo: %s"
-
-msgid "E182: Invalid command name"
-msgstr "E182: Nome comando non valido"
-
-msgid "E183: User defined commands must start with an uppercase letter"
-msgstr ""
-"E183: I comandi definiti dall'utente devono iniziare con lettera maiuscola"
-
-msgid "E841: Reserved name, cannot be used for user defined command"
-msgstr "E841: Nome riservato, non usabile in un comando definito dall'utente"
-
-msgid "E122: Function %s already exists, add ! to replace it"
-msgstr "E122: La funzione %s esiste già, aggiungi ! per sostituirla"
-
-msgid "E717: Dictionary entry already exists"
-msgstr "E717: C'è già la voce nel Dizionario"
-
-msgid "E718: Funcref required"
-msgstr "E718: Funcref necessario"
-
-msgid "E130: Unknown function: %s"
-msgstr "E130: Funzione sconosciuta: %s"
-
-msgid "E125: Illegal argument: %s"
-msgstr "E125: Argomento non consentito: %s"
-
-msgid "E853: Duplicate argument name: %s"
-msgstr "E853: Nome argomento duplicato: %s"
-
-msgid "E989: Non-default argument follows default argument"
-msgstr "E989: Argomento non di default dopo argomento di default"
-
-msgid "E126: Missing :endfunction"
-msgstr "E126: Manca :endfunction"
-
msgid "W22: Text found after :endfunction: %s"
msgstr "W22: Trovato testo dopo :endfunction: %s"
-msgid "E451: Expected }: %s"
-msgstr "E451: Atteso }: %s"
-
-msgid "E740: Too many arguments for function %s"
-msgstr "E740: Troppi argomenti per la funzione: %s"
-
-msgid "E116: Invalid arguments for function %s"
-msgstr "E116: Argomenti non validi per la funzione: %s"
-
-msgid "E132: Function call depth is higher than 'maxfuncdepth'"
-msgstr ""
-"E132: Nidificazione della chiamata di funzione maggiore di 'maxfuncdepth'"
-
msgid "calling %s"
msgstr "chiamo %s"
@@ -5513,58 +3175,6 @@
msgid "%s returning %s"
msgstr "%s ritorno %s"
-msgid "E699: Too many arguments"
-msgstr "E699: Troppi argomenti"
-
-msgid "E276: Cannot use function as a method: %s"
-msgstr "E276: Non posso usare la funzione come un metodo: %s"
-
-msgid "E120: Using <SID> not in a script context: %s"
-msgstr "E120: Uso di <SID> fuori dal contesto di uno script: %s"
-
-msgid "E725: Calling dict function without Dictionary: %s"
-msgstr "E725: Chiamata di funzione dict in assenza di Dizionario: %s"
-
-msgid "E129: Function name required"
-msgstr "E129: Nome funzione necessario"
-
-msgid "E128: Function name must start with a capital or \"s:\": %s"
-msgstr "E128: Il nome funzione deve iniziare con maiuscola o \"s:\": %s"
-
-msgid "E884: Function name cannot contain a colon: %s"
-msgstr "E884: Il nome della funzione non può contenere un due punti: %s"
-
-msgid "E454: function list was modified"
-msgstr "E454: la lista funzioni è stata cambiata"
-
-msgid "E123: Undefined function: %s"
-msgstr "E123: Funzione non definita: %s"
-
-msgid "E124: Missing '(': %s"
-msgstr "E124: Manca '(': %s"
-
-msgid "E862: Cannot use g: here"
-msgstr "E862: Non si può usare g: qui"
-
-msgid "E932: Closure function should not be at top level: %s"
-msgstr ""
-"E932: La funzione di chiusura non dovrebbe essere al livello più alto: %s"
-
-msgid "E707: Function name conflicts with variable: %s"
-msgstr "E707: Nome funzione in conflitto con la variabile: %s"
-
-msgid "E127: Cannot redefine function %s: It is in use"
-msgstr "E127: Non posso ridefinire la funzione %s: È in uso"
-
-msgid "E746: Function name does not match script file name: %s"
-msgstr "E746: Il nome funzione non corrisponde al nome file dello script: %s"
-
-msgid "E131: Cannot delete function %s: It is in use"
-msgstr "E131: Non posso eliminare la funzione %s: È in uso"
-
-msgid "E133: :return not inside a function"
-msgstr "E133: :return fuori da una funzione"
-
msgid "%s (%s, compiled %s)"
msgstr "%s (%s, compilato %s)"
@@ -5727,7 +3337,7 @@
msgstr "con GUI."
msgid " Features included (+) or not (-):\n"
-msgstr " Funzionalità incluse (+) o escluse (-):\n"
+msgstr " Funzionalità incluse (+) o escluse (-):\n"
msgid " system vimrc file: \""
msgstr " file vimrc di sistema: \""
@@ -5763,7 +3373,7 @@
msgstr " file dei default: \""
msgid " system menu file: \""
-msgstr " file menù di sistema: \""
+msgstr " file menù di sistema: \""
msgid " fall-back for $VIM: \""
msgstr " $VIM di riserva: \""
@@ -5793,7 +3403,7 @@
msgstr "di Bram Moolenaar et al."
msgid "Vim is open source and freely distributable"
-msgstr "Vim è 'open source' e può essere distribuito liberamente"
+msgstr "Vim è 'open source' e può essere distribuito liberamente"
msgid "Help poor children in Uganda!"
msgstr "Aiuta i bambini poveri dell'Uganda!"
@@ -5811,7 +3421,7 @@
msgstr "batti :help version8<Invio> per informazioni su versione"
msgid "Running in Vi compatible mode"
-msgstr "Eseguo in modalità compatibile Vi"
+msgstr "Eseguo in modalità compatibile Vi"
msgid "type :set nocp<Enter> for Vim defaults"
msgstr "batti :set nocp<Invio> per valori predefiniti Vim"
@@ -5823,16 +3433,16 @@
msgstr "menu Aiuto->Orfani per informazioni "
msgid "Running modeless, typed text is inserted"
-msgstr "Esecuzione senza modalità: solo inserimento"
+msgstr "Esecuzione senza modalità: solo inserimento"
msgid "menu Edit->Global Settings->Toggle Insert Mode "
-msgstr "menu Modifica->Impost.Globali->Modal.Inser. Sì/No"
+msgstr "menu Modifica->Impost.Globali->Modal.Inser. Sì/No"
msgid " for two modes "
msgstr " per modo Inser./Comandi"
msgid "menu Edit->Global Settings->Toggle Vi Compatible"
-msgstr "menu Modifica->Impost.Globali->Compatibile Vi Sì/No"
+msgstr "menu Modifica->Impost.Globali->Compatibile Vi Sì/No"
msgid " for Vim defaults "
msgstr " modo Vim predefinito "
@@ -5852,9 +3462,6 @@
msgid "menu Help->Sponsor/Register for information "
msgstr "menu Aiuto->Sponsor/Registrazione per informazioni "
-msgid "[end of lines]"
-msgstr "[fine delle righe]"
-
msgid "global"
msgstr "global"
@@ -5867,6 +3474,9 @@
msgid "tab"
msgstr "tab"
+msgid "[end of lines]"
+msgstr "[fine delle righe]"
+
msgid ""
"\n"
"# Buffer list:\n"
@@ -5879,7 +3489,7 @@
"# %s History (newest to oldest):\n"
msgstr ""
"\n"
-"# %s Storia (da più recente a meno recente):\n"
+"# %s Storia (da più recente a meno recente):\n"
msgid "Command Line"
msgstr "Riga-di-comando"
@@ -5906,9 +3516,6 @@
msgid "%sviminfo: %s in line: "
msgstr "%sviminfo: %s nella riga: "
-msgid "E136: viminfo: Too many errors, skipping rest of file"
-msgstr "E136: viminfo: Troppi errori, ignoro il resto del file"
-
msgid ""
"\n"
"# global variables:\n"
@@ -5937,9 +3544,6 @@
msgid "Substitute "
msgstr "Sostituzione "
-msgid "Illegal register name"
-msgstr "Nome registro non ammesso"
-
msgid ""
"\n"
"# Registers:\n"
@@ -5947,15 +3551,12 @@
"\n"
"# Registri:\n"
-msgid "E574: Unknown register type %d"
-msgstr "E574: Tipo di registro sconosciuto: %d"
-
msgid ""
"\n"
"# History of marks within files (newest to oldest):\n"
msgstr ""
"\n"
-"# Storia delle marcature all'interno dei file (dalle più recenti alle meno "
+"# Storia delle marcature all'interno dei file (dalle più recenti alle meno "
"recenti):\n"
msgid ""
@@ -5970,16 +3571,10 @@
"# Jumplist (newest first):\n"
msgstr ""
"\n"
-"# Jumplist (dai più recenti):\n"
-
-msgid "Missing '>'"
-msgstr "Manca '>'"
-
-msgid "Illegal starting char"
-msgstr "Carattere iniziale non consentito"
+"# Jumplist (dai più recenti):\n"
msgid "# This viminfo file was generated by Vim %s.\n"
-msgstr "# Questo file viminfo è stato generato da Vim %s.\n"
+msgstr "# Questo file viminfo è stato generato da Vim %s.\n"
msgid ""
"# You may edit it if you're careful!\n"
@@ -6006,55 +3601,11 @@
msgid " FAILED"
msgstr " FALLITO"
-msgid "E137: Viminfo file is not writable: %s"
-msgstr "E137: File viminfo \"%s\" inaccessibile in scrittura"
-
-msgid "E929: Too many viminfo temp files, like %s!"
-msgstr "E929: Troppi file temporanei viminfo, come %s!"
-
-msgid "E138: Can't write viminfo file %s!"
-msgstr "E138: Non riesco a scrivere il file viminfo %s!"
-
msgid "Writing viminfo file \"%s\""
msgstr "Scrivo file viminfo \"%s\""
-msgid "E886: Can't rename viminfo file to %s!"
-msgstr "E886: Non riesco a rinominare il file viminfo a %s!"
-
-msgid "E195: Cannot open viminfo file for reading"
-msgstr "E195: Non posso aprire il file viminfo in lettura"
-
msgid "Already only one window"
-msgstr "C'è già una finestra sola"
-
-msgid "E92: Buffer %ld not found"
-msgstr "E92: Buffer %ld non trovato"
-
-msgid "E441: There is no preview window"
-msgstr "E441: Non c'è una finestra di anteprima"
-
-msgid "E242: Can't split a window while closing another"
-msgstr "E242: Non posso dividere una finestra mentre ne sto chiudendo un'altra"
-
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: Non riesco a dividere ALTO-SX e BASSO-DX contemporaneamente"
-
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: Non posso ruotare quando un'altra finestra è divisa in due"
-
-msgid "E444: Cannot close last window"
-msgstr "E444: Non riesco a chiudere l'ultima finestra"
-
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr ""
-"E814: Non posso chiudere questa finestra, rimarrebbe solo la finestra "
-"autocomandi"
-
-msgid "E445: Other window contains changes"
-msgstr "E445: Altre finestre contengono modifiche"
-
-msgid "E366: Not allowed to enter a popup window"
-msgstr "E366: Non si può inserire testo in una finestra dinamica"
+msgstr "C'è già una finestra sola"
msgid "E370: Could not load library %s"
msgstr "E370: Non riesco a caricare la libreria %s"
@@ -6098,6 +3649,9 @@
msgid "gvimext.dll error"
msgstr "errore gvimext.dll"
+msgid "Interrupted"
+msgstr "Interrotto"
+
msgid "E10: \\ should be followed by /, ? or &"
msgstr "E10: \\ dovrebbe essere seguito da /, ? oppure &"
@@ -6119,7 +3673,7 @@
msgstr "E16: Intervallo non valido"
msgid "E17: \"%s\" is a directory"
-msgstr "E17: \"%s\" è una directory"
+msgstr "E17: \"%s\" è una directory"
msgid "E18: Unexpected characters in :let"
msgstr "E18: Caratteri non attesi in :let"
@@ -6134,7 +3688,7 @@
msgstr "E20: Marcatura non impostata"
msgid "E21: Cannot make changes, 'modifiable' is off"
-msgstr "E21: Non posso fare modifiche, 'modifiable' è inibito"
+msgstr "E21: Non posso fare modifiche, 'modifiable' è inibito"
msgid "E22: Scripts nested too deep"
msgstr "E22: Script troppo nidificati"
@@ -6152,10 +3706,10 @@
msgstr "E26: Ebraico non utilizzabile: Non abilitato in compilazione\n"
msgid "E27: Farsi support has been removed\n"
-msgstr "E27: Il supporto per la lingua farsi non è più disponibile\n"
+msgstr "E27: Il supporto per la lingua farsi non è più disponibile\n"
msgid "E28: No such highlight group name: %s"
-msgstr "E28: Nome di gruppo di evidenziazione inesistente: %s"
+msgstr "E28: Nome di gruppo evidenziazione inesistente: %s"
msgid "E29: No inserted text yet"
msgstr "E29: Ancora nessun testo inserito"
@@ -6197,7 +3751,7 @@
msgstr "E40: Non riesco ad aprire il file errori %s"
msgid "E41: Out of memory!"
-msgstr "E41: Non c'è più memoria!"
+msgstr "E41: Non c'è più memoria!"
msgid "E42: No Errors"
msgstr "E42: Nessun Errore"
@@ -6211,8 +3765,11 @@
msgid "E45: 'readonly' option is set (add ! to override)"
msgstr "E45: file in sola-lettura (aggiungi ! per eseguire comunque)"
+msgid "E46: Cannot change read-only variable"
+msgstr "E46: Non posso cambiare variabile read-only"
+
msgid "E46: Cannot change read-only variable \"%s\""
-msgstr "E46: Non posso cambiare la variabile read-only \"%s\""
+msgstr "E46: Non posso cambiare variabile read-only \"%s\""
msgid "E47: Error while reading errorfile"
msgstr "E47: Errore leggendo il file errori"
@@ -6221,7 +3778,7 @@
msgstr "E48: Non consentito in ambiente protetto"
msgid "E49: Invalid scroll size"
-msgstr "E49: Quantità di scorrimento non valida"
+msgstr "E49: Quantità di scorrimento non valida"
msgid "E50: Too many \\z("
msgstr "E50: Troppe \\z("
@@ -6247,45 +3804,2405 @@
msgid "E60: Too many complex %s{...}s"
msgstr "E60: Troppi %s{...}s complessi"
+msgid "E61: Nested %s*"
+msgstr "E61: %s* nidificato"
+
+msgid "E62: Nested %s%c"
+msgstr "E62: %s%c nidificato"
+
+msgid "E63: invalid use of \\_"
+msgstr "E63: uso non valido di \\_"
+
+msgid "E64: %s%c follows nothing"
+msgstr "E64: %s%c senza nulla prima"
+
+msgid "E65: Illegal back reference"
+msgstr "E65: Riferimento all'indietro non consentito"
+
+msgid "E66: \\z( not allowed here"
+msgstr "E66: \\z( non consentito qui"
+
+msgid "E67: \\z1 - \\z9 not allowed here"
+msgstr "E67: \\z1 - \\z9 non consentiti qui"
+
+msgid "E68: Invalid character after \\z"
+msgstr "E68: Carattere non valido dopo \\z"
+
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: Manca ] dopo %s%%["
+
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] vuoto"
+
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: Carattere non valido dopo %s%%"
+
+msgid "E72: Close error on swap file"
+msgstr "E72: Errore durante chiusura swap file"
+
+msgid "E73: tag stack empty"
+msgstr "E73: tag stack ancora vuoto"
+
+msgid "E74: Command too complex"
+msgstr "E74: Comando troppo complesso"
+
+msgid "E75: Name too long"
+msgstr "E75: Nome troppo lungo"
+
+msgid "E76: Too many ["
+msgstr "E76: Troppe ["
+
+msgid "E77: Too many file names"
+msgstr "E77: Troppi nomi file"
+
+msgid "E78: Unknown mark"
+msgstr "E78: Marcatura sconosciuta"
+
+msgid "E79: Cannot expand wildcards"
+msgstr "E79: Non posso espandere 'wildcard'"
+
+msgid "E80: Error while writing"
+msgstr "E80: Errore in scrittura"
+
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: Uso di <SID> fuori dal contesto di uno script"
+
+msgid "E82: Cannot allocate any buffer, exiting..."
+msgstr "E82: Non riesco ad allocare alcun buffer, esco..."
+
+msgid "E83: Cannot allocate buffer, using other one..."
+msgstr "E83: Non riesco ad allocare un buffer, uso l'altro..."
+
+msgid "E84: No modified buffer found"
+msgstr "E84: Nessun buffer risulta modificato"
+
+msgid "E85: There is no listed buffer"
+msgstr "E85: Non c'è alcun buffer elencato"
+
+msgid "E86: Buffer %ld does not exist"
+msgstr "E86: Non esiste il buffer %ld"
+
+msgid "E87: Cannot go beyond last buffer"
+msgstr "E87: Non posso oltrepassare l'ultimo buffer"
+
+msgid "E88: Cannot go before first buffer"
+msgstr "E88: Non posso andare prima del primo buffer"
+
+msgid "E89: No write since last change for buffer %d (add ! to override)"
+msgstr ""
+"E89: Buffer %d non salvato dopo modifica (aggiungi ! per eseguire comunque)"
+
+msgid "E90: Cannot unload last buffer"
+msgstr "E90: Non riesco a scaricare l'ultimo buffer"
+
+msgid "E91: 'shell' option is empty"
+msgstr "E91: opzione 'shell' non impostata"
+
+msgid "E92: Buffer %d not found"
+msgstr "E92: Buffer %d non trovato"
+
+msgid "E93: More than one match for %s"
+msgstr "E93: Più di una corrispondenza per %s"
+
+msgid "E94: No matching buffer for %s"
+msgstr "E94: Nessun buffer corrispondente a %s"
+
+msgid "E95: Buffer with this name already exists"
+msgstr "E95: C'è già un buffer con questo nome"
+
+msgid "E96: Cannot diff more than %d buffers"
+msgstr "E96: Non supporto differenze fra più di %d buffer"
+
+msgid "E97: Cannot create diffs"
+msgstr "E97: Non riesco a creare differenze"
+
+msgid "E98: Cannot read diff output"
+msgstr "E98: Non riesco a leggere output del comando 'diff'"
+
+msgid "E99: Current buffer is not in diff mode"
+msgstr "E99: Buffer corrente non in modalità 'diff'"
+
+msgid "E100: No other buffer in diff mode"
+msgstr "E100: Non c'è nessun altro buffer in modalità 'diff'"
+
+msgid "E101: More than two buffers in diff mode, don't know which one to use"
+msgstr "E101: Più di due buffer in modalità 'diff', non so quale usare"
+
+msgid "E102: Can't find buffer \"%s\""
+msgstr "E102: Non riesco a trovare il buffer: \"%s\""
+
+msgid "E103: Buffer \"%s\" is not in diff mode"
+msgstr "E103: Il buffer \"%s\" non è in modalità 'diff'"
+
+msgid "E104: Escape not allowed in digraph"
+msgstr "E104: Escape non consentito nei digrammi"
+
+msgid "E105: Using :loadkeymap not in a sourced file"
+msgstr "E105: Uso di :loadkeymap fuori da un file di comandi"
+
+msgid "E107: Missing parentheses: %s"
+msgstr "E107: Mancano parentesi: %s"
+
+msgid "E108: No such variable: \"%s\""
+msgstr "E108: Variabile inesistente: \"%s\""
+
+msgid "E109: Missing ':' after '?'"
+msgstr "E109: Manca ':' dopo '?'"
+
+msgid "E110: Missing ')'"
+msgstr "E110: Manca ')'"
+
+msgid "E111: Missing ']'"
+msgstr "E111: Manca ']'"
+
+msgid "E112: Option name missing: %s"
+msgstr "E112: Nome Opzione mancante: %s"
+
+msgid "E113: Unknown option: %s"
+msgstr "E113: Opzione sconosciuta: %s"
+
+msgid "E114: Missing double quote: %s"
+msgstr "E114: Mancano doppi apici: %s"
+
+msgid "E115: Missing single quote: %s"
+msgstr "E115: Manca apice semplice: %s"
+
+msgid "E116: Invalid arguments for function %s"
+msgstr "E116: Argomenti non validi per la funzione: %s"
+
+msgid "E117: Unknown function: %s"
+msgstr "E117: Funzione sconosciuta: %s"
+
+msgid "E118: Too many arguments for function: %s"
+msgstr "E118: Troppi argomenti per la funzione: %s"
+
+msgid "E119: Not enough arguments for function: %s"
+msgstr "E119: La funzione: %s richiede più argomenti"
+
+msgid "E120: Using <SID> not in a script context: %s"
+msgstr "E120: Uso di <SID> fuori dal contesto di uno script: %s"
+
msgid "E121: Undefined variable: %s"
msgstr "E121: Variabile non definita: %s"
msgid "E121: Undefined variable: %c:%s"
msgstr "E121: Variabile non definita: %c:%s"
+msgid "E122: Function %s already exists, add ! to replace it"
+msgstr "E122: La funzione %s esiste già, aggiungi ! per sostituirla"
+
+msgid "E123: Undefined function: %s"
+msgstr "E123: Funzione non definita: %s"
+
+msgid "E124: Missing '(': %s"
+msgstr "E124: Manca '(': %s"
+
+msgid "E125: Illegal argument: %s"
+msgstr "E125: Argomento non consentito: %s"
+
+msgid "E126: Missing :endfunction"
+msgstr "E126: Manca :endfunction"
+
+msgid "E127: Cannot redefine function %s: It is in use"
+msgstr "E127: Non posso ridefinire la funzione %s: È in uso"
+
+msgid "E128: Function name must start with a capital or \"s:\": %s"
+msgstr "E128: Il nome funzione deve iniziare con maiuscola o \"s:\": %s"
+
+msgid "E129: Function name required"
+msgstr "E129: Nome funzione necessario"
+
+msgid "E131: Cannot delete function %s: It is in use"
+msgstr "E131: Non posso eliminare la funzione %s: È in uso"
+
+msgid "E132: Function call depth is higher than 'maxfuncdepth'"
+msgstr ""
+"E132: Nidificazione della chiamata di funzione maggiore di 'maxfuncdepth'"
+
+msgid "E133: :return not inside a function"
+msgstr "E133: :return fuori da una funzione"
+
+msgid "E134: Cannot move a range of lines into itself"
+msgstr "E134: Non si può muovere un intervallo di righe in se stesso"
+
+msgid "E135: *Filter* Autocommands must not change current buffer"
+msgstr "E135: *Filter* Gli autocomandi non devono modificare il buffer in uso"
+
+msgid "E136: viminfo: Too many errors, skipping rest of file"
+msgstr "E136: viminfo: Troppi errori, ignoro il resto del file"
+
+msgid "E137: Viminfo file is not writable: %s"
+msgstr "E137: File viminfo \"%s\" inaccessibile in scrittura"
+
+msgid "E138: Can't write viminfo file %s!"
+msgstr "E138: Non riesco a scrivere il file viminfo %s!"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: File già caricato in un altro buffer"
+
+msgid "E140: Use ! to write partial buffer"
+msgstr "E140: Usa ! per scrivere il buffer incompleto"
+
+msgid "E141: No file name for buffer %ld"
+msgstr "E141: Manca nome file per il buffer %ld"
+
+msgid "E142: File not written: Writing is disabled by 'write' option"
+msgstr "E142: File non scritto: Scrittura inibita da opzione 'write'"
+
+msgid "E143: Autocommands unexpectedly deleted new buffer %s"
+msgstr ""
+"E143: Gli autocomandi hanno inaspettatamente cancellato il nuovo buffer %s"
+
+msgid "E144: non-numeric argument to :z"
+msgstr "E144: argomento non-numerico a :z"
+
+msgid "E145: Shell commands and some functionality not allowed in rvim"
+msgstr "E145: Comandi Shell e alcune funzionalità non consentiti in rvim"
+
+msgid "E146: Regular expressions can't be delimited by letters"
+msgstr "E146: Le espressioni regolari non possono essere delimitate da lettere"
+
+msgid "E147: Cannot do :global recursive with a range"
+msgstr "E147: :global non può essere usato ricorsivamente con un intervallo"
+
+msgid "E148: Regular expression missing from :global"
+msgstr "E148: Manca espressione regolare nel comando :global"
+
+msgid "E149: Sorry, no help for %s"
+msgstr "E149: Spiacente, nessun aiuto per %s"
+
+msgid "E150: Not a directory: %s"
+msgstr "E150: %s non è una directory"
+
+msgid "E151: No match: %s"
+msgstr "E151: Nessuna corrispondenza: %s"
+
+msgid "E152: Cannot open %s for writing"
+msgstr "E152: Non posso aprire %s in scrittura"
+
+msgid "E153: Unable to open %s for reading"
+msgstr "E153: Non riesco ad aprire %s in lettura"
+
+msgid "E154: Duplicate tag \"%s\" in file %s/%s"
+msgstr "E154: Tag duplicato \"%s\" nel file %s/%s"
+
+msgid "E155: Unknown sign: %s"
+msgstr "E155: 'sign' sconosciuto: %s"
+
+msgid "E156: Missing sign name"
+msgstr "E156: Manca nome 'sign'"
+
+msgid "E157: Invalid sign ID: %d"
+msgstr "E157: ID 'sign' non valido: %d"
+
+msgid "E158: Invalid buffer name: %s"
+msgstr "E158: Nome buffer non valido: %s"
+
+msgid "E159: Missing sign number"
+msgstr "E159: Manca numero 'sign'"
+
+msgid "E160: Unknown sign command: %s"
+msgstr "E160: Comando 'sign' sconosciuto: %s"
+
+msgid "E161: Breakpoint not found: %s"
+msgstr "E161: Breakpoint %s non trovato"
+
+msgid "E162: No write since last change for buffer \"%s\""
+msgstr "E162: Buffer \"%s\" non salvato dopo modifica"
+
+msgid "E163: There is only one file to edit"
+msgstr "E163: C'è un solo file da elaborare"
+
+msgid "E164: Cannot go before first file"
+msgstr "E164: Non posso andare davanti al primo file"
+
+msgid "E165: Cannot go beyond last file"
+msgstr "E165: Non posso oltrepassare l'ultimo file"
+
+msgid "E166: Can't open linked file for writing"
+msgstr "E166: Non posso aprire il file collegato ('linked') in scrittura"
+
+msgid "E167: :scriptencoding used outside of a sourced file"
+msgstr "E167: :scriptencoding usato fuori da un file di comandi"
+
+msgid "E168: :finish used outside of a sourced file"
+msgstr "E168: :finish usato fuori da file di comandi"
+
+msgid "E169: Command too recursive"
+msgstr "E169: Comando troppo ricorsivo"
+
+msgid "E170: Missing :endwhile"
+msgstr "E170: Manca :endwhile"
+
+msgid "E170: Missing :endfor"
+msgstr "E170: Manca :endfor"
+
+msgid "E171: Missing :endif"
+msgstr "E171: Manca :endif"
+
+msgid "E172: Missing marker"
+msgstr "E172: Manca un marcatore"
+
+msgid "E173: %d more file to edit"
+msgstr "E173: %d ulteriore file da elaborare"
+
+msgid "E173: %d more files to edit"
+msgstr "E173: %d ulteriori file da elaborare"
+
+msgid "E174: Command already exists: add ! to replace it: %s"
+msgstr "E174: Il comando esiste già: aggiungi ! per sostituirlo: %s"
+
+msgid "E175: No attribute specified"
+msgstr "E175: Nessun attributo specificato"
+
+msgid "E176: Invalid number of arguments"
+msgstr "E176: Numero di argomenti non valido"
+
+msgid "E177: Count cannot be specified twice"
+msgstr "E177: Non si può specificare due volte il contatore"
+
+msgid "E178: Invalid default value for count"
+msgstr "E178: Valore predefinito del contatore non valido"
+
+msgid "E179: argument required for %s"
+msgstr "E179: argomento necessario per %s"
+
+msgid "E180: Invalid complete value: %s"
+msgstr "E180: Valore %s non valido per 'complete'"
+
+msgid "E180: Invalid address type value: %s"
+msgstr "E180: Tipo di indirizzo non valido: %s"
+
+msgid "E181: Invalid attribute: %s"
+msgstr "E181: Attributo non valido: %s"
+
+msgid "E182: Invalid command name"
+msgstr "E182: Nome comando non valido"
+
+msgid "E183: User defined commands must start with an uppercase letter"
+msgstr ""
+"E183: I comandi definiti dall'utente devono iniziare con lettera maiuscola"
+
msgid "E184: No such user-defined command: %s"
msgstr "E184: Comando definito dall'utente %s inesistente"
+msgid "E185: Cannot find color scheme '%s'"
+msgstr "E185: Non riesco a trovare schema colore '%s'"
+
+msgid "E186: No previous directory"
+msgstr "E186: Non c'è una directory precedente"
+
+msgid "E187: Directory unknown"
+msgstr "E187: Directory sconosciuta"
+
+msgid "E188: Obtaining window position not implemented for this platform"
+msgstr ""
+"E188: Informazioni posizione finestra non disponibili su questa piattaforma"
+
+msgid "E189: \"%s\" exists (add ! to override)"
+msgstr "E189: \"%s\" esiste (aggiungi ! per eseguire comunque)"
+
+msgid "E190: Cannot open \"%s\" for writing"
+msgstr "E190: Non riesco ad aprire \"%s\" in scrittura"
+
+msgid "E191: Argument must be a letter or forward/backward quote"
+msgstr ""
+"E191: L'argomento dev'essere una lettera, oppure un apice/apice inversa"
+
+msgid "E192: Recursive use of :normal too deep"
+msgstr "E192: Uso ricorsivo di :normal troppo esteso"
+
+msgid "E193: %s not inside a function"
+msgstr "E193: %s non all'interno di una funzione"
+
+msgid "E194: No alternate file name to substitute for '#'"
+msgstr "E194: Nessun nome file alternativo da sostituire a '#'"
+
+msgid "E195: Cannot open viminfo file for reading"
+msgstr "E195: Non posso aprire il file viminfo in lettura"
+
msgid "E196: No digraphs in this version"
msgstr "E196: Digrammi non supportati in questa versione"
+msgid "E197: Cannot set language to \"%s\""
+msgstr "E197: Non posso impostare lingua a \"%s\""
+
+msgid "E199: Active window or buffer deleted"
+msgstr "E199: Finestra attiva o buffer cancellato"
+
+msgid "E200: *ReadPre autocommands made the file unreadable"
+msgstr "E200: Gli autocomandi *ReadPre hanno reso il file illeggibile"
+
+msgid "E201: *ReadPre autocommands must not change current buffer"
+msgstr "E201: Gli autocomandi *ReadPre non devono modificare il buffer in uso"
+
+msgid "E202: Conversion made file unreadable!"
+msgstr "E202: La conversione ha reso il file illeggibile!"
+
+msgid "E203: Autocommands deleted or unloaded buffer to be written"
+msgstr "E203: Buffer in scrittura cancellato o scaricato dagli autocomandi"
+
+msgid "E204: Autocommand changed number of lines in unexpected way"
+msgstr "E204: L'autocomando ha modificato numero righe in maniera imprevista"
+
+msgid "E205: Patchmode: can't save original file"
+msgstr "E205: Patchmode: non posso salvare il file originale"
+
+msgid "E206: patchmode: can't touch empty original file"
+msgstr "E206: Patchmode: non posso alterare il file vuoto originale"
+
+msgid "E207: Can't delete backup file"
+msgstr "E207: Non riesco a cancellare il file di backup"
+
+msgid "E208: Error writing to \"%s\""
+msgstr "E208: Errore in scrittura di \"%s\""
+
+msgid "E209: Error closing \"%s\""
+msgstr "E209: Errore in chiusura di \"%s\""
+
+msgid "E210: Error reading \"%s\""
+msgstr "E210: Errore in lettura di \"%s\""
+
+msgid "E211: File \"%s\" no longer available"
+msgstr "E211: Il file \"%s\" non esiste più"
+
+msgid "E212: Can't open file for writing"
+msgstr "E212: Non posso aprire il file in scrittura"
+
+msgid "E213: Cannot convert (add ! to write without conversion)"
+msgstr ""
+"E213: Non riesco a convertire (aggiungi ! per scrivere senza conversione)"
+
+msgid "E214: Can't find temp file for writing"
+msgstr "E214: Non riesco a trovare un file 'temp' su cui scrivere"
+
+msgid "E215: Illegal character after *: %s"
+msgstr "E215: Carattere non ammesso dopo *: %s"
+
+msgid "E216: No such event: %s"
+msgstr "E216: Evento inesistente: %s"
+
+msgid "E216: No such group or event: %s"
+msgstr "E216: Evento o gruppo inesistente: %s"
+
+msgid "E217: Can't execute autocommands for ALL events"
+msgstr "E217: Non posso eseguire autocomandi per TUTTI gli eventi"
+
+msgid "E218: autocommand nesting too deep"
+msgstr "E218: nidificazione dell'autocomando troppo estesa"
+
+msgid "E219: Missing {."
+msgstr "E219: Manca {."
+
+msgid "E220: Missing }."
+msgstr "E220: Manca }."
+
+msgid "E221: Marker cannot start with lower case letter"
+msgstr "E221: Un marcatore non può iniziare con una lettera minuscola"
+
+msgid "E222: Add to internal buffer that was already read from"
+msgstr "E222: Aggiunta a buffer interno da cui si era già letto"
+
+msgid "E223: recursive mapping"
+msgstr "E223: mappatura ricorsiva"
+
+msgid "E224: global abbreviation already exists for %s"
+msgstr "E224: una abbreviazione globale già esiste per %s"
+
+msgid "E225: global mapping already exists for %s"
+msgstr "E225: una mappatura globale già esiste per %s"
+
+msgid "E226: abbreviation already exists for %s"
+msgstr "E226: un'abbreviazione già esiste per %s"
+
+msgid "E227: mapping already exists for %s"
+msgstr "E227: una mappatura già esiste per %s"
+
+msgid "E228: makemap: Illegal mode"
+msgstr "E228: makemap: modo non consentito"
+
+msgid "E229: Cannot start the GUI"
+msgstr "E229: Non posso inizializzare la GUI"
+
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: Non posso leggere da \"%s\""
+
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' non valido"
+
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: Non riesco a creare 'BalloonEval' con sia messaggio che callback"
+
+msgid "E233: cannot open display"
+msgstr "E233: non riesco ad aprire lo schermo"
+
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: Fontset sconosciuto: %s"
+
+msgid "E235: Unknown font: %s"
+msgstr "E235: Font sconosciuto: %s"
+
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: Carattere \"%s\" non di larghezza fissa"
+
+msgid "E237: Printer selection failed"
+msgstr "E237: Scelta stampante non riuscita"
+
+msgid "E238: Print error: %s"
+msgstr "E238: Errore durante stampa: %s"
+
+msgid "E239: Invalid sign text: %s"
+msgstr "E239: Testo 'sign' non valido: %s"
+
+msgid "E240: No connection to the X server"
+msgstr "E240: Manca connessione con server Vim"
+
+msgid "E241: Unable to send to %s"
+msgstr "E241: Impossibile inviare a %s"
+
+msgid "E242: Can't split a window while closing another"
+msgstr "E242: Non posso dividere una finestra mentre ne sto chiudendo un'altra"
+
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: Argomento non supportato: \"-%s\"; Usa la versione OLE."
+
+msgid "E244: Illegal %s name \"%s\" in font name \"%s\""
+msgstr ""
+"E244: Nome %s non consentito \"%s\" nel nome di carattere \"%s\""
+
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: Carattere non consentito '%c' nel nome di carattere \"%s\""
+
+msgid "E246: FileChangedShell autocommand deleted buffer"
+msgstr "E246: L'autocomando 'FileChangedShell' ha cancellato il buffer"
+
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: non esiste server registrato con nome \"%s\""
+
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: Fallito invio comando a programma destinatario"
+
+msgid "E249: window layout changed unexpectedly"
+msgstr "E249: la struttura della finestra è inaspettatamente cambiata"
+
+msgid "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: Mancano descrizioni per i seguenti caratteri nel font: %s"
+
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: Proprietà registry relative a VIM non adeguate. Cancellate!"
+
+msgid "E252: Fontset name: %s - Font '%s' is not fixed-width"
+msgstr "E252: Nome fontset: %s - Carattere '%s' non di larghezza fissa"
+
+msgid "E253: Fontset name: %s"
+msgstr "E253: Nome fontset: %s"
+
msgid "E254: Cannot allocate color %s"
msgstr "E254: Non riesco ad allocare il colore %s"
+msgid "E255: Couldn't read in sign data"
+msgstr "E255: Non sono riuscito a leggere i dati del 'sign'"
+
+msgid "E257: cstag: tag not found"
+msgstr "E257: cstag: tag non trovato"
+
+msgid "E258: Unable to send to client"
+msgstr "E258: Impossibile inviare al client"
+
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: nessuna corrispondenza trovata per la richiesta cscope %s di %s"
+
+msgid "E260: Missing name after ->"
+msgstr "E260: Manca nome dopo ->"
+
+msgid "E261: cscope connection %s not found"
+msgstr "E261: connessione cscope %s non trovata"
+
+msgid "E262: error reading cscope connection %d"
+msgstr "E262: errore leggendo connessione cscope %d"
+
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: Spiacente, comando non disponibile, non riesco a caricare libreria "
+"programmi Python."
+
+msgid "E264: Python: Error initialising I/O objects"
+msgstr "E264: Python: Errore di inizializzazione oggetti I/O"
+
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ dev'essere un'istanza di Stringa"
+
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: Spiacente, comando non disponibile, non riesco a caricare libreria "
+"programmi Ruby."
+
+msgid "E267: unexpected return"
+msgstr "E267: return inatteso"
+
+msgid "E268: unexpected next"
+msgstr "E268: next inatteso"
+
+msgid "E269: unexpected break"
+msgstr "E269: break inatteso"
+
+msgid "E270: unexpected redo"
+msgstr "E270: redo inatteso"
+
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: retry fuori da clausola rescue"
+
+msgid "E272: unhandled exception"
+msgstr "E272: eccezione non gestita"
+
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: tipo sconosciuto di salto nel programma %d"
+
+msgid "E274: No white space allowed before parenthesis"
+msgstr "E274: Nessuno spazio bianco consentito prima delle parentesi"
+
+msgid "E275: Cannot add text property to unloaded buffer"
+msgstr "E275: Non posso aggiungere proprietà di testo a un buffer scaricato"
+
+msgid "E276: Cannot use function as a method: %s"
+msgstr "E276: Non posso usare la funzione come un metodo: %s"
+
+msgid "E277: Unable to read a server reply"
+msgstr "E277: Non riesco a leggere una risposta del server"
+
+msgid "E279: Sorry, ++shell is not supported on this system"
+msgstr "E279: Spiacente, ++shell non è supportato in questo sistema"
+
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: ERRORE FATALE TCL: reflist corrotta!? Si prega notificare a vim-"
+"dev@vim.org"
+
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: Non posso leggere da \"%s\""
+
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: Nessuna marcatura corrispondente a \"%s\""
+
+msgid "E284: Cannot set IC values"
+msgstr "E284: Non posso assegnare valori IC"
+
+msgid "E285: Failed to create input context"
+msgstr "E285: Creazione di un contesto di input fallita"
+
+msgid "E286: Failed to open input method"
+msgstr "E286: Apertura Metodo di Input fallita"
+
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: Avviso: Non posso assegnare IM a 'destroy callback'"
+
+msgid "E288: input method doesn't support any style"
+msgstr "E288: Metodo di Input non sopporta alcuno stile"
+
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: Metodo di Input non supporta il mio tipo di preedit"
+
+msgid "E290: List or number required"
+msgstr "E290: È necessaria una Lista o un Numero"
+
+msgid "E292: Invalid count for del_bytes(): %ld"
+msgstr "E292: Contatore non valido per del_bytes(): %ld"
+
+msgid "E293: block was not locked"
+msgstr "E293: il blocco non era riservato"
+
+msgid "E294: Seek error in swap file read"
+msgstr "E294: Errore di posizionamento durante lettura swap file"
+
+msgid "E295: Read error in swap file"
+msgstr "E295: Errore leggendo swap file"
+
+msgid "E296: Seek error in swap file write"
+msgstr "E296: Errore di posizionamento scrivendo swap file"
+
+msgid "E297: Write error in swap file"
+msgstr "E297: Errore scrivendo swap file"
+
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: Non riesco a leggere blocco numero 0?"
+
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: Non riesco a leggere blocco numero 1?"
+
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: Non riesco a leggere blocco numero 2?"
+
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: Lo swap file esiste già (un link simbolico?)"
+
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: Ahimè, lo swap file è perduto!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: Non riesco a rinominare lo swap file"
+
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr ""
+"E303: Non riesco ad aprile lo swap file per \"%s\", recupero impossibile"
+
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): Non riesco a leggere blocco 0??"
+
+msgid "E305: No swap file found for %s"
+msgstr "E305: Nessun swap file trovato per %s"
+
+msgid "E306: Cannot open %s"
+msgstr "E306: Non riesco ad aprire %s"
+
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s non sembra uno swap file Vim"
+
+msgid "E308: Warning: Original file may have been changed"
+msgstr ""
+"E308: Avviso: il file originale può essere stato modificato nel frattempo"
+
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: Impossibile leggere blocco 1 da %s"
+
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: ID del Blocco 1 errato (che %s non sia un .swp file?)"
+
+msgid "E311: Recovery Interrupted"
+msgstr "E311: Recupero Interrotto"
+
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: Trovati errori durante recupero; controlla righe che iniziano con ???"
+
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: Non posso preservare, manca swap file"
+
+msgid "E314: Preserve failed"
+msgstr "E314: Preservazione fallita"
+
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: numero di riga non valido: %ld"
+
+msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
+msgstr "E316: ml_get: non riesco a trovare la riga %ld nel buffer %d %s"
+
+msgid "E317: pointer block id wrong"
+msgstr "E317: ID blocco puntatori errato"
+
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: ID blocco puntatori errato 2"
+
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: ID blocco puntatori errato 3"
+
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: ID blocco puntatori errato 4"
+
+msgid "E318: Updated too many blocks?"
+msgstr "E318: Aggiornati troppi blocchi?"
+
+msgid "E319: Sorry, the command is not available in this version"
+msgstr "E319: Spiacente, comando non disponibile in questa versione"
+
+msgid "E320: Cannot find line %ld"
+msgstr "E320: Non riesco a trovare la riga %ld"
+
+msgid "E321: Could not reload \"%s\""
+msgstr "E321: Non riesco a ricaricare \"%s\""
+
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: numero di riga non ammissibile: %ld dopo la fine"
+
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: contatore righe errato nel blocco %ld"
+
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: Non riesco ad aprire file PostScript di output"
+
+msgid "E325: ATTENTION"
+msgstr "E325: ATTENZIONE"
+
+msgid "E326: Too many swap files found"
+msgstr "E326: Trovati troppi swap file"
+
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr ""
+"E327: Parte del percorso di questo elemento di Menù non è un sotto-Menù"
+
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: I Menù esistono solo in un'altra modalità"
+
+msgid "E329: No menu \"%s\""
+msgstr "E329: Nessun Menù \"%s\""
+
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: Il percorso del Menù non deve condurre a un sotto-Menù"
+
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr ""
+"E331: Non si devono aggiungere elementi di Menù direttamente alla barra Menù"
+
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: Il separatore non può far parte di un percorso di Menù"
+
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: Il percorso Menù deve condurre ad un elemento Menù"
+
+msgid "E334: Menu not found: %s"
+msgstr "E334: Menù non trovato: %s"
+
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: Menù non definito per la modalità %s"
+
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: Il percorso Menù deve condurre ad un sotto-Menù"
+
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: Menù non trovato - controlla nomi Menù"
+
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: Spiacente, niente esplorazione file in modalità console"
+
+msgid "E339: Pattern too long"
+msgstr "E339: Espressione troppo lunga"
+
+msgid "E341: Internal error: lalloc(0, )"
+msgstr "E341: Errore interno: lalloc(0, )"
+
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: Non c'è più memoria! (stavo allocando %lu byte)"
+
+msgid ""
+"E343: Invalid path: '**[number]' must be at the end of the path or be "
+"followed by '%s'."
+msgstr ""
+"E343: Percorso non valido: '**[numero]' dev'essere a fine percorso o essere "
+"seguito da '%s'."
+
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: Non riesco a trovare la directory \"%s\" nel 'cdpath'"
+
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: Non riesco a trovare il file \"%s\" nel percorso"
+
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: Nessun altra directory \"%s\" trovata nel 'cdpath'"
+
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: Nessun altro file \"%s\" trovato nel percorso"
+
+msgid "E348: No string under cursor"
+msgstr "E348: Nessuna stringa sotto il cursore"
+
+msgid "E349: No identifier under cursor"
+msgstr "E349: Nessun identificativo sotto il cursore"
+
+msgid "E350: Cannot create fold with current 'foldmethod'"
+msgstr "E350: Non posso creare piegatura con il 'foldmethod' in uso"
+
+msgid "E351: Cannot delete fold with current 'foldmethod'"
+msgstr "E351: Non posso cancellare piegatura con il 'foldmethod' in uso"
+
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: Non posso togliere piegature con il 'foldmethod' in uso"
+
+msgid "E353: Nothing in register %s"
+msgstr "E353: Niente nel registro %s"
+
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: Nome registro non valido: '%s'"
+
+msgid "E355: Unknown option: %s"
+msgstr "E355: Opzione sconosciuta: %s"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: ERRORE get_varp"
+
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': Manca carattere corrispondente per %s"
+
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': Caratteri in più dopo il ';': %s"
+
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: Impostazione modalità schermo non supportata"
+
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: Non posso eseguire la shell con l'opzione -f"
+
+msgid "E362: Using a boolean value as a Float"
+msgstr "E362: Uso di un valore Booleano come un Numero-a-virgola-mobile"
+
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: l'espressione usa troppa memoria rispetto a 'maxmempattern'"
+
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: Chiamata a libreria fallita per \"%s()\""
+
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: Non riesco ad aprire file PostScript"
+
+msgid "E366: Not allowed to enter a popup window"
+msgstr "E366: Non si può inserire testo in una finestra dinamica"
+
+msgid "E367: No such group: \"%s\""
+msgstr "E367: Gruppo inesistente: \"%s\""
+
+msgid "E368: got SIG%s in libcall()"
+msgstr "E368: ottenuto SIG%s in libcall()"
+
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: elemento non valido in %s%%[]"
+
+msgid "E370: Could not load library %s: %s"
+msgstr "E370: Non riesco a caricare la libreria %s: %s"
+
+msgid "E371: Command not found"
+msgstr "E371: Comando non trovato"
+
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: Troppi %%%c nella stringa di 'format'"
+
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: %%%c imprevisto nella stringa di 'format'"
+
+msgid "E374: Missing ] in format string"
+msgstr "E374: Manca ] nella stringa di 'format'"
+
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: %%%c non supportato nella stringa di 'format'"
+
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: %%%c non valido nel prefisso della stringa di 'format'"
+
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: %%%c non valido nella stringa di 'format'"
+
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' non contiene alcun modello"
+
+msgid "E379: Missing or empty directory name"
+msgstr "E379: Nome directory mancante o nullo"
+
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: Al fondo dello stack di quickfix"
+
+msgid "E381: At top of quickfix stack"
+msgstr "E381: In cima allo stack di quickfix"
+
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: Non posso scrivere, l'opzione 'buftype' è impostata"
+
+msgid "E383: Invalid search string: %s"
+msgstr "E383: Stringa di ricerca non valida: %s"
+
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: la ricerca ha raggiunto la CIMA senza successo per: %s"
+
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: la ricerca ha raggiunto il FONDO senza successo per: %s"
+
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: '?' o '/' atteso dopo ';'"
+
+msgid "E387: Match is on current line"
+msgstr "E387: Corrispondenza nella riga corrente"
+
+msgid "E388: Couldn't find definition"
+msgstr "E388: Non sono riuscito a trovare la definizione"
+
+msgid "E389: Couldn't find pattern"
+msgstr "E389: Non sono riuscito a trovare il modello"
+
+msgid "E390: Illegal argument: %s"
+msgstr "E390: Argomento non consentito: %s"
+
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: 'cluster' sintattico inesistente: %s"
+
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: 'cluster' sintattico inesistente: %s"
+
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: group[t]here non consentito qui"
+
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: Elemento di 'region' non trovato per %s"
+
+msgid "E395: contains argument not accepted here"
+msgstr "E395: contiene argomenti non accettati qui"
+
+msgid "E397: Filename required"
+msgstr "E397: Nome file necessario"
+
+msgid "E398: Missing '=': %s"
+msgstr "E398: Manca '=': %s"
+
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: Argomenti non sufficienti per: 'syntax region' %s"
+
+msgid "E400: No cluster specified"
+msgstr "E400: Nessun 'cluster' specificato"
+
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: Delimitatore di espressione non trovato: %s"
+
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: Spazzatura dopo espressione: %s"
+
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr ""
+"E403: syntax sync: espressione di continuazione riga specificata due volte"
+
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: Argomenti non consentiti: %s"
+
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: Manca '=': %s"
+
+msgid "E406: Empty argument: %s"
+msgstr "E406: Argomento nullo: %s"
+
+msgid "E407: %s not allowed here"
+msgstr "E407: %s non consentito qui"
+
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s deve venire per primo nella lista 'contains'"
+
+msgid "E409: Unknown group name: %s"
+msgstr "E409: Nome gruppo sconosciuto: %s"
+
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: Sotto-comando :syntax non valido: %s"
+
+msgid "E411: highlight group not found: %s"
+msgstr "E411: gruppo evidenziazione non trovato: %s"
+
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: Argomenti non sufficienti: \":highlight link %s\""
+
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: Troppi argomenti: \":highlight link %s\""
+
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: 'group' ha impostazioni, 'highlight link' ignorato"
+
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: segno '=' inatteso: %s"
+
+msgid "E416: missing equal sign: %s"
+msgstr "E416: manca segno '=': %s"
+
+msgid "E417: missing argument: %s"
+msgstr "E417: manca argomento: %s"
+
+msgid "E418: Illegal value: %s"
+msgstr "E418: Valore non consentito: %s"
+
+msgid "E419: FG color unknown"
+msgstr "E419: colore di testo sconosciuto"
+
+msgid "E420: BG color unknown"
+msgstr "E420: colore di sfondo sconosciuto"
+
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: Numero o nome di colore non riconosciuto: %s"
+
+msgid "E422: terminal code too long: %s"
+msgstr "E422: codice terminale troppo lungo: %s"
+
+msgid "E423: Illegal argument: %s"
+msgstr "E423: Argomento non consentito: %s"
+
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: Troppi gruppi evidenziazione differenti in uso"
+
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: Non posso andare prima del primo tag corrispondente"
+
+msgid "E426: tag not found: %s"
+msgstr "E426: tag non trovato: %s"
+
+msgid "E427: There is only one matching tag"
+msgstr "E427: C'è solo un tag corrispondente"
+
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: Non posso andare oltre l'ultimo tag corrispondente"
+
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: Il file \"%s\" non esiste"
+
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: Percorso tag file troncato per %s\n"
+
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: Errore di formato nel tag file \"%s\""
+
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: Tag file non ordinato alfabeticamente: %s"
+
+msgid "E433: No tags file"
+msgstr "E433: Nessun tag file"
+
+msgid "E434: Can't find tag pattern"
+msgstr "E434: Non riesco a trovare modello tag"
+
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: Non riesco a trovare tag, sto solo tirando a indovinare!"
+
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: Nessuna descrizione per \"%s\" in 'termcap'"
+
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: capacità \"cm\" del terminale necessaria"
+
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: numeri righe errati"
+
+msgid "E439: undo list corrupt"
+msgstr "E439: lista 'undo' non valida"
+
+msgid "E440: undo line missing"
+msgstr "E440: riga di 'undo' mancante"
+
+msgid "E441: There is no preview window"
+msgstr "E441: Non c'è una finestra di anteprima"
+
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: Non riesco a dividere ALTO-SX e BASSO-DX contemporaneamente"
+
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: Non posso ruotare quando un'altra finestra è divisa in due"
+
+msgid "E444: Cannot close last window"
+msgstr "E444: Non riesco a chiudere l'ultima finestra"
+
+msgid "E445: Other window contains changes"
+msgstr "E445: Altre finestre contengono modifiche"
+
+msgid "E446: No file name under cursor"
+msgstr "E446: Nessun nome file sotto il cursore"
+
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: Non riesco a trovare il file \"%s\" nel percorso"
+
+msgid "E448: Could not load library function %s"
+msgstr "E448: Non posso caricare la funzione di libreria %s"
+
+msgid "E449: Invalid expression received"
+msgstr "E449: Ricevuta un'espressione non valida"
+
+msgid "E450: buffer number, text or a list required"
+msgstr "E450: occorre un numero di buffer, del testo, o una Lista"
+
+msgid "E451: Expected }: %s"
+msgstr "E451: Atteso }: %s"
+
+msgid "E452: Double ; in list of variables"
+msgstr "E452: Doppio ; nella lista di variabili"
+
+msgid "E453: UL color unknown"
+msgstr "E453: colore UL sconosciuto"
+
+msgid "E454: function list was modified"
+msgstr "E454: la lista funzioni è stata cambiata"
+
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: Errore in scrittura su file PostScript di output"
+
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: Non riesco ad aprire il file \"%s\""
+
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: Non trovo file risorse PostScript \"%s.ps\""
+
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: Non riesco a leggere file risorse PostScript \"%s\""
+
+msgid "E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr ""
+"E458: Non riesco ad allocare elemento di colormap, alcuni colori possono "
+"essere errati"
+
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: Non posso tornare alla directory precedente"
+
+msgid "E460: entries missing in mapset() dict argument"
+msgstr "E460: elemento non presente nell'argomento dict di mapset()"
+
+msgid "E461: Illegal variable name: %s"
+msgstr "E461: Nome di variabile non consentito: %s"
+
+msgid "E462: Could not prepare for reloading \"%s\""
+msgstr "E462: Non riesco a preparare per ricaricare \"%s\""
+
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: Regione protetta, impossibile modificare"
+
msgid "E464: Ambiguous use of user-defined command"
msgstr "E464: Uso ambiguo di comando definito dall'utente"
+msgid "E465: :winsize requires two number arguments"
+msgstr "E465: :winsize richiede due argomenti numerici"
+
+msgid "E466: :winpos requires two number arguments"
+msgstr "E466: :winpos richiede due argomenti numerici"
+
+msgid "E467: Custom completion requires a function argument"
+msgstr ""
+"E467: Il completamento personalizzato richiede un argomento di funzione"
+
+msgid "E468: Completion argument only allowed for custom completion"
+msgstr ""
+"E468: Argomento di completamento consentito solo per completamento "
+"personalizzato"
+
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: flag cscopequickfix %c non valido per %c"
+
+msgid "E470: Command aborted"
+msgstr "E470: Comando finito male"
+
+msgid "E471: Argument required"
+msgstr "E471: Argomento necessario"
+
+msgid "E472: Command failed"
+msgstr "E472: Comando fallito"
+
+msgid "E473: Internal error in regexp"
+msgstr "E473: Errore interno espressione regolare"
+
+msgid "E474: Invalid argument"
+msgstr "E474: Argomento non valido"
+
+msgid "E475: Invalid argument: %s"
+msgstr "E475: Argomento non valido: %s"
+
+msgid "E475: Invalid value for argument %s"
+msgstr "E475: Valore non valido per l'argomento %s"
+
+msgid "E475: Invalid value for argument %s: %s"
+msgstr "E475: Valore non valido per l'argomento %s: %s"
+
msgid "E476: Invalid command"
msgstr "E476: Comando non valido"
msgid "E476: Invalid command: %s"
msgstr "E476: Comando non valido: %s"
+msgid "E477: No ! allowed"
+msgstr "E477: ! non consentito"
+
+msgid "E478: Don't panic!"
+msgstr "E478: Non lasciarti prendere dal panico!"
+
+msgid "E479: No match"
+msgstr "E479: Nessuna corrispondenza"
+
+msgid "E480: No match: %s"
+msgstr "E480: Nessuna corrispondenza: %s"
+
+msgid "E481: No range allowed"
+msgstr "E481: Nessun intervallo consentito"
+
+msgid "E482: Can't create file %s"
+msgstr "E482: Non riesco a creare il file %s"
+
+msgid "E483: Can't get temp file name"
+msgstr "E483: Non riesco ad ottenere nome file 'temp'"
+
+msgid "E484: Can't open file %s"
+msgstr "E484: Non riesco ad aprire il file %s"
+
+msgid "E485: Can't read file %s"
+msgstr "E485: Non riesco a leggere il file %s"
+
+msgid "E486: Pattern not found"
+msgstr "E486: Espressione non trovata"
+
+msgid "E486: Pattern not found: %s"
+msgstr "E486: Espressione non trovata: %s"
+
+msgid "E487: Argument must be positive"
+msgstr "E487: L'argomento dev'essere positivo"
+
+msgid "E488: Trailing characters"
+msgstr "E488: Caratteri in più a fine comando"
+
+msgid "E488: Trailing characters: %s"
+msgstr "E488: Caratteri in più alla fine: %s"
+
+msgid "E489: no call stack to substitute for \"<stack>\""
+msgstr "E489: nessuna stack di chiamata da sostituire per \"<stack>\""
+
+msgid "E490: No fold found"
+msgstr "E490: Non trovo alcuna piegatura"
+
+msgid "E491: json decode error at '%s'"
+msgstr "E491: errore di decodifica json a '%s'"
+
+msgid "E492: Not an editor command"
+msgstr "E492: Non è un comando dell'editor"
+
+msgid "E493: Backwards range given"
+msgstr "E493: Intervallo rovesciato"
+
+msgid "E494: Use w or w>>"
+msgstr "E494: Usa w oppure w>>"
+
+msgid "E495: no autocommand file name to substitute for \"<afile>\""
+msgstr "E495: nessun file di autocomandi da sostituire per \"<afile>\""
+
+msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
+msgstr ""
+"E496: nessun numero di buffer di autocomandi da sostituire per \"<abuf>\""
+
+msgid "E497: no autocommand match name to substitute for \"<amatch>\""
+msgstr ""
+"E497: nessun nome di autocomandi trovato da sostituire per \"<amatch>\""
+
+msgid "E498: no :source file name to substitute for \"<sfile>\""
+msgstr ""
+"E498: nessun nome di file :source trovato da sostituire per \"<sfile>\""
+
+msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
+msgstr "E499: Un nome di file nullo per '%' o '#', va bene solo con \":p:h\""
+
+msgid "E500: Evaluates to an empty string"
+msgstr "E500: Il valore è una stringa nulla"
+
+msgid "E501: At end-of-file"
+msgstr "E501: Alla fine-file"
+
+msgid "is not a file or writable device"
+msgstr "non è un file o un dispositivo su cui si possa scrivere"
+
+msgid "E503: \"%s\" is not a file or writable device"
+msgstr "E503: \"%s\" non è un file o un dispositivo scrivibile"
+
+msgid "is read-only (cannot override: \"W\" in 'cpoptions')"
+msgstr "è in sola lettura (non posso annullare: \"W\" in 'cpoptions')"
+
+msgid "is read-only (add ! to override)"
+msgstr "è in sola-lettura (aggiungi ! per eseguire comunque)"
+
+msgid "E505: \"%s\" is read-only (add ! to override)"
+msgstr "E505: \"%s\" è in sola-lettura (aggiungi ! per eseguire comunque)"
+
+msgid "E506: Can't write to backup file (add ! to override)"
+msgstr ""
+"E506: Non posso scrivere sul file di backup (aggiungi ! per eseguire "
+"comunque)"
+
+msgid "E507: Close error for backup file (add ! to write anyway)"
+msgstr ""
+"E507: Errore in chiusura per il file di backup (aggiungi ! per scrivere "
+"comunque)"
+
+msgid "E508: Can't read file for backup (add ! to write anyway)"
+msgstr ""
+"E508: Non riesco a leggere il file di backup (aggiungi ! per scrivere "
+"comunque)"
+
+msgid "E509: Cannot create backup file (add ! to override)"
+msgstr ""
+"E509: Non posso creare il file di backup (aggiungi ! per eseguire comunque)"
+
+msgid "E510: Can't make backup file (add ! to write anyway)"
+msgstr ""
+"E510: Non posso creare il file di backup (aggiungi ! per srivere comunque)"
+
+msgid "E511: netbeans already connected"
+msgstr "E511: netbeans già connesso"
+
+msgid "E512: Close failed"
+msgstr "E512: Chiusura fallita"
+
+msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
+msgstr ""
+"E513: errore in scrittura, conversione fallita (rendere 'fenc' nullo per "
+"eseguire comunque)"
+
+msgid ""
+"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
+"override)"
+msgstr ""
+"E513: errore in scrittura, conversione fallita alla riga %ld (rendere 'fenc' "
+"nullo per eseguire comunque)"
+
+msgid "E514: write error (file system full?)"
+msgstr "E514: errore in scrittura ('File System' pieno?)"
+
+msgid "E515: No buffers were unloaded"
+msgstr "E515: Nessun buffer scaricato"
+
+msgid "E516: No buffers were deleted"
+msgstr "E516: Nessun buffer tolto dalla lista"
+
+msgid "E517: No buffers were wiped out"
+msgstr "E517: Nessun buffer cancellato"
+
+msgid "E518: Unknown option"
+msgstr "E518: Opzione sconosciuta"
+
+msgid "E519: Option not supported"
+msgstr "E519: Opzione non supportata"
+
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: Non consentito in una 'modeline'"
+
+msgid "E521: Number required after ="
+msgstr "E521: Richiesto un numero dopo ="
+
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: Richiesto un numero: &%s = '%s'"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: Non trovato in 'termcap'"
+
+msgid "E523: Not allowed here"
+msgstr "E523: Non consentito qui"
+
+msgid "E524: Missing colon"
+msgstr "E524: Manca ':'"
+
+msgid "E525: Zero length string"
+msgstr "E525: Stringa nulla"
+
+msgid "E526: Missing number after <%s>"
+msgstr "E526: Manca numero dopo <%s>"
+
+msgid "E527: Missing comma"
+msgstr "E527: Manca virgola"
+
+msgid "E528: Must specify a ' value"
+msgstr "E528: Devi specificare un valore '"
+
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: Non posso assegnare a 'term' il valore 'stringa nulla'"
+
+msgid "E530: Cannot change 'term' in the GUI"
+msgstr "E530: Non posso modificare 'term' all'interno della GUI"
+
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: Usa \":gui\" per far partire la GUI"
+
+msgid "E532: highlighting color name too long in defineAnnoType"
+msgstr "E532: nome colore evidenziazione troppo lungo in defineAnnoType"
+
+msgid "E533: can't select wide font"
+msgstr "E533: non posso selezionare 'wide font'"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: 'Wide font' non valido"
+
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: Carattere non consentito dopo <%c>"
+
+msgid "E536: comma required"
+msgstr "E536: virgola mancante"
+
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' dev'essere nulla o contenere %s"
+
+msgid "E539: Illegal character <%s>"
+msgstr "E539: Carattere non consentito <%s>"
+
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: Espressione non terminata"
+
+msgid "E542: unbalanced groups"
+msgstr "E542: gruppi sbilanciati"
+
+msgid "E543: Not a valid codepage"
+msgstr "E543: Codepage non valido"
+
+msgid "E544: Keymap file not found"
+msgstr "E544: File keymap non trovato"
+
+msgid "E545: Missing colon"
+msgstr "E545: Manca ':'"
+
+msgid "E546: Illegal mode"
+msgstr "E546: Modalità non consentita"
+
+msgid "E547: Illegal mouseshape"
+msgstr "E547: Forma del mouse non consentita"
+
+msgid "E548: digit expected"
+msgstr "E548: Atteso un numero"
+
+msgid "E549: Illegal percentage"
+msgstr "E549: Percentuale non consentita"
+
+msgid "E550: Missing colon"
+msgstr "E550: Manca ':'"
+
+msgid "E551: Illegal component"
+msgstr "E551: Componente non consentito"
+
+msgid "E552: digit expected"
+msgstr "E552: Atteso un numero"
+
+msgid "E553: No more items"
+msgstr "E553: Non ci sono più elementi"
+
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: Errore sintattico in %s{...}"
+
+msgid "E555: at bottom of tag stack"
+msgstr "E555: al fondo dello stack dei tag"
+
+msgid "E556: at top of tag stack"
+msgstr "E556: in cima allo stack dei tag"
+
+msgid "E557: Cannot open termcap file"
+msgstr "E557: Non posso aprire file 'termcap'"
+
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: Descrizione terminale non trovata in 'terminfo'"
+
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: Descrizione terminale non trovata in 'termcap'"
+
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: Uso: cs[cope] %s"
+
+msgid "E561: unknown cscope search type"
+msgstr "E561: tipo di ricerca cscope sconosciuta"
+
+msgid "E562: Usage: cstag <ident>"
+msgstr "E562: Uso: cstag <ident>"
+
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: errore stat(%s): %d"
+
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s non è una directory o un database cscope valido"
+
+msgid "E565: Not allowed to change text or change window"
+msgstr "E565: Non è possibile modificare testo o cambiare finestra"
+
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: Non riesco a creare pipe cscope"
+
+msgid "E567: no cscope connections"
+msgstr "E567: nessuna connessione cscope"
+
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: database cscope duplicato, non aggiunto"
+
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: errore irreparabile in cs_manage_matches"
+
+msgid ""
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
+msgstr ""
+"E571: Spiacente, comando non disponibile, non riesco a caricare libreria "
+"programmi Tcl."
+
+msgid "E572: exit code %d"
+msgstr "E572: codice di uscita %d"
+
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: Identificativo di server non valido: %s"
+
+msgid "E574: Unknown register type %d"
+msgstr "E574: Tipo di registro sconosciuto: %d"
+
+msgid "Illegal starting char"
+msgstr "Carattere iniziale non consentito"
+
+msgid "Missing '>'"
+msgstr "Manca '>'"
+
+msgid "Illegal register name"
+msgstr "Nome registro non ammesso"
+
+msgid "E578: Not allowed to change text here"
+msgstr "E578: Non è possibile modificare testo qui"
+
+msgid "E579: :if nesting too deep"
+msgstr "E579: nidificazione di :if troppo estesa"
+
+msgid "E579: block nesting too deep"
+msgstr "E579: nidificazione di blocco troppo estesa"
+
+msgid "E580: :endif without :if"
+msgstr "E580: :endif senza :if"
+
+msgid "E581: :else without :if"
+msgstr "E581: :else senza :if"
+
+msgid "E582: :elseif without :if"
+msgstr "E582: :elseif senza :if"
+
+msgid "E583: multiple :else"
+msgstr "E583: :else multipli"
+
+msgid "E584: :elseif after :else"
+msgstr "E584: :elseif dopo :else"
+
+msgid "E585: :while/:for nesting too deep"
+msgstr "E585: nidificazione di :while/:for troppo estesa"
+
+msgid "E586: :continue without :while or :for"
+msgstr "E586: :continue senza :while o :for"
+
+msgid "E587: :break without :while or :for"
+msgstr "E587: :break senza :while o :for"
+
+msgid "E588: :endwhile without :while"
+msgstr "E588: :endwhile senza :while"
+
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor senza :for"
+
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' e 'patchmode' sono uguali"
+
+msgid "E590: A preview window already exists"
+msgstr "E590: Una finestra di anteprima esiste già"
+
+msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
+msgstr "E591: 'winheight' non può essere inferiore a 'winminheight'"
+
+msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
+msgstr "E592: 'winwidth' non può essere inferiore a 'winminwidth'"
+
+msgid "E593: Need at least %d lines"
+msgstr "E593: Servono almeno %d righe"
+
+msgid "E594: Need at least %d columns"
+msgstr "E594: Servono almeno %d colonne"
+
+msgid "E595: 'showbreak' contains unprintable or wide character"
+msgstr "E595: 'showbreak' contiene carattere non-stampabili o larghi"
+
+msgid "E596: Invalid font(s)"
+msgstr "E596: Caratteri non validi"
+
+msgid "E597: can't select fontset"
+msgstr "E597: non posso selezionare fontset"
+
+msgid "E598: Invalid fontset"
+msgstr "E598: Fontset non valido"
+
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: Valore di 'imactivatekey' non valido"
+
+msgid "E600: Missing :endtry"
+msgstr "E600: Manca :endtry"
+
+msgid "E601: :try nesting too deep"
+msgstr "E601: nidificazione di :try troppo estesa"
+
+msgid "E602: :endtry without :try"
+msgstr "E602: :endtry senza :try"
+
+msgid "E603: :catch without :try"
+msgstr "E603: :catch senza :try"
+
+msgid "E604: :catch after :finally"
+msgstr "E604: :catch dopo :finally"
+
+msgid "E605: Exception not caught: %s"
+msgstr "E605: Eccezione non intercettata: %s"
+
+msgid "E606: :finally without :try"
+msgstr "E606: :finally senza :try"
+
+msgid "E607: multiple :finally"
+msgstr "E607: :finally multipli"
+
+msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
+msgstr "E608: Impossibile lanciare eccezioni con prefisso 'Vim'"
+
+msgid "E609: Cscope error: %s"
+msgstr "E609: Errore cscope: %s"
+
+msgid "E610: No argument to delete"
+msgstr "E610: Nessun argomento da eliminare"
+
+msgid "E611: Using a Special as a Number"
+msgstr "E611: Uso di uno Special come un Numero"
+
+msgid "E612: Too many signs defined"
+msgstr "E612: Troppi 'sign' definiti"
+
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: Carattere di stampa sconosciuto: %s"
+
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: non posso tornare alla directory in uso"
+
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: non riesco ad ottenere la directory in uso"
+
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: non riesco a trovare il carattere %s"
+
+msgid "E617: Cannot be changed in the GTK GUI"
+msgstr "E617: Non può essere cambiato nella GUI GTK"
+
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: file \"%s\" non è un file di risorse PostScript"
+
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: file \"%s\" non è un file di risorse PostScript supportato"
+
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: Impossibile convertire a codifica di stampa \"%s\""
+
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: il file di risorse \"%s\" ha una versione sbagliata"
+
+msgid "E622: Could not fork for cscope"
+msgstr "E622: Non riesco a fare fork per cscope"
+
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: Non riesco a generare processo cscope"
+
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: Non riesco ad aprire il file \"%s\""
+
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: impossibile aprire database cscope: %s"
+
+msgid "E626: cannot get cscope database information"
+msgstr "E626: impossibile leggere informazioni sul database cscope"
+
+msgid "E630: %s(): write while not connected"
+msgstr "E630: %s(): scrittura in mancanza di connessione"
+
+msgid "E631: %s(): write failed"
+msgstr "E631: %s(): scrittura non riuscita"
+
+msgid "E654: missing delimiter after search pattern: %s"
+msgstr "E654: manca un delimitatore dopo l'espressione di ricerca: %s"
+
+msgid "E655: Too many symbolic links (cycle?)"
+msgstr "E655: Troppi link simbolici (circolarità?)"
+
+msgid "NetBeans disallows writes of unmodified buffers"
+msgstr "NetBeans non permette la scrittura di un buffer non modificato"
+
+msgid "Partial writes disallowed for NetBeans buffers"
+msgstr "Scrittura parziale disabilitata per i buffer di NetBeans"
+
+msgid "E658: NetBeans connection lost for buffer %d"
+msgstr "E658: Connessione NetBeans persa per il buffer %d"
+
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python non può essere chiamato ricorsivamente"
+
+msgid "E661: Sorry, no '%s' help for %s"
+msgstr "E661: Spiacente, nessun aiuto '%s' per %s"
+
+msgid "E662: At start of changelist"
+msgstr "E662: All'inizio della lista modifiche"
+
+msgid "E663: At end of changelist"
+msgstr "E663: Alla fine della lista modifiche"
+
+msgid "E664: changelist is empty"
+msgstr "E664: lista modifiche assente"
+
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: Non posso inizializzare la GUI, nessun carattere valido trovato"
+
+msgid "E666: compiler not supported: %s"
+msgstr "E666: compilatore non supportato: %s"
+
+msgid "E667: Fsync failed"
+msgstr "E667: Fsync fallito"
+
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: Modalità errata di accesso a file info connessione NetBeans: \"%s\""
+
+msgid "E669: Unprintable character in group name"
+msgstr "E669: Carattere non stampabile in un nome di gruppo"
+
+msgid "E670: Mix of help file encodings within a language: %s"
+msgstr "E670: Codifiche diverse fra file di aiuto nella stessa lingua: %s"
+
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: Non trovo il titolo della finestra \"%s\""
+
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: Non posso aprire la finestra in un'applicazione MDI"
+
+msgid "E673: Incompatible multi-byte encoding and character set"
+msgstr "E673: Codifica e set di caratteri multi-byte non compatibili"
+
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr "E674: printmbcharset non può essere nullo con codifica multi-byte."
+
+msgid "E675: No default font specified for multi-byte printing."
+msgstr "E675: Carattere predefinito non specificato per stampa multi-byte."
+
+msgid "E676: No matching autocommands for acwrite buffer"
+msgstr "E676: Nessun autocomando corrispondente per buffer acwrite"
+
+msgid "E677: Error writing temp file"
+msgstr "E677: Errore in scrittura su file temporaneo"
+
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: Carattere non valido dopo %s%%[dxouU]"
+
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: ciclo ricorsivo nel caricamento di syncolor.vim"
+
+msgid "E680: <buffer=%d>: invalid buffer number"
+msgstr "E680: <buffer=%d>: numero buffer non valido"
+
+msgid "E681: Buffer is not loaded"
+msgstr "E681: Buffer non caricato"
+
+msgid "E682: Invalid search pattern or delimiter"
+msgstr "E682: Espressione o delimitatore di ricerca non validi"
+
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: Nome file mancante o espressione non valida"
+
+msgid "E684: list index out of range: %ld"
+msgstr "E684: Indice di Lista fuori intervallo: %ld"
+
+msgid "E685: Internal error: %s"
+msgstr "E685: Errore interno: %s"
+
+msgid "E686: Argument of %s must be a List"
+msgstr "E686: L'argomento di %s dev'essere una Lista"
+
+msgid "E687: Less targets than List items"
+msgstr "E687: Destinazioni più numerose degli elementi di Lista"
+
+msgid "E688: More targets than List items"
+msgstr "E688: Destinazioni meno numerose degli elementi di Lista"
+
+msgid "E689: Can only index a List, Dictionary or Blob"
+msgstr "E689: Posso indicizzare solo una Lista, un Dizionario o un Blob"
+
+msgid "E690: Missing \"in\" after :for"
+msgstr "E690: Manca \"in\" dopo :for"
+
+msgid "E691: Can only compare List with List"
+msgstr "E691: Posso confrontare una Lista solo con un'altra Lista"
+
+msgid "E692: Invalid operation for List"
+msgstr "E692: Operazione non valida per Liste"
+
+msgid "E694: Invalid operation for Funcrefs"
+msgstr "E694: Operazione non valida per Funcref"
+
+msgid "E695: Cannot index a Funcref"
+msgstr "E695: Non posso indicizzare un Funcref"
+
+msgid "E696: Missing comma in List: %s"
+msgstr "E696: Manca virgola nella Lista: %s"
+
+msgid "E697: Missing end of List ']': %s"
+msgstr "E697: Manca ']' a fine Lista: %s"
+
+msgid "E698: variable nested too deep for making a copy"
+msgstr "E698: Variabile troppo nidificata per poterla copiare"
+
+msgid "E699: Too many arguments"
+msgstr "E699: Troppi argomenti"
+
+msgid "E700: Unknown function: %s"
+msgstr "E700: Funzione sconosciuta: %s"
+
+msgid "E701: Invalid type for len()"
+msgstr "E701: Tipo non valido per len()"
+
+msgid "E702: Sort compare function failed"
+msgstr "E702: Funzione confronto in sort fallita"
+
+msgid "E703: Using a Funcref as a Number"
+msgstr "E703: Uso di una Funcref come un Numero"
+
+msgid "E704: Funcref variable name must start with a capital: %s"
+msgstr ""
+"E704: Il nome della variabile Funcref deve iniziare con una maiuscola: %s"
+
+msgid "E705: Variable name conflicts with existing function: %s"
+msgstr "E705: Nome di variabile in conflitto con una funzione esistente: %s"
+
+msgid "E707: Function name conflicts with variable: %s"
+msgstr "E707: Nome funzione in conflitto con la variabile: %s"
+
+msgid "E708: [:] must come last"
+msgstr "E708: [:] dev'essere alla fine"
+
+msgid "E709: [:] requires a List or Blob value"
+msgstr "E709: [:] richiede un valore Lista o Blob"
+
msgid "E710: List value has more items than targets"
-msgstr "E710: Il valore della Lista ha più elementi che destinazioni"
+msgstr "E710: Il valore della Lista ha più elementi che destinazioni"
msgid "E711: List value does not have enough items"
msgstr "E711: Il valore della Lista non ha elementi sufficienti"
+msgid "E712: Argument of %s must be a List or Dictionary"
+msgstr "E712: L'argomento di %s dev'essere una Lista o un Dizionario"
+
+msgid "E713: Cannot use empty key for Dictionary"
+msgstr "E713: Non posso usare una chiave nulla per Dizionario"
+
+msgid "E714: List required"
+msgstr "E714: È necessaria una Lista"
+
+msgid "E715: Dictionary required"
+msgstr "E715: È necessario un Dizionario"
+
+msgid "E716: Key not present in Dictionary: \"%s\""
+msgstr "E716: Chiave assente dal Dizionario: \"%s\""
+
+msgid "E717: Dictionary entry already exists"
+msgstr "E717: C'è già la voce nel Dizionario"
+
+msgid "E718: Funcref required"
+msgstr "E718: Funcref necessario"
+
msgid "E719: Cannot slice a Dictionary"
msgstr "E719: Non posso suddividere un Dizionario"
+msgid "E720: Missing colon in Dictionary: %s"
+msgstr "E720: Manca ':' nel Dizionario: %s"
+
+msgid "E721: Duplicate key in Dictionary: \"%s\""
+msgstr "E721: Chiave duplicata nel Dizionario: \"%s\""
+
+msgid "E722: Missing comma in Dictionary: %s"
+msgstr "E722: Manca virgola nel Dizionario: %s"
+
+msgid "E723: Missing end of Dictionary '}': %s"
+msgstr "E723: Manca '}' a fine Dizionario: %s"
+
+msgid "E724: variable nested too deep for displaying"
+msgstr "E724: variabile troppo nidificata per la visualizzazione"
+
+msgid "E725: Calling dict function without Dictionary: %s"
+msgstr "E725: Chiamata di funzione dict in assenza di Dizionario: %s"
+
+msgid "E726: Stride is zero"
+msgstr "E726: Incremento indice a zero"
+
+msgid "E727: Start past end"
+msgstr "E727: Indice iniziale superiore a quello finale"
+
+msgid "E728: Using a Dictionary as a Number"
+msgstr "E728: Uso di un Dizionario come un Numero"
+
+msgid "E729: Using a Funcref as a String"
+msgstr "E729: Uso di una Funcref come una Stringa"
+
+msgid "E730: Using a List as a String"
+msgstr "E730: Uso di una Lista come una Stringa"
+
+msgid "E731: Using a Dictionary as a String"
+msgstr "E731: Uso di un Dizionario come una Stringa"
+
+msgid "E732: Using :endfor with :while"
+msgstr "E732: Uso di :endfor con :while"
+
+msgid "E733: Using :endwhile with :for"
+msgstr "E733: Uso di :endwhile con :for"
+
+msgid "E734: Wrong variable type for %s="
+msgstr "E734: Tipo di variabile errato per %s="
+
+msgid "E735: Can only compare Dictionary with Dictionary"
+msgstr "E735: Posso confrontare un Dizionario solo con un altro Dizionario"
+
+msgid "E736: Invalid operation for Dictionary"
+msgstr "E736: Operazione non valida per Dizionari"
+
+msgid "E737: Key already exists: %s"
+msgstr "E737: Chiave già esistente: %s"
+
+msgid "E738: Can't list variables for %s"
+msgstr "E738: Non riesco a elencare le variabili per %s"
+
+msgid "E739: Cannot create directory: %s"
+msgstr "E739: Non posso creare la directory: %s"
+
+msgid "E740: Too many arguments for function %s"
+msgstr "E740: Troppi argomenti per la funzione: %s"
+
+msgid "E741: Value is locked"
+msgstr "E741: Valore non modificabile"
+
+msgid "E741: Value is locked: %s"
+msgstr "E741: Valore di %s non modificabile"
+
+msgid "E742: Cannot change value"
+msgstr "E742: Non riesco a cambiare il valore"
+
+msgid "E742: Cannot change value of %s"
+msgstr "E742: Non riesco a cambiare il valore di %s"
+
+msgid "E743: variable nested too deep for (un)lock"
+msgstr "E743: variabile troppo nidificata per lock/unlock"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans non permette modifiche a file in sola-lettura"
+
+msgid "E745: Using a List as a Number"
+msgstr "E745: Uso di una Lista come un Numero"
+
+msgid "E746: Function name does not match script file name: %s"
+msgstr "E746: Il nome funzione non corrisponde al nome file dello script: %s"
+
+msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
+msgstr ""
+"E747: Non posso cambiare directory, buffer modificato (aggiungi ! per "
+"eseguire comunque)"
+
+msgid "E748: No previously used register"
+msgstr "E748: Nessun registro usato in precedenza"
+
+msgid "E749: empty buffer"
+msgstr "E749: buffer vuoto"
+
+msgid "E750: First use \":profile start {fname}\""
+msgstr "E750: Usare prima \":profile start {fname}\""
+
+msgid "E751: Output file name must not have region name"
+msgstr "E751: Il nome del file di output non deve avere il nome di regione"
+
+msgid "E752: No previous spell replacement"
+msgstr "E752: Nessuna sostituzione ortografica precedente"
+
+msgid "E753: Not found: %s"
+msgstr "E753: Non trovato: %s"
+
+msgid "E754: Only up to %d regions supported"
+msgstr "E754: Sono supportate al massimo %d regioni"
+
+msgid "E755: Invalid region in %s"
+msgstr "E755: Regione non valida in %s"
+
+msgid "E756: Spell checking is not possible"
+msgstr "E756: Controllo ortografico non possibile"
+
+msgid "E757: This does not look like a spell file"
+msgstr "E757: Questo non sembra un file ortografico"
+
+msgid "E758: Truncated spell file"
+msgstr "E758: File ortografico troncato"
+
+msgid "E759: Format error in spell file"
+msgstr "E759: Errore di formato nel file di spell"
+
+msgid "E760: No word count in %s"
+msgstr "E760: Nessun contatore parole in %s"
+
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr "E761: Errore di formato nel file affissi FOL, LOW o UPP"
+
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: Carattere fuori intervallo in FOL, LOW o UPP"
+
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: Caratteri di parola differenti nei file ortografici"
+
+msgid "E764: Option '%s' is not set"
+msgstr "E764: opzione '%s' non impostata"
+
+msgid "E765: 'spellfile' does not have %d entries"
+msgstr "E765: 'spellfile' non ha %d elementi"
+
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: Argomenti non sufficienti per printf()"
+
+msgid "E767: Too many arguments for printf()"
+msgstr "E767: Troppi argomenti per printf()"
+
+msgid "E768: Swap file exists: %s (:silent! overrides)"
+msgstr "E768: File swap esistente: %s (:silent! per sovrascriverlo)"
+
+msgid "E769: Missing ] after %s["
+msgstr "E769: Manca ] dopo %s["
+
+msgid "E770: Unsupported section in spell file"
+msgstr "E770: Sezione non supportata nel file ortografico"
+
+msgid "E771: Old spell file, needs to be updated"
+msgstr "E771: File ortografico obsoleto, è necessario aggiornarlo"
+
+msgid "E772: Spell file is for newer version of Vim"
+msgstr "E772: Il file ortografico è per versioni di Vim più recenti"
+
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: Collegamento simbolico ricorsivo per \"%s\""
+
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: opzione 'operatorfunc' non impostata"
+
+msgid "E775: Eval feature not available"
+msgstr "E775: Funzionalità [eval] non disponibile"
+
+msgid "E776: No location list"
+msgstr "E776: Nessuna lista locazioni"
+
+msgid "E777: String or List expected"
+msgstr "E777: attesa Stringa o Lista"
+
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: Questo non sembra un file .sug: %s"
+
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: File .sug obsoleto, è necessario aggiornarlo: %s"
+
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: Il file .sug è per versioni di Vim più recenti: %s"
+
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: Il file .sug non corrisponde al file .spl: %s"
+
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: Errore leggendo il file .sug: %s"
+
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: carattere duplicato nell'elemento MAP"
+
+msgid "E784: Cannot close last tab page"
+msgstr "E784: Non posso chiudere l'ultima pagina di linguette"
+
+msgid "E785: complete() can only be used in Insert mode"
+msgstr "E785: complete() può essere usata solo in modalità inserimento"
+
+msgid "E786: Range not allowed"
+msgstr "E786: Intervallo non consentito"
+
+msgid "E787: Buffer changed unexpectedly"
+msgstr "E787: Il buffer è variato inaspettatamente"
+
+msgid "E788: Not allowed to edit another buffer now"
+msgstr "E788: Non consentito aprire ora un altro buffer"
+
+msgid "E789: Missing ']': %s"
+msgstr "E789: Manca ']': %s"
+
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undojoin non è consentito dopo undo"
+
+msgid "E791: Empty keymap entry"
+msgstr "E791: Nessuna keymap per questo tasto"
+
+msgid "E792: Empty menu name"
+msgstr "E792: Nome Menù vuoto"
+
+msgid "E793: No other buffer in diff mode is modifiable"
+msgstr "E793: Nessun altro buffer è modificabile in modalità 'diff'"
+
+msgid "E794: Cannot set variable in the sandbox"
+msgstr ""
+"E794: Non posso impostare la variabile in ambiente protetto"
+
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr ""
+"E794: Non posso impostare la variabile read-only in ambiente protetto: \"%s\""
+
+msgid "E795: Cannot delete variable"
+msgstr "E795: Non posso cancellare la variabile"
+
+msgid "E795: Cannot delete variable %s"
+msgstr "E795: Non posso cancellare la variabile %s"
+
+msgid "writing to device disabled with 'opendevice' option"
+msgstr "scrittura su periferica disabilitata con l'opzione 'opendevice'"
+
+msgid "E797: SpellFileMissing autocommand deleted buffer"
+msgstr "E797: L'autocomando 'SpellFileMissing' ha cancellato il buffer"
+
+msgid "E798: ID is reserved for \":match\": %d"
+msgstr "E798: ID riservato per \":match\": %d"
+
+msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E799: ID non valido: %d (dev'essere maggiore o uguale a 1)"
+
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: Arabo non utilizzabile: Non abilitato in compilazione\n"
+
+msgid "E801: ID already taken: %d"
+msgstr "E801: ID già utilizzato: %d"
+
+msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E802: ID non valido: %d (dev'essere maggiore o uguale a 1)"
+
+msgid "E803: ID not found: %d"
+msgstr "E803: ID non trovato: %d"
+
+msgid "E804: Cannot use '%' with Float"
+msgstr "E804: Non si può usare '%' con un Numero-a-virgola-mobile"
+
+msgid "E805: Using a Float as a Number"
+msgstr "E805: Uso di un Numero-a-virgola-mobile come un Numero"
+
+msgid "E806: using Float as a String"
+msgstr "E806: Uso di un Numero-a-virgola-mobile come una Stringa"
+
+msgid "E807: Expected Float argument for printf()"
+msgstr "E807: Numero-a-virgola-mobile atteso come argomento per printf()"
+
+msgid "E808: Number or Float required"
+msgstr "E808: Richiesto un Numero o un Numero-a-virgola-mobile"
+
+msgid "E809: #< is not available without the +eval feature"
+msgstr "E809: #< non disponibile se Vim è compilato senza +eval"
+
+msgid "E810: Cannot read or write temp files"
+msgstr "E810: Non riesco a leggere o scrivere file temporanei"
+
+msgid "E811: Not allowed to change buffer information now"
+msgstr "E811: Non consentito modificare informazioni del buffer ora"
+
+msgid "E812: Autocommands changed buffer or buffer name"
+msgstr "E812: Gli autocomandi hanno modificato il buffer o il nome del buffer"
+
+msgid "E813: Cannot close autocmd or popup window"
+msgstr "E813: Non riesco a chiudere finestra autocomandi o dinamica"
+
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr ""
+"E814: Non posso chiudere questa finestra, rimarrebbe solo la finestra "
+"autocomandi"
+
+msgid ""
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr ""
+"E815: Spiacente, comando non disponibile, non riesco a caricare librerie "
+"programmi MzScheme."
+
+msgid "E816: Cannot read patch output"
+msgstr "E816: Non riesco a leggere output del comando 'patch'"
+
+msgid "E817: Blowfish big/little endian use wrong"
+msgstr "E817: uso errato di big/little endian in Blowfish"
+
+msgid "E818: sha256 test failed"
+msgstr "E818: test sha256 fallito"
+
+msgid "E819: Blowfish test failed"
+msgstr "E819: test Blowfish fallito"
+
+msgid "E820: sizeof(uint32_t) != 4"
+msgstr "E820: sizeof(uint32_t) != 4"
+
+msgid "E821: File is encrypted with unknown method"
+msgstr "E821: File cifrato con metodo sconosciuto"
+
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: Non posso aprire il file Undo in lettura: %s"
+
+msgid "E823: Not an undo file: %s"
+msgstr "E823: Non è un file Undo: %s"
+
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: File Undo incompatibile: %s"
+
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: File Undo corrotto (%s): %s"
+
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: Decodifica fallita del file Undo: %s"
+
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: File Undo cifrato: %s"
+
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: Non posso aprire il file Undo in scrittura: %s"
+
+msgid "E829: write error in undo file: %s"
+msgstr "E829: errore scrivendo nel file Undo: %s"
+
+msgid "E830: Undo number %ld not found"
+msgstr "E830: Undo numero %ld non trovato"
+
+msgid "E831: bf_key_init() called with empty password"
+msgstr "E831: chiamata a bf_key_init() con password nulla"
+
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: File non cifrato con file Undo cifrato: %s"
+
+msgid ""
+"E833: %s is encrypted and this version of Vim does not support encryption"
+msgstr "E833: %s è cifrato e questa versione di Vim non supporta la cifratura"
+
msgid "E834: Conflicts with value of 'listchars'"
msgstr "E834: Conflitto con il valore di 'listchars'"
msgid "E835: Conflicts with value of 'fillchars'"
msgstr "E835: Conflitto con il valore di 'fillchars'"
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: Python: Impossibile usare :py e :py3 nella stessa sessione"
+
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: Impossibile usare ora :py3 dopo aver usato :python"
+
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: netbeans non è supportato con questa GUI"
+
+msgid "E840: Completion function deleted text"
+msgstr "E840: La funzione di completamento ha eliminato del testo"
+
+msgid "E841: Reserved name, cannot be used for user defined command"
+msgstr "E841: Nome riservato, non usabile in un comando definito dall'utente"
+
+msgid "E842: no line number to use for \"<slnum>\""
+msgstr "E842: nessun numero di riga da usare per \"<slnum>\""
+
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: Errore aggiornando cifratura dello swap file"
+
+msgid "E844: invalid cchar value"
+msgstr "E844: valore cchar non valido"
+
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: Memoria insufficiente, la lista parole sarà incompleta"
+
+msgid "E846: Key code not set"
+msgstr "E846: Codice di tasto non impostato"
+
+msgid "E847: Too many syntax includes"
+msgstr "E847: Troppe inclusioni di sintassi"
+
+msgid "E848: Too many syntax clusters"
+msgstr "E848: Troppi 'cluster' sintattici"
+
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: Troppi gruppi evidenziazione e sintassi"
+
+msgid "E850: Invalid register name"
+msgstr "E850: Nome registro non valido"
+
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: Creazione di un nuovo processo fallita per la GUI"
+
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: Il processo figlio non è riuscito a far partire la GUI"
+
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: Nome argomento duplicato: %s"
+
+msgid "E854: path too long for completion"
+msgstr "E854: percorso troppo lungo per il completamento"
+
+msgid "E855: Autocommands caused command to abort"
+msgstr "E855: Comando non completato a causa di autocomandi"
+
msgid ""
"E856: \"assert_fails()\" second argument must be a string or a list with one "
"or two strings"
@@ -6293,14 +6210,487 @@
"E856: Il secondo argomento di \"assert_fails()\" dev'essere una stringa o "
"una Lista con una o due stringhe"
+msgid "E857: Dictionary key \"%s\" required"
+msgstr "E857: Chiave di Dizionario \"%s\" richiesta"
+
+msgid "E858: Eval did not return a valid python object"
+msgstr "E858: Eval non ha restituito un oggetto python valido"
+
+msgid "E859: Failed to convert returned python object to a Vim value"
+msgstr ""
+"E859: Conversione non riuscita dell'oggetto python risultato a un valore vim"
+
+msgid "E860: Need 'id' and 'type' with 'both'"
+msgstr "E860: Servono 'id' e 'type' specificando 'both'"
+
+msgid "E861: Cannot open a second popup with a terminal"
+msgstr "E861: Non posso aprire una seconda finestra dinamica con un terminale"
+
+msgid "E862: Cannot use g: here"
+msgstr "E862: Non si può usare g: qui"
+
+msgid "E863: Not allowed for a terminal in a popup window"
+msgstr "E863: Non consentito per un terminale in una finestra dinamica"
+
+msgid ""
+"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
+"used"
+msgstr ""
+"E864: \\%#= può essere seguito solo da 0, 1 o 2. Sarà usato il motore "
+"automatico"
+
+msgid "E865: (NFA) Regexp end encountered prematurely"
+msgstr "E865: (NFA) Fine prematura dell'espressione regolare"
+
+msgid "E866: (NFA regexp) Misplaced %c"
+msgstr "E866: (Espressione regolare NFA) %c fuori posto"
+
+msgid "E867: (NFA regexp) Unknown operator '\\z%c'"
+msgstr "E867: (Espressione regolare NFA) Operatore sconosciuto '\\z%c'"
+
+msgid "E867: (NFA regexp) Unknown operator '\\%%%c'"
+msgstr "E867: (Espressione regolare NFA) Operatore sconosciuto '\\%%%c'"
+
+msgid "E868: Error building NFA with equivalence class!"
+msgstr "E868: Errore costruendo NFA con classe di equivalenza!"
+
+msgid "E869: (NFA regexp) Unknown operator '\\@%c'"
+msgstr "E869: (NFA) Operatore sconosciuto '\\@%c'"
+
+msgid "E870: (NFA regexp) Error reading repetition limits"
+msgstr "E870: (Espressione regolare NFA) Errore nella lettura dei limiti di ripetizione"
+
+msgid "E871: (NFA regexp) Can't have a multi follow a multi"
+msgstr "E871: (Espressione regolare NFA) Non si può avere multi dopo multi"
+
+msgid "E872: (NFA regexp) Too many '('"
+msgstr "E872: (Espressione regolare NFA) Troppi '('"
+
+msgid "E873: (NFA regexp) proper termination error"
+msgstr "E873: (Espressione regolare NFA) errore di terminazione corretta"
+
+msgid "E874: (NFA regexp) Could not pop the stack!"
+msgstr "E874: (Espressione regolare NFA) Impossibile riprendere lo stack!"
+
+msgid ""
+"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
+"left on stack"
+msgstr ""
+"E875: (Espressione regolare NFA) (Nella conversione da postfix a NFA), "
+"troppi stati lasciati sullo stack"
+
+msgid "E876: (NFA regexp) Not enough space to store the whole NFA"
+msgstr "E876: (Espressione regolare NFA) Non c'è spazio sufficiente a "
+"immagazzinare l'intero NFA"
+
+msgid "E877: (NFA regexp) Invalid character class: %d"
+msgstr "E877: (Espressione regolare NFA) Classe di caratteri non valida: %d"
+
+msgid "E878: (NFA regexp) Could not allocate memory for branch traversal!"
+msgstr "E878: (Espressione regolare NFA) Non posso allocare memoria per lo "
+"zigzag di ramo!"
+
+msgid "E879: (NFA regexp) Too many \\z("
+msgstr "E879: (Espressione regolare NFA) Troppi \\z("
+
+msgid "E880: Can't handle SystemExit of python exception in vim"
+msgstr "E880: Impossibile gestire in Vim eccezione python SystemExit"
+
+msgid "E881: Line count changed unexpectedly"
+msgstr "E881: Contatore righe è inaspettatamente cambiato"
+
+msgid "E882: Uniq compare function failed"
+msgstr "E882: Funzione confronto in uniq fallita"
+
+msgid ""
+"E883: search pattern and expression register may not contain two or more "
+"lines"
+msgstr ""
+"E883: espressione di ricerca e registro dell'espressione non possono "
+"contenere due o più righe"
+
+msgid "E884: Function name cannot contain a colon: %s"
+msgstr "E884: Il nome della funzione non può contenere un due punti: %s"
+
+msgid "E885: Not possible to change sign %s"
+msgstr "E885: Impossibile cambiare segno %s"
+
+msgid "E886: Can't rename viminfo file to %s!"
+msgstr "E886: Non riesco a rinominare il file viminfo a %s!"
+
+msgid ""
+"E887: Sorry, this command is disabled, the Python's site module could not be "
+"loaded."
+msgstr ""
+"E887: Spiacente, comando non disponibile, non riesco a caricare il modulo "
+"Python locale."
+
+msgid "E888: (NFA regexp) cannot repeat %s"
+msgstr "E888: (Espressione regolare NFA) non riesco a ripetere %s"
+
+msgid "E889: Number required"
+msgstr "E889: Numero richiesto"
+
+msgid "E890: trailing char after ']': %s]%s"
+msgstr "E890: Caratteri in più dopo ']': %s]%s"
+
+msgid "E891: Using a Funcref as a Float"
+msgstr "E891: Uso di una Funcref come un Numero-a-virgola-mobile"
+
+msgid "E892: Using a String as a Float"
+msgstr "E892: Uso di una Stringa come un Numero-a-virgola-mobile"
+
+msgid "E893: Using a List as a Float"
+msgstr "E893: Uso di una Lista come un Numero-a-virgola-mobile"
+
+msgid "E894: Using a Dictionary as a Float"
+msgstr "E894: Uso di un Dizionario come un Numero-a-virgola-mobile"
+
+msgid ""
+"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
+"could not be loaded."
+msgstr ""
+"E815: Spiacente, comando non disponibile, non riesco a caricare modulo "
+"racket/base di MzScheme."
+
+msgid "E896: Argument of %s must be a List, Dictionary or Blob"
+msgstr "E896: L'argomento di %s dev'essere una Lista, un Dizionario o un Blob"
+
+msgid "E897: List or Blob required"
+msgstr "E897: È necessaria una Lista o un Blob"
+
+msgid "E898: socket() in channel_connect()"
+msgstr "E898: socket() in channel_connect()"
+
+msgid "E899: Argument of %s must be a List or Blob"
+msgstr "E899: L'argomento di %s dev'essere una Lista o un Blob"
+
+msgid "E900: maxdepth must be non-negative number"
+msgstr "E900: maxdepth dev'essere un numero non-negativo"
+
+msgid "E901: getaddrinfo() in channel_open(): %s"
+msgstr "E901: getaddrinfo() in channel_open(): %s"
+
+msgid "E901: gethostbyname() in channel_open()"
+msgstr "E901: gethostbyname() in channel_open()"
+
+msgid "E902: Cannot connect to port"
+msgstr "E902: Non posso connettermi alla porta"
+
+msgid "E903: received command with non-string argument"
+msgstr "E903: il comando ricevuto non aveva come argomento una stringa"
+
+msgid "E904: last argument for expr/call must be a number"
+msgstr "E904: l'ultimo argomento per espressione/chiamata dev'essere numerico"
+
+msgid "E904: third argument for call must be a list"
+msgstr "E904: il terzo argomento della chiamata dev'essere una Lista"
+
+msgid "E905: received unknown command: %s"
+msgstr "E905: ricevuto comando sconosciuto: %s"
+
+msgid "E906: not an open channel"
+msgstr "E906: canale non aperto"
+
+msgid "E907: Using a special value as a Float"
+msgstr "E907: Uso di un valore speciale come un Numero-a-virgola-mobile"
+
msgid "E908: using an invalid value as a String: %s"
msgstr "E908: Uso di un valore non valido come una Stringa: %s"
msgid "E909: Cannot index a special variable"
msgstr "E909: Non posso indicizzare una variabile speciale"
-msgid "E1100: Command not supported in Vim9 script (missing :var?): %s"
-msgstr "E1100: Comando non supportato negli script Vim9 (manca :var?): %s"
+msgid "E910: Using a Job as a Number"
+msgstr "E910: Uso di un Job come un Numero"
+
+msgid "E911: Using a Job as a Float"
+msgstr "E911: Uso di un Job come un Numero-a-virgola-mobile"
+
+msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
+msgstr "E912: non posso usare ch_evalexpr() con un canale grezzo o nl"
+
+msgid "E913: Using a Channel as a Number"
+msgstr "E913: Uso di un Canale come un Numero"
+
+msgid "E914: Using a Channel as a Float"
+msgstr "E914: Uso di un Canale come un Numero-a-virgola-mobile"
+
+msgid "E915: in_io buffer requires in_buf or in_name to be set"
+msgstr "E915: il buffer in_io necessita di impostare in_buf o in_name"
+
+msgid "E916: not a valid job"
+msgstr "E916: job non valido"
+
+msgid "E917: Cannot use a callback with %s()"
+msgstr "E917: Non posso usare callback con %s()"
+
+msgid "E918: buffer must be loaded: %s"
+msgstr "E918: il buffer dev'essere caricato: %s"
+
+msgid "E919: Directory not found in '%s': \"%s\""
+msgstr "E919: Directory non trovata in '%s': \"%s\""
+
+msgid "E920: _io file requires _name to be set"
+msgstr "E920: il file _io necessita di impostare _name"
+
+msgid "E921: Invalid callback argument"
+msgstr "E921: Argomento callback non valido"
+
+msgid "E922: expected a dict"
+msgstr "E922: Atteso un Dizionario"
+
+msgid "E923: Second argument of function() must be a list or a dict"
+msgstr ""
+"E923: Il secondo argomento di function() dev'essere una Lista o un Dizionario"
+
+msgid "E924: Current window was closed"
+msgstr "E924: La finestra corrente è stata chiusa"
+
+msgid "E925: Current quickfix list was changed"
+msgstr "E925: La Lista quickfix corrente è stata cambiata"
+
+msgid "E926: Current location list was changed"
+msgstr "E926: La lista delle locazioni corrente è stata cambiata"
+
+msgid "E927: Invalid action: '%s'"
+msgstr "E927: Azione non valida: '%s'"
+
+msgid "E928: String required"
+msgstr "E928: Stringa necessaria"
+
+msgid "E929: Too many viminfo temp files, like %s!"
+msgstr "E929: Troppi file temporanei viminfo, come %s!"
+
+msgid "E930: Cannot use :redir inside execute()"
+msgstr "E930: Non si può usare :redir all'interno di execute()"
+
+msgid "E931: Buffer cannot be registered"
+msgstr "E931: Non riesco a registrare il buffer"
+
+msgid "E932: Closure function should not be at top level: %s"
+msgstr ""
+"E932: La funzione di chiusura non dovrebbe essere al livello più alto: %s"
+
+msgid "E933: Function was deleted: %s"
+msgstr "E933: Funzione eliminata: %s"
+
+msgid "E934: Cannot jump to a buffer that does not have a name"
+msgstr "E934: Impossibile passare a un buffer che non ha un nome"
+
+msgid "E935: invalid submatch number: %d"
+msgstr "E935: numero di sotto-corrispondenza non valido: %d"
+
+msgid "E936: Cannot delete the current group"
+msgstr "E936: Non posso cancellare il gruppo corrente"
+
+msgid "E937: Attempt to delete a buffer that is in use: %s"
+msgstr "E937: Tentativo di eliminare un buffer ancora usato: %s"
+
+msgid "E938: Duplicate key in JSON: \"%s\""
+msgstr "E938: Chiave duplicata in JSON: \"%s\""
+
+msgid "E939: Positive count required"
+msgstr "E939: Un contatore positivo è necessario"
+
+msgid "E940: Cannot lock or unlock variable %s"
+msgstr "E940: Non riesco a bloccare o sbloccare la variabile %s"
+
+msgid "E941: already started a server"
+msgstr "E941: un server è già stato predisposto"
+
+msgid "E942: +clientserver feature not available"
+msgstr "E942: funzionalità +clientserver non disponibile"
+
+msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
+msgstr "E943: Tabella dei comandi da aggiornare, eseguire 'make cmdidxs'"
+
+msgid "E944: Reverse range in character class"
+msgstr "E944: Intervallo invertito nella classe di caratteri"
+
+msgid "E945: Range too large in character class"
+msgstr "E945: Intervallo troppo ampio nella classe di caratteri"
+
+msgid "E946: Cannot make a terminal with running job modifiable"
+msgstr ""
+"E946: Non posso aprire un terminale mentre ci sono lavori modificabili in "
+"esecuzione"
+
+msgid "E947: Job still running in buffer \"%s\""
+msgstr "E947: Job ancora in esecuzione nel buffer \"%s\""
+
+msgid "E948: Job still running"
+msgstr "E948: Job ancora attivo"
+
+msgid "E948: Job still running (add ! to end the job)"
+msgstr "E948: Job ancora in esecuzione (aggiungi! per terminarlo)"
+
+msgid "E949: File changed while writing"
+msgstr "E949: File modificato in fase di riscrittura"
+
+msgid "E950: Cannot convert between %s and %s"
+msgstr "E950: Non si può convertire da %s a %s"
+
+msgid "E951: \\% value too large"
+msgstr "E951: \\% valore troppo grande"
+
+msgid "E952: Autocommand caused recursive behavior"
+msgstr "E952: L'autocomando ha generato un comportamento ricorsivo"
+
+msgid "E953: File exists: %s"
+msgstr "E953: File già esistente: %s"
+
+msgid "E954: 24-bit colors are not supported on this environment"
+msgstr "E954: colori a 24-bit non supportati in questo ambiente"
+
+msgid "E955: Not a terminal buffer"
+msgstr "E955: Il buffer non è un terminale"
+
+msgid "E956: Cannot use pattern recursively"
+msgstr "E956: Uso ricorsivo di espressione di ricerca non consentito"
+
+msgid "E957: Invalid window number"
+msgstr "E957: Numero di finestra non valido"
+
+msgid "E958: Job already finished"
+msgstr "E958: Job già terminato"
+
+msgid "E959: Invalid diff format."
+msgstr "E959: Formato diff non valido."
+
+msgid "E960: Problem creating the internal diff"
+msgstr "E960: Problemi nella preparazione della diff interna"
+
+msgid "E961: no line number to use for \"<sflnum>\""
+msgstr "E961: nessun numero di riga da usare per \"<sflnum>\""
+
+msgid "E962: Invalid action: '%s'"
+msgstr "E962: Azione non valida: '%s'"
+
+msgid "E963: setting %s to value with wrong type"
+msgstr "E963: impostazione di %s a un valore di tipo errato"
+
+msgid "E964: Invalid column number: %ld"
+msgstr "E964: Numero di colonna non valido: %ld"
+
+msgid "E965: missing property type name"
+msgstr "E965: Nome del tipo di proprietà non disponibile"
+
+msgid "E966: Invalid line number: %ld"
+msgstr "E966: Numero di riga non valido: %ld"
+
+msgid "E967: text property info corrupted"
+msgstr "E967: informazione sulle proprietà del testo corrotta"
+
+msgid "E968: Need at least one of 'id' or 'type'"
+msgstr "E968: Occorre conoscere almeno un 'id' o 'type'"
+
+msgid "E969: Property type %s already defined"
+msgstr "E969: Tipo di proprietà %s già definito"
+
+msgid "E970: Unknown highlight group name: '%s'"
+msgstr "E970: Nome gruppo evidenziazione sconosciuto: '%s'"
+
+msgid "E971: Property type %s does not exist"
+msgstr "E971: Tipo di proprietà %s non esistente"
+
+msgid "E972: Blob value does not have the right number of bytes"
+msgstr "E972: Il valore del Blob non ha il numero giusto di byte"
+
+msgid "E973: Blob literal should have an even number of hex characters"
+msgstr ""
+"E973: Una stringa Blob dovrebbe avere un numero pari di caratteri esadecimali"
+
+msgid "E974: Using a Blob as a Number"
+msgstr "E974: Uso di un Blob come un Numero"
+
+msgid "E975: Using a Blob as a Float"
+msgstr "E975: Uso di un Blob come un Numero-a-virgola-mobile"
+
+msgid "E976: Using a Blob as a String"
+msgstr "E976: Uso di un Blob come una Stringa"
+
+msgid "E977: Can only compare Blob with Blob"
+msgstr "E977: Posso confrontare un Blob solo con un altro Blob"
+
+msgid "E978: Invalid operation for Blob"
+msgstr "E978: Operazione non valida per Blob"
+
+msgid "E979: Blob index out of range: %ld"
+msgstr "E979: Indice di Blob fuori intervallo: %ld"
+
+msgid "E980: lowlevel input not supported"
+msgstr "E980: input a livello basso non supportato"
+
+msgid "E981: Command not allowed in rvim"
+msgstr "E981: Comando non consentito in rvim"
+
+msgid "E982: ConPTY is not available"
+msgstr "E982: ConPTY non disponibile"
+
+msgid "E983: Duplicate argument: %s"
+msgstr "E983: Argomento duplicato: %s"
+
+msgid "E984: :scriptversion used outside of a sourced file"
+msgstr "E984: :scriptversion usato fuori da un file di comandi"
+
+msgid "E985: .= is not supported with script version >= 2"
+msgstr "E985: .= non è supportato con la versione di script >= 2"
+
+msgid "E986: cannot modify the tag stack within tagfunc"
+msgstr "E986: non posso modificare lo stack dei tag all'interno di tagfunc"
+
+msgid "E987: invalid return value from tagfunc"
+msgstr "E987: valore non valido restituito da tagfunc"
+
+msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
+msgstr "E988: GUI non utilizzabile. Non riesco a eseguire gvim.exe."
+
+msgid "E989: Non-default argument follows default argument"
+msgstr "E989: Argomento non di default dopo argomento di default"
+
+msgid "E990: Missing end marker '%s'"
+msgstr "E990: Manca marcatore di fine '%s'"
+
+msgid "E991: cannot use =<< here"
+msgstr "E991: non posso usare =<< qui"
+
+msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
+msgstr "E992: Non consentito in una modeline quando a 'modelineexpr' vale off"
+
+msgid "E993: window %d is not a popup window"
+msgstr "E993: la finestra %d non è una finestra dinamica"
+
+msgid "E994: Not allowed in a popup window"
+msgstr "E994: Non consentito in una finestra dinamica"
+
+msgid "E995: Cannot modify existing variable"
+msgstr "E995: Non posso modificare una variabile esistente"
+
+msgid "E996: Cannot lock a range"
+msgstr "E996: Non posso bloccare un intervallo"
+
+msgid "E996: Cannot lock an option"
+msgstr "E996: Non posso bloccare un'opzione"
+
+msgid "E996: Cannot lock a list or dict"
+msgstr "E996: Non posso bloccare una Lista o un Dizionario"
+
+msgid "E996: Cannot lock an environment variable"
+msgstr "E996: Non posso bloccare una variabile di ambiente"
+
+msgid "E996: Cannot lock a register"
+msgstr "E996: Non posso bloccare un registro"
+
+msgid "E997: Tabpage not found: %d"
+msgstr "E997: Pagina-di-linguette non trovata: %d"
+
+msgid "E998: Reduce of an empty %s with no initial value"
+msgstr ""
+"E998: Reduce di un valore vuoto %s, e non è stato dato un valore iniziale"
+
+msgid "E999: scriptversion not supported: %d"
+msgstr "E999: scriptversion non supportata: %d"
msgid "E1001: Variable not found: %s"
msgstr "E1001: Variabile non trovata: %s"
@@ -6318,7 +6708,7 @@
msgstr "E1005: Troppi tipi di argomento"
msgid "E1006: %s is used as an argument"
-msgstr "E1006: %s è usato come argomento"
+msgstr "E1006: %s è usato come argomento"
msgid "E1007: Mandatory argument after optional argument"
msgstr "E1007: Argomento obbligatorio dopo un argomento opzionale"
@@ -6356,13 +6746,13 @@
msgstr "E1015: Atteso un nome: %s"
msgid "E1016: Cannot declare a %s variable: %s"
-msgstr "E1016: Non si può dichiarare una %s variabile: %s"
+msgstr "E1016: Non si può dichiarare una %s variabile: %s"
msgid "E1016: Cannot declare an environment variable: %s"
-msgstr "E1016: Non si può dichiarare una variabile d'ambiente: %s"
+msgstr "E1016: Non si può dichiarare una variabile d'ambiente: %s"
msgid "E1017: Variable already declared: %s"
-msgstr "E1017: Variabile già dichiarata: %s"
+msgstr "E1017: Variabile già dichiarata: %s"
msgid "E1018: Cannot assign to a constant: %s"
msgstr "E1018: Non posso assegnare a una costante: %s"
@@ -6426,19 +6816,19 @@
msgstr "E1037: Non posso usare \"%s\" con %s"
msgid "E1038: \"vim9script\" can only be used in a script"
-msgstr "E1038: \"vim9script\" può solo essere usato in uno script"
+msgstr "E1038: \"vim9script\" può solo essere usato in uno script"
msgid "E1039: \"vim9script\" must be the first command in a script"
msgstr "E1039: \"vim9script\" dev'essere il primo comando in uno script"
msgid "E1040: Cannot use :scriptversion after :vim9script"
-msgstr "E1040: Non si può usare :scriptversion dopo :vim9script"
+msgstr "E1040: Non si può usare :scriptversion dopo :vim9script"
msgid "E1041: Redefining script item %s"
msgstr "E1041: Ridefinisco elemento di script %s"
msgid "E1042: Export can only be used in vim9script"
-msgstr "E1042: Export può essere usato solo in vim9script"
+msgstr "E1042: Export può essere usato solo in vim9script"
msgid "E1043: Invalid command after :export"
msgstr "E1043: Comando non valido dopo :export"
@@ -6446,12 +6836,6 @@
msgid "E1044: Export with invalid argument"
msgstr "E1044: Export con argomento non valido"
-msgid "E1045: Missing \"as\" after *"
-msgstr "E1045: Manca \"as\" dopo *"
-
-msgid "E1046: Missing comma in import"
-msgstr "E1046: Manca virgola in import"
-
msgid "E1047: Syntax error in import: %s"
msgstr "E1047: Errore di sintassi in import: %s"
@@ -6468,13 +6852,13 @@
msgstr "E1051: Tipo di argomento errato per +"
msgid "E1052: Cannot declare an option: %s"
-msgstr "E1052: Non si può dichiarare un'opzione: %s"
+msgstr "E1052: Non si può dichiarare un'opzione: %s"
msgid "E1053: Could not import \"%s\""
msgstr "E1053: Non riesco a importare \"%s\""
msgid "E1054: Variable already declared in the script: %s"
-msgstr "E1054: Variabile già dichiarata nello script: %s"
+msgstr "E1054: Variabile già dichiarata nello script: %s"
msgid "E1055: Missing name after ..."
msgstr "E1055: Manca nome dopo ..."
@@ -6503,6 +6887,9 @@
msgid "E1063: Type mismatch for v: variable"
msgstr "E1063: Tipo non corrispondente per una variabile v:"
+msgid "E1064: Yank register changed while using it"
+msgstr "E1064: Registro di yank modificato mentre lo si usava"
+
msgid "E1066: Cannot declare a register: %s"
msgstr "E1066: Non posso dichiarare un registro: %s"
@@ -6515,17 +6902,14 @@
msgid "E1069: White space required after '%s': %s"
msgstr "E1069: Spazio bianco necessario dopo '%s': %s"
-msgid "E1070: Missing \"from\""
-msgstr "E1070: Manca \"from\""
-
-msgid "E1071: Invalid string after \"from\""
-msgstr "E1071: Stringa non valida dopo \"from\""
+msgid "E1071: Invalid string for :import: %s"
+msgstr "E1071: Stringa non valida per :import: %s"
msgid "E1072: Cannot compare %s with %s"
msgstr "E1072: Non posso confrontare %s con %s"
msgid "E1073: Name already defined: %s"
-msgstr "E1073: Nome già definito: %s"
+msgstr "E1073: Nome già definito: %s"
msgid "E1074: No white space allowed after dot"
msgstr "E1074: Nessuno spazio bianco consentito dopo il punto"
@@ -6535,7 +6919,7 @@
msgid "E1076: This Vim is not compiled with float support"
msgstr ""
-"E1076: Questo Vim non è stato compilato col supporto per i Numeri-a-virgola-"
+"E1076: Questo Vim non è stato compilato col supporto per i Numeri-a-virgola-"
"mobile"
msgid "E1077: Missing argument type for %s"
@@ -6544,9 +6928,6 @@
msgid "E1081: Cannot unlet %s"
msgstr "E1081: Non posso annullare %s"
-msgid "E1082: Cannot use a namespaced variable: %s"
-msgstr "E1082: Non posso usare una variabile di uno spazio-dei-nomi: %s"
-
msgid "E1083: Missing backtick"
msgstr "E1083: Manca apice inverso"
@@ -6554,10 +6935,10 @@
msgstr "E1084: Non posso eliminare la funzione di script Vim9 %s"
msgid "E1085: Not a callable type: %s"
-msgstr "E1085: Tipo che non può essere chiamato: %s"
+msgstr "E1085: Tipo che non può essere chiamato: %s"
-msgid "E1086: Cannot use :function inside :def"
-msgstr "E1086: Non posso usare :function all'interno di :def"
+msgid "E1086: Function reference invalid"
+msgstr "E1086: Riferimento di funzione non valido"
msgid "E1087: Cannot use an index when declaring a variable"
msgstr "E1087: Non posso usare un indice nella dichiarazione di una variabile"
@@ -6569,23 +6950,20 @@
msgstr "E1090: Non posso assegnare all'argomento %s"
msgid "E1091: Function is not compiled: %s"
-msgstr "E1091: La funzione non è compilata: %s"
-
-msgid "E1092: Cannot use a list for a declaration"
-msgstr "E1092: Non posso usare una Lista per una dichiarazione"
+msgstr "E1091: La funzione non è compilata: %s"
msgid "E1093: Expected %d items but got %d"
msgstr "E1093: Attesi %d elementi, ma ottenuti %d"
msgid "E1094: Import can only be used in a script"
-msgstr "E1094: Import può solo essere usato in uno script"
+msgstr "E1094: Import può solo essere usato in uno script"
msgid "E1095: Unreachable code after :return"
msgstr "E1095: Codice irraggiungibile dopo :return"
msgid "E1096: Returning a value in a function without a return type"
msgstr ""
-"E1096: Restituito valore in una funzione in cui il tipo di ritorno non è "
+"E1096: Restituito valore in una funzione in cui il tipo di ritorno non è "
"stato definito"
msgid "E1097: Line incomplete"
@@ -6597,9 +6975,12 @@
msgid "E1099: Unknown error while executing %s"
msgstr "E1099: Errore sconosciuto mentre era in esecuzione %s"
+msgid "E1100: Command not supported in Vim9 script (missing :var?): %s"
+msgstr "E1100: Comando non supportato negli script Vim9 (manca :var?): %s"
+
msgid "E1101: Cannot declare a script variable in a function: %s"
msgstr ""
-"E1101: Non si può dichiarare una variabile di script in una funzione: %s"
+"E1101: Non si può dichiarare una variabile di script in una funzione: %s"
msgid "E1102: Lambda function not found: %s"
msgstr "E1102: Funzione Lambda non trovata: %s"
@@ -6626,7 +7007,7 @@
msgstr "E1108: Elemento non trovato: %s"
msgid "E1109: List item %d is not a List"
-msgstr "E1109: L'elemento di Lista %d non è una Lista"
+msgstr "E1109: L'elemento di Lista %d non è una Lista"
msgid "E1110: List item %d does not contain 3 numbers"
msgstr "E1110: L'elemento di Lista %d non contiene 3 numeri"
@@ -6641,7 +7022,7 @@
msgstr "E1113: Intervalli sovrapposti per 0x%lx"
msgid "E1114: Only values of 0x100 and higher supported"
-msgstr "E1114: Solo valori 0x100 o più elevati sono supportati"
+msgstr "E1114: Solo valori 0x100 o più elevati sono supportati"
msgid "E1115: \"assert_fails()\" fourth argument must be a number"
msgstr "E1115: il quarto argomento di \"assert_fails()\" dev'essere un Numero"
@@ -6672,13 +7053,13 @@
msgstr "E1123: Manca virgola prima dell'argomento: %s"
msgid "E1124: \"%s\" cannot be used in legacy Vim script"
-msgstr "E1124: \"%s\" non si può usare negli script Vim tradizionali"
+msgstr "E1124: \"%s\" non si può usare negli script Vim tradizionali"
msgid "E1125: Final requires a value"
msgstr "E1125: :final richiede un valore"
msgid "E1126: Cannot use :let in Vim9 script"
-msgstr "E1126: Non si può usare :let negli script Vim9"
+msgstr "E1126: Non si può usare :let negli script Vim9"
msgid "E1127: Missing name after dot"
msgstr "E1127: Manca il nome dopo il punto"
@@ -6690,26 +7071,23 @@
msgstr "E1129: :throw di una stringa nulla"
msgid "E1130: Cannot add to null list"
-msgstr "E1130: Non si può aggiungere a una Lista nulla"
+msgstr "E1130: Non si può aggiungere a una Lista nulla"
msgid "E1131: Cannot add to null blob"
-msgstr "E1131: Non si può aggiungere a un Blob nullo"
+msgstr "E1131: Non si può aggiungere a un Blob nullo"
msgid "E1132: Missing function argument"
msgstr "E1132: Manca l'argomento della funzione"
msgid "E1133: Cannot extend a null dict"
-msgstr "E1133: Non si può estendere un Dizionario nullo"
+msgstr "E1133: Non si può estendere un Dizionario nullo"
msgid "E1134: Cannot extend a null list"
-msgstr "E1134: Non si può estendere una Lista nulla"
+msgstr "E1134: Non si può estendere una Lista nulla"
msgid "E1135: Using a String as a Bool: \"%s\""
msgstr "E1135: Uso di una Stringa come valore Booleano: \"%s\""
-msgid "E1135: <Cmd> mapping must end with <CR>"
-msgstr "E1135: La mappatura di <Cmd> deve terminare con un <CR>"
-
msgid "E1136: <Cmd> mapping must end with <CR> before second <Cmd>"
msgstr ""
"E1136: La mappatura di <Cmd> deve terminare con un <CR> prima di un secondo "
@@ -6730,14 +7108,11 @@
msgid "E1141: Indexable type required"
msgstr "E1141: Il tipo dev'essere indicizzabile"
-msgid "E1142: Non-empty string required"
-msgstr "E1142: Richiesta stringa non vuota"
-
msgid "E1143: Empty expression: \"%s\""
msgstr "E1143: Espressione vuota: \"%s\""
msgid "E1144: Command \"%s\" is not followed by white space: %s"
-msgstr "E1144: Il comando \"%s\" non è seguito da uno spazio bianco: %s"
+msgstr "E1144: Il comando \"%s\" non è seguito da uno spazio bianco: %s"
msgid "E1145: Missing heredoc end marker: %s"
msgstr "E1145: Manca marcatore della fine del quidoc: %s"
@@ -6775,13 +7150,13 @@
msgstr "E1155: Non posso definire autocomandi per TUTTI gli eventi"
msgid "E1156: Cannot change the argument list recursively"
-msgstr "E1156: Non si può cambiare la lista degli argomenti ricorsivamente"
+msgstr "E1156: Non si può cambiare la lista degli argomenti ricorsivamente"
msgid "E1157: Missing return type"
msgstr "E1157: Manca tipo di valore restituito"
msgid "E1158: Cannot use flatten() in Vim9 script"
-msgstr "E1158: Non si può usare flatten() in uno script Vim9"
+msgstr "E1158: Non si può usare flatten() in uno script Vim9"
msgid "E1159: Cannot split a window when closing the buffer"
msgstr ""
@@ -6792,7 +7167,7 @@
"E1160: Non posso usare un valore di default per argomenti di tipo variabile"
msgid "E1161: Cannot json encode a %s"
-msgstr "E1161: Non si può codificare json un/a %s"
+msgstr "E1161: Non si può codificare json un/a %s"
msgid "E1162: Register name must be one character: %s"
msgstr "E1162: Il nome di registro dev'essere un carattere singolo: %s"
@@ -6818,13 +7193,13 @@
msgstr "E1167: Il nome dell'argomento nasconde una variabile esistente: %s"
msgid "E1168: Argument already declared in the script: %s"
-msgstr "E1168: Argomento già dichiarato nello script: %s"
+msgstr "E1168: Argomento già dichiarato nello script: %s"
msgid "E1169: 'import * as {name}' not supported here"
msgstr "E1169: 'import * come {name}' non supportato qui"
msgid "E1170: Cannot use #{ to start a comment"
-msgstr "E1170: Non si può usare #{ per iniziare un commento"
+msgstr "E1170: Non si può usare #{ per iniziare un commento"
msgid "E1171: Missing } after inline function"
msgstr "E1171: Manca } dopo una funzione in-linea"
@@ -6832,8 +7207,8 @@
msgid "E1172: Cannot use default values in a lambda"
msgstr "E1172: Non si possono usare valori di default in un'espressione lambda"
-msgid "E1173: Text found after enddef: %s"
-msgstr "E1173: Trovato del testo dopo enddef: %s"
+msgid "E1173: Text found after %s: %s"
+msgstr "E1173: Trovato del testo dopo %s: %s"
msgid "E1174: String required for argument %d"
msgstr "E1174: Stringa richiesta per argomento %d"
@@ -6848,7 +7223,7 @@
msgstr "E1177: Ciclo :for su %s non supportato"
msgid "E1178: Cannot lock or unlock a local variable"
-msgstr "E1178: Non si può bloccare o sbloccare una variabile locale"
+msgstr "E1178: Non si può bloccare o sbloccare una variabile locale"
msgid ""
"E1179: Failed to extract PWD from %s, check your shell's config related to "
@@ -6861,20 +7236,20 @@
msgstr "E1180: Il tipo di argomento delle variabili dev'essere una Lista: %s"
msgid "E1181: Cannot use an underscore here"
-msgstr "E1181: Non si può usare un trattino basso qui"
+msgstr "E1181: Non si può usare un trattino basso qui"
msgid "E1182: Blob required"
-msgstr "E1182: È richiesto un Blob"
+msgstr "E1182: È richiesto un Blob"
msgid "E1183: Cannot use a range with an assignment operator: %s"
msgstr ""
-"E1183: Non si può usare un intervallo con un operatore di assegnazione: %s"
+"E1183: Non si può usare un intervallo con un operatore di assegnazione: %s"
msgid "E1184: Blob not set"
msgstr "E1184: Blob non impostato"
msgid "E1185: Cannot nest :redir"
-msgstr "E1185: Non si può nidificare :redir"
+msgstr "E1185: Non si può nidificare :redir"
msgid "E1185: Missing :redir END"
msgstr "E1185: Manca END per :redir"
@@ -6890,7 +7265,7 @@
"E1188: Non riesco ad aprire un terminale dalla finestra della riga-di-comando"
msgid "E1189: Cannot use :legacy with this command: %s"
-msgstr "E1189: Non si può usare :legacy con questo comando: %s"
+msgstr "E1189: Non si può usare :legacy con questo comando: %s"
msgid "E1190: One argument too few"
msgstr "E1190: Manca un argomento"
@@ -6910,13 +7285,13 @@
"Vim"
msgid "E1194: Cannot encrypt header, not enough space"
-msgstr "E1194: Impossibile cifrare intestazione, non c'è spazio sufficiente"
+msgstr "E1194: Impossibile cifrare intestazione, non c'è spazio sufficiente"
msgid "E1195: Cannot encrypt buffer, not enough space"
-msgstr "E1195: Impossibile cifrare buffer, non c'è spazio sufficiente"
+msgstr "E1195: Impossibile cifrare buffer, non c'è spazio sufficiente"
msgid "E1196: Cannot decrypt header, not enough space"
-msgstr "E1196: Impossibile decifrare intestazione, non c'è spazio sufficiente"
+msgstr "E1196: Impossibile decifrare intestazione, non c'è spazio sufficiente"
msgid "E1197: Cannot allocate_buffer for encryption"
msgstr "E1197: Fallita chiamata ad allocate_buffer per la cifratura"
@@ -6925,7 +7300,7 @@
msgstr "E1198: Decifrazione fallita: Intestazione incompleta!"
msgid "E1199: Cannot decrypt buffer, not enough space"
-msgstr "E1199: Impossibile decifrare intestazione, non c'è spazio sufficiente"
+msgstr "E1199: Impossibile decifrare intestazione, non c'è spazio sufficiente"
msgid "E1200: Decryption failed!"
msgstr "E1200: Decifrazione fallita!"
@@ -6937,7 +7312,7 @@
msgstr "E1202: Nessuno spazio bianco consentito dopo '%s': %s"
msgid "E1203: Dot can only be used on a dictionary: %s"
-msgstr "E1203: Il punto può essere usato solo in un dizionario: %s"
+msgstr "E1203: Il punto può essere usato solo in un dizionario: %s"
msgid "E1204: No Number allowed after .: '\\%%%c'"
msgstr "E1204: Nessun Numero consentito dopo .: '\\%%%c'"
@@ -7000,7 +7375,7 @@
msgstr "E1222: Stringa o Lista richiesta per argomento %d"
msgid "E1223: String or Dictionary required for argument %d"
-msgstr "E1223: String o Dizionario richiesto per argomento %d"
+msgstr "E1223: Stringa o Dizionario richiesto per argomento %d"
msgid "E1224: String, Number or List required for argument %d"
msgstr "E1224: Stringa, Numero o Lista richiesto per argomento %d"
@@ -7024,14 +7399,14 @@
msgstr "E1230: CIfratura: sodium_mlock() fallita"
msgid "E1231: Cannot use a bar to separate commands here: %s"
-msgstr "E1231: Non si può usare una barra per separare comandi qui: %s"
+msgstr "E1231: Non si può usare una barra per separare comandi qui: %s"
msgid "E1232: Argument of exists_compiled() must be a literal string"
msgstr ""
"E1232: L'argomento di exists_compiled() dev'essere una stringa di caratteri"
msgid "E1233: exists_compiled() can only be used in a :def function"
-msgstr "E1233: exists_compiled() si può usare solo in una funzione :def"
+msgstr "E1233: exists_compiled() si può usare solo in una funzione :def"
msgid "E1234: legacy must be followed by a command"
msgstr "E1234: legacy dev'essere seguito da un comando"
@@ -7039,11 +7414,11 @@
msgid "E1235: Function reference is not set"
msgstr "E1235: Riferimento di funzione non impostato"
-msgid "E1236: Cannot use %s itself, it is imported with '*'"
-msgstr "E1236: Non posso usare %s stesso, è importato con '*'"
+msgid "E1236: Cannot use %s itself, it is imported"
+msgstr "E1236: Non posso usare %s stesso, è importato"
msgid "E1237: No such user-defined command in current buffer: %s"
-msgstr "E1237: Questo comando utente non c'è nel buffer corrente: %s"
+msgstr "E1237: Questo comando utente non c'è nel buffer corrente: %s"
msgid "E1238: Blob required for argument %d"
msgstr "E1238: Blob richiesto per argomento %d"
@@ -7066,395 +7441,72 @@
msgid "E1244: Bad color string: %s"
msgstr "E1244: Descrizione colore non valida: %s"
+msgid "E1245: Cannot expand <sfile> in a Vim9 function"
+msgstr "E1245: Non posso espandere <sfile> in una funzione Vim9"
+
+msgid "E1246: Cannot find variable to (un)lock: %s"
+msgstr "E1246: Non riesco a trovare variabile da (s)/bloccare: %s"
+
+msgid "E1247: Line number out of range"
+msgstr "E1247: Numero di riga non nell'intervallo"
+
+msgid "E1248: Closure called from invalid context"
+msgstr "E1248: Chiusura chiamata da contesto non valido"
+
+msgid "E1249: Highlight group name too long"
+msgstr "E1249: Nome gruppo evidenziazione troppo lungo"
+
+msgid "E1250: Argument of %s must be a List, String, Dictionary or Blob"
+msgstr "E1250: L'argomento di %s dev'essere una Lista, una Stringa, un "
+"Dizionario o un Blob"
+
+msgid "E1251: List, Dictionary, Blob or String required for argument %d"
+msgstr "E1251: Lista, Dizionario, Blob o Stringa richiesto per argomento %d"
+
+msgid "E1252: String, List or Blob required for argument %d"
+msgstr "E1252: Stringa, Lista o Blob richiesto per argomento %d"
+
+msgid "E1253: String expected for argument %d"
+msgstr "E1253: Stringa richiesta per argomento %d"
+
+msgid "E1254: Cannot use script variable in for loop"
+msgstr ""
+"E1254: Non si può usare una variabile di script in un ciclo for"
+
+msgid "E1255: <Cmd> mapping must end with <CR>"
+msgstr "E1255: La mappatura di <Cmd> deve terminare con <CR>"
+
+msgid "E1256: String or function required for argument %d"
+msgstr "E1256: Stringa o funzione richiesta per argomento %d"
+
+msgid "E1257: Imported script must use \"as\" or end in .vim: %s"
+msgstr "E1257: Script importato deve usare \"as\" o finire in .vim: %s"
+
+msgid "E1258: No '.' after imported name: %s"
+msgstr "E1258: Manca '.' dopo nome importato: %s"
+
+msgid "E1259: Missing name after imported name: %s"
+msgstr "E1259: Manca nome dopo nome importato: %s"
+
+msgid "E1260: Cannot unlet an imported item: %s"
+msgstr "E1260: Non posso annullare un elemento importato: %s"
+
+msgid "E1261: Cannot import .vim without using \"as\""
+msgstr "E1261: Non posso importare .vim senza usare \"as\""
+
+msgid "E1262: Cannot import the same script twice: %s"
+msgstr "E1262: Non posso importare lo stesso script due volte: %s"
+
+msgid "E1263: Using autoload in a script not under an autoload directory"
+msgstr "E1263: Uso di autoload in script non sotto directory autoload"
+
+msgid "E1264: Autoload import cannot use absolute or relative path: %s"
+msgstr "E1264: Import di Autoload non riesce a usare percorso assoluto o "
+"relativo: %s"
+
msgid "--No lines in buffer--"
msgstr "--File vuoto--"
-msgid "E470: Command aborted"
-msgstr "E470: Comando finito male"
-
-msgid "E471: Argument required"
-msgstr "E471: Argomento necessario"
-
-msgid "E171: Missing :endif"
-msgstr "E171: Manca :endif"
-
-msgid "E603: :catch without :try"
-msgstr "E603: :catch senza :try"
-
-msgid "E606: :finally without :try"
-msgstr "E606: :finally senza :try"
-
-msgid "E607: multiple :finally"
-msgstr "E607: :finally multipli"
-
-msgid "E600: Missing :endtry"
-msgstr "E600: Manca :endtry"
-
-msgid "E602: :endtry without :try"
-msgstr "E602: :endtry senza :try"
-
-msgid "E170: Missing :endwhile"
-msgstr "E170: Manca :endwhile"
-
-msgid "E170: Missing :endfor"
-msgstr "E170: Manca :endfor"
-
-msgid "E588: :endwhile without :while"
-msgstr "E588: :endwhile senza :while"
-
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor senza :for"
-
-msgid "E472: Command failed"
-msgstr "E472: Comando fallito"
-
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: Fontset sconosciuto: %s"
-
-msgid "E235: Unknown font: %s"
-msgstr "E235: Font sconosciuto: %s"
-
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: Carattere \"%s\" non di larghezza fissa"
-
-msgid "E473: Internal error"
-msgstr "E473: Errore interno"
-
-msgid "E685: Internal error: %s"
-msgstr "E685: Errore interno: %s"
-
-msgid "Interrupted"
-msgstr "Interrotto"
-
-msgid "E474: Invalid argument"
-msgstr "E474: Argomento non valido"
-
-msgid "E475: Invalid argument: %s"
-msgstr "E475: Argomento non valido: %s"
-
-msgid "E983: Duplicate argument: %s"
-msgstr "E983: Argomento duplicato: %s"
-
-msgid "E475: Invalid value for argument %s"
-msgstr "E475: Valore non valido per l'argomento %s"
-
-msgid "E475: Invalid value for argument %s: %s"
-msgstr "E475: Valore non valido per l'argomento %s: %s"
-
-msgid "E756: Spell checking is not possible"
-msgstr "E756: Controllo ortografico non possibile"
-
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: Chiamata a libreria fallita per \"%s()\""
-
-msgid "E667: Fsync failed"
-msgstr "E667: Fsync fallito"
-
-msgid "E370: Could not load library %s: %s"
-msgstr "E370: Non riesco a caricare la libreria %s: %s"
-
-msgid "E448: Could not load library function %s"
-msgstr "E448: Non posso caricare la funzione di libreria %s"
-
-msgid "E477: No ! allowed"
-msgstr "E477: ! non consentito"
-
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: Arabo non utilizzabile: Non abilitato in compilazione\n"
-
-msgid "E479: No match"
-msgstr "E479: Nessuna corrispondenza"
-
-msgid "E480: No match: %s"
-msgstr "E480: Nessuna corrispondenza: %s"
-
-msgid "E481: No range allowed"
-msgstr "E481: Nessun intervallo consentito"
-
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: non esiste server registrato con nome \"%s\""
-
-msgid "E482: Can't create file %s"
-msgstr "E482: Non riesco a creare il file %s"
-
-msgid "E483: Can't get temp file name"
-msgstr "E483: Non riesco ad ottenere nome file 'temp'"
-
-msgid "E484: Can't open file %s"
-msgstr "E484: Non riesco ad aprire il file %s"
-
-msgid "E485: Can't read file %s"
-msgstr "E485: Non riesco a leggere il file %s"
-
-msgid "E233: cannot open display"
-msgstr "E233: non riesco ad aprire lo schermo"
-
-msgid "Pattern not found"
-msgstr "Espressione non trovata"
-
-msgid "E486: Pattern not found: %s"
-msgstr "E486: Espressione non trovata: %s"
-
-msgid "E487: Argument must be positive"
-msgstr "E487: L'argomento dev'essere positivo"
-
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: Non posso tornare alla directory precedente"
-
-msgid "E776: No location list"
-msgstr "E776: Nessuna lista locazioni"
-
-msgid "E734: Wrong variable type for %s="
-msgstr "E734: Tipo di variabile errato per %s="
-
-msgid "E461: Illegal variable name: %s"
-msgstr "E461: Nome di variabile non consentito: %s"
-
-msgid "E995: Cannot modify existing variable"
-msgstr "E995: Non posso modificare una variabile esistente"
-
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr ""
-"E794: Non posso impostare la variabile read-only in ambiente protetto: \"%s\""
-
-msgid "E928: String required"
-msgstr "E928: Stringa necessaria"
-
-msgid "E889: Number required"
-msgstr "E889: Numero richiesto"
-
-msgid "E839: Bool required"
-msgstr "E839: Valore Boleano richiesto"
-
-msgid "E713: Cannot use empty key for Dictionary"
-msgstr "E713: Non posso usare una chiave nulla per Dizionario"
-
-msgid "E715: Dictionary required"
-msgstr "E715: È necessario un Dizionario"
-
-msgid "E684: list index out of range: %ld"
-msgstr "E684: Indice di Lista fuori intervallo: %ld"
-
-msgid "E979: Blob index out of range: %ld"
-msgstr "E979: Indice di Blob fuori intervallo: %ld"
-
-msgid "E978: Invalid operation for Blob"
-msgstr "E978: Operazione non valida per Blob"
-
-msgid "E118: Too many arguments for function: %s"
-msgstr "E118: Troppi argomenti per la funzione: %s"
-
-msgid "E119: Not enough arguments for function: %s"
-msgstr "E119: La funzione: %s richiede più argomenti"
-
-msgid "E933: Function was deleted: %s"
-msgstr "E933: Funzione eliminata: %s"
-
-msgid "E716: Key not present in Dictionary: \"%s\""
-msgstr "E716: Chiave assente dal Dizionario: \"%s\""
-
-msgid "E714: List required"
-msgstr "E714: È necessaria una Lista"
-
-msgid "E897: List or Blob required"
-msgstr "E897: È necessaria una Lista o un Blob"
-
-msgid "E697: Missing end of List ']': %s"
-msgstr "E697: Manca ']' a fine Lista: %s"
-
-msgid "E712: Argument of %s must be a List or Dictionary"
-msgstr "E712: L'argomento di %s dev'essere una Lista o un Dizionario"
-
-msgid "E896: Argument of %s must be a List, Dictionary or Blob"
-msgstr "E896: L'argomento di %s dev'essere una Lista, un Dizionario o un Blob"
-
-msgid "E804: Cannot use '%' with Float"
-msgstr "E804: Non si può usare '%' con un Numero-a-virgola-mobile"
-
-msgid "E996: Cannot lock an option"
-msgstr "E996: Non posso bloccare un'opzione"
-
-msgid "E113: Unknown option: %s"
-msgstr "E113: Opzione sconosciuta: %s"
-
-msgid "E998: Reduce of an empty %s with no initial value"
-msgstr ""
-"E998: Reduce di un valore vuoto %s, e non è stato dato un valore iniziale"
-
-msgid "E857: Dictionary key \"%s\" required"
-msgstr "E857: Chiave di Dizionario \"%s\" richiesta"
-
-msgid "E523: Not allowed here"
-msgstr "E523: Non consentito qui"
-
-msgid "E578: Not allowed to change text here"
-msgstr "E578: Non è possibile modificare testo qui"
-
-msgid "E565: Not allowed to change text or change window"
-msgstr "E565: Non è possibile modificare testo o cambiare finestra"
-
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: Impostazione modalità schermo non supportata"
-
-msgid "E91: 'shell' option is empty"
-msgstr "E91: opzione 'shell' non impostata"
-
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: Errore -- non sono riuscito a leggere i dati del 'sign'!"
-
-msgid "E72: Close error on swap file"
-msgstr "E72: Errore durante chiusura swap file"
-
-msgid "E73: tag stack empty"
-msgstr "E73: tag stack ancora vuoto"
-
-msgid "E74: Command too complex"
-msgstr "E74: Comando troppo complesso"
-
-msgid "E75: Name too long"
-msgstr "E75: Nome troppo lungo"
-
-msgid "E76: Too many ["
-msgstr "E76: Troppe ["
-
-msgid "E77: Too many file names"
-msgstr "E77: Troppi nomi file"
-
-msgid "E488: Trailing characters"
-msgstr "E488: Caratteri in più a fine comando"
-
-msgid "E488: Trailing characters: %s"
-msgstr "E488: Caratteri in più alla fine: %s"
-
-msgid "E78: Unknown mark"
-msgstr "E78: Marcatura sconosciuta"
-
-msgid "E79: Cannot expand wildcards"
-msgstr "E79: Non posso espandere 'wildcard'"
-
-msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
-msgstr "E591: 'winheight' non può essere inferiore a 'winminheight'"
-
-msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
-msgstr "E592: 'winwidth' non può essere inferiore a 'winminwidth'"
-
-msgid "E80: Error while writing"
-msgstr "E80: Errore in scrittura"
-
-msgid "E939: Positive count required"
-msgstr "E939: Un contatore positivo è necessario"
-
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: Uso di <SID> fuori dal contesto di uno script"
-
-msgid "E107: Missing parentheses: %s"
-msgstr "E107: Mancano parentesi: %s"
-
-msgid "E110: Missing ')'"
-msgstr "E110: Manca ')'"
-
-msgid "E720: Missing colon in Dictionary: %s"
-msgstr "E720: Manca ':' nel Dizionario: %s"
-
-msgid "E721: Duplicate key in Dictionary: \"%s\""
-msgstr "E721: Chiave duplicata nel Dizionario: \"%s\""
-
-msgid "E722: Missing comma in Dictionary: %s"
-msgstr "E722: Manca virgola nel Dizionario: %s"
-
-msgid "E723: Missing end of Dictionary '}': %s"
-msgstr "E723: Manca '}' a fine Dizionario: %s"
-
-msgid "E449: Invalid expression received"
-msgstr "E449: Ricevuta un'espressione non valida"
-
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: Regione protetta, impossibile modificare"
-
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans non permette modifiche a file in sola-lettura"
-
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: l'espressione usa troppa memoria rispetto a 'maxmempattern'"
-
-msgid "E749: empty buffer"
-msgstr "E749: buffer vuoto"
-
-msgid "E86: Buffer %ld does not exist"
-msgstr "E86: Non esiste il buffer %ld"
-
-msgid "E682: Invalid search pattern or delimiter"
-msgstr "E682: Espressione o delimitatore di ricerca non validi"
-
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: File già caricato in un altro buffer"
-
-msgid "E764: Option '%s' is not set"
-msgstr "E764: opzione '%s' non impostata"
-
-msgid "E850: Invalid register name"
-msgstr "E850: Nome registro non valido"
-
-msgid "E806: using Float as a String"
-msgstr "E806: Uso di un Numero-a-virgola-mobile come una Stringa"
-
-msgid "E919: Directory not found in '%s': \"%s\""
-msgstr "E919: Directory non trovata in '%s': \"%s\""
-
-msgid "E952: Autocommand caused recursive behavior"
-msgstr "E952: L'autocomando ha generato un comportamento ricorsivo"
-
-msgid "E813: Cannot close autocmd or popup window"
-msgstr "E813: Non riesco a chiudere finestra autocomandi o dinamica"
-
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: I Menù esistono solo in un'altra modalità"
-
-msgid "E957: Invalid window number"
-msgstr "E957: Numero di finestra non valido"
-
-msgid "E686: Argument of %s must be a List"
-msgstr "E686: L'argomento di %s dev'essere una Lista"
-
-msgid "E109: Missing ':' after '?'"
-msgstr "E109: Manca ':' dopo '?'"
-
-msgid "E690: Missing \"in\" after :for"
-msgstr "E690: Manca \"in\" dopo :for"
-
-msgid "E117: Unknown function: %s"
-msgstr "E117: Funzione sconosciuta: %s"
-
-msgid "E111: Missing ']'"
-msgstr "E111: Manca ']'"
-
-msgid "E581: :else without :if"
-msgstr "E581: :else senza :if"
-
-msgid "E582: :elseif without :if"
-msgstr "E582: :elseif senza :if"
-
-msgid "E580: :endif without :if"
-msgstr "E580: :endif senza :if"
-
-msgid "E586: :continue without :while or :for"
-msgstr "E586: :continue senza :while o :for"
-
-msgid "E587: :break without :while or :for"
-msgstr "E587: :break senza :while o :for"
-
-msgid "E274: No white space allowed before parenthesis"
-msgstr "E274: Nessuno spazio bianco consentito prima delle parentesi"
-
-msgid "E940: Cannot lock or unlock variable %s"
-msgstr "E940: Non riesco a bloccare o sbloccare la variabile %s"
-
-msgid "E706: Channel or Job required"
-msgstr "E706: Canale o Job richiesto"
-
-msgid "E693: Job required"
-msgstr "E693: Job richiesto"
-
msgid "search hit TOP, continuing at BOTTOM"
msgstr "raggiunta la CIMA nella ricerca, continuo dal FONDO"
@@ -7471,10 +7523,10 @@
msgstr "chiavi nulle non consentite"
msgid "dictionary is locked"
-msgstr "il Dizionario è bloccato"
+msgstr "il Dizionario è bloccato"
msgid "list is locked"
-msgstr "la lista è bloccata"
+msgstr "la lista è bloccata"
msgid "failed to add key '%s' to dictionary"
msgstr "non riesco ad aggiungere la chiave '%s' al Dizionario"
@@ -7483,20 +7535,20 @@
msgstr "l'indice dev'essere un intero o un intervallo, non %s"
msgid "expected str() or unicode() instance, but got %s"
-msgstr "attesa istanza di str() o unicode(), trovato invece %s"
+msgstr "attesa istanza di str() o unicode(), ottenuto invece %s"
msgid "expected bytes() or str() instance, but got %s"
-msgstr "attesa istanza di bytes() o str(), trovato invece %s"
+msgstr "attesa istanza di bytes() o str(), ottenuto invece %s"
msgid ""
"expected int(), long() or something supporting coercing to long(), but got %s"
msgstr ""
-"atteso int(), long() o qualcosa che supporti forzatura a long(), trovato "
+"atteso int(), long() o qualcosa che supporti forzatura a long(), ottenuto "
"invece %s"
msgid "expected int() or something supporting coercing to int(), but got %s"
msgstr ""
-"atteso int() o qualcosa che supporti forzatura a int(), trovato invece %s"
+"atteso int() o qualcosa che supporti forzatura a int(), ottenuto invece %s"
msgid "value is too large to fit into C int type"
msgstr "valore troppo grande per il tipo int del C"
@@ -7516,18 +7568,15 @@
msgid "invalid attribute: %s"
msgstr "attributo non valido: %s"
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: Errore di inizializzazione oggetti I/O"
-
msgid "failed to change directory"
msgstr "cambio directory non riuscito"
msgid "expected 3-tuple as imp.find_module() result, but got %s"
-msgstr "atteso terzetto come risultato di imp.find_module(), trovato invece %s"
+msgstr "atteso terzetto come risultato di imp.find_module(), ottenuto invece %s"
msgid "expected 3-tuple as imp.find_module() result, but got tuple of size %d"
msgstr ""
-"atteso terzetto come risultato di imp.find_module(), trovato invece tuple di "
+"atteso terzetto come risultato di imp.find_module(), ottenuto invece tuple di "
"dimens. %d"
msgid "internal error: imp.find_module returned tuple with NULL"
@@ -7547,7 +7596,7 @@
msgid "expected sequence element of size 2, but got sequence of size %d"
msgstr ""
-"atteso elemento sequenza di dimensione 2, trovata sequenza di dimensione %d"
+"atteso elemento sequenza di dimensione 2, ottenuto sequenza di dimensione %d"
msgid "list constructor does not accept keyword arguments"
msgstr "il costruttore di lista non accetta parole chiave come argomenti"
@@ -7560,14 +7609,14 @@
"errore interno: non sono riuscito a ottenere l'elemento di Lista di Vim %d"
msgid "slice step cannot be zero"
-msgstr "il passo scorrendo un intervallo non può essere zero"
+msgstr "il passo scorrendo un intervallo non può essere zero"
msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr ""
"tentativo di assegnare una sequenza maggiore di %d a un intervallo esteso"
msgid "internal error: no Vim list item %d"
-msgstr "errore interno: non c'è elemento di Lista di Vim %d"
+msgstr "errore interno: non c'è elemento di Lista di Vim %d"
msgid "internal error: not enough list items"
msgstr "errore interno: non ci sono abbastanza elementi per la Lista"
@@ -7641,23 +7690,23 @@
msgstr "il nome marcatura dev'essere un carattere singolo"
msgid "expected vim.Buffer object, but got %s"
-msgstr "atteso oggetto vim.Buffer, trovato %s"
+msgstr "atteso oggetto vim.Buffer, ottenuto %s"
msgid "failed to switch to buffer %d"
msgstr "passaggio non riuscito al buffer %d"
msgid "expected vim.Window object, but got %s"
-msgstr "atteso oggetto vim.Window, trovato %s"
+msgstr "atteso oggetto vim.Window, ottenuto %s"
msgid "failed to find window in the current tab page"
msgstr ""
-"non è stato possibile trovare la finestra nella pagina di linguette corrente"
+"non è stato possibile trovare la finestra nella pagina di linguette corrente"
msgid "did not switch to the specified window"
msgstr "passaggio alla finestra specificata non effettuato"
msgid "expected vim.TabPage object, but got %s"
-msgstr "atteso oggetto vim.TabPage, trovato %s"
+msgstr "atteso oggetto vim.TabPage, ottenuto %s"
msgid "did not switch to the specified tab page"
msgstr "passaggio alla pagina di linguette specificata non effettuato"
@@ -7665,13 +7714,6 @@
msgid "failed to run the code"
msgstr "esecuzione del codice non riuscita"
-msgid "E858: Eval did not return a valid python object"
-msgstr "E858: Eval non ha restituito un oggetto python valido"
-
-msgid "E859: Failed to convert returned python object to a Vim value"
-msgstr ""
-"E859: Conversione non riuscita dell'oggetto python risultato a un valore vim"
-
msgid "unable to convert %s to a Vim dictionary"
msgstr "impossibile convertire %s a Dizionario vim"
@@ -7693,9 +7735,9 @@
"- append vim.path_hook to sys.path_hooks\n"
"- append vim.VIM_SPECIAL_PATH to sys.path\n"
msgstr ""
-"Impostazione dell'ancora di percorso non riuscita: sys.path_hooks non è una "
+"Impostazione dell'ancora di percorso non riuscita: sys.path_hooks non è una "
"lista\n"
-"Dovresti fare così:\n"
+"Dovresti fare così:\n"
"- aggiungere vim.path_hook a vim.path_hooks\n"
"- aggiungere vim.VIM_SPECIAL_PATH a sys.path\n"
@@ -7703,7 +7745,7 @@
"Failed to set path: sys.path is not a list\n"
"You should now append vim.VIM_SPECIAL_PATH to sys.path"
msgstr ""
-"Impostazione di percorso non riuscita: sys.path non è una Lista\n"
+"Impostazione di percorso non riuscita: sys.path non è una Lista\n"
"Dovresti aggiungere vim.VIM_SPECIAL_PATH a sys.path"
msgid ""
@@ -7786,13 +7828,13 @@
msgstr "\" Batti <Invio> su una riga \"set\" per eseguirla."
msgid "\" A boolean option will be toggled."
-msgstr "\" Un'opzione booleana sarà invertita."
+msgstr "\" Un'opzione booleana sarà invertita."
msgid ""
"\" For other options you can edit the value before hitting "
"<Enter>."
msgstr ""
-"\" Per altre opzioni si può modificare un comando prima di "
+"\" Per altre opzioni si può modificare un comando prima di "
"battere <Invio>."
msgid "\" Hit <Enter> on a help line to open a help window on this option."
@@ -7801,7 +7843,7 @@
"relativa all'opzione."
msgid "\" Hit <Enter> on an index line to jump there."
-msgstr "\" Batti <Invio> su una riga di indice per saltare là."
+msgstr "\" Batti <Invio> su una riga di indice per saltare là."
msgid "\" Hit <Space> on a \"set\" line to refresh it."
msgstr "\" Batti <Spazio> su una riga di \"set\" per aggiornarla."
@@ -7813,7 +7855,7 @@
msgstr "funziona in modo molto compatibile con Vi (non consigliabile)"
msgid "list of flags to specify Vi compatibility"
-msgstr "lista di flag per specificare il grado di compatibilità con Vi"
+msgstr "lista di flag per specificare il grado di compatibilità con Vi"
msgid "use Insert mode as the default mode"
msgstr "usa modo Insert come modo di default"
@@ -7839,7 +7881,7 @@
msgid "list of flags specifying which commands wrap to another line"
msgstr ""
-"lista di flag che specificano quali comandi possono agire anche su più di "
+"lista di flag che specificano quali comandi possono agire anche su più di "
"una riga"
msgid ""
@@ -7858,6 +7900,9 @@
msgid "list of directory names used for file searching"
msgstr "lista di nomi di directory usati per cercare dei file"
+msgid ":cd without argument goes to the home directory"
+msgstr ":cd senza un argomento porta alla home directory"
+
msgid "list of directory names used for :cd"
msgstr "lista di nomi di directory usate per :cd"
@@ -7895,7 +7940,7 @@
msgstr "metodo da usare per convertire maiuscolo a minuscolo e viceversa"
msgid "maximum amount of memory in Kbyte used for pattern matching"
-msgstr "massima quantità di memoria in Kbyte da usare nella ricerca"
+msgstr "massima quantità di memoria in Kbyte da usare nella ricerca"
msgid "pattern for a macro definition line"
msgstr "modello per la riga di definizione di una macro"
@@ -7933,7 +7978,7 @@
"file di tag"
msgid "a :tag command will use the tagstack"
-msgstr "un comando :tag userà la pila dei tag (tagstack)"
+msgstr "un comando :tag userà la pila dei tag (tagstack)"
msgid "when completing tags in Insert mode show more info"
msgstr ""
@@ -7986,7 +8031,7 @@
msgid "preserve indentation in wrapped text"
msgstr ""
-"mantieni l'indentatura nel testo che occupa più di una riga dello schermo"
+"mantieni l'indentatura nel testo che occupa più di una riga dello schermo"
msgid "adjust breakindent behaviour"
msgstr "specifica comportamento dell'opzione 'breakindent'"
@@ -8059,10 +8104,10 @@
msgstr "numero di colonne da usare per visualizzare numero di riga"
msgid "controls whether concealable text is hidden"
-msgstr "controlla se il testo nascondibile è nascosto"
+msgstr "controlla se il testo nascondibile è nascosto"
msgid "modes in which text in the cursor line can be concealed"
-msgstr "modi nei quali la riga del cursore può essere nascosta"
+msgstr "modi nei quali la riga del cursore può essere nascosta"
msgid "syntax, highlighting and spelling"
msgstr "sintassi, evidenziazione e correzione ortografica"
@@ -8071,7 +8116,7 @@
msgstr "\"dark\" o \"light\"; scuro/chiaro, colore di sfondo"
msgid "type of file; triggers the FileType event when set"
-msgstr "tipo di file; fa scattare evento FileType quando è impostato"
+msgstr "tipo di file; fa scattare evento FileType quando è impostato"
msgid "name of syntax highlighting used"
msgstr "nome dell'evidenziazione sintattica usata"
@@ -8086,7 +8131,7 @@
msgstr "evidenzia tutte le occorrenze dell'ultima ricerca effettuata"
msgid "highlight group to use for the window"
-msgstr "gruppo di evidenziazione da usare per la finestra"
+msgstr "gruppo evidenziazione da usare per la finestra"
msgid "use GUI colors for the terminal"
msgstr "usa colori della GUI per il terminale"
@@ -8123,7 +8168,7 @@
msgid "amount of memory used by :mkspell before compressing"
msgstr ""
-"quantità di memoria usata da :mkspell prima di comprimere il file risultante"
+"quantità di memoria usata da :mkspell prima di comprimere il file risultante"
msgid "multiple windows"
msgstr "finestre multiple"
@@ -8173,7 +8218,7 @@
msgstr "identifica la finestra di anteprima"
msgid "don't unload a buffer when no longer shown in a window"
-msgstr "non scaricare un buffer quando non appare più in alcuna finestra"
+msgstr "non scaricare un buffer quando non appare più in alcuna finestra"
msgid ""
"\"useopen\" and/or \"split\"; which window to use when jumping\n"
@@ -8216,7 +8261,7 @@
msgstr "nome della libreria dinamica winpty"
msgid "multiple tab pages"
-msgstr "più di una pagina di linguette"
+msgstr "più di una pagina di linguette"
msgid "0, 1 or 2; when to use a tab pages line"
msgstr "0, 1 o 2; quando usare riga che descrive pagine di linguette"
@@ -8246,7 +8291,10 @@
msgstr "controlla prima le opzioni di terminale predefinite"
msgid "terminal connection is fast"
-msgstr "la connessione del terminale è veloce"
+msgstr "la connessione del terminale è veloce"
+
+msgid "request terminal key codes when an xterm is detected"
+msgstr "richiesta codici tasti terminale quando scoperto xterm"
msgid "terminal that requires extra redrawing"
msgstr "terminale che richiede ulteriore ridisegno"
@@ -8331,7 +8379,7 @@
msgstr "lista di nomi di carattere da usare per caratteri a doppia larghezza"
msgid "use smooth, antialiased fonts"
-msgstr "usare font più leggibili, anti-alias"
+msgstr "usare font più leggibili, anti-alias"
msgid "list of flags that specify how the GUI works"
msgstr "lista di flag che specificano come funziona le GUI"
@@ -8346,8 +8394,9 @@
msgid "room (in pixels) left above/below the window"
msgstr "spazio (in pixel) da lasciare sopra/sotto la finestra"
-msgid "list of ASCII characters that can be combined into complesshapes"
-msgstr "lista dei caratteri ASCII che possono generare forme complesse"
+msgid "list of ASCII characters that can be combined into complex shapes"
+msgstr "lista caratteri ASCII che possono combinarsi per generare forme "
+"complesse"
msgid "options for text rendering"
msgstr "opzioni per la renderizzazione del testo"
@@ -8363,10 +8412,10 @@
"file"
msgid "language to be used for the menus"
-msgstr "lingua da usare per i menù"
+msgstr "lingua da usare per i menù"
msgid "maximum number of items in one menu"
-msgstr "numero massimo di elementi in un menù"
+msgstr "numero massimo di elementi in un menù"
msgid "\"no\", \"yes\" or \"menu\"; how to use the ALT key"
msgstr "\"no\", \"yes\" o \"menu\"; come usare il tasto ALT"
@@ -8438,16 +8487,16 @@
msgstr "soglia sopra la quale riferire il numero di righe modificate"
msgid "the higher the more messages are given"
-msgstr "quanto più alto, tanto più dettagliati sono i messaggi"
+msgstr "quanto più alto, tanto più dettagliati sono i messaggi"
msgid "file to write messages in"
msgstr "file su cui scrivere i messaggi"
msgid "pause listings when the screen is full"
-msgstr "fare sosta nella visualizzazione elenchi quando lo schermo è pieno"
+msgstr "fare sosta nella visualizzazione elenchi quando lo schermo è pieno"
msgid "start a dialog when a command fails"
-msgstr "iniziare un dialogo quando un comando non è riuscito"
+msgstr "iniziare un dialogo quando un comando non è riuscito"
msgid "ring the bell for error messages"
msgstr "suonare il campanello con i messaggi di errore"
@@ -8508,7 +8557,7 @@
msgstr "buffer da non salvare su disco"
msgid "changes to the text are possible"
-msgstr "è possibile modificare il testo"
+msgstr "è possibile modificare il testo"
msgid "line length above which to break a line"
msgstr "lunghezza di riga sopra la quale spezzare la riga stessa"
@@ -8536,7 +8585,7 @@
"specificare come funziona il completamente in modo Insert per CTRL-N e CTRL-P"
msgid "whether to use a popup menu for Insert mode completion"
-msgstr "se usare un menù dinamico per il completamento in modo Insert"
+msgstr "se usare un menù dinamico per il completamento in modo Insert"
msgid "options for the Insert mode completion info popup"
msgstr ""
@@ -8544,10 +8593,10 @@
"modo Insert"
msgid "maximum height of the popup menu"
-msgstr "massima altezza del menù dinamico"
+msgstr "massima altezza del menù dinamico"
msgid "minimum width of the popup menu"
-msgstr "larghezza minima del menù dinamico"
+msgstr "larghezza minima del menù dinamico"
msgid "user defined function for Insert mode completion"
msgstr "funzione definita dall'utente per il completamento in modo Insert"
@@ -8670,7 +8719,7 @@
msgstr "rimuovere per vedere aperte tutte le piegature"
msgid "folds with a level higher than this number will be closed"
-msgstr "piegature a livello più alto di questo numero resteranno chiuse"
+msgstr "piegature a livello più alto di questo numero resteranno chiuse"
msgid "value for 'foldlevel' when starting to edit a file"
msgstr "valore di 'foldlevel' all'inizio della modifica di un file"
@@ -8686,7 +8735,7 @@
"impostare a \"all\" per chiudere una piegatura quando il cursore la lascia"
msgid "specifies for which commands a fold will be opened"
-msgstr "specificare per quali comandi una piegatura verrà aperta"
+msgstr "specificare per quali comandi una piegatura verrà aperta"
msgid "minimum number of screen lines for a fold to be closed"
msgstr ""
@@ -8704,17 +8753,17 @@
"\"syntax\" o \"diff\""
msgid "expression used when 'foldmethod' is \"expr\""
-msgstr "espressione usata quando 'foldmethod' è \"expr\""
+msgstr "espressione usata quando 'foldmethod' è \"expr\""
msgid "used to ignore lines when 'foldmethod' is \"indent\""
-msgstr "usare per ignorare righe quando 'foldmethod' è \"indent\""
+msgstr "usare per ignorare righe quando 'foldmethod' è \"indent\""
msgid "markers used when 'foldmethod' is \"marker\""
-msgstr "marcature usate quando 'foldmethod' è \"marker\""
+msgstr "marcature usate quando 'foldmethod' è \"marker\""
msgid "maximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\""
msgstr ""
-"massima profondità piegature quando 'foldmethod' è \"indent\" o \"syntax\""
+"massima profondità piegature quando 'foldmethod' è \"indent\" o \"syntax\""
msgid "diff mode"
msgstr "modo Diff"
@@ -8735,7 +8784,7 @@
msgstr "mappatura"
msgid "maximum depth of mapping"
-msgstr "massima profondità delle mappature"
+msgstr "massima profondità delle mappature"
msgid "recognize mappings in mapped keys"
msgstr "riconoscere le mappature nei tasti mappati"
@@ -8789,7 +8838,7 @@
msgstr "obsoleto, usare 'fileformats'"
msgid "writing files is allowed"
-msgstr "la riscrittura dei file è consentita"
+msgstr "la riscrittura dei file è consentita"
msgid "write a backup file before overwriting a file"
msgstr "scrivere un file di backup, prima di riscrivere un file"
@@ -8819,11 +8868,11 @@
msgstr "scrivi sempre, senza mai chiedere conferma"
msgid "automatically read a file when it was modified outside of Vim"
-msgstr "leggi automaticamente un file quando è stato modificato non da Vim"
+msgstr "leggi automaticamente un file quando è stato modificato non da Vim"
msgid "keep oldest version of a file; specifies file name extension"
msgstr ""
-"conserva la versione più vecchia di un file; specifica l'estensione da usare"
+"conserva la versione più vecchia di un file; specifica l'estensione da usare"
msgid "forcibly sync the file to disk after writing it"
msgstr "forza una scrittura fisica su disco del file, dopo averlo riscritto"
@@ -8853,13 +8902,13 @@
msgid "time in msec after which the swap file will be updated"
msgstr ""
-"tempo in millisecondi trascorso il quale il file di swap verrà aggiornato"
+"tempo in millisecondi trascorso il quale il file di swap verrà aggiornato"
msgid "maximum amount of memory in Kbyte used for one buffer"
-msgstr "massima quantità di memoria in Kbyte da usare per un buffer"
+msgstr "massima quantità di memoria in Kbyte da usare per un buffer"
msgid "maximum amount of memory in Kbyte used for all buffers"
-msgstr "massima quantità di memoria in Kbyte da usare per tutti i buffer"
+msgstr "massima quantità di memoria in Kbyte da usare per tutti i buffer"
msgid "command line editing"
msgstr "edit della riga-di-comando"
@@ -8871,7 +8920,7 @@
msgstr "tasto che innesca l'espansione della riga-di-comando"
msgid "like 'wildchar' but can also be used in a mapping"
-msgstr "come 'wildchar', ma può anche essere usato in una mappatura"
+msgstr "come 'wildchar', ma può anche essere usato in una mappatura"
msgid "specifies how command line completion works"
msgstr "specifica come funziona il completamento della riga-di-comando"
@@ -8880,7 +8929,7 @@
msgstr "empty o \"tagfile\" per listare nome file dei tag corrispondenti"
msgid "list of file name extensions that have a lower priority"
-msgstr "lista delle estensioni di nomi file con priorità più bassa"
+msgstr "lista delle estensioni di nomi file con priorità più bassa"
msgid "list of file name extensions added when searching for a file"
msgstr ""
@@ -8922,7 +8971,7 @@
msgstr "come 'shellquote' ma comprende la ridirezione"
msgid "characters to escape when 'shellxquote' is ("
-msgstr "caratteri da proteggere quando 'shellxquote' è ("
+msgstr "caratteri da proteggere quando 'shellxquote' è ("
msgid "argument for 'shell' to execute a command"
msgstr "argomento da passare alla 'shell' per poter eseguire un comando"
@@ -9035,7 +9084,7 @@
msgstr "assumere la forma dei caratteri arabi"
msgid "terminal will perform bidi handling"
-msgstr "il terminale effettua gestione bidirezionalità del testo"
+msgstr "il terminale effettua gestione bidirezionalità del testo"
msgid "name of a keyboard mapping"
msgstr "nome di una mappatura di tastiera"
@@ -9068,7 +9117,7 @@
msgstr "se impostato, usare sempre IM iniziando a editare una riga-di-comando"
msgid "function to obtain IME status"
-msgstr "funzione per sapere se l'IME è disponibile oppure no"
+msgstr "funzione per sapere se l'IME è disponibile oppure no"
msgid "function to enable/disable IME"
msgstr "funzione per abilitare/disabilitare IME"
@@ -9131,7 +9180,7 @@
msgid "safer working with script files in the current directory"
msgstr ""
-"è più sicuro lavorare con file di script contenuti nella directory corrente"
+"è più sicuro lavorare con file di script contenuti nella directory corrente"
msgid "use the 'g' flag for \":substitute\""
msgstr "usare il flag 'g' flag con \":substitute\""
@@ -9143,7 +9192,7 @@
msgstr "consenti lettura/scrittura di dispositivi"
msgid "maximum depth of function calls"
-msgstr "profondità massima delle chiamate a funzione"
+msgstr "profondità massima delle chiamate a funzione"
msgid "list of words that specifies what to put in a session file"
msgstr "lista di parole che specifica cosa mettere in un file di sessione"
@@ -9161,13 +9210,13 @@
msgstr "nome del file da usare per contenere le informazioni viminfo"
msgid "what happens with a buffer when it's no longer in a window"
-msgstr "che fare quando un buffer non è più visibile in alcuna finestra"
+msgstr "che fare quando un buffer non è più visibile in alcuna finestra"
msgid "empty, \"nofile\", \"nowrite\", \"quickfix\", etc.: type of buffer"
msgstr "vuoto, \"nofile\", \"nowrite\", \"quickfix\", etc.: tipi di buffer"
msgid "whether the buffer shows up in the buffer list"
-msgstr "se il buffer è incluso nella lista dei buffer"
+msgstr "se il buffer è incluso nella lista dei buffer"
msgid "set to \"msg\" to see all error messages"
msgstr "impostare a \"msg\" per vedere tutti i messaggi di errore"
@@ -9211,3 +9260,4 @@
msgid "name of the MzScheme GC dynamic library"
msgstr "nome della libreria dinamica MzScheme GC"
+
diff --git a/src/po/ja.euc-jp.po b/src/po/ja.euc-jp.po
index 88af4fa..92493d1 100644
--- a/src/po/ja.euc-jp.po
+++ b/src/po/ja.euc-jp.po
@@ -3,7 +3,7 @@
# Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed.
#
-# Copyright (C) 2001-2019 MURAOKA Taro <koron.kaoriya@gmail.com>,
+# Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
# vim-jp <http://vim-jp.org/>
#
# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
@@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Vim 8.1\n"
+"Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-04 21:51+0900\n"
-"PO-Revision-Date: 2019-11-11 23:00+0900\n"
+"POT-Creation-Date: 2022-01-16 10:46+0900\n"
+"PO-Revision-Date: 2022-01-16 12:43+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n"
@@ -24,66 +24,45 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "E163: There is only one file to edit"
-msgstr "E163: ÊÔ½¸¤¹¤ë¥Õ¥¡¥¤¥ë¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
+msgid "ERROR: "
+msgstr "¥¨¥é¡¼: "
-msgid "E164: Cannot go before first file"
-msgstr "E164: ºÇ½é¤Î¥Õ¥¡¥¤¥ë¤è¤êÁ°¤Ë¤Ï¹Ô¤±¤Þ¤»¤ó"
+#, c-format
+msgid ""
+"\n"
+"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
+msgstr ""
+"\n"
+"[¥á¥â¥ê(¥Ð¥¤¥È)] Áí³äÅö-²òÊüÎÌ %lu-%lu, »ÈÍÑÎÌ %lu, ¥Ô¡¼¥¯»þ %lu\n"
-msgid "E165: Cannot go beyond last file"
-msgstr "E165: ºÇ¸å¤Î¥Õ¥¡¥¤¥ë¤ò±Û¤¨¤Æ¸å¤Ë¤Ï¹Ô¤±¤Þ¤»¤ó"
-
-msgid "E249: window layout changed unexpectedly"
-msgstr "E249: ͽ´ü¤»¤º¥¦¥£¥ó¥É¥¦¤ÎÇÛÃÖ¤¬ÊѤï¤ê¤Þ¤·¤¿"
+#, c-format
+msgid ""
+"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
+"\n"
+msgstr ""
+"[¸Æ½Ð] Áí re/malloc() ²ó¿ô %lu, Áí free() ²ó¿ô %lu\n"
+"\n"
msgid "--Deleted--"
msgstr "--ºï½üºÑ--"
#, c-format
msgid "auto-removing autocommand: %s <buffer=%d>"
-msgstr "autocommand: %s <¥Ð¥Ã¥Õ¥¡=%d> ¤¬¼«Æ°Åª¤Ëºï½ü¤µ¤ì¤Þ¤¹"
-
-#, c-format
-msgid "E367: No such group: \"%s\""
-msgstr "E367: ¤½¤Î¥°¥ë¡¼¥×¤Ï¤¢¤ê¤Þ¤»¤ó: \"%s\""
-
-msgid "E936: Cannot delete the current group"
-msgstr "E936: ¸½ºß¤Î¥°¥ë¡¼¥×¤Ïºï½ü¤Ç¤¤Þ¤»¤ó"
+msgstr "¼«Æ°¥³¥Þ¥ó¥É: %s <¥Ð¥Ã¥Õ¥¡=%d> ¤¬¼«Æ°Åª¤Ëºï½ü¤µ¤ì¤Þ¤¹"
msgid "W19: Deleting augroup that is still in use"
msgstr "W19: »ÈÍÑÃæ¤Î augroup ¤ò¾Ã¤½¤¦¤È¤·¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "E215: Illegal character after *: %s"
-msgstr "E215: * ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿: %s"
-
-#, c-format
-msgid "E216: No such event: %s"
-msgstr "E216: ¤½¤Î¤è¤¦¤Ê¥¤¥Ù¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E216: No such group or event: %s"
-msgstr "E216: ¤½¤Î¤è¤¦¤Ê¥°¥ë¡¼¥×¤â¤·¤¯¤Ï¥¤¥Ù¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid ""
"\n"
"--- Autocommands ---"
msgstr ""
"\n"
-"--- Autocommands ---"
+"--- ¼«Æ°¥³¥Þ¥ó¥É ---"
#, c-format
-msgid "E680: <buffer=%d>: invalid buffer number "
-msgstr "E680: <¥Ð¥Ã¥Õ¥¡=%d>: ̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡ÈÖ¹æ¤Ç¤¹ "
-
-msgid "E217: Can't execute autocommands for ALL events"
-msgstr "E217: Á´¤Æ¤Î¥¤¥Ù¥ó¥È¤ËÂФ·¤Æ¤Îautocommand¤Ï¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-
-msgid "No matching autocommands"
-msgstr "³ºÅö¤¹¤ëautocommand¤Ï¸ºß¤·¤Þ¤»¤ó"
-
-msgid "E218: autocommand nesting too deep"
-msgstr "E218: autocommand¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+msgid "No matching autocommands: %s"
+msgstr "³ºÅö¤¹¤ë¼«Æ°¥³¥Þ¥ó¥É¤Ï¸ºß¤·¤Þ¤»¤ó: %s"
#, c-format
msgid "%s Autocommands for \"%s\""
@@ -97,20 +76,11 @@
msgid "autocommand %s"
msgstr "autocommand %s"
-msgid "E831: bf_key_init() called with empty password"
-msgstr "E831: bf_key_init() ¤¬¶õ¥Ñ¥¹¥ï¡¼¥É¤Ç¸Æ¤Ó½Ð¤µ¤ì¤Þ¤·¤¿"
+msgid "add() argument"
+msgstr "add() ¤Î°ú¿ô"
-msgid "E820: sizeof(uint32_t) != 4"
-msgstr "E820: sizeof(uint32_t) != 4"
-
-msgid "E817: Blowfish big/little endian use wrong"
-msgstr "E817: Blowfish°Å¹æ¤Î¥Ó¥Ã¥°/¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E818: sha256 test failed"
-msgstr "E818: sha256¤Î¥Æ¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E819: Blowfish test failed"
-msgstr "E819: Blowfish°Å¹æ¤Î¥Æ¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "insert() argument"
+msgstr "insert() ¤Î°ú¿ô"
msgid "[Location List]"
msgstr "[¥í¥±¡¼¥·¥ç¥ó¥ê¥¹¥È]"
@@ -118,31 +88,6 @@
msgid "[Quickfix List]"
msgstr "[Quickfix¥ê¥¹¥È]"
-msgid "E855: Autocommands caused command to abort"
-msgstr "E855: autocommand¤¬¥³¥Þ¥ó¥É¤ÎÄä»ß¤ò°ú¤µ¯¤³¤·¤Þ¤·¤¿"
-
-msgid "E82: Cannot allocate any buffer, exiting..."
-msgstr "E82: ¥Ð¥Ã¥Õ¥¡¤ò1¤Ä¤âºîÀ®¤Ç¤¤Ê¤¤¤Î¤Ç¡¢½ªÎ»¤·¤Þ¤¹..."
-
-msgid "E83: Cannot allocate buffer, using other one..."
-msgstr "E83: ¥Ð¥Ã¥Õ¥¡¤òºîÀ®¤Ç¤¤Ê¤¤¤Î¤Ç¡¢Â¾¤Î¤ò»ÈÍѤ·¤Þ¤¹..."
-
-msgid "E931: Buffer cannot be registered"
-msgstr "E931: ¥Ð¥Ã¥Õ¥¡¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E937: Attempt to delete a buffer that is in use: %s"
-msgstr "E937: »ÈÍÑÃæ¤Î¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤è¤¦¤È»î¤ß¤Þ¤·¤¿: %s"
-
-msgid "E515: No buffers were unloaded"
-msgstr "E515: ²òÊü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E516: No buffers were deleted"
-msgstr "E516: ºï½ü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E517: No buffers were wiped out"
-msgstr "E517: ÇË´þ¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
#, c-format
msgid "%d buffer unloaded"
msgid_plural "%d buffers unloaded"
@@ -158,68 +103,19 @@
msgid_plural "%d buffers wiped out"
msgstr[0] "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿"
-msgid "E90: Cannot unload last buffer"
-msgstr "E90: ºÇ¸å¤Î¥Ð¥Ã¥Õ¥¡¤Ï²òÊü¤Ç¤¤Þ¤»¤ó"
-
-msgid "E84: No modified buffer found"
-msgstr "E84: Êѹ¹¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E85: There is no listed buffer"
-msgstr "E85: ¥ê¥¹¥Èɽ¼¨¤µ¤ì¤ë¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E87: Cannot go beyond last buffer"
-msgstr "E87: ºÇ¸å¤Î¥Ð¥Ã¥Õ¥¡¤ò±Û¤¨¤Æ°Üư¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E88: Cannot go before first buffer"
-msgstr "E88: ºÇ½é¤Î¥Ð¥Ã¥Õ¥¡¤è¤êÁ°¤Ø¤Ï°Üư¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E89: No write since last change for buffer %d (add ! to override)"
-msgstr "E89: ¥Ð¥Ã¥Õ¥¡ %d ¤ÎÊѹ¹¤ÏÊݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤ÇÊѹ¹¤òÇË´þ)"
-
-msgid "E948: Job still running (add ! to end the job)"
-msgstr "E948: ¥¸¥ç¥Ö¤Ï¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹ (! ¤òÄɲäǥ¸¥ç¥Ö¤ò½ªÎ»)"
-
-msgid "E37: No write since last change (add ! to override)"
-msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤òÄɲäÇÊѹ¹¤òÇË´þ)"
-
-msgid "E948: Job still running"
-msgstr "E948: ¥¸¥ç¥Ö¤Ï¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹"
-
-msgid "E37: No write since last change"
-msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
msgid "W14: Warning: List of file names overflow"
msgstr "W14: ·Ù¹ð: ¥Õ¥¡¥¤¥ë̾¤Î¥ê¥¹¥È¤¬Ä¹²á¤®¤Þ¤¹"
#, c-format
-msgid "E92: Buffer %d not found"
-msgstr "E92: ¥Ð¥Ã¥Õ¥¡ %d ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E93: More than one match for %s"
-msgstr "E93: %s ¤ËÊ£¿ô¤Î³ºÅö¤¬¤¢¤ê¤Þ¤·¤¿"
-
-#, c-format
-msgid "E94: No matching buffer for %s"
-msgstr "E94: %s ¤Ë³ºÅö¤¹¤ë¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-
-#, c-format
msgid "line %ld"
msgstr "¹Ô %ld"
-msgid "E95: Buffer with this name already exists"
-msgstr "E95: ¤³¤Î̾Á°¤Î¥Ð¥Ã¥Õ¥¡¤Ï´û¤Ë¤¢¤ê¤Þ¤¹"
-
msgid " [Modified]"
msgstr " [Êѹ¹¤¢¤ê]"
msgid "[Not edited]"
msgstr "[̤ÊÔ½¸]"
-msgid "[New file]"
-msgstr "[¿·¥Õ¥¡¥¤¥ë]"
-
msgid "[Read errors]"
msgstr "[ÆÉ¹þ¥¨¥é¡¼]"
@@ -259,9 +155,6 @@
msgid "Top"
msgstr "ÀèÆ¬"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: 'buftype' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç½ñ¹þ¤á¤Þ¤»¤ó"
-
msgid "[Prompt]"
msgstr "[¥×¥í¥ó¥×¥È]"
@@ -277,82 +170,11 @@
msgid "Do you really want to write to it"
msgstr "ËÜÅö¤Ë¾å½ñ¤¤·¤Þ¤¹¤«"
-msgid "E676: No matching autocommands for acwrite buffer"
-msgstr "E676: acwrite¥Ð¥Ã¥Õ¥¡¤Î³ºÅö¤¹¤ëautocommand¤Ï¸ºß¤·¤Þ¤»¤ó"
+msgid "[New]"
+msgstr "[¿·]"
-msgid "E203: Autocommands deleted or unloaded buffer to be written"
-msgstr "E203: Êݸ¤¹¤ë¥Ð¥Ã¥Õ¥¡¤òautocommand¤¬ºï½ü¤«²òÊü¤·¤Þ¤·¤¿"
-
-msgid "E204: Autocommand changed number of lines in unexpected way"
-msgstr "E204: autocommand¤¬Í½´ü¤»¤ÌÊýË¡¤Ç¹Ô¿ô¤òÊѹ¹¤·¤Þ¤·¤¿"
-
-# Added at 19-Jan-2004.
-msgid "NetBeans disallows writes of unmodified buffers"
-msgstr "NetBeans¤Ï̤Êѹ¹¤Î¥Ð¥Ã¥Õ¥¡¤ò¾å½ñ¤¹¤ë¤³¤È¤Ïµö²Ä¤·¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "Partial writes disallowed for NetBeans buffers"
-msgstr "NetBeans¥Ð¥Ã¥Õ¥¡¤Î°ìÉô¤ò½ñ¤½Ð¤¹¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "is a directory"
-msgstr "¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
-
-msgid "is not a file or writable device"
-msgstr "¤Ï¥Õ¥¡¥¤¥ë¤Ç¤â½ñ¹þ¤ß²Äǽ¥Ç¥Ð¥¤¥¹¤Ç¤â¤¢¤ê¤Þ¤»¤ó"
-
-msgid "writing to device disabled with 'opendevice' option"
-msgstr "'opendevice' ¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê¥Ç¥Ð¥¤¥¹¤Ø¤Î½ñ¤¹þ¤ß¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "is read-only (add ! to override)"
-msgstr "¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
-
-msgid "E506: Can't write to backup file (add ! to override)"
-msgstr "E506: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÊݸ¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
-
-msgid "E507: Close error for backup file (add ! to override)"
-msgstr ""
-"E507: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÊĤ¸¤ëºÝ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿ (! ¤òÄɲäǶ¯À©½ñ"
-"¹þ)"
-
-msgid "E508: Can't read file for backup (add ! to override)"
-msgstr "E508: ¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Õ¥¡¥¤¥ë¤òÆÉ¹þ¤á¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
-
-msgid "E509: Cannot create backup file (add ! to override)"
-msgstr "E509: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºî¤ì¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
-
-msgid "E510: Can't make backup file (add ! to override)"
-msgstr "E510: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºî¤ì¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
-
-msgid "E214: Can't find temp file for writing"
-msgstr "E214: ÊݸÍѰì»þ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E213: Cannot convert (add ! to write without conversion)"
-msgstr "E213: ÊÑ´¹¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäÇÊÑ´¹¤»¤º¤ËÊݸ)"
-
-msgid "E166: Can't open linked file for writing"
-msgstr "E166: ¥ê¥ó¥¯¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë½ñ¹þ¤á¤Þ¤»¤ó"
-
-msgid "E212: Can't open file for writing"
-msgstr "E212: ½ñ¹þ¤ßÍѤ˥ե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
-
-msgid "E949: File changed while writing"
-msgstr "E949: ½ñ¹þ¤ßÃæ¤Ë¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-
-msgid "E512: Close failed"
-msgstr "E512: ÊĤ¸¤ë¤³¤È¤Ë¼ºÇÔ"
-
-msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
-msgstr "E513: ½ñ¹þ¤ß¥¨¥é¡¼¡¢ÊÑ´¹¼ºÇÔ (¾å½ñ¤¹¤ë¤Ë¤Ï 'fenc' ¤ò¶õ¤Ë¤·¤Æ¤¯¤À¤µ¤¤)"
-
-#, c-format
-msgid ""
-"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
-"override)"
-msgstr ""
-"E513: ½ñ¹þ¤ß¥¨¥é¡¼¡¢ÊÑ´¹¼ºÇÔ¡¢¹Ô¿ô %ld (¾å½ñ¤¹¤ë¤Ë¤Ï 'fenc' ¤ò¶õ¤Ë¤·¤Æ¤¯¤À¤µ"
-"¤¤)"
-
-msgid "E514: write error (file system full?)"
-msgstr "E514: ½ñ¹þ¤ß¥¨¥é¡¼ (¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬ËþÇÕ?)"
+msgid "[New File]"
+msgstr "[¿·¥Õ¥¡¥¤¥ë]"
msgid " CONVERSION ERROR"
msgstr " ÊÑ´¹¥¨¥é¡¼"
@@ -370,12 +192,6 @@
msgid "[Device]"
msgstr "[¥Ç¥Ð¥¤¥¹]"
-msgid "[New]"
-msgstr "[¿·]"
-
-msgid "[New File]"
-msgstr "[¿·¥Õ¥¡¥¤¥ë]"
-
msgid " [a]"
msgstr " [a]"
@@ -388,15 +204,6 @@
msgid " written"
msgstr " ½ñ¹þ¤ß"
-msgid "E205: Patchmode: can't save original file"
-msgstr "E205: patchmode: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤òÊݸ¤Ç¤¤Þ¤»¤ó"
-
-msgid "E206: patchmode: can't touch empty original file"
-msgstr "E206: patchmode: ¶õ¤Î¸¶ËÜ¥Õ¥¡¥¤¥ë¤òtouch¤Ç¤¤Þ¤»¤ó"
-
-msgid "E207: Can't delete backup file"
-msgstr "E207: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¾Ã¤»¤Þ¤»¤ó"
-
msgid ""
"\n"
"WARNING: Original file may be lost or damaged\n"
@@ -410,59 +217,27 @@
msgid "W10: Warning: Changing a readonly file"
msgstr "W10: ·Ù¹ð: ÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤·¤Þ¤¹"
-msgid "E902: Cannot connect to port"
-msgstr "E902: ¥Ý¡¼¥È¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
+msgid "No display"
+msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "E901: gethostbyname() in channel_open()"
-msgstr "E901: channel_open() Æâ¤Î gethostbyname() ¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid ": Send failed.\n"
+msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-msgid "E898: socket() in channel_open()"
-msgstr "E898: channel_open() Æâ¤Î socket() ¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E903: received command with non-string argument"
-msgstr "E903: Èóʸ»úÎó¤Î°ú¿ô¤Î¥³¥Þ¥ó¥É¤ò¼õ¿®¤·¤Þ¤·¤¿"
-
-msgid "E904: last argument for expr/call must be a number"
-msgstr "E904: expr/call ¤ÎºÇ¸å¤Î°ú¿ô¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid "E904: third argument for call must be a list"
-msgstr "E904: call ¤Î3ÈÖÌܤΰú¿ô¤Ï¥ê¥¹¥È·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+msgid ": Send failed. Trying to execute locally\n"
+msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¥í¡¼¥«¥ë¤Ç¤Î¼Â¹Ô¤ò»î¤ß¤Æ¤¤¤Þ¤¹\n"
#, c-format
-msgid "E905: received unknown command: %s"
-msgstr "E905: ̤ÃΤΥ³¥Þ¥ó¥É¤ò¼õ¿®¤·¤Þ¤·¤¿: %s"
+msgid "%d of %d edited"
+msgstr "%d ¸Ä (%d ¸ÄÃæ) ¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Þ¤·¤¿"
-msgid "E906: not an open channel"
-msgstr "E906: ³«¤¤¤Æ¤¤¤Ê¤¤¥Á¥ã¥Í¥ë¤Ç¤¹"
+msgid "No display: Send expression failed.\n"
+msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¤¢¤ê¤Þ¤»¤ó: ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-#, c-format
-msgid "E630: %s(): write while not connected"
-msgstr "E630: %s(): ÈóÀܳ¾õÂ֤ǽñ¤¹þ¤ß¤Þ¤·¤¿"
+msgid ": Send expression failed.\n"
+msgstr ": ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-#, c-format
-msgid "E631: %s(): write failed"
-msgstr "E631: %s(): ½ñ¤¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E917: Cannot use a callback with %s()"
-msgstr "E917: %s() ¤Ë¥³¡¼¥ë¥Ð¥Ã¥¯¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
-msgstr ""
-"E912: raw ¤ä nl ¥â¡¼¥É¤Î¥Á¥ã¥Í¥ë¤Ë ch_evalexpr()/ch_sendexpr() ¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E920: _io file requires _name to be set"
-msgstr "E920: _io ¥Õ¥¡¥¤¥ë¤Ï _name ¤ÎÀßÄ꤬ɬÍפǤ¹"
-
-msgid "E915: in_io buffer requires in_buf or in_name to be set"
-msgstr "E915: in_io ¥Ð¥Ã¥Õ¥¡¤Ï in_buf ¤« in_name ¤ÎÀßÄ꤬ɬÍפǤ¹"
-
-#, c-format
-msgid "E918: buffer must be loaded: %s"
-msgstr "E918: ¥Ð¥Ã¥Õ¥¡¤¬¥í¡¼¥É¤µ¤ì¤Æ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-
-msgid "E916: not a valid job"
-msgstr "E916: ͸ú¤Ê¥¸¥ç¥Ö¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "Used CUT_BUFFER0 instead of empty selection"
+msgstr "¶õ¤ÎÁªÂòÎΰè¤Î¤«¤ï¤ê¤ËCUT_BUFFER0¤¬»ÈÍѤµ¤ì¤Þ¤·¤¿"
msgid "tagname"
msgstr "¥¿¥°Ì¾"
@@ -473,12 +248,14 @@
msgid "'history' option is zero"
msgstr "¥ª¥×¥·¥ç¥ó 'history' ¤¬¥¼¥í¤Ç¤¹"
-msgid "E821: File is encrypted with unknown method"
-msgstr "E821: ¥Õ¥¡¥¤¥ë¤¬Ì¤ÃΤÎÊýË¡¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
msgid "Warning: Using a weak encryption method; see :help 'cm'"
msgstr "·Ù¹ð: ¼å¤¤°Å¹æÊýË¡¤ò»È¤Ã¤Æ¤¤¤Þ¤¹; :help 'cm' ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "Note: Encryption of swapfile not supported, disabling swap file"
+msgstr ""
+"Ãí°Õ: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°Å¹æ²½¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò̵"
+"¸ú²½¤·¤Þ¤¹"
+
msgid "Enter encryption key: "
msgstr "°Å¹æ²½ÍѤΥ¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
@@ -521,10 +298,6 @@
msgid "Breakpoint in \"%s%s\" line %ld"
msgstr "¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È \"%s%s\" ¹Ô %ld"
-#, c-format
-msgid "E161: Breakpoint not found: %s"
-msgstr "E161: ¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
msgid "No breakpoints defined"
msgstr "¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
@@ -536,85 +309,16 @@
msgid "%3d expr %s"
msgstr "%3d expr %s"
-#, c-format
-msgid "E720: Missing colon in Dictionary: %s"
-msgstr "E720: ¼½ñ·¿¤Ë¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E721: Duplicate key in Dictionary: \"%s\""
-msgstr "E721: ¼½ñ·¿¤Ë½ÅÊ£¥¡¼¤¬¤¢¤ê¤Þ¤¹: \"%s\""
-
-#, c-format
-msgid "E722: Missing comma in Dictionary: %s"
-msgstr "E722: ¼½ñ·¿¤Ë¥«¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E723: Missing end of Dictionary '}': %s"
-msgstr "E723: ¼½ñ·¿¤ÎºÇ¸å¤Ë '}' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid "extend() argument"
msgstr "extend() ¤Î°ú¿ô"
#, c-format
-msgid "E737: Key already exists: %s"
-msgstr "E737: ¥¡¼¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s"
-
-#, c-format
-msgid "E96: Cannot diff more than %d buffers"
-msgstr "E96: %d °Ê¾å¤Î¥Ð¥Ã¥Õ¥¡¤Ïdiff¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "¥Ð¥Ã¥Õ¥¡ \"%s\" ÍÑ¤ËÆâÉôdiff¤ò»È¤¦¤¿¤á¤Î¥á¥â¥ê¤¬ÉÔ¤·¤Æ¤¤¤Þ¤¹"
-msgid "E810: Cannot read or write temp files"
-msgstr "E810: °ì»þ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤â¤·¤¯¤Ï½ñ¹þ¤¬¤Ç¤¤Þ¤»¤ó"
-
-msgid "E97: Cannot create diffs"
-msgstr "E97: º¹Ê¬¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-
-msgid "E960: Problem creating the internal diff"
-msgstr "E960: ÆâÉôdiffºîÀ®»þ¤ËÌäÂ꤬ȯÀ¸¤·¤Þ¤·¤¿"
-
msgid "Patch file"
msgstr "¥Ñ¥Ã¥Á¥Õ¥¡¥¤¥ë"
-msgid "E816: Cannot read patch output"
-msgstr "E816: patch¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó"
-
-msgid "E98: Cannot read diff output"
-msgstr "E98: diff¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó"
-
-msgid "E959: Invalid diff format."
-msgstr "E959: ̵¸ú¤Êdiff·Á¼°¤Ç¤¹"
-
-msgid "E99: Current buffer is not in diff mode"
-msgstr "E99: ¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤Ïº¹Ê¬¥â¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E793: No other buffer in diff mode is modifiable"
-msgstr "E793: º¹Ê¬¥â¡¼¥É¤Ç¤¢¤ë¾¤Î¥Ð¥Ã¥Õ¥¡¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E100: No other buffer in diff mode"
-msgstr "E100: º¹Ê¬¥â¡¼¥É¤Ç¤¢¤ë¾¤Î¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E101: More than two buffers in diff mode, don't know which one to use"
-msgstr ""
-"E101: º¹Ê¬¥â¡¼¥É¤Î¥Ð¥Ã¥Õ¥¡¤¬2¸Ä°Ê¾å¤¢¤ë¤Î¤Ç¡¢¤É¤ì¤ò»È¤¦¤«ÆÃÄê¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E102: Can't find buffer \"%s\""
-msgstr "E102: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E103: Buffer \"%s\" is not in diff mode"
-msgstr "E103: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤Ïº¹Ê¬¥â¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E787: Buffer changed unexpectedly"
-msgstr "E787: ͽ´ü¤»¤º¥Ð¥Ã¥Õ¥¡¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-
-msgid "E104: Escape not allowed in digraph"
-msgstr "E104: ¹ç»ú¤ËEscape¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
-
msgid "Custom"
msgstr "¥«¥¹¥¿¥à"
@@ -690,161 +394,10 @@
msgid "Bopomofo"
msgstr "Ãí²»»úÊì"
-msgid "E544: Keymap file not found"
-msgstr "E544: ¥¡¼¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E105: Using :loadkeymap not in a sourced file"
-msgstr "E105: :source ¤Ç¼è¹þ¤à¥Õ¥¡¥¤¥ë°Ê³°¤Ç¤Ï :loadkeymap ¤ò»È¤¨¤Þ¤»¤ó"
-
-msgid "E791: Empty keymap entry"
-msgstr "E791: ¶õ¤Î¥¡¼¥Þ¥Ã¥×¥¨¥ó¥È¥ê"
-
-msgid "E111: Missing ']'"
-msgstr "E111: ']' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E719: Cannot use [:] with a Dictionary"
-msgstr "E719: [:] ¤ò¼½ñ·¿¤ÈÁȤ߹ç¤ï¤»¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E806: using Float as a String"
-msgstr "E806: ÉâÆ°¾®¿ôÅÀ¿ô¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E274: No white space allowed before parenthesis"
-msgstr "E274: ´Ý³ç¸Ì¤ÎÁ°¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E689: Can only index a List, Dictionary or Blob"
-msgstr "E689: ¥ê¥¹¥È·¿¡¢¼½ñ·¿¡¢Blob·¿°Ê³°¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹»ØÄê¤Ç¤¤Þ¤»¤ó"
-
-msgid "E708: [:] must come last"
-msgstr "E708: [:] ¤ÏºÇ¸å¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
-
-msgid "E709: [:] requires a List or Blob value"
-msgstr "E709: [:] ¤Ë¤Ï¥ê¥¹¥È·¿¤«Blob·¿¤ÎÃͤ¬É¬ÍפǤ¹"
-
-msgid "E972: Blob value does not have the right number of bytes"
-msgstr "E972: Blob·¿¤ÎÃͤΥХ¤¥È¿ô¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E996: Cannot lock a range"
-msgstr "E996: ÈϰϤϥí¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-msgid "E710: List value has more items than target"
-msgstr "E710: ¥ê¥¹¥È·¿ÊÑ¿ô¤Ë¥¿¡¼¥²¥Ã¥È¤è¤ê¤â¿¤¤Í×ÁǤ¬¤¢¤ê¤Þ¤¹"
-
-msgid "E711: List value has not enough items"
-msgstr "E711: ¥ê¥¹¥È·¿ÊÑ¿ô¤Ë½½Ê¬¤Ê¿ô¤ÎÍ×ÁǤ¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E996: Cannot lock a list or dict"
-msgstr "E996: ¥ê¥¹¥È¤¢¤ë¤¤¤Ï¼½ñ¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-msgid "E690: Missing \"in\" after :for"
-msgstr "E690: :for ¤Î¸å¤Ë \"in\" ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E109: Missing ':' after '?'"
-msgstr "E109: '?' ¤Î¸å¤Ë ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E804: Cannot use '%' with Float"
-msgstr "E804: '%' ¤òÉâÆ°¾®¿ôÅÀ¿ô¤ÈÁȤ߹ç¤ï¤»¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E973: Blob literal should have an even number of hex characters"
-msgstr "E973: Blob¥ê¥Æ¥é¥ë¤Ï¶ö¿ô¸Ä¤Î16¿Ê¿ôʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid "E110: Missing ')'"
-msgstr "E110: ')' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E260: Missing name after ->"
-msgstr "E260: -> ¤Î¸å¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E695: Cannot index a Funcref"
-msgstr "E695: ´Ø¿ô»²¾È·¿¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E909: Cannot index a special variable"
-msgstr "E909: ÆÃ¼ìÊÑ¿ô¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E112: Option name missing: %s"
-msgstr "E112: ¥ª¥×¥·¥ç¥ó̾¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E113: Unknown option: %s"
-msgstr "E113: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
-
-#, c-format
-msgid "E114: Missing quote: %s"
-msgstr "E114: °úÍÑÉä (\") ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E115: Missing quote: %s"
-msgstr "E115: °úÍÑÉä (') ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid "Not enough memory to set references, garbage collection aborted!"
msgstr ""
"¥¬¡¼¥Ù¥Ã¥¸¥³¥ì¥¯¥·¥ç¥ó¤òÃæ»ß¤·¤Þ¤·¤¿! »²¾È¤òºîÀ®¤¹¤ë¤Î¤Ë¥á¥â¥ê¤¬ÉÔ¤·¤Þ¤·¤¿"
-msgid "E724: variable nested too deep for displaying"
-msgstr "E724: ɽ¼¨¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-
-msgid "E805: Using a Float as a Number"
-msgstr "E805: ÉâÆ°¾®¿ôÅÀ¿ô¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E703: Using a Funcref as a Number"
-msgstr "E703: ´Ø¿ô»²¾È·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E745: Using a List as a Number"
-msgstr "E745: ¥ê¥¹¥È·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E728: Using a Dictionary as a Number"
-msgstr "E728: ¼½ñ·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E910: Using a Job as a Number"
-msgstr "E910: ¥¸¥ç¥Ö¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E913: Using a Channel as a Number"
-msgstr "E913: ¥Á¥ã¥Í¥ë¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E974: Using a Blob as a Number"
-msgstr "E974: Blob·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E891: Using a Funcref as a Float"
-msgstr "E891: ´Ø¿ô»²¾È·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E892: Using a String as a Float"
-msgstr "E892: ʸ»úÎó¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E893: Using a List as a Float"
-msgstr "E893: ¥ê¥¹¥È·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E894: Using a Dictionary as a Float"
-msgstr "E894: ¼½ñ·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E907: Using a special value as a Float"
-msgstr "E907: ÆÃ¼ìÃͤòÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E911: Using a Job as a Float"
-msgstr "E911: ¥¸¥ç¥Ö¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E914: Using a Channel as a Float"
-msgstr "E914: ¥Á¥ã¥Í¥ë¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E975: Using a Blob as a Float"
-msgstr "E975: Blob·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E729: using Funcref as a String"
-msgstr "E729: ´Ø¿ô»²¾È·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E730: using List as a String"
-msgstr "E730: ¥ê¥¹¥È·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E731: using Dictionary as a String"
-msgstr "E731: ¼½ñ·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E976: using Blob as a String"
-msgstr "E976: Blob·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E908: using an invalid value as a String"
-msgstr "E908: ̵¸ú¤ÊÃͤòʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E698: variable nested too deep for making a copy"
-msgstr "E698: ¥³¥Ô¡¼¤ò¼è¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-
msgid ""
"\n"
"\tLast set from "
@@ -852,50 +405,9 @@
"\n"
"\tºÇ¸å¤Ë¥»¥Ã¥È¤·¤¿¥¹¥¯¥ê¥×¥È: "
-msgid " line "
-msgstr " ¹Ô "
-
-msgid "E977: Can only compare Blob with Blob"
-msgstr "E977: Blob·¿¤ÏBlob·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
-
-msgid "E691: Can only compare List with List"
-msgstr "E691: ¥ê¥¹¥È·¿¤Ï¥ê¥¹¥È·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
-
-msgid "E692: Invalid operation for List"
-msgstr "E692: ¥ê¥¹¥È·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
-
-msgid "E735: Can only compare Dictionary with Dictionary"
-msgstr "E735: ¼½ñ·¿¤Ï¼½ñ·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
-
-msgid "E736: Invalid operation for Dictionary"
-msgstr "E736: ¼½ñ·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
-
-msgid "E694: Invalid operation for Funcrefs"
-msgstr "E694: ´Ø¿ô»²¾È·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
-
-msgid "E808: Number or Float required"
-msgstr "E808: ¿ôÃͤ«ÉâÆ°¾®¿ôÅÀ¿ô¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E158: Invalid buffer name: %s"
-msgstr "E158: ̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡Ì¾¤Ç¤¹: %s"
-
msgid "&Ok"
msgstr "&Ok"
-msgid "E980: lowlevel input not supported"
-msgstr "E980: Äã¥ì¥Ù¥ëÆþÎϤϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E700: Unknown function: %s"
-msgstr "E700: ̤ÃΤδؿô¤Ç¤¹: %s"
-
-msgid "E922: expected a dict"
-msgstr "E922: ¼½ñ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
-msgid "E923: Second argument of function() must be a list or a dict"
-msgstr "E923: function() ¤ÎÂè 2 °ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤Ï¼½ñ·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
msgid ""
"&OK\n"
"&Cancel"
@@ -906,130 +418,6 @@
msgid "called inputrestore() more often than inputsave()"
msgstr "inputrestore() ¤¬ inputsave() ¤è¤ê¤â¿¤¯¸Æ¤Ð¤ì¤Þ¤·¤¿"
-msgid "E786: Range not allowed"
-msgstr "E786: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E701: Invalid type for len()"
-msgstr "E701: len() ¤Ë¤Ï̵¸ú¤Ê·¿¤Ç¤¹"
-
-msgid "E726: Stride is zero"
-msgstr "E726: ¥¹¥È¥é¥¤¥É(Á°¿ÊÎÌ)¤¬ 0 ¤Ç¤¹"
-
-msgid "E727: Start past end"
-msgstr "E727: ³«»Ï°ÌÃÖ¤¬½ªÎ»°ÌÃÖ¤ò±Û¤¨¤Þ¤·¤¿"
-
-msgid "E240: No connection to the X server"
-msgstr "E240: X ¥µ¡¼¥Ð¡¼¤Ø¤ÎÀܳ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E241: Unable to send to %s"
-msgstr "E241: %s ¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
-msgid "E277: Unable to read a server reply"
-msgstr "E277: ¥µ¡¼¥Ð¡¼¤Î±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E941: already started a server"
-msgstr "E941: ¥µ¡¼¥Ð¡¼¤Ï¤¹¤Ç¤Ë³«»Ï¤·¤Æ¤¤¤Þ¤¹"
-
-msgid "E942: +clientserver feature not available"
-msgstr "E942: +clientserver µ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E258: Unable to send to client"
-msgstr "E258: ¥¯¥é¥¤¥¢¥ó¥È¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E962: Invalid action: '%s'"
-msgstr "E962: ̵¸ú¤ÊÁàºî¤Ç¤¹: '%s'"
-
-msgid "(Invalid)"
-msgstr "(̵¸ú)"
-
-#, c-format
-msgid "E935: invalid submatch number: %d"
-msgstr "E935: ̵¸ú¤Ê¥µ¥Ö¥Þ¥Ã¥ÁÈÖ¹æ¤Ç¤¹: %d"
-
-msgid "E18: Unexpected characters in :let"
-msgstr "E18: ͽ´ü¤»¤Ìʸ»ú¤¬ :let ¤Ë¤¢¤ê¤Þ¤·¤¿"
-
-msgid "E991: cannot use =<< here"
-msgstr "E991: ¤³¤³¤Ç¤Ï =<< ¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E221: Marker cannot start with lower case letter"
-msgstr "E221: ¥Þ¡¼¥«¡¼¤Ï±Ñ¾®Ê¸»ú¤Ç»Ï¤Þ¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó"
-
-msgid "E172: Missing marker"
-msgstr "E172: ¥Þ¡¼¥«¡¼¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E990: Missing end marker '%s'"
-msgstr "E990: ½ªÃ¼¥Þ¡¼¥«¡¼¤¬¤¢¤ê¤Þ¤»¤ó '%s'"
-
-msgid "E985: .= is not supported with script version 2"
-msgstr "E985: .= ¤Ï¥¹¥¯¥ê¥×¥È¥Ð¡¼¥¸¥ç¥ó 2 ¤Ç¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E687: Less targets than List items"
-msgstr "E687: ¥¿¡¼¥²¥Ã¥È¤¬¥ê¥¹¥È·¿Æâ¤ÎÍ×ÁǤè¤ê¤â¾¯¤Ê¤¤¤Ç¤¹"
-
-msgid "E688: More targets than List items"
-msgstr "E688: ¥¿¡¼¥²¥Ã¥È¤¬¥ê¥¹¥È·¿Æâ¤ÎÍ×ÁǤè¤ê¤â¿¤¤¤Ç¤¹"
-
-msgid "Double ; in list of variables"
-msgstr "¥ê¥¹¥È·¿¤ÎÃͤË2¤Ä°Ê¾å¤Î ; ¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿"
-
-#, c-format
-msgid "E738: Can't list variables for %s"
-msgstr "E738: %s ¤ÎÃͤò°ìÍ÷ɽ¼¨¤Ç¤¤Þ¤»¤ó"
-
-msgid "E996: Cannot lock an environment variable"
-msgstr "E996: ´Ä¶ÊÑ¿ô¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-msgid "E996: Cannot lock an option"
-msgstr "E996: ¥ª¥×¥·¥ç¥ó¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-msgid "E996: Cannot lock a register"
-msgstr "E996: ¥ì¥¸¥¹¥¿¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E108: No such variable: \"%s\""
-msgstr "E108: ¤½¤ÎÊÑ¿ô¤Ï¤¢¤ê¤Þ¤»¤ó: \"%s\""
-
-#, c-format
-msgid "E940: Cannot lock or unlock variable %s"
-msgstr "E940: ÊÑ¿ô %s ¤Ï¥í¥Ã¥¯¤Þ¤¿¤Ï¥¢¥ó¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-
-msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: (¥¢¥ó)¥í¥Ã¥¯¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E963: setting %s to value with wrong type"
-msgstr "E963: %s ¤ò´Ö°ã¤Ã¤¿·¿¤ÎÃͤÇÀßÄꤷ¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E795: Cannot delete variable %s"
-msgstr "E795: ÊÑ¿ô %s ¤òºï½ü¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E704: Funcref variable name must start with a capital: %s"
-msgstr "E704: ´Ø¿ô»²¾È·¿ÊÑ¿ô̾¤ÏÂçʸ»ú¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E705: Variable name conflicts with existing function: %s"
-msgstr "E705: ÊÑ¿ô̾¤¬´û¸¤Î´Ø¿ô̾¤È¾×ÆÍ¤·¤Þ¤¹: %s"
-
-#, c-format
-msgid "E741: Value is locked: %s"
-msgstr "E741: Ãͤ¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-
-msgid "Unknown"
-msgstr "ÉÔÌÀ"
-
-#, c-format
-msgid "E742: Cannot change value of %s"
-msgstr "E742: %s ¤ÎÃͤòÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E921: Invalid callback argument"
-msgstr "E921: ̵¸ú¤Ê¥³¡¼¥ë¥Ð¥Ã¥¯°ú¿ô¤Ç¤¹"
-
#, c-format
msgid "<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"
msgstr "<%s>%s%s %d, 16¿Ê¿ô %02x, 8¿Ê¿ô %03o, ¥À¥¤¥°¥é¥Õ %s"
@@ -1054,9 +442,6 @@
msgid "> %d, Hex %08x, Octal %o"
msgstr "> %d, 16¿Ê¿ô %08x, 8¿Ê¿ô %o"
-msgid "E134: Cannot move a range of lines into itself"
-msgstr "E134: ¹Ô¤ÎÈϰϤò¤½¤ì¼«¿È¤Ë¤Ï°Üư¤Ç¤¤Þ¤»¤ó"
-
#, c-format
msgid "%ld line moved"
msgid_plural "%ld lines moved"
@@ -1066,9 +451,6 @@
msgid "%ld lines filtered"
msgstr "%ld ¹Ô¤¬¥Õ¥£¥ë¥¿½èÍý¤µ¤ì¤Þ¤·¤¿"
-msgid "E135: *Filter* Autocommands must not change current buffer"
-msgstr "E135: *¥Õ¥£¥ë¥¿* autocommand¤Ï¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤òÊѹ¹¤·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó"
-
msgid "[No write since last change]\n"
msgstr "[ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó]\n"
@@ -1078,9 +460,6 @@
msgid "Write partial file?"
msgstr "¥Õ¥¡¥¤¥ë¤òÉôʬŪ¤ËÊݸ¤·¤Þ¤¹¤«?"
-msgid "E140: Use ! to write partial buffer"
-msgstr "E140: ¥Ð¥Ã¥Õ¥¡¤òÉôʬŪ¤ËÊݸ¤¹¤ë¤Ë¤Ï ! ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤"
-
#, c-format
msgid "Overwrite existing file \"%s\"?"
msgstr "´û¸¤Î¥Õ¥¡¥¤¥ë \"%s\" ¤ò¾å½ñ¤¤·¤Þ¤¹¤«?"
@@ -1090,17 +469,6 @@
msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \"%s\" ¤¬Â¸ºß¤·¤Þ¤¹¡£¾å½ñ¤¤ò¶¯À©¤·¤Þ¤¹¤«?"
#, c-format
-msgid "E768: Swap file exists: %s (:silent! overrides)"
-msgstr "E768: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹: %s (:silent! ¤òÄɲäǾå½ñ)"
-
-#, c-format
-msgid "E141: No file name for buffer %ld"
-msgstr "E141: ¥Ð¥Ã¥Õ¥¡ %ld ¤Ë¤Ï̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E142: File not written: Writing is disabled by 'write' option"
-msgstr "E142: ¥Õ¥¡¥¤¥ë¤ÏÊݸ¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿: 'write' ¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê̵¸ú¤Ç¤¹"
-
-#, c-format
msgid ""
"'readonly' option is set for \"%s\".\n"
"Do you wish to write anyway?"
@@ -1115,30 +483,13 @@
"Do you wish to try?"
msgstr ""
"¥Õ¥¡¥¤¥ë \"%s\" ¤Î¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤¬ÆÉ¹þÀìÍѤǤ¹.\n"
-"¤½¤ì¤Ç¤â¶²¤é¤¯½ñ¤¹þ¤à¤³¤È¤Ï²Äǽ¤Ç¤¹.\n"
+"¤½¤ì¤Ç¤â¶²¤é¤¯½ñ¹þ¤à¤³¤È¤Ï²Äǽ¤Ç¤¹.\n"
"·Ñ³¤·¤Þ¤¹¤«?"
-#, c-format
-msgid "E505: \"%s\" is read-only (add ! to override)"
-msgstr "E505: \"%s\" ¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
-
msgid "Edit File"
msgstr "¥Õ¥¡¥¤¥ë¤òÊÔ½¸"
#, c-format
-msgid "E143: Autocommands unexpectedly deleted new buffer %s"
-msgstr "E143: autocommand¤¬Í½´ü¤»¤º¿·¤·¤¤¥Ð¥Ã¥Õ¥¡ %s ¤òºï½ü¤·¤Þ¤·¤¿"
-
-msgid "E144: non-numeric argument to :z"
-msgstr "E144: ¿ô¤Ç¤Ï¤Ê¤¤°ú¿ô¤¬ :z ¤ËÅϤµ¤ì¤Þ¤·¤¿"
-
-msgid "E145: Shell commands and some functionality not allowed in rvim"
-msgstr "E145: rvim¤Ç¤Ï¥·¥§¥ë¥³¥Þ¥ó¥É¤È°ìÉô¤Îµ¡Ç½¤ò»È¤¨¤Þ¤»¤ó"
-
-msgid "E146: Regular expressions can't be delimited by letters"
-msgstr "E146: Àµµ¬É½¸½¤Ïʸ»ú¤Ç¶èÀڤ뤳¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
msgid "replace with %s (y/n/a/q/l/^E/^Y)?"
msgstr "%s ¤ËÃÖ´¹¤·¤Þ¤¹¤«? (y/n/a/q/l/^E/^Y)"
@@ -1165,12 +516,6 @@
msgid_plural "%ld substitutions on %ld lines"
msgstr[0] "%ld ²Õ½êÃÖ´¹¤·¤Þ¤·¤¿ (·× %ld ¹ÔÆâ)"
-msgid "E147: Cannot do :global recursive with a range"
-msgstr "E147: :global ¤òÈϰÏÉÕ¤¤ÇºÆµ¢Åª¤Ë¤Ï»È¤¨¤Þ¤»¤ó"
-
-msgid "E148: Regular expression missing from global"
-msgstr "E148: global¥³¥Þ¥ó¥É¤ËÀµµ¬É½¸½¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
#, c-format
msgid "Pattern found in every line: %s"
msgstr "¥Ñ¥¿¡¼¥ó¤¬Á´¤Æ¤Î¹Ô¤Ç¸«¤Ä¤«¤ê¤Þ¤·¤¿: %s"
@@ -1179,46 +524,6 @@
msgid "Pattern not found: %s"
msgstr "¥Ñ¥¿¡¼¥ó¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-msgid "E478: Don't panic!"
-msgstr "E478: ¹²¤Æ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤"
-
-#, c-format
-msgid "E661: Sorry, no '%s' help for %s"
-msgstr "E661: »Äǰ¤Ç¤¹¤¬ '%s' ¤Î¥Ø¥ë¥×¤¬ %s ¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E149: Sorry, no help for %s"
-msgstr "E149: »Äǰ¤Ç¤¹¤¬ %s ¤Ë¤Ï¥Ø¥ë¥×¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "Sorry, help file \"%s\" not found"
-msgstr "»Äǰ¤Ç¤¹¤¬¥Ø¥ë¥×¥Õ¥¡¥¤¥ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E151: No match: %s"
-msgstr "E151: ¥Þ¥Ã¥Á¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E152: Cannot open %s for writing"
-msgstr "E152: ½ñ¹þ¤ßÍÑ¤Ë %s ¤ò³«¤±¤Þ¤»¤ó"
-
-#, c-format
-msgid "E153: Unable to open %s for reading"
-msgstr "E153: ÆÉ¹þÍÑ¤Ë %s ¤ò³«¤±¤Þ¤»¤ó"
-
-# Added at 29-Apr-2004.
-#, c-format
-msgid "E670: Mix of help file encodings within a language: %s"
-msgstr "E670: 1¤Ä¤Î¸À¸ì¤Î¥Ø¥ë¥×¥Õ¥¡¥¤¥ë¤ËÊ£¿ô¤Î¥¨¥ó¥³¡¼¥É¤¬º®ºß¤·¤Æ¤¤¤Þ¤¹: %s"
-
-#, c-format
-msgid "E154: Duplicate tag \"%s\" in file %s/%s"
-msgstr "E154: ¥¿¥° \"%s\" ¤¬¥Õ¥¡¥¤¥ë %s/%s ¤Ë½ÅÊ£¤·¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E150: Not a directory: %s"
-msgstr "E150: ¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid "No old files"
msgstr "¸Å¤¤¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
@@ -1226,20 +531,8 @@
msgid "Save changes to \"%s\"?"
msgstr "Êѹ¹¤ò \"%s\" ¤ËÊݸ¤·¤Þ¤¹¤«?"
-#, c-format
-msgid "E947: Job still running in buffer \"%s\""
-msgstr "E947: ¥¸¥ç¥Ö¤Ï¥Ð¥Ã¥Õ¥¡ \"%s\" ¤Ç¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹"
-
-#, c-format
-msgid "E162: No write since last change for buffer \"%s\""
-msgstr "E162: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤ÎÊѹ¹¤ÏÊݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
msgid "Warning: Entered other buffer unexpectedly (check autocommands)"
-msgstr "·Ù¹ð: ͽ´ü¤»¤ºÂ¾¥Ð¥Ã¥Õ¥¡¤Ø°Üư¤·¤Þ¤·¤¿ (autocommands ¤òÄ´¤Ù¤Æ¤¯¤À¤µ¤¤)"
-
-#, c-format
-msgid "E666: compiler not supported: %s"
-msgstr "E666: ¤½¤Î¥³¥ó¥Ñ¥¤¥é¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó: %s"
+msgstr "·Ù¹ð: ͽ´ü¤»¤ºÂ¾¥Ð¥Ã¥Õ¥¡¤Ø°Üư¤·¤Þ¤·¤¿ (¼«Æ°¥³¥Þ¥ó¥É¤òÄ´¤Ù¤Æ¤¯¤À¤µ¤¤)"
#, c-format
msgid "W20: Required python version 2.x not supported, ignoring file: %s"
@@ -1249,93 +542,40 @@
msgid "W21: Required python version 3.x not supported, ignoring file: %s"
msgstr "W21: Í׵ᤵ¤ì¤¿python 3.x¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó¡¢¥Õ¥¡¥¤¥ë¤ò̵»ë¤·¤Þ¤¹: %s"
-#, c-format
-msgid "Current %slanguage: \"%s\""
-msgstr "¸½ºß¤Î %s¸À¸ì: \"%s\""
-
-#, c-format
-msgid "E197: Cannot set language to \"%s\""
-msgstr "E197: ¸À¸ì¤ò \"%s\" ¤ËÀßÄê¤Ç¤¤Þ¤»¤ó"
-
msgid "Entering Ex mode. Type \"visual\" to go to Normal mode."
msgstr ""
"Ex¥â¡¼¥É¤ËÆþ¤ê¤Þ¤¹¡£¥Î¡¼¥Þ¥ë¥â¡¼¥É¤ËÌá¤ë¤Ë¤Ï\"visual\"¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£"
-msgid "E501: At end-of-file"
-msgstr "E501: ¥Õ¥¡¥¤¥ë¤Î½ªÎ»°ÌÃÖ"
-
#, c-format
msgid "Executing: %s"
msgstr "¼Â¹ÔÃæ: %s"
-msgid "E169: Command too recursive"
-msgstr "E169: ¥³¥Þ¥ó¥É¤¬ºÆµ¢Åª²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E605: Exception not caught: %s"
-msgstr "E605: Îã³°¤¬Ê᪤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-
msgid "End of sourced file"
-msgstr "¼è¹þ¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤Ç¤¹"
+msgstr "¼è¹þ¤ß¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤Ç¤¹"
msgid "End of function"
msgstr "´Ø¿ô¤ÎºÇ¸å¤Ç¤¹"
-msgid "E464: Ambiguous use of user-defined command"
-msgstr "E464: ¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Î¤¢¤¤¤Þ¤¤¤Ê»ÈÍѤǤ¹"
-
-msgid "E492: Not an editor command"
-msgstr "E492: ¥¨¥Ç¥£¥¿¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E981: Command not allowed in rvim"
-msgstr "E981: rvim¤Ç¤Ï¤³¤Î¥³¥Þ¥ó¥É¤ò»È¤¨¤Þ¤»¤ó"
-
-msgid "E493: Backwards range given"
-msgstr "E493: µÕ¤µ¤Þ¤ÎÈϰϤ¬»ØÄꤵ¤ì¤Þ¤·¤¿"
-
msgid "Backwards range given, OK to swap"
msgstr "µÕ¤µ¤Þ¤ÎÈϰϤ¬»ØÄꤵ¤ì¤Þ¤·¤¿¡¢ÆþÂØ¤¨¤Þ¤¹¤«?"
-msgid "E494: Use w or w>>"
-msgstr "E494: w ¤â¤·¤¯¤Ï w>> ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
-
msgid ""
"INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"
msgstr ""
"ÆâÉô¥¨¥é¡¼: EX_DFLALL ¤ò ADDR_NONE, ADDR_UNSIGNED ¤ä ADDR_QUICKFIX ¤È¤È¤â¤Ë»È"
"¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
-msgstr ""
-"E943: ¥³¥Þ¥ó¥É¥Æ¡¼¥Ö¥ë¤ò¹¹¿·¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡¢'make cmdidxs' ¤ò¼Â¹Ô¤·¤Æ¤¯¤À"
-"¤µ¤¤"
-
-msgid "E319: Sorry, the command is not available in this version"
-msgstr "E319: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¤³¤Î¥³¥Þ¥ó¥É¤ÏÍøÍѤǤ¤Þ¤»¤ó¡¢¤´¤á¤ó¤Ê¤µ¤¤"
-
#, c-format
msgid "%d more file to edit. Quit anyway?"
msgid_plural "%d more files to edit. Quit anyway?"
msgstr[0] "ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹¤¬¡¢½ªÎ»¤·¤Þ¤¹¤«?"
-#, c-format
-msgid "E173: %d more file to edit"
-msgid_plural "E173: %d more files to edit"
-msgstr[0] "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹"
-
msgid "unknown"
msgstr "ÉÔÌÀ"
-#, c-format
-msgid "E185: Cannot find color scheme '%s'"
-msgstr "E185: ¥«¥é¡¼¥¹¥¡¼¥à '%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
msgid "Greetings, Vim user!"
msgstr "Vim »È¤¤¤µ¤ó¡¢¤ä¤¢!"
-msgid "E784: Cannot close last tab page"
-msgstr "E784: ºÇ¸å¤Î¥¿¥Ö¥Ú¡¼¥¸¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
msgid "Already only one tab page"
msgstr "´û¤Ë¥¿¥Ö¥Ú¡¼¥¸¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
@@ -1355,96 +595,16 @@
msgid "Append File"
msgstr "Äɲåե¡¥¤¥ë"
-msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
-msgstr ""
-"E747: ¥Ð¥Ã¥Õ¥¡¤¬½¤Àµ¤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäÇ"
-"¾å½ñ)"
-
-msgid "E186: No previous directory"
-msgstr "E186: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E187: Unknown"
-msgstr "E187: ̤ÃÎ"
-
-msgid "E465: :winsize requires two number arguments"
-msgstr "E465: :winsize ¤Ë¤Ï2¤Ä¤Î¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
-
#, c-format
msgid "Window position: X %d, Y %d"
msgstr "¥¦¥£¥ó¥É¥¦°ÌÃÖ: X %d, Y %d"
-msgid "E188: Obtaining window position not implemented for this platform"
-msgstr ""
-"E188: ¤³¤Î¥×¥é¥Ã¥È¥Û¡¼¥à¤Ë¤Ï¥¦¥£¥ó¥É¥¦°ÌÃ֤μèÆÀµ¡Ç½¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E466: :winpos requires two number arguments"
-msgstr "E466: :winpos ¤Ë¤Ï2¤Ä¤Î¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
-
-msgid "E930: Cannot use :redir inside execute()"
-msgstr "E930: execute() ¤ÎÃæ¤Ç¤Ï :redir ¤Ï»È¤¨¤Þ¤»¤ó"
-
msgid "Save Redirection"
msgstr "¥ê¥À¥¤¥ì¥¯¥È¤òÊݸ¤·¤Þ¤¹"
-#, c-format
-msgid "E739: Cannot create directory: %s"
-msgstr "E739: ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤Ç¤¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E189: \"%s\" exists (add ! to override)"
-msgstr "E189: \"%s\" ¤¬Â¸ºß¤·¤Þ¤¹ (¾å½ñ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤)"
-
-#, c-format
-msgid "E190: Cannot open \"%s\" for writing"
-msgstr "E190: \"%s\" ¤ò½ñ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
-
-msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr "E191: °ú¿ô¤Ï1ʸ»ú¤Î±Ñ»ú¤«°úÍÑÉä (' ¤« `) ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
-
-msgid "E192: Recursive use of :normal too deep"
-msgstr "E192: :normal ¤ÎºÆµ¢ÍøÍѤ¬¿¼¤¯¤Ê¤ê²á¤®¤Þ¤·¤¿"
-
-msgid "E809: #< is not available without the +eval feature"
-msgstr "E809: #< ¤Ï +eval µ¡Ç½¤¬Ìµ¤¤¤ÈÍøÍѤǤ¤Þ¤»¤ó"
-
-msgid "E194: No alternate file name to substitute for '#'"
-msgstr "E194: '#'¤òÃÖ¤´¹¤¨¤ëÉû¥Õ¥¡¥¤¥ë¤Î̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E495: no autocommand file name to substitute for \"<afile>\""
-msgstr "E495: \"<afile>\"¤òÃÖ¤´¹¤¨¤ëautocommand¤Î¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
-msgstr "E496: \"<abuf>\"¤òÃÖ¤´¹¤¨¤ëautocommand¥Ð¥Ã¥Õ¥¡Èֹ椬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E497: no autocommand match name to substitute for \"<amatch>\""
-msgstr "E497: \"<amatch>\"¤òÃÖ¤´¹¤¨¤ëautocommand¤Î³ºÅö̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E498: no :source file name to substitute for \"<sfile>\""
-msgstr "E498: \"<sfile>\"¤òÃÖ¤´¹¤¨¤ë :source Âоݥե¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E842: no line number to use for \"<slnum>\""
-msgstr "E842: \"<slnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E961: no line number to use for \"<sflnum>\""
-msgstr "E961: \"<sflnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó"
-
-#, no-c-format
-msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
-msgstr ""
-"E499: '%' ¤ä '#' ¤¬ÌµÌ¾¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç \":p:h\" ¤òȼ¤ï¤Ê¤¤»È¤¤Êý¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E500: Evaluates to an empty string"
-msgstr "E500: ¶õʸ»úÎó¤È¤·¤ÆÉ¾²Á¤µ¤ì¤Þ¤·¤¿"
-
msgid "Untitled"
msgstr "̵Âê"
-msgid "E196: No digraphs in this version"
-msgstr "E196: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¹ç»ú¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
-msgstr "E608: 'Vim' ¤Ç»Ï¤Þ¤ëÎã³°¤Ï :throw ¤Ç¤¤Þ¤»¤ó"
-
#, c-format
msgid "Exception thrown: %s"
msgstr "Îã³°¤¬È¯À¸¤·¤Þ¤·¤¿: %s"
@@ -1489,71 +649,11 @@
msgid "Interrupt"
msgstr "³ä¹þ¤ß"
-msgid "E579: :if nesting too deep"
-msgstr "E579: :if ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+msgid "[Command Line]"
+msgstr "[¥³¥Þ¥ó¥É¥é¥¤¥ó]"
-msgid "E580: :endif without :if"
-msgstr "E580: :if ¤Î¤Ê¤¤ :endif ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E581: :else without :if"
-msgstr "E581: :if ¤Î¤Ê¤¤ :else ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E582: :elseif without :if"
-msgstr "E582: :if ¤Î¤Ê¤¤ :elseif ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E583: multiple :else"
-msgstr "E583: Ê£¿ô¤Î :else ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E584: :elseif after :else"
-msgstr "E584: :else ¤Î¸å¤Ë :elseif ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E585: :while/:for nesting too deep"
-msgstr "E585: :while ¤ä :for ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-
-msgid "E586: :continue without :while or :for"
-msgstr "E586: :while ¤ä :for ¤Î¤Ê¤¤ :continue ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E587: :break without :while or :for"
-msgstr "E587: :while ¤ä :for ¤Î¤Ê¤¤ :break ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E732: Using :endfor with :while"
-msgstr "E732: :endfor ¤ò :while ¤ÈÁȤ߹ç¤ï¤»¤Æ¤¤¤Þ¤¹"
-
-msgid "E733: Using :endwhile with :for"
-msgstr "E733: :endwhile ¤ò :for ¤ÈÁȤ߹ç¤ï¤»¤Æ¤¤¤Þ¤¹"
-
-msgid "E601: :try nesting too deep"
-msgstr "E601: :try ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-
-msgid "E603: :catch without :try"
-msgstr "E603: :try ¤Î¤Ê¤¤ :catch ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E604: :catch after :finally"
-msgstr "E604: :finally ¤Î¸å¤Ë :catch ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E606: :finally without :try"
-msgstr "E606: :try ¤Î¤Ê¤¤ :finally ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E607: multiple :finally"
-msgstr "E607: Ê£¿ô¤Î :finally ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E602: :endtry without :try"
-msgstr "E602: :try ¤Î¤Ê¤¤ :endtry ¤Ç¤¹"
-
-msgid "E193: :endfunction not inside a function"
-msgstr "E193: ´Ø¿ô¤Î³°¤Ë :endfunction ¤¬¤¢¤ê¤Þ¤·¤¿"
-
-msgid "E788: Not allowed to edit another buffer now"
-msgstr "E788: ¸½ºß¤Ï¾¤Î¥Ð¥Ã¥Õ¥¡¤òÊÔ½¸¤¹¤ë¤³¤È¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E811: Not allowed to change buffer information now"
-msgstr "E811: ¸½ºß¤Ï¥Ð¥Ã¥Õ¥¡¾ðÊó¤òÊѹ¹¤¹¤ë¤³¤È¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E199: Active window or buffer deleted"
-msgstr "E199: ¥¢¥¯¥Æ¥£¥Ö¤Ê¥¦¥£¥ó¥É¥¦¤«¥Ð¥Ã¥Õ¥¡¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿"
-
-msgid "E812: Autocommands changed buffer or buffer name"
-msgstr "E812: autocommand¤¬¥Ð¥Ã¥Õ¥¡¤«¥Ð¥Ã¥Õ¥¡Ì¾¤òÊѹ¹¤·¤Þ¤·¤¿"
+msgid "is a directory"
+msgstr "¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
msgid "Illegal file name"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë̾"
@@ -1573,21 +673,12 @@
msgid "[Permission Denied]"
msgstr "[¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó]"
-msgid "E200: *ReadPre autocommands made the file unreadable"
-msgstr "E200: *ReadPre autocommand ¤¬¥Õ¥¡¥¤¥ë¤òÆÉ¹þÉԲĤˤ·¤Þ¤·¤¿"
-
-msgid "E201: *ReadPre autocommands must not change current buffer"
-msgstr "E201: *ReadPre autocommand ¤Ï¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
-
msgid "Vim: Reading from stdin...\n"
-msgstr "Vim: ɸ½àÆþÎϤ«¤éÆÉ¹þÃæ...\n"
+msgstr "Vim: ɸ½àÆþÎϤ«¤éÆÉ¹þ¤ßÃæ...\n"
msgid "Reading from stdin..."
msgstr "ɸ½àÆþÎϤ«¤éÆÉ¹þ¤ßÃæ..."
-msgid "E202: Conversion made file unreadable!"
-msgstr "E202: ÊÑ´¹¤¬¥Õ¥¡¥¤¥ë¤òÆÉ¹þÉԲĤˤ·¤Þ¤·¤¿"
-
msgid "[fifo]"
msgstr "[FIFO]"
@@ -1647,9 +738,9 @@
msgstr[0] "%ld ¹Ô, "
#, c-format
-msgid "%lld character"
-msgid_plural "%lld characters"
-msgstr[0] "%lld ʸ»ú"
+msgid "%lld byte"
+msgid_plural "%lld bytes"
+msgstr[0] "%lld ¥Ð¥¤¥È"
msgid "[noeol]"
msgstr "[noeol]"
@@ -1658,25 +749,6 @@
msgstr "[ºÇ½ª¹Ô¤¬ÉÔ´°Á´]"
#, c-format
-msgid "E208: Error writing to \"%s\""
-msgstr "E208: \"%s\" ¤ò½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
-
-#, c-format
-msgid "E209: Error closing \"%s\""
-msgstr "E209: \"%s\" ¤òÊĤ¸¤ë»þ¤Ë¥¨¥é¡¼¤Ç¤¹"
-
-#, c-format
-msgid "E210: Error reading \"%s\""
-msgstr "E210: \"%s\" ¤òÆÉ¹þÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E246: FileChangedShell autocommand deleted buffer"
-msgstr "E246: autocommand ¤Î FileChangedShell ¤¬¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E211: File \"%s\" no longer available"
-msgstr "E211: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï´û¤Ë¸ºß¤·¤Þ¤»¤ó"
-
-#, c-format
msgid ""
"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as "
"well"
@@ -1713,26 +785,11 @@
"&OK\n"
"¥Õ¥¡¥¤¥ëÆÉ¹þ(&L)"
-#, c-format
-msgid "E462: Could not prepare for reloading \"%s\""
-msgstr "E462: \"%s\" ¤ò¥ê¥í¡¼¥É¤¹¤ë½àÈ÷¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
-#, c-format
-msgid "E321: Could not reload \"%s\""
-msgstr "E321: \"%s\" ¤Ï¥ê¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E219: Missing {."
-msgstr "E219: { ¤¬¤¢¤ê¤Þ¤»¤ó¡£"
-
-msgid "E220: Missing }."
-msgstr "E220: } ¤¬¤¢¤ê¤Þ¤»¤ó¡£"
-
msgid "<empty>"
msgstr "<¶õ>"
-# Added at 10-Mar-2004.
-msgid "E655: Too many symbolic links (cycle?)"
-msgstr "E655: ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬Â¿²á¤®¤Þ¤¹ (½Û´Ä¤·¤Æ¤¤¤ë²ÄǽÀ¤¬¤¢¤ê¤Þ¤¹)"
+msgid "writefile() first argument must be a List or a Blob"
+msgstr "writefile() ¤ÎÂè1°ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
msgid "Select Directory dialog"
msgstr "¥Ç¥£¥ì¥¯¥È¥êÁªÂò¥À¥¤¥¢¥í¥°"
@@ -1743,51 +800,8 @@
msgid "Open File dialog"
msgstr "¥Õ¥¡¥¤¥ëÆÉ¹þ¥À¥¤¥¢¥í¥°"
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: ¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤Ç¤Ï¥Õ¥¡¥¤¥ë¥Ö¥é¥¦¥¶¤ò»È¤¨¤Þ¤»¤ó¡¢¤´¤á¤ó¤Ê¤µ¤¤"
-
-msgid "E854: path too long for completion"
-msgstr "E854: ¥Ñ¥¹¤¬Ä¹²á¤®¤ÆÊä´°¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: ̵¸ú¤Ê¥Ñ¥¹¤Ç¤¹: '**[¿ôÃÍ]' ¤Ïpath¤ÎºÇ¸å¤« '%s' ¤¬Â³¤¤¤Æ¤Ê¤¤¤È¤¤¤±¤Þ¤»"
-"¤ó¡£"
-
-#, c-format
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: ¥Ñ¥¹¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E446: No file name under cursor"
-msgstr "E446: ¥«¡¼¥½¥ë¤Î²¼¤Ë¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E490: No fold found"
-msgstr "E490: ÀÞ¾ö¤ß¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E350: Cannot create fold with current 'foldmethod'"
-msgstr "E350: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-
-msgid "E351: Cannot delete fold with current 'foldmethod'"
-msgstr "E351: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤òºï½ü¤Ç¤¤Þ¤»¤ó"
+msgid "no matches"
+msgstr "³ºÅö¤Ê¤·"
#, c-format
msgid "+--%3ld line folded "
@@ -1799,57 +813,15 @@
msgid_plural "+-%s%3ld lines: "
msgstr[0] "+-%s%3ld ¹Ô: "
-msgid "E222: Add to read buffer"
-msgstr "E222: ÆÉ¹þ¥Ð¥Ã¥Õ¥¡¤ØÄɲÃ"
-
-msgid "E223: recursive mapping"
-msgstr "E223: ºÆµ¢Åª¥Þ¥Ã¥Ô¥ó¥°"
-
-msgid "E851: Failed to create a new process for the GUI"
-msgstr "E851: GUIÍÑ¤Î¥×¥í¥»¥¹¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E852: The child process failed to start the GUI"
-msgstr "E852: »Ò¥×¥í¥»¥¹¤¬GUI¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E229: Cannot start the GUI"
-msgstr "E229: GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: ͸ú¤Ê¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤¤¤Î¤Ç¡¢GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' ¤¬Ìµ¸ú¤Ç¤¹"
-
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: 'imactivatekey' ¤ËÀßÄꤵ¤ì¤¿Ãͤ¬Ìµ¸ú¤Ç¤¹"
-
-#, c-format
-msgid "E254: Cannot allocate color %s"
-msgstr "E254: %s ¤Î¿§¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
-
msgid "No match at cursor, finding next"
msgstr "¥«¡¼¥½¥ë¤Î°ÌÃ֤˥ޥåÁ¤Ï¤¢¤ê¤Þ¤»¤ó¡¢¼¡¤ò¸¡º÷¤·¤Æ¤¤¤Þ¤¹"
msgid "<cannot open> "
msgstr "<³«¤±¤Þ¤»¤ó> "
-#, c-format
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: ¥Õ¥©¥ó¥È %s ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
-
msgid "Pathname:"
msgstr "¥Ñ¥¹Ì¾:"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-
msgid "OK"
msgstr "OK"
@@ -1862,18 +834,15 @@
msgid "Vim dialog"
msgstr "Vim ¥À¥¤¥¢¥í¥°"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: ¥á¥Ã¥»¡¼¥¸¤È¥³¡¼¥ë¥Ð¥Ã¥¯¤Î¤¢¤ë BalloonEval ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-
-msgid "_Cancel"
-msgstr "¥¥ã¥ó¥»¥ë(_C)"
-
msgid "_Save"
msgstr "Êݸ(_S)"
msgid "_Open"
msgstr "³«¤¯(_O)"
+msgid "_Cancel"
+msgstr "¥¥ã¥ó¥»¥ë(_C)"
+
msgid "_OK"
msgstr "_OK"
@@ -2001,39 +970,6 @@
msgstr "¥Ç¥£¥ì¥¯¥È¥ê\t*.nothing\n"
#, c-format
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: ¥¿¥¤¥È¥ë¤¬ \"%s\" ¤Î¥¦¥£¥ó¥É¥¦¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: °ú¿ô¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó: \"-%s\"; OLEÈǤò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
-
-msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
-msgstr "E988: GUI¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹¡£gvim.exe¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¡£"
-
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: MDI¥¢¥×¥ê¤ÎÃæ¤Ç¤Ï¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó"
-
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr "Vim E458: ¿§»ØÄ꤬Àµ¤·¤¯¤Ê¤¤¤Î¤Ç¥¨¥ó¥È¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: °Ê²¼¤Îʸ»ú¥»¥Ã¥È¤Î¥Õ¥©¥ó¥È¤¬¤¢¤ê¤Þ¤»¤ó %s:"
-
-#, c-format
-msgid "E252: Fontset name: %s"
-msgstr "E252: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s"
-
-#, c-format
-msgid "Font '%s' is not fixed-width"
-msgstr "¥Õ¥©¥ó¥È '%s' ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E253: Fontset name: %s"
-msgstr "E253: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s"
-
-#, c-format
msgid "Font0: %s"
msgstr "¥Õ¥©¥ó¥È0: %s"
@@ -2083,18 +1019,6 @@
msgid "Size:"
msgstr "¥µ¥¤¥º:"
-msgid "E256: Hangul automata ERROR"
-msgstr "E256: ¥Ï¥ó¥°¥ë¥ª¡¼¥È¥Þ¥È¥ó¥¨¥é¡¼"
-
-msgid "E550: Missing colon"
-msgstr "E550: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E551: Illegal component"
-msgstr "E551: ÉÔÀµ¤Ê¹½Ê¸Í×ÁǤǤ¹"
-
-msgid "E552: digit expected"
-msgstr "E552: ¿ôÃͤ¬É¬ÍפǤ¹"
-
#, c-format
msgid "Page %d"
msgstr "%d ¥Ú¡¼¥¸"
@@ -2117,158 +1041,19 @@
msgid "Printing aborted"
msgstr "°õºþ¤¬Ãæ»ß¤µ¤ì¤Þ¤·¤¿"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: PostScript½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-
-#, c-format
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-
-#, c-format
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
-
-#, c-format
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: ¥Õ¥¡¥¤¥ë \"%s\" ¤ÏÂбþ¤·¤Æ¤¤¤Ê¤¤ PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤¹"
-
-#, c-format
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤Ï¥Ð¡¼¥¸¥ç¥ó¤¬°Û¤Ê¤ê¤Þ¤¹"
-
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: ¸ß´¹À¤Î̵¤¤¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Èʸ»ú¥»¥Ã¥È¤Ç¤¹¡£"
-
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr ""
-"E674: ¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤Ï printmbcharset ¤ò¶õ¤Ë¤Ç¤¤Þ¤»¤ó¡£"
-
-msgid "E675: No default font specified for multi-byte printing."
-msgstr ""
-"E675: ¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú¤ò°õºþ¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»"
-"¤ó¡£"
-
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: PostScript½ÐÎÏÍѤΥե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
-
-#, c-format
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"prolog.ps\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"cidfont.ps\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s.ps\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: °õºþ¥¨¥ó¥³¡¼¥É \"%s\" ¤ØÊÑ´¹¤Ç¤¤Þ¤»¤ó"
-
msgid "Sending to printer..."
msgstr "¥×¥ê¥ó¥¿¤ËÁ÷¿®Ãæ..."
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: PostScript¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
msgid "Print job sent."
msgstr "°õºþ¥¸¥ç¥Ö¤òÁ÷¿®¤·¤Þ¤·¤¿¡£"
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: syncolor.vim ¤ÎºÆµ¢¸Æ¤Ó½Ð¤·¤ò¸¡½Ð¤·¤Þ¤·¤¿"
-
#, c-format
-msgid "E411: highlight group not found: %s"
-msgstr "E411: ¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: °ú¿ô¤¬½¼Ê¬¤Ç¤Ï¤Ê¤¤: \":highlight link %s\""
-
-#, c-format
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹: \":highlight link %s\""
-
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: ¥°¥ë¡¼¥×¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç¥Ï¥¤¥é¥¤¥È¥ê¥ó¥¯¤Ï̵»ë¤µ¤ì¤Þ¤¹"
-
-#, c-format
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: ͽ´ü¤»¤ÌÅù¹æ¤Ç¤¹: %s"
-
-#, c-format
-msgid "E416: missing equal sign: %s"
-msgstr "E416: Åù¹æ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E417: missing argument: %s"
-msgstr "E417: °ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E418: Illegal value: %s"
-msgstr "E418: ÉÔÀµ¤ÊÃͤǤ¹: %s"
-
-msgid "E419: FG color unknown"
-msgstr "E419: ̤ÃΤÎÁ°·Ê¿§¤Ç¤¹"
-
-msgid "E420: BG color unknown"
-msgstr "E420: ̤ÃΤÎÇØ·Ê¿§¤Ç¤¹"
-
-#, c-format
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: ¥«¥é¡¼Ì¾¤äÈÖ¹æ¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E422: terminal code too long: %s"
-msgstr "E422: ½ªÃ¼¥³¡¼¥É¤¬Ä¹²á¤®¤Þ¤¹: %s"
-
-#, c-format
-msgid "E423: Illegal argument: %s"
-msgstr "E423: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: ¿¤¯¤Î°Û¤Ê¤ë¥Ï¥¤¥é¥¤¥È°À¤¬»È¤ï¤ì²á¤®¤Æ¤¤¤Þ¤¹"
-
-msgid "E669: Unprintable character in group name"
-msgstr "E669: ¥°¥ë¡¼¥×̾¤Ë°õºþÉÔ²Äǽ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
+msgid "Sorry, help file \"%s\" not found"
+msgstr "»Äǰ¤Ç¤¹¤¬¥Ø¥ë¥×¥Õ¥¡¥¤¥ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
msgid "W18: Invalid character in group name"
msgstr "W18: ¥°¥ë¡¼¥×̾¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-msgid "E849: Too many highlight and syntax groups"
-msgstr "E849: ¥Ï¥¤¥é¥¤¥È¤È¹½Ê¸¥°¥ë¡¼¥×¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E799: ̵¸ú¤Ê ID: %d (1 °Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó)"
-
-#, c-format
-msgid "E801: ID already taken: %d"
-msgstr "E801: ID ¤Ï¤¹¤Ç¤ËÍøÍÑÃæ¤Ç¤¹: %d"
-
-msgid "E290: List or number required"
-msgstr "E290: ¥ê¥¹¥È¤«¿ôÃͤ¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E802: ̵¸ú¤Ê ID: %d (1 °Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó)"
-
-#, c-format
-msgid "E803: ID not found: %d"
-msgstr "E803: ID ¤Ï¤¢¤ê¤Þ¤»¤ó: %d"
-
-#, c-format
-msgid "E798: ID is reserved for \":match\": %d"
-msgstr "E798: ID ¤Ï \":match\" ¤Î¤¿¤á¤ËͽÌó¤µ¤ì¤Æ¤¤¤Þ¤¹: %d"
-
msgid "Add a new database"
msgstr "¿·¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÄɲÃ"
@@ -2287,47 +1072,13 @@
msgid "Show connections"
msgstr "Àܳ¤òɽ¼¨¤¹¤ë"
-#, c-format
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: »ÈÍÑÊýË¡: cs[cope] %s"
-
msgid "This cscope command does not support splitting the window.\n"
msgstr "¤³¤Îcscope¥³¥Þ¥ó¥É¤Ïʬ³ä¥¦¥£¥ó¥É¥¦¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó.\n"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: »ÈÍÑË¡: cstag <ident>"
-
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: ¥¿¥°¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: stat(%s) ¥¨¥é¡¼: %d"
-
-msgid "E563: stat error"
-msgstr "E563: stat ¥¨¥é¡¼"
-
-#, c-format
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s ¤Ï¥Ç¥£¥ì¥¯¥È¥êµÚ¤Ó͸ú¤Êcscope¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
#, c-format
msgid "Added cscope database %s"
msgstr "cscope¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤òÄɲÃ"
-#, c-format
-msgid "E262: error reading cscope connection %d"
-msgstr "E262: cscope¤ÎÀܳ %d ¤òÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: ̤ÃΤÎcscope¸¡º÷·¿¤Ç¤¹"
-
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: cscope¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E622: Could not fork for cscope"
-msgstr "E622: cscope¤Îµ¯Æ°½àÈ÷(fork)¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
msgid "cs_create_connection setpgid failed"
msgstr "cs_create_connection ¤Ø¤Î setpgid ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
@@ -2340,20 +1091,6 @@
msgid "cs_create_connection: fdopen for fr_fp failed"
msgstr "cs_create_connection: fr_fp ¤Î fdopen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: cscope¥×¥í¥»¥¹¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E567: no cscope connections"
-msgstr "E567: cscopeÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: ̵¸ú¤Ê cscopequickfix ¥Õ¥é¥° %c ¤Î %c ¤Ç¤¹"
-
-#, c-format
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: cscope¥¯¥¨¥ê¡¼ %s of %s ¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-
msgid "cscope commands:\n"
msgstr "cscope¥³¥Þ¥ó¥É:\n"
@@ -2385,26 +1122,9 @@
" t: ¤³¤Î¥Æ¥¥¹¥Èʸ»úÎó¤òõ¤¹\n"
#, c-format
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹: %s ¤ò³«¤¯¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
-msgid "E626: cannot get cscope database information"
-msgstr "E626: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ðÊó¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: ½ÅÊ£¤¹¤ëcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÏÄɲ䵤ì¤Þ¤»¤ó¤Ç¤·¤¿"
-
-#, c-format
-msgid "E261: cscope connection %s not found"
-msgstr "E261: cscopeÀܳ %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-
-#, c-format
msgid "cscope connection %s closed"
msgstr "cscopeÀܳ %s ¤¬ÊĤ¸¤é¤ì¤Þ¤·¤¿"
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: cs_manage_matches ¤ÇÃ×̿Ū¤Ê¥¨¥é¡¼¤Ç¤¹"
-
#, c-format
msgid "Cscope tag: %s"
msgstr "Cscope ¥¿¥°: %s"
@@ -2419,10 +1139,6 @@
msgid "filename / context / line\n"
msgstr "¥Õ¥¡¥¤¥ë̾ / ʸ̮ / ¹Ô\n"
-#, c-format
-msgid "E609: Cscope error: %s"
-msgstr "E609: cscope¥¨¥é¡¼: %s"
-
msgid "All cscope databases reset"
msgstr "Á´¤Æ¤Îcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¥ê¥»¥Ã¥È¤·¤Þ¤¹"
@@ -2438,18 +1154,6 @@
msgid "cannot save undo information"
msgstr "¥¢¥ó¥É¥¥¾ðÊó¤¬Êݸ¤Ç¤¤Þ¤»¤ó"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr "E815: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡£MzScheme ¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£"
-
-msgid ""
-"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
-"could not be loaded."
-msgstr ""
-"E895: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤¡£MzScheme ¤Î racket/base ¥â¥¸¥å¡¼"
-"¥ë¤¬¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£"
-
msgid "invalid expression"
msgstr "̵¸ú¤Ê¼°¤Ç¤¹"
@@ -2501,61 +1205,6 @@
msgid "not allowed in the Vim sandbox"
msgstr "¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: ¤³¤ÎVim¤Ç¤Ï :py3 ¤ò»È¤Ã¤¿¸å¤Ë :python ¤ò»È¤¨¤Þ¤»¤ó"
-
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Python¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»"
-"¤ó¤Ç¤·¤¿¡£"
-
-msgid ""
-"E887: Sorry, this command is disabled, the Python's site module could not be "
-"loaded."
-msgstr ""
-"E887: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤¡£Python ¤Î site ¥â¥¸¥å¡¼¥ë¤ò¥í¡¼¥É"
-"¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£"
-
-# Added at 07-Feb-2004.
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python ¤òºÆµ¢Åª¤Ë¼Â¹Ô¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E837: This Vim cannot execute :py3 after using :python"
-msgstr "E837: ¤³¤ÎVim¤Ç¤Ï :python ¤ò»È¤Ã¤¿¸å¤Ë :py3 ¤ò»È¤¨¤Þ¤»¤ó"
-
-msgid "E265: $_ must be an instance of String"
-msgstr "E265: $_ ¤Ïʸ»úÎó¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Ruby¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó"
-"¤Ç¤·¤¿¡£"
-
-msgid "E267: unexpected return"
-msgstr "E267: ͽ´ü¤»¤Ì return ¤Ç¤¹"
-
-msgid "E268: unexpected next"
-msgstr "E268: ͽ´ü¤»¤Ì next ¤Ç¤¹"
-
-msgid "E269: unexpected break"
-msgstr "E269: ͽ´ü¤»¤Ì break ¤Ç¤¹"
-
-msgid "E270: unexpected redo"
-msgstr "E270: ͽ´ü¤»¤Ì redo ¤Ç¤¹"
-
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: rescue ¤Î³°¤Î retry ¤Ç¤¹"
-
-msgid "E272: unhandled exception"
-msgstr "E272: ¼è¤ê°·¤ï¤ì¤Ê¤«¤Ã¤¿Îã³°¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: ̤ÃΤÎlongjmp¾õÂÖ: %d"
-
msgid "invalid buffer number"
msgstr "̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡ÈÖ¹æ¤Ç¤¹"
@@ -2600,43 +1249,17 @@
msgstr ""
"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¾Ãµî¤µ¤ì¤Þ¤·¤¿"
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: TCL Ã×̿Ū¥¨¥é¡¼: reflist ±øÀ÷!? vim-dev@vim.org ¤ËÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤"
-
msgid "cannot register callback command: buffer/window reference not found"
msgstr ""
"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤Î»²¾È¤¬¸«¤Ä¤«¤ê¤Þ¤»"
"¤ó"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Tcl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
-"¤·¤¿¡£"
-
-#, c-format
-msgid "E572: exit code %d"
-msgstr "E572: ½ªÎ»¥³¡¼¥É %d"
-
msgid "cannot get line"
msgstr "¹Ô¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
msgid "Unable to register a command server name"
msgstr "Ì¿Î᥵¡¼¥Ð¡¼¤Î̾Á°¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: ÌÜŪ¤Î¥×¥í¥°¥é¥à¤Ø¤Î¥³¥Þ¥ó¥ÉÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: ̵¸ú¤Ê¥µ¡¼¥Ð¡¼ID¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
-
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: VIM ¼ÂÂΤÎÅÐÏ¿¥×¥í¥Ñ¥Æ¥£¤¬ÉÔÀµ¤Ç¤¹¡£¾Ãµî¤·¤Þ¤·¤¿!"
-
#, c-format
msgid "%ld lines to indent... "
msgstr "%ld ¹Ô¤¬¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤Þ¤¹... "
@@ -2691,12 +1314,6 @@
msgid "Hit end of paragraph"
msgstr "ÃÊÍî¤ÎºÇ¸å¤Ë¥Ò¥Ã¥È"
-msgid "E839: Completion function changed window"
-msgstr "E839: Êä´°´Ø¿ô¤¬¥¦¥£¥ó¥É¥¦¤òÊѹ¹¤·¤Þ¤·¤¿"
-
-msgid "E840: Completion function deleted text"
-msgstr "E840: Êä´°´Ø¿ô¤¬¥Æ¥¥¹¥È¤òºï½ü¤·¤Þ¤·¤¿"
-
msgid "'dictionary' option is empty"
msgstr "'dictionary' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
@@ -2713,9 +1330,6 @@
msgid " (replace) Scroll (^E/^Y)"
msgstr " (ÃÖ´¹) ¥¹¥¯¥í¡¼¥ë (^E/^Y)"
-msgid "E785: complete() can only be used in Insert mode"
-msgstr "E785: complete() ¤ÏÁÞÆþ¥â¡¼¥É¤Ç¤·¤«ÍøÍѤǤ¤Þ¤»¤ó"
-
#, c-format
msgid "Scanning: %s"
msgstr "¥¹¥¥ã¥óÃæ: %s"
@@ -2749,21 +1363,8 @@
msgid "match %d"
msgstr "%d ÈÖÌܤγºÅö"
-#, c-format
-msgid "E938: Duplicate key in JSON: \"%s\""
-msgstr "E938: JSON¤Ë½ÅÊ£¥¡¼¤¬¤¢¤ê¤Þ¤¹: \"%s\""
-
-#, c-format
-msgid "E899: Argument of %s must be a List or Blob"
-msgstr "E899: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E696: Missing comma in List: %s"
-msgstr "E696: ¥ê¥¹¥È·¿¤Ë¥«¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E697: Missing end of List ']': %s"
-msgstr "E697: ¥ê¥¹¥È·¿¤ÎºÇ¸å¤Ë ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "flatten() argument"
+msgstr "flatten() ¤Î°ú¿ô"
msgid "sort() argument"
msgstr "sort() ¤Î°ú¿ô"
@@ -2771,23 +1372,17 @@
msgid "uniq() argument"
msgstr "uniq() ¤Î°ú¿ô"
-msgid "E702: Sort compare function failed"
-msgstr "E702: ¥½¡¼¥È¤ÎÈæ³Ó´Ø¿ô¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E882: Uniq compare function failed"
-msgstr "E882: Uniq ¤ÎÈæ³Ó´Ø¿ô¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
-
msgid "map() argument"
msgstr "map() ¤Î°ú¿ô"
+msgid "mapnew() argument"
+msgstr "mapnew() ¤Î°ú¿ô"
+
msgid "filter() argument"
msgstr "filter() ¤Î°ú¿ô"
-msgid "add() argument"
-msgstr "add() ¤Î°ú¿ô"
-
-msgid "insert() argument"
-msgstr "insert() ¤Î°ú¿ô"
+msgid "extendnew() argument"
+msgstr "extendnew() ¤Î°ú¿ô"
msgid "remove() argument"
msgstr "remove() ¤Î°ú¿ô"
@@ -2795,6 +1390,10 @@
msgid "reverse() argument"
msgstr "reverse() ¤Î°ú¿ô"
+#, c-format
+msgid "Current %slanguage: \"%s\""
+msgstr "¸½ºß¤Î %s¸À¸ì: \"%s\""
+
msgid "Unknown option argument"
msgstr "̤ÃΤΥª¥×¥·¥ç¥ó°ú¿ô¤Ç¤¹"
@@ -2830,16 +1429,17 @@
msgstr "¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤òºÆ¤Ó³«¤³¤¦¤È¤·¤Þ¤·¤¿: \""
msgid "Cannot open for reading: \""
-msgstr "ÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
+msgstr "ÆÉ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó: \""
msgid "Cannot open for script output: \""
-msgstr "¥¹¥¯¥ê¥×¥È½ÐÎÏÍѤò³«¤±¤Þ¤»¤ó"
+msgstr "¥¹¥¯¥ê¥×¥È½ÐÎÏÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó: \""
msgid "Vim: Error: Failure to start gvim from NetBeans\n"
msgstr "Vim: ¥¨¥é¡¼: NetBeans¤«¤égvim¤ò¥¹¥¿¡¼¥È¤Ç¤¤Þ¤»¤ó\n"
+# This message should be English to avoid mojibake.
msgid "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
-msgstr "Vim: ¥¨¥é¡¼: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVim¤ÏCygwinüËö¤Ç¤Ïưºî¤·¤Þ¤»¤ó\n"
+msgstr "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
msgid "Vim: Warning: Output is not to a terminal\n"
msgstr "Vim: ·Ù¹ð: üËö¤Ø¤Î½ÐÎϤǤϤ¢¤ê¤Þ¤»¤ó\n"
@@ -2850,10 +1450,6 @@
msgid "pre-vimrc command line"
msgstr "vimrcÁ°¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó"
-#, c-format
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-
msgid ""
"\n"
"More info with: \"vim -h\"\n"
@@ -2862,7 +1458,7 @@
"¤è¤ê¾ÜºÙ¤Ê¾ðÊó¤Ï: \"vim -h\"\n"
msgid "[file ..] edit specified file(s)"
-msgstr "[¥Õ¥¡¥¤¥ë..] ¤¢¤ë¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
+msgstr "[¥Õ¥¡¥¤¥ë..] »ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
msgid "- read text from stdin"
msgstr "- ɸ½àÆþÎϤ«¤é¥Æ¥¥¹¥È¤òÆÉ¹þ¤à"
@@ -3053,7 +1649,7 @@
msgstr "-x\t\t\t°Å¹æ²½¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
msgid "-display <display>\tConnect Vim to this particular X-server"
-msgstr "-display <display>\tvim¤ò»ØÄꤷ¤¿ X ¥µ¡¼¥Ð¡¼¤ËÀܳ¤¹¤ë"
+msgstr "-display <display>\tVim¤ò»ØÄꤷ¤¿ X ¥µ¡¼¥Ð¡¼¤ËÀܳ¤¹¤ë"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tX¥µ¡¼¥Ð¡¼¤ËÀܳ¤·¤Ê¤¤"
@@ -3128,10 +1724,10 @@
"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(Athena¥Ð¡¼¥¸¥ç¥ó):\n"
msgid "-display <display>\tRun Vim on <display>"
-msgstr "-display <display>\t<display> ¤Çvim¤ò¼Â¹Ô¤¹¤ë"
+msgstr "-display <display>\t<display> ¤ÇVim¤ò¼Â¹Ô¤¹¤ë"
msgid "-iconic\t\tStart Vim iconified"
-msgstr "-iconic\t\tºÇ¾®²½¤·¤¿¾õÂÖ¤Çvim¤òµ¯Æ°¤¹¤ë"
+msgstr "-iconic\t\tºÇ¾®²½¤·¤¿¾õÂÖ¤ÇVim¤òµ¯Æ°¤¹¤ë"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <color>\tÇØ·Ê¿§¤Ë <color> ¤ò»È¤¦(ƱµÁ: -bg)"
@@ -3195,65 +1791,15 @@
msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
msgstr "--windowid <HWND>\t°Û¤Ê¤ëWin32 widget¤ÎÆâÉô¤ËVim¤ò³«¤¯"
-msgid "No display"
-msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid ": Send failed.\n"
-msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-
-msgid ": Send failed. Trying to execute locally\n"
-msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¥í¡¼¥«¥ë¤Ç¤Î¼Â¹Ô¤ò»î¤ß¤Æ¤¤¤Þ¤¹\n"
-
-#, c-format
-msgid "%d of %d edited"
-msgstr "%d ¸Ä (%d ¸ÄÃæ) ¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Þ¤·¤¿"
-
-msgid "No display: Send expression failed.\n"
-msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¤¢¤ê¤Þ¤»¤ó: ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-
-msgid ": Send expression failed.\n"
-msgstr ": ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-
-#, c-format
-msgid "E224: global abbreviation already exists for %s"
-msgstr "E224: %s ¤È¤¤¤¦¥°¥í¡¼¥Ð¥ëû½ÌÆþÎϤϴû¤Ë¸ºß¤·¤Þ¤¹"
-
-#, c-format
-msgid "E225: global mapping already exists for %s"
-msgstr "E225: %s ¤È¤¤¤¦¥°¥í¡¼¥Ð¥ë¥Þ¥Ã¥Ô¥ó¥°¤Ï´û¤Ë¸ºß¤·¤Þ¤¹"
-
-#, c-format
-msgid "E226: abbreviation already exists for %s"
-msgstr "E226: %s ¤È¤¤¤¦Ã»½ÌÆþÎϤϴû¤Ë¸ºß¤·¤Þ¤¹"
-
-#, c-format
-msgid "E227: mapping already exists for %s"
-msgstr "E227: %s ¤È¤¤¤¦¥Þ¥Ã¥Ô¥ó¥°¤Ï´û¤Ë¸ºß¤·¤Þ¤¹"
-
msgid "No abbreviation found"
msgstr "û½ÌÆþÎϤϸ«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
msgid "No mapping found"
msgstr "¥Þ¥Ã¥Ô¥ó¥°¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "E228: makemap: Illegal mode"
-msgstr "E228: makemap: ÉÔÀµ¤Ê¥â¡¼¥É"
-
-#, c-format
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': %s ¤ËÂбþ¤¹¤ëʸ»ú¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': ¥»¥ß¥³¥í¥ó¤Î¸å¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
-
msgid "No marks set"
msgstr "¥Þ¡¼¥¯¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: \"%s\" ¤Ë³ºÅö¤¹¤ë¥Þ¡¼¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
-
msgid ""
"\n"
"mark line col file/text"
@@ -3275,81 +1821,9 @@
"\n"
"Êѹ¹ ¹Ô Îó ¥Æ¥¥¹¥È"
-msgid "E543: Not a valid codepage"
-msgstr "E543: ̵¸ú¤Ê¥³¡¼¥É¥Ú¡¼¥¸¤Ç¤¹"
-
-msgid "E284: Cannot set IC values"
-msgstr "E284: IC¤ÎÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-
-msgid "E285: Failed to create input context"
-msgstr "E285: ¥¤¥ó¥×¥Ã¥È¥³¥ó¥Æ¥¥¹¥È¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E286: Failed to open input method"
-msgstr "E286: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: ·Ù¹ð: IM¤ÎÇ˲õ¥³¡¼¥ë¥Ð¥Ã¥¯¤òÀßÄê¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E288: input method doesn't support any style"
-msgstr "E288: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï¤É¤ó¤Ê¥¹¥¿¥¤¥ë¤â¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
-
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï my preedit type ¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
-
-msgid "E293: block was not locked"
-msgstr "E293: ¥Ö¥í¥Ã¥¯¤¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E294: Seek error in swap file read"
-msgstr "E294: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ëÆÉ¹þ»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E295: Read error in swap file"
-msgstr "E295: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E296: Seek error in swap file write"
-msgstr "E296: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë½ñ¹þ¤ß»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E297: Write error in swap file"
-msgstr "E297: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹ (symlink¤Ë¤è¤ë¹¶·â?)"
-
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 1 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 2 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°Å¹æ¤ò¹¹¿·Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
-
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: ¤ª¤Ã¤È¡¢¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¼º¤ï¤ì¤Þ¤·¤¿!!!"
-
-msgid "E302: Could not rename swap file"
-msgstr "E302: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr "E303: \"%s\" ¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò³«¤±¤Ê¤¤¤Î¤Ç¥ê¥«¥Ð¥ê¤ÏÉÔ²Äǽ¤Ç¤¹"
-
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿??"
-
-#, c-format
-msgid "E305: No swap file found for %s"
-msgstr "E305: %s ¤Ë¤Ï¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
msgid "Enter number of swap file to use (0 to quit): "
msgstr "»ÈÍѤ¹¤ë¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÈÖ¹æ¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤(0 ¤Ç½ªÎ»): "
-#, c-format
-msgid "E306: Cannot open %s"
-msgstr "E306: %s ¤ò³«¤±¤Þ¤»¤ó"
-
msgid "Unable to read block 0 from "
msgstr "¥Ö¥í¥Ã¥¯ 0 ¤òÆÉ¹þ¤á¤Þ¤»¤ó "
@@ -3366,10 +1840,6 @@
msgid "Use Vim version 3.0.\n"
msgstr "Vim¤Î¥Ð¡¼¥¸¥ç¥ó3.0¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤.\n"
-#, c-format
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s ¤ÏVim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
-
msgid " cannot be used on this computer.\n"
msgstr " ¤³¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó.\n"
@@ -3383,12 +1853,6 @@
",\n"
"¤â¤·¤¯¤Ï¥Õ¥¡¥¤¥ë¤¬Â»½ý¤·¤Æ¤¤¤Þ¤¹¡£"
-#, c-format
-msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
-msgstr ""
-"E833: %s ¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVim¤Ç¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤·Á¼°¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
msgid " has been damaged (page size is smaller than minimum value).\n"
msgstr " ¤Ï»½ý¤·¤Æ¤¤¤Þ¤¹ (¥Ú¡¼¥¸¥µ¥¤¥º¤¬ºÇ¾®Ãͤò²¼²ó¤Ã¤Æ¤¤¤Þ¤¹).\n"
@@ -3400,9 +1864,6 @@
msgid "Original file \"%s\""
msgstr "¸¶ËÜ¥Õ¥¡¥¤¥ë \"%s\""
-msgid "E308: Warning: Original file may have been changed"
-msgstr "E308: ·Ù¹ð: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
#, c-format
msgid "Swap file is encrypted: \"%s\""
msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ï°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: \"%s\""
@@ -3435,10 +1896,6 @@
"\n"
"¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ËƱ¤¸°Å¹æ¥¡¼¤ò»È¤¦¤¿¤á¤Ëenter¤À¤±¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤¡£"
-#, c-format
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: %s ¤«¤é¥Ö¥í¥Ã¥¯ 1 ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
-
msgid "???MANY LINES MISSING"
msgstr "???¿¤¯¤Î¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
@@ -3451,10 +1908,6 @@
msgid "???LINES MISSING"
msgstr "???¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: ¥Ö¥í¥Ã¥¯ 1 ¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹(%s ¤¬.swp¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤?)"
-
msgid "???BLOCK MISSING"
msgstr "???¥Ö¥í¥Ã¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -3467,14 +1920,6 @@
msgid "???END"
msgstr "???END"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: ¥ê¥«¥Ð¥ê¤¬³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
-
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: ¥ê¥«¥Ð¥ê¤ÎºÇÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿; ???¤Ç»Ï¤Þ¤ë¹Ô¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
-
msgid "See \":help E312\" for more information."
msgstr "¾ÜºÙ¤Ï \":help E312\" ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
@@ -3496,15 +1941,20 @@
msgid ""
"\n"
-"You may want to delete the .swp file now.\n"
-"\n"
+"You may want to delete the .swp file now."
msgstr ""
"\n"
-"¸µ¤Î.swp¥Õ¥¡¥¤¥ë¤Ïºï½ü¤·¤Æ¤â¹½¤¤¤Þ¤»¤ó\n"
+"¸µ¤Î.swp¥Õ¥¡¥¤¥ë¤Ïºï½ü¤·¤Æ¤â¹½¤¤¤Þ¤»¤ó¡£"
+
+msgid ""
"\n"
+"Note: process STILL RUNNING: "
+msgstr ""
+"\n"
+"Ãí°Õ: ¥×¥í¥»¥¹¤Ï¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹: "
msgid "Using crypt key from swap file for the text file.\n"
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤«¤é¼èÆÀ¤·¤¿°Å¹æ¥¡¼¤ò¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤Ë»È¤¤¤Þ¤¹.\n"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤«¤é¼èÆÀ¤·¤¿°Å¹æ¥¡¼¤ò¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤Ë»È¤¤¤Þ¤¹¡£\n"
msgid "Swap files found:"
msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ê£¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿:"
@@ -3521,9 +1971,6 @@
msgid " -- none --\n"
msgstr " -- ¤Ê¤· --\n"
-msgid "%a %b %d %H:%M:%S %Y"
-msgstr "%Y/%m/%d (%a) %H:%M:%S"
-
msgid " owned by: "
msgstr " ½êͼÔ: "
@@ -3602,69 +2049,21 @@
msgid " [cannot be opened]"
msgstr " [³«¤±¤Þ¤»¤ó]"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¤Î¤Ç°Ý»ý¤Ç¤¤Þ¤»¤ó"
-
msgid "File preserved"
msgstr "¥Õ¥¡¥¤¥ë¤¬°Ý»ý¤µ¤ì¤Þ¤¹"
-msgid "E314: Preserve failed"
-msgstr "E314: °Ý»ý¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: ̵¸ú¤Êlnum¤Ç¤¹: %ld"
-
-#, c-format
-msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
-msgstr "E316: ml_get: ¹Ô %ld ¤ò¥Ð¥Ã¥Õ¥¡ %d %s Æâ¤Ë¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 3"
-
msgid "stack_idx should be 0"
msgstr "stack_idx ¤Ï 0 ¤Ç¤¢¤ë¤Ù¤¤Ç¤¹"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: ¹¹¿·¤µ¤ì¤¿¥Ö¥í¥Ã¥¯¤¬Â¿²á¤®¤ë¤«¤â?"
-
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 4"
-
msgid "deleted block 1?"
msgstr "¥Ö¥í¥Ã¥¯ 1 ¤Ï¾Ã¤µ¤ì¤¿?"
-#, c-format
-msgid "E320: Cannot find line %ld"
-msgstr "E320: ¹Ô %ld ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E317: pointer block id wrong"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-
msgid "pe_line_count is zero"
msgstr "pe_line_count ¤¬¥¼¥í¤Ç¤¹"
-#, c-format
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: ¹ÔÈֹ椬Èϰϳ°¤Ç¤¹: %ld ͤ¨¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: ¥Ö¥í¥Ã¥¯ %ld ¤Î¹Ô¥«¥¦¥ó¥È¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-
msgid "Stack size increases"
msgstr "¥¹¥¿¥Ã¥¯¥µ¥¤¥º¤¬Áý¤¨¤Þ¤¹"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 2"
-
-#, c-format
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: \"%s\" ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬¥ë¡¼¥×¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E325: ATTENTION"
-msgstr "E325: Ãí°Õ"
-
msgid ""
"\n"
"Found a swap file by the name \""
@@ -3759,28 +2158,6 @@
"½ªÎ»¤¹¤ë(&Q)\n"
"Ãæ»ß¤¹¤ë(&A)"
-msgid "E326: Too many swap files found"
-msgstr "E326: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Â¿¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿"
-
-msgid "E327: Part of menu-item path is not sub-menu"
-msgstr "E327: ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤Î¥Ñ¥¹¤ÎÉôʬ¤¬¥µ¥Ö¥á¥Ë¥å¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E329: No menu \"%s\""
-msgstr "E329: \"%s\" ¤È¤¤¤¦¥á¥Ë¥å¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E792: Empty menu name"
-msgstr "E792: ¥á¥Ë¥å¡¼Ì¾¤¬¶õ¤Ç¤¹"
-
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤ë¤Ù¤¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr "E331: ¥á¥Ë¥å¡¼¥Ð¡¼¤Ë¤ÏľÀÜ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÄɲäǤ¤Þ¤»¤ó"
-
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: ¶èÀÚ¤ê¤Ï¥á¥Ë¥å¡¼¥Ñ¥¹¤Î°ìÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
msgid ""
"\n"
"--- Menus ---"
@@ -3792,21 +2169,8 @@
msgstr "¤³¤Î¥á¥Ë¥å¡¼¤òÀÚ¤ê¼è¤ë"
#, c-format
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: %s ¤Ë¤Ï¥á¥Ë¥å¡¼¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
-
-#, c-format
-msgid "E334: Menu not found: %s"
-msgstr "E334: ¥á¥Ë¥å¡¼¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
-
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: ¥á¥Ë¥å¡¼¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó - ¥á¥Ë¥å¡¼Ì¾¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "Error detected while compiling %s:"
+msgstr "%s ¤Î¥³¥ó¥Ñ¥¤¥ëÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿:"
#, c-format
msgid "Error detected while processing %s:"
@@ -3816,10 +2180,6 @@
msgid "line %4ld:"
msgstr "¹Ô %4ld:"
-#, c-format
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾: '%s'"
-
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
msgstr "ÆüËܸì¥á¥Ã¥»¡¼¥¸ËÝÌõ/´Æ½¤: ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>"
@@ -3829,6 +2189,9 @@
msgid "Press ENTER or type command to continue"
msgstr "³¤±¤ë¤Ë¤ÏENTER¤ò²¡¤¹¤«¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"
+msgid "Unknown"
+msgstr "ÉÔÌÀ"
+
#, c-format
msgid "%s line %ld"
msgstr "%s ¹Ô %ld"
@@ -3862,21 +2225,12 @@
"Á´¤ÆÊü´þ(&D)\n"
"¥¥ã¥ó¥»¥ë(&C)"
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: printf() ¤Î°ú¿ô¤¬ÉÔ½½Ê¬¤Ç¤¹"
-
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: printf() ¤Î°ú¿ô¤Ë¤ÏÉâÆ°¾®¿ôÅÀ¿ô¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: printf() ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
-
-msgid "Type number and <Enter> or click with mouse (empty cancels): "
+msgid "Type number and <Enter> or click with the mouse (q or empty cancels): "
msgstr ""
-"ÈÖ¹æ¤È<Enter>¤òÆþÎϤ¹¤ë¤«¥Þ¥¦¥¹¤Ç¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
+"ÈÖ¹æ¤È<Enter>¤òÆþÎϤ¹¤ë¤«¥Þ¥¦¥¹¤Ç¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤ (q ¤«¶õ¤Ç¥¥ã¥ó¥»¥ë): "
-msgid "Type number and <Enter> (empty cancels): "
-msgstr "ÈÖ¹æ¤È<Enter>¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
+msgid "Type number and <Enter> (q or empty cancels): "
+msgstr "ÈÖ¹æ¤È<Enter>¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤ (q ¤«¶õ¤Ç¥¥ã¥ó¥»¥ë): "
#, c-format
msgid "%ld more line"
@@ -3894,99 +2248,13 @@
msgid "Beep!"
msgstr "¥Ó¡¼¥Ã!"
-msgid "E677: Error writing temp file"
-msgstr "E677: °ì»þ¥Õ¥¡¥¤¥ë½ñ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "%ld second ago"
-msgid_plural "%ld seconds ago"
-msgstr[0] "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹"
-
-msgid "ERROR: "
-msgstr "¥¨¥é¡¼: "
-
-#, c-format
-msgid ""
-"\n"
-"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
-msgstr ""
-"\n"
-"[¥á¥â¥ê(¥Ð¥¤¥È)] Áí³äÅö-²òÊüÎÌ %lu-%lu, »ÈÍÑÎÌ %lu, ¥Ô¡¼¥¯»þ %lu\n"
-
-#, c-format
-msgid ""
-"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
-"\n"
-msgstr ""
-"[¸Æ½Ð] Áí re/malloc() ²ó¿ô %lu, Áí free() ²ó¿ô %lu\n"
-"\n"
-
-msgid "E341: Internal error: lalloc(0, )"
-msgstr "E341: ÆâÉô¥¨¥é¡¼: lalloc(0, )"
-
-#, c-format
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: ¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó! (%lu ¥Ð¥¤¥È¤ò³äÅöÍ×µá)"
-
#, c-format
msgid "Calling shell to execute: \"%s\""
msgstr "¼Â¹Ô¤Î¤¿¤á¤Ë¥·¥§¥ë¤ò¸Æ½Ð¤·Ãæ: \"%s\""
-msgid "E545: Missing colon"
-msgstr "E545: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E546: Illegal mode"
-msgstr "E546: ÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹"
-
-msgid "E547: Illegal mouseshape"
-msgstr "E547: ÉÔÀµ¤Ê 'mouseshape' ¤Ç¤¹"
-
-msgid "E548: digit expected"
-msgstr "E548: ¿ôÃͤ¬É¬ÍפǤ¹"
-
-msgid "E549: Illegal percentage"
-msgstr "E549: ÉÔÀµ¤Ê¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸¤Ç¤¹"
-
-#, c-format
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: NetBeans¤ÎÀܳ¾ðÊó¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¥â¡¼¥É¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹: \"%s\""
-
-#, c-format
-msgid "E658: NetBeans connection lost for buffer %d"
-msgstr "E658: ¥Ð¥Ã¥Õ¥¡ %d ¤Î NetBeans Àܳ¤¬¼º¤ï¤ì¤Þ¤·¤¿"
-
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: NetBeans¤Ï¤³¤ÎGUI¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E511: netbeans already connected"
-msgstr "E511: NetBeans¤Ï´û¤ËÀܳ¤·¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E505: %s is read-only (add ! to override)"
-msgstr "E505: %s ¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
-
-msgid "E349: No identifier under cursor"
-msgstr "E349: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤϼ±Ê̻Ҥ¬¤¢¤ê¤Þ¤»¤ó"
-
msgid "Warning: terminal cannot highlight"
msgstr "·Ù¹ð: »ÈÍѤ·¤Æ¤¤¤ëüËö¤Ï¥Ï¥¤¥é¥¤¥È¤Ç¤¤Þ¤»¤ó"
-msgid "E348: No string under cursor"
-msgstr "E348: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤÏʸ»úÎ󤬤¢¤ê¤Þ¤»¤ó"
-
-msgid "E352: Cannot erase folds with current 'foldmethod'"
-msgstr "E352: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤ò¾Ãµî¤Ç¤¤Þ¤»¤ó"
-
-msgid "E664: changelist is empty"
-msgstr "E664: Êѹ¹¥ê¥¹¥È¤¬¶õ¤Ç¤¹"
-
-msgid "E662: At start of changelist"
-msgstr "E662: Êѹ¹¥ê¥¹¥È¤ÎÀèÆ¬"
-
-msgid "E663: At end of changelist"
-msgstr "E663: Êѹ¹¥ê¥¹¥È¤ÎËöÈø"
-
msgid "Type :qa! and press <Enter> to abandon all changes and exit Vim"
msgstr ""
"¤¹¤Ù¤Æ¤ÎÊѹ¹¤òÇË´þ¤·¡¢Vim¤ò½ªÎ»¤¹¤ë¤Ë¤Ï :qa! ¤ÈÆþÎϤ· <Enter> ¤ò²¡¤·¤Æ¤¯¤À"
@@ -4014,6 +2282,11 @@
msgstr[0] "%ld ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
#, c-format
+msgid "%d line changed"
+msgid_plural "%d lines changed"
+msgstr[0] "%d ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+#, c-format
msgid "%ld Cols; "
msgstr "%ld Îó; "
@@ -4044,62 +2317,10 @@
msgid "(+%lld for BOM)"
msgstr "(+%lld for BOM)"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: 'operatorfunc' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
-
-msgid "E775: Eval feature not available"
-msgstr "E775: ¼°É¾²Áµ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E518: Unknown option"
-msgstr "E518: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
-
-msgid "E519: Option not supported"
-msgstr "E519: ¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
-msgstr "E992: 'modelineexpr' ¤¬¥ª¥Õ¤Î»þ modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E846: Key code not set"
-msgstr "E846: ¥¡¼¥³¡¼¥É¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E521: Number required after ="
-msgstr "E521: = ¤Î¸å¤Ë¤Ï¿ô»ú¤¬É¬ÍפǤ¹"
-
-msgid "E522: Not found in termcap"
-msgstr "E522: termcap Æâ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E946: Cannot make a terminal with running job modifiable"
-msgstr "E946: ¼Â¹ÔÃæ¤Î¥¸¥ç¥Ö¤¬¤¢¤ëüËö¤ÏÊѹ¹²Äǽ¤Ë¤Ç¤¤Þ¤»¤ó"
-
-msgid "E590: A preview window already exists"
-msgstr "E590: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¸ºß¤·¤Þ¤¹"
-
msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
msgstr ""
"W17: ¥¢¥é¥Ó¥¢Ê¸»ú¤Ë¤ÏUTF-8¤¬É¬ÍפʤΤǡ¢':set encoding=utf-8' ¤·¤Æ¤¯¤À¤µ¤¤"
-msgid "E954: 24-bit colors are not supported on this environment"
-msgstr "E954: 24bit¿§¤Ï¤³¤Î´Ä¶¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E593: Need at least %d lines"
-msgstr "E593: ºÇÄã %d ¤Î¹Ô¿ô¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E594: Need at least %d columns"
-msgstr "E594: ºÇÄã %d ¤Î¥«¥é¥àÉý¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E355: Unknown option: %s"
-msgstr "E355: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
-
-#, c-format
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: ¿ô»ú¤¬É¬ÍפǤ¹: &%s = '%s'"
-
msgid ""
"\n"
"--- Terminal codes ---"
@@ -4128,94 +2349,10 @@
"\n"
"--- ¥ª¥×¥·¥ç¥ó ---"
-msgid "E356: get_varp ERROR"
-msgstr "E356: get_varp ¥¨¥é¡¼"
-
-#, c-format
-msgid "E539: Illegal character <%s>"
-msgstr "E539: ÉÔÀµ¤Êʸ»ú¤Ç¤¹ <%s>"
-
#, c-format
msgid "For option %s"
msgstr "¥ª¥×¥·¥ç¥ó: %s"
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: ¼°¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó"
-
-
-msgid "E542: unbalanced groups"
-msgstr "E542: ¥°¥ë¡¼¥×¤¬Äà¹ç¤¤¤Þ¤»¤ó"
-
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: 'term' ¤Ë¤Ï¶õʸ»úÎó¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
-
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: GUI¤Ç¤Ï 'term' ¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: GUI¤ò¥¹¥¿¡¼¥È¤¹¤ë¤Ë¤Ï \":gui\" ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
-
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' ¤È 'patchmode' ¤¬Æ±¤¸¤Ç¤¹"
-
-msgid "E834: Conflicts with value of 'listchars'"
-msgstr "E834: 'listchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E835: Conflicts with value of 'fillchars'"
-msgstr "E835: 'fillchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E617: Cannot be changed in the GTK+ 2 GUI"
-msgstr "E617: GTK+2 GUI¤Ç¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E950: Cannot convert between %s and %s"
-msgstr "E950: %s ¤È %s ¤Î´Ö¤ÇÊÑ´¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E524: Missing colon"
-msgstr "E524: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E525: Zero length string"
-msgstr "E525: ʸ»úÎó¤ÎŤµ¤¬¥¼¥í¤Ç¤¹"
-
-#, c-format
-msgid "E526: Missing number after <%s>"
-msgstr "E526: <%s> ¤Î¸å¤Ë¿ô»ú¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E527: Missing comma"
-msgstr "E527: ¥«¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E528: Must specify a ' value"
-msgstr "E528: ' ¤ÎÃͤò»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid "E595: contains unprintable or wide character"
-msgstr "E595: ɽ¼¨¤Ç¤¤Ê¤¤Ê¸»ú¤«¥ï¥¤¥Éʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
-
-msgid "E596: Invalid font(s)"
-msgstr "E596: ̵¸ú¤Ê¥Õ¥©¥ó¥È¤Ç¤¹"
-
-msgid "E597: can't select fontset"
-msgstr "E597: ¥Õ¥©¥ó¥È¥»¥Ã¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
-
-msgid "E598: Invalid fontset"
-msgstr "E598: ̵¸ú¤Ê¥Õ¥©¥ó¥È¥»¥Ã¥È¤Ç¤¹"
-
-msgid "E533: can't select wide font"
-msgstr "E533: ¥ï¥¤¥É¥Õ¥©¥ó¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
-
-msgid "E534: Invalid wide font"
-msgstr "E534: ̵¸ú¤Ê¥ï¥¤¥É¥Õ¥©¥ó¥È¤Ç¤¹"
-
-#, c-format
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: <%c> ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E536: comma required"
-msgstr "E536: ¥«¥ó¥Þ¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' ¤Ï¶õ¤Ç¤¢¤ë¤« %s ¤ò´Þ¤àɬÍפ¬¤¢¤ê¤Þ¤¹"
-
msgid "cannot open "
msgstr "³«¤±¤Þ¤»¤ó "
@@ -4245,9 +2382,6 @@
msgid "mch_get_shellsize: not a console??\n"
msgstr "mch_get_shellsize: ¥³¥ó¥½¡¼¥ë¤Ç¤Ï¤Ê¤¤??\n"
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: -f ¥ª¥×¥·¥ç¥ó¤Ç¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-
msgid "Cannot execute "
msgstr "¼Â¹Ô¤Ç¤¤Þ¤»¤ó "
@@ -4266,38 +2400,15 @@
msgid "Message"
msgstr "¥á¥Ã¥»¡¼¥¸"
-msgid "E237: Printer selection failed"
-msgstr "E237: ¥×¥ê¥ó¥¿¤ÎÁªÂò¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
#, c-format
msgid "to %s on %s"
msgstr "%s ¤Ø (%s ¾å¤Î)"
#, c-format
-msgid "E613: Unknown printer font: %s"
-msgstr "E613: ̤ÃΤΥץê¥ó¥¿¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s"
-
-#, c-format
-msgid "E238: Print error: %s"
-msgstr "E238: °õºþ¥¨¥é¡¼: %s"
-
-#, c-format
msgid "Printing '%s'"
msgstr "°õºþ¤·¤Æ¤¤¤Þ¤¹: '%s'"
#, c-format
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr "E244: ʸ»ú¥»¥Ã¥È̾ \"%s\" ¤ÏÉÔÀµ¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
-
-#, c-format
-msgid "E244: Illegal quality name \"%s\" in font name \"%s\""
-msgstr "E244: ÉʼÁ̾ \"%s\" ¤ÏÉÔÀµ¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
-
-#, c-format
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: '%c' ¤ÏÉÔÀµ¤Êʸ»ú¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
-
-#, c-format
msgid "Opening the X display took %ld msec"
msgstr "X¥µ¡¼¥Ð¡¼¤Ø¤ÎÀܳ¤Ë %ld ¥ß¥êÉ䫤«¤ê¤Þ¤·¤¿"
@@ -4421,9 +2532,6 @@
msgid "shutdown"
msgstr "¥·¥ã¥Ã¥È¥À¥¦¥ó"
-msgid "E371: Command not found"
-msgstr "E371: ¥³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤»¤ó"
-
msgid ""
"VIMRUN.EXE not found in your $PATH.\n"
"External commands will not pause after completion.\n"
@@ -4440,64 +2548,6 @@
msgid "shell returned %d"
msgstr "¥·¥§¥ë¤¬¥³¡¼¥É %d ¤Ç½ªÎ»¤·¤Þ¤·¤¿"
-msgid "E278: Cannot put a terminal buffer in a popup window"
-msgstr "E278: üËö¥Ð¥Ã¥Õ¥¡¤ò¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦Æâ¤ËÃÖ¤¯¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E997: Tabpage not found: %d"
-msgstr "E997: ¥¿¥Ö¥Ú¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %d"
-
-#, c-format
-msgid "E993: window %d is not a popup window"
-msgstr "E993: ¥¦¥£¥ó¥É¥¦ %d ¤Ï¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E994: Not allowed in a popup window"
-msgstr "E994: ¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E750: First use \":profile start {fname}\""
-msgstr "E750: ½é¤á¤Ë \":profile start {fname}\" ¤ò¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤"
-
-msgid "E553: No more items"
-msgstr "E553: Í×ÁǤ¬¤â¤¦¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E926: Current location list was changed"
-msgstr "E926: ¸½ºß¤Î¥í¥±¡¼¥·¥ç¥ó¥ê¥¹¥È¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-
-#, c-format
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë %%%c ¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ëͽ´ü¤»¤Ì %%%c ¤¬¤¢¤ê¤Þ¤·¤¿"
-
-msgid "E374: Missing ] in format string"
-msgstr "E374: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ï %%%c ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ÎÁ°ÃÖ¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' ¤Ë¥Ñ¥¿¡¼¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E379: Missing or empty directory name"
-msgstr "E379: ¥Ç¥£¥ì¥¯¥È¥ê̾¤¬Ìµ¤¤¤«¶õ¤Ç¤¹"
-
-msgid "E924: Current window was closed"
-msgstr "E924: ¸½ºß¤Î¥¦¥£¥ó¥É¥¦¤¬ÊĤ¸¤é¤ì¤Þ¤·¤¿"
-
-msgid "E925: Current quickfix was changed"
-msgstr "E925: ¸½ºß¤Î quickfix ¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-
#, c-format
msgid "(%d of %d)%s%s: "
msgstr "(%d of %d)%s%s: "
@@ -4507,13 +2557,7 @@
#, c-format
msgid "%serror list %d of %d; %d errors "
-msgstr "%s ¥¨¥é¡¼°ìÍ÷ %d of %d; %d ¸Ä¥¨¥é¡¼"
-
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: quickfix ¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
-
-msgid "E381: At top of quickfix stack"
-msgstr "E381: quickfix ¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
+msgstr "%s ¥¨¥é¡¼°ìÍ÷ %d of %d; %d ¸Ä¥¨¥é¡¼ "
msgid "No entries"
msgstr "¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -4521,208 +2565,23 @@
msgid "Error file"
msgstr "¥¨¥é¡¼¥Õ¥¡¥¤¥ë"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: ¥Õ¥¡¥¤¥ë̾¤¬Ìµ¤¤¤«Ìµ¸ú¤Ê¥Ñ¥¿¡¼¥ó¤Ç¤¹"
-
#, c-format
msgid "Cannot open file \"%s\""
msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-msgid "E681: Buffer is not loaded"
-msgstr "E681: ¥Ð¥Ã¥Õ¥¡¤ÏÆÉ¤ß¹þ¤Þ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E777: String or List expected"
-msgstr "E777: ʸ»úÎ󤫥ꥹ¥È¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E927: Invalid action: '%s'"
-msgstr "E927: ̵¸ú¤ÊÁàºî¤Ç¤¹: '%s'"
-
-#, c-format
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: ̵¸ú¤Ê¹àÌܤǤ¹: %s%%[]"
-
-#, c-format
-msgid "E769: Missing ] after %s["
-msgstr "E769: %s[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E944: Reverse range in character class"
-msgstr "E944: ʸ»ú¥¯¥é¥¹¤ÎÈϰϤ¬µÕ¤Ç¤¹"
-
-msgid "E945: Range too large in character class"
-msgstr "E945: ʸ»ú¥¯¥é¥¹¤ÎÈϰϤ¬Â礤¹¤®¤Þ¤¹"
-
-#, c-format
-msgid "E53: Unmatched %s%%("
-msgstr "E53: %s%%( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E54: Unmatched %s("
-msgstr "E54: %s( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E55: Unmatched %s)"
-msgstr "E55: %s) ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E67: \\z1 - \\z9 not allowed here"
-msgstr "E67: \\z1 - \\z9 ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: %s%%[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] ¤¬¶õ¤Ç¤¹"
-
-msgid "E956: Cannot use pattern recursively"
-msgstr "E956: ¥Ñ¥¿¡¼¥ó¤òºÆµ¢Åª¤Ë»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: %s{...} Æâ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
-msgid "E888: (NFA regexp) cannot repeat %s"
-msgstr "E888: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤»¤Þ¤»¤ó %s"
-
-msgid ""
-"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
-"used "
-msgstr ""
-"E864: \\%#= ¤Ë¤Ï 0, 1 ¤â¤·¤¯¤Ï 2 ¤Î¤ß¤¬Â³¤±¤é¤ì¤Þ¤¹¡£Àµµ¬É½¸½¥¨¥ó¥¸¥ó¤Ï¼«Æ°Áª"
-"Âò¤µ¤ì¤Þ¤¹¡£"
+msgid "cannot have both a list and a \"what\" argument"
+msgstr "¥ê¥¹¥È¤È \"what\" °ú¿ô¤ÎξÊý¤ò»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
msgid "Switching to backtracking RE engine for pattern: "
msgstr "¼¡¤Î¥Ñ¥¿¡¼¥ó¤Ë¥Ð¥Ã¥¯¥È¥é¥Ã¥¥ó¥° RE ¥¨¥ó¥¸¥ó¤òŬÍѤ·¤Þ¤¹: "
-msgid "E65: Illegal back reference"
-msgstr "E65: ÉÔÀµ¤Ê¸åÊý»²¾È¤Ç¤¹"
-
-msgid "E63: invalid use of \\_"
-msgstr "E63: \\_ ¤Î̵¸ú¤Ê»ÈÍÑÊýË¡¤Ç¤¹"
-
-#, c-format
-msgid "E64: %s%c follows nothing"
-msgstr "E64:%s%c ¤Î¸å¤Ë¤Ê¤Ë¤â¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E68: Invalid character after \\z"
-msgstr "E68: \\z ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
-
-#, c-format
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: %s%%[dxouU] ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
-
-#, c-format
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: %s%% ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
-
-#, c-format
-msgid "E59: invalid character after %s@"
-msgstr "E59: %s@ ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
-
-#, c-format
-msgid "E60: Too many complex %s{...}s"
-msgstr "E60: Ê£»¨¤Ê %s{...} ¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E61: Nested %s*"
-msgstr "E61:%s* ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E62: Nested %s%c"
-msgstr "E62:%s%c ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-msgid "E50: Too many \\z("
-msgstr "E50: \\z( ¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E51: Too many %s("
-msgstr "E51: %s( ¤¬Â¿²á¤®¤Þ¤¹"
-
-msgid "E52: Unmatched \\z("
-msgstr "E52: \\z( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E339: Pattern too long"
-msgstr "E339: ¥Ñ¥¿¡¼¥ó¤¬Ä¹²á¤®¤Þ¤¹"
-
msgid "External submatches:\n"
msgstr "³°Éô¤ÎÉôʬ³ºÅö:\n"
-msgid "E865: (NFA) Regexp end encountered prematurely"
-msgstr "E865: (NFA) ´üÂÔ¤è¤êÁ᤯Àµµ¬É½¸½¤Î½ªÃ¼¤ËÅþ㤷¤Þ¤·¤¿"
-
-#, c-format
-msgid "E866: (NFA regexp) Misplaced %c"
-msgstr "E866: (NFA Àµµ¬É½¸½) °ÌÃÖ¤¬¸í¤Ã¤Æ¤¤¤Þ¤¹: %c"
-
-#, c-format
-msgid "E877: (NFA regexp) Invalid character class: %d"
-msgstr "E877: (NFA Àµµ¬É½¸½) ̵¸ú¤Êʸ»ú¥¯¥é¥¹¤Ç¤¹: %d"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\z%c'"
-msgstr "E867: (NFA) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\z%c'"
-
-msgid "E951: \\% value too large"
-msgstr "E951: \\% Ãͤ¬Ä¹²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\%%%c'"
-msgstr "E867: (NFA) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\%%%c'"
-
-msgid "E868: Error building NFA with equivalence class!"
-msgstr "E868: Åù²Á¥¯¥é¥¹¤ò´Þ¤àNFA¹½Ãۤ˼ºÇÔ¤·¤Þ¤·¤¿!"
-
-#, c-format
-msgid "E869: (NFA) Unknown operator '\\@%c'"
-msgstr "E869: (NFA) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\@%c'"
-
-msgid "E870: (NFA regexp) Error reading repetition limits"
-msgstr "E870: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤·¤ÎÀ©¸Â²ó¿ô¤òÆÉ¹þÃæ¤Ë¥¨¥é¡¼"
-
-msgid "E871: (NFA regexp) Can't have a multi follow a multi"
-msgstr "E871: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤· ¤Î¸å¤Ë ·«¤êÊÖ¤· ¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E872: (NFA regexp) Too many '('"
-msgstr "E872: (NFA Àµµ¬É½¸½) '(' ¤¬Â¿²á¤®¤Þ¤¹"
-
-msgid "E879: (NFA regexp) Too many \\z("
-msgstr "E879: (NFA Àµµ¬É½¸½) \\z( ¤¬Â¿²á¤®¤Þ¤¹"
-
-msgid "E873: (NFA regexp) proper termination error"
-msgstr "E873: (NFA Àµµ¬É½¸½) ½ªÃ¼µ¹æ¤¬¤¢¤ê¤Þ¤»¤ó"
-
msgid "Could not open temporary log file for writing, displaying on stderr... "
msgstr ""
-"NFAÀµµ¬É½¸½¥¨¥ó¥¸¥óÍÑ¤Î¥í¥°¥Õ¥¡¥¤¥ë¤ò½ñ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó¡£¥í¥°¤Ïɸ½à¥¨¥é¡¼"
-"½ÐÎϤ˽ÐÎϤ·¤Þ¤¹¡£"
-
-msgid "E874: (NFA) Could not pop the stack!"
-msgstr "E874: (NFA) ¥¹¥¿¥Ã¥¯¤ò¥Ý¥Ã¥×¤Ç¤¤Þ¤»¤ó!"
-
-msgid ""
-"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
-"left on stack"
-msgstr ""
-"E875: (NFA Àµµ¬É½¸½) (¸åÃÖʸ»úÎó¤òNFA¤ËÊÑ´¹Ãæ¤Ë) ¥¹¥¿¥Ã¥¯¤Ë»Ä¤µ¤ì¤¿¥¹¥Æ¡¼¥È¤¬"
-"¿²á¤®¤Þ¤¹"
-
-msgid "E876: (NFA regexp) Not enough space to store the whole NFA "
-msgstr "E876: (NFA Àµµ¬É½¸½) NFAÁ´ÂΤòÊݸ¤¹¤ë¤Ë¤Ï¶õ¤¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
-
-msgid "E878: (NFA) Could not allocate memory for branch traversal!"
-msgstr "E878: (NFA) ¸½ºß²£ÃÇÃæ¤Î¥Ö¥é¥ó¥Á¤Ë½½Ê¬¤Ê¥á¥â¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó!"
-
-msgid "E748: No previously used register"
-msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "freeing %ld lines"
-msgstr "%ld ¹Ô¤ò²òÊüÃæ"
+"NFAÀµµ¬É½¸½¥¨¥ó¥¸¥óÍÑ¤Î¥í¥°¥Õ¥¡¥¤¥ë¤ò½ñ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó¡£¥í¥°¤Ïɸ½à¥¨"
+"¥é¡¼½ÐÎϤ˽ÐÎϤ·¤Þ¤¹¡£"
#, c-format
msgid " into \"%c"
@@ -4738,10 +2597,6 @@
msgid_plural "%ld lines yanked%s"
msgstr[0] "%ld ¹Ô¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
-#, c-format
-msgid "E353: Nothing in register %s"
-msgstr "E353: ¥ì¥¸¥¹¥¿ %s ¤Ë¤Ï²¿¤â¤¢¤ê¤Þ¤»¤ó"
-
msgid ""
"\n"
"Type Name Content"
@@ -4749,11 +2604,6 @@
"\n"
"·¿¼° ̾Á° ÆâÍÆ"
-msgid ""
-"E883: search pattern and expression register may not contain two or more "
-"lines"
-msgstr "E883: ¸¡º÷¥Ñ¥¿¡¼¥ó¤È¼°¥ì¥¸¥¹¥¿¤Ë¤Ï2¹Ô°Ê¾å¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
-
msgid " VREPLACE"
msgstr " ²¾ÁÛÃÖ´¹"
@@ -4834,15 +2684,15 @@
#, c-format
msgid "sourcing \"%s\""
-msgstr "\"%s\" ¤ò¼è¹þÃæ"
+msgstr "\"%s\" ¤ò¼è¹þ¤ßÃæ"
#, c-format
msgid "line %ld: sourcing \"%s\""
-msgstr "¹Ô %ld: %s ¤ò¼è¹þÃæ"
+msgstr "¹Ô %ld: %s ¤ò¼è¹þ¤ßÃæ"
#, c-format
msgid "finished sourcing %s"
-msgstr "%s ¤Î¼è¹þ¤ò´°Î»"
+msgstr "%s ¤Î¼è¹þ¤ß¤ò´°Î»"
#, c-format
msgid "continuing in %s"
@@ -4863,37 +2713,12 @@
msgid "error handler"
msgstr "¥¨¥é¡¼¥Ï¥ó¥É¥é"
+msgid "changed window size"
+msgstr "¥¦¥£¥ó¥É¥¦¥µ¥¤¥º¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
msgid "W15: Warning: Wrong line separator, ^M may be missing"
msgstr "W15: ·Ù¹ð: ¹Ô¶èÀÚ¤¬ÉÔÀµ¤Ç¤¹¡£^M ¤¬¤Ê¤¤¤Î¤Ç¤·¤ç¤¦"
-msgid "E167: :scriptencoding used outside of a sourced file"
-msgstr "E167: :scriptencoding ¤¬¼è¹þ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
-
-msgid "E984: :scriptversion used outside of a sourced file"
-msgstr "E984: :scriptversion ¤¬¼è¹þ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
-
-#, c-format
-msgid "E999: scriptversion not supported: %d"
-msgstr "E999: scriptversion ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %d"
-
-msgid "E168: :finish used outside of a sourced file"
-msgstr "E168: :finish ¤¬¼è¹þ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
-
-#, c-format
-msgid "E383: Invalid search string: %s"
-msgstr "E383: ̵¸ú¤Ê¸¡º÷ʸ»úÎó¤Ç¤¹: %s"
-
-#, c-format
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: ¾å¤Þ¤Ç¸¡º÷¤·¤Þ¤·¤¿¤¬³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: ²¼¤Þ¤Ç¸¡º÷¤·¤Þ¤·¤¿¤¬³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: ';' ¤Î¤¢¤È¤Ë¤Ï '?' ¤« '/' ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë"
-
msgid " (includes previously listed match)"
msgstr " (Á°¤ËÎóµó¤·¤¿³ºÅö²Õ½ê¤ò´Þ¤à)"
@@ -4920,21 +2745,12 @@
msgid "Searching included file %s"
msgstr "¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¸¡º÷Ãæ %s"
-msgid "E387: Match is on current line"
-msgstr "E387: ¸½ºß¹Ô¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤¹"
-
msgid "All included files were found"
msgstr "Á´¤Æ¤Î¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿"
msgid "No included files"
msgstr "¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E388: Couldn't find definition"
-msgstr "E388: ÄêµÁ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
-msgid "E389: Couldn't find pattern"
-msgstr "E389: ¥Ñ¥¿¡¼¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
msgid "Save View"
msgstr "¥Ó¥å¡¼¤òÊݸ¤·¤Þ¤¹"
@@ -4966,48 +2782,12 @@
msgid " line=%ld id=%d%s name=%s priority=%d"
msgstr " ¹Ô=%ld ¼±ÊÌ»Ò=%d%s ̾Á°=%s Í¥ÀèÅÙ=%d"
-msgid "E612: Too many signs defined"
-msgstr "E612: sign¤ÎÄêµÁ¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E239: Invalid sign text: %s"
-msgstr "E239: ̵¸ú¤Êsign¤Î¥Æ¥¥¹¥È¤Ç¤¹: %s"
-
-#, c-format
-msgid "E155: Unknown sign: %s"
-msgstr "E155: ̤ÃΤÎsign¤Ç¤¹: %s"
-
-#, c-format
-msgid "E885: Not possible to change sign %s"
-msgstr "E885: Êѹ¹¤Ç¤¤Ê¤¤ sign ¤Ç¤¹: %s"
-
-msgid "E159: Missing sign number"
-msgstr "E159: sign¤ÎÈֹ椬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E157: Invalid sign ID: %d"
-msgstr "E157: ̵¸ú¤Êsign¼±Ê̻ҤǤ¹: %d"
-
-msgid "E934: Cannot jump to a buffer that does not have a name"
-msgstr "E934: ̾Á°¤Î̵¤¤¥Ð¥Ã¥Õ¥¡¤Ø¤Ï¥¸¥ã¥ó¥×¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E160: Unknown sign command: %s"
-msgstr "E160: ̤ÃΤÎsign¥³¥Þ¥ó¥É¤Ç¤¹: %s"
-
-msgid "E156: Missing sign name"
-msgstr "E156: sign̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-# Added at 27-Jan-2004.
msgid " (NOT FOUND)"
msgstr " (¸«¤Ä¤«¤ê¤Þ¤»¤ó)"
msgid " (not supported)"
msgstr " (È󥵥ݡ¼¥È)"
-msgid "E756: Spell checking is not enabled"
-msgstr "E756: ¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¤Ï̵¸ú²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
#, c-format
msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
msgstr ""
@@ -5018,23 +2798,10 @@
msgstr ""
"·Ù¹ð: ñ¸ì¥ê¥¹¥È \"%s.%s.spl\" ¤ª¤è¤Ó \"%s.ascii.spl\" ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "E797: SpellFileMissing autocommand deleted buffer"
-msgstr "E797: autocommand ¤Î SpellFileMissing ¤¬¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤Þ¤·¤¿"
-
#, c-format
msgid "Warning: region %s not supported"
msgstr "·Ù¹ð9: %s ¤È¤¤¤¦ÈϰϤϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "E752: No previous spell replacement"
-msgstr "E752: ¥¹¥Ú¥ëÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E753: Not found: %s"
-msgstr "E753: ¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
-msgid "E758: Truncated spell file"
-msgstr "E758: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤¬ÀÚ¼è¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
-
#, c-format
msgid "Trailing text in %s line %d: %s"
msgstr "%s (%d ¹ÔÌÜ) ¤Ë³¤¯¥Æ¥¥¹¥È: %s"
@@ -5043,55 +2810,16 @@
msgid "Affix name too long in %s line %d: %s"
msgstr "%s (%d ¹ÔÌÜ) ¤Î affix ̾¤¬Ä¹²á¤®¤Þ¤¹: %s"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
-msgstr ""
-"E761: affix¥Õ¥¡¥¤¥ë¤Î FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Îʸ»ú¤¬Èϰϳ°¤Ç¤¹"
-
msgid "Compressing word tree..."
msgstr "ñ¸ì¥Ä¥ê¡¼¤ò°µ½Ì¤·¤Æ¤¤¤Þ¤¹..."
#, c-format
msgid "Reading spell file \"%s\""
-msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þÃæ"
-
-msgid "E757: This does not look like a spell file"
-msgstr "E757: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
-
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: ¸Å¤¤¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç¡¢¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤"
-
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΥ¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤¹"
-
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ë¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: .sug ¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹: %s"
-
-#, c-format
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: ¸Å¤¤ .sug ¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç¡¢¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤: %s"
-
-#, c-format
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΠ.sug ¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
-
-#, c-format
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: .sug ¥Õ¥¡¥¤¥ë¤¬ .spl ¥Õ¥¡¥¤¥ë¤È°ìÃפ·¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: .sug ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿: %s"
+msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þ¤ßÃæ"
#, c-format
msgid "Reading affix file %s..."
-msgstr "affix ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þÃæ..."
+msgstr "affix ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤ßÃæ..."
#, c-format
msgid "Conversion failure for word in %s line %d: %s"
@@ -5227,10 +2955,6 @@
msgstr "¼½ñ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤ßÃæ..."
#, c-format
-msgid "E760: No word count in %s"
-msgstr "E760: %s ¤Ë¤Ïñ¸ì¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
msgid "line %6d, word %6ld - %s"
msgstr "¹Ô %6d, ñ¸ì %6ld - %s"
@@ -5255,46 +2979,47 @@
msgstr "ñ¸ì¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤ßÃæ..."
#, c-format
-msgid "Duplicate /encoding= line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "Conversion failure for word in %s line %ld: %s"
+msgstr "%s (%ld ¹ÔÌÜ) ¤Îñ¸ì¤òÊÑ´¹¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿: %s"
#, c-format
-msgid "/encoding= line after word ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠñ¸ì¤Î¸å¤Î /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "Duplicate /encoding= line ignored in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "Duplicate /regions= line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /regions= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "/encoding= line after word ignored in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌܤΠñ¸ì¤Î¸å¤Î /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "Too many regions in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ¡¢ÈϰϻØÄ꤬¿²á¤®¤Þ¤¹: %s"
+msgid "Duplicate /regions= line ignored in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /regions= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "/ line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ / ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "Too many regions in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌÜ¡¢ÈϰϻØÄ꤬¿²á¤®¤Þ¤¹: %s"
#, c-format
-msgid "Invalid region nr in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ Ìµ¸ú¤Ê nr Îΰè¤Ç¤¹: %s"
+msgid "/ line ignored in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌܤΠ½ÅÊ£¤·¤¿ / ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "Unrecognized flags in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ Ç§¼±ÉÔǽ¤Ê¥Õ¥é¥°¤Ç¤¹: %s"
+msgid "Invalid region nr in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌÜ Ìµ¸ú¤Ê nr Îΰè¤Ç¤¹: %s"
+
+#, c-format
+msgid "Unrecognized flags in %s line %ld: %s"
+msgstr "%s ¤Î %ld ¹ÔÌÜ Ç§¼±ÉÔǽ¤Ê¥Õ¥é¥°¤Ç¤¹: %s"
#, c-format
msgid "Ignored %d words with non-ASCII characters"
msgstr "ÈóASCIIʸ»ú¤ò´Þ¤à %d ¸Ä¤Îñ¸ì¤ò̵»ë¤·¤Þ¤·¤¿"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: ¥á¥â¥ê¤¬Â¤ê¤Ê¤¤¤Î¤Ç¡¢Ã±¸ì¥ê¥¹¥È¤ÏÉÔ´°Á´¤Ç¤¹"
-
#, c-format
-msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
-msgstr "¥Î¡¼¥É %d ¸Ä(Á´ %d ¸ÄÃæ) ¤ò°µ½Ì¤·¤Þ¤·¤¿; »Ä¤ê %d (%d%%)"
+msgid "Compressed %s: %ld of %ld nodes; %ld (%ld%%) remaining"
+msgstr "%s ¤ò°µ½Ì: ¥Î¡¼¥É %ld ¸Ä(Á´ %ld ¸ÄÃæ); »Ä¤ê %ld (%ld%%)"
msgid "Reading back spell file..."
-msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤òµÕÆÉ¹þÃæ"
+msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤òµÕÆÉ¹þ¤ßÃæ"
msgid "Performing soundfolding..."
msgstr "²»À¼¾ö¹þ¤ß¤ò¼Â¹ÔÃæ..."
@@ -5315,17 +3040,6 @@
msgid "Estimated runtime memory use: %d bytes"
msgstr "¿äÄê¥á¥â¥ê»ÈÍÑÎÌ: %d ¥Ð¥¤¥È"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤Ë¤ÏÈϰÏ̾¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E754: Only up to %d regions supported"
-msgstr "E754: ÈÏ°Ï¤Ï %d ¸Ä¤Þ¤Ç¤·¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E755: Invalid region in %s"
-msgstr "E755: ̵¸ú¤ÊÈϰϤǤ¹: %s"
-
msgid "Warning: both compounding and NOBREAK specified"
msgstr "·Ù¹ð: Ê£¹ç¥Õ¥é¥°¤È NOBREAK ¤¬Î¾Êý¤È¤â»ØÄꤵ¤ì¤Þ¤·¤¿"
@@ -5337,23 +3051,16 @@
msgstr "¼Â¹Ô¤·¤Þ¤·¤¿!"
#, c-format
-msgid "E765: 'spellfile' does not have %d entries"
-msgstr "E765: 'spellfile' ¤Ë¤Ï %d ¸Ä¤Î¥¨¥ó¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
msgid "Word '%.*s' removed from %s"
msgstr "ñ¸ì '%.*s' ¤¬ %s ¤«¤éºï½ü¤µ¤ì¤Þ¤·¤¿"
+msgid "Seek error in spellfile"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
+
#, c-format
msgid "Word '%.*s' added to %s"
msgstr "ñ¸ì '%.*s' ¤¬ %s ¤ØÄɲ䵤ì¤Þ¤·¤¿"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: ñ¸ì¤Îʸ»ú¤¬¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤È°Û¤Ê¤ê¤Þ¤¹"
-
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: MAP ¥¨¥ó¥È¥ê¤Ë½Åʣʸ»ú¤¬Â¸ºß¤·¤Þ¤¹"
-
msgid "Sorry, no suggestions"
msgstr "»Äǰ¤Ç¤¹¤¬¡¢½¤Àµ¸õÊä¤Ï¤¢¤ê¤Þ¤»¤ó"
@@ -5381,16 +3088,18 @@
msgid "syntax conceal off"
msgstr "¹½Ê¸¤Î conceal ¤Ï¸½ºß off ¤Ç¤¹"
-#, c-format
-msgid "E390: Illegal argument: %s"
-msgstr "E390: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-
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 ¤Ç¤¹"
@@ -5406,16 +3115,15 @@
msgid "syntax iskeyword not set"
msgstr "¹½Ê¸ÍÑ iskeyword ¤Ï¥»¥Ã¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid "syncing on C-style comments"
msgstr "C¸À¸ìÉ÷¥³¥á¥ó¥È¤«¤éƱ´üÃæ"
msgid "no syncing"
msgstr "È󯱴ü"
+msgid "syncing starts at the first line"
+msgstr "ºÇ½é¤Î¹Ô¤ÇƱ´ü³«»Ï"
+
msgid "syncing starts "
msgstr "Ʊ´ü³«»Ï "
@@ -5443,15 +3151,14 @@
"\n"
"--- ¹½Ê¸Í×ÁÇ ---"
-#, c-format
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "from the first line"
+msgstr "(ºÇ½é¤Î¹Ô¤«¤é)"
msgid "minimal "
-msgstr "minimal "
+msgstr "ºÇ¾® "
msgid "maximal "
-msgstr "maximal "
+msgstr "ºÇÂç "
msgid "; match "
msgstr "; ³ºÅö "
@@ -5459,116 +3166,11 @@
msgid " line breaks"
msgstr " ¸Ä¤Î²þ¹Ô"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: ¤³¤Î¾ì½ê¤Ç¤Ï°ú¿ôcontains¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E844: invalid cchar value"
-msgstr "E844: ̵¸ú¤Êcchar¤ÎÃͤǤ¹"
-
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: ¤³¤³¤Ç¤Ï¥°¥ë¡¼¥×¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: %s ¤ÎÈϰÏÍ×ÁǤ¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E397: Filename required"
-msgstr "E397: ¥Õ¥¡¥¤¥ë̾¤¬É¬ÍפǤ¹"
-
-msgid "E847: Too many syntax includes"
-msgstr "E847: ¹½Ê¸¤Î¼è¤ê¹þ¤ß(include)¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E789: Missing ']': %s"
-msgstr "E789: ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E890: trailing char after ']': %s]%s"
-msgstr "E890: ']' ¤Î¸å¤í¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s]%s"
-
-#, c-format
-msgid "E398: Missing '=': %s"
-msgstr "E398: '=' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: °ú¿ô¤¬Â¤ê¤Þ¤»¤ó: ¹½Ê¸ÈÏ°Ï %s"
-
-msgid "E848: Too many syntax clusters"
-msgstr "E848: ¹½Ê¸¥¯¥é¥¹¥¿¤¬Â¿²á¤®¤Þ¤¹"
-
-msgid "E400: No cluster specified"
-msgstr "E400: ¥¯¥é¥¹¥¿¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E401: Pattern delimiter not found: %s"
-msgstr "E401: ¥Ñ¥¿¡¼¥ó¶èÀڤ꤬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: ¥Ñ¥¿¡¼¥ó¤Î¤¢¤È¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹: %s"
-
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr "E403: ¹½Ê¸Æ±´ü: Ϣ³¹Ô¥Ñ¥¿¡¼¥ó¤¬2ÅÙ»ØÄꤵ¤ì¤Þ¤·¤¿"
-
-#, c-format
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: Åù¹æ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E406: Empty argument: %s"
-msgstr "E406: ¶õ¤Î°ú¿ô: %s"
-
-#, c-format
-msgid "E407: %s not allowed here"
-msgstr "E407: %s ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s ¤ÏÆâÍÆ¥ê¥¹¥È¤ÎÀèÆ¬¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤"
-
-#, c-format
-msgid "E409: Unknown group name: %s"
-msgstr "E409: ̤ÃΤΥ°¥ë¡¼¥×̾: %s"
-
-#, c-format
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: ̵¸ú¤Ê :syntax ¤Î¥µ¥Ö¥³¥Þ¥ó¥É¤Ç¤¹: %s"
-
msgid ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
msgstr ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
-msgid "E555: at bottom of tag stack"
-msgstr "E555: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
-
-msgid "E556: at top of tag stack"
-msgstr "E556: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
-
-msgid "E986: cannot modify the tag stack within tagfunc"
-msgstr "E986: tagfuncÆâ¤Î¥¿¥°¥¹¥¿¥Ã¥¯¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-msgid "E987: invalid return value from tagfunc"
-msgstr "E987: tagfunc¤«¤é¤ÎÌá¤êÃͤ¬Ìµ¸ú¤Ç¤¹"
-
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: ºÇ½é¤Î³ºÅö¥¿¥°¤ò±Û¤¨¤ÆÌá¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E426: tag not found: %s"
-msgstr "E426: ¥¿¥°¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-
-msgid "E427: There is only one matching tag"
-msgstr "E427: ³ºÅö¥¿¥°¤¬1¤Ä¤À¤±¤·¤«¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: ºÇ¸å¤Î³ºÅö¥¿¥°¤ò±Û¤¨¤Æ¿Ê¤à¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
#, c-format
msgid "File \"%s\" does not exist"
msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -5583,10 +3185,6 @@
msgid " Using tag with different case!"
msgstr " ¥¿¥°¤ò°Û¤Ê¤ëcase¤Ç»ÈÍѤ·¤Þ¤¹!"
-#, c-format
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: ¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
-
msgid " # pri kind tag"
msgstr " # pri kind tag"
@@ -5605,59 +3203,22 @@
msgstr "¥¿¥°¥Õ¥¡¥¤¥ë %s ¤ò¸¡º÷Ãæ"
#, c-format
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: ¥¿¥°¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤¬ %s ¤ËÀÚ¤ê¼Î¤Æ¤é¤ì¤Þ¤·¤¿\n"
-
-msgid "Ignoring long line in tags file"
-msgstr "¥¿¥°¥Õ¥¡¥¤¥ëÆâ¤ÎŤ¤¹Ô¤ò̵»ë¤·¤Þ¤¹"
-
-#, c-format
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: ¥¿¥°¥Õ¥¡¥¤¥ë \"%s\" ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
msgid "Before byte %ld"
msgstr "ľÁ°¤Î %ld ¥Ð¥¤¥È"
-#, c-format
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¥½¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-
-msgid "E433: No tags file"
-msgstr "E433: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E434: Can't find tag pattern"
-msgstr "E434: ¥¿¥°¥Ñ¥¿¡¼¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: ¥¿¥°¤ò¸«¤Ä¤±¤é¤ì¤Ê¤¤¤Î¤Çñ¤Ë¿ä¬¤·¤Þ¤¹!"
+msgid "Ignoring long line in tags file"
+msgstr "¥¿¥°¥Õ¥¡¥¤¥ëÆâ¤ÎŤ¤¹Ô¤ò̵»ë¤·¤Þ¤¹"
#, c-format
msgid "Duplicate field name: %s"
msgstr "½ÅÊ£¤·¤¿¥Õ¥£¡¼¥ë¥É̾: %s"
msgid "' not known. Available builtin terminals are:"
-msgstr "' ¤Ï̤ÃΤǤ¹¡£¸½¹Ô¤ÎÁȤ߹þ¤ßüËö¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹:"
+msgstr "' ¤Ï̤ÃΤǤ¹¡£¸½¹Ô¤ÎÁȹþ¤ßüËö¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹:"
msgid "defaulting to '"
msgstr "¾ÊάÃͤò¼¡¤Î¤è¤¦¤ËÀßÄꤷ¤Þ¤¹ '"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: termcap¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
-
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: terminfo¤ËüËö¥¨¥ó¥È¥ê¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: termcap¤ËüËö¥¨¥ó¥È¥ê¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-
-#, c-format
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: termcap¤Ë \"%s\" ¤Î¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: üËö¤Ë \"cm\" µ¡Ç½¤¬É¬ÍפǤ¹"
-
msgid ""
"\n"
"--- Terminal keys ---"
@@ -5666,13 +3227,6 @@
"--- üËö¥¡¼ ---"
#, c-format
-msgid "E181: Invalid attribute: %s"
-msgstr "E181: ̵¸ú¤Ê°À¤Ç¤¹: %s"
-
-msgid "E279: Sorry, ++shell is not supported on this system"
-msgstr "E279: ¤´¤á¤ó¤Ê¤µ¤¤¡¢++shell ¤Ï¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-#, c-format
msgid "Kill job in \"%s\"?"
msgstr "\"%s\" Æâ¤Î¥¸¥ç¥Ö¤ò½ªÎ»¤·¤Þ¤¹¤«?"
@@ -5691,50 +3245,17 @@
msgid "finished"
msgstr "½ªÎ»"
-msgid "E958: Job already finished"
-msgstr "E958: ¥¸¥ç¥Ö¤Ï¤¹¤Ç¤Ë½ªÎ»¤·¤Æ¤¤¤Þ¤¹"
+msgid "(Invalid)"
+msgstr "(̵¸ú)"
+
+# no-c-format
+msgid "%a %b %d %H:%M:%S %Y"
+msgstr "%Y/%m/%d (%a) %H:%M:%S"
#, c-format
-msgid "E953: File exists: %s"
-msgstr "E953: ¥Õ¥¡¥¤¥ë¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s"
-
-msgid "E955: Not a terminal buffer"
-msgstr "E955: üËö¥Ð¥Ã¥Õ¥¡¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E982: ConPTY is not available"
-msgstr "E982: ConPTY ¤¬Ìµ¸ú¤Ç¤¹"
-
-#, c-format
-msgid "E971: Property type %s does not exist"
-msgstr "E971: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥× %s ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E964: Invalid column number: %ld"
-msgstr "E964: ̵¸ú¤ÊÎóÈÖ¹æ¤Ç¤¹: %ld"
-
-#, c-format
-msgid "E966: Invalid line number: %ld"
-msgstr "E966: ̵¸ú¤Ê¹ÔÈÖ¹æ¤Ç¤¹: %ld"
-
-msgid "E965: missing property type name"
-msgstr "E965: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥×̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E275: Cannot add text property to unloaded buffer"
-msgstr "E275: ²òÊü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ë¤Ï¥Æ¥¥¹¥È¥×¥í¥Ñ¥Æ¥£¤òÄɲäǤ¤Þ¤»¤ó"
-
-msgid "E967: text property info corrupted"
-msgstr "E967: ¥Æ¥¥¹¥È¥×¥í¥Ñ¥Æ¥£¾ðÊ󤬲õ¤ì¤Æ¤¤¤Þ¤¹"
-
-msgid "E968: Need at least one of 'id' or 'type'"
-msgstr "E968: ºÇÄã 1 ¸Ä¤Î 'id' ¤Þ¤¿¤Ï 'type' ¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E969: Property type %s already defined"
-msgstr "E969: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥× %s ¤Ï´û¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹"
-
-#, c-format
-msgid "E970: Unknown highlight group name: '%s'"
-msgstr "E970: ̤ÃΤΥϥ¤¥é¥¤¥È¥°¥ë¡¼¥×̾: '%s'"
+msgid "%ld second ago"
+msgid_plural "%ld seconds ago"
+msgstr[0] "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹"
msgid "new shell started\n"
msgstr "¿·¤·¤¤¥·¥§¥ë¤òµ¯Æ°¤·¤Þ¤¹\n"
@@ -5742,83 +3263,41 @@
msgid "Vim: Error reading input, exiting...\n"
msgstr "Vim: ÆþÎϤòÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ë¤è¤ê½ªÎ»¤·¤Þ¤¹...\n"
-msgid "Used CUT_BUFFER0 instead of empty selection"
-msgstr "¶õ¤ÎÁªÂòÎΰè¤Î¤«¤ï¤ê¤ËCUT_BUFFER0¤¬»ÈÍѤµ¤ì¤Þ¤·¤¿"
-
-msgid "E881: Line count changed unexpectedly"
-msgstr "E881: ͽ´ü¤»¤º¹Ô¥«¥¦¥ó¥È¤¬ÊѤï¤ê¤Þ¤·¤¿"
-
msgid "No undo possible; continue anyway"
msgstr "²Äǽ¤Ê¥¢¥ó¥É¥¥¤Ï¤¢¤ê¤Þ¤»¤ó: ¤È¤ê¤¢¤¨¤ºÂ³¤±¤Þ¤¹"
-#, c-format
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: ½ñ¹þ¤ßÍѤ˥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E825: Corrupted undo file (%s): %s"
-msgstr "E825: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Æ¤¤¤Þ¤¹ (%s): %s"
-
msgid "Cannot write undo file in any directory in 'undodir'"
-msgstr "'undodir'¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò½ñ¤¹þ¤á¤Þ¤»¤ó"
+msgstr "'undodir'¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò½ñ¹þ¤á¤Þ¤»¤ó"
#, c-format
msgid "Will not overwrite with undo file, cannot read: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤È¤·¤ÆÆÉ¤ß¹þ¤á¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤È¤·¤ÆÆÉ¹þ¤á¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
#, c-format
msgid "Will not overwrite, this is not an undo file: %s"
msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
msgid "Skipping undo file write, nothing to undo"
-msgstr "Âоݤ¬¤Ê¤¤¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
+msgstr "Âоݤ¬¤Ê¤¤¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
#, c-format
msgid "Writing undo file: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë½ñ¤¹þ¤ßÃæ: %s"
-
-#, c-format
-msgid "E829: write error in undo file: %s"
-msgstr "E829: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¥¨¥é¡¼¤Ç¤¹: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë½ñ¹þ¤ßÃæ: %s"
#, c-format
msgid "Not reading undo file, owner differs: %s"
-msgstr "¥ª¡¼¥Ê¡¼¤¬°Û¤Ê¤ë¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¤ß¹þ¤ß¤Þ¤»¤ó: %s"
+msgstr "¥ª¡¼¥Ê¡¼¤¬°Û¤Ê¤ë¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¹þ¤ß¤Þ¤»¤ó: %s"
#, c-format
msgid "Reading undo file: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ëÆÉ¹þÃæ: %s"
-
-#, c-format
-msgid "E822: Cannot open undo file for reading: %s"
-msgstr "E822: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E823: Not an undo file: %s"
-msgstr "E823: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: Èó°Å¹æ²½¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤Æ¤Þ¤¹: %s"
-
-#, c-format
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: °Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î²òÆÉ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-
-#, c-format
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-
-#, c-format
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: ¸ß´¹À¤Î̵¤¤¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ëÆÉ¹þ¤ßÃæ: %s"
msgid "File contents changed, cannot use undo info"
msgstr "¥Õ¥¡¥¤¥ë¤ÎÆâÍÆ¤¬ÊѤï¤Ã¤Æ¤¤¤ë¤¿¤á¡¢¥¢¥ó¥É¥¥¾ðÊó¤òÍøÍѤǤ¤Þ¤»¤ó"
#, c-format
msgid "Finished reading undo file %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë %s ¤Î¼è¹þ¤ò´°Î»"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë %s ¤Î¼è¹þ¤ß¤ò´°Î»"
msgid "Already at oldest change"
msgstr "´û¤Ë°ìÈָŤ¤Êѹ¹¤Ç¤¹"
@@ -5826,13 +3305,6 @@
msgid "Already at newest change"
msgstr "´û¤Ë°ìÈÖ¿·¤·¤¤Êѹ¹¤Ç¤¹"
-#, c-format
-msgid "E830: Undo number %ld not found"
-msgstr "E830: ¥¢¥ó¥É¥¥ÈÖ¹æ %ld ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E438: u_undo: line numbers wrong"
-msgstr "E438: u_undo: ¹ÔÈֹ椬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-
msgid "more line"
msgstr "¹Ô Äɲä·¤Þ¤·¤¿"
@@ -5867,15 +3339,6 @@
msgid "number changes when saved"
msgstr "ÄÌÈÖ Êѹ¹¿ô Êѹ¹»þ´ü ÊݸºÑ"
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undo ¤Îľ¸å¤Ë undojoin ¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E439: undo list corrupt"
-msgstr "E439: ¥¢¥ó¥É¥¥¥ê¥¹¥È¤¬²õ¤ì¤Æ¤¤¤Þ¤¹"
-
-msgid "E440: undo line missing"
-msgstr "E440: ¥¢¥ó¥É¥¥¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
-
msgid ""
"\n"
" Name Args Address Complete Definition"
@@ -5887,89 +3350,8 @@
msgstr "¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
#, c-format
-msgid "E180: Invalid address type value: %s"
-msgstr "E180: ̵¸ú¤Ê¥¢¥É¥ì¥¹¥¿¥¤¥×ÃͤǤ¹: %s"
-
-#, c-format
-msgid "E180: Invalid complete value: %s"
-msgstr "E180: ̵¸ú¤ÊÊä´°»ØÄê¤Ç¤¹: %s"
-
-msgid "E468: Completion argument only allowed for custom completion"
-msgstr "E468: Êä´°°ú¿ô¤Ï¥«¥¹¥¿¥àÊä´°¤Ç¤·¤«»ÈÍѤǤ¤Þ¤»¤ó"
-
-msgid "E467: Custom completion requires a function argument"
-msgstr "E467: ¥«¥¹¥¿¥àÊä´°¤Ë¤Ï°ú¿ô¤È¤·¤Æ´Ø¿ô¤¬É¬ÍפǤ¹"
-
-msgid "E175: No attribute specified"
-msgstr "E175: °À¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E176: Invalid number of arguments"
-msgstr "E176: °ú¿ô¤Î¿ô¤¬Ìµ¸ú¤Ç¤¹"
-
-msgid "E177: Count cannot be specified twice"
-msgstr "E177: ¥«¥¦¥ó¥È¤ò2½Å»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E178: Invalid default value for count"
-msgstr "E178: ¥«¥¦¥ó¥È¤Î¾ÊάÃͤ¬Ìµ¸ú¤Ç¤¹"
-
-msgid "E179: argument required for -complete"
-msgstr "E179: -complete ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹"
-
-msgid "E179: argument required for -addr"
-msgstr "E179: -addr ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E174: Command already exists: add ! to replace it: %s"
-msgstr "E174: ¥³¥Þ¥ó¥É¤¬´û¤Ë¤¢¤ê¤Þ¤¹: ºÆÄêµÁ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤: %s"
-
-msgid "E182: Invalid command name"
-msgstr "E182: ̵¸ú¤Ê¥³¥Þ¥ó¥É̾¤Ç¤¹"
-
-msgid "E183: User defined commands must start with an uppercase letter"
-msgstr "E183: ¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Ï±ÑÂçʸ»ú¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid "E841: Reserved name, cannot be used for user defined command"
-msgstr "E841: ͽÌó̾¤Ê¤Î¤Ç¡¢¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤ËÍøÍѤǤ¤Þ¤»¤ó"
-
-#, c-format
-msgid "E184: No such user-defined command: %s"
-msgstr "E184: ¤½¤Î¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E122: Function %s already exists, add ! to replace it"
-msgstr "E122: ´Ø¿ô %s ¤ÏÄêµÁºÑ¤Ç¤¹¡¢ºÆÄêµÁ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤"
-
-msgid "E717: Dictionary entry already exists"
-msgstr "E717: ¼½ñ·¿Æâ¤Ë¥¨¥ó¥È¥ê¤¬´û¤Ë¸ºß¤·¤Þ¤¹"
-
-msgid "E718: Funcref required"
-msgstr "E718: ´Ø¿ô»²¾È·¿¤¬Í׵ᤵ¤ì¤Þ¤¹"
-
-#, c-format
-msgid "E130: Unknown function: %s"
-msgstr "E130: ̤ÃΤδؿô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E125: Illegal argument: %s"
-msgstr "E125: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E853: Duplicate argument name: %s"
-msgstr "E853: °ú¿ô̾¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹: %s"
-
-msgid "E989: Non-default argument follows default argument"
-msgstr "E989: Èó¥Ç¥Õ¥©¥ë¥È°ú¿ô¤¬¥Ç¥Õ¥©¥ë¥È°ú¿ô¤Î¸å¤Ë¤¢¤ê¤Þ¤¹"
-
-#, c-format
-msgid "E740: Too many arguments for function %s"
-msgstr "E740: ´Ø¿ô¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹: %s"
-
-#, c-format
-msgid "E116: Invalid arguments for function %s"
-msgstr "E116: ´Ø¿ô¤Î̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
-
-msgid "E132: Function call depth is higher than 'maxfuncdepth'"
-msgstr "E132: ´Ø¿ô¸Æ½Ð¤ÎÆþ¤ì»Ò¿ô¤¬ 'maxfuncdepth' ¤òͤ¨¤Þ¤·¤¿"
+msgid "W22: Text found after :endfunction: %s"
+msgstr "W22: :endfunction ¤Î¸å¤Ëʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
msgid "calling %s"
@@ -5987,85 +3369,6 @@
msgid "%s returning %s"
msgstr "%s ¤¬ %s ¤òÊÖ¤·¤Þ¤·¤¿"
-msgid "E699: Too many arguments"
-msgstr "E699: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
-
-#, c-format
-msgid "E117: Unknown function: %s"
-msgstr "E117: ̤ÃΤδؿô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E276: Cannot use function as a method: %s"
-msgstr "E276: ´Ø¿ô¤ò¥á¥½¥Ã¥É¤È¤·¤Æ»ÈÍѤǤ¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E933: Function was deleted: %s"
-msgstr "E933: ´Ø¿ô¤Ïºï½ü¤µ¤ì¤Þ¤·¤¿: %s"
-
-#, c-format
-msgid "E119: Not enough arguments for function: %s"
-msgstr "E119: ´Ø¿ô¤Î°ú¿ô¤¬Â¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E120: Using <SID> not in a script context: %s"
-msgstr "E120: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
-
-#, c-format
-msgid "E725: Calling dict function without Dictionary: %s"
-msgstr "E725: ¼½ñÍÑ´Ø¿ô¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿¤¬¼½ñ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-msgid "E129: Function name required"
-msgstr "E129: ´Ø¿ô̾¤¬Í׵ᤵ¤ì¤Þ¤¹"
-
-#, c-format
-msgid "E128: Function name must start with a capital or \"s:\": %s"
-msgstr "E128: ´Ø¿ô̾¤ÏÂçʸ»ú¤« \"s:\" ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E884: Function name cannot contain a colon: %s"
-msgstr "E884: ´Ø¿ô̾¤Ë¤Ï¥³¥í¥ó¤Ï´Þ¤á¤é¤ì¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E123: Undefined function: %s"
-msgstr "E123: ̤ÄêµÁ¤Î´Ø¿ô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E124: Missing '(': %s"
-msgstr "E124: '(' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-
-msgid "E862: Cannot use g: here"
-msgstr "E862: ¤³¤³¤Ç¤Ï g: ¤Ï»È¤¨¤Þ¤»¤ó"
-
-#, c-format
-msgid "E932: Closure function should not be at top level: %s"
-msgstr "E932: ¥¯¥í¡¼¥¸¥ã¡¼´Ø¿ô¤Ï¥È¥Ã¥×¥ì¥Ù¥ë¤Ëµ½Ò¤Ç¤¤Þ¤»¤ó: %s"
-
-msgid "E126: Missing :endfunction"
-msgstr "E126: :endfunction ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "W22: Text found after :endfunction: %s"
-msgstr "W22: :endfunction ¤Î¸å¤Ëʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
-
-#, c-format
-msgid "E707: Function name conflicts with variable: %s"
-msgstr "E707: ´Ø¿ô̾¤¬ÊÑ¿ô̾¤È¾×ÆÍ¤·¤Þ¤¹: %s"
-
-#, c-format
-msgid "E127: Cannot redefine function %s: It is in use"
-msgstr "E127: ´Ø¿ô %s ¤òºÆÄêµÁ¤Ç¤¤Þ¤»¤ó: »ÈÍÑÃæ¤Ç¤¹"
-
-#, c-format
-msgid "E746: Function name does not match script file name: %s"
-msgstr "E746: ´Ø¿ô̾¤¬¥¹¥¯¥ê¥×¥È¤Î¥Õ¥¡¥¤¥ë̾¤È°ìÃפ·¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E131: Cannot delete function %s: It is in use"
-msgstr "E131: ´Ø¿ô %s ¤òºï½ü¤Ç¤¤Þ¤»¤ó: »ÈÍÑÃæ¤Ç¤¹"
-
-msgid "E133: :return not inside a function"
-msgstr "E133: ´Ø¿ô³°¤Ë :return ¤¬¤¢¤ê¤Þ¤·¤¿"
-
#, c-format
msgid "%s (%s, compiled %s)"
msgstr "%s (%s, compiled %s)"
@@ -6219,18 +3522,15 @@
msgid "with X11-Athena GUI."
msgstr "with X11-Athena GUI."
+msgid "with Haiku GUI."
+msgstr "with Haiku GUI."
+
msgid "with Photon GUI."
msgstr "with Photon GUI."
msgid "with GUI."
msgstr "with GUI."
-msgid "with Carbon GUI."
-msgstr "with Carbon GUI."
-
-msgid "with Cocoa GUI."
-msgstr "with Cocoa GUI."
-
msgid " Features included (+) or not (-):\n"
msgstr " µ¡Ç½¤Î°ìÍ÷ ͸ú(+)/̵¸ú(-)\n"
@@ -6357,6 +3657,21 @@
msgid "menu Help->Sponsor/Register for information "
msgstr "¾ÜºÙ¤Ï¥á¥Ë¥å¡¼¤Î ¥Ø¥ë¥×->¥¹¥Ý¥ó¥µ¡¼/ÅÐÏ¿ ¤ò»²¾È¤·¤Æ²¼¤µ¤¤"
+msgid "global"
+msgstr "¥°¥í¡¼¥Ð¥ë"
+
+msgid "buffer"
+msgstr "¥Ð¥Ã¥Õ¥¡"
+
+msgid "window"
+msgstr "¥¦¥£¥ó¥É¥¦"
+
+msgid "tab"
+msgstr "¥¿¥Ö"
+
+msgid "[end of lines]"
+msgstr "[ºÇ½ª¹Ô]"
+
msgid ""
"\n"
"# Buffer list:\n"
@@ -6398,9 +3713,6 @@
msgid "%sviminfo: %s in line: "
msgstr "%sviminfo: %s ¹ÔÌÜ: "
-msgid "E136: viminfo: Too many errors, skipping rest of file"
-msgstr "E136: viminfo: ¥¨¥é¡¼¤¬Â¿²á¤®¤ë¤Î¤Ç¡¢°Ê¹ß¤Ï¥¹¥¥Ã¥×¤·¤Þ¤¹"
-
msgid ""
"\n"
"# global variables:\n"
@@ -6430,9 +3742,6 @@
msgid "Substitute "
msgstr "Substitute "
-msgid "Illegal register name"
-msgstr "ÉÔÀµ¤Ê¥ì¥¸¥¹¥¿Ì¾"
-
msgid ""
"\n"
"# Registers:\n"
@@ -6440,10 +3749,6 @@
"\n"
"# ¥ì¥¸¥¹¥¿:\n"
-#, c-format
-msgid "E574: Unknown register type %d"
-msgstr "E574: ̤ÃΤΥ쥸¥¹¥¿·¿ %d ¤Ç¤¹"
-
msgid ""
"\n"
"# History of marks within files (newest to oldest):\n"
@@ -6465,12 +3770,6 @@
"\n"
"# ¥¸¥ã¥ó¥×¥ê¥¹¥È (¿·¤·¤¤¤â¤Î¤¬Àè):\n"
-msgid "Missing '>'"
-msgstr "'>' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "Illegal starting char"
-msgstr "ÉÔÀµ¤ÊÀèÆ¬Ê¸»ú¤Ç¤¹"
-
#, c-format
msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# ¤³¤Î viminfo ¥Õ¥¡¥¤¥ë¤Ï Vim %s ¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤Þ¤·¤¿.\n"
@@ -6486,8 +3785,8 @@
msgstr "# ¤³¤Î¥Õ¥¡¥¤¥ë¤¬½ñ¤«¤ì¤¿»þ¤Î 'encoding' ¤ÎÃÍ\n"
#, c-format
-msgid "Reading viminfo file \"%s\"%s%s%s"
-msgstr "viminfo¥Õ¥¡¥¤¥ë \"%s\"%s%s%s ¤òÆÉ¹þ¤ßÃæ"
+msgid "Reading viminfo file \"%s\"%s%s%s%s"
+msgstr "viminfo¥Õ¥¡¥¤¥ë \"%s\"%s%s%s%s ¤òÆÉ¹þ¤ßÃæ"
msgid " info"
msgstr " ¾ðÊó"
@@ -6502,60 +3801,13 @@
msgstr " ¼ºÇÔ"
#, c-format
-msgid "E137: Viminfo file is not writable: %s"
-msgstr "E137: viminfo¥Õ¥¡¥¤¥ë¤¬½ñ¹þ¤ß¤Ç¤¤Þ¤»¤ó: %s"
-
-#, c-format
-msgid "E929: Too many viminfo temp files, like %s!"
-msgstr "E929: °ì»þviminfo¥Õ¥¡¥¤¥ë¤¬Â¿²á¤®¤Þ¤¹! Îã: %s"
-
-#, c-format
-msgid "E138: Can't write viminfo file %s!"
-msgstr "E138: viminfo¥Õ¥¡¥¤¥ë %s ¤òÊݸ¤Ç¤¤Þ¤»¤ó!"
-
-#, c-format
msgid "Writing viminfo file \"%s\""
msgstr "viminfo¥Õ¥¡¥¤¥ë \"%s\" ¤ò½ñ¹þ¤ßÃæ"
-#, c-format
-msgid "E886: Can't rename viminfo file to %s!"
-msgstr "E886: viminfo¥Õ¥¡¥¤¥ë¤ò %s ¤ØÌ¾Á°Êѹ¹¤Ç¤¤Þ¤»¤ó!"
-
-msgid "E195: Cannot open viminfo file for reading"
-msgstr "E195: viminfo¥Õ¥¡¥¤¥ë¤òÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
-
msgid "Already only one window"
msgstr "´û¤Ë¥¦¥£¥ó¥É¥¦¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E92: Buffer %ld not found"
-msgstr "E92: ¥Ð¥Ã¥Õ¥¡ %ld ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E441: There is no preview window"
-msgstr "E441: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E242: Can't split a window while closing another"
-msgstr "E242: Ê̤Υ¦¥£¥ó¥É¥¦¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: º¸¾å¤È±¦²¼¤òƱ»þ¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: ¾¤Î¥¦¥£¥ó¥É¥¦¤¬Ê¬³ä¤µ¤ì¤Æ¤¤¤ë»þ¤Ë¤Ï½ç²ó¤Ç¤¤Þ¤»¤ó"
-
-msgid "E444: Cannot close last window"
-msgstr "E444: ºÇ¸å¤Î¥¦¥£¥ó¥É¥¦¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E813: Cannot close autocmd or popup window"
-msgstr "E813: autocmd¥¦¥£¥ó¥É¥¦¤Þ¤¿¤Ï¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
-
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr "E814: autocmd¥¦¥£¥ó¥É¥¦¤·¤«»Ä¤é¤Ê¤¤¤¿¤á¡¢¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
-
-msgid "E445: Other window contains changes"
-msgstr "E445: ¾¤Î¥¦¥£¥ó¥É¥¦¤Ë¤ÏÊѹ¹¤¬¤¢¤ê¤Þ¤¹"
-
-#, c-format
msgid "E370: Could not load library %s"
msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
@@ -6569,11 +3821,11 @@
"E299: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ï Safe ¥â¥¸¥å¡¼¥ë¤ò»ÈÍѤ·¤Ê¤¤Perl¥¹¥¯¥ê¥×¥È¤Ï¶Ø¤¸¤é¤ì"
"¤Æ¤¤¤Þ¤¹"
-msgid "Edit with &multiple Vims"
-msgstr "Ê£¿ô¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&M)"
+msgid "Edit with Vim using &tabpages"
+msgstr "Vim¤Ç¥¿¥Ö¥Ú¡¼¥¸¤ò»È¤Ã¤ÆÊÔ½¸¤¹¤ë (&T)"
msgid "Edit with single &Vim"
-msgstr "1¤Ä¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&V)"
+msgstr "ñ°ì¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&V)"
msgid "Diff with Vim"
msgstr "Vim¤Çº¹Ê¬¤òɽ¼¨¤¹¤ë"
@@ -6596,117 +3848,38 @@
msgid "gvimext.dll error"
msgstr "gvimext.dll ¥¨¥é¡¼"
-msgid "Path length too long!"
-msgstr "¥Ñ¥¹¤¬Ä¹²á¤®¤Þ¤¹!"
-
-msgid "--No lines in buffer--"
-msgstr "--¥Ð¥Ã¥Õ¥¡¤Ë¹Ô¤¬¤¢¤ê¤Þ¤»¤ó--"
-
-msgid "E470: Command aborted"
-msgstr "E470: ¥³¥Þ¥ó¥É¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿"
-
-msgid "E471: Argument required"
-msgstr "E471: °ú¿ô¤¬É¬ÍפǤ¹"
+msgid "Interrupted"
+msgstr "³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
msgid "E10: \\ should be followed by /, ? or &"
msgstr "E10: \\ ¤Î¸å¤Ï / ¤« ? ¤« & ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
-msgstr "E11: ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Ï̵¸ú¤Ç¤¹; <CR>¤Ç¼Â¹Ô, CTRL-C¤Ç¤ä¤á¤ë"
+msgstr "E11: ¥³¥Þ¥ó¥É¥é¥¤¥ó¥¦¥£¥ó¥É¥¦¤Ç¤Ï̵¸ú¤Ç¤¹; <CR>¤Ç¼Â¹Ô, CTRL-C¤Ç¤ä¤á¤ë"
msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
msgstr ""
"E12: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ä¥¿¥°¸¡º÷¤Ç¤Ïexrc/vimrc¤Î¥³¥Þ¥ó¥É¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-msgid "E171: Missing :endif"
-msgstr "E171: :endif ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E600: Missing :endtry"
-msgstr "E600: :endtry ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E170: Missing :endwhile"
-msgstr "E170: :endwhile ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E170: Missing :endfor"
-msgstr "E170: :endfor ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E588: :endwhile without :while"
-msgstr "E588: :while ¤Î¤Ê¤¤ :endwhile ¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor ¤Î¤Ê¤¤ :for ¤¬¤¢¤ê¤Þ¤¹"
-
msgid "E13: File exists (add ! to override)"
msgstr "E13: ¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹ (! ¤òÄɲäǾå½ñ)"
-msgid "E472: Command failed"
-msgstr "E472: ¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
-
#, c-format
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: ̤ÃΤΥե©¥ó¥È¥»¥Ã¥È: %s"
-
-#, c-format
-msgid "E235: Unknown font: %s"
-msgstr "E235: ̤ÃΤΥե©¥ó¥È: %s"
-
-#, c-format
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: ¥Õ¥©¥ó¥È \"%s\" ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E473: Internal error"
-msgstr "E473: ÆâÉô¥¨¥é¡¼¤Ç¤¹"
-
-#, c-format
-msgid "E685: Internal error: %s"
-msgstr "E685: ÆâÉô¥¨¥é¡¼¤Ç¤¹: %s"
-
-msgid "Interrupted"
-msgstr "³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
-
-msgid "E474: Invalid argument"
-msgstr "E474: ̵¸ú¤Ê°ú¿ô¤Ç¤¹"
-
-#, c-format
-msgid "E475: Invalid argument: %s"
-msgstr "E475: ̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E983: Duplicate argument: %s"
-msgstr "E983: °ú¿ô¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹: %s"
-
-#, c-format
-msgid "E475: Invalid value for argument %s"
-msgstr "E475: °ú¿ô %s ¤ËÂФ·¤ÆÌµ¸ú¤ÊÃͤǤ¹"
-
-#, c-format
-msgid "E475: Invalid value for argument %s: %s"
-msgstr "E475: °ú¿ô %s ¤ËÂФ·¤ÆÌµ¸ú¤ÊÃͤǤ¹: %s"
-
-#, c-format
-msgid "E15: Invalid expression: %s"
-msgstr "E15: ̵¸ú¤Ê¼°¤Ç¤¹: %s"
+msgid "E15: Invalid expression: \"%s\""
+msgstr "E15: ̵¸ú¤Ê¼°¤Ç¤¹: \"%s\""
msgid "E16: Invalid range"
msgstr "E16: ̵¸ú¤ÊÈϰϤǤ¹"
-msgid "E476: Invalid command"
-msgstr "E476: ̵¸ú¤Ê¥³¥Þ¥ó¥É¤Ç¤¹"
-
#, c-format
msgid "E17: \"%s\" is a directory"
msgstr "E17: \"%s\" ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
-#, c-format
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: \"%s\"() ¤Î¥é¥¤¥Ö¥é¥ê¸Æ½Ð¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E18: Unexpected characters in :let"
+msgstr "E18: ͽ´ü¤»¤Ìʸ»ú¤¬ :let ¤Ë¤¢¤ê¤Þ¤·¤¿"
-msgid "E667: Fsync failed"
-msgstr "E667: fsync ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-
-#, c-format
-msgid "E448: Could not load library function %s"
-msgstr "E448: ¥é¥¤¥Ö¥é¥ê¤Î´Ø¿ô %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "E18: Unexpected characters in assignment"
+msgstr "E18: ͽ´ü¤»¤Ìʸ»ú¤¬ÂåÆþ¤Ë¤¢¤ê¤Þ¤·¤¿"
msgid "E19: Mark has invalid line number"
msgstr "E19: ¥Þ¡¼¥¯¤Ë̵¸ú¤Ê¹ÔÈֹ椬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤·¤¿"
@@ -6726,9 +3899,6 @@
msgid "E24: No such abbreviation"
msgstr "E24: ¤½¤Î¤è¤¦¤Êû½ÌÆþÎϤϤ¢¤ê¤Þ¤»¤ó"
-msgid "E477: No ! allowed"
-msgstr "E477: ! ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
msgid "E25: GUI cannot be used: Not enabled at compile time"
msgstr "E25: GUI¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
@@ -6738,9 +3908,6 @@
msgid "E27: Farsi support has been removed\n"
msgstr "E27: ¥Ú¥ë¥·¥¢¸ì¥µ¥Ý¡¼¥È¤Ïºï½ü¤µ¤ì¤Þ¤·¤¿\n"
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: ¥¢¥é¥Ó¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
-
#, c-format
msgid "E28: No such highlight group name: %s"
msgstr "E28: ¤½¤Î¤è¤¦¤Ê̾¤Î¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
@@ -6754,13 +3921,6 @@
msgid "E31: No such mapping"
msgstr "E31: ¤½¤Î¤è¤¦¤Ê¥Þ¥Ã¥Ô¥ó¥°¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E479: No match"
-msgstr "E479: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E480: No match: %s"
-msgstr "E480: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-
msgid "E32: No file name"
msgstr "E32: ¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -6773,30 +3933,14 @@
msgid "E35: No previous regular expression"
msgstr "E35: Àµµ¬É½¸½¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "E481: No range allowed"
-msgstr "E481: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-
msgid "E36: Not enough room"
msgstr "E36: ¥¦¥£¥ó¥É¥¦¤Ë½½Ê¬¤Ê¹â¤µ¤â¤·¤¯¤ÏÉý¤¬¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: %s ¤È¤¤¤¦Ì¾Á°¤ÎÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E37: No write since last change"
+msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "E482: Can't create file %s"
-msgstr "E482: ¥Õ¥¡¥¤¥ë %s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-
-msgid "E483: Can't get temp file name"
-msgstr "E483: °ì»þ¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-
-#, c-format
-msgid "E484: Can't open file %s"
-msgstr "E484: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-
-#, c-format
-msgid "E485: Can't read file %s"
-msgstr "E485: ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+msgid "E37: No write since last change (add ! to override)"
+msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤òÄɲäÇÊѹ¹¤òÇË´þ)"
msgid "E38: Null argument"
msgstr "E38: °ú¿ô¤¬¶õ¤Ç¤¹"
@@ -6808,31 +3952,12 @@
msgid "E40: Can't open errorfile %s"
msgstr "E40: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó"
-msgid "E233: cannot open display"
-msgstr "E233: ¥Ç¥£¥¹¥×¥ì¥¤¤ò³«¤±¤Þ¤»¤ó"
-
msgid "E41: Out of memory!"
msgstr "E41: ¥á¥â¥ê¤¬¿Ô¤²Ì¤Æ¤Þ¤·¤¿!"
-msgid "Pattern not found"
-msgstr "¥Ñ¥¿¡¼¥ó¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-
-#, c-format
-msgid "E486: Pattern not found: %s"
-msgstr "E486: ¥Ñ¥¿¡¼¥ó¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-
-msgid "E487: Argument must be positive"
-msgstr "E487: °ú¿ô¤ÏÀµ¤ÎÃͤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
-
msgid "E42: No Errors"
msgstr "E42: ¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E776: No location list"
-msgstr "E776: ¥í¥±¡¼¥·¥ç¥ó¥ê¥¹¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
-
msgid "E43: Damaged match string"
msgstr "E43: ³ºÅöʸ»úÎó¤¬ÇË»¤·¤Æ¤¤¤Þ¤¹"
@@ -6842,91 +3967,90 @@
msgid "E45: 'readonly' option is set (add ! to override)"
msgstr "E45: 'readonly' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹ (! ¤òÄɲäǾå½ñ¤)"
-#, c-format
-msgid "E121: Undefined variable: %s"
-msgstr "E121: ̤ÄêµÁ¤ÎÊÑ¿ô¤Ç¤¹: %s"
-
-#, c-format
-msgid "E734: Wrong variable type for %s="
-msgstr "E734: °Û¤Ê¤Ã¤¿·¿¤ÎÊÑ¿ô¤Ç¤¹ %s="
-
-#, c-format
-msgid "E461: Illegal variable name: %s"
-msgstr "E461: ÉÔÀµ¤ÊÊÑ¿ô̾¤Ç¤¹: %s"
-
-msgid "E995: Cannot modify existing variable"
-msgstr "E995: ´û¸¤ÎÊÑ¿ô¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+msgid "E46: Cannot change read-only variable"
+msgstr "E46: ÆÉ¼èÀìÍÑÊÑ¿ô¤Ë¤ÏÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
#, c-format
msgid "E46: Cannot change read-only variable \"%s\""
msgstr "E46: ÆÉ¼èÀìÍÑÊÑ¿ô \"%s\" ¤Ë¤ÏÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr "E794: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤ÏÊÑ¿ô \"%s\" ¤ËÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-
-msgid "E928: String required"
-msgstr "E928: ʸ»úÎó¤¬É¬ÍפǤ¹"
-
-msgid "E713: Cannot use empty key for Dictionary"
-msgstr "E713: ¼½ñ·¿¤Ë¶õ¤Î¥¡¼¤ò»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-
-msgid "E715: Dictionary required"
-msgstr "E715: ¼½ñ·¿¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E684: list index out of range: %ld"
-msgstr "E684: ¥ê¥¹¥È¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬Èϰϳ°¤Ç¤¹: %ld"
-
-#, c-format
-msgid "E979: Blob index out of range: %ld"
-msgstr "E979: Blob¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬Èϰϳ°¤Ç¤¹: %ld"
-
-msgid "E978: Invalid operation for Blob"
-msgstr "E978: Blob·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
-
-#, c-format
-msgid "E118: Too many arguments for function: %s"
-msgstr "E118: ´Ø¿ô¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹: %s"
-
-#, c-format
-msgid "E716: Key not present in Dictionary: %s"
-msgstr "E716: ¼½ñ·¿¤Ë¥¡¼¤¬Â¸ºß¤·¤Þ¤»¤ó: %s"
-
-msgid "E714: List required"
-msgstr "E714: ¥ê¥¹¥È·¿¤¬É¬ÍפǤ¹"
-
-msgid "E897: List or Blob required"
-msgstr "E897: ¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤¬É¬ÍפǤ¹"
-
-#, c-format
-msgid "E712: Argument of %s must be a List or Dictionary"
-msgstr "E712: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤Ï¼½ñ·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
-#, c-format
-msgid "E896: Argument of %s must be a List, Dictionary or Blob"
-msgstr "E896: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¡¢¼½ñ·¿¤Þ¤¿¤ÏBlob·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-
msgid "E47: Error while reading errorfile"
-msgstr "E47: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
+msgstr "E47: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
msgid "E48: Not allowed in sandbox"
msgstr "E48: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-msgid "E523: Not allowed here"
-msgstr "E523: ¤³¤³¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: ¥¹¥¯¥ê¡¼¥ó¥â¡¼¥É¤ÎÀßÄê¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
-
msgid "E49: Invalid scroll size"
msgstr "E49: ̵¸ú¤Ê¥¹¥¯¥í¡¼¥ëÎ̤Ǥ¹"
-msgid "E91: 'shell' option is empty"
-msgstr "E91: 'shell' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
+msgid "E50: Too many \\z("
+msgstr "E50: \\z( ¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: sign ¤Î¥Ç¡¼¥¿¤òÆÉ¹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿"
+#, c-format
+msgid "E51: Too many %s("
+msgstr "E51: %s( ¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "E52: Unmatched \\z("
+msgstr "E52: \\z( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E53: Unmatched %s%%("
+msgstr "E53: %s%%( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E54: Unmatched %s("
+msgstr "E54: %s( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E55: Unmatched %s)"
+msgstr "E55: %s) ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E59: invalid character after %s@"
+msgstr "E59: %s@ ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+
+#, c-format
+msgid "E60: Too many complex %s{...}s"
+msgstr "E60: Ê£»¨¤Ê %s{...} ¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E61: Nested %s*"
+msgstr "E61:%s* ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E62: Nested %s%c"
+msgstr "E62:%s%c ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E63: invalid use of \\_"
+msgstr "E63: \\_ ¤Î̵¸ú¤Ê»ÈÍÑÊýË¡¤Ç¤¹"
+
+#, c-format
+msgid "E64: %s%c follows nothing"
+msgstr "E64:%s%c ¤Î¸å¤Ë¤Ê¤Ë¤â¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E65: Illegal back reference"
+msgstr "E65: ÉÔÀµ¤Ê¸åÊý»²¾È¤Ç¤¹"
+
+msgid "E66: \\z( not allowed here"
+msgstr "E66: \\z( ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E67: \\z1 - \\z9 not allowed here"
+msgstr "E67: \\z1 - \\z9 ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E68: Invalid character after \\z"
+msgstr "E68: \\z ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+
+#, c-format
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: %s%%[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] ¤¬¶õ¤Ç¤¹"
+
+#, c-format
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: %s%% ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
msgid "E72: Close error on swap file"
msgstr "E72: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î¥¯¥í¡¼¥º»þ¥¨¥é¡¼¤Ç¤¹"
@@ -6946,82 +4070,4061 @@
msgid "E77: Too many file names"
msgstr "E77: ¥Õ¥¡¥¤¥ë̾¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E488: Trailing characters"
-msgstr "E488: ;ʬ¤Êʸ»ú¤¬¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
-
msgid "E78: Unknown mark"
msgstr "E78: ̤ÃΤΥޡ¼¥¯"
msgid "E79: Cannot expand wildcards"
msgstr "E79: ¥ï¥¤¥ë¥É¥«¡¼¥É¤òŸ³«¤Ç¤¤Þ¤»¤ó"
+msgid "E80: Error while writing"
+msgstr "E80: ½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼"
+
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿"
+
+msgid "E82: Cannot allocate any buffer, exiting..."
+msgstr "E82: ¥Ð¥Ã¥Õ¥¡¤ò1¤Ä¤âºîÀ®¤Ç¤¤Ê¤¤¤Î¤Ç¡¢½ªÎ»¤·¤Þ¤¹..."
+
+msgid "E83: Cannot allocate buffer, using other one..."
+msgstr "E83: ¥Ð¥Ã¥Õ¥¡¤òºîÀ®¤Ç¤¤Ê¤¤¤Î¤Ç¡¢Â¾¤Î¤ò»ÈÍѤ·¤Þ¤¹..."
+
+msgid "E84: No modified buffer found"
+msgstr "E84: Êѹ¹¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E85: There is no listed buffer"
+msgstr "E85: ¥ê¥¹¥Èɽ¼¨¤µ¤ì¤ë¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E86: Buffer %ld does not exist"
+msgstr "E86: ¥Ð¥Ã¥Õ¥¡ %ld ¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E87: Cannot go beyond last buffer"
+msgstr "E87: ºÇ¸å¤Î¥Ð¥Ã¥Õ¥¡¤ò±Û¤¨¤Æ°Üư¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E88: Cannot go before first buffer"
+msgstr "E88: ºÇ½é¤Î¥Ð¥Ã¥Õ¥¡¤è¤êÁ°¤Ø¤Ï°Üư¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E89: No write since last change for buffer %d (add ! to override)"
+msgstr "E89: ¥Ð¥Ã¥Õ¥¡ %d ¤ÎÊѹ¹¤ÏÊݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤ÇÊѹ¹¤òÇË´þ)"
+
+msgid "E90: Cannot unload last buffer"
+msgstr "E90: ºÇ¸å¤Î¥Ð¥Ã¥Õ¥¡¤Ï²òÊü¤Ç¤¤Þ¤»¤ó"
+
+msgid "E91: 'shell' option is empty"
+msgstr "E91: 'shell' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
+
+#, c-format
+msgid "E92: Buffer %d not found"
+msgstr "E92: ¥Ð¥Ã¥Õ¥¡ %d ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E93: More than one match for %s"
+msgstr "E93: %s ¤ËÊ£¿ô¤Î³ºÅö¤¬¤¢¤ê¤Þ¤·¤¿"
+
+#, c-format
+msgid "E94: No matching buffer for %s"
+msgstr "E94: %s ¤Ë³ºÅö¤¹¤ë¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E95: Buffer with this name already exists"
+msgstr "E95: ¤³¤Î̾Á°¤Î¥Ð¥Ã¥Õ¥¡¤Ï´û¤Ë¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E96: Cannot diff more than %d buffers"
+msgstr "E96: %d °Ê¾å¤Î¥Ð¥Ã¥Õ¥¡¤Ïdiff¤Ç¤¤Þ¤»¤ó"
+
+msgid "E97: Cannot create diffs"
+msgstr "E97: º¹Ê¬¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+
+msgid "E98: Cannot read diff output"
+msgstr "E98: diff¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó"
+
+msgid "E99: Current buffer is not in diff mode"
+msgstr "E99: ¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤Ïº¹Ê¬¥â¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E100: No other buffer in diff mode"
+msgstr "E100: º¹Ê¬¥â¡¼¥É¤Ç¤¢¤ë¾¤Î¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E101: More than two buffers in diff mode, don't know which one to use"
+msgstr ""
+"E101: º¹Ê¬¥â¡¼¥É¤Î¥Ð¥Ã¥Õ¥¡¤¬2¸Ä°Ê¾å¤¢¤ë¤Î¤Ç¡¢¤É¤ì¤ò»È¤¦¤«ÆÃÄê¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E102: Can't find buffer \"%s\""
+msgstr "E102: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E103: Buffer \"%s\" is not in diff mode"
+msgstr "E103: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤Ïº¹Ê¬¥â¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E104: Escape not allowed in digraph"
+msgstr "E104: ¹ç»ú¤ËEscape¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E105: Using :loadkeymap not in a sourced file"
+msgstr "E105: :source ¤Ç¼è¹þ¤à¥Õ¥¡¥¤¥ë°Ê³°¤Ç¤Ï :loadkeymap ¤ò»È¤¨¤Þ¤»¤ó"
+
+#, c-format
+msgid "E107: Missing parentheses: %s"
+msgstr "E107: ¥«¥Ã¥³ '(' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E108: No such variable: \"%s\""
+msgstr "E108: ¤½¤ÎÊÑ¿ô¤Ï¤¢¤ê¤Þ¤»¤ó: \"%s\""
+
+msgid "E109: Missing ':' after '?'"
+msgstr "E109: '?' ¤Î¸å¤Ë ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E110: Missing ')'"
+msgstr "E110: ')' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E111: Missing ']'"
+msgstr "E111: ']' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E112: Option name missing: %s"
+msgstr "E112: ¥ª¥×¥·¥ç¥ó̾¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E113: Unknown option: %s"
+msgstr "E113: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
+
+#, c-format
+msgid "E114: Missing double quote: %s"
+msgstr "E114: ¥À¥Ö¥ë¥¯¥©¡¼¥È¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E115: Missing single quote: %s"
+msgstr "E115: ¥·¥ó¥°¥ë¥¯¥©¡¼¥È¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E116: Invalid arguments for function %s"
+msgstr "E116: ´Ø¿ô¤Î̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E117: Unknown function: %s"
+msgstr "E117: ̤ÃΤδؿô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E118: Too many arguments for function: %s"
+msgstr "E118: ´Ø¿ô¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹: %s"
+
+#, c-format
+msgid "E119: Not enough arguments for function: %s"
+msgstr "E119: ´Ø¿ô¤Î°ú¿ô¤¬Â¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E120: Using <SID> not in a script context: %s"
+msgstr "E120: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %s"
+msgstr "E121: ̤ÄêµÁ¤ÎÊÑ¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %c:%s"
+msgstr "E121: ̤ÄêµÁ¤ÎÊÑ¿ô¤Ç¤¹: %c:%s"
+
+#, c-format
+msgid "E122: Function %s already exists, add ! to replace it"
+msgstr "E122: ´Ø¿ô %s ¤ÏÄêµÁºÑ¤Ç¤¹¡¢ºÆÄêµÁ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤"
+
+#, c-format
+msgid "E123: Undefined function: %s"
+msgstr "E123: ̤ÄêµÁ¤Î´Ø¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E124: Missing '(': %s"
+msgstr "E124: '(' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E125: Illegal argument: %s"
+msgstr "E125: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+
+msgid "E126: Missing :endfunction"
+msgstr "E126: :endfunction ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E127: Cannot redefine function %s: It is in use"
+msgstr "E127: ´Ø¿ô %s ¤òºÆÄêµÁ¤Ç¤¤Þ¤»¤ó: »ÈÍÑÃæ¤Ç¤¹"
+
+#, c-format
+msgid "E128: Function name must start with a capital or \"s:\": %s"
+msgstr "E128: ´Ø¿ô̾¤ÏÂçʸ»ú¤« \"s:\" ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+msgid "E129: Function name required"
+msgstr "E129: ´Ø¿ô̾¤¬Í׵ᤵ¤ì¤Þ¤¹"
+
+#, c-format
+msgid "E131: Cannot delete function %s: It is in use"
+msgstr "E131: ´Ø¿ô %s ¤òºï½ü¤Ç¤¤Þ¤»¤ó: »ÈÍÑÃæ¤Ç¤¹"
+
+msgid "E132: Function call depth is higher than 'maxfuncdepth'"
+msgstr "E132: ´Ø¿ô¸Æ½Ð¤·¤ÎÆþ¤ì»Ò¿ô¤¬ 'maxfuncdepth' ¤òͤ¨¤Þ¤·¤¿"
+
+msgid "E133: :return not inside a function"
+msgstr "E133: ´Ø¿ô³°¤Ë :return ¤¬¤¢¤ê¤Þ¤·¤¿"
+
+msgid "E134: Cannot move a range of lines into itself"
+msgstr "E134: ¹Ô¤ÎÈϰϤò¤½¤ì¼«¿È¤Ë¤Ï°Üư¤Ç¤¤Þ¤»¤ó"
+
+msgid "E135: *Filter* Autocommands must not change current buffer"
+msgstr "E135: *Filter* ¼«Æ°¥³¥Þ¥ó¥É¤Ï¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤òÊѹ¹¤·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó"
+
+msgid "E136: viminfo: Too many errors, skipping rest of file"
+msgstr "E136: viminfo: ¥¨¥é¡¼¤¬Â¿²á¤®¤ë¤Î¤Ç¡¢°Ê¹ß¤Ï¥¹¥¥Ã¥×¤·¤Þ¤¹"
+
+#, c-format
+msgid "E137: Viminfo file is not writable: %s"
+msgstr "E137: viminfo¥Õ¥¡¥¤¥ë¤¬½ñ¹þ¤ß¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E138: Can't write viminfo file %s!"
+msgstr "E138: viminfo¥Õ¥¡¥¤¥ë %s ¤òÊݸ¤Ç¤¤Þ¤»¤ó!"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: Ʊ¤¸Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬Â¾¤Î¥Ð¥Ã¥Õ¥¡¤ÇÆÉ¹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E140: Use ! to write partial buffer"
+msgstr "E140: ¥Ð¥Ã¥Õ¥¡¤òÉôʬŪ¤ËÊݸ¤¹¤ë¤Ë¤Ï ! ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤"
+
+#, c-format
+msgid "E141: No file name for buffer %ld"
+msgstr "E141: ¥Ð¥Ã¥Õ¥¡ %ld ¤Ë¤Ï̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E142: File not written: Writing is disabled by 'write' option"
+msgstr "E142: ¥Õ¥¡¥¤¥ë¤ÏÊݸ¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿: 'write' ¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê̵¸ú¤Ç¤¹"
+
+#, c-format
+msgid "E143: Autocommands unexpectedly deleted new buffer %s"
+msgstr "E143: ¼«Æ°¥³¥Þ¥ó¥É¤¬Í½´ü¤»¤º¿·¤·¤¤¥Ð¥Ã¥Õ¥¡ %s ¤òºï½ü¤·¤Þ¤·¤¿"
+
+msgid "E144: non-numeric argument to :z"
+msgstr "E144: ¿ô¤Ç¤Ï¤Ê¤¤°ú¿ô¤¬ :z ¤ËÅϤµ¤ì¤Þ¤·¤¿"
+
+msgid "E145: Shell commands and some functionality not allowed in rvim"
+msgstr "E145: rvim¤Ç¤Ï¥·¥§¥ë¥³¥Þ¥ó¥É¤È°ìÉô¤Îµ¡Ç½¤ò»È¤¨¤Þ¤»¤ó"
+
+msgid "E146: Regular expressions can't be delimited by letters"
+msgstr "E146: Àµµ¬É½¸½¤Ïʸ»ú¤Ç¶èÀڤ뤳¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E147: Cannot do :global recursive with a range"
+msgstr "E147: :global ¤òÈϰÏÉÕ¤¤ÇºÆµ¢Åª¤Ë¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E148: Regular expression missing from :global"
+msgstr "E148: :global ¤ËÀµµ¬É½¸½¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E149: Sorry, no help for %s"
+msgstr "E149: »Äǰ¤Ç¤¹¤¬ %s ¤Ë¤Ï¥Ø¥ë¥×¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E150: Not a directory: %s"
+msgstr "E150: ¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E151: No match: %s"
+msgstr "E151: ¥Þ¥Ã¥Á¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E152: Cannot open %s for writing"
+msgstr "E152: ½ñ¹þ¤ßÍÑ¤Ë %s ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E153: Unable to open %s for reading"
+msgstr "E153: ÆÉ¹þ¤ßÍÑ¤Ë %s ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E154: Duplicate tag \"%s\" in file %s/%s"
+msgstr "E154: ¥¿¥° \"%s\" ¤¬¥Õ¥¡¥¤¥ë %s/%s ¤Ë½ÅÊ£¤·¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E155: Unknown sign: %s"
+msgstr "E155: ̤ÃΤÎsign¤Ç¤¹: %s"
+
+msgid "E156: Missing sign name"
+msgstr "E156: sign̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E157: Invalid sign ID: %d"
+msgstr "E157: ̵¸ú¤Êsign¼±Ê̻ҤǤ¹: %d"
+
+#, c-format
+msgid "E158: Invalid buffer name: %s"
+msgstr "E158: ̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡Ì¾¤Ç¤¹: %s"
+
+msgid "E159: Missing sign number"
+msgstr "E159: sign¤ÎÈֹ椬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E160: Unknown sign command: %s"
+msgstr "E160: ̤ÃΤÎsign¥³¥Þ¥ó¥É¤Ç¤¹: %s"
+
+#, c-format
+msgid "E161: Breakpoint not found: %s"
+msgstr "E161: ¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E162: No write since last change for buffer \"%s\""
+msgstr "E162: ¥Ð¥Ã¥Õ¥¡ \"%s\" ¤ÎÊѹ¹¤ÏÊݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E163: There is only one file to edit"
+msgstr "E163: ÊÔ½¸¤¹¤ë¥Õ¥¡¥¤¥ë¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E164: Cannot go before first file"
+msgstr "E164: ºÇ½é¤Î¥Õ¥¡¥¤¥ë¤è¤êÁ°¤Ë¤Ï¹Ô¤±¤Þ¤»¤ó"
+
+msgid "E165: Cannot go beyond last file"
+msgstr "E165: ºÇ¸å¤Î¥Õ¥¡¥¤¥ë¤ò±Û¤¨¤Æ¸å¤Ë¤Ï¹Ô¤±¤Þ¤»¤ó"
+
+msgid "E166: Can't open linked file for writing"
+msgstr "E166: ¥ê¥ó¥¯¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë½ñ¹þ¤á¤Þ¤»¤ó"
+
+msgid "E167: :scriptencoding used outside of a sourced file"
+msgstr "E167: :scriptencoding ¤¬¼è¹þ¤ß¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
+
+msgid "E168: :finish used outside of a sourced file"
+msgstr "E168: :finish ¤¬¼è¹þ¤ß¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
+
+msgid "E169: Command too recursive"
+msgstr "E169: ¥³¥Þ¥ó¥É¤¬ºÆµ¢Åª²á¤®¤Þ¤¹"
+
+msgid "E170: Missing :endwhile"
+msgstr "E170: :endwhile ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E170: Missing :endfor"
+msgstr "E170: :endfor ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E171: Missing :endif"
+msgstr "E171: :endif ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E172: Missing marker"
+msgstr "E172: ¥Þ¡¼¥«¡¼¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E173: %d more file to edit"
+msgstr "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E173: %d more files to edit"
+msgstr "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E174: Command already exists: add ! to replace it: %s"
+msgstr "E174: ¥³¥Þ¥ó¥É¤¬´û¤Ë¤¢¤ê¤Þ¤¹: ºÆÄêµÁ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤: %s"
+
+msgid "E175: No attribute specified"
+msgstr "E175: °À¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E176: Invalid number of arguments"
+msgstr "E176: °ú¿ô¤Î¿ô¤¬Ìµ¸ú¤Ç¤¹"
+
+msgid "E177: Count cannot be specified twice"
+msgstr "E177: ¥«¥¦¥ó¥È¤ò2½Å»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E178: Invalid default value for count"
+msgstr "E178: ¥«¥¦¥ó¥È¤Î¾ÊάÃͤ¬Ìµ¸ú¤Ç¤¹"
+
+#, c-format
+msgid "E179: argument required for %s"
+msgstr "E179: %s ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E180: Invalid complete value: %s"
+msgstr "E180: ̵¸ú¤ÊÊä´°»ØÄê¤Ç¤¹: %s"
+
+#, c-format
+msgid "E180: Invalid address type value: %s"
+msgstr "E180: ̵¸ú¤Ê¥¢¥É¥ì¥¹¥¿¥¤¥×ÃͤǤ¹: %s"
+
+#, c-format
+msgid "E181: Invalid attribute: %s"
+msgstr "E181: ̵¸ú¤Ê°À¤Ç¤¹: %s"
+
+msgid "E182: Invalid command name"
+msgstr "E182: ̵¸ú¤Ê¥³¥Þ¥ó¥É̾¤Ç¤¹"
+
+msgid "E183: User defined commands must start with an uppercase letter"
+msgstr "E183: ¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Ï±ÑÂçʸ»ú¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E184: No such user-defined command: %s"
+msgstr "E184: ¤½¤Î¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E185: Cannot find color scheme '%s'"
+msgstr "E185: ¥«¥é¡¼¥¹¥¡¼¥à '%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E186: No previous directory"
+msgstr "E186: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E187: Directory unknown"
+msgstr "E187: ̤ÃΤΥǥ£¥ì¥¯¥È¥ê"
+
+msgid "E188: Obtaining window position not implemented for this platform"
+msgstr ""
+"E188: ¤³¤Î¥×¥é¥Ã¥È¥Û¡¼¥à¤Ë¤Ï¥¦¥£¥ó¥É¥¦°ÌÃ֤μèÆÀµ¡Ç½¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E189: \"%s\" exists (add ! to override)"
+msgstr "E189: \"%s\" ¤¬Â¸ºß¤·¤Þ¤¹ (¾å½ñ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤)"
+
+#, c-format
+msgid "E190: Cannot open \"%s\" for writing"
+msgstr "E190: \"%s\" ¤ò½ñ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
+
+msgid "E191: Argument must be a letter or forward/backward quote"
+msgstr "E191: °ú¿ô¤Ï1ʸ»ú¤Î±Ñ»ú¤«°úÍÑÉä (' ¤« `) ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+
+msgid "E192: Recursive use of :normal too deep"
+msgstr "E192: :normal ¤ÎºÆµ¢ÍøÍѤ¬¿¼¤¯¤Ê¤ê²á¤®¤Þ¤·¤¿"
+
+#, c-format
+msgid "E193: %s not inside a function"
+msgstr "E193: ´Ø¿ô¤Î³°¤Ë %s ¤¬¤¢¤ê¤Þ¤·¤¿"
+
+msgid "E194: No alternate file name to substitute for '#'"
+msgstr "E194: '#'¤òÃÖ¤´¹¤¨¤ëÉû¥Õ¥¡¥¤¥ë¤Î̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E195: Cannot open viminfo file for reading"
+msgstr "E195: viminfo¥Õ¥¡¥¤¥ë¤òÆÉ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
+
+msgid "E196: No digraphs in this version"
+msgstr "E196: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¹ç»ú¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E197: Cannot set language to \"%s\""
+msgstr "E197: ¸À¸ì¤ò \"%s\" ¤ËÀßÄê¤Ç¤¤Þ¤»¤ó"
+
+msgid "E199: Active window or buffer deleted"
+msgstr "E199: ¥¢¥¯¥Æ¥£¥Ö¤Ê¥¦¥£¥ó¥É¥¦¤«¥Ð¥Ã¥Õ¥¡¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E200: *ReadPre autocommands made the file unreadable"
+msgstr "E200: *ReadPre ¼«Æ°¥³¥Þ¥ó¥É ¤¬¥Õ¥¡¥¤¥ë¤òÆÉ¹þÉԲĤˤ·¤Þ¤·¤¿"
+
+msgid "E201: *ReadPre autocommands must not change current buffer"
+msgstr "E201: *ReadPre ¼«Æ°¥³¥Þ¥ó¥É ¤Ï¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
+
+msgid "E202: Conversion made file unreadable!"
+msgstr "E202: ÊÑ´¹¤¬¥Õ¥¡¥¤¥ë¤òÆÉ¹þÉԲĤˤ·¤Þ¤·¤¿"
+
+msgid "E203: Autocommands deleted or unloaded buffer to be written"
+msgstr "E203: Êݸ¤¹¤ë¥Ð¥Ã¥Õ¥¡¤ò¼«Æ°¥³¥Þ¥ó¥É¤¬ºï½ü¤«²òÊü¤·¤Þ¤·¤¿"
+
+msgid "E204: Autocommand changed number of lines in unexpected way"
+msgstr "E204: ¼«Æ°¥³¥Þ¥ó¥É¤¬Í½´ü¤»¤ÌÊýË¡¤Ç¹Ô¿ô¤òÊѹ¹¤·¤Þ¤·¤¿"
+
+msgid "E205: Patchmode: can't save original file"
+msgstr "E205: patchmode: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤òÊݸ¤Ç¤¤Þ¤»¤ó"
+
+msgid "E206: patchmode: can't touch empty original file"
+msgstr "E206: patchmode: ¶õ¤Î¸¶ËÜ¥Õ¥¡¥¤¥ë¤òtouch¤Ç¤¤Þ¤»¤ó"
+
+msgid "E207: Can't delete backup file"
+msgstr "E207: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¾Ã¤»¤Þ¤»¤ó"
+
+#, c-format
+msgid "E208: Error writing to \"%s\""
+msgstr "E208: \"%s\" ¤ò½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E209: Error closing \"%s\""
+msgstr "E209: \"%s\" ¤òÊĤ¸¤ë»þ¤Ë¥¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E210: Error reading \"%s\""
+msgstr "E210: \"%s\" ¤òÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E211: File \"%s\" no longer available"
+msgstr "E211: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï´û¤Ë¸ºß¤·¤Þ¤»¤ó"
+
+msgid "E212: Can't open file for writing"
+msgstr "E212: ½ñ¹þ¤ßÍѤ˥ե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
+
+msgid "E213: Cannot convert (add ! to write without conversion)"
+msgstr "E213: ÊÑ´¹¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäÇÊÑ´¹¤»¤º¤ËÊݸ)"
+
+msgid "E214: Can't find temp file for writing"
+msgstr "E214: ÊݸÍѰì»þ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E215: Illegal character after *: %s"
+msgstr "E215: * ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿: %s"
+
+#, c-format
+msgid "E216: No such event: %s"
+msgstr "E216: ¤½¤Î¤è¤¦¤Ê¥¤¥Ù¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E216: No such group or event: %s"
+msgstr "E216: ¤½¤Î¤è¤¦¤Ê¥°¥ë¡¼¥×¤â¤·¤¯¤Ï¥¤¥Ù¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E217: Can't execute autocommands for ALL events"
+msgstr "E217: Á´¤Æ¤Î¥¤¥Ù¥ó¥È¤ËÂФ·¤Æ¤Î¼«Æ°¥³¥Þ¥ó¥É¤Ï¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
+
+msgid "E218: autocommand nesting too deep"
+msgstr "E218: ¼«Æ°¥³¥Þ¥ó¥É¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E219: Missing {."
+msgstr "E219: { ¤¬¤¢¤ê¤Þ¤»¤ó¡£"
+
+msgid "E220: Missing }."
+msgstr "E220: } ¤¬¤¢¤ê¤Þ¤»¤ó¡£"
+
+msgid "E221: Marker cannot start with lower case letter"
+msgstr "E221: ¥Þ¡¼¥«¡¼¤Ï±Ñ¾®Ê¸»ú¤Ç»Ï¤Þ¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó"
+
+msgid "E222: Add to internal buffer that was already read from"
+msgstr "E222: ´û¤ËÆÉ¤ó¤ÀÆâÉô¥Ð¥Ã¥Õ¥¡¤ËÄɲ䷤Ƥ¤¤Þ¤¹"
+
+msgid "E223: recursive mapping"
+msgstr "E223: ºÆµ¢Åª¥Þ¥Ã¥Ô¥ó¥°"
+
+#, c-format
+msgid "E224: global abbreviation already exists for %s"
+msgstr "E224: %s ¤È¤¤¤¦¥°¥í¡¼¥Ð¥ëû½ÌÆþÎϤϴû¤Ë¸ºß¤·¤Þ¤¹"
+
+#, c-format
+msgid "E225: global mapping already exists for %s"
+msgstr "E225: %s ¤È¤¤¤¦¥°¥í¡¼¥Ð¥ë¥Þ¥Ã¥Ô¥ó¥°¤Ï´û¤Ë¸ºß¤·¤Þ¤¹"
+
+#, c-format
+msgid "E226: abbreviation already exists for %s"
+msgstr "E226: %s ¤È¤¤¤¦Ã»½ÌÆþÎϤϴû¤Ë¸ºß¤·¤Þ¤¹"
+
+#, c-format
+msgid "E227: mapping already exists for %s"
+msgstr "E227: %s ¤È¤¤¤¦¥Þ¥Ã¥Ô¥ó¥°¤Ï´û¤Ë¸ºß¤·¤Þ¤¹"
+
+msgid "E228: makemap: Illegal mode"
+msgstr "E228: makemap: ÉÔÀµ¤Ê¥â¡¼¥É"
+
+msgid "E229: Cannot start the GUI"
+msgstr "E229: GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' ¤¬Ìµ¸ú¤Ç¤¹"
+
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: ¥á¥Ã¥»¡¼¥¸¤È¥³¡¼¥ë¥Ð¥Ã¥¯¤Î¤¢¤ë BalloonEval ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+
+msgid "E233: cannot open display"
+msgstr "E233: ¥Ç¥£¥¹¥×¥ì¥¤¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: ̤ÃΤΥե©¥ó¥È¥»¥Ã¥È: %s"
+
+#, c-format
+msgid "E235: Unknown font: %s"
+msgstr "E235: ̤ÃΤΥե©¥ó¥È: %s"
+
+#, c-format
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: ¥Õ¥©¥ó¥È \"%s\" ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E237: Printer selection failed"
+msgstr "E237: ¥×¥ê¥ó¥¿¤ÎÁªÂò¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E238: Print error: %s"
+msgstr "E238: °õºþ¥¨¥é¡¼: %s"
+
+#, c-format
+msgid "E239: Invalid sign text: %s"
+msgstr "E239: ̵¸ú¤Êsign¤Î¥Æ¥¥¹¥È¤Ç¤¹: %s"
+
+msgid "E240: No connection to the X server"
+msgstr "E240: X ¥µ¡¼¥Ð¡¼¤Ø¤ÎÀܳ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E241: Unable to send to %s"
+msgstr "E241: %s ¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E242: Can't split a window while closing another"
+msgstr "E242: Ê̤Υ¦¥£¥ó¥É¥¦¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: °ú¿ô¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó: \"-%s\"; OLEÈǤò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#, c-format
+msgid "E244: Illegal %s name \"%s\" in font name \"%s\""
+msgstr "E244: ÉÔÀµ¤Ê%s̾ \"%s\" ¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
+
+#, c-format
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: '%c' ¤ÏÉÔÀµ¤Êʸ»ú¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
+
+msgid "E246: FileChangedShell autocommand deleted buffer"
+msgstr "E246: FileChangedShell ¼«Æ°¥³¥Þ¥ó¥É¤¬¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: \"%s\" ¤È¤¤¤¦Ì¾Á°¤ÎÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: ÌÜŪ¤Î¥×¥í¥°¥é¥à¤Ø¤Î¥³¥Þ¥ó¥ÉÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E249: window layout changed unexpectedly"
+msgstr "E249: ͽ´ü¤»¤º¥¦¥£¥ó¥É¥¦¤ÎÇÛÃÖ¤¬ÊѤï¤ê¤Þ¤·¤¿"
+
+#, c-format
+msgid "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: °Ê²¼¤Îʸ»ú¥»¥Ã¥È¤Î¥Õ¥©¥ó¥È¤¬¤¢¤ê¤Þ¤»¤ó %s:"
+
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: VIM ¼ÂÂΤÎÅÐÏ¿¥×¥í¥Ñ¥Æ¥£¤¬ÉÔÀµ¤Ç¤¹¡£¾Ãµî¤·¤Þ¤·¤¿!"
+
+#, c-format
+msgid "E252: Fontset name: %s - Font '%s' is not fixed-width"
+msgstr "E252: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s - ¥Õ¥©¥ó¥È '%s' ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E253: Fontset name: %s"
+msgstr "E253: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s"
+
+#, c-format
+msgid "E254: Cannot allocate color %s"
+msgstr "E254: %s ¤Î¿§¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
+
+msgid "E255: Couldn't read in sign data"
+msgstr "E255: sign ¤Î¥Ç¡¼¥¿¤òÆÉ¹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E257: cstag: tag not found"
+msgstr "E257: cstag: ¥¿¥°¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E258: Unable to send to client"
+msgstr "E258: ¥¯¥é¥¤¥¢¥ó¥È¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: cscope¥¯¥¨¥ê¡¼ %s of %s ¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E260: Missing name after ->"
+msgstr "E260: -> ¤Î¸å¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E261: cscope connection %s not found"
+msgstr "E261: cscopeÀܳ %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#, c-format
+msgid "E262: error reading cscope connection %d"
+msgstr "E262: cscope¤ÎÀܳ %d ¤òÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
+
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Python¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»"
+"¤ó¤Ç¤·¤¿¡£"
+
+msgid "E264: Python: Error initialising I/O objects"
+msgstr "E264: Python: I/O¥ª¥Ö¥¸¥§¥¯¥È¤Î½é´ü²½¥¨¥é¡¼"
+
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ ¤Ïʸ»úÎó¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Ruby¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó"
+"¤Ç¤·¤¿¡£"
+
+msgid "E267: unexpected return"
+msgstr "E267: ͽ´ü¤»¤Ì return ¤Ç¤¹"
+
+msgid "E268: unexpected next"
+msgstr "E268: ͽ´ü¤»¤Ì next ¤Ç¤¹"
+
+msgid "E269: unexpected break"
+msgstr "E269: ͽ´ü¤»¤Ì break ¤Ç¤¹"
+
+msgid "E270: unexpected redo"
+msgstr "E270: ͽ´ü¤»¤Ì redo ¤Ç¤¹"
+
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: rescue ¤Î³°¤Î retry ¤Ç¤¹"
+
+msgid "E272: unhandled exception"
+msgstr "E272: ¼è¤ê°·¤ï¤ì¤Ê¤«¤Ã¤¿Îã³°¤¬¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: ̤ÃΤÎlongjmp¾õÂÖ: %d"
+
+msgid "E274: No white space allowed before parenthesis"
+msgstr "E274: ´Ý³ç¸Ì¤ÎÁ°¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E275: Cannot add text property to unloaded buffer"
+msgstr "E275: ²òÊü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ë¤Ï¥Æ¥¥¹¥È¥×¥í¥Ñ¥Æ¥£¤òÄɲäǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E276: Cannot use function as a method: %s"
+msgstr "E276: ´Ø¿ô¤ò¥á¥½¥Ã¥É¤È¤·¤Æ»ÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E277: Unable to read a server reply"
+msgstr "E277: ¥µ¡¼¥Ð¡¼¤Î±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E279: Sorry, ++shell is not supported on this system"
+msgstr "E279: ¤´¤á¤ó¤Ê¤µ¤¤¡¢++shell ¤Ï¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: TCL Ã×̿Ū¥¨¥é¡¼: reflist ±øÀ÷!? vim-dev@vim.org ¤ËÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤"
+
+#, c-format
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: \"%s\" ¤Ë³ºÅö¤¹¤ë¥Þ¡¼¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E284: Cannot set IC values"
+msgstr "E284: IC¤ÎÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+
+msgid "E285: Failed to create input context"
+msgstr "E285: ¥¤¥ó¥×¥Ã¥È¥³¥ó¥Æ¥¥¹¥È¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E286: Failed to open input method"
+msgstr "E286: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: ·Ù¹ð: IM¤ÎÇ˲õ¥³¡¼¥ë¥Ð¥Ã¥¯¤òÀßÄê¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E288: input method doesn't support any style"
+msgstr "E288: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï¤É¤ó¤Ê¥¹¥¿¥¤¥ë¤â¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
+
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï my preedit type ¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
+
+msgid "E290: List or number required"
+msgstr "E290: ¥ê¥¹¥È¤«¿ôÃͤ¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E292: Invalid count for del_bytes(): %ld"
+msgstr "E292: del_bytes() ¤È¤·¤ÆÌµ¸ú¤Ê¿ôÃͤǤ¹: %ld"
+
+msgid "E293: block was not locked"
+msgstr "E293: ¥Ö¥í¥Ã¥¯¤¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E294: Seek error in swap file read"
+msgstr "E294: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ëÆÉ¹þ¤ß»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
+
+msgid "E295: Read error in swap file"
+msgstr "E295: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+
+msgid "E296: Seek error in swap file write"
+msgstr "E296: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë½ñ¹þ¤ß»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
+
+msgid "E297: Write error in swap file"
+msgstr "E297: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 1 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 2 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹ (symlink¤Ë¤è¤ë¹¶·â?)"
+
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: ¤ª¤Ã¤È¡¢¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¼º¤ï¤ì¤Þ¤·¤¿!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr "E303: \"%s\" ¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò³«¤±¤Ê¤¤¤Î¤Ç¥ê¥«¥Ð¥ê¤ÏÉÔ²Äǽ¤Ç¤¹"
+
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿??"
+
+#, c-format
+msgid "E305: No swap file found for %s"
+msgstr "E305: %s ¤Ë¤Ï¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E306: Cannot open %s"
+msgstr "E306: %s ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s ¤ÏVim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
+
+msgid "E308: Warning: Original file may have been changed"
+msgstr "E308: ·Ù¹ð: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: %s ¤«¤é¥Ö¥í¥Ã¥¯ 1 ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+
+#, c-format
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: ¥Ö¥í¥Ã¥¯ 1 ¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹(%s ¤¬.swp¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤?)"
+
+msgid "E311: Recovery Interrupted"
+msgstr "E311: ¥ê¥«¥Ð¥ê¤¬³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
+
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: ¥ê¥«¥Ð¥ê¤ÎºÇÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿; ???¤Ç»Ï¤Þ¤ë¹Ô¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¤Î¤Ç°Ý»ý¤Ç¤¤Þ¤»¤ó"
+
+msgid "E314: Preserve failed"
+msgstr "E314: °Ý»ý¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: ̵¸ú¤Êlnum¤Ç¤¹: %ld"
+
+#, c-format
+msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
+msgstr "E316: ml_get: ¹Ô %ld ¤ò¥Ð¥Ã¥Õ¥¡ %d %s Æâ¤Ë¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+msgid "E317: pointer block id wrong"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 2"
+
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 3"
+
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 4"
+
+msgid "E318: Updated too many blocks?"
+msgstr "E318: ¹¹¿·¤µ¤ì¤¿¥Ö¥í¥Ã¥¯¤¬Â¿²á¤®¤ë¤«¤â?"
+
+msgid "E319: Sorry, the command is not available in this version"
+msgstr "E319: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¤³¤Î¥³¥Þ¥ó¥É¤ÏÍøÍѤǤ¤Þ¤»¤ó¡¢¤´¤á¤ó¤Ê¤µ¤¤"
+
+#, c-format
+msgid "E320: Cannot find line %ld"
+msgstr "E320: ¹Ô %ld ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E321: Could not reload \"%s\""
+msgstr "E321: \"%s\" ¤Ï¥ê¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#, c-format
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: ¹ÔÈֹ椬Èϰϳ°¤Ç¤¹: %ld ͤ¨¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: ¥Ö¥í¥Ã¥¯ %ld ¤Î¹Ô¥«¥¦¥ó¥È¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: PostScript½ÐÎÏÍѤΥե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
+
+msgid "E325: ATTENTION"
+msgstr "E325: Ãí°Õ"
+
+msgid "E326: Too many swap files found"
+msgstr "E326: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Â¿¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿"
+
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr "E327: ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤Î¥Ñ¥¹¤ÎÉôʬ¤¬¥µ¥Ö¥á¥Ë¥å¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: ¥á¥Ë¥å¡¼¤Ï¾¤Î¥â¡¼¥É¤Ë¤À¤±¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E329: No menu \"%s\""
+msgstr "E329: \"%s\" ¤È¤¤¤¦¥á¥Ë¥å¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤ë¤Ù¤¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr "E331: ¥á¥Ë¥å¡¼¥Ð¡¼¤Ë¤ÏľÀÜ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÄɲäǤ¤Þ¤»¤ó"
+
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: ¶èÀÚ¤ê¤Ï¥á¥Ë¥å¡¼¥Ñ¥¹¤Î°ìÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E334: Menu not found: %s"
+msgstr "E334: ¥á¥Ë¥å¡¼¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: %s ¤Ë¤Ï¥á¥Ë¥å¡¼¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: ¥á¥Ë¥å¡¼¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó - ¥á¥Ë¥å¡¼Ì¾¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: ¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤Ç¤Ï¥Õ¥¡¥¤¥ë¥Ö¥é¥¦¥¶¤ò»È¤¨¤Þ¤»¤ó¡¢¤´¤á¤ó¤Ê¤µ¤¤"
+
+msgid "E339: Pattern too long"
+msgstr "E339: ¥Ñ¥¿¡¼¥ó¤¬Ä¹²á¤®¤Þ¤¹"
+
+msgid "E341: Internal error: lalloc(0, )"
+msgstr "E341: ÆâÉô¥¨¥é¡¼: lalloc(0, )"
+
+#, c-format
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: ¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó! (%lu ¥Ð¥¤¥È¤ò³äÅöÍ×µá)"
+
+#, c-format
+msgid ""
+"E343: Invalid path: '**[number]' must be at the end of the path or be "
+"followed by '%s'."
+msgstr ""
+"E343: ̵¸ú¤Ê¥Ñ¥¹¤Ç¤¹: '**[¿ôÃÍ]' ¤Ïpath¤ÎºÇ¸å¤« '%s' ¤¬Â³¤¤¤Æ¤Ê¤¤¤È¤¤¤±¤Þ¤»"
+"¤ó¡£"
+
+#, c-format
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: ¥Ñ¥¹¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E348: No string under cursor"
+msgstr "E348: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤÏʸ»úÎ󤬤¢¤ê¤Þ¤»¤ó"
+
+msgid "E349: No identifier under cursor"
+msgstr "E349: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤϼ±Ê̻Ҥ¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E350: Cannot create fold with current 'foldmethod'"
+msgstr "E350: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+
+msgid "E351: Cannot delete fold with current 'foldmethod'"
+msgstr "E351: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤òºï½ü¤Ç¤¤Þ¤»¤ó"
+
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤ò¾Ãµî¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E353: Nothing in register %s"
+msgstr "E353: ¥ì¥¸¥¹¥¿ %s ¤Ë¤Ï²¿¤â¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾: '%s'"
+
+#, c-format
+msgid "E355: Unknown option: %s"
+msgstr "E355: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: get_varp ¥¨¥é¡¼"
+
+#, c-format
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': %s ¤ËÂбþ¤¹¤ëʸ»ú¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': ¥»¥ß¥³¥í¥ó¤Î¸å¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
+
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: ¥¹¥¯¥ê¡¼¥ó¥â¡¼¥É¤ÎÀßÄê¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: -f ¥ª¥×¥·¥ç¥ó¤Ç¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
+
+msgid "E362: Using a boolean value as a Float"
+msgstr "E362: ¥Ö¡¼¥ëÃͤòÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: ¥Ñ¥¿¡¼¥ó¤¬ 'maxmempattern' °Ê¾å¤Î¥á¥â¥ê¤ò»ÈÍѤ·¤Þ¤¹"
+
+#, c-format
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: \"%s()\" ¤Î¥é¥¤¥Ö¥é¥ê¸Æ½Ð¤·¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: PostScript¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E366: Not allowed to enter a popup window"
+msgstr "E366: ¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤ËÆþ¤ë¤³¤È¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E367: No such group: \"%s\""
+msgstr "E367: ¤½¤Î¥°¥ë¡¼¥×¤Ï¤¢¤ê¤Þ¤»¤ó: \"%s\""
+
+#, c-format
+msgid "E368: got SIG%s in libcall()"
+msgstr "E368: libcall() ¤Ç¡¡SIG%s ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
+
+#, c-format
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: ̵¸ú¤Ê¹àÌܤǤ¹: %s%%[]"
+
+#, c-format
+msgid "E370: Could not load library %s: %s"
+msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+
+msgid "E371: Command not found"
+msgstr "E371: ¥³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë %%%c ¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ëͽ´ü¤»¤Ì %%%c ¤¬¤¢¤ê¤Þ¤·¤¿"
+
+msgid "E374: Missing ] in format string"
+msgstr "E374: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ï %%%c ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ÎÁ°ÃÖ¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' ¤Ë¥Ñ¥¿¡¼¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E379: Missing or empty directory name"
+msgstr "E379: ¥Ç¥£¥ì¥¯¥È¥ê̾¤¬Ìµ¤¤¤«¶õ¤Ç¤¹"
+
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: quickfix ¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
+
+msgid "E381: At top of quickfix stack"
+msgstr "E381: quickfix ¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
+
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: 'buftype' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç½ñ¹þ¤á¤Þ¤»¤ó"
+
+#, c-format
+msgid "E383: Invalid search string: %s"
+msgstr "E383: ̵¸ú¤Ê¸¡º÷ʸ»úÎó¤Ç¤¹: %s"
+
+#, c-format
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: ¾å¤Þ¤Ç¸¡º÷¤·¤Þ¤·¤¿¤¬³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: ²¼¤Þ¤Ç¸¡º÷¤·¤Þ¤·¤¿¤¬³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: ';' ¤Î¤¢¤È¤Ë¤Ï '?' ¤« '/' ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë"
+
+msgid "E387: Match is on current line"
+msgstr "E387: ¸½ºß¹Ô¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E388: Couldn't find definition"
+msgstr "E388: ÄêµÁ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+msgid "E389: Couldn't find pattern"
+msgstr "E389: ¥Ñ¥¿¡¼¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E390: Illegal argument: %s"
+msgstr "E390: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: ¤³¤³¤Ç¤Ï¥°¥ë¡¼¥×¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: %s ¤ÎÈϰÏÍ×ÁǤ¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E395: contains argument not accepted here"
+msgstr "E395: ¤³¤Î¾ì½ê¤Ç¤Ï°ú¿ôcontains¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E397: Filename required"
+msgstr "E397: ¥Õ¥¡¥¤¥ë̾¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E398: Missing '=': %s"
+msgstr "E398: '=' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: °ú¿ô¤¬Â¤ê¤Þ¤»¤ó: ¹½Ê¸ÈÏ°Ï %s"
+
+msgid "E400: No cluster specified"
+msgstr "E400: ¥¯¥é¥¹¥¿¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: ¥Ñ¥¿¡¼¥ó¶èÀڤ꤬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: ¥Ñ¥¿¡¼¥ó¤Î¤¢¤È¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹: %s"
+
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr "E403: ¹½Ê¸Æ±´ü: Ϣ³¹Ô¥Ñ¥¿¡¼¥ó¤¬2ÅÙ»ØÄꤵ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: Åù¹æ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E406: Empty argument: %s"
+msgstr "E406: ¶õ¤Î°ú¿ô: %s"
+
+#, c-format
+msgid "E407: %s not allowed here"
+msgstr "E407: %s ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s ¤ÏÆâÍÆ¥ê¥¹¥È¤ÎÀèÆ¬¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤"
+
+#, c-format
+msgid "E409: Unknown group name: %s"
+msgstr "E409: ̤ÃΤΥ°¥ë¡¼¥×̾: %s"
+
+#, c-format
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: ̵¸ú¤Ê :syntax ¤Î¥µ¥Ö¥³¥Þ¥ó¥É¤Ç¤¹: %s"
+
+#, c-format
+msgid "E411: highlight group not found: %s"
+msgstr "E411: ¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: °ú¿ô¤¬½¼Ê¬¤Ç¤Ï¤Ê¤¤: \":highlight link %s\""
+
+#, c-format
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹: \":highlight link %s\""
+
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: ¥°¥ë¡¼¥×¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç¥Ï¥¤¥é¥¤¥È¥ê¥ó¥¯¤Ï̵»ë¤µ¤ì¤Þ¤¹"
+
+#, c-format
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: ͽ´ü¤»¤ÌÅù¹æ¤Ç¤¹: %s"
+
+#, c-format
+msgid "E416: missing equal sign: %s"
+msgstr "E416: Åù¹æ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E417: missing argument: %s"
+msgstr "E417: °ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E418: Illegal value: %s"
+msgstr "E418: ÉÔÀµ¤ÊÃͤǤ¹: %s"
+
+msgid "E419: FG color unknown"
+msgstr "E419: ̤ÃΤÎÁ°·Ê¿§¤Ç¤¹"
+
+msgid "E420: BG color unknown"
+msgstr "E420: ̤ÃΤÎÇØ·Ê¿§¤Ç¤¹"
+
+#, c-format
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: ¥«¥é¡¼Ì¾¤äÈÖ¹æ¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E422: terminal code too long: %s"
+msgstr "E422: ½ªÃ¼¥³¡¼¥É¤¬Ä¹²á¤®¤Þ¤¹: %s"
+
+#, c-format
+msgid "E423: Illegal argument: %s"
+msgstr "E423: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: ¿¤¯¤Î°Û¤Ê¤ë¥Ï¥¤¥é¥¤¥È°À¤¬»È¤ï¤ì²á¤®¤Æ¤¤¤Þ¤¹"
+
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: ºÇ½é¤Î³ºÅö¥¿¥°¤ò±Û¤¨¤ÆÌá¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E426: tag not found: %s"
+msgstr "E426: ¥¿¥°¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+msgid "E427: There is only one matching tag"
+msgstr "E427: ³ºÅö¥¿¥°¤¬1¤Ä¤À¤±¤·¤«¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: ºÇ¸å¤Î³ºÅö¥¿¥°¤ò±Û¤¨¤Æ¿Ê¤à¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: ¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: ¥¿¥°¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤¬ %s ¤ËÀÚ¤ê¼Î¤Æ¤é¤ì¤Þ¤·¤¿\n"
+
+#, c-format
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: ¥¿¥°¥Õ¥¡¥¤¥ë \"%s\" ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¥½¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
+
+msgid "E433: No tags file"
+msgstr "E433: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E434: Can't find tag pattern"
+msgstr "E434: ¥¿¥°¥Ñ¥¿¡¼¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: ¥¿¥°¤ò¸«¤Ä¤±¤é¤ì¤Ê¤¤¤Î¤Çñ¤Ë¿ä¬¤·¤Þ¤¹!"
+
+#, c-format
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: termcap¤Ë \"%s\" ¤Î¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: üËö¤Ë \"cm\" µ¡Ç½¤¬É¬ÍפǤ¹"
+
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: ¹ÔÈֹ椬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E439: undo list corrupt"
+msgstr "E439: ¥¢¥ó¥É¥¥¥ê¥¹¥È¤¬²õ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E440: undo line missing"
+msgstr "E440: ¥¢¥ó¥É¥¥¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E441: There is no preview window"
+msgstr "E441: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: º¸¾å¤È±¦²¼¤òƱ»þ¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: ¾¤Î¥¦¥£¥ó¥É¥¦¤¬Ê¬³ä¤µ¤ì¤Æ¤¤¤ë»þ¤Ë¤Ï½ç²ó¤Ç¤¤Þ¤»¤ó"
+
+msgid "E444: Cannot close last window"
+msgstr "E444: ºÇ¸å¤Î¥¦¥£¥ó¥É¥¦¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E445: Other window contains changes"
+msgstr "E445: ¾¤Î¥¦¥£¥ó¥É¥¦¤Ë¤ÏÊѹ¹¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E446: No file name under cursor"
+msgstr "E446: ¥«¡¼¥½¥ë¤Î²¼¤Ë¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E448: Could not load library function %s"
+msgstr "E448: ¥é¥¤¥Ö¥é¥ê¤Î´Ø¿ô %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E449: Invalid expression received"
+msgstr "E449: ̵¸ú¤Ê¼°¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
+
+msgid "E450: buffer number, text or a list required"
+msgstr "E450: ¥Ð¥Ã¥Õ¥¡Èֹ桢¥Æ¥¥¹¥È¤Þ¤¿¤Ï¥ê¥¹¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E451: Expected }: %s"
+msgstr "E451: } ¤¬É¬ÍפǤ¹: %s"
+
+msgid "E452: Double ; in list of variables"
+msgstr "E452: ¥ê¥¹¥È·¿¤ÎÃͤË2¤Ä°Ê¾å¤Î ; ¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E453: UL color unknown"
+msgstr "E453: ̤ÃΤβ¼Àþ¿§¤Ç¤¹"
+
+msgid "E454: function list was modified"
+msgstr "E454: ´Ø¿ô¥ê¥¹¥È¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: PostScript½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s.ps\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+
+msgid "E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr "E458: ¿§»ØÄ꤬Àµ¤·¤¯¤Ê¤¤¤Î¤Ç¥«¥é¡¼¥Þ¥Ã¥×¤Î¥¨¥ó¥È¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
+
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
+
+msgid "E460: entries missing in mapset() dict argument"
+msgstr "E460: mapset() ¤Î¼½ñ°ú¿ô¤ÎÍ×ÁǤ¬Â¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E461: Illegal variable name: %s"
+msgstr "E461: ÉÔÀµ¤ÊÊÑ¿ô̾¤Ç¤¹: %s"
+
+#, c-format
+msgid "E462: Could not prepare for reloading \"%s\""
+msgstr "E462: \"%s\" ¤ò¥ê¥í¡¼¥É¤¹¤ë½àÈ÷¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: Îΰ褬Êݸ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢Êѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E464: Ambiguous use of user-defined command"
+msgstr "E464: ¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Î¤¢¤¤¤Þ¤¤¤Ê»ÈÍѤǤ¹"
+
+msgid "E465: :winsize requires two number arguments"
+msgstr "E465: :winsize ¤Ë¤Ï2¤Ä¤Î¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
+
+msgid "E466: :winpos requires two number arguments"
+msgstr "E466: :winpos ¤Ë¤Ï2¤Ä¤Î¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
+
+msgid "E467: Custom completion requires a function argument"
+msgstr "E467: ¥«¥¹¥¿¥àÊä´°¤Ë¤Ï°ú¿ô¤È¤·¤Æ´Ø¿ô¤¬É¬ÍפǤ¹"
+
+msgid "E468: Completion argument only allowed for custom completion"
+msgstr "E468: Êä´°°ú¿ô¤Ï¥«¥¹¥¿¥àÊä´°¤Ç¤·¤«»ÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: ̵¸ú¤Ê cscopequickfix ¥Õ¥é¥° %c ¤Î %c ¤Ç¤¹"
+
+msgid "E470: Command aborted"
+msgstr "E470: ¥³¥Þ¥ó¥É¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿"
+
+msgid "E471: Argument required"
+msgstr "E471: °ú¿ô¤¬É¬ÍפǤ¹"
+
+msgid "E472: Command failed"
+msgstr "E472: ¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E473: Internal error in regexp"
+msgstr "E473: Àµµ¬É½¸½¤ÎÆâÉô¥¨¥é¡¼¤Ç¤¹"
+
+msgid "E474: Invalid argument"
+msgstr "E474: ̵¸ú¤Ê°ú¿ô¤Ç¤¹"
+
+#, c-format
+msgid "E475: Invalid argument: %s"
+msgstr "E475: ̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
+
+#, c-format
+msgid "E475: Invalid value for argument %s"
+msgstr "E475: °ú¿ô %s ¤ËÂФ·¤ÆÌµ¸ú¤ÊÃͤǤ¹"
+
+#, c-format
+msgid "E475: Invalid value for argument %s: %s"
+msgstr "E475: °ú¿ô %s ¤ËÂФ·¤ÆÌµ¸ú¤ÊÃͤǤ¹: %s"
+
+msgid "E476: Invalid command"
+msgstr "E476: ̵¸ú¤Ê¥³¥Þ¥ó¥É¤Ç¤¹"
+
+#, c-format
+msgid "E476: Invalid command: %s"
+msgstr "E476: ̵¸ú¤Ê¥³¥Þ¥ó¥É¤Ç¤¹: %s"
+
+msgid "E477: No ! allowed"
+msgstr "E477: ! ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E478: Don't panic!"
+msgstr "E478: ¹²¤Æ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤"
+
+msgid "E479: No match"
+msgstr "E479: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E480: No match: %s"
+msgstr "E480: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E481: No range allowed"
+msgstr "E481: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E482: Can't create file %s"
+msgstr "E482: ¥Õ¥¡¥¤¥ë %s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+
+msgid "E483: Can't get temp file name"
+msgstr "E483: °ì»þ¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E484: Can't open file %s"
+msgstr "E484: ¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E485: Can't read file %s"
+msgstr "E485: ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+
+msgid "E486: Pattern not found"
+msgstr "E486: ¥Ñ¥¿¡¼¥ó¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#, c-format
+msgid "E486: Pattern not found: %s"
+msgstr "E486: ¥Ñ¥¿¡¼¥ó¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+
+msgid "E487: Argument must be positive"
+msgstr "E487: °ú¿ô¤ÏÀµ¤ÎÃͤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E488: Trailing characters"
+msgstr "E488: ;ʬ¤Êʸ»ú¤¬¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E488: Trailing characters: %s"
+msgstr "E488: ;ʬ¤Êʸ»ú¤¬¸å¤í¤Ë¤¢¤ê¤Þ¤¹: %s"
+
+msgid "E489: no call stack to substitute for \"<stack>\""
+msgstr "E489: \"<stack>\"¤òÃÖ¤´¹¤¨¤ë¥³¡¼¥ë¥¹¥¿¥Ã¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E490: No fold found"
+msgstr "E490: ÀÞ¾ö¤ß¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E491: json decode error at '%s'"
+msgstr "E491: '%s' ¤Çjson¥Ç¥³¡¼¥É¥¨¥é¡¼"
+
+msgid "E492: Not an editor command"
+msgstr "E492: ¥¨¥Ç¥£¥¿¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E493: Backwards range given"
+msgstr "E493: µÕ¤µ¤Þ¤ÎÈϰϤ¬»ØÄꤵ¤ì¤Þ¤·¤¿"
+
+msgid "E494: Use w or w>>"
+msgstr "E494: w ¤â¤·¤¯¤Ï w>> ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E495: no autocommand file name to substitute for \"<afile>\""
+msgstr "E495: \"<afile>\"¤òÃÖ¤´¹¤¨¤ë¼«Æ°¥³¥Þ¥ó¥É¤Î¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
+msgstr "E496: \"<abuf>\"¤òÃÖ¤´¹¤¨¤ë¼«Æ°¥³¥Þ¥ó¥É¥Ð¥Ã¥Õ¥¡Èֹ椬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E497: no autocommand match name to substitute for \"<amatch>\""
+msgstr "E497: \"<amatch>\"¤òÃÖ¤´¹¤¨¤ë¼«Æ°¥³¥Þ¥ó¥É¤Î³ºÅö̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E498: no :source file name to substitute for \"<sfile>\""
+msgstr "E498: \"<sfile>\"¤òÃÖ¤´¹¤¨¤ë :source Âоݥե¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, no-c-format
+msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
+msgstr ""
+"E499: '%' ¤ä '#' ¤¬ÌµÌ¾¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç \":p:h\" ¤òȼ¤ï¤Ê¤¤»È¤¤Êý¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E500: Evaluates to an empty string"
+msgstr "E500: ¶õʸ»úÎó¤È¤·¤ÆÉ¾²Á¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E501: At end-of-file"
+msgstr "E501: ¥Õ¥¡¥¤¥ë¤Î½ªÎ»°ÌÃÖ"
+
+msgid "is not a file or writable device"
+msgstr "¤Ï¥Õ¥¡¥¤¥ë¤Ç¤â½ñ¹þ¤ß²Äǽ¥Ç¥Ð¥¤¥¹¤Ç¤â¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E503: \"%s\" is not a file or writable device"
+msgstr "E503: \"%s\" ¤Ï¥Õ¥¡¥¤¥ë¤Ç¤â½ñ¹þ¤ß²Äǽ¥Ç¥Ð¥¤¥¹¤Ç¤â¤¢¤ê¤Þ¤»¤ó"
+
+msgid "is read-only (cannot override: \"W\" in 'cpoptions')"
+msgstr "¤ÏÆÉ¹þÀìÍѤǤ¹ (\"W\" ¤¬ 'cpoptions' ¤Ë¤¢¤ë¤¿¤á¡¢¶¯À©½ñ¹þ¤Ç¤¤Þ¤»¤ó)"
+
+msgid "is read-only (add ! to override)"
+msgstr "¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
+
+#, c-format
+msgid "E505: \"%s\" is read-only (add ! to override)"
+msgstr "E505: \"%s\" ¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
+
+msgid "E506: Can't write to backup file (add ! to override)"
+msgstr "E506: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÊݸ¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
+
+msgid "E507: Close error for backup file (add ! to write anyway)"
+msgstr ""
+"E507: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÊĤ¸¤ëºÝ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿ (! ¤òÄɲäǹ½¤ï¤º"
+"½ñ¹þ)"
+
+msgid "E508: Can't read file for backup (add ! to write anyway)"
+msgstr "E508: ¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Õ¥¡¥¤¥ë¤òÆÉ¹þ¤á¤Þ¤»¤ó (! ¤òÄɲäǹ½¤ï¤º½ñ¹þ)"
+
+msgid "E509: Cannot create backup file (add ! to override)"
+msgstr "E509: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºî¤ì¤Þ¤»¤ó (! ¤òÄɲäǶ¯À©½ñ¹þ)"
+
+msgid "E510: Can't make backup file (add ! to write anyway)"
+msgstr "E510: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºî¤ì¤Þ¤»¤ó (! ¤òÄɲäǹ½¤ï¤º½ñ¹þ)"
+
+msgid "E511: netbeans already connected"
+msgstr "E511: NetBeans¤Ï´û¤ËÀܳ¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E512: Close failed"
+msgstr "E512: ÊĤ¸¤ë¤³¤È¤Ë¼ºÇÔ"
+
+msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
+msgstr "E513: ½ñ¹þ¤ß¥¨¥é¡¼¡¢ÊÑ´¹¼ºÇÔ (¾å½ñ¤¹¤ë¤Ë¤Ï 'fenc' ¤ò¶õ¤Ë¤·¤Æ¤¯¤À¤µ¤¤)"
+
+#, c-format
+msgid ""
+"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
+"override)"
+msgstr ""
+"E513: ½ñ¹þ¤ß¥¨¥é¡¼¡¢ÊÑ´¹¼ºÇÔ¡¢¹Ô¿ô %ld (¾å½ñ¤¹¤ë¤Ë¤Ï 'fenc' ¤ò¶õ¤Ë¤·¤Æ¤¯¤À¤µ"
+"¤¤)"
+
+msgid "E514: write error (file system full?)"
+msgstr "E514: ½ñ¹þ¤ß¥¨¥é¡¼ (¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬ËþÇÕ?)"
+
+msgid "E515: No buffers were unloaded"
+msgstr "E515: ²òÊü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E516: No buffers were deleted"
+msgstr "E516: ºï½ü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E517: No buffers were wiped out"
+msgstr "E517: ÇË´þ¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E518: Unknown option"
+msgstr "E518: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
+
+msgid "E519: Option not supported"
+msgstr "E519: ¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E521: Number required after ="
+msgstr "E521: = ¤Î¸å¤Ë¤Ï¿ô»ú¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: ¿ô»ú¤¬É¬ÍפǤ¹: &%s = '%s'"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: termcap Æâ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E523: Not allowed here"
+msgstr "E523: ¤³¤³¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E524: Missing colon"
+msgstr "E524: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E525: Zero length string"
+msgstr "E525: ʸ»úÎó¤ÎŤµ¤¬¥¼¥í¤Ç¤¹"
+
+#, c-format
+msgid "E526: Missing number after <%s>"
+msgstr "E526: <%s> ¤Î¸å¤Ë¿ô»ú¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E527: Missing comma"
+msgstr "E527: ¥³¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E528: Must specify a ' value"
+msgstr "E528: ' ¤ÎÃͤò»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: 'term' ¤Ë¤Ï¶õʸ»úÎó¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
+
+msgid "E530: Cannot change 'term' in the GUI"
+msgstr "E530: GUI¤Ç¤Ï 'term' ¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: GUI¤ò¥¹¥¿¡¼¥È¤¹¤ë¤Ë¤Ï \":gui\" ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E532: highlighting color name too long in defineAnnoType"
+msgstr "E532: defineAnnoTypeÆâ¤Î¥Ï¥¤¥é¥¤¥È¿§Ì¾¤¬Ä¹¤¹¤®¤Þ¤¹"
+
+msgid "E533: can't select wide font"
+msgstr "E533: ¥ï¥¤¥É¥Õ¥©¥ó¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: ̵¸ú¤Ê¥ï¥¤¥É¥Õ¥©¥ó¥È¤Ç¤¹"
+
+#, c-format
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: <%c> ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E536: comma required"
+msgstr "E536: ¥³¥ó¥Þ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' ¤Ï¶õ¤Ç¤¢¤ë¤« %s ¤ò´Þ¤àɬÍפ¬¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E539: Illegal character <%s>"
+msgstr "E539: ÉÔÀµ¤Êʸ»ú¤Ç¤¹ <%s>"
+
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: ¼°¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E542: unbalanced groups"
+msgstr "E542: ¥°¥ë¡¼¥×¤¬Äà¹ç¤¤¤Þ¤»¤ó"
+
+msgid "E543: Not a valid codepage"
+msgstr "E543: ̵¸ú¤Ê¥³¡¼¥É¥Ú¡¼¥¸¤Ç¤¹"
+
+msgid "E544: Keymap file not found"
+msgstr "E544: ¥¡¼¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E545: Missing colon"
+msgstr "E545: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E546: Illegal mode"
+msgstr "E546: ÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹"
+
+msgid "E547: Illegal mouseshape"
+msgstr "E547: ÉÔÀµ¤Ê 'mouseshape' ¤Ç¤¹"
+
+msgid "E548: digit expected"
+msgstr "E548: ¿ôÃͤ¬É¬ÍפǤ¹"
+
+msgid "E549: Illegal percentage"
+msgstr "E549: ÉÔÀµ¤Ê¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸¤Ç¤¹"
+
+msgid "E550: Missing colon"
+msgstr "E550: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E551: Illegal component"
+msgstr "E551: ÉÔÀµ¤Ê¹½Ê¸Í×ÁǤǤ¹"
+
+msgid "E552: digit expected"
+msgstr "E552: ¿ôÃͤ¬É¬ÍפǤ¹"
+
+msgid "E553: No more items"
+msgstr "E553: Í×ÁǤ¬¤â¤¦¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: %s{...} Æâ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E555: at bottom of tag stack"
+msgstr "E555: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
+
+msgid "E556: at top of tag stack"
+msgstr "E556: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
+
+msgid "E557: Cannot open termcap file"
+msgstr "E557: termcap¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
+
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: terminfo¤ËüËö¥¨¥ó¥È¥ê¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: termcap¤ËüËö¥¨¥ó¥È¥ê¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: »ÈÍÑÊýË¡: cs[cope] %s"
+
+msgid "E561: unknown cscope search type"
+msgstr "E561: ̤ÃΤÎcscope¸¡º÷·¿¤Ç¤¹"
+
+msgid "E562: Usage: cstag <ident>"
+msgstr "E562: »ÈÍÑË¡: cstag <ident>"
+
+#, c-format
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: stat(%s) ¥¨¥é¡¼: %d"
+
+#, c-format
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s ¤Ï¥Ç¥£¥ì¥¯¥È¥êµÚ¤Ó͸ú¤Êcscope¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E565: Not allowed to change text or change window"
+msgstr "E565: ¥Æ¥¥¹¥È¤òÊѹ¹¤·¤¿¤ê¥¦¥£¥ó¥É¥¦¤òÊѹ¹¤¹¤ë¤³¤È¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: cscope¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E567: no cscope connections"
+msgstr "E567: cscopeÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: ½ÅÊ£¤¹¤ëcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÏÄɲ䵤ì¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: cs_manage_matches ¤ÇÃ×̿Ū¤Ê¥¨¥é¡¼¤Ç¤¹"
+
+msgid ""
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
+msgstr ""
+"E571: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Tcl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
+"¤·¤¿¡£"
+
+#, c-format
+msgid "E572: exit code %d"
+msgstr "E572: ½ªÎ»¥³¡¼¥É %d"
+
+#, c-format
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: ̵¸ú¤Ê¥µ¡¼¥Ð¡¼ID¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
+
+#, c-format
+msgid "E574: Unknown register type %d"
+msgstr "E574: ̤ÃΤΥ쥸¥¹¥¿·¿ %d ¤Ç¤¹"
+
+msgid "Illegal starting char"
+msgstr "ÉÔÀµ¤ÊÀèÆ¬Ê¸»ú¤Ç¤¹"
+
+msgid "Missing '>'"
+msgstr "'>' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "Illegal register name"
+msgstr "ÉÔÀµ¤Ê¥ì¥¸¥¹¥¿Ì¾"
+
+msgid "E578: Not allowed to change text here"
+msgstr "E578: ¤³¤³¤Ç¥Æ¥¥¹¥È¤òÊѹ¹¤¹¤ë¤³¤È¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E579: :if nesting too deep"
+msgstr "E579: :if ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E579: block nesting too deep"
+msgstr "E579: ¥Ö¥í¥Ã¥¯¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E580: :endif without :if"
+msgstr "E580: :if ¤Î¤Ê¤¤ :endif ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E581: :else without :if"
+msgstr "E581: :if ¤Î¤Ê¤¤ :else ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E582: :elseif without :if"
+msgstr "E582: :if ¤Î¤Ê¤¤ :elseif ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E583: multiple :else"
+msgstr "E583: Ê£¿ô¤Î :else ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E584: :elseif after :else"
+msgstr "E584: :else ¤Î¸å¤Ë :elseif ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E585: :while/:for nesting too deep"
+msgstr "E585: :while ¤ä :for ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E586: :continue without :while or :for"
+msgstr "E586: :while ¤ä :for ¤Î¤Ê¤¤ :continue ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E587: :break without :while or :for"
+msgstr "E587: :while ¤ä :for ¤Î¤Ê¤¤ :break ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E588: :endwhile without :while"
+msgstr "E588: :while ¤Î¤Ê¤¤ :endwhile ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor ¤Î¤Ê¤¤ :for ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' ¤È 'patchmode' ¤¬Æ±¤¸¤Ç¤¹"
+
+msgid "E590: A preview window already exists"
+msgstr "E590: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¸ºß¤·¤Þ¤¹"
+
msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
msgstr "E591: 'winheight' ¤Ï 'winminheight' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
msgstr "E592: 'winwidth' ¤Ï 'winminwidth' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
-msgid "E80: Error while writing"
-msgstr "E80: ½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼"
-
-msgid "E939: Positive count required"
-msgstr "E939: Àµ¤Î¥«¥¦¥ó¥È¤¬É¬ÍפǤ¹"
-
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿"
+#, c-format
+msgid "E593: Need at least %d lines"
+msgstr "E593: ºÇÄã %d ¤Î¹Ô¿ô¤¬É¬ÍפǤ¹"
#, c-format
-msgid "E107: Missing parentheses: %s"
-msgstr "E107: ¥«¥Ã¥³ '(' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "E594: Need at least %d columns"
+msgstr "E594: ºÇÄã %d ¤Î¥«¥é¥àÉý¤¬É¬ÍפǤ¹"
-msgid "E449: Invalid expression received"
-msgstr "E449: ̵¸ú¤Ê¼°¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
+msgid "E595: 'showbreak' contains unprintable or wide character"
+msgstr "E595: 'showbreak' ¤Ïɽ¼¨¤Ç¤¤Ê¤¤Ê¸»ú¤«¥ï¥¤¥Éʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: Îΰ褬Êݸ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢Êѹ¹¤Ç¤¤Þ¤»¤ó"
+msgid "E596: Invalid font(s)"
+msgstr "E596: ̵¸ú¤Ê¥Õ¥©¥ó¥È¤Ç¤¹"
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans ¤ÏÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤¹¤ë¤³¤È¤òµö¤·¤Þ¤»¤ó"
+msgid "E597: can't select fontset"
+msgstr "E597: ¥Õ¥©¥ó¥È¥»¥Ã¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: ¥Ñ¥¿¡¼¥ó¤¬ 'maxmempattern' °Ê¾å¤Î¥á¥â¥ê¤ò»ÈÍѤ·¤Þ¤¹"
+msgid "E598: Invalid fontset"
+msgstr "E598: ̵¸ú¤Ê¥Õ¥©¥ó¥È¥»¥Ã¥È¤Ç¤¹"
-msgid "E749: empty buffer"
-msgstr "E749: ¥Ð¥Ã¥Õ¥¡¤¬¶õ¤Ç¤¹"
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: 'imactivatekey' ¤ËÀßÄꤵ¤ì¤¿Ãͤ¬Ìµ¸ú¤Ç¤¹"
+
+msgid "E600: Missing :endtry"
+msgstr "E600: :endtry ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E601: :try nesting too deep"
+msgstr "E601: :try ¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E602: :endtry without :try"
+msgstr "E602: :try ¤Î¤Ê¤¤ :endtry ¤Ç¤¹"
+
+msgid "E603: :catch without :try"
+msgstr "E603: :try ¤Î¤Ê¤¤ :catch ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E604: :catch after :finally"
+msgstr "E604: :finally ¤Î¸å¤Ë :catch ¤¬¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "E86: Buffer %ld does not exist"
-msgstr "E86: ¥Ð¥Ã¥Õ¥¡ %ld ¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E605: Exception not caught: %s"
+msgstr "E605: Îã³°¤¬Ê᪤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+
+msgid "E606: :finally without :try"
+msgstr "E606: :try ¤Î¤Ê¤¤ :finally ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E607: multiple :finally"
+msgstr "E607: Ê£¿ô¤Î :finally ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
+msgstr "E608: 'Vim' ¤Ç»Ï¤Þ¤ëÎã³°¤Ï :throw ¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E609: Cscope error: %s"
+msgstr "E609: cscope¥¨¥é¡¼: %s"
+
+msgid "E610: No argument to delete"
+msgstr "E610: ºï½ü¤¹¤ë°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E611: Using a Special as a Number"
+msgstr "E611: ÆÃ¼ìÃÍ·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E612: Too many signs defined"
+msgstr "E612: sign¤ÎÄêµÁ¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: ̤ÃΤΥץê¥ó¥¿¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s"
+
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
+
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: ¥Õ¥©¥ó¥È %s ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+
+msgid "E617: Cannot be changed in the GTK GUI"
+msgstr "E617: GTK GUI¤Ç¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: ¥Õ¥¡¥¤¥ë \"%s\" ¤ÏÂбþ¤·¤Æ¤¤¤Ê¤¤ PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤¹"
+
+#, c-format
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: °õºþ¥¨¥ó¥³¡¼¥É \"%s\" ¤ØÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤Ï¥Ð¡¼¥¸¥ç¥ó¤¬°Û¤Ê¤ê¤Þ¤¹"
+
+msgid "E622: Could not fork for cscope"
+msgstr "E622: cscope¤Îµ¯Æ°½àÈ÷(fork)¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: cscope¥×¥í¥»¥¹¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#, c-format
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+
+#, c-format
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹: %s ¤ò³«¤¯¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E626: cannot get cscope database information"
+msgstr "E626: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ðÊó¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E630: %s(): write while not connected"
+msgstr "E630: %s(): ÈóÀܳ¾õÂ֤ǽñ¹þ¤ß¤Þ¤·¤¿"
+
+#, c-format
+msgid "E631: %s(): write failed"
+msgstr "E631: %s(): ½ñ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E654: missing delimiter after search pattern: %s"
+msgstr "E654: ¸¡º÷¥Ñ¥¿¡¼¥ó¤Î¤¢¤È¤Ë¶èÀڤ꤬¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E655: Too many symbolic links (cycle?)"
+msgstr "E655: ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬Â¿²á¤®¤Þ¤¹ (½Û´Ä¤·¤Æ¤¤¤ë²ÄǽÀ¤¬¤¢¤ê¤Þ¤¹)"
+
+msgid "NetBeans disallows writes of unmodified buffers"
+msgstr "NetBeans¤Ï̤Êѹ¹¤Î¥Ð¥Ã¥Õ¥¡¤ò¾å½ñ¤¹¤ë¤³¤È¤Ïµö²Ä¤·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "Partial writes disallowed for NetBeans buffers"
+msgstr "NetBeans¥Ð¥Ã¥Õ¥¡¤Î°ìÉô¤ò½ñ¤½Ð¤¹¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E658: NetBeans connection lost for buffer %d"
+msgstr "E658: ¥Ð¥Ã¥Õ¥¡ %d ¤Î NetBeans Àܳ¤¬¼º¤ï¤ì¤Þ¤·¤¿"
+
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python ¤òºÆµ¢Åª¤Ë¼Â¹Ô¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E661: Sorry, no '%s' help for %s"
+msgstr "E661: »Äǰ¤Ç¤¹¤¬ '%s' ¤Î¥Ø¥ë¥×¤¬ %s ¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E662: At start of changelist"
+msgstr "E662: Êѹ¹¥ê¥¹¥È¤ÎÀèÆ¬"
+
+msgid "E663: At end of changelist"
+msgstr "E663: Êѹ¹¥ê¥¹¥È¤ÎËöÈø"
+
+msgid "E664: changelist is empty"
+msgstr "E664: Êѹ¹¥ê¥¹¥È¤¬¶õ¤Ç¤¹"
+
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: ͸ú¤Ê¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤¤¤Î¤Ç¡¢GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E666: compiler not supported: %s"
+msgstr "E666: ¤½¤Î¥³¥ó¥Ñ¥¤¥é¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó: %s"
+
+msgid "E667: Fsync failed"
+msgstr "E667: fsync ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: NetBeans¤ÎÀܳ¾ðÊó¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¥â¡¼¥É¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹: \"%s\""
+
+msgid "E669: Unprintable character in group name"
+msgstr "E669: ¥°¥ë¡¼¥×̾¤Ë°õºþÉÔ²Äǽ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E670: Mix of help file encodings within a language: %s"
+msgstr "E670: 1¤Ä¤Î¸À¸ì¤Î¥Ø¥ë¥×¥Õ¥¡¥¤¥ë¤ËÊ£¿ô¤Î¥¨¥ó¥³¡¼¥É¤¬º®ºß¤·¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: ¥¿¥¤¥È¥ë¤¬ \"%s\" ¤Î¥¦¥£¥ó¥É¥¦¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: MDI¥¢¥×¥ê¤ÎÃæ¤Ç¤Ï¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó"
+
+msgid "E673: Incompatible multi-byte encoding and character set"
+msgstr "E673: ¸ß´¹À¤Î̵¤¤¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Èʸ»ú¥»¥Ã¥È¤Ç¤¹"
+
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr ""
+"E674: ¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤Ï printmbcharset ¤ò¶õ¤Ë¤Ç¤¤Þ¤»¤ó¡£"
+
+msgid "E675: No default font specified for multi-byte printing."
+msgstr ""
+"E675: ¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú¤ò°õºþ¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»"
+"¤ó¡£"
+
+msgid "E676: No matching autocommands for acwrite buffer"
+msgstr "E676: acwrite¥Ð¥Ã¥Õ¥¡¤Î³ºÅö¤¹¤ë¼«Æ°¥³¥Þ¥ó¥É¤Ï¸ºß¤·¤Þ¤»¤ó"
+
+msgid "E677: Error writing temp file"
+msgstr "E677: °ì»þ¥Õ¥¡¥¤¥ë½ñ¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: %s%%[dxouU] ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: syncolor.vim ¤ÎºÆµ¢¸Æ½Ð¤·¤ò¸¡½Ð¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E680: <buffer=%d>: invalid buffer number"
+msgstr "E680: <¥Ð¥Ã¥Õ¥¡=%d>: ̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡ÈÖ¹æ¤Ç¤¹"
+
+msgid "E681: Buffer is not loaded"
+msgstr "E681: ¥Ð¥Ã¥Õ¥¡¤ÏÆÉ¹þ¤Þ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
msgid "E682: Invalid search pattern or delimiter"
msgstr "E682: ¸¡º÷¥Ñ¥¿¡¼¥ó¤«¶èÀڤ굹椬ÉÔÀµ¤Ç¤¹"
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: Ʊ¤¸Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬Â¾¤Î¥Ð¥Ã¥Õ¥¡¤ÇÆÉ¹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: ¥Õ¥¡¥¤¥ë̾¤¬Ìµ¤¤¤«Ìµ¸ú¤Ê¥Ñ¥¿¡¼¥ó¤Ç¤¹"
+
+#, c-format
+msgid "E684: list index out of range: %ld"
+msgstr "E684: ¥ê¥¹¥È¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬Èϰϳ°¤Ç¤¹: %ld"
+
+#, c-format
+msgid "E685: Internal error: %s"
+msgstr "E685: ÆâÉô¥¨¥é¡¼¤Ç¤¹: %s"
+
+#, c-format
+msgid "E686: Argument of %s must be a List"
+msgstr "E686: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E687: Less targets than List items"
+msgstr "E687: ¥¿¡¼¥²¥Ã¥È¤¬¥ê¥¹¥È·¿Æâ¤ÎÍ×ÁǤè¤ê¤â¾¯¤Ê¤¤¤Ç¤¹"
+
+msgid "E688: More targets than List items"
+msgstr "E688: ¥¿¡¼¥²¥Ã¥È¤¬¥ê¥¹¥È·¿Æâ¤ÎÍ×ÁǤè¤ê¤â¿¤¤¤Ç¤¹"
+
+msgid "E689: Can only index a List, Dictionary or Blob"
+msgstr "E689: ¥ê¥¹¥È·¿¡¢¼½ñ·¿¡¢Blob·¿°Ê³°¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹»ØÄê¤Ç¤¤Þ¤»¤ó"
+
+msgid "E690: Missing \"in\" after :for"
+msgstr "E690: :for ¤Î¸å¤Ë \"in\" ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E691: Can only compare List with List"
+msgstr "E691: ¥ê¥¹¥È·¿¤Ï¥ê¥¹¥È·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
+
+msgid "E692: Invalid operation for List"
+msgstr "E692: ¥ê¥¹¥È·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
+
+msgid "E694: Invalid operation for Funcrefs"
+msgstr "E694: ´Ø¿ô»²¾È·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
+
+msgid "E695: Cannot index a Funcref"
+msgstr "E695: ´Ø¿ô»²¾È·¿¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E696: Missing comma in List: %s"
+msgstr "E696: ¥ê¥¹¥È·¿¤Ë¥³¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E697: Missing end of List ']': %s"
+msgstr "E697: ¥ê¥¹¥È·¿¤ÎºÇ¸å¤Ë ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E698: variable nested too deep for making a copy"
+msgstr "E698: ¥³¥Ô¡¼¤ò¼è¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E699: Too many arguments"
+msgstr "E699: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E700: Unknown function: %s"
+msgstr "E700: ̤ÃΤδؿô¤Ç¤¹: %s"
+
+msgid "E701: Invalid type for len()"
+msgstr "E701: len() ¤Ë¤Ï̵¸ú¤Ê·¿¤Ç¤¹"
+
+msgid "E702: Sort compare function failed"
+msgstr "E702: ¥½¡¼¥È¤ÎÈæ³Ó´Ø¿ô¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E703: Using a Funcref as a Number"
+msgstr "E703: ´Ø¿ô»²¾È·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E704: Funcref variable name must start with a capital: %s"
+msgstr "E704: ´Ø¿ô»²¾È·¿ÊÑ¿ô̾¤ÏÂçʸ»ú¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E705: Variable name conflicts with existing function: %s"
+msgstr "E705: ÊÑ¿ô̾¤¬´û¸¤Î´Ø¿ô̾¤È¾×ÆÍ¤·¤Þ¤¹: %s"
+
+#, c-format
+msgid "E707: Function name conflicts with variable: %s"
+msgstr "E707: ´Ø¿ô̾¤¬ÊÑ¿ô̾¤È¾×ÆÍ¤·¤Þ¤¹: %s"
+
+msgid "E708: [:] must come last"
+msgstr "E708: [:] ¤ÏºÇ¸å¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+
+msgid "E709: [:] requires a List or Blob value"
+msgstr "E709: [:] ¤Ë¤Ï¥ê¥¹¥È·¿¤«Blob·¿¤ÎÃͤ¬É¬ÍפǤ¹"
+
+msgid "E710: List value has more items than targets"
+msgstr "E710: ¥ê¥¹¥È·¿ÊÑ¿ô¤Ë¥¿¡¼¥²¥Ã¥È¤è¤ê¤â¿¤¤Í×ÁǤ¬¤¢¤ê¤Þ¤¹"
+
+msgid "E711: List value does not have enough items"
+msgstr "E711: ¥ê¥¹¥È·¿ÊÑ¿ô¤Ë½½Ê¬¤Ê¿ô¤ÎÍ×ÁǤ¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E712: Argument of %s must be a List or Dictionary"
+msgstr "E712: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤Ï¼½ñ·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E713: Cannot use empty key for Dictionary"
+msgstr "E713: ¼½ñ·¿¤Ë¶õ¤Î¥¡¼¤ò»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E714: List required"
+msgstr "E714: ¥ê¥¹¥È·¿¤¬É¬ÍפǤ¹"
+
+msgid "E715: Dictionary required"
+msgstr "E715: ¼½ñ·¿¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E716: Key not present in Dictionary: \"%s\""
+msgstr "E716: ¼½ñ·¿¤Ë¥¡¼¤¬Â¸ºß¤·¤Þ¤»¤ó: \"%s\""
+
+msgid "E717: Dictionary entry already exists"
+msgstr "E717: ¼½ñ·¿Æâ¤Ë¥¨¥ó¥È¥ê¤¬´û¤Ë¸ºß¤·¤Þ¤¹"
+
+msgid "E718: Funcref required"
+msgstr "E718: ´Ø¿ô»²¾È·¿¤¬Í׵ᤵ¤ì¤Þ¤¹"
+
+msgid "E719: Cannot slice a Dictionary"
+msgstr "E719: ¼½ñ·¿¤Ï¥¹¥é¥¤¥¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E720: Missing colon in Dictionary: %s"
+msgstr "E720: ¼½ñ·¿¤Ë¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E721: Duplicate key in Dictionary: \"%s\""
+msgstr "E721: ¼½ñ·¿¤Ë½ÅÊ£¥¡¼¤¬¤¢¤ê¤Þ¤¹: \"%s\""
+
+#, c-format
+msgid "E722: Missing comma in Dictionary: %s"
+msgstr "E722: ¼½ñ·¿¤Ë¥³¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E723: Missing end of Dictionary '}': %s"
+msgstr "E723: ¼½ñ·¿¤ÎºÇ¸å¤Ë '}' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E724: variable nested too deep for displaying"
+msgstr "E724: ɽ¼¨¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E725: Calling dict function without Dictionary: %s"
+msgstr "E725: ¼½ñÍÑ´Ø¿ô¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿¤¬¼½ñ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E726: Stride is zero"
+msgstr "E726: ¥¹¥È¥é¥¤¥É(Á°¿ÊÎÌ)¤¬ 0 ¤Ç¤¹"
+
+msgid "E727: Start past end"
+msgstr "E727: ³«»Ï°ÌÃÖ¤¬½ªÎ»°ÌÃÖ¤ò±Û¤¨¤Þ¤·¤¿"
+
+msgid "E728: Using a Dictionary as a Number"
+msgstr "E728: ¼½ñ·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E729: Using a Funcref as a String"
+msgstr "E729: ´Ø¿ô»²¾È·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E730: Using a List as a String"
+msgstr "E730: ¥ê¥¹¥È·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E731: Using a Dictionary as a String"
+msgstr "E731: ¼½ñ·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E732: Using :endfor with :while"
+msgstr "E732: :endfor ¤ò :while ¤ÈÁȤ߹ç¤ï¤»¤Æ¤¤¤Þ¤¹"
+
+msgid "E733: Using :endwhile with :for"
+msgstr "E733: :endwhile ¤ò :for ¤ÈÁȤ߹ç¤ï¤»¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E734: Wrong variable type for %s="
+msgstr "E734: °Û¤Ê¤Ã¤¿·¿¤ÎÊÑ¿ô¤Ç¤¹ %s="
+
+msgid "E735: Can only compare Dictionary with Dictionary"
+msgstr "E735: ¼½ñ·¿¤Ï¼½ñ·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
+
+msgid "E736: Invalid operation for Dictionary"
+msgstr "E736: ¼½ñ·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
+
+#, c-format
+msgid "E737: Key already exists: %s"
+msgstr "E737: ¥¡¼¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s"
+
+#, c-format
+msgid "E738: Can't list variables for %s"
+msgstr "E738: %s ¤ÎÃͤò°ìÍ÷ɽ¼¨¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E739: Cannot create directory: %s"
+msgstr "E739: ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E740: Too many arguments for function %s"
+msgstr "E740: ´Ø¿ô¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹: %s"
+
+msgid "E741: Value is locked"
+msgstr "E741: Ãͤ¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E741: Value is locked: %s"
+msgstr "E741: Ãͤ¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E742: Cannot change value"
+msgstr "E742: ÃͤòÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E742: Cannot change value of %s"
+msgstr "E742: %s ¤ÎÃͤòÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E743: variable nested too deep for (un)lock"
+msgstr "E743: (¥¢¥ó)¥í¥Ã¥¯¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans ¤ÏÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤¹¤ë¤³¤È¤òµö¤·¤Þ¤»¤ó"
+
+msgid "E745: Using a List as a Number"
+msgstr "E745: ¥ê¥¹¥È·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E746: Function name does not match script file name: %s"
+msgstr "E746: ´Ø¿ô̾¤¬¥¹¥¯¥ê¥×¥È¤Î¥Õ¥¡¥¤¥ë̾¤È°ìÃפ·¤Þ¤»¤ó: %s"
+
+msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
+msgstr ""
+"E747: ¥Ð¥Ã¥Õ¥¡¤¬½¤Àµ¤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤Ç¤¤Þ¤»¤ó (! ¤òÄɲäÇ"
+"¾å½ñ)"
+
+msgid "E748: No previously used register"
+msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E749: empty buffer"
+msgstr "E749: ¥Ð¥Ã¥Õ¥¡¤¬¶õ¤Ç¤¹"
+
+msgid "E750: First use \":profile start {fname}\""
+msgstr "E750: ½é¤á¤Ë \":profile start {fname}\" ¤ò¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E751: Output file name must not have region name"
+msgstr "E751: ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤Ë¤ÏÈϰÏ̾¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
+
+msgid "E752: No previous spell replacement"
+msgstr "E752: ¥¹¥Ú¥ëÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E753: Not found: %s"
+msgstr "E753: ¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E754: Only up to %d regions supported"
+msgstr "E754: ÈÏ°Ï¤Ï %d ¸Ä¤Þ¤Ç¤·¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E755: Invalid region in %s"
+msgstr "E755: ̵¸ú¤ÊÈϰϤǤ¹: %s"
+
+msgid "E756: Spell checking is not possible"
+msgstr "E756: ¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E757: This does not look like a spell file"
+msgstr "E757: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
+
+msgid "E758: Truncated spell file"
+msgstr "E758: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤¬ÀÚ¼è¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
+
+msgid "E759: Format error in spell file"
+msgstr "E759: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¥¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E760: No word count in %s"
+msgstr "E760: %s ¤Ë¤Ïñ¸ì¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr ""
+"E761: affix¥Õ¥¡¥¤¥ë¤Î FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Îʸ»ú¤¬Èϰϳ°¤Ç¤¹"
+
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: ñ¸ì¤Îʸ»ú¤¬¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤È°Û¤Ê¤ê¤Þ¤¹"
#, c-format
msgid "E764: Option '%s' is not set"
msgstr "E764: ¥ª¥×¥·¥ç¥ó '%s' ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+#, c-format
+msgid "E765: 'spellfile' does not have %d entries"
+msgstr "E765: 'spellfile' ¤Ë¤Ï %d ¸Ä¤Î¥¨¥ó¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: printf() ¤Î°ú¿ô¤¬ÉÔ½½Ê¬¤Ç¤¹"
+
+msgid "E767: Too many arguments for printf()"
+msgstr "E767: printf() ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E768: Swap file exists: %s (:silent! overrides)"
+msgstr "E768: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹: %s (:silent! ¤òÄɲäǾå½ñ)"
+
+#, c-format
+msgid "E769: Missing ] after %s["
+msgstr "E769: %s[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E770: Unsupported section in spell file"
+msgstr "E770: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ë¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E771: Old spell file, needs to be updated"
+msgstr "E771: ¸Å¤¤¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç¡¢¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤"
+
+msgid "E772: Spell file is for newer version of Vim"
+msgstr "E772: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΥ¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤¹"
+
+#, c-format
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: \"%s\" ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬¥ë¡¼¥×¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: 'operatorfunc' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
+
+msgid "E775: Eval feature not available"
+msgstr "E775: ¼°É¾²Áµ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E776: No location list"
+msgstr "E776: ¥í¥±¡¼¥·¥ç¥ó¥ê¥¹¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E777: String or List expected"
+msgstr "E777: ʸ»úÎ󤫥ꥹ¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: .sug ¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹: %s"
+
+#, c-format
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: ¸Å¤¤ .sug ¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç¡¢¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤: %s"
+
+#, c-format
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΠ.sug ¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
+
+#, c-format
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: .sug ¥Õ¥¡¥¤¥ë¤¬ .spl ¥Õ¥¡¥¤¥ë¤È°ìÃפ·¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: .sug ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿: %s"
+
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: MAP ¥¨¥ó¥È¥ê¤Ë½Åʣʸ»ú¤¬Â¸ºß¤·¤Þ¤¹"
+
+msgid "E784: Cannot close last tab page"
+msgstr "E784: ºÇ¸å¤Î¥¿¥Ö¥Ú¡¼¥¸¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E785: complete() can only be used in Insert mode"
+msgstr "E785: complete() ¤ÏÁÞÆþ¥â¡¼¥É¤Ç¤·¤«ÍøÍѤǤ¤Þ¤»¤ó"
+
+msgid "E786: Range not allowed"
+msgstr "E786: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E787: Buffer changed unexpectedly"
+msgstr "E787: ͽ´ü¤»¤º¥Ð¥Ã¥Õ¥¡¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E788: Not allowed to edit another buffer now"
+msgstr "E788: ¸½ºß¤Ï¾¤Î¥Ð¥Ã¥Õ¥¡¤òÊÔ½¸¤¹¤ë¤³¤È¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E789: Missing ']': %s"
+msgstr "E789: ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undo ¤Îľ¸å¤Ë undojoin ¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E791: Empty keymap entry"
+msgstr "E791: ¶õ¤Î¥¡¼¥Þ¥Ã¥×¥¨¥ó¥È¥ê"
+
+msgid "E792: Empty menu name"
+msgstr "E792: ¥á¥Ë¥å¡¼Ì¾¤¬¶õ¤Ç¤¹"
+
+msgid "E793: No other buffer in diff mode is modifiable"
+msgstr "E793: º¹Ê¬¥â¡¼¥É¤Ç¤¢¤ë¾¤Î¥Ð¥Ã¥Õ¥¡¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E794: Cannot set variable in the sandbox"
+msgstr "E794: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤ÏÊÑ¿ô¤ËÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr "E794: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤ÏÊÑ¿ô \"%s\" ¤ËÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+
+msgid "E795: Cannot delete variable"
+msgstr "E795: ÊÑ¿ô¤òºï½ü¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E795: Cannot delete variable %s"
+msgstr "E795: ÊÑ¿ô %s ¤òºï½ü¤Ç¤¤Þ¤»¤ó"
+
+msgid "writing to device disabled with 'opendevice' option"
+msgstr "'opendevice' ¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê¥Ç¥Ð¥¤¥¹¤Ø¤Î½ñ¹þ¤ß¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E797: SpellFileMissing autocommand deleted buffer"
+msgstr "E797: SpellFileMissing ¼«Æ°¥³¥Þ¥ó¥É¤¬¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E798: ID is reserved for \":match\": %d"
+msgstr "E798: ID ¤Ï \":match\" ¤Î¤¿¤á¤ËͽÌó¤µ¤ì¤Æ¤¤¤Þ¤¹: %d"
+
+#, c-format
+msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E799: ̵¸ú¤Ê ID: %d (1 °Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó)"
+
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: ¥¢¥é¥Ó¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+
+#, c-format
+msgid "E801: ID already taken: %d"
+msgstr "E801: ID ¤Ï´û¤ËÍøÍÑÃæ¤Ç¤¹: %d"
+
+#, c-format
+msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E802: ̵¸ú¤Ê ID: %d (1 °Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó)"
+
+#, c-format
+msgid "E803: ID not found: %d"
+msgstr "E803: ID ¤Ï¤¢¤ê¤Þ¤»¤ó: %d"
+
+msgid "E804: Cannot use '%' with Float"
+msgstr "E804: '%' ¤òÉâÆ°¾®¿ôÅÀ¿ô¤ÈÁȤ߹ç¤ï¤»¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E805: Using a Float as a Number"
+msgstr "E805: ÉâÆ°¾®¿ôÅÀ¿ô¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E806: using Float as a String"
+msgstr "E806: ÉâÆ°¾®¿ôÅÀ¿ô¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E807: Expected Float argument for printf()"
+msgstr "E807: printf() ¤Î°ú¿ô¤Ë¤ÏÉâÆ°¾®¿ôÅÀ¿ô¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E808: Number or Float required"
+msgstr "E808: ¿ôÃͤ«ÉâÆ°¾®¿ôÅÀ¿ô¤¬É¬ÍפǤ¹"
+
+msgid "E809: #< is not available without the +eval feature"
+msgstr "E809: #< ¤Ï +eval µ¡Ç½¤¬Ìµ¤¤¤ÈÍøÍѤǤ¤Þ¤»¤ó"
+
+msgid "E810: Cannot read or write temp files"
+msgstr "E810: °ì»þ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ß¤â¤·¤¯¤Ï½ñ¹þ¤ß¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E811: Not allowed to change buffer information now"
+msgstr "E811: ¸½ºß¤Ï¥Ð¥Ã¥Õ¥¡¾ðÊó¤òÊѹ¹¤¹¤ë¤³¤È¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E812: Autocommands changed buffer or buffer name"
+msgstr "E812: ¼«Æ°¥³¥Þ¥ó¥É¤¬¥Ð¥Ã¥Õ¥¡¤«¥Ð¥Ã¥Õ¥¡Ì¾¤òÊѹ¹¤·¤Þ¤·¤¿"
+
+msgid "E813: Cannot close autocmd or popup window"
+msgstr "E813: autocmd¥¦¥£¥ó¥É¥¦¤Þ¤¿¤Ï¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
+
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr "E814: autocmd¥¦¥£¥ó¥É¥¦¤·¤«»Ä¤é¤Ê¤¤¤¿¤á¡¢¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
+
+msgid ""
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr "E815: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡£MzScheme ¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£"
+
+msgid "E816: Cannot read patch output"
+msgstr "E816: patch¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó"
+
+msgid "E817: Blowfish big/little endian use wrong"
+msgstr "E817: Blowfish°Å¹æ¤Î¥Ó¥Ã¥°/¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E818: sha256 test failed"
+msgstr "E818: sha256¤Î¥Æ¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E819: Blowfish test failed"
+msgstr "E819: Blowfish°Å¹æ¤Î¥Æ¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E820: sizeof(uint32_t) != 4"
+msgstr "E820: sizeof(uint32_t) != 4"
+
+msgid "E821: File is encrypted with unknown method"
+msgstr "E821: ¥Õ¥¡¥¤¥ë¤¬Ì¤ÃΤÎÊýË¡¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¹þ¤ßÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E823: Not an undo file: %s"
+msgstr "E823: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: ¸ß´¹À¤Î̵¤¤¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
+
+#, c-format
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Æ¤¤¤Þ¤¹ (%s): %s"
+
+#, c-format
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: °Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î²òÆÉ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
+
+#, c-format
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: ½ñ¹þ¤ßÍѤ˥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E829: write error in undo file: %s"
+msgstr "E829: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹: %s"
+
+#, c-format
+msgid "E830: Undo number %ld not found"
+msgstr "E830: ¥¢¥ó¥É¥¥ÈÖ¹æ %ld ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E831: bf_key_init() called with empty password"
+msgstr "E831: bf_key_init() ¤¬¶õ¥Ñ¥¹¥ï¡¼¥É¤Ç¸Æ½Ð¤µ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: Èó°Å¹æ²½¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤Æ¤Þ¤¹: %s"
+
+#, c-format
+msgid ""
+"E833: %s is encrypted and this version of Vim does not support encryption"
+msgstr ""
+"E833: %s ¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVim¤Ç¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤·Á¼°¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E834: Conflicts with value of 'listchars'"
+msgstr "E834: 'listchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E835: Conflicts with value of 'fillchars'"
+msgstr "E835: 'fillchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: ¤³¤ÎVim¤Ç¤Ï :py3 ¤ò»È¤Ã¤¿¸å¤Ë :python ¤ò»È¤¨¤Þ¤»¤ó"
+
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: ¤³¤ÎVim¤Ç¤Ï :python ¤ò»È¤Ã¤¿¸å¤Ë :py3 ¤ò»È¤¨¤Þ¤»¤ó"
+
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: NetBeans¤Ï¤³¤ÎGUI¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E840: Completion function deleted text"
+msgstr "E840: Êä´°´Ø¿ô¤¬¥Æ¥¥¹¥È¤òºï½ü¤·¤Þ¤·¤¿"
+
+msgid "E841: Reserved name, cannot be used for user defined command"
+msgstr "E841: ͽÌó̾¤Ê¤Î¤Ç¡¢¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤ËÍøÍѤǤ¤Þ¤»¤ó"
+
+msgid "E842: no line number to use for \"<slnum>\""
+msgstr "E842: \"<slnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°Å¹æ¤ò¹¹¿·Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
+
+msgid "E844: invalid cchar value"
+msgstr "E844: ̵¸ú¤Êcchar¤ÎÃͤǤ¹"
+
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: ¥á¥â¥ê¤¬Â¤ê¤Ê¤¤¤Î¤Ç¡¢Ã±¸ì¥ê¥¹¥È¤ÏÉÔ´°Á´¤Ç¤¹"
+
+msgid "E846: Key code not set"
+msgstr "E846: ¥¡¼¥³¡¼¥É¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E847: Too many syntax includes"
+msgstr "E847: ¹½Ê¸¤Î¼è¹þ¤ß(include)¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "E848: Too many syntax clusters"
+msgstr "E848: ¹½Ê¸¥¯¥é¥¹¥¿¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: ¥Ï¥¤¥é¥¤¥È¤È¹½Ê¸¥°¥ë¡¼¥×¤¬Â¿²á¤®¤Þ¤¹"
+
msgid "E850: Invalid register name"
msgstr "E850: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾¤Ç¤¹"
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: GUIÍÑ¤Î¥×¥í¥»¥¹¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: »Ò¥×¥í¥»¥¹¤¬GUI¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: °ú¿ô̾¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E854: path too long for completion"
+msgstr "E854: ¥Ñ¥¹¤¬Ä¹²á¤®¤ÆÊä´°¤Ç¤¤Þ¤»¤ó"
+
+msgid "E855: Autocommands caused command to abort"
+msgstr "E855: ¼«Æ°¥³¥Þ¥ó¥É¤¬¥³¥Þ¥ó¥É¤ÎÄä»ß¤ò°ú¤µ¯¤³¤·¤Þ¤·¤¿"
+
+msgid ""
+"E856: \"assert_fails()\" second argument must be a string or a list with one "
+"or two strings"
+msgstr ""
+"E856: \"assert_fails()\" ¤ÎÂè2°ú¿ô¤Ïʸ»úÎó¤Þ¤¿¤Ï1¸Ä¤«2¸Ä¤Îʸ»úÎó¤Î¥ê¥¹¥È¤Ç¤Ê"
+"¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E857: Dictionary key \"%s\" required"
+msgstr "E857: ¼½ñ¤Î¥¡¼ \"%s\" ¤¬É¬ÍפǤ¹"
+
+msgid "E858: Eval did not return a valid python object"
+msgstr "E858: ¼°É¾²Á¤Ï͸ú¤Êpython¥ª¥Ö¥¸¥§¥¯¥È¤òÊÖ¤·¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E859: Failed to convert returned python object to a Vim value"
+msgstr "E859: ÊÖ¤µ¤ì¤¿python¥ª¥Ö¥¸¥§¥¯¥È¤òVim¤ÎÃͤËÊÑ´¹¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E860: Need 'id' and 'type' with 'both'"
+msgstr "E860: 'both' ¤Ë¤Ï 'id' ¤È 'type' ¤ÎξÊý¤¬É¬ÍפǤ¹"
+
+msgid "E861: Cannot open a second popup with a terminal"
+msgstr "E861: 2¤ÄÌܤÎüËöÉÕ¤¥Ý¥Ã¥×¥¢¥Ã¥×¤ò³«¤¯¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E862: Cannot use g: here"
+msgstr "E862: ¤³¤³¤Ç¤Ï g: ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E863: Not allowed for a terminal in a popup window"
+msgstr "E863: üËö¤Ï¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+msgid ""
+"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
+"used"
+msgstr ""
+"E864: \\%#= ¤Ë¤Ï 0, 1 ¤â¤·¤¯¤Ï 2 ¤Î¤ß¤¬Â³¤±¤é¤ì¤Þ¤¹¡£Àµµ¬É½¸½¥¨¥ó¥¸¥ó¤Ï¼«Æ°Áª"
+"Âò¤µ¤ì¤Þ¤¹"
+
+msgid "E865: (NFA) Regexp end encountered prematurely"
+msgstr "E865: (NFA) ´üÂÔ¤è¤êÁ᤯Àµµ¬É½¸½¤Î½ªÃ¼¤ËÅþ㤷¤Þ¤·¤¿"
+
+#, c-format
+msgid "E866: (NFA regexp) Misplaced %c"
+msgstr "E866: (NFA Àµµ¬É½¸½) °ÌÃÖ¤¬¸í¤Ã¤Æ¤¤¤Þ¤¹: %c"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\z%c'"
+msgstr "E867: (NFA Àµµ¬É½¸½) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\z%c'"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\%%%c'"
+msgstr "E867: (NFA Àµµ¬É½¸½) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\%%%c'"
+
+msgid "E868: Error building NFA with equivalence class!"
+msgstr "E868: Åù²Á¥¯¥é¥¹¤ò´Þ¤àNFA¹½Ãۤ˼ºÇÔ¤·¤Þ¤·¤¿!"
+
+#, c-format
+msgid "E869: (NFA regexp) Unknown operator '\\@%c'"
+msgstr "E869: (NFA Àµµ¬É½¸½) ̤ÃΤΥª¥Ú¥ì¡¼¥¿¤Ç¤¹: '\\@%c'"
+
+msgid "E870: (NFA regexp) Error reading repetition limits"
+msgstr "E870: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤·¤ÎÀ©¸Â²ó¿ô¤òÆÉ¹þ¤ßÃæ¤Ë¥¨¥é¡¼"
+
+msgid "E871: (NFA regexp) Can't have a multi follow a multi"
+msgstr "E871: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤· ¤Î¸å¤Ë ·«¤êÊÖ¤· ¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E872: (NFA regexp) Too many '('"
+msgstr "E872: (NFA Àµµ¬É½¸½) '(' ¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "E873: (NFA regexp) proper termination error"
+msgstr "E873: (NFA Àµµ¬É½¸½) ½ªÃ¼µ¹æ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E874: (NFA regexp) Could not pop the stack!"
+msgstr "E874: (NFA Àµµ¬É½¸½) ¥¹¥¿¥Ã¥¯¤ò¥Ý¥Ã¥×¤Ç¤¤Þ¤»¤ó!"
+
+msgid ""
+"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
+"left on stack"
+msgstr ""
+"E875: (NFA Àµµ¬É½¸½) (¸åÃÖʸ»úÎó¤òNFA¤ËÊÑ´¹Ãæ¤Ë) ¥¹¥¿¥Ã¥¯¤Ë»Ä¤µ¤ì¤¿¥¹¥Æ¡¼¥È¤¬"
+"¿²á¤®¤Þ¤¹"
+
+msgid "E876: (NFA regexp) Not enough space to store the whole NFA"
+msgstr "E876: (NFA Àµµ¬É½¸½) NFAÁ´ÂΤòÊݸ¤¹¤ë¤Ë¤Ï¶õ¤¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E877: (NFA regexp) Invalid character class: %d"
+msgstr "E877: (NFA Àµµ¬É½¸½) ̵¸ú¤Êʸ»ú¥¯¥é¥¹¤Ç¤¹: %d"
+
+msgid "E878: (NFA regexp) Could not allocate memory for branch traversal!"
+msgstr ""
+"E878: (NFA Àµµ¬É½¸½) ¸½ºß²£ÃÇÃæ¤Î¥Ö¥é¥ó¥Á¤Ë½½Ê¬¤Ê¥á¥â¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó!"
+
+msgid "E879: (NFA regexp) Too many \\z("
+msgstr "E879: (NFA Àµµ¬É½¸½) \\z( ¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "E880: Can't handle SystemExit of python exception in vim"
+msgstr "E880: vim¤Çpython¤ÎSystemExitÎã³°¤ò°·¤¦¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+
+msgid "E881: Line count changed unexpectedly"
+msgstr "E881: ͽ´ü¤»¤º¹Ô¥«¥¦¥ó¥È¤¬ÊѤï¤ê¤Þ¤·¤¿"
+
+msgid "E882: Uniq compare function failed"
+msgstr "E882: Uniq ¤ÎÈæ³Ó´Ø¿ô¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid ""
+"E883: search pattern and expression register may not contain two or more "
+"lines"
+msgstr "E883: ¸¡º÷¥Ñ¥¿¡¼¥ó¤È¼°¥ì¥¸¥¹¥¿¤Ë¤Ï2¹Ô°Ê¾å¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E884: Function name cannot contain a colon: %s"
+msgstr "E884: ´Ø¿ô̾¤Ë¤Ï¥³¥í¥ó¤Ï´Þ¤á¤é¤ì¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E885: Not possible to change sign %s"
+msgstr "E885: Êѹ¹¤Ç¤¤Ê¤¤ sign ¤Ç¤¹: %s"
+
+#, c-format
+msgid "E886: Can't rename viminfo file to %s!"
+msgstr "E886: viminfo¥Õ¥¡¥¤¥ë¤ò %s ¤ØÌ¾Á°Êѹ¹¤Ç¤¤Þ¤»¤ó!"
+
+msgid ""
+"E887: Sorry, this command is disabled, the Python's site module could not be "
+"loaded."
+msgstr ""
+"E887: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤¡£Python ¤Î site ¥â¥¸¥å¡¼¥ë¤ò¥í¡¼¥É"
+"¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#, c-format
+msgid "E888: (NFA regexp) cannot repeat %s"
+msgstr "E888: (NFA Àµµ¬É½¸½) ·«¤êÊÖ¤»¤Þ¤»¤ó %s"
+
+msgid "E889: Number required"
+msgstr "E889: ¿ôÃͤ¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E890: trailing char after ']': %s]%s"
+msgstr "E890: ']' ¤Î¸å¤í¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s]%s"
+
+msgid "E891: Using a Funcref as a Float"
+msgstr "E891: ´Ø¿ô»²¾È·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E892: Using a String as a Float"
+msgstr "E892: ʸ»úÎó¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E893: Using a List as a Float"
+msgstr "E893: ¥ê¥¹¥È·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E894: Using a Dictionary as a Float"
+msgstr "E894: ¼½ñ·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid ""
+"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
+"could not be loaded."
+msgstr ""
+"E895: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤¡£MzScheme ¤Î racket/base ¥â¥¸¥å¡¼"
+"¥ë¤¬¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#, c-format
+msgid "E896: Argument of %s must be a List, Dictionary or Blob"
+msgstr "E896: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¡¢¼½ñ·¿¤Þ¤¿¤ÏBlob·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E897: List or Blob required"
+msgstr "E897: ¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤¬É¬ÍפǤ¹"
+
+msgid "E898: socket() in channel_connect()"
+msgstr "E898: channel_connect() Æâ¤Î socket() ¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E899: Argument of %s must be a List or Blob"
+msgstr "E899: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E900: maxdepth must be non-negative number"
+msgstr "E900: maxdepth ¤ÏÈóÉé¿ô¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E901: getaddrinfo() in channel_open(): %s"
+msgstr "E901: channel_open() Æâ¤Î getaddrinfo(): %s"
+
+msgid "E901: gethostbyname() in channel_open()"
+msgstr "E901: channel_open() Æâ¤Î gethostbyname() ¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E902: Cannot connect to port"
+msgstr "E902: ¥Ý¡¼¥È¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
+
+msgid "E903: received command with non-string argument"
+msgstr "E903: Èóʸ»úÎó¤Î°ú¿ô¤Î¥³¥Þ¥ó¥É¤ò¼õ¿®¤·¤Þ¤·¤¿"
+
+msgid "E904: last argument for expr/call must be a number"
+msgstr "E904: expr/call ¤ÎºÇ¸å¤Î°ú¿ô¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E904: third argument for call must be a list"
+msgstr "E904: call ¤Î3ÈÖÌܤΰú¿ô¤Ï¥ê¥¹¥È·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E905: received unknown command: %s"
+msgstr "E905: ̤ÃΤΥ³¥Þ¥ó¥É¤ò¼õ¿®¤·¤Þ¤·¤¿: %s"
+
+msgid "E906: not an open channel"
+msgstr "E906: ³«¤¤¤Æ¤¤¤Ê¤¤¥Á¥ã¥Í¥ë¤Ç¤¹"
+
+msgid "E907: Using a special value as a Float"
+msgstr "E907: ÆÃ¼ìÃͤòÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E908: using an invalid value as a String: %s"
+msgstr "E908: ̵¸ú¤ÊÃͤòʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E909: Cannot index a special variable"
+msgstr "E909: ÆÃ¼ìÊÑ¿ô¤Ï¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E910: Using a Job as a Number"
+msgstr "E910: ¥¸¥ç¥Ö¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E911: Using a Job as a Float"
+msgstr "E911: ¥¸¥ç¥Ö¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
+msgstr ""
+"E912: raw ¤ä nl ¥â¡¼¥É¤Î¥Á¥ã¥Í¥ë¤Ë ch_evalexpr()/ch_sendexpr() ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E913: Using a Channel as a Number"
+msgstr "E913: ¥Á¥ã¥Í¥ë¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E914: Using a Channel as a Float"
+msgstr "E914: ¥Á¥ã¥Í¥ë¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E915: in_io buffer requires in_buf or in_name to be set"
+msgstr "E915: in_io ¥Ð¥Ã¥Õ¥¡¤Ï in_buf ¤« in_name ¤ÎÀßÄ꤬ɬÍפǤ¹"
+
+msgid "E916: not a valid job"
+msgstr "E916: ͸ú¤Ê¥¸¥ç¥Ö¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E917: Cannot use a callback with %s()"
+msgstr "E917: %s() ¤Ë¥³¡¼¥ë¥Ð¥Ã¥¯¤Ï»È¤¨¤Þ¤»¤ó"
+
+#, c-format
+msgid "E918: buffer must be loaded: %s"
+msgstr "E918: ¥Ð¥Ã¥Õ¥¡¤¬¥í¡¼¥É¤µ¤ì¤Æ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
#, c-format
msgid "E919: Directory not found in '%s': \"%s\""
msgstr "E919: ¥Ç¥£¥ì¥¯¥È¥ê¤¬ '%s' ¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó: \"%s\""
-msgid "E952: Autocommand caused recursive behavior"
-msgstr "E952: Autocommand¤¬ºÆµ¢¤ò°ú¤µ¯¤³¤·¤Þ¤·¤¿"
+msgid "E920: _io file requires _name to be set"
+msgstr "E920: _io ¥Õ¥¡¥¤¥ë¤Ï _name ¤ÎÀßÄ꤬ɬÍפǤ¹"
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: ¥á¥Ë¥å¡¼¤Ï¾¤Î¥â¡¼¥É¤Ë¤À¤±¤¢¤ê¤Þ¤¹"
+msgid "E921: Invalid callback argument"
+msgstr "E921: ̵¸ú¤Ê¥³¡¼¥ë¥Ð¥Ã¥¯°ú¿ô¤Ç¤¹"
+
+msgid "E922: expected a dict"
+msgstr "E922: ¼½ñ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E923: Second argument of function() must be a list or a dict"
+msgstr "E923: function() ¤ÎÂè 2 °ú¿ô¤Ï¥ê¥¹¥È·¿¤Þ¤¿¤Ï¼½ñ·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E924: Current window was closed"
+msgstr "E924: ¸½ºß¤Î¥¦¥£¥ó¥É¥¦¤¬ÊĤ¸¤é¤ì¤Þ¤·¤¿"
+
+msgid "E925: Current quickfix list was changed"
+msgstr "E925: ¸½ºß¤Î quickfix ¥ê¥¹¥È¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E926: Current location list was changed"
+msgstr "E926: ¸½ºß¤Î¥í¥±¡¼¥·¥ç¥ó¥ê¥¹¥È¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E927: Invalid action: '%s'"
+msgstr "E927: ̵¸ú¤ÊÁàºî¤Ç¤¹: '%s'"
+
+msgid "E928: String required"
+msgstr "E928: ʸ»úÎó¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E929: Too many viminfo temp files, like %s!"
+msgstr "E929: °ì»þviminfo¥Õ¥¡¥¤¥ë¤¬Â¿²á¤®¤Þ¤¹! Îã: %s"
+
+msgid "E930: Cannot use :redir inside execute()"
+msgstr "E930: execute() ¤ÎÃæ¤Ç¤Ï :redir ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E931: Buffer cannot be registered"
+msgstr "E931: ¥Ð¥Ã¥Õ¥¡¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E932: Closure function should not be at top level: %s"
+msgstr "E932: ¥¯¥í¡¼¥¸¥ã¡¼´Ø¿ô¤Ï¥È¥Ã¥×¥ì¥Ù¥ë¤Ëµ½Ò¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E933: Function was deleted: %s"
+msgstr "E933: ´Ø¿ô¤Ïºï½ü¤µ¤ì¤Þ¤·¤¿: %s"
+
+msgid "E934: Cannot jump to a buffer that does not have a name"
+msgstr "E934: ̾Á°¤Î̵¤¤¥Ð¥Ã¥Õ¥¡¤Ø¤Ï¥¸¥ã¥ó¥×¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E935: invalid submatch number: %d"
+msgstr "E935: ̵¸ú¤Ê¥µ¥Ö¥Þ¥Ã¥ÁÈÖ¹æ¤Ç¤¹: %d"
+
+msgid "E936: Cannot delete the current group"
+msgstr "E936: ¸½ºß¤Î¥°¥ë¡¼¥×¤Ïºï½ü¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E937: Attempt to delete a buffer that is in use: %s"
+msgstr "E937: »ÈÍÑÃæ¤Î¥Ð¥Ã¥Õ¥¡¤òºï½ü¤·¤è¤¦¤È»î¤ß¤Þ¤·¤¿: %s"
+
+#, c-format
+msgid "E938: Duplicate key in JSON: \"%s\""
+msgstr "E938: JSON¤Ë½ÅÊ£¥¡¼¤¬¤¢¤ê¤Þ¤¹: \"%s\""
+
+msgid "E939: Positive count required"
+msgstr "E939: Àµ¤Î¥«¥¦¥ó¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E940: Cannot lock or unlock variable %s"
+msgstr "E940: ÊÑ¿ô %s ¤Ï¥í¥Ã¥¯¤Þ¤¿¤Ï¥¢¥ó¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+msgid "E941: already started a server"
+msgstr "E941: ¥µ¡¼¥Ð¡¼¤Ï´û¤Ë³«»Ï¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E942: +clientserver feature not available"
+msgstr "E942: +clientserver µ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
+msgstr ""
+"E943: ¥³¥Þ¥ó¥É¥Æ¡¼¥Ö¥ë¤ò¹¹¿·¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡¢'make cmdidxs' ¤ò¼Â¹Ô¤·¤Æ¤¯¤À"
+"¤µ¤¤"
+
+msgid "E944: Reverse range in character class"
+msgstr "E944: ʸ»ú¥¯¥é¥¹¤ÎÈϰϤ¬µÕ¤Ç¤¹"
+
+msgid "E945: Range too large in character class"
+msgstr "E945: ʸ»ú¥¯¥é¥¹¤ÎÈϰϤ¬Â礤¹¤®¤Þ¤¹"
+
+msgid "E946: Cannot make a terminal with running job modifiable"
+msgstr "E946: ¼Â¹ÔÃæ¤Î¥¸¥ç¥Ö¤¬¤¢¤ëüËö¤ÏÊѹ¹²Äǽ¤Ë¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E947: Job still running in buffer \"%s\""
+msgstr "E947: ¥¸¥ç¥Ö¤Ï¥Ð¥Ã¥Õ¥¡ \"%s\" ¤Ç¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹"
+
+msgid "E948: Job still running"
+msgstr "E948: ¥¸¥ç¥Ö¤Ï¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹"
+
+msgid "E948: Job still running (add ! to end the job)"
+msgstr "E948: ¥¸¥ç¥Ö¤Ï¤Þ¤À¼Â¹ÔÃæ¤Ç¤¹ (! ¤òÄɲäǥ¸¥ç¥Ö¤ò½ªÎ»)"
+
+msgid "E949: File changed while writing"
+msgstr "E949: ½ñ¹þ¤ßÃæ¤Ë¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E950: Cannot convert between %s and %s"
+msgstr "E950: %s ¤È %s ¤Î´Ö¤ÇÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E951: \\% value too large"
+msgstr "E951: \\% Ãͤ¬Â礲᤮¤Þ¤¹"
+
+msgid "E952: Autocommand caused recursive behavior"
+msgstr "E952: ¼«Æ°¥³¥Þ¥ó¥É¤¬ºÆµ¢¤ò°ú¤µ¯¤³¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E953: File exists: %s"
+msgstr "E953: ¥Õ¥¡¥¤¥ë¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s"
+
+msgid "E954: 24-bit colors are not supported on this environment"
+msgstr "E954: 24bit¿§¤Ï¤³¤Î´Ä¶¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E955: Not a terminal buffer"
+msgstr "E955: üËö¥Ð¥Ã¥Õ¥¡¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E956: Cannot use pattern recursively"
+msgstr "E956: ¥Ñ¥¿¡¼¥ó¤òºÆµ¢Åª¤Ë»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
msgid "E957: Invalid window number"
msgstr "E957: ̵¸ú¤Ê¥¦¥£¥ó¥É¥¦ÈÖ¹æ¤Ç¤¹"
+msgid "E958: Job already finished"
+msgstr "E958: ¥¸¥ç¥Ö¤Ï´û¤Ë½ªÎ»¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E959: Invalid diff format."
+msgstr "E959: ̵¸ú¤Êdiff·Á¼°¤Ç¤¹"
+
+msgid "E960: Problem creating the internal diff"
+msgstr "E960: ÆâÉôdiffºîÀ®»þ¤ËÌäÂ꤬ȯÀ¸¤·¤Þ¤·¤¿"
+
+msgid "E961: no line number to use for \"<sflnum>\""
+msgstr "E961: \"<sflnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó"
+
#, c-format
-msgid "E686: Argument of %s must be a List"
-msgstr "E686: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È·¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+msgid "E962: Invalid action: '%s'"
+msgstr "E962: ̵¸ú¤ÊÁàºî¤Ç¤¹: '%s'"
+
+#, c-format
+msgid "E963: setting %s to value with wrong type"
+msgstr "E963: %s ¤ò´Ö°ã¤Ã¤¿·¿¤ÎÃͤÇÀßÄꤷ¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E964: Invalid column number: %ld"
+msgstr "E964: ̵¸ú¤ÊÎóÈÖ¹æ¤Ç¤¹: %ld"
+
+msgid "E965: missing property type name"
+msgstr "E965: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥×̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E966: Invalid line number: %ld"
+msgstr "E966: ̵¸ú¤Ê¹ÔÈÖ¹æ¤Ç¤¹: %ld"
+
+msgid "E967: text property info corrupted"
+msgstr "E967: ¥Æ¥¥¹¥È¥×¥í¥Ñ¥Æ¥£¾ðÊ󤬲õ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E968: Need at least one of 'id' or 'type'"
+msgstr "E968: ºÇÄã 1 ¸Ä¤Î 'id' ¤Þ¤¿¤Ï 'type' ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E969: Property type %s already defined"
+msgstr "E969: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥× %s ¤Ï´û¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E970: Unknown highlight group name: '%s'"
+msgstr "E970: ̤ÃΤΥϥ¤¥é¥¤¥È¥°¥ë¡¼¥×̾: '%s'"
+
+#, c-format
+msgid "E971: Property type %s does not exist"
+msgstr "E971: ¥×¥í¥Ñ¥Æ¥£¥¿¥¤¥× %s ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E972: Blob value does not have the right number of bytes"
+msgstr "E972: BlobÃͤΥХ¤¥È¿ô¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E973: Blob literal should have an even number of hex characters"
+msgstr "E973: Blob¥ê¥Æ¥é¥ë¤Ï¶ö¿ô¸Ä¤Î16¿Ê¿ôʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E974: Using a Blob as a Number"
+msgstr "E974: Blob·¿¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E975: Using a Blob as a Float"
+msgstr "E975: Blob·¿¤òÉâÆ°¾®¿ôÅÀ¿ô¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E976: Using a Blob as a String"
+msgstr "E976: Blob·¿¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E977: Can only compare Blob with Blob"
+msgstr "E977: Blob·¿¤ÏBlob·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó"
+
+msgid "E978: Invalid operation for Blob"
+msgstr "E978: Blob·¿¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
+
+#, c-format
+msgid "E979: Blob index out of range: %ld"
+msgstr "E979: Blob¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬Èϰϳ°¤Ç¤¹: %ld"
+
+msgid "E980: lowlevel input not supported"
+msgstr "E980: Äã¥ì¥Ù¥ëÆþÎϤϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E981: Command not allowed in rvim"
+msgstr "E981: rvim¤Ç¤Ï¤³¤Î¥³¥Þ¥ó¥É¤ò»È¤¨¤Þ¤»¤ó"
+
+msgid "E982: ConPTY is not available"
+msgstr "E982: ConPTY ¤¬Ìµ¸ú¤Ç¤¹"
+
+#, c-format
+msgid "E983: Duplicate argument: %s"
+msgstr "E983: °ú¿ô¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E984: :scriptversion used outside of a sourced file"
+msgstr "E984: :scriptversion ¤¬¼è¹þ¤ß¥¹¥¯¥ê¥×¥È°Ê³°¤Ç»ÈÍѤµ¤ì¤Þ¤·¤¿"
+
+msgid "E985: .= is not supported with script version >= 2"
+msgstr "E985: .= ¤Ï¥¹¥¯¥ê¥×¥È¥Ð¡¼¥¸¥ç¥ó 2 °Ê¾å¤Ç¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E986: cannot modify the tag stack within tagfunc"
+msgstr "E986: tagfuncÆâ¤Î¥¿¥°¥¹¥¿¥Ã¥¯¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E987: invalid return value from tagfunc"
+msgstr "E987: tagfunc¤«¤é¤ÎÌá¤êÃͤ¬Ìµ¸ú¤Ç¤¹"
+
+msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
+msgstr "E988: GUI¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹¡£gvim.exe¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¡£"
+
+msgid "E989: Non-default argument follows default argument"
+msgstr "E989: Èó¥Ç¥Õ¥©¥ë¥È°ú¿ô¤¬¥Ç¥Õ¥©¥ë¥È°ú¿ô¤Î¸å¤Ë¤¢¤ê¤Þ¤¹"
+
+#, c-format
+msgid "E990: Missing end marker '%s'"
+msgstr "E990: ½ªÃ¼¥Þ¡¼¥«¡¼¤¬¤¢¤ê¤Þ¤»¤ó '%s'"
+
+msgid "E991: cannot use =<< here"
+msgstr "E991: ¤³¤³¤Ç¤Ï =<< ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
+msgstr "E992: 'modelineexpr' ¤¬¥ª¥Õ¤Î»þ modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E993: window %d is not a popup window"
+msgstr "E993: ¥¦¥£¥ó¥É¥¦ %d ¤Ï¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E994: Not allowed in a popup window"
+msgstr "E994: ¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+msgid "E995: Cannot modify existing variable"
+msgstr "E995: ´û¸¤ÎÊÑ¿ô¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E996: Cannot lock a range"
+msgstr "E996: ÈϰϤϥí¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+msgid "E996: Cannot lock an option"
+msgstr "E996: ¥ª¥×¥·¥ç¥ó¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+msgid "E996: Cannot lock a list or dict"
+msgstr "E996: ¥ê¥¹¥È¤¢¤ë¤¤¤Ï¼½ñ¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+msgid "E996: Cannot lock an environment variable"
+msgstr "E996: ´Ä¶ÊÑ¿ô¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+msgid "E996: Cannot lock a register"
+msgstr "E996: ¥ì¥¸¥¹¥¿¤Ï¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E997: Tabpage not found: %d"
+msgstr "E997: ¥¿¥Ö¥Ú¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %d"
+
+#, c-format
+msgid "E998: Reduce of an empty %s with no initial value"
+msgstr "E998: reduce ¤¬½é´üÃÍ̵¤·¤Ç¶õ¤Î %s ¤Ç¸Æ¤Ð¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E999: scriptversion not supported: %d"
+msgstr "E999: scriptversion ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %d"
+
+#, c-format
+msgid "E1001: Variable not found: %s"
+msgstr "E1001: ÊÑ¿ô¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1002: Syntax error at %s"
+msgstr "E1002: %s ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E1003: Missing return value"
+msgstr "E1003: Ìá¤êÃͤ¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1004: White space required before and after '%s' at \"%s\""
+msgstr "E1004: '%s' ¤ÎÁ°¸å¤Ë¥¹¥Ú¡¼¥¹¤¬É¬ÍפǤ¹ (\"%s\")"
+
+msgid "E1005: Too many argument types"
+msgstr "E1005: °ú¿ô¤Î·¿¤¬Â¿²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E1006: %s is used as an argument"
+msgstr "E1006: %s ¤¬°ú¿ô¤È¤·¤Æ»È¤ï¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E1007: Mandatory argument after optional argument"
+msgstr "E1007: ¥ª¥×¥·¥ç¥ó°ú¿ô¤Î¸å¤Ëɬ¿Ü°ú¿ô¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E1008: Missing <type>"
+msgstr "E1008: <type> ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1009: Missing > after type"
+msgstr "E1009: ·¿¤Î¸å¤Ë > ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1010: Type not recognized: %s"
+msgstr "E1010: ·¿¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1011: Name too long: %s"
+msgstr "E1011: ̾Á°¤¬Ä¹²á¤®¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s"
+msgstr "E1012: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s in %s"
+msgstr "E1012: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿ (%s Æâ)"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s"
+msgstr "E1013: °ú¿ô %d: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1013: °ú¿ô %d: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿ (%s Æâ)"
+
+#, c-format
+msgid "E1014: Invalid key: %s"
+msgstr "E1014: ̵¸ú¤Ê¥¡¼¤Ç¤¹: %s"
+
+#, c-format
+msgid "E1015: Name expected: %s"
+msgstr "E1015: ̾Á°¤¬Í׵ᤵ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1016: Cannot declare a %s variable: %s"
+msgstr "E1016: %sÊÑ¿ô¤ÏÀë¸À¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1016: Cannot declare an environment variable: %s"
+msgstr "E1016: ´Ä¶ÊÑ¿ô¤ÏÀë¸À¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1017: Variable already declared: %s"
+msgstr "E1017: ÊÑ¿ô¤Ï´û¤ËÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1018: Cannot assign to a constant: %s"
+msgstr "E1018: Äê¿ô¤Ë¤ÏÂåÆþ¤Ç¤¤Þ¤»¤ó: %s"
+
+msgid "E1019: Can only concatenate to string"
+msgstr "E1019: ʸ»úÎó¤È¤·¤«·ë¹ç¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1020: Cannot use an operator on a new variable: %s"
+msgstr "E1020: ¿·µ¬¤ÎÊÑ¿ô¤ËÂФ·¤Æ±é»»»Ò¤ò»ÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E1021: Const requires a value"
+msgstr "E1021: const ¤Ë¤ÏÃͤ¬É¬ÍפǤ¹"
+
+msgid "E1022: Type or initialization required"
+msgstr "E1022: ·¿¤«½é´ü²½¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1023: Using a Number as a Bool: %lld"
+msgstr "E1023: ¿ôÃͤòBool¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹: %lld"
+
+msgid "E1024: Using a Number as a String"
+msgstr "E1024: ¿ôÃͤòʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E1025: Using } outside of a block scope"
+msgstr "E1025: ¥Ö¥í¥Ã¥¯¥¹¥³¡¼¥×¤Î³°Â¦¤Ç } ¤¬»ÈÍѤµ¤ì¤Þ¤·¤¿"
+
+msgid "E1026: Missing }"
+msgstr "E1026: } ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1027: Missing return statement"
+msgstr "E1027: return ʸ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1028: Compiling :def function failed"
+msgstr "E1028: :def ´Ø¿ô¤Î¥³¥ó¥Ñ¥¤¥ë¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+#, c-format
+msgid "E1029: Expected %s but got %s"
+msgstr "E1029: %s ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬ %s ¤Ç¤·¤¿"
+
+#, c-format
+msgid "E1030: Using a String as a Number: \"%s\""
+msgstr "E1030: ʸ»úÎó¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹: \"%s\""
+
+msgid "E1031: Cannot use void value"
+msgstr "E1031: void ÃͤϻÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1032: Missing :catch or :finally"
+msgstr "E1032: :catch ¤Þ¤¿¤Ï :finally ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1033: Catch unreachable after catch-all"
+msgstr "E1033: Á´¤Æ¤òcatch¤·¤¿¸å¤Îcatch¤Ë¤ÏÅþ㤷¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1034: Cannot use reserved name %s"
+msgstr "E1034: ͽÌó̾ %s ¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1035: % requires number arguments"
+msgstr "E1035: % ¤Ë¤Ï¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1036: %c requires number or float arguments"
+msgstr "E1036: %c ¤Ë¤Ï¿ôÃͤޤ¿¤ÏÉâÆ°¾®¿ôÅÀ¿ô¤Î°ú¿ô¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1037: Cannot use \"%s\" with %s"
+msgstr "E1037: \"%s\" ¤ò %s ¤ÈÁȤ߹ç¤ï¤»¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E1038: \"vim9script\" can only be used in a script"
+msgstr "E1038: \"vim9script\" ¤Ï¥¹¥¯¥ê¥×¥È¤ÎÃæ¤Ç¤Î¤ß»ÈÍѤǤ¤Þ¤¹"
+
+msgid "E1039: \"vim9script\" must be the first command in a script"
+msgstr ""
+"E1039: \"vim9script\" ¤Ï¥¹¥¯¥ê¥×¥È¤ÎÃæ¤ÎºÇ½é¤Î¥³¥Þ¥ó¥É¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E1040: Cannot use :scriptversion after :vim9script"
+msgstr "E1040: :vim9script ¤Î¸å¤Ë :scriptversion ¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1041: Redefining script item %s"
+msgstr "E1041: ¥¹¥¯¥ê¥×¥ÈÍ×ÁÇ %s ¤òºÆÄêµÁ¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E1042: Export can only be used in vim9script"
+msgstr "E1042: export ¤Ï vim9script ¤ÎÃæ¤Ç¤Î¤ß»ÈÍѤǤ¤Þ¤¹"
+
+msgid "E1043: Invalid command after :export"
+msgstr "E1043: :export ¤Î¸å¤Ë̵¸ú¤Ê¥³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E1044: Export with invalid argument"
+msgstr "E1044: export ¤Ë̵¸ú¤Ê°ú¿ô¤¬ÅϤµ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E1047: Syntax error in import: %s"
+msgstr "E1047: import Æâ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1048: Item not found in script: %s"
+msgstr "E1048: Í×ÁǤ¬¥¹¥¯¥ê¥×¥ÈÆâ¤Ç¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1049: Item not exported in script: %s"
+msgstr "E1049: Í×ÁǤ¬¥¹¥¯¥ê¥×¥ÈÆâ¤Ç¥¨¥¯¥¹¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1050: Colon required before a range: %s"
+msgstr "E1050: ÈϰϤÎÁ°¤Ë¤Ï¥³¥í¥ó¤¬É¬ÍפǤ¹: %s"
+
+msgid "E1051: Wrong argument type for +"
+msgstr "E1051: + ¤Î°ú¿ô¤Î·¿¤¬°ã¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E1052: Cannot declare an option: %s"
+msgstr "E1052: ¥ª¥×¥·¥ç¥ó¤ÏÀë¸À¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1053: Could not import \"%s\""
+msgstr "E1053: \"%s\" ¤ò¥¤¥ó¥Ý¡¼¥È¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#, c-format
+msgid "E1054: Variable already declared in the script: %s"
+msgstr "E1054: ÊÑ¿ô¤Ï´û¤Ë¥¹¥¯¥ê¥×¥ÈÆâ¤ÇÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E1055: Missing name after ..."
+msgstr "E1055: ... ¤Î¸å¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1056: Expected a type: %s"
+msgstr "E1056: °Ê²¼¤Î·¿¤¬É¬ÍפǤ¹: %s"
+
+msgid "E1057: Missing :enddef"
+msgstr "E1057: :enddef ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1058: Function nesting too deep"
+msgstr "E1058: ´Ø¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+
+#, c-format
+msgid "E1059: No white space allowed before colon: %s"
+msgstr "E1059: ¥³¥í¥ó¤ÎÁ°¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1060: Expected dot after name: %s"
+msgstr "E1060: ̾Á°¤Î¸å¤Ë¥É¥Ã¥È¤¬É¬ÍפǤ¹: %s"
+
+#, c-format
+msgid "E1061: Cannot find function %s"
+msgstr "E1061: ´Ø¿ô %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+msgid "E1062: Cannot index a Number"
+msgstr "E1062: ¿ôÃͤϥ¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1063: Type mismatch for v: variable"
+msgstr "E1063: v: ÊÑ¿ô¤Î·¿¤¬°ìÃפ·¤Þ¤»¤ó"
+
+msgid "E1064: Yank register changed while using it"
+msgstr "E1064: ¥ä¥ó¥¯¥ì¥¸¥¹¥¿¤¬»ÈÍÑÃæ¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+#, c-format
+msgid "E1066: Cannot declare a register: %s"
+msgstr "E1066: ¥ì¥¸¥¹¥¿¤ÏÀë¸À¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1067: Separator mismatch: %s"
+msgstr "E1067: ¶èÀڤ꤬°ìÃפ·¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1068: No white space allowed before '%s': %s"
+msgstr "E1068: '%s' ¤ÎÁ°¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1069: White space required after '%s': %s"
+msgstr "E1069: '%s' ¤Î¸å¤Ë¥¹¥Ú¡¼¥¹¤¬É¬ÍפǤ¹: %s"
+
+#, c-format
+msgid "E1071: Invalid string for :import: %s"
+msgstr "E1071: :import ¤ËÉÔÀµ¤Êʸ»úÎ󤬤¢¤ê¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1072: Cannot compare %s with %s"
+msgstr "E1072: %s ¤È %s ¤òÈæ³Ó¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1073: Name already defined: %s"
+msgstr "E1073: ̾Á°¤Ï´û¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E1074: No white space allowed after dot"
+msgstr "E1074: ¥É¥Ã¥È¤Î¸å¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1075: Namespace not supported: %s"
+msgstr "E1075: ¥Í¡¼¥à¥¹¥Ú¡¼¥¹¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó: %s"
+
+msgid "E1076: This Vim is not compiled with float support"
+msgstr "E1076: ¤³¤ÎVim¤ÏÉâÆ°¾®¿ôÅÀ¿ô¥µ¥Ý¡¼¥ÈÉÕ¤¤Ç¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1077: Missing argument type for %s"
+msgstr "E1077: %s ¤Î°ú¿ô¤Î·¿¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1081: Cannot unlet %s"
+msgstr "E1081: %s ¤ò unlet ¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1083: Missing backtick"
+msgstr "E1083: ¥Ð¥Ã¥¯¥¯¥©¡¼¥È¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1084: Cannot delete Vim9 script function %s"
+msgstr "E1084: Vim9 ¥¹¥¯¥ê¥×¥È´Ø¿ô¤Ïºï½ü¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1085: Not a callable type: %s"
+msgstr "E1085: ¸Æ½Ð¤·²Äǽ¤Ê·¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+msgid "E1086: Function reference invalid"
+msgstr "E1086: ´Ø¿ô»²¾È¤¬ÉÔÀµ¤Ç¤¹"
+
+msgid "E1087: Cannot use an index when declaring a variable"
+msgstr "E1087: ÊÑ¿ô¤òÀë¸À¤¹¤ëºÝ¤Ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1089: Unknown variable: %s"
+msgstr "E1089: ÉÔÌÀ¤ÊÊÑ¿ô: %s"
+
+#, c-format
+msgid "E1090: Cannot assign to argument %s"
+msgstr "E1090: °ú¿ô %s ¤ËÂФ·¤ÆÂåÆþ¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1091: Function is not compiled: %s"
+msgstr "E1091: ´Ø¿ô¤Ï¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1093: Expected %d items but got %d"
+msgstr "E1093: %d ¸Ä¤ÎÍ×ÁǤ¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬ %d ¸Ä¤Ç¤·¤¿"
+
+msgid "E1094: Import can only be used in a script"
+msgstr "E1094: import ¤Ï¥¹¥¯¥ê¥×¥È¤ÎÃæ¤Ç¤Î¤ß»ÈÍѤǤ¤Þ¤¹"
+
+msgid "E1095: Unreachable code after :return"
+msgstr "E1095: :return ¤Î¸å¤ËÅþãÉÔǽ¤Ê¥³¡¼¥É¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E1096: Returning a value in a function without a return type"
+msgstr "E1096: Ìá¤êÃͤη¿¤¬¤Ê¤¤´Ø¿ô¤ÇÃͤòÊÖ¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E1097: Line incomplete"
+msgstr "E1097: ¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
+
+msgid "E1098: String, List or Blob required"
+msgstr "E1098: ʸ»úÎó·¿¡¢¥ê¥¹¥È·¿¤Þ¤¿¤ÏBlob·¿¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1099: Unknown error while executing %s"
+msgstr "E1099: %s ¤ò¼Â¹ÔÃæ¤Ë̤ÃΤΥ¨¥é¡¼¤Ç¤¹"
+
+#, c-format
+msgid "E1100: Command not supported in Vim9 script (missing :var?): %s"
+msgstr ""
+"E1100: ¥³¥Þ¥ó¥É¤¬ Vim9 ¥¹¥¯¥ê¥×¥È¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (:var ¤¬¤Ê¤¤?): %s"
+
+#, c-format
+msgid "E1101: Cannot declare a script variable in a function: %s"
+msgstr "E1101: ´Ø¿ôÆâ¤Ç¥¹¥¯¥ê¥×¥ÈÊÑ¿ô¤ÏÀë¸À¤Ç¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1102: Lambda function not found: %s"
+msgstr "E1102: ¥é¥à¥À´Ø¿ô¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+msgid "E1103: Dictionary not set"
+msgstr "E1103: ¼½ñ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1104: Missing >"
+msgstr "E1104: > ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1105: Cannot convert %s to string"
+msgstr "E1105: %s ¤òʸ»úÎó¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1106: One argument too many"
+msgstr "E1106: °ú¿ô¤¬ 1 ¸Ä¿¤¤¤Ç¤¹"
+
+#, c-format
+msgid "E1106: %d arguments too many"
+msgstr "E1106: °ú¿ô¤¬ %d ¸Ä¿¤¤¤Ç¤¹"
+
+msgid "E1107: String, List, Dict or Blob required"
+msgstr "E1107: ʸ»úÎó·¿¡¢¥ê¥¹¥È·¿¡¢¼½ñ·¿¤Þ¤¿¤ÏBlob·¿¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1108: Item not found: %s"
+msgstr "E1108: Í×ÁǤ¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1109: List item %d is not a List"
+msgstr "E1109: ¥ê¥¹¥È¤ÎÍ×ÁÇ %d ¤Ï¥ê¥¹¥È¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1110: List item %d does not contain 3 numbers"
+msgstr "E1110: ¥ê¥¹¥È¤ÎÍ×ÁÇ %d ¤Ï¿ôÃͤò 3 ¸Ä´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1111: List item %d range invalid"
+msgstr "E1111: ¥ê¥¹¥È¤ÎÍ×ÁÇ %d ¤ÎÈϰϤ¬ÉÔÀµ¤Ç¤¹"
+
+#, c-format
+msgid "E1112: List item %d cell width invalid"
+msgstr "E1112: ¥ê¥¹¥È¤ÎÍ×ÁÇ %d ¤Î¥»¥ëÉý¤¬ÉÔÀµ¤Ç¤¹"
+
+#, c-format
+msgid "E1113: Overlapping ranges for 0x%lx"
+msgstr "E1113: 0x%lx ¤ÎÈϰϤ¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹"
+
+msgid "E1114: Only values of 0x100 and higher supported"
+msgstr "E1114: 0x100 °Ê¾å¤ÎÃͤ·¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1115: \"assert_fails()\" fourth argument must be a number"
+msgstr "E1115: \"assert_fails()\" ¤ÎÂè4°ú¿ô¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E1116: \"assert_fails()\" fifth argument must be a string"
+msgstr "E1116: \"assert_fails()\" ¤ÎÂè5°ú¿ô¤Ïʸ»úÎó¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E1117: Cannot use ! with nested :def"
+msgstr "E1117: ! ¤òÆþ¤ì»Ò¤Ë¤Ê¤Ã¤¿ :def ¤ÈÁȤ߹ç¤ï¤»¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E1118: Cannot change list"
+msgstr "E1118: ¥ê¥¹¥È¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1119: Cannot change list item"
+msgstr "E1119: ¥ê¥¹¥È¤ÎÍ×ÁǤòÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1120: Cannot change dict"
+msgstr "E1120: ¼½ñ¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1121: Cannot change dict item"
+msgstr "E1121: ¼½ñ¤ÎÍ×ÁǤòÊѹ¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1122: Variable is locked: %s"
+msgstr "E1122: ÊÑ¿ô¤¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1123: Missing comma before argument: %s"
+msgstr "E1123: °ú¿ô¤ÎÁ°¤Ë¥³¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1124: \"%s\" cannot be used in legacy Vim script"
+msgstr "E1124: \"%s\" ¤ÏµìÍè¤Î Vim ¥¹¥¯¥ê¥×¥È¤ÎÃæ¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1125: Final requires a value"
+msgstr "E1125: final ¤Ë¤ÏÃͤ¬É¬ÍפǤ¹"
+
+msgid "E1126: Cannot use :let in Vim9 script"
+msgstr "E1126: Vim9 ¥¹¥¯¥ê¥×¥È¤Ç¤Ï :let ¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1127: Missing name after dot"
+msgstr "E1127: ¥É¥Ã¥È¤Î¸å¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1128: } without {"
+msgstr "E1128: { ¤Î¤Ê¤¤ } ¤¬¤¢¤ê¤Þ¤¹"
+
+msgid "E1129: Throw with empty string"
+msgstr "E1129: ¶õʸ»úÎó¤¬ throw ¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+msgid "E1130: Cannot add to null list"
+msgstr "E1130: null ¥ê¥¹¥È¤Ë¤ÏÄɲäǤ¤Þ¤»¤ó"
+
+msgid "E1131: Cannot add to null blob"
+msgstr "E1131: null blob ¤Ë¤ÏÄɲäǤ¤Þ¤»¤ó"
+
+msgid "E1132: Missing function argument"
+msgstr "E1132: °ú¿ô¤Ë´Ø¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1133: Cannot extend a null dict"
+msgstr "E1133: null ¼½ñ¤Ï³ÈÄ¥¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1134: Cannot extend a null list"
+msgstr "E1134: null ¥ê¥¹¥È¤Ï³ÈÄ¥¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1135: Using a String as a Bool: \"%s\""
+msgstr "E1135: ʸ»úÎó¤òBool¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹: \"%s\""
+
+msgid "E1136: <Cmd> mapping must end with <CR> before second <Cmd>"
+msgstr ""
+"E1136: <Cmd> ¥Þ¥Ã¥Ô¥ó¥°¤Ï¼¡¤Î <Cmd> ¤ÎÁ°¤Ë <CR> ¤Ç½ª¤ï¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1137: <Cmd> mapping must not include %s key"
+msgstr "E1137: <Cmd> ¥Þ¥Ã¥Ô¥ó¥°¤Ï %s ¥¡¼¤ò´Þ¤ó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó"
+
+msgid "E1138: Using a Bool as a Number"
+msgstr "E1138: Bool¤ò¿ôÃͤȤ·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
+
+msgid "E1139: Missing matching bracket after dict key"
+msgstr "E1139: ¼½ñ¤Î¥¡¼¤Î¸å¤Ë°ìÃפ¹¤ë³Ñ³ç¸Ì¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1140: :for argument must be a sequence of lists"
+msgstr "E1140: :for ¤Î°ú¿ô¤Ï¥ê¥¹¥È¤Î¥·¡¼¥±¥ó¥¹¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E1141: Indexable type required"
+msgstr "E1141: ¥¤¥ó¥Ç¥Ã¥¯¥¹²Äǽ¤Ê·¿¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1143: Empty expression: \"%s\""
+msgstr "E1143: ¶õ¤Î¼°¤Ç¤¹: \"%s\""
+
+#, c-format
+msgid "E1144: Command \"%s\" is not followed by white space: %s"
+msgstr "E1144: ¥³¥Þ¥ó¥É \"%s\" ¤Î¸å¤Ë¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1145: Missing heredoc end marker: %s"
+msgstr "E1145: heredoc¤Î½ªÃ¼¥Þ¡¼¥«¡¼¤¬¤¢¤ê¤Þ¤»¤ó '%s'"
+
+#, c-format
+msgid "E1146: Command not recognized: %s"
+msgstr "E1146: ¥³¥Þ¥ó¥É¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
+
+msgid "E1147: List not set"
+msgstr "E1147: ¥ê¥¹¥È¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1148: Cannot index a %s"
+msgstr "E1148: %s ¤ò¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1149: Script variable is invalid after reload in function %s"
+msgstr "E1149: ´Ø¿ô %s Æâ¤Ç¥ê¥í¡¼¥É¸å¤Î¥¹¥¯¥ê¥×¥ÈÊÑ¿ô¤Ï̵¸ú¤Ç¤¹"
+
+msgid "E1150: Script variable type changed"
+msgstr "E1150: ¥¹¥¯¥ê¥×¥ÈÊÑ¿ô¤Î·¿¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+msgid "E1151: Mismatched endfunction"
+msgstr "E1151: endfunction ¤¬°ìÃפ·¤Þ¤»¤ó"
+
+msgid "E1152: Mismatched enddef"
+msgstr "E1152: enddef ¤¬°ìÃפ·¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1153: Invalid operation for %s"
+msgstr "E1153: %s ¤Ë¤Ï̵¸ú¤ÊÁàºî¤Ç¤¹"
+
+msgid "E1154: Divide by zero"
+msgstr "E1154: ¥¼¥í½ü»»"
+
+msgid "E1155: Cannot define autocommands for ALL events"
+msgstr "E1155: Á´¤Æ¤Î¥¤¥Ù¥ó¥È¤ËÂФ·¤Æ¤Î¼«Æ°¥³¥Þ¥ó¥É¤ÏÄêµÁ¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1156: Cannot change the argument list recursively"
+msgstr "E1156: °ú¿ô¥ê¥¹¥È¤òºÆµ¢Åª¤ËÊѹ¹¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1157: Missing return type"
+msgstr "E1157: Ìá¤êÃͤη¿¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1158: Cannot use flatten() in Vim9 script"
+msgstr "E1158: Vim9 ¥¹¥¯¥ê¥×¥È¤Ç¤Ï flatten() ¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1159: Cannot split a window when closing the buffer"
+msgstr "E1159: ¥Ð¥Ã¥Õ¥¡¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Ë¥¦¥£¥ó¥É¥¦¤òʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1160: Cannot use a default for variable arguments"
+msgstr "E1160: ²ÄÊѰú¿ô¤ËÂФ·¤Æ¥Ç¥Õ¥©¥ë¥È¤ò»ÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1161: Cannot json encode a %s"
+msgstr "E1161: %s ¤ò json ¥¨¥ó¥³¡¼¥É¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1162: Register name must be one character: %s"
+msgstr "E1162: ¥ì¥¸¥¹¥¿Ì¾¤Ï1ʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s"
+msgstr "E1163: ÊÑ¿ô %d: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1163: ÊÑ¿ô %d: ·¿¤¬ÉÔ°ìÃפǤ¹¡£%s ¤¬É¬ÍפǤ¹¤¬ %s ¤Ç¤·¤¿ (%s Æâ)"
+
+msgid "E1164: vim9cmd must be followed by a command"
+msgstr "E1164: vim9cmd ¤Ï¸å¤í¤Ë¥³¥Þ¥ó¥É¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1165: Cannot use a range with an assignment: %s"
+msgstr "E1165: ÂåÆþ¤ÇÈϰϤϻÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E1166: Cannot use a range with a dictionary"
+msgstr "E1166: ¼½ñ¤ÇÈϰϤϻÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1167: Argument name shadows existing variable: %s"
+msgstr "E1167: °ú¿ô̾¤¬´û¸¤ÎÊÑ¿ô¤ò±£¤·¤Æ¤¤¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1168: Argument already declared in the script: %s"
+msgstr "E1168: °ú¿ô¤Ï´û¤Ë¥¹¥¯¥ê¥×¥ÈÆâ¤ÇÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E1169: 'import * as {name}' not supported here"
+msgstr "E1169: 'import * as {name}' ¤Ï¤³¤³¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1170: Cannot use #{ to start a comment"
+msgstr "E1170: ¥³¥á¥ó¥È¤Î³«»Ï¤Ë #{ ¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1171: Missing } after inline function"
+msgstr "E1171: ¥¤¥ó¥é¥¤¥ó´Ø¿ô¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+msgid "E1172: Cannot use default values in a lambda"
+msgstr "E1172: ¥é¥à¥À¤Ç¤Ï¥Ç¥Õ¥©¥ë¥ÈÃͤò»ÈÍѤǤ¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1173: Text found after %s: %s"
+msgstr "E1173: %s ¤Î¸å¤Ëʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1174: String required for argument %d"
+msgstr "E1174: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1175: Non-empty string required for argument %d"
+msgstr "E1175: °ú¿ô %d ¤Ë¤Ï¶õ¤Ç¤Ï¤Ê¤¤Ê¸»úÎó¤¬É¬ÍפǤ¹"
+
+msgid "E1176: Misplaced command modifier"
+msgstr "E1176: ´Ö°ã¤Ã¤¿¥³¥Þ¥ó¥É½¤¾þ»Ò¤Ç¤¹"
+
+#, c-format
+msgid "E1177: For loop on %s not supported"
+msgstr "E1177: %s ¤ËÂФ¹¤ë for ¥ë¡¼¥×¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1178: Cannot lock or unlock a local variable"
+msgstr "E1178: ¥í¡¼¥«¥ëÊÑ¿ô¤Ï¥í¥Ã¥¯¤Þ¤¿¤Ï¥¢¥ó¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid ""
+"E1179: Failed to extract PWD from %s, check your shell's config related to "
+"OSC 7"
+msgstr ""
+"E1179: %s ¤«¤é PWD ¤òÃê½Ð¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£OSC 7 ´ØÏ¢¤Î¥·¥§¥ë¤ÎÀßÄê¤ò³Îǧ"
+"¤·¤Æ¤¯¤À¤µ¤¤"
+
+#, c-format
+msgid "E1180: Variable arguments type must be a list: %s"
+msgstr "E1180: ²ÄÊѰú¿ô¤Î·¿¤Ï¥ê¥¹¥È¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+msgid "E1181: Cannot use an underscore here"
+msgstr "E1181: ¤³¤³¤Ç¤Ï¥¢¥ó¥À¡¼¥¹¥³¥¢¤Ï»È¤¨¤Þ¤»¤ó"
+
+msgid "E1182: Blob required"
+msgstr "E1182: Blob·¿¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1183: Cannot use a range with an assignment operator: %s"
+msgstr "E1183: ÂåÆþ±é»»»Ò¤ÇÈϰϤϻÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E1184: Blob not set"
+msgstr "E1184: Blob ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1185: Cannot nest :redir"
+msgstr "E1185: :redir ¤ÏÆþ¤ì»Ò¤Ë¤Ç¤¤Þ¤»¤ó"
+
+msgid "E1185: Missing :redir END"
+msgstr "E1185: :redir END ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1186: Expression does not result in a value: %s"
+msgstr "E1186: ¼°¤¬ÃͤòÊÖ¤·¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+
+msgid "E1187: Failed to source defaults.vim"
+msgstr "E1187: defaults.vim ¤ÎÆÉ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+
+msgid "E1188: Cannot open a terminal from the command line window"
+msgstr "E1188: ¥³¥Þ¥ó¥É¥é¥¤¥ó¥¦¥£¥ó¥É¥¦¤«¤éüËö¤ò³«¤¯¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1189: Cannot use :legacy with this command: %s"
+msgstr "E1189: ¤³¤Î¥³¥Þ¥ó¥É¤Ë¤Ï :legacy ¤ò»ÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E1190: One argument too few"
+msgstr "E1190: °ú¿ô¤¬ 1 ¸Ä¾¯¤Ê¤¤¤Ç¤¹"
+
+#, c-format
+msgid "E1190: %d arguments too few"
+msgstr "E1190: °ú¿ô¤¬ %d ¸Ä¾¯¤Ê¤¤¤Ç¤¹"
+
+#, c-format
+msgid "E1191: Call to function that failed to compile: %s"
+msgstr "E1191: ¥³¥ó¥Ñ¥¤¥ë¤Ë¼ºÇÔ¤·¤¿´Ø¿ô¤ò¸Æ½Ð¤½¤¦¤È¤·¤Æ¤¤¤Þ¤¹: %s"
+
+msgid "E1192: Empty function name"
+msgstr "E1192: ´Ø¿ô̾¤¬¶õ¤Ç¤¹"
+
+msgid "E1193: cryptmethod xchacha20 not built into this Vim"
+msgstr "E1193: ¤³¤Î Vim ¤Ë¤Ï°Å¹æ²½¥á¥½¥Ã¥É xchacha20 ¤¬Áȹþ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+msgid "E1194: Cannot encrypt header, not enough space"
+msgstr "E1194: ¥Ø¥Ã¥À¤ò°Å¹æ²½¤Ç¤¤Þ¤»¤ó¡¢¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
+
+msgid "E1195: Cannot encrypt buffer, not enough space"
+msgstr "E1195: ¥Ð¥Ã¥Õ¥¡¤ò°Å¹æ²½¤Ç¤¤Þ¤»¤ó¡¢¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
+
+msgid "E1196: Cannot decrypt header, not enough space"
+msgstr "E1196: ¥Ø¥Ã¥À¤òÉü¹æ¤Ç¤¤Þ¤»¤ó¡¢¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
+
+msgid "E1197: Cannot allocate_buffer for encryption"
+msgstr "E1197: °Å¹æ²½ÍѤΥХåե¡¤ò³ÎÊݤǤ¤Þ¤»¤ó"
+
+msgid "E1198: Decryption failed: Header incomplete!"
+msgstr "E1198: Éü¹æ¤Ë¼ºÇÔ: ¥Ø¥Ã¥À¤¬ÉÔ´°Á´¤Ç¤¹!"
+
+msgid "E1199: Cannot decrypt buffer, not enough space"
+msgstr "E1199: ¥Ð¥Ã¥Õ¥¡¤òÉü¹æ¤Ç¤¤Þ¤»¤ó¡¢¥¹¥Ú¡¼¥¹¤¬Â¤ê¤Þ¤»¤ó"
+
+msgid "E1200: Decryption failed!"
+msgstr "E1200: Éü¹æ¤Ë¼ºÇÔ!"
+
+msgid "E1201: Decryption failed: pre-mature end of file!"
+msgstr "E1201: Éü¹æ¤Ë¼ºÇÔ: ͽ´ü¤»¤Ì¥Õ¥¡¥¤¥ë¤Î½ª¤ï¤ê¤Ç¤¹!"
+
+#, c-format
+msgid "E1202: No white space allowed after '%s': %s"
+msgstr "E1202: '%s' ¤Î¸å¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1203: Dot can only be used on a dictionary: %s"
+msgstr "E1203: ¥É¥Ã¥È¤Ï¼½ñ¤ÎÃæ¤Ç¤Î¤ß»ÈÍѤǤ¤Þ¤¹: %s"
+
+#, c-format
+msgid "E1204: No Number allowed after .: '\\%%%c'"
+msgstr "E1204: . ¤Î¸å¤Ë¿ô»ú¤Ïµö¤µ¤ì¤Þ¤»¤ó: '\\%%%c'"
+
+msgid "E1205: No white space allowed between option and"
+msgstr "E1205: ¥ª¥×¥·¥ç¥ó¤È¤Î´Ö¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1206: Dictionary required for argument %d"
+msgstr "E1206: °ú¿ô %d ¤Ë¤Ï¼½ñ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1207: Expression without an effect: %s"
+msgstr "E1207: ¸ú²Ì¤Î¤Ê¤¤¼°¤Ç¤¹: %s"
+
+msgid "E1208: -complete used without allowing arguments"
+msgstr "E1208: -complete ¤¬°ú¿ô¤òµö²Ä¤µ¤ì¤º¤Ë»È¤ï¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E1209: Invalid value for a line number: \"%s\""
+msgstr "E1209: ¹ÔÈÖ¹æ¤È¤·¤ÆÌµ¸ú¤ÊÃͤǤ¹: \"%s\""
+
+#, c-format
+msgid "E1210: Number required for argument %d"
+msgstr "E1210: °ú¿ô %d ¤Ë¤Ï¿ôÃͤ¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1211: List required for argument %d"
+msgstr "E1211: °ú¿ô %d ¤Ë¤Ï¥ê¥¹¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1212: Bool required for argument %d"
+msgstr "E1212: °ú¿ô %d ¤Ë¤ÏBool¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1213: Redefining imported item \"%s\""
+msgstr "E1213: ¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿Í×ÁÇ \"%s\" ¤òºÆÄêµÁ¤·¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E1214: Digraph must be just two characters: %s"
+msgstr "E1214: ¥À¥¤¥°¥é¥Õ¤Ï¤Á¤ç¤¦¤É2ʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1215: Digraph must be one character: %s"
+msgstr "E1215: ¥À¥¤¥°¥é¥Õ¤Ï1ʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
+
+msgid ""
+"E1216: digraph_setlist() argument must be a list of lists with two items"
+msgstr ""
+"E1216: digraph_setlist() ¤Î°ú¿ô¤Ï2Í×ÁǤΥꥹ¥È¤Î¥ê¥¹¥È¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1217: Channel or Job required for argument %d"
+msgstr "E1217: °ú¿ô %d ¤Ë¤Ï¥Á¥ã¥Í¥ë¤Þ¤¿¤Ï¥¸¥ç¥Ö¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1218: Job required for argument %d"
+msgstr "E1218: °ú¿ô %d ¤Ë¤Ï¥¸¥ç¥Ö¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1219: Float or Number required for argument %d"
+msgstr "E1219: °ú¿ô %d ¤Ë¤ÏÉâÆ°¾®¿ôÅÀ¿ô¤Þ¤¿¤Ï¿ôÃͤ¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1220: String or Number required for argument %d"
+msgstr "E1220: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤Þ¤¿¤Ï¿ôÃͤ¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1221: String or Blob required for argument %d"
+msgstr "E1221: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤Þ¤¿¤ÏBlob¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1222: String or List required for argument %d"
+msgstr "E1222: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤Þ¤¿¤Ï¥ê¥¹¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1223: String or Dictionary required for argument %d"
+msgstr "E1223: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤Þ¤¿¤Ï¼½ñ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1224: String, Number or List required for argument %d"
+msgstr "E1224: °ú¿ô %d ¤Ë¤Ïʸ»úÎ󡢿ôÃͤޤ¿¤Ï¥ê¥¹¥È¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1225: String, List or Dictionary required for argument %d"
+msgstr "E1225: °ú¿ô %d ¤Ë¤Ïʸ»úÎ󡢥ꥹ¥È¤Þ¤¿¤Ï¼½ñ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1226: List or Blob required for argument %d"
+msgstr "E1226: °ú¿ô %d ¤Ë¤Ï¥ê¥¹¥È¤Þ¤¿¤ÏBlob¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1227: List or Dictionary required for argument %d"
+msgstr "E1227: °ú¿ô %d ¤Ë¤Ï¥ê¥¹¥È¤Þ¤¿¤Ï¼½ñ¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1228: List, Dictionary or Blob required for argument %d"
+msgstr "E1228: °ú¿ô %d ¤Ë¤Ï¥ê¥¹¥È¡¢¼½ñ¤Þ¤¿¤ÏBlob¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1229: Expected dictionary for using key \"%s\", but got %s"
+msgstr "E1229: ¼½ñ¤Î¥¡¼¤Ë \"%s\" ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬ %s ¤Ç¤·¤¿"
+
+msgid "E1230: Encryption: sodium_mlock() failed"
+msgstr "E1230: °Å¹æ²½: sodium_mlock() ¤Ë¼ºÇÔ"
+
+#, c-format
+msgid "E1231: Cannot use a bar to separate commands here: %s"
+msgstr "E1231: ¤³¤³¤Ç¥³¥Þ¥ó¥É¤ò¶èÀڤ뤿¤á¤Ë '|' ¤ò»ÈÍѤǤ¤Þ¤»¤ó: %s"
+
+msgid "E1232: Argument of exists_compiled() must be a literal string"
+msgstr "E1232: exists_compiled() ¤Î°ú¿ô¤Ï¥ê¥Æ¥é¥ëʸ»úÎó¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+msgid "E1233: exists_compiled() can only be used in a :def function"
+msgstr "E1233: exists_compiled() ¤Ï :def ´Ø¿ô¤ÎÃæ¤Ç¤Î¤ß»ÈÍѤǤ¤Þ¤¹"
+
+msgid "E1234: legacy must be followed by a command"
+msgstr "E1234: legacy ¤Ï¸å¤í¤Ë¥³¥Þ¥ó¥É¤¬É¬ÍפǤ¹"
+
+msgid "E1235: Function reference is not set"
+msgstr "E1235: ´Ø¿ô»²¾È¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1236: Cannot use %s itself, it is imported"
+msgstr "E1236: %s ¼«¿È¤ò»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡¢¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E1237: No such user-defined command in current buffer: %s"
+msgstr "E1237: ¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤Ë¤½¤Î¥æ¡¼¥¶¡¼ÄêµÁ¥³¥Þ¥ó¥É¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1238: Blob required for argument %d"
+msgstr "E1238: °ú¿ô %d ¤Ë¤ÏBlob¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1239: Invalid value for blob: %d"
+msgstr "E1239: blob¤È¤·¤ÆÌµ¸ú¤ÊÃͤǤ¹: %d"
+
+msgid "E1240: Resulting text too long"
+msgstr "E1240: ¥Æ¥¥¹¥È¤¬Ä¹¤¯¤Ê¤ê¤¹¤®¤Þ¤·¤¿"
+
+#, c-format
+msgid "E1241: Separator not supported: %s"
+msgstr "E1241: ¤½¤Î¥»¥Ñ¥ì¡¼¥¿¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1242: No white space allowed before separator: %s"
+msgstr "E1242: ¥»¥Ñ¥ì¡¼¥¿¤ÎÁ°¤Ë¥¹¥Ú¡¼¥¹¤Ïµö¤µ¤ì¤Þ¤»¤ó: %s"
+
+msgid "E1243: ASCII code not in 32-127 range"
+msgstr "E1243: ASCII¥³¡¼¥É¤¬32-127¤ÎÈϰϤˤ¢¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1244: Bad color string: %s"
+msgstr "E1244: ̵¸ú¤Ê¥«¥é¡¼Ì¾Ê¸»úÎó¤Ç¤¹: %s"
+
+msgid "E1245: Cannot expand <sfile> in a Vim9 function"
+msgstr "E1245: Vim9 ´Ø¿ô¤Ç¤Ï <sfile> ¤ÏŸ³«¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1246: Cannot find variable to (un)lock: %s"
+msgstr "E1246: (¥¢¥ó)¥í¥Ã¥¯¤¹¤ëÊÑ¿ô¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+
+msgid "E1247: Line number out of range"
+msgstr "E1247: Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹"
+
+msgid "E1248: Closure called from invalid context"
+msgstr "E1248: ÉÔÀµ¤Êʸ̮¤Ç¥¯¥í¡¼¥¸¥ã¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿"
+
+msgid "E1249: Highlight group name too long"
+msgstr "E1249: ¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×̾¤¬Ä¹¤¹¤®¤Þ¤¹"
+
+#, c-format
+msgid "E1250: Argument of %s must be a List, String, Dictionary or Blob"
+msgstr "E1250: %s ¤Î°ú¿ô¤Ï¥ê¥¹¥È¡¢Ê¸»úÎó¡¢¼½ñ¤Þ¤¿¤ÏBlob¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1251: List, Dictionary, Blob or String required for argument %d"
+msgstr "E1251: °ú¿ô %d ¤Ë¤Ï¥ê¥¹¥È¡¢¼½ñ¡¢Blob¤Þ¤¿¤Ïʸ»úÎó¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1252: String, List or Blob required for argument %d"
+msgstr "E1252: °ú¿ô %d ¤Ë¤Ïʸ»úÎ󡢥ꥹ¥È¤Þ¤¿¤ÏBlob¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1253: String expected for argument %d"
+msgstr "E1253: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤¬É¬ÍפǤ¹"
+
+msgid "E1254: Cannot use script variable in for loop"
+msgstr "E1254: for¥ë¡¼¥×Æâ¤Ç¥¹¥¯¥ê¥×¥ÈÊÑ¿ô¤Ï»ÈÍѤǤ¤Þ¤»¤ó"
+
+msgid "E1255: <Cmd> mapping must end with <CR>"
+msgstr "E1255: <Cmd> ¥Þ¥Ã¥Ô¥ó¥°¤Ï <CR> ¤Ç½ª¤ï¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1256: String or function required for argument %d"
+msgstr "E1256: °ú¿ô %d ¤Ë¤Ïʸ»úÎó¤Þ¤¿¤Ï´Ø¿ô¤¬É¬ÍפǤ¹"
+
+#, c-format
+msgid "E1257: Imported script must use \"as\" or end in .vim: %s"
+msgstr ""
+"E1257: ¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿¥¹¥¯¥ê¥×¥È¤Ï \"as\" ¤ò»È¤¦¤« .vim ¤Ç½ª¤ï¤é¤Ê¤±¤ì¤Ð¤Ê¤ê"
+"¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1258: No '.' after imported name: %s"
+msgstr "E1258: ¥¤¥ó¥Ý¡¼¥È̾¤Î¸å¤Ë '.' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1259: Missing name after imported name: %s"
+msgstr "E1259: ¥¤¥ó¥Ý¡¼¥È̾¤Î¸å¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+
+#, c-format
+msgid "E1260: Cannot unlet an imported item: %s"
+msgstr "E1260: ¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿Í×ÁǤÏunlet¤Ç¤¤Þ¤»¤ó: %s"
+
+msgid "E1261: Cannot import .vim without using \"as\""
+msgstr "E1261: \"as\" ¤ò»È¤ï¤º¤Ë .vim ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+
+#, c-format
+msgid "E1262: Cannot import the same script twice: %s"
+msgstr "E1262: Ʊ¤¸¥¹¥¯¥ê¥×¥È¤ò2²ó¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó: %s"
+
+msgid "E1263: Using autoload in a script not under an autoload directory"
+msgstr "E1263: autoload¥Ç¥£¥ì¥¯¥È¥ê¤Ë̵¤¤¥¹¥¯¥ê¥×¥È¤Çautoload¤ò»È¤Ã¤Æ¤¤¤Þ¤¹"
+
+#, c-format
+msgid "E1264: Autoload import cannot use absolute or relative path: %s"
+msgstr ""
+"E1264: autoload¥¤¥ó¥Ý¡¼¥È¤ÇÀäÂФޤ¿¤ÏÁêÂХѥ¹¤ò»È¤¦¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó: %s"
+
+msgid "--No lines in buffer--"
+msgstr "--¥Ð¥Ã¥Õ¥¡¤Ë¹Ô¤¬¤¢¤ê¤Þ¤»¤ó--"
msgid "search hit TOP, continuing at BOTTOM"
msgstr "¾å¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç²¼¤ËÌá¤ê¤Þ¤¹"
@@ -7029,6 +8132,9 @@
msgid "search hit BOTTOM, continuing at TOP"
msgstr "²¼¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç¾å¤ËÌá¤ê¤Þ¤¹"
+msgid " line "
+msgstr " ¹Ô "
+
#, c-format
msgid "Need encryption key for \"%s\""
msgstr "°Å¹æ¥¡¼¤¬É¬ÍפǤ¹: \"%s\""
@@ -7061,7 +8167,7 @@
#, c-format
msgid ""
"expected int(), long() or something supporting coercing to long(), but got %s"
-msgstr "long() ¤«¤½¤ì¤ØÊÑ´¹²Äǽ¤Ê¤â¤Î¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë¤Î¤Ë %s ¤Ç¤·¤¿"
+msgstr "int(), long() ¤«¤½¤ì¤ØÊÑ´¹²Äǽ¤Ê¤â¤Î¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë¤Î¤Ë %s ¤Ç¤·¤¿"
#, c-format
msgid "expected int() or something supporting coercing to int(), but got %s"
@@ -7086,9 +8192,6 @@
msgid "invalid attribute: %s"
msgstr "̵¸ú¤Ê°À¤Ç¤¹: %s"
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: I/O¥ª¥Ö¥¸¥§¥¯¥È¤Î½é´ü²½¥¨¥é¡¼"
-
msgid "failed to change directory"
msgstr "¼½ñ¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
@@ -7128,7 +8231,7 @@
#, c-format
msgid "internal error: failed to get Vim list item %d"
-msgstr "ÆâÉô¥¨¥é¡¼: vim¤Î¥ê¥¹¥ÈÍ×ÁÇ %d ¤Î¼èÆÀ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgstr "ÆâÉô¥¨¥é¡¼: Vim¤Î¥ê¥¹¥ÈÍ×ÁÇ %d ¤Î¼èÆÀ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
msgid "slice step cannot be zero"
msgstr "¥¹¥é¥¤¥¹¤Î¥¹¥Æ¥Ã¥×¤Ë 0 ¤Ï»ØÄê¤Ç¤¤Þ¤»¤ó"
@@ -7139,7 +8242,7 @@
#, c-format
msgid "internal error: no Vim list item %d"
-msgstr "ÆâÉô¥¨¥é¡¼: vim¤Î¥ê¥¹¥ÈÍ×ÁÇ %d ¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgstr "ÆâÉô¥¨¥é¡¼: Vim¤Î¥ê¥¹¥ÈÍ×ÁÇ %d ¤Ï¤¢¤ê¤Þ¤»¤ó"
msgid "internal error: not enough list items"
msgstr "ÆâÉô¥¨¥é¡¼: ¥ê¥¹¥È¤Ë½½Ê¬¤ÊÍ×ÁǤ¬¤¢¤ê¤Þ¤»¤ó"
@@ -7199,7 +8302,7 @@
msgstr "ºï½ü¤µ¤ì¤¿¥¦¥£¥ó¥É¥¦¤ò»²¾È¤·¤è¤¦¤È¤·¤Þ¤·¤¿"
msgid "readonly attribute: buffer"
-msgstr "ÆÉ¹þÀìÍѰÀ: ¥Ð¥Ã¥Õ¥¡¡¼"
+msgstr "ÆÉ¹þÀìÍѰÀ: ¥Ð¥Ã¥Õ¥¡"
msgid "cursor position outside buffer"
msgstr "¥«¡¼¥½¥ë°ÌÃÖ¤¬¥Ð¥Ã¥Õ¥¡¤Î³°Â¦¤Ç¤¹"
@@ -7244,23 +8347,17 @@
msgid "failed to run the code"
msgstr "¥³¡¼¥É¤Î¼Â¹Ô¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E858: Eval did not return a valid python object"
-msgstr "E858: ¼°É¾²Á¤Ï͸ú¤Êpython¥ª¥Ö¥¸¥§¥¯¥È¤òÊÖ¤·¤Þ¤»¤ó¤Ç¤·¤¿"
-
-msgid "E859: Failed to convert returned python object to a Vim value"
-msgstr "E859: ÊÖ¤µ¤ì¤¿python¥ª¥Ö¥¸¥§¥¯¥È¤òvim¤ÎÃͤËÊÑ´¹¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-
#, c-format
msgid "unable to convert %s to a Vim dictionary"
-msgstr "%s vim¤Î¼½ñ·¿¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+msgstr "%s ¤òVim¤Î¼½ñ¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
#, c-format
msgid "unable to convert %s to a Vim list"
-msgstr "%s ¤òvim¤Î¥ê¥¹¥È¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+msgstr "%s ¤òVim¤Î¥ê¥¹¥È¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
#, c-format
msgid "unable to convert %s to a Vim structure"
-msgstr "%s ¤òvim¤Î¹½Â¤ÂΤËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+msgstr "%s ¤òVim¤Î¹½Â¤ÂΤËÊÑ´¹¤Ç¤¤Þ¤»¤ó"
msgid "internal error: NULL reference passed"
msgstr "ÆâÉô¥¨¥é¡¼: NULL»²¾È¤¬ÅϤµ¤ì¤Þ¤·¤¿"
@@ -7330,6 +8427,7 @@
"C++¥½¡¼¥¹ (*.cpp, *.hpp)\t*.cpp;*.hpp\n"
"Vim¥Õ¥¡¥¤¥ë (*.vim, _vimrc, _gvimrc)\t*.vim;_vimrc;_gvimrc\n"
+# No need to translate this.
#~ msgid "GVim"
#~ msgstr ""
@@ -7342,8 +8440,1396 @@
msgid "Text;editor;"
msgstr "¥Æ¥¥¹¥È;¥¨¥Ç¥£¥¿;"
-#~ msgid "gvim"
-#~ msgstr ""
-
+# No need to translate this.
#~ msgid "Vim"
#~ msgstr ""
+
+msgid "(local to window)"
+msgstr "(¥¦¥£¥ó¥É¥¦¤Ë¤Ä¤¤¤Æ¥í¡¼¥«¥ë)"
+
+msgid "(local to buffer)"
+msgstr "(¥Ð¥Ã¥Õ¥¡¤Ë¤Ä¤¤¤Æ¥í¡¼¥«¥ë)"
+
+msgid "(global or local to buffer)"
+msgstr "(¥°¥í¡¼¥Ð¥ë¡¿¥Ð¥Ã¥Õ¥¡¤Ë¤Ä¤¤¤Æ¥í¡¼¥«¥ë)"
+
+msgid ""
+"\" Each \"set\" line shows the current value of an option (on the left)."
+msgstr "\" ¤½¤ì¤¾¤ì¤Î \"set\" ¹Ô¤Ï¥ª¥×¥·¥ç¥ó¤Î¸½ºß¤ÎÃͤò(º¸Â¦¤Ë)¼¨¤·¤Æ¤¤¤Þ¤¹¡£"
+
+msgid "\" Hit <Enter> on a \"set\" line to execute it."
+msgstr "\" \"set\" ¹Ô¤Ç <Enter> ¤òÂǤĤȤ½¤ì¤¬¼Â¹Ô¤µ¤ì¤Þ¤¹¡£"
+
+msgid "\" A boolean option will be toggled."
+msgstr "\" ÀÚÂØ¥ª¥×¥·¥ç¥ó¤ÏÀÚ¤êÂØ¤¨¤é¤ì¤Þ¤¹¡£"
+
+msgid ""
+"\" For other options you can edit the value before hitting "
+"<Enter>."
+msgstr ""
+"\" ¤½¤Î¾¤Î¥ª¥×¥·¥ç¥ó¤Ï <Enter> ¤òÂǤÄÁ°¤ËÃͤòÊÔ½¸¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ"
+"¤¹¡£"
+
+msgid "\" Hit <Enter> on a help line to open a help window on this option."
+msgstr ""
+"\" ¥Ø¥ë¥×¹Ô¤Ç <Enter> ¤òÂǤĤȡ¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Î¤Ø¥ë¥×¥¦¥£¥ó¥É¥¦¤¬³«¤¤Þ¤¹¡£"
+
+msgid "\" Hit <Enter> on an index line to jump there."
+msgstr "\" ¥¤¥ó¥Ç¥Ã¥¯¥¹¹Ô¤Ç <Enter> ¤òÂǤĤȡ¢¤½¤³¤Ë¥¸¥ã¥ó¥×¤·¤Þ¤¹¡£"
+
+msgid "\" Hit <Space> on a \"set\" line to refresh it."
+msgstr "\" \"set\" ¹Ô¤Ç <Spece> ¤òÂǤĤȡ¢ºÇ¿·¤ÎÃͤ¬ÆÉ¹þ¤Þ¤ì¤Þ¤¹¡£"
+
+msgid "important"
+msgstr "½ÅÍ×"
+
+msgid "behave very Vi compatible (not advisable)"
+msgstr "Vi ¤È¤Î¸ß´¹À¤òÈó¾ï¤Ë¹â¤¯¤¹¤ë (˾¤Þ¤·¤¯¤Ê¤¤)"
+
+msgid "list of flags to specify Vi compatibility"
+msgstr "Vi ¤È¤Î¸ß´¹À¤ò»ØÄꤹ¤ë¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid "use Insert mode as the default mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤ò´ûÄê¤Î¥â¡¼¥É¤È¤·¤Æ»È¤¦"
+
+msgid "paste mode, insert typed text literally"
+msgstr "paste ¥â¡¼¥É¡¢¥¿¥¤¥×¤µ¤ì¤¿¥Æ¥¥¹¥È¤ò¤½¤Î¤Þ¤ÞÁÞÆþ¤¹¤ë"
+
+msgid "key sequence to toggle paste mode"
+msgstr "paste ¥â¡¼¥É¤òÀÚ¤êÂØ¤¨¤ë¤¿¤á¤Î¥¡¼Îó"
+
+msgid "list of directories used for runtime files and plugins"
+msgstr "¥é¥ó¥¿¥¤¥à¥Õ¥¡¥¤¥ë¤È¥×¥é¥°¥¤¥ó¤Ë»È¤ï¤ì¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È"
+
+msgid "list of directories used for plugin packages"
+msgstr "¥×¥é¥°¥¤¥ó¥Ñ¥Ã¥±¡¼¥¸¤Ë»È¤ï¤ì¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È"
+
+msgid "name of the main help file"
+msgstr "¥á¥¤¥ó¤Î¥Ø¥ë¥×¥Õ¥¡¥¤¥ë¤Î̾Á°"
+
+msgid "moving around, searching and patterns"
+msgstr "°Üư¡¢¸¡º÷¤È¥Ñ¥¿¡¼¥ó"
+
+msgid "list of flags specifying which commands wrap to another line"
+msgstr "¤É¤Î¥³¥Þ¥ó¥É¤¬¹Ô¤ò¤Þ¤¿¤°¤«¤ò»ØÄꤹ¤ë¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid ""
+"many jump commands move the cursor to the first non-blank\n"
+"character of a line"
+msgstr "¿¤¯¤Î¥¸¥ã¥ó¥×Ì¿Îá¤Ç¡¢¥«¡¼¥½¥ë¤¬¹ÔÆâ¤ÎºÇ½é¤ÎÈó¶õÇòʸ»ú¤Ë°Üư¤¹¤ë"
+
+msgid "nroff macro names that separate paragraphs"
+msgstr "ÃÊÍî¤òʬ¤±¤ë¤¿¤á¤Î nroff ¥Þ¥¯¥í¤Î̾Á°"
+
+msgid "nroff macro names that separate sections"
+msgstr "¾Ï¤òʬ¤±¤ë¤¿¤á¤Î nroff ¥Þ¥¯¥í¤Î̾Á°"
+
+msgid "list of directory names used for file searching"
+msgstr "¥Õ¥¡¥¤¥ë¤Î¸¡º÷¤ËÍѤ¤¤é¤ì¤ë¥Ç¥£¥ì¥¯¥È¥ê̾¤Î¥ê¥¹¥È"
+
+msgid ":cd without argument goes to the home directory"
+msgstr "°ú¿ô̵¤·¤Î :cd ¤Ç¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Üư¤¹¤ë"
+
+msgid "list of directory names used for :cd"
+msgstr ":cd ¤ËÍѤ¤¤é¤ì¤ë¥Ç¥£¥ì¥¯¥È¥ê̾¤Î¥ê¥¹¥È"
+
+msgid "change to directory of file in buffer"
+msgstr "¥Ð¥Ã¥Õ¥¡Æâ¤Î¥Õ¥¡¥¤¥ë¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÊѹ¹¤¹¤ë"
+
+msgid "change to pwd of shell in terminal buffer"
+msgstr "üËö¥Ð¥Ã¥Õ¥¡Æâ¤Î¥·¥§¥ë¤Î pwd ¤ËÊѹ¹¤¹¤ë"
+
+msgid "search commands wrap around the end of the buffer"
+msgstr "¸¡º÷¥³¥Þ¥ó¥É¤¬¥Ð¥Ã¥Õ¥¡¤ÎËöÈø/ÀèÆ¬¤ò¤Þ¤¿¤°"
+
+msgid "show match for partly typed search command"
+msgstr "ÉôʬŪ¤ËÆþÎϤµ¤ì¤¿¸¡º÷¥³¥Þ¥ó¥É¤Î¥Þ¥Ã¥Á¤òɽ¼¨¤¹¤ë"
+
+msgid "change the way backslashes are used in search patterns"
+msgstr "¸¡º÷¥Ñ¥¿¡¼¥óÆâ¤Î¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Î°·¤¤¤òÊѹ¹¤¹¤ë"
+
+msgid "select the default regexp engine used"
+msgstr "´ûÄê¤Ç»È¤ï¤ì¤ëÀµµ¬É½¸½¥¨¥ó¥¸¥ó¤òÁªÂò¤¹¤ë"
+
+msgid "ignore case when using a search pattern"
+msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤Ë¤ª¤¤¤ÆÂçʸ»ú¤È¾®Ê¸»ú¤ò¶èÊ̤·¤Ê¤¤"
+
+msgid "override 'ignorecase' when pattern has upper case characters"
+msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤¬Âçʸ»ú¤ò´Þ¤ó¤Ç¤¤¤¿¤é 'ignorecase' ¤ò¾å½ñ¤¤¹¤ë"
+
+msgid "what method to use for changing case of letters"
+msgstr "Âçʸ»ú¡¦¾®Ê¸»ú¤òÊѹ¹¤¹¤ëºÝ¤Ë¤É¤ÎÊýË¡¤ò»È¤¦¤«"
+
+msgid "maximum amount of memory in Kbyte used for pattern matching"
+msgstr "¥Ñ¥¿¡¼¥ó¥Þ¥Ã¥Á¥ó¥°¤Ë»È¤¦ºÇÂç¥á¥â¥êÎÌ (Kbyte)"
+
+msgid "pattern for a macro definition line"
+msgstr "¥Þ¥¯¥íÄêµÁ¹Ô¤Î¤¿¤á¤Î¥Ñ¥¿¡¼¥ó"
+
+msgid "pattern for an include-file line"
+msgstr "include ¹Ô¤Î¤¿¤á¤Î¥Ñ¥¿¡¼¥ó"
+
+msgid "expression used to transform an include line to a file name"
+msgstr "include ¹Ô¤ò¥Õ¥¡¥¤¥ë̾¤ËÊÑ´¹¤¹¤ë¤¿¤á¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "tags"
+msgstr "¥¿¥°"
+
+msgid "use binary searching in tags files"
+msgstr "tags ¥Õ¥¡¥¤¥ëÆâ¤ÇÆóʬõº÷¤ò»È¤¦"
+
+msgid "number of significant characters in a tag name or zero"
+msgstr "¥¿¥°Ì¾¤Ç͸ú¤Ë¤Ê¤ëʸ»ú¿ô¡¢¤¢¤ë¤¤¤Ï¥¼¥í"
+
+msgid "list of file names to search for tags"
+msgstr "tags ¤ò¸¡º÷¤¹¤ë¥Õ¥¡¥¤¥ë̾¤Î¥ê¥¹¥È"
+
+msgid ""
+"how to handle case when searching in tags files:\n"
+"\"followic\" to follow 'ignorecase', \"ignore\" or \"match\""
+msgstr ""
+"¥¿¥°¥Õ¥¡¥¤¥ëÆâ¤ò¸¡º÷¤¹¤ë¤È¤¤ËÂçʸ»ú¾®Ê¸»ú¤ò¤É¤¦°·¤¦¤«:\n"
+"'ignorecase' ¤Ë½¾¤¦¤Ê¤é \"followic\"¡¢¤¢¤ë¤¤¤Ï \"ignore\" ¤« \"match\""
+
+msgid "file names in a tags file are relative to the tags file"
+msgstr "tags ¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¤Ï tags ¥Õ¥¡¥¤¥ë¤«¤é¤ÎÁêÂХѥ¹"
+
+msgid "a :tag command will use the tagstack"
+msgstr ":tag ¥³¥Þ¥ó¥É¤Ï¥¿¥°¥¹¥¿¥Ã¥¯¤ò»È¤¦"
+
+msgid "when completing tags in Insert mode show more info"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç¥¿¥°¤òÊä´°¤¹¤ë¤È¤¤Ë¤è¤ê¿¤¯¤Î¾ðÊó¤òɽ¼¨¤¹¤ë"
+
+msgid "a function to be used to perform tag searches"
+msgstr "¥¿¥°¤Î¸¡º÷¤ò¼Â¹Ô¤¹¤ëºÝ¤Ë»È¤ï¤ì¤ë´Ø¿ô"
+
+msgid "command for executing cscope"
+msgstr "cscope ¤ò¼Â¹Ô¤¹¤ë¥³¥Þ¥ó¥É"
+
+msgid "use cscope for tag commands"
+msgstr "tag ¥³¥Þ¥ó¥É¤Ë cscope ¤ò»È¤¦"
+
+msgid "0 or 1; the order in which \":cstag\" performs a search"
+msgstr "0 ¤« 1; \":cstag\" ¤¬¸¡º÷¤ò¼Â¹Ô¤¹¤ëºÝ¤Î½ç½ø"
+
+msgid "give messages when adding a cscope database"
+msgstr "cscope ¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÄɲ乤ëºÝ¤Ë¥á¥Ã¥»¡¼¥¸¤òɽ¼¨"
+
+msgid "how many components of the path to show"
+msgstr "¥Ñ¥¹¤ÎÍ×ÁǤò²¿¸Ä¤Þ¤Çɽ¼¨¤¹¤ë¤«"
+
+msgid "when to open a quickfix window for cscope"
+msgstr "cscope ¤Î¤¿¤á¤Ë quickfix ¥¦¥£¥ó¥É¥¦¤ò¤¤¤Ä³«¤¯¤«"
+
+msgid "file names in a cscope file are relative to that file"
+msgstr "cscope ¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¤Ï¤½¤Î¥Õ¥¡¥¤¥ë¤«¤é¤ÎÁêÂХѥ¹"
+
+msgid "displaying text"
+msgstr "¥Æ¥¥¹¥È¤Îɽ¼¨"
+
+msgid "number of lines to scroll for CTRL-U and CTRL-D"
+msgstr "CTRL-U ¤È CTRL-D ¤Ç¥¹¥¯¥í¡¼¥ë¤¹¤ë¹Ô¿ô"
+
+msgid "number of screen lines to show around the cursor"
+msgstr "¥«¡¼¥½¥ë¤Î¾å²¼¤Ëɽ¼¨¤µ¤ì¤ë¥¹¥¯¥ê¡¼¥ó¹Ô¿ô"
+
+msgid "long lines wrap"
+msgstr "Ť¤¹Ô¤òÀÞ¤êÊÖ¤·¤ÆÉ½¼¨¤¹¤ë"
+
+msgid "wrap long lines at a character in 'breakat'"
+msgstr "'breakat' ¤Îʸ»ú¤ÇŤ¤¹Ô¤òÀÞ¤êÊÖ¤¹"
+
+msgid "preserve indentation in wrapped text"
+msgstr "ÀÞ¤êÊÖ¤µ¤ì¤¿¥Æ¥¥¹¥È¤Ç¥¤¥ó¥Ç¥ó¥È¤òÊÝ»ý¤¹¤ë"
+
+msgid "adjust breakindent behaviour"
+msgstr "breakindent ¤Îµóư¤òÄ´À°¤¹¤ë"
+
+msgid "which characters might cause a line break"
+msgstr "¤É¤Îʸ»ú¤Î¤È¤³¤í¤Ç¹Ô¤¬ÀÞ¤êÊÖ¤µ¤ì¤ë¤«"
+
+msgid "string to put before wrapped screen lines"
+msgstr "ÀÞ¤êÊÖ¤µ¤ì¤¿¥¹¥¯¥ê¡¼¥ó¹Ô¤ÎÁ°¤Ëɽ¼¨¤µ¤ì¤ëʸ»úÎó"
+
+msgid "minimal number of columns to scroll horizontally"
+msgstr "¿åÊ¿¥¹¥¯¥í¡¼¥ë¤ÎºÇ¾®·å¿ô"
+
+msgid "minimal number of columns to keep left and right of the cursor"
+msgstr "¥«¡¼¥½¥ë¤Îº¸±¦¤Ëɽ¼¨¤¹¤ëºÇ¾®·å¿ô"
+
+msgid ""
+"include \"lastline\" to show the last line even if it doesn't fit\n"
+"include \"uhex\" to show unprintable characters as a hex number"
+msgstr ""
+"ºÇ¸å¤Î¹Ô¤¬¼ý¤Þ¤é¤Ê¤¤¾ì¹ç¤Ç¤âɽ¼¨¤¹¤ë¤Ë¤Ï \"lastline\" ¤ò´Þ¤á¤ë¤³¤È\n"
+"ɽ¼¨¤Ç¤¤Ê¤¤Ê¸»ú¤ò 16 ¿Ê¿ô¤Çɽ¼¨¤¹¤ë¤Ë¤Ï \"uhex\" ¤ò´Þ¤á¤ë¤³¤È"
+
+msgid "characters to use for the status line, folds and filler lines"
+msgstr "¥¹¥Æ¡¼¥¿¥¹¹Ô¡¢ÀÞ¾ö¤ß¡¢¥Õ¥£¥é¡¼¹Ô¤Ë»È¤ï¤ì¤ëʸ»ú"
+
+msgid "number of lines used for the command-line"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»È¤ï¤ì¤ë¹Ô¿ô"
+
+msgid "width of the display"
+msgstr "²èÌ̤ÎÉý"
+
+msgid "number of lines in the display"
+msgstr "²èÌ̤ιԿô"
+
+msgid "number of lines to scroll for CTRL-F and CTRL-B"
+msgstr "CTRL-F ¤È CTRL-B ¤Ç¥¹¥¯¥í¡¼¥ë¤¹¤ë¹Ô¿ô"
+
+msgid "don't redraw while executing macros"
+msgstr "¥Þ¥¯¥í¤ò¼Â¹ÔÃæ¤ËºÆÉÁ²è¤·¤Ê¤¤"
+
+msgid "timeout for 'hlsearch' and :match highlighting in msec"
+msgstr "'hlsearch' ¤È :match ¤Î¥Ï¥¤¥é¥¤¥È½èÍý¤Î¥¿¥¤¥à¥¢¥¦¥È (¥ß¥êÉÃ)"
+
+msgid ""
+"delay in msec for each char written to the display\n"
+"(for debugging)"
+msgstr ""
+"¤½¤ì¤¾¤ì¤Îʸ»ú¤¬²èÌ̤ËÉÁ¤«¤ì¤ë¤Þ¤Ç¤ÎÃÙ±ä»þ´Ö (¥ß¥êÉÃ)\n"
+"(¥Ç¥Ð¥Ã¥°ÍÑ)"
+
+msgid "show <Tab> as ^I and end-of-line as $"
+msgstr "<Tab> ¤ò ^I ¤È¤·¤ÆÉ½¼¨¤·¡¢²þ¹Ô¤ò $ ¤È¤·¤ÆÉ½¼¨¤¹¤ë"
+
+msgid "list of strings used for list mode"
+msgstr "¥ê¥¹¥È¥â¡¼¥É¤Ç»È¤ï¤ì¤ëʸ»úÎó¤Î¥ê¥¹¥È"
+
+msgid "show the line number for each line"
+msgstr "¤½¤ì¤¾¤ì¤Î¹Ô¤Ë¹ÔÈÖ¹æ¤òɽ¼¨¤¹¤ë"
+
+msgid "show the relative line number for each line"
+msgstr "¤½¤ì¤¾¤ì¤Î¹Ô¤ËÁêÂйÔÈÖ¹æ¤òɽ¼¨¤¹¤ë"
+
+msgid "number of columns to use for the line number"
+msgstr "¹ÔÈÖ¹æ¤Ë»È¤ï¤ì¤ë·å¿ô"
+
+msgid "controls whether concealable text is hidden"
+msgstr "conceal ²Äǽ¤Ê¥Æ¥¥¹¥È¤ò±£¤¹¤«¤É¤¦¤«¤òÀ©¸æ¤¹¤ë"
+
+msgid "modes in which text in the cursor line can be concealed"
+msgstr "¥«¡¼¥½¥ë¹Ô¤Î¥Æ¥¥¹¥È¤ò conceal ɽ¼¨¤¹¤ë¥â¡¼¥É"
+
+msgid "syntax, highlighting and spelling"
+msgstr "¹½Ê¸¥Ï¥¤¥é¥¤¥È¤È¥¹¥Ú¥ë¥Á¥§¥Ã¥¯"
+
+msgid "\"dark\" or \"light\"; the background color brightness"
+msgstr "\"dark\" ¤« \"light\"; ÇØ·Ê¿§¤ÎÌÀ¤ë¤µ"
+
+msgid "type of file; triggers the FileType event when set"
+msgstr "¥Õ¥¡¥¤¥ë¤Î¥¿¥¤¥×; ¥»¥Ã¥È¤µ¤ì¤ë¤È FileType ¥¤¥Ù¥ó¥È¤¬È¯À¸¤¹¤ë"
+
+msgid "name of syntax highlighting used"
+msgstr "»ÈÍѤµ¤ì¤ë¹½Ê¸¥Ï¥¤¥é¥¤¥È¤Î̾Á°"
+
+msgid "maximum column to look for syntax items"
+msgstr "¹½Ê¸¥¢¥¤¥Æ¥à¤ò¸¡º÷¤¹¤ëºÇÂç·å¿ô"
+
+msgid "which highlighting to use for various occasions"
+msgstr "ÍÍ¡¹¤ÊÂоݤËÂФ·¤Æ¤É¤Î¥Ï¥¤¥é¥¤¥Èɽ¼¨¤ò»È¤¦¤«"
+
+msgid "highlight all matches for the last used search pattern"
+msgstr "ºÇ¸å¤Î¸¡º÷¥Ñ¥¿¡¼¥ó¤ËÂФ¹¤ëÁ´¤Æ¤Î¥Þ¥Ã¥Á¤ò¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë"
+
+msgid "highlight group to use for the window"
+msgstr "¤³¤Î¥¦¥£¥ó¥É¥¦¤Ë»È¤¦¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×"
+
+msgid "use GUI colors for the terminal"
+msgstr "üËö¤Ç GUI ¥«¥é¡¼¤ò»È¤¦"
+
+msgid "highlight the screen column of the cursor"
+msgstr "¥«¡¼¥½¥ë¤Î¤¢¤ë²èÌ̾å¤Î·å¤ò¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë"
+
+msgid "highlight the screen line of the cursor"
+msgstr "¥«¡¼¥½¥ë¤Î¤¢¤ë²èÌ̾å¤Î¹Ô¤ò¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë"
+
+msgid "specifies which area 'cursorline' highlights"
+msgstr "'cursorline' ¤¬¤É¤ÎÎΰè¤ò¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë¤«»ØÄꤹ¤ë"
+
+msgid "columns to highlight"
+msgstr "¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë·å"
+
+msgid "highlight spelling mistakes"
+msgstr "¥¹¥Ú¥ë¥ß¥¹¤ò¥Ï¥¤¥é¥¤¥Èɽ¼¨¤¹¤ë"
+
+msgid "list of accepted languages"
+msgstr "¼õ¤±ÉÕ¤±¤ë¸À¸ì¤Î¥ê¥¹¥È"
+
+msgid "file that \"zg\" adds good words to"
+msgstr "\"zg\" ¤ÇÀµ¤·¤¤Ã±¸ì¤òÄɲ乤ë¥Õ¥¡¥¤¥ë"
+
+msgid "pattern to locate the end of a sentence"
+msgstr "ʸ¤ÎËöÈø¤ò¸«¤Ä¤±¤ë¤Î¤Ë»È¤¦¥Ñ¥¿¡¼¥ó"
+
+msgid "flags to change how spell checking works"
+msgstr "¤É¤Î¤è¤¦¤Ë¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¤¬Æ°ºî¤¹¤ë¤«¤òÊѹ¹¤¹¤ë¥Õ¥é¥°"
+
+msgid "methods used to suggest corrections"
+msgstr "½¤Àµ¤òÄ󰯤¹¤ëºÝ¤Ë»È¤ï¤ì¤ëÊýË¡"
+
+msgid "amount of memory used by :mkspell before compressing"
+msgstr "°µ½Ì¤ÎÁ°¤Ë :mkspell ¤Ç»È¤ï¤ì¤ë¥á¥â¥êÎÌ"
+
+msgid "multiple windows"
+msgstr "Ê£¿ô¥¦¥£¥ó¥É¥¦"
+
+msgid "0, 1 or 2; when to use a status line for the last window"
+msgstr "0, 1 ¤Þ¤¿¤Ï 2; ºÇ¸å¤Î¥¦¥£¥ó¥É¥¦¤Î¥¹¥Æ¡¼¥¿¥¹¹Ô¤¬¤¤¤Ä»È¤ï¤ì¤ë¤«"
+
+msgid "alternate format to be used for a status line"
+msgstr "¥¹¥Æ¡¼¥¿¥¹¹Ô¤Ë»È¤ï¤ì¤ë½ñ¼°"
+
+msgid "make all windows the same size when adding/removing windows"
+msgstr "¥¦¥£¥ó¥É¥¦¤òÄɲÃ/ºï½ü¤¹¤ë¤È¤¤ËÁ´¥¦¥£¥ó¥É¥¦¤Î¥µ¥¤¥º¤òÅù¤·¤¯¤¹¤ë"
+
+msgid "in which direction 'equalalways' works: \"ver\", \"hor\" or \"both\""
+msgstr "¤É¤ÎÊý¸þ¤Ë 'equalalways' ¤¬Æ¯¤¯¤«: \"ver\", \"hor\" ¤Þ¤¿¤Ï \"both\""
+
+msgid "minimal number of lines used for the current window"
+msgstr "¸½ºß¤Î¥¦¥£¥ó¥É¥¦¤Ë»È¤ï¤ì¤ëºÇ¾®¹Ô¿ô"
+
+msgid "minimal number of lines used for any window"
+msgstr "Ǥ°Õ¤Î¥¦¥£¥ó¥É¥¦¤Ë»È¤ï¤ì¤ëºÇ¾®¹Ô¿ô"
+
+msgid "keep the height of the window"
+msgstr "¥¦¥£¥ó¥É¥¦¤Î¹â¤µ¤òÊݤÄ"
+
+msgid "keep the width of the window"
+msgstr "¥¦¥£¥ó¥É¥¦¤ÎÉý¤òÊݤÄ"
+
+msgid "minimal number of columns used for the current window"
+msgstr "¸½ºß¤Î¥¦¥£¥ó¥É¥¦¤Ë»È¤ï¤ì¤ëºÇ¾®·å¿ô"
+
+msgid "minimal number of columns used for any window"
+msgstr "Ǥ°Õ¤Î¥¦¥£¥ó¥É¥¦¤Ë»È¤ï¤ì¤ëºÇ¾®·å¿ô"
+
+msgid "initial height of the help window"
+msgstr "¥Ø¥ë¥×¥¦¥£¥ó¥É¥¦¤Î³«»Ï»þ¤Î¹â¤µ"
+
+msgid "use a popup window for preview"
+msgstr "¥×¥ì¥Ó¥å¡¼¤Ë¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤ò»ÈÍѤ¹¤ë"
+
+msgid "default height for the preview window"
+msgstr "¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤Î´ûÄê¤Î¹â¤µ"
+
+msgid "identifies the preview window"
+msgstr "¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤ò¼±Ê̤¹¤ë"
+
+msgid "don't unload a buffer when no longer shown in a window"
+msgstr "¥Ð¥Ã¥Õ¥¡¤¬¥¦¥£¥ó¥É¥¦¤Ëɽ¼¨¤µ¤ì¤Æ¤¤¤Ê¤¤¤È¤¤Ë¥¢¥ó¥í¡¼¥É¤·¤Ê¤¤"
+
+msgid ""
+"\"useopen\" and/or \"split\"; which window to use when jumping\n"
+"to a buffer"
+msgstr ""
+"\"useopen\" ¤«¤Ä/¤Þ¤¿¤Ï \"split\"; ¥Ð¥Ã¥Õ¥¡¤Ë¥¸¥ã¥ó¥×¤¹¤ë¤È¤¤Ë\n"
+"¤É¤Î¥¦¥£¥ó¥É¥¦¤ò»È¤¦¤«"
+
+msgid "a new window is put below the current one"
+msgstr "¿·¤·¤¤¥¦¥£¥ó¥É¥¦¤Ï¸½ºß¤Î¤â¤Î¤Î²¼¤ËÃÖ¤«¤ì¤ë"
+
+msgid "a new window is put right of the current one"
+msgstr "¿·¤·¤¤¥¦¥£¥ó¥É¥¦¤Ï¸½ºß¤Î¤â¤Î¤Î±¦¤ËÃÖ¤«¤ì¤ë"
+
+msgid "this window scrolls together with other bound windows"
+msgstr "¤³¤Î¥¦¥£¥ó¥É¥¦¤Ï¾¤ÎƱĴ¥¦¥£¥ó¥É¥¦¤È°ì½ï¤Ë¥¹¥¯¥í¡¼¥ë¤¹¤ë"
+
+msgid "\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'"
+msgstr ""
+"\"ver\", \"hor\" ¤«¤Ä/¤Þ¤¿¤Ï \"jump\"; 'scrollbind' ¤Î¥ª¥×¥·¥ç¥ó¤Î\n"
+"¥ê¥¹¥È"
+
+msgid "this window's cursor moves together with other bound windows"
+msgstr "¤³¤Î¥¦¥£¥ó¥É¥¦¤Î¥«¡¼¥½¥ë¤Ï¾¤ÎƱĴ¥¦¥£¥ó¥É¥¦¤È°ì½ï¤Ëư¤¯"
+
+msgid "size of a terminal window"
+msgstr "üËö¥¦¥£¥ó¥É¥¦¤Î¥µ¥¤¥º"
+
+msgid "key that precedes Vim commands in a terminal window"
+msgstr "üËö¥¦¥£¥ó¥É¥¦¤Ç Vim ¤Î¥³¥Þ¥ó¥É¤ÎÁ°¤ËÆþÎϤ¹¤ë¥¡¼"
+
+msgid "max number of lines to keep for scrollback in a terminal window"
+msgstr "üËö¥¦¥£¥ó¥É¥¦¤Ç¥¹¥¯¥í¡¼¥ë¥Ð¥Ã¥¯¤Î¤¿¤á¤ËÊÝ»ý¤¹¤ëºÇÂç¹Ô¿ô"
+
+msgid "type of pty to use for a terminal window"
+msgstr "üËö¥¦¥£¥ó¥É¥¦¤Ç»È¤¦ pty ¤Î¼ïÎà"
+
+msgid "name of the winpty dynamic library"
+msgstr "winpty ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "multiple tab pages"
+msgstr "Ê£¿ô¥¿¥Ö¥Ú¡¼¥¸"
+
+msgid "0, 1 or 2; when to use a tab pages line"
+msgstr "0, 1 ¤Þ¤¿¤Ï 2; ¥¿¥Ö¥Ú¡¼¥¸¹Ô¤ò¤¤¤Ä»È¤¦¤«"
+
+msgid "maximum number of tab pages to open for -p and \"tab all\""
+msgstr "-p ¤È \"tab all\" ¤Ç³«¤«¤ì¤ë¥¿¥Ö¥Ú¡¼¥¸¤ÎºÇÂç¿ô"
+
+msgid "custom tab pages line"
+msgstr "¥«¥¹¥¿¥à¤Î¥¿¥Ö¥Ú¡¼¥¸¹Ô"
+
+msgid "custom tab page label for the GUI"
+msgstr "¥«¥¹¥¿¥à¤Î GUI ¤Î¥¿¥Ö¥Ú¡¼¥¸¥é¥Ù¥ë"
+
+msgid "custom tab page tooltip for the GUI"
+msgstr "¥«¥¹¥¿¥à¤Î GUI ¤Î¥¿¥Ö¥Ú¡¼¥¸¥Ä¡¼¥ë¥Á¥Ã¥×"
+
+msgid "terminal"
+msgstr "üËö"
+
+msgid "name of the used terminal"
+msgstr "»ÈÍѤµ¤ì¤Æ¤¤¤ëüËö¤Î̾Á°"
+
+msgid "alias for 'term'"
+msgstr "'term' ¤ÎÊÌ̾"
+
+msgid "check built-in termcaps first"
+msgstr "Áȹþ¤ß¤Î termcap ¤òºÇ½é¤Ë¥Á¥§¥Ã¥¯¤¹¤ë"
+
+msgid "terminal connection is fast"
+msgstr "üËö¤ÎÀܳ¤¬¹â®¤Ç¤¢¤ë"
+
+msgid "request terminal key codes when an xterm is detected"
+msgstr "xterm¤ò¸¡½Ð¤·¤¿¤È¤¤ËüËö¤Î¥¡¼¥³¡¼¥É¤òÍ׵᤹¤ë"
+
+msgid "terminal that requires extra redrawing"
+msgstr "ÄɲäκÆÉÁ²è¤¬É¬ÍפÊüËö"
+
+msgid "recognize keys that start with <Esc> in Insert mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç <Esc> ¤Ç»Ï¤Þ¤ë¥¡¼¤òǧ¼±¤¹¤ë"
+
+msgid "minimal number of lines to scroll at a time"
+msgstr "°ìÅ٤˥¹¥¯¥í¡¼¥ë¤¹¤ëºÇ¾®¹Ô¿ô"
+
+msgid "maximum number of lines to use scrolling instead of redrawing"
+msgstr "ºÆÉÁ²è¤Ç¤Ï¤Ê¤¯¥¹¥¯¥í¡¼¥ë¤ò»È¤¦ºÇÂç¹Ô¿ô"
+
+msgid "specifies what the cursor looks like in different modes"
+msgstr "¤½¤ì¤¾¤ì¤Î¥â¡¼¥ÉÆâ¤Ç¤Î¥«¡¼¥½¥ë¤Î³°´Ñ¤ò»ØÄê"
+
+msgid "show info in the window title"
+msgstr "¥¦¥£¥ó¥É¥¦¥¿¥¤¥È¥ë¤Ë¾ðÊó¤òɽ¼¨"
+
+msgid "percentage of 'columns' used for the window title"
+msgstr "¥¦¥£¥ó¥É¥¦¥¿¥¤¥È¥ë¤Ë»È¤ï¤ì¤ë 'columns' ¤Î³ä¹ç (¥Ñ¡¼¥»¥ó¥Èñ°Ì)"
+
+msgid "when not empty, string to be used for the window title"
+msgstr "¶õ¤Ç¤Ê¤¤¤È¤¡¢¥¦¥£¥ó¥É¥¦¥¿¥¤¥È¥ë¤Ë»È¤ï¤ì¤ëʸ»úÎó"
+
+msgid "string to restore the title to when exiting Vim"
+msgstr "Vim ¤Î½ªÎ»»þ¤Ë¥¿¥¤¥È¥ë¤ËÉü¸µ¤¹¤ëʸ»úÎó"
+
+msgid "set the text of the icon for this window"
+msgstr "¤³¤Î¥¦¥£¥ó¥É¥¦¤Î¥¢¥¤¥³¥ó¤Î¥Æ¥¥¹¥È¤òÀßÄê"
+
+msgid "when not empty, text for the icon of this window"
+msgstr "¶õ¤Ç¤Ê¤¤¤È¤¡¢¤³¤Î¥¦¥£¥ó¥É¥¦¤Î¥¢¥¤¥³¥ó¤Ë»È¤ï¤ì¤ë¥Æ¥¥¹¥È"
+
+msgid "restore the screen contents when exiting Vim"
+msgstr "Vim ¤Î½ªÎ»»þ¤Ë²èÌÌ¤ÎÆâÍÆ¤òÉü¸µ¤¹¤ë"
+
+msgid "using the mouse"
+msgstr "¥Þ¥¦¥¹¤Î»ÈÍÑ"
+
+msgid "list of flags for using the mouse"
+msgstr "¥Þ¥¦¥¹¤ò»È¤¦¤¿¤á¤Î¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid "the window with the mouse pointer becomes the current one"
+msgstr "¥Þ¥¦¥¹¥Ý¥¤¥ó¥¿¤Î¤¢¤ë¥¦¥£¥ó¥É¥¦¤¬¥¢¥¯¥Æ¥£¥Ö¤Ë¤Ê¤ë"
+
+msgid "the window with the mouse pointer scrolls with the mouse wheel"
+msgstr "¥Þ¥¦¥¹¥Ý¥¤¥ó¥¿¤Î¤¢¤ë¥¦¥£¥ó¥É¥¦¤¬¥Þ¥¦¥¹¥Û¥¤¡¼¥ë¤Ç¥¹¥¯¥í¡¼¥ë¤¹¤ë"
+
+msgid "hide the mouse pointer while typing"
+msgstr "ʸ»ú¤ÎÆþÎÏÃæ¤Ë¥Þ¥¦¥¹¥Ý¥¤¥ó¥¿¤ò±£¤¹"
+
+msgid ""
+"\"extend\", \"popup\" or \"popup_setpos\"; what the right\n"
+"mouse button is used for"
+msgstr ""
+"\"extend\", \"popup\" ¤¢¤ë¤¤¤Ï \"popup_setpos\"; ¥Þ¥¦¥¹¤Î±¦¥Ü¥¿¥ó¤ò\n"
+"²¿¤Ë»È¤¦¤«"
+
+msgid "maximum time in msec to recognize a double-click"
+msgstr "¥À¥Ö¥ë¥¯¥ê¥Ã¥¯¤È¤·¤ÆÇ§¼±¤¹¤ëºÇÂç»þ´Ö (¥ß¥êÉÃ)"
+
+msgid "\"xterm\", \"xterm2\", \"sgr\", etc.; type of mouse"
+msgstr "\"xterm\", \"xterm2\", \"sgr\" ¤Ê¤É; ¥Þ¥¦¥¹¤Î¼ïÎà"
+
+msgid "what the mouse pointer looks like in different modes"
+msgstr "¤½¤ì¤¾¤ì¤Î¥â¡¼¥ÉÆâ¤Ç¤Î¥Þ¥¦¥¹¥Ý¥¤¥ó¥¿¤Î³°´Ñ¤ò»ØÄê"
+
+msgid "GUI"
+msgstr "GUI"
+
+msgid "list of font names to be used in the GUI"
+msgstr "GUI ¤Ç»È¤ï¤ì¤ë¥Õ¥©¥ó¥È̾¤Î¥ê¥¹¥È"
+
+msgid "pair of fonts to be used, for multibyte editing"
+msgstr "¥Þ¥ë¥Á¥Ð¥¤¥È¤ÎÊÔ½¸¤Ç»È¤ï¤ì¤ë¥Õ¥©¥ó¥È¤Î¥Ú¥¢"
+
+msgid "list of font names to be used for double-wide characters"
+msgstr "Á´³Ñʸ»ú¤Ë»È¤ï¤ì¤ë¥Õ¥©¥ó¥È̾¤Î¥ê¥¹¥È"
+
+msgid "use smooth, antialiased fonts"
+msgstr "¤Ê¤á¤é¤«¤Ç¥¢¥ó¥Á¥¨¥¤¥ê¥¢¥¹¤µ¤ì¤¿¥Õ¥©¥ó¥È¤ò»È¤¦"
+
+msgid "list of flags that specify how the GUI works"
+msgstr "GUI ¤¬¤É¤¦Æ°¤¯¤«¤ò»ØÄꤹ¤ë¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid "\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar"
+msgstr ""
+"\"icons\", \"text\" ¤«¤Ä/¤¢¤ë¤¤¤Ï \"tooltips\"; ¤É¤Î¤è¤¦¤Ë\n"
+"¥Ä¡¼¥ë¥Ð¡¼¤òɽ¼¨¤¹¤ë¤«"
+
+msgid "size of toolbar icons"
+msgstr "¥Ä¡¼¥ë¥Ð¡¼¥¢¥¤¥³¥ó¤Î¥µ¥¤¥º"
+
+msgid "room (in pixels) left above/below the window"
+msgstr "¥¦¥£¥ó¥É¥¦¤Î¾å²¼¤Î;Çò (¥Ô¥¯¥»¥ëñ°Ì)"
+
+msgid "list of ASCII characters that can be combined into complex shapes"
+msgstr "Ê£¹ç·Á¾õ¤Ë·ë¹ç¤µ¤ì¤ëASCIIʸ»ú¤Î¥ê¥¹¥È"
+
+msgid "options for text rendering"
+msgstr "¥Æ¥¥¹¥È¥ì¥ó¥À¥ê¥ó¥°¤Î¤¿¤á¤Î¥ª¥×¥·¥ç¥ó"
+
+msgid "use a pseudo-tty for I/O to external commands"
+msgstr "³°Éô¥³¥Þ¥ó¥É¤Î I/O ¤Ëµ¿»÷ tty ¤ò»È¤¦"
+
+msgid ""
+"\"last\", \"buffer\" or \"current\": which directory used for the file "
+"browser"
+msgstr ""
+"\"last\", \"buffer\" ¤¢¤ë¤¤¤Ï \"current\": ¥Õ¥¡¥¤¥ë¥Ö¥é¥¦¥¶¤Ç¤É¤Î\n"
+"¥Ç¥£¥ì¥¯¥È¥ê¤ò»È¤¦¤«"
+
+msgid "language to be used for the menus"
+msgstr "¥á¥Ë¥å¡¼¤Ç»È¤ï¤ì¤ë¸À¸ì"
+
+msgid "maximum number of items in one menu"
+msgstr "1 ¸Ä¤Î¥á¥Ë¥å¡¼¤ÎºÇÂç¹àÌÜ¿ô"
+
+msgid "\"no\", \"yes\" or \"menu\"; how to use the ALT key"
+msgstr "\"no\", \"yes\" ¤Þ¤¿¤Ï \"menu\"; ALT ¥¡¼¤ò¤É¤¦»È¤¦¤«"
+
+msgid "number of pixel lines to use between characters"
+msgstr "¹Ô´Ö¤ÎÉý¤Î¥Ô¥¯¥»¥ë¿ô"
+
+msgid "delay in milliseconds before a balloon may pop up"
+msgstr "¥Ð¥ë¡¼¥óɽ¼¨¤¬½Ð¤ë¤Þ¤Ç¤Î»þ´Ö (¥ß¥êÉÃ)"
+
+msgid "use balloon evaluation in the GUI"
+msgstr "GUI ¤Ç¥Ð¥ë¡¼¥óɾ²Á¤ò»È¤¦"
+
+msgid "use balloon evaluation in the terminal"
+msgstr "üËö¤Ç¥Ð¥ë¡¼¥óɾ²Á¤ò»È¤¦"
+
+msgid "expression to show in balloon eval"
+msgstr "¥Ð¥ë¡¼¥óɾ²Á¤Ëɽ¼¨¤¹¤ë¼°"
+
+msgid "printing"
+msgstr "°õºþ"
+
+msgid "list of items that control the format of :hardcopy output"
+msgstr ":hardcopy ½ÐÎϤνñ¼°¤òÀ©¸æ¤¹¤ëÍ×ÁǤΥꥹ¥È"
+
+msgid "name of the printer to be used for :hardcopy"
+msgstr ":hardcopy ¤Ç»È¤ï¤ì¤ë¥×¥ê¥ó¥¿¤Î̾Á°"
+
+msgid "expression used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy ¤Ç PostScript ¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "name of the font to be used for :hardcopy"
+msgstr ":hardcopy ¤Ç»È¤ï¤ì¤ë¥Õ¥©¥ó¥È¤Î̾Á°"
+
+msgid "format of the header used for :hardcopy"
+msgstr ":hardcopy ¤Î¥Ø¥Ã¥À¤Ç»È¤ï¤ì¤ë½ñ¼°"
+
+msgid "encoding used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy ¤Ç PostScript ¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë»È¤ï¤ì¤ë¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°"
+
+msgid "the CJK character set to be used for CJK output from :hardcopy"
+msgstr ":hardcopy ¤Î½ÐÎϤÎÃæ¤Î CJK ʸ»ú¤Ë»È¤ï¤ì¤ëʸ»ú½¸¹ç"
+
+msgid "list of font names to be used for CJK output from :hardcopy"
+msgstr ":hardcopy ¤Î½ÐÎϤÎÃæ¤Î CJK ʸ»ú¤Ë»È¤ï¤ì¤ë¥Õ¥©¥ó¥È̾¤Î¥ê¥¹¥È"
+
+msgid "messages and info"
+msgstr "¥á¥Ã¥»¡¼¥¸¤È¾ðÊó"
+
+msgid "add 's' flag in 'shortmess' (don't show search message)"
+msgstr "'s' ¥Õ¥é¥°¤ò 'shortmess' ¤ËÄɲà (¸¡º÷¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Ê¤¤)"
+
+msgid "list of flags to make messages shorter"
+msgstr "¥á¥Ã¥»¡¼¥¸¤òû¤¯¤¹¤ë¤¿¤á¤Î¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid "show (partial) command keys in the status line"
+msgstr "¥³¥Þ¥ó¥É (¤Î°ìÉô) ¤ò¥¹¥Æ¡¼¥¿¥¹¹Ô¤Ëɽ¼¨"
+
+msgid "display the current mode in the status line"
+msgstr "¸½ºß¤Î¥â¡¼¥É¤ò¥¹¥Æ¡¼¥¿¥¹¹Ô¤Ëɽ¼¨"
+
+msgid "show cursor position below each window"
+msgstr "¥«¡¼¥½¥ë°ÌÃÖ¤ò¤½¤ì¤¾¤ì¤Î¥¦¥£¥ó¥É¥¦¤Î²¼¤Ëɽ¼¨"
+
+msgid "alternate format to be used for the ruler"
+msgstr "¥ë¡¼¥é¡¼¤Ë»È¤ï¤ì¤ëÂåÂØ½ñ¼°"
+
+msgid "threshold for reporting number of changed lines"
+msgstr "Êѹ¹¤µ¤ì¤¿¹Ô¤Î¿ô¤ÎÊó¹ð¤¬½Ð¤ëïçÃÍ"
+
+msgid "the higher the more messages are given"
+msgstr "Ãͤ¬Â礤¤¤Û¤É¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤ë"
+
+msgid "file to write messages in"
+msgstr "¥á¥Ã¥»¡¼¥¸¤ò½ñ¹þ¤à¥Õ¥¡¥¤¥ë"
+
+msgid "pause listings when the screen is full"
+msgstr "²èÌ̤¬°ìÇդˤʤ俤Ȥ°ìÍ÷ɽ¼¨¤ò°ì»þÄä»ß"
+
+msgid "start a dialog when a command fails"
+msgstr "¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤·¤¿¤È¤¤Ë¥À¥¤¥¢¥í¥°¤ò³«¤¯"
+
+msgid "ring the bell for error messages"
+msgstr "¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤Ç¥Ù¥ë¤òÌĤ餹"
+
+msgid "use a visual bell instead of beeping"
+msgstr "¥Ó¡¼¥×²»¤ÎÂå¤ï¤ê¤Ë¥Ó¥¸¥å¥¢¥ë¥Ù¥ë¤ò»È¤¦"
+
+msgid "do not ring the bell for these reasons"
+msgstr "¤³¤ì¤é¤ÎÍýͳ¤Ë¤Ï¥Ù¥ë¤òÌĤ餵¤Ê¤¤"
+
+msgid "list of preferred languages for finding help"
+msgstr "¥Ø¥ë¥×¤ò¸«¤Ä¤±¤ëºÝ¤Î˾¤Þ¤·¤¤¸À¸ì¤Î¥ê¥¹¥È"
+
+msgid "selecting text"
+msgstr "¥Æ¥¥¹¥ÈÁªÂò"
+
+msgid "\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves"
+msgstr ""
+"\"old\", \"inclusive\" ¤Þ¤¿¤Ï \"exclusive\"; ¥Æ¥¥¹¥ÈÁªÂò¤¬¤É¤¦\n"
+"¿¶Éñ¤¦¤«"
+
+msgid ""
+"\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode\n"
+"instead of Visual mode"
+msgstr ""
+"\"mouse\", \"key\" ¤«¤Ä/¤Þ¤¿¤Ï \"cmd\"; ¤¤¤Ä¥Ó¥¸¥å¥¢¥ë¥â¡¼¥É¤Ç¤Ï\n"
+"¤Ê¤¯ÁªÂò¥â¡¼¥É¤ò³«»Ï¤¹¤ë¤«"
+
+msgid ""
+"\"unnamed\" to use the * register like unnamed register\n"
+"\"autoselect\" to always put selected text on the clipboard"
+msgstr ""
+"\"unnamed\"; * ¥ì¥¸¥¹¥¿¤ò̵̾¥ì¥¸¥¹¥¿¤ÈƱ¤¸¤è¤¦¤Ë»È¤¦\n"
+"\"autoselect\"; ¾ï¤ËÁªÂò¤µ¤ì¤¿¥Æ¥¥¹¥È¤ò¥¯¥ê¥Ã¥×¥Ü¡¼¥É¤Ë¥³¥Ô¡¼"
+
+msgid "\"startsel\" and/or \"stopsel\"; what special keys can do"
+msgstr "\"startsel\" ¤«¤Ä/¤Þ¤¿¤Ï \"stopsel\"; ÆÃÊ̤ʥ¡¼¤¬²¿¤ò¤¹¤ë¤«"
+
+msgid "editing text"
+msgstr "¥Æ¥¥¹¥ÈÊÔ½¸"
+
+msgid "maximum number of changes that can be undone"
+msgstr "¥¢¥ó¥É¥¥²Äǽ¤ÊÊѹ¹¤ÎºÇÂçÃÍ"
+
+msgid "automatically save and restore undo history"
+msgstr "¥¢¥ó¥É¥¥ÍúÎò¤ò¼«Æ°¤ÇÊݸ¡¦Éü¸µ"
+
+msgid "list of directories for undo files"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ëÍѤΥǥ£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È"
+
+msgid "maximum number lines to save for undo on a buffer reload"
+msgstr "¥Ð¥Ã¥Õ¥¡¤Î¥ê¥í¡¼¥É»þ¤Ë¥¢¥ó¥É¥¥¤Î¤¿¤á¤ËÊݸ¤¹¤ëºÇÂç¹Ô¿ô"
+
+msgid "changes have been made and not written to a file"
+msgstr "Êѹ¹¤¬¹Ô¤ï¤ì¤¿¤¬¥Õ¥¡¥¤¥ë¤Ë½ñ¹þ¤Þ¤ì¤Æ¤¤¤Ê¤¤"
+
+msgid "buffer is not to be written"
+msgstr "¥Ð¥Ã¥Õ¥¡¤Ï½ñ¹þ¤Þ¤ì¤Ê¤¤"
+
+msgid "changes to the text are possible"
+msgstr "¥Æ¥¥¹¥È¤ÎÊѹ¹¤¬²Äǽ"
+
+msgid "line length above which to break a line"
+msgstr "¤³¤ì¤è¤êŤ¤¹Ô¤Ï²þ¹Ô¤µ¤ì¤ë"
+
+msgid "margin from the right in which to break a line"
+msgstr "²þ¹Ô¤¹¤ëºÝ¤Î±¦¤«¤é¤Î¥Þ¡¼¥¸¥ó"
+
+msgid "specifies what <BS>, CTRL-W, etc. can do in Insert mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç <BS>, CTRL-W Åù¤¬²¿¤ò¤Ç¤¤ë¤«¤ò»ØÄê"
+
+msgid "definition of what comment lines look like"
+msgstr "¥³¥á¥ó¥È¹Ô¤¬¤É¤¦¤Ê¤Ã¤Æ¤¤¤ë¤«¤ÎÄêµÁ"
+
+msgid "list of flags that tell how automatic formatting works"
+msgstr "¼«Æ°À°·Á¤¬¤É¤Î¤è¤¦¤Ëưºî¤¹¤ë¤«¤ò·è¤á¤ë¥Õ¥é¥°¤Î¥ê¥¹¥È"
+
+msgid "pattern to recognize a numbered list"
+msgstr "¿ô»úÉÕ¤¤Î²Õ¾ò½ñ¤¤òǧ¼±¤¹¤ë¥Ñ¥¿¡¼¥ó"
+
+msgid "expression used for \"gq\" to format lines"
+msgstr "\"gq\" ¤Ç¹Ô¤òÀ°·Á¤¹¤ë¤È¤¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "specifies how Insert mode completion works for CTRL-N and CTRL-P"
+msgstr "ÁÞÆþ¥â¡¼¥ÉÊä´°¤¬ CTRL-N ¤È CTRL-P ¤Ç¤É¤¦Æ°ºî¤¹¤ë¤«¤ò»ØÄê"
+
+msgid "whether to use a popup menu for Insert mode completion"
+msgstr "ÁÞÆþ¥â¡¼¥ÉÊä´°¤Ç¥Ý¥Ã¥×¥¢¥Ã¥×¥á¥Ë¥å¡¼¤ò»È¤¦¤«¤É¤¦¤«"
+
+msgid "options for the Insert mode completion info popup"
+msgstr "ÁÞÆþ¥â¡¼¥ÉÊä´°¤Î¾ðÊó¥Ý¥Ã¥×¥¢¥Ã¥×ÍѤΥª¥×¥·¥ç¥ó"
+
+msgid "maximum height of the popup menu"
+msgstr "¥Ý¥Ã¥×¥¢¥Ã¥×¥á¥Ë¥å¡¼¤ÎºÇÂç¹â"
+
+msgid "minimum width of the popup menu"
+msgstr "¥Ý¥Ã¥×¥¢¥Ã¥×¥á¥Ë¥å¡¼¤ÎºÇÂçÉý"
+
+msgid "user defined function for Insert mode completion"
+msgstr "ÁÞÆþ¥â¡¼¥ÉÊä´°ÍѤΥ桼¥¶¡¼ÄêµÁ´Ø¿ô"
+
+msgid "function for filetype-specific Insert mode completion"
+msgstr "¥Õ¥¡¥¤¥ë¥¿¥¤¥×¸ÇͤÎÁÞÆþ¥â¡¼¥ÉÊä´°ÍÑ´Ø¿ô"
+
+msgid "list of dictionary files for keyword completion"
+msgstr "¥¡¼¥ï¡¼¥ÉÊä´°ÍѤμ½ñ¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È"
+
+msgid "list of thesaurus files for keyword completion"
+msgstr "¥¡¼¥ï¡¼¥ÉÊä´°ÍÑ¤ÎÆ±µÁ¸ì¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È"
+
+msgid "function used for thesaurus completion"
+msgstr "ƱµÁ¸ìÊä´°¤Ç»È¤ï¤ì¤ë´Ø¿ô"
+
+msgid "adjust case of a keyword completion match"
+msgstr "¥¡¼¥ï¡¼¥ÉÊä´°¤Î¥Þ¥Ã¥Á¤ÇÂçʸ»ú¾®Ê¸»ú¤òÄ´À°"
+
+msgid "enable entering digraphs with c1 <BS> c2"
+msgstr "c1 <BS> c2 ¤Ç¥À¥¤¥°¥é¥Õ¤òÆþÎϲÄǽ¤Ë¤¹¤ë"
+
+msgid "the \"~\" command behaves like an operator"
+msgstr "\"~\" ¥³¥Þ¥ó¥É¤¬¥ª¥Ú¥ì¡¼¥¿¤Î¤è¤¦¤Ë¤Õ¤ë¤Þ¤¦"
+
+msgid "function called for the \"g@\" operator"
+msgstr "\"g@\" ¥ª¥Ú¥ì¡¼¥¿¤Ç¸Æ¤Ð¤ì¤ë´Ø¿ô"
+
+msgid "when inserting a bracket, briefly jump to its match"
+msgstr "³ç¸Ì¤òÆþÎϤ·¤¿¤È¤¤Ë¡¢Âбþ¤¹¤ë³ç¸Ì¤Ë¤ï¤º¤«¤Î´Ö¥¸¥ã¥ó¥×"
+
+msgid "tenth of a second to show a match for 'showmatch'"
+msgstr "'showmatch' ¤ÇÂбþ¤òɽ¼¨¤¹¤ë»þ´Ö (0.1ÉÃñ°Ì)"
+
+msgid "list of pairs that match for the \"%\" command"
+msgstr "\"%\" ¥³¥Þ¥ó¥É¤Ç¥Þ¥Ã¥Á¤¹¤ë¥Ú¥¢¤Î¥ê¥¹¥È"
+
+msgid "use two spaces after '.' when joining a line"
+msgstr "¹Ô¤òÏ¢·ë¤¹¤ë¤È¤¤Ë '.' ¤Î¸å¤Ë¶õÇò¤ò 2 ¸ÄÆþ¤ì¤ë"
+
+msgid ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" and/or \"unsigned\"; number formats\n"
+"recognized for CTRL-A and CTRL-X commands"
+msgstr ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" ¤«¤Ä/¤Þ¤¿¤Ï \"unsigned\";\n"
+"CTRL-A ¤È CTRL-X ¥³¥Þ¥ó¥É¤Çǧ¼±¤¹¤ë¿ô»ú¤Î½ñ¼°"
+
+msgid "tabs and indenting"
+msgstr "¥¿¥Ö¤È¥¤¥ó¥Ç¥ó¥È"
+
+msgid "number of spaces a <Tab> in the text stands for"
+msgstr "1 ¤Ä¤Î <Tab> ¤ËÂбþ¤¹¤ë¶õÇò¤Î¿ô"
+
+msgid "number of spaces used for each step of (auto)indent"
+msgstr "(¼«Æ°)¥¤¥ó¥Ç¥ó¥È¤Î³ÆÃʳ¬¤Ë»È¤ï¤ì¤ë¶õÇò¤Î¿ô"
+
+msgid "list of number of spaces a tab counts for"
+msgstr "1 ¤Ä¤Î¥¿¥Ö¤¬ÁêÅö¤¹¤ë¶õÇò¤Î¿ô¤Î¥ê¥¹¥È"
+
+msgid "list of number of spaces a soft tabsstop counts for"
+msgstr "1 ¤Ä¤Î¥½¥Õ¥È¥¿¥Ö¥¹¥È¥Ã¥×¤ËÁêÅö¤¹¤ë¶õÇò¤Î¿ô¤Î¥ê¥¹¥È"
+
+msgid "a <Tab> in an indent inserts 'shiftwidth' spaces"
+msgstr "¥¤¥ó¥Ç¥ó¥ÈÆâ¤Ç¤Î <Tab> ¤Ï 'shiftwidth' ¸Ä¤Î¶õÇò¤òÁÞÆþ"
+
+msgid "if non-zero, number of spaces to insert for a <Tab>"
+msgstr "0 ¤Ç¤Ê¤¤¤È¤¡¢1 ¤Ä¤Î <Tab> ¤ÇÁÞÆþ¤µ¤ì¤ë¶õÇò¤Î¿ô"
+
+msgid "round to 'shiftwidth' for \"<<\" and \">>\""
+msgstr "\"<<\" ¤È \">>\" ¤Ç 'shiftwidth' ¤Ë´Ý¤á¤ë"
+
+msgid "expand <Tab> to spaces in Insert mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç <Tab> ¤ò¶õÇò¤ËŸ³«"
+
+msgid "automatically set the indent of a new line"
+msgstr "¿·¤·¤¤¹Ô¤Î¥¤¥ó¥Ç¥ó¥È¤ò¼«Æ°Åª¤ËÀßÄê"
+
+msgid "do clever autoindenting"
+msgstr "¸¤¤¼«Æ°¥¤¥ó¥Ç¥ó¥È¤ò¹Ô¤¦"
+
+msgid "enable specific indenting for C code"
+msgstr "C ¥³¡¼¥É¤ËÆÃͤΥ¤¥ó¥Ç¥ó¥È¤ò͸ú¤Ë¤¹¤ë"
+
+msgid "options for C-indenting"
+msgstr "C ¥¤¥ó¥Ç¥ó¥È½èÍýÍѤΥª¥×¥·¥ç¥ó"
+
+msgid "keys that trigger C-indenting in Insert mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç C ¥¤¥ó¥Ç¥ó¥È½èÍý¤ò°ú¤µ¯¤³¤¹¥¡¼"
+
+msgid "list of words that cause more C-indent"
+msgstr "¤µ¤é¤Ê¤ë C ¥¤¥ó¥Ç¥ó¥È¤òȯÀ¸¤µ¤»¤ëñ¸ì¤Î¥ê¥¹¥È"
+
+msgid "expression used to obtain the indent of a line"
+msgstr "¹Ô¤Î¥¤¥ó¥Ç¥ó¥È¤òÆÀ¤ë¤¿¤á¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "keys that trigger indenting with 'indentexpr' in Insert mode"
+msgstr "ÁÞÆþ¥â¡¼¥É¤Ç 'indentexpr' ¤Ë¤è¤ë¥¤¥ó¥Ç¥ó¥È¤ò°ú¤µ¯¤³¤¹¥¡¼"
+
+msgid "copy whitespace for indenting from previous line"
+msgstr "Á°¤Î¹Ô¤«¤é¥¤¥ó¥Ç¥ó¥È¤Î¶õÇò¤ò¥³¥Ô¡¼"
+
+msgid "preserve kind of whitespace when changing indent"
+msgstr "¥¤¥ó¥Ç¥ó¥È¤òÊѹ¹¤¹¤ë¤È¤¤Ë¶õÇò¤Î¼ïÎà¤òÊÝ»ý"
+
+msgid "enable lisp mode"
+msgstr "lisp ¥â¡¼¥É¤ò͸ú²½"
+
+msgid "words that change how lisp indenting works"
+msgstr "lisp ¥¤¥ó¥Ç¥ó¥È½èÍý¤Îưºî¤òÊѹ¹¤¹¤ëñ¸ì¤Î¥ê¥¹¥È"
+
+msgid "folding"
+msgstr "ÀÞ¾ö¤ß"
+
+msgid "unset to display all folds open"
+msgstr "Á´¤Æ¤ÎÀÞ¾ö¤ß¤ò³«¤¤¤ÆÉ½¼¨¤¹¤ë¤Ë¤Ï¥ª¥Õ¤Ë¤¹¤ë"
+
+msgid "folds with a level higher than this number will be closed"
+msgstr "¤³¤Î¿ôÃͤè¤ê¤â¥ì¥Ù¥ë¤Î¹â¤¤ÀÞ¾ö¤ß¤ÏÊĤ¸¤é¤ì¤ë"
+
+msgid "value for 'foldlevel' when starting to edit a file"
+msgstr "¥Õ¥¡¥¤¥ë¤òÊÔ½¸³«»Ï¤¹¤ëºÝ¤Î 'foldlevel' ¤ÎÃÍ"
+
+msgid "width of the column used to indicate folds"
+msgstr "ÀÞ¾ö¤ß¤òɽ¼¨¤¹¤ë¤Î¤Ë»È¤ï¤ì¤ëÎóÉý"
+
+msgid "expression used to display the text of a closed fold"
+msgstr "ÊĤ¸¤é¤ì¤¿ÀÞ¾ö¤ß¤Î¥Æ¥¥¹¥È¤òɽ¼¨¤¹¤ë¤Î¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "set to \"all\" to close a fold when the cursor leaves it"
+msgstr "¥«¡¼¥½¥ë¤¬ÀÞ¾ö¤ß¤òÎ¥¤ì¤¿¤È¤¤ËÊĤ¸¤ë¤Ë¤Ï \"all\" ¤ËÀßÄê"
+
+msgid "specifies for which commands a fold will be opened"
+msgstr "¤É¤Î¥³¥Þ¥ó¥É¤¬ÀÞ¾ö¤ß¤ò³«¤¯¤«¤ò»ØÄê"
+
+msgid "minimum number of screen lines for a fold to be closed"
+msgstr "ÀÞ¾ö¤ß¤¬ÊĤ¸¤é¤ì¤ë²èÌ̾å¤ÎºÇ¾®¹Ô¿ô"
+
+msgid "template for comments; used to put the marker in"
+msgstr "¥³¥á¥ó¥ÈÍѤΥƥó¥×¥ì¡¼¥È; ¥Þ¡¼¥«¡¼¤òÃæ¤ËÃÖ¤¯¤¿¤á¤Ë»È¤ï¤ì¤ë"
+
+msgid ""
+"folding type: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" or \"diff\""
+msgstr ""
+"ÀÞ¾ö¤ß¤Î¼ïÎà: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" ¤Þ¤¿¤Ï \"diff\""
+
+msgid "expression used when 'foldmethod' is \"expr\""
+msgstr "'foldmethod' ¤¬ \"expr\" ¤ÎºÝ¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "used to ignore lines when 'foldmethod' is \"indent\""
+msgstr "'foldmethod' ¤¬ \"indent\" ¤ÎºÝ¤Ë¹Ô¤ò̵»ë¤¹¤ë¤¿¤á¤Ë»È¤ï¤ì¤ë"
+
+msgid "markers used when 'foldmethod' is \"marker\""
+msgstr "'foldmethod' ¤¬ \"marker\" ¤ÎºÝ¤Ë»È¤ï¤ì¤ë¥Þ¡¼¥«¡¼"
+
+msgid "maximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\""
+msgstr ""
+"'foldmethod' ¤¬ \"indent\" ¤Þ¤¿¤Ï \"syntax\" ¤ÎºÝ¤ÎÀÞ¾ö¤ß¤Î\n"
+"ºÇÂç¤Î¿¼¤µ"
+
+msgid "diff mode"
+msgstr "º¹Ê¬¥â¡¼¥É"
+
+msgid "use diff mode for the current window"
+msgstr "¸½ºß¤Î¥¦¥£¥ó¥É¥¦¤Çº¹Ê¬¥â¡¼¥É¤ò»È¤¦"
+
+msgid "options for using diff mode"
+msgstr "º¹Ê¬¥â¡¼¥É¤ò»È¤¦¤¿¤á¤Î¥ª¥×¥·¥ç¥ó"
+
+msgid "expression used to obtain a diff file"
+msgstr "º¹Ê¬¥Õ¥¡¥¤¥ë¤ò¼èÆÀ¤¹¤ë¤¿¤á¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "expression used to patch a file"
+msgstr "¥Õ¥¡¥¤¥ë¤Ë¥Ñ¥Ã¥Á¤òÅö¤Æ¤ë¤¿¤á¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "mapping"
+msgstr "¥Þ¥Ã¥Ô¥ó¥°"
+
+msgid "maximum depth of mapping"
+msgstr "¥Þ¥Ã¥Ô¥ó¥°¤ÎºÇÂç¤Î¿¼¤µ"
+
+msgid "recognize mappings in mapped keys"
+msgstr "¥Þ¥Ã¥×¤µ¤ì¤¿¥¡¼¤ËÂФ¹¤ë¥Þ¥Ã¥Ô¥ó¥°¤òǧ¼±¤¹¤ë"
+
+msgid "allow timing out halfway into a mapping"
+msgstr "¥Þ¥Ã¥Ô¥ó¥°¤ÎÅÓÃæ¤Ç¤Î¥¿¥¤¥à¥¢¥¦¥È¤òµö²Ä"
+
+msgid "allow timing out halfway into a key code"
+msgstr "¥¡¼¥³¡¼¥É¤ÎÅÓÃæ¤Ç¤Î¥¿¥¤¥à¥¢¥¦¥È¤òµö²Ä"
+
+msgid "time in msec for 'timeout'"
+msgstr "'timeout' ¤Î»þ´Ö (¥ß¥êÉÃ)"
+
+msgid "time in msec for 'ttimeout'"
+msgstr "'ttimeout' ¤Î»þ´Ö (¥ß¥êÉÃ)"
+
+msgid "reading and writing files"
+msgstr "¥Õ¥¡¥¤¥ë¤ÎÆÉ¤ß½ñ¤"
+
+msgid "enable using settings from modelines when reading a file"
+msgstr "¥Õ¥¡¥¤¥ëÆÉ¹þ¤ß»þ¤Ë¥â¡¼¥É¥é¥¤¥ó¤«¤é¤ÎÀßÄê¤Î»ÈÍѤò͸ú¤Ë¤¹¤ë"
+
+msgid "allow setting expression options from a modeline"
+msgstr "¥â¡¼¥É¥é¥¤¥ó¤«¤é¼°¤Ç¤¢¤ë¥ª¥×¥·¥ç¥ó¤òÀßÄꤹ¤ë¤³¤È¤òµö²Ä¤¹¤ë"
+
+msgid "number of lines to check for modelines"
+msgstr "¥â¡¼¥É¥é¥¤¥óÍѤ˥Á¥§¥Ã¥¯¤¹¤ë¹Ô¿ô"
+
+msgid "binary file editing"
+msgstr "¥Ð¥¤¥Ê¥ê¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸"
+
+msgid "last line in the file has an end-of-line"
+msgstr "¥Õ¥¡¥¤¥ë¤ÎËöÈø¤Î¹Ô¤Ë²þ¹Ô¤¬¤¢¤ë"
+
+msgid "fixes missing end-of-line at end of text file"
+msgstr "¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤ÎËöÈø¤Ë²þ¹Ô¤¬¤Ê¤¤¾ì¹ç¤Ë½¤Àµ¤¹¤ë"
+
+msgid "prepend a Byte Order Mark to the file"
+msgstr "¥Ð¥¤¥È½ç¥Þ¡¼¥¯ (BOM) ¤ò¥Õ¥¡¥¤¥ëÀèÆ¬¤Ë¤Ä¤±¤ë"
+
+msgid "end-of-line format: \"dos\", \"unix\" or \"mac\""
+msgstr "²þ¹Ô¤Î·Á¼°: \"dos\", \"unix\" ¤Þ¤¿¤Ï \"mac\""
+
+msgid "list of file formats to look for when editing a file"
+msgstr "¥Õ¥¡¥¤¥ëÊÔ½¸»þ¤ËÄ´¤Ù¤ë²þ¹Ô·Á¼°¤Î¥ê¥¹¥È"
+
+msgid "obsolete, use 'fileformat'"
+msgstr "Çѻߡ¢'fileformat' ¤ò»È¤¦¤³¤È"
+
+msgid "obsolete, use 'fileformats'"
+msgstr "Çѻߡ¢'fileformats' ¤ò»È¤¦¤³¤È"
+
+msgid "writing files is allowed"
+msgstr "¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¤¬µö²Ä¤µ¤ì¤Æ¤¤¤ë"
+
+msgid "write a backup file before overwriting a file"
+msgstr "¥Õ¥¡¥¤¥ë¤ò¾å½ñ¤¤¹¤ëÁ°¤Ë¥Ð¥Ã¥¯¥¢¥Ã¥×¤Ë½ñ¹þ¤à"
+
+msgid "keep a backup after overwriting a file"
+msgstr "¥Õ¥¡¥¤¥ë¤Î¾å½ñ¤¸å¤Ë¥Ð¥Ã¥¯¥¢¥Ã¥×¤òÊÝ»ý"
+
+msgid "patterns that specify for which files a backup is not made"
+msgstr "¤É¤Î¥Õ¥¡¥¤¥ë¤Ç¥Ð¥Ã¥¯¥¢¥Ã¥¯¤¬ºî¤é¤ì¤Ê¤¤¤«¤ò»ØÄꤹ¤ë¥Ñ¥¿¡¼¥ó"
+
+msgid "whether to make the backup as a copy or rename the existing file"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò´û¸¤Î¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼¤È¤¹¤ë¤«¥ê¥Í¡¼¥à¤¹¤ë¤«"
+
+msgid "list of directories to put backup files in"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÃÖ¤¯¥Ç¥£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È"
+
+msgid "file name extension for the backup file"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤Î³ÈÄ¥»Ò"
+
+msgid "automatically write a file when leaving a modified buffer"
+msgstr "Êѹ¹¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤òÎ¥¤ì¤ëºÝ¤Ë¼«Æ°Åª¤Ë¥Õ¥¡¥¤¥ë¤Ë½ñ¹þ¤à"
+
+msgid "as 'autowrite', but works with more commands"
+msgstr "'autowrite' ¤ÈƱÍͤÀ¤¬¡¢¤è¤ê¿¤¯¤Î¥³¥Þ¥ó¥É¤Çưºî¤¹¤ë"
+
+msgid "always write without asking for confirmation"
+msgstr "¾ï¤Ë³Îǧ̵¤·¤Ë½ñ¹þ¤à"
+
+msgid "automatically read a file when it was modified outside of Vim"
+msgstr "Vim ¤Î³°¤Ç¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤¿ºÝ¤Ë¼«Æ°Åª¤ËÆÉ¹þ¤à"
+
+msgid "keep oldest version of a file; specifies file name extension"
+msgstr "¥Õ¥¡¥¤¥ë¤ÎºÇ¸Å¤Î¥Ð¡¼¥¸¥ç¥ó¤òÊÝ»ý; ¥Õ¥¡¥¤¥ë¤Î³ÈÄ¥»Ò¤ò»ØÄê"
+
+msgid "forcibly sync the file to disk after writing it"
+msgstr "¥Õ¥¡¥¤¥ë¤ò½ñ¹þ¤ó¤À¸å¤Ë¶¯À©Åª¤Ë¥Ç¥£¥¹¥¯¤ËƱ´ü¤µ¤»¤ë"
+
+msgid "use 8.3 file names"
+msgstr "8.3 ·Á¼°¤Î¥Õ¥¡¥¤¥ë̾¤ò»È¤¦"
+
+msgid "encryption method for file writing: zip, blowfish or blowfish2"
+msgstr "¥Õ¥¡¥¤¥ë½ñ¹þ¤ß¤Î¤¿¤á¤Î°Å¹æ²½Êý¼°: zip, blowfish ¤Þ¤¿¤Ï blowfish2"
+
+msgid "the swap file"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë"
+
+msgid "list of directories for the swap file"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ëÍѤΥǥ£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È"
+
+msgid "use a swap file for this buffer"
+msgstr "¤³¤Î¥Ð¥Ã¥Õ¥¡¤Ç¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò»È¤¦"
+
+msgid "\"sync\", \"fsync\" or empty; how to flush a swap file to disk"
+msgstr ""
+"\"sync\", \"fsync\" ¤Þ¤¿¤Ï¶õ; ¤É¤Î¤è¤¦¤Ë¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò\n"
+"¥Ç¥£¥¹¥¯¤ËÁݤ½Ð¤¹¤«"
+
+msgid "number of characters typed to cause a swap file update"
+msgstr "²¿Ê¸»úÆþÎϤ·¤¿¤é¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¹¹¿·¤¹¤ë¤«"
+
+msgid "time in msec after which the swap file will be updated"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¹¹¿·¤¹¤ë¤Þ¤Ç¤Î»þ´Ö (¥ß¥êÉÃ)"
+
+msgid "maximum amount of memory in Kbyte used for one buffer"
+msgstr "1 ¤Ä¤Î¥Ð¥Ã¥Õ¥¡Åö¤¿¤ê¤ÎºÇÂç¥á¥â¥êÎÌ (Kbyte)"
+
+msgid "maximum amount of memory in Kbyte used for all buffers"
+msgstr "Á´¤Æ¤Î¥Ð¥Ã¥Õ¥¡¤Ç»È¤ï¤ì¤ëºÇÂç¥á¥â¥êÎÌ (Kbyte)"
+
+msgid "command line editing"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥óÊÔ½¸"
+
+msgid "how many command lines are remembered"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤ò²¿¸Ä¤Þ¤Çµ²±¤¹¤ë¤«"
+
+msgid "key that triggers command-line expansion"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥óŸ³«¤ò°ú¤µ¯¤³¤¹¥¡¼"
+
+msgid "like 'wildchar' but can also be used in a mapping"
+msgstr "'wildchar' ¤ÈƱÍͤÀ¤¬¥Þ¥Ã¥Ô¥ó¥°Æâ¤Ç¤â»ÈÍѤǤ¤ë"
+
+msgid "specifies how command line completion works"
+msgstr "¤É¤Î¤è¤¦¤Ë¥³¥Þ¥ó¥É¥é¥¤¥óÊä´°¤¬Æ°ºî¤¹¤ë¤«¤ò»ØÄê"
+
+msgid "empty or \"tagfile\" to list file name of matching tags"
+msgstr "¶õ¡¢¤Þ¤¿¤Ï¥Þ¥Ã¥Á¤·¤¿¥Õ¥¡¥¤¥ë̾¤ò°ìÍ÷ɽ¼¨¤¹¤ë¤Ê¤é \"tagfile\""
+
+msgid "list of file name extensions that have a lower priority"
+msgstr "Ä㤤ͥÀèÅÙ¤ò»ý¤Ä³ÈÄ¥»Ò¤Î¥ê¥¹¥È"
+
+msgid "list of file name extensions added when searching for a file"
+msgstr "¥Õ¥¡¥¤¥ë¸¡º÷»þ¤ËÄɲ䵤ì¤ë³ÈÄ¥»Ò¤Î¥ê¥¹¥È"
+
+msgid "list of patterns to ignore files for file name completion"
+msgstr "¥Õ¥¡¥¤¥ë̾Êä´°¤ÎºÝ¤Ë̵»ë¤¹¤ë¥Õ¥¡¥¤¥ë¥Ñ¥¿¡¼¥ó¤Î¥ê¥¹¥È"
+
+msgid "ignore case when using file names"
+msgstr "¥Õ¥¡¥¤¥ë̾¤ò»È¤¦ºÝ¤ËÂçʸ»ú¾®Ê¸»ú¤Î°ã¤¤¤ò̵»ë"
+
+msgid "ignore case when completing file names"
+msgstr "¥Õ¥¡¥¤¥ë̾Êä´°¤ÎºÝ¤ËÂçʸ»ú¾®Ê¸»ú¤Î°ã¤¤¤ò̵»ë"
+
+msgid "command-line completion shows a list of matches"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥óÊä´°¤Ï¥Þ¥Ã¥Á¤Î°ìÍ÷¤òɽ¼¨¤¹¤ë"
+
+msgid "key used to open the command-line window"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¥¦¥£¥ó¥É¥¦¤ò³«¤¯¤¿¤á¤Î¥¡¼"
+
+msgid "height of the command-line window"
+msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¥¦¥£¥ó¥É¥¦¤Î¹â¤µ"
+
+msgid "executing external commands"
+msgstr "³°Éô¥³¥Þ¥ó¥É¤Î¼Â¹Ô"
+
+msgid "name of the shell program used for external commands"
+msgstr "³°Éô¥³¥Þ¥ó¥É¤Ë»È¤ï¤ì¤ë¥·¥§¥ë¥×¥í¥°¥é¥à¤Î̾Á°"
+
+msgid "when to use the shell or directly execute a command"
+msgstr "¤¤¤Ä¥·¥§¥ë¤ò»È¤¦¤«¤½¤ì¤È¤âľÀܳ°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤«"
+
+msgid "character(s) to enclose a shell command in"
+msgstr "¥·¥§¥ë¥³¥Þ¥ó¥É¤ò°Ï¤à°úÍÑÉä"
+
+msgid "like 'shellquote' but include the redirection"
+msgstr "'shellquote' ¤ÈƱÍͤÀ¤¬¥ê¥À¥¤¥ì¥¯¥È¤ò´Þ¤à"
+
+msgid "characters to escape when 'shellxquote' is ("
+msgstr "'shellxquote' ¤¬ ( ¤Î»þ¤Ë¥¨¥¹¥±¡¼¥×¤µ¤ì¤ëʸ»ú"
+
+msgid "argument for 'shell' to execute a command"
+msgstr "¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ëºÝ¤Î 'shell' ¤Î°ú¿ô"
+
+msgid "used to redirect command output to a file"
+msgstr "¥³¥Þ¥ó¥É¤Î½ÐÎϤò¥Õ¥¡¥¤¥ë¤Ë¥ê¥À¥¤¥ì¥¯¥È¤¹¤ëºÝ¤Ë»È¤ï¤ì¤ë"
+
+msgid "use a temp file for shell commands instead of using a pipe"
+msgstr "¥·¥§¥ë¥³¥Þ¥ó¥É¤Ë¥Ñ¥¤¥×¤ò»È¤ï¤º¤Ë°ì»þ¥Õ¥¡¥¤¥ë¤ò»È¤¦"
+
+msgid "program used for \"=\" command"
+msgstr "\"=\" ¥³¥Þ¥ó¥É¤Ë»È¤ï¤ì¤ë¥×¥í¥°¥é¥à"
+
+msgid "program used to format lines with \"gq\" command"
+msgstr "\"gq\" ¥³¥Þ¥ó¥É¤Ç¹Ô¤òÀ°·Á¤¹¤ëºÝ¤Ë»È¤ï¤ì¤ë¥×¥í¥°¥é¥à"
+
+msgid "program used for the \"K\" command"
+msgstr "\"K\" ¥³¥Þ¥ó¥É¤Ë»È¤ï¤ì¤ë¥×¥í¥°¥é¥à"
+
+msgid "warn when using a shell command and a buffer has changes"
+msgstr "¥Ð¥Ã¥Õ¥¡¤ËÊѹ¹¤¬¤¢¤ê¥·¥§¥ë¥³¥Þ¥ó¥É¤¬¼Â¹Ô¤µ¤ì¤¿ºÝ¤Ë·Ù¹ð¤¹¤ë"
+
+msgid "running make and jumping to errors (quickfix)"
+msgstr "make ¤Î¼Â¹Ô¤È¥¨¥é¡¼¤Ø¤Î¥¸¥ã¥ó¥× (quickfix)"
+
+msgid "name of the file that contains error messages"
+msgstr "¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤¬Æþ¤Ã¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¤Î̾Á°"
+
+msgid "list of formats for error messages"
+msgstr "¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤Î½ñ¼°¤Î¥ê¥¹¥È"
+
+msgid "program used for the \":make\" command"
+msgstr "\":make\" ¥³¥Þ¥ó¥É¤Ë»È¤ï¤ì¤ë¥×¥í¥°¥é¥à"
+
+msgid "string used to put the output of \":make\" in the error file"
+msgstr "\":make\" ¤Î½ÐÎϤò¥¨¥é¡¼¥Õ¥¡¥¤¥ë¤Ë½ñ¹þ¤à¤¿¤á¤Ë»È¤ï¤ì¤ëʸ»úÎó"
+
+msgid "name of the errorfile for the 'makeprg' command"
+msgstr "'makeprg' ¥³¥Þ¥ó¥ÉÍѤΥ¨¥é¡¼¥Õ¥¡¥¤¥ë¤Î̾Á°"
+
+msgid "program used for the \":grep\" command"
+msgstr "\":grep\" ¥³¥Þ¥ó¥É¤Ë»È¤ï¤ì¤ë¥×¥í¥°¥é¥à"
+
+msgid "list of formats for output of 'grepprg'"
+msgstr "'grepprg' ¤Î½ÐÎÏÍѤνñ¼°¤Î¥ê¥¹¥È"
+
+msgid "encoding of the \":make\" and \":grep\" output"
+msgstr "\":make\" ¤È \":grep\" ¤Î½ÐÎϤΥ¨¥ó¥³¡¼¥Ç¥£¥ó¥°"
+
+msgid "function to display text in the quickfix window"
+msgstr "quickfix ¥¦¥£¥ó¥É¥¦¤Ë¥Æ¥¥¹¥È¤òɽ¼¨¤¹¤ë¤¿¤á¤Î´Ø¿ô"
+
+msgid "system specific"
+msgstr "¥·¥¹¥Æ¥à¸ÇÍ"
+
+msgid "use forward slashes in file names; for Unix-like shells"
+msgstr "¥Õ¥¡¥¤¥ë̾¤Ç¥¹¥é¥Ã¥·¥å¤ò»È¤¦; Unix ¥é¥¤¥¯¤Ê¥·¥§¥ëÍÑ"
+
+msgid "specifies slash/backslash used for completion"
+msgstr "Êä´°¤Ë salsh/backslash ¤Î¤É¤Á¤é¤ò»È¤¦¤«»ØÄê"
+
+msgid "language specific"
+msgstr "¸À¸ì¸ÇÍ"
+
+msgid "specifies the characters in a file name"
+msgstr "¥Õ¥¡¥¤¥ë̾¤Ë»È¤ï¤ì¤ëʸ»ú¤ò»ØÄê"
+
+msgid "specifies the characters in an identifier"
+msgstr "¼±Ê̻Ҥ˻Ȥï¤ì¤ëʸ»ú¤ò»ØÄê"
+
+msgid "specifies the characters in a keyword"
+msgstr "¥¡¼¥ï¡¼¥É¤Ë»È¤ï¤ì¤ëʸ»ú¤ò»ØÄê"
+
+msgid "specifies printable characters"
+msgstr "ɽ¼¨²Äǽ¤Êʸ»ú¤ò»ØÄê"
+
+msgid "specifies escape characters in a string"
+msgstr "ʸ»úÎóÆâ¤Î¥¨¥¹¥±¡¼¥×ʸ»ú¤ò»ØÄê"
+
+msgid "display the buffer right-to-left"
+msgstr "¥Ð¥Ã¥Õ¥¡¤ò±¦¤«¤éº¸¤Ëɽ¼¨"
+
+msgid "when to edit the command-line right-to-left"
+msgstr "¤¤¤Ä¥³¥Þ¥ó¥É¥é¥¤¥ó¤ò±¦¤«¤éº¸¤ËÊÔ½¸¤¹¤ë¤«"
+
+msgid "insert characters backwards"
+msgstr "ʸ»ú¤òµÕÊý¸þ¤ËÁÞÆþ"
+
+msgid "allow CTRL-_ in Insert and Command-line mode to toggle 'revins'"
+msgstr "ÁÞÆþ¡¦¥³¥Þ¥ó¥É¥é¥¤¥ó¥â¡¼¥É¤Ç CTRL-_ ¤Ç 'revins' ¤ÎÀÚ¤êÂØ¤¨¤òµö²Ä"
+
+msgid "the ASCII code for the first letter of the Hebrew alphabet"
+msgstr "¥Ø¥Ö¥é¥¤¸ì¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È¤ÎºÇ½é¤Îʸ»ú¤òɽ¤¹ ASCII ¥³¡¼¥É"
+
+msgid "use Hebrew keyboard mapping"
+msgstr "¥Ø¥Ö¥é¥¤¥¡¼¥Ü¡¼¥É¤Î¥Þ¥Ã¥Ô¥ó¥°¤ò»ÈÍÑ"
+
+msgid "use phonetic Hebrew keyboard mapping"
+msgstr "²»À¼¥Ø¥Ö¥é¥¤¥¡¼¥Ü¡¼¥É¤Î¥Þ¥Ã¥Ô¥ó¥°¤ò»ÈÍÑ"
+
+msgid "prepare for editing Arabic text"
+msgstr "¥¢¥é¥Ó¥¢¸ì¤Î¥Æ¥¥¹¥È¤òÊÔ½¸¤¹¤ë½àÈ÷"
+
+msgid "perform shaping of Arabic characters"
+msgstr "¥¢¥é¥Ó¥¢Ê¸»ú¤Î»ú·Á½èÍý¤ò¹Ô¤¦"
+
+msgid "terminal will perform bidi handling"
+msgstr "üËö¤¬ÁÐÊý¸þ (bidi) ¤Î½èÍý¤ò¹Ô¤¦"
+
+msgid "name of a keyboard mapping"
+msgstr "¥¡¼¥Ü¡¼¥É¥Þ¥Ã¥Ô¥ó¥°¤Î̾Á°"
+
+msgid "list of characters that are translated in Normal mode"
+msgstr "¥Î¡¼¥Þ¥ë¥â¡¼¥É¤ÇÊÑ´¹¤µ¤ì¤ëʸ»ú¤Î¥ê¥¹¥È"
+
+msgid "apply 'langmap' to mapped characters"
+msgstr "'langmap' ¤ò¥Þ¥Ã¥×¤µ¤ì¤¿Ê¸»ú¤ËŬÍÑ"
+
+msgid "when set never use IM; overrules following IM options"
+msgstr "¥ª¥ó¤Î¤È¤ IM ¤òÁ´¤¯»È¤ï¤Ê¤¤; °Ê²¼¤Î IM ´ØÏ¢¥ª¥×¥·¥ç¥ó¤ËÍ¥À褹¤ë"
+
+msgid "in Insert mode: 1: use :lmap; 2: use IM; 0: neither"
+msgstr "ÁÞÆþ¥â¡¼¥É»þ: 1: :lmap ¤ò»ÈÍÑ; 2: IM ¤ò»ÈÍÑ; 0: ¤É¤Á¤é¤âÉÔ»ÈÍÑ"
+
+msgid "input method style, 0: on-the-spot, 1: over-the-spot"
+msgstr "IM ¤Î¥¹¥¿¥¤¥ë¡¢0: on-the-spot, 1: over-the-spot"
+
+msgid "entering a search pattern: 1: use :lmap; 2: use IM; 0: neither"
+msgstr ""
+"¸¡º÷¥Ñ¥¿¡¼¥óÆþÎÏ»þ: 1: :lmap ¤ò»ÈÍÑ; 2: IM ¤ò»ÈÍÑ;\n"
+"0: ¤É¤Á¤é¤âÉÔ»ÈÍÑ"
+
+msgid "when set always use IM when starting to edit a command line"
+msgstr "¥ª¥ó¤Î¤È¤¤Ï¥³¥Þ¥ó¥É¥é¥¤¥óÊÔ½¸³«»Ï»þ¤Ë¾ï¤Ë IM ¤ò»ÈÍÑ"
+
+msgid "function to obtain IME status"
+msgstr "IME ¤Î¾õÂÖ¤ò¼èÆÀ¤¹¤ë¤¿¤á¤Î´Ø¿ô"
+
+msgid "function to enable/disable IME"
+msgstr "IME ¤ò͸ú²½/̵¸ú²½¤¹¤ë¤¿¤á¤Î´Ø¿ô"
+
+msgid "multi-byte characters"
+msgstr "¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú"
+
+msgid ""
+"character encoding used in Vim: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\", etc."
+msgstr ""
+"Vim ¤Ç»ÈÍѤ¹¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\" ¤Ê¤É"
+
+msgid "character encoding for the current file"
+msgstr "¸½ºß¤Î¥Õ¥¡¥¤¥ë¤Îʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°"
+
+msgid "automatically detected character encodings"
+msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò¼«Æ°¸¡½Ð"
+
+msgid "character encoding used by the terminal"
+msgstr "üËö¤Ç»È¤ï¤ì¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°"
+
+msgid "expression used for character encoding conversion"
+msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°ÊÑ´¹¤Ë»È¤ï¤ì¤ë¼°"
+
+msgid "delete combining (composing) characters on their own"
+msgstr "·ë¹çʸ»ú¤½¤Î¤â¤Î¤òºï½ü"
+
+msgid "maximum number of combining (composing) characters displayed"
+msgstr "ɽ¼¨¤ÎºÝ¤Î·ë¹çʸ»ú¤ÎºÇÂç¿ô"
+
+msgid "key that activates the X input method"
+msgstr "X ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤òµ¯Æ°¤¹¤ë¤¿¤á¤Î¥¡¼"
+
+msgid "width of ambiguous width characters"
+msgstr "¤¢¤¤¤Þ¤¤Éýʸ»ú¤ÎÉý"
+
+msgid "emoji characters are full width"
+msgstr "³¨Ê¸»ú¤ÎÉý¤ÏÁ´³Ñ"
+
+msgid "various"
+msgstr "¤½¤Î¾"
+
+msgid ""
+"when to use virtual editing: \"block\", \"insert\", \"all\"\n"
+"and/or \"onemore\""
+msgstr ""
+"¤¤¤Ä²¾ÁÛÊÔ½¸¤ò»È¤¦¤«: \"block\", \"insert\", \"all\"\n"
+"¤«¤Ä/¤Þ¤¿¤Ï \"onemore\""
+
+msgid "list of autocommand events which are to be ignored"
+msgstr "¼«Æ°¥³¥Þ¥ó¥É¥¤¥Ù¥ó¥È¤Ç̵»ë¤¹¤ë¤â¤Î¤Î¥ê¥¹¥È"
+
+msgid "load plugin scripts when starting up"
+msgstr "µ¯Æ°»þ¤Ë¥×¥é¥°¥¤¥ó¥¹¥¯¥ê¥×¥È¤òÆÉ¹þ¤à"
+
+msgid "enable reading .vimrc/.exrc/.gvimrc in the current directory"
+msgstr ""
+"¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¢¤ë .vimrc/.exrc/.gvimrc ¤ÎÆÉ¹þ¤ß¤ò\n"
+"͸ú²½"
+
+msgid "safer working with script files in the current directory"
+msgstr "¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤Î¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò°ÂÁ´¤Ë°·¤¦"
+
+msgid "use the 'g' flag for \":substitute\""
+msgstr "\":substitute\" ¤Ë 'g' ¥Õ¥é¥°¤ò»È¤¦"
+
+msgid "'g' and 'c' flags of \":substitute\" toggle"
+msgstr "\":substitute\" ¤Î 'g' ¤È 'c' ¥Õ¥é¥°¤òÀÚ¤êÂØ¤¨¤ë"
+
+msgid "allow reading/writing devices"
+msgstr "¥Ç¥Ð¥¤¥¹¤«¤é¤ÎÆÉ¤ß½ñ¤¤òµö²Ä¤¹¤ë"
+
+msgid "maximum depth of function calls"
+msgstr "´Ø¿ô¸Æ½Ð¤·¤ÎºÇÂç¤Î¿¼¤µ"
+
+msgid "list of words that specifies what to put in a session file"
+msgstr "¥»¥Ã¥·¥ç¥ó¥Õ¥¡¥¤¥ë¤Ë²¿¤òÊݸ¤¹¤ë¤«¤ò»ØÄꤹ¤ëñ¸ì¤Î¥ê¥¹¥È"
+
+msgid "list of words that specifies what to save for :mkview"
+msgstr ":mkview ¤Ç²¿¤òÊݸ¤¹¤ë¤«¤ò»ØÄꤹ¤ëñ¸ì¤Î¥ê¥¹¥È"
+
+msgid "directory where to store files with :mkview"
+msgstr ":mkview ¤Ç¥Õ¥¡¥¤¥ë¤òÊݸ¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê"
+
+msgid "list that specifies what to write in the viminfo file"
+msgstr "viminfo ¥Õ¥¡¥¤¥ë¤Ë²¿¤ò½ñ¤¯¤«¤ò»ØÄꤹ¤ë¥ê¥¹¥È"
+
+msgid "file name used for the viminfo file"
+msgstr "viminfo ¥Õ¥¡¥¤¥ë¤Ë»È¤ï¤ì¤ë¥Õ¥¡¥¤¥ë̾"
+
+msgid "what happens with a buffer when it's no longer in a window"
+msgstr "¥Ð¥Ã¥Õ¥¡¤¬¥¦¥£¥ó¥É¥¦¤Ëɽ¼¨¤µ¤ì¤Ê¤¯¤Ê¤Ã¤¿»þ¤Îµóư"
+
+msgid "empty, \"nofile\", \"nowrite\", \"quickfix\", etc.: type of buffer"
+msgstr "¶õ, \"nofile\", \"nowrite\", \"quickfix\" ¤Ê¤É: ¥Ð¥Ã¥Õ¥¡¤Î¼ïÊÌ"
+
+msgid "whether the buffer shows up in the buffer list"
+msgstr "¥Ð¥Ã¥Õ¥¡¤ò¥Ð¥Ã¥Õ¥¡°ìÍ÷¤Ëɽ¼¨¤¹¤ë¤«¤É¤¦¤«"
+
+msgid "set to \"msg\" to see all error messages"
+msgstr "Á´¤Æ¤Î¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤ò¸«¤ë¤Ë¤Ï \"msg\" ¤ËÀßÄê"
+
+msgid "whether to show the signcolumn"
+msgstr "Ìܰõ·å¤òɽ¼¨¤¹¤ë¤«¤É¤¦¤«"
+
+msgid "interval in milliseconds between polls for MzScheme threads"
+msgstr "MzScheme ¤Î¥¹¥ì¥Ã¥É¤òÀÚ¤êÂØ¤¨¤ë´Ö³Ö (¥ß¥êÉÃ)"
+
+msgid "name of the Lua dynamic library"
+msgstr "Lua ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the Perl dynamic library"
+msgstr "Perl ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "whether to use Python 2 or 3"
+msgstr "Python 2 ¤È 3 ¤Î¤É¤Á¤é¤ò»È¤¦¤«"
+
+msgid "name of the Python 2 dynamic library"
+msgstr "Python 2 ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the Python 2 home directory"
+msgstr "Python 2 ¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤Î̾Á°"
+
+msgid "name of the Python 3 dynamic library"
+msgstr "Python 3 ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the Python 3 home directory"
+msgstr "Python 3 ¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤Î̾Á°"
+
+msgid "name of the Ruby dynamic library"
+msgstr "Ruby ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the Tcl dynamic library"
+msgstr "Tcl ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the MzScheme dynamic library"
+msgstr "MzScheme ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
+
+msgid "name of the MzScheme GC dynamic library"
+msgstr "MzScheme GC ưۥ饤¥Ö¥é¥ê¤Î̾Á°"
diff --git a/src/po/ja.po b/src/po/ja.po
index b99ff2d..b5fb57f 100644
--- a/src/po/ja.po
+++ b/src/po/ja.po
@@ -3,7 +3,7 @@
# Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed.
#
-# Copyright (C) 2001-2019 MURAOKA Taro <koron.kaoriya@gmail.com>,
+# Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
# vim-jp <http://vim-jp.org/>
#
# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
@@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Vim 8.1\n"
+"Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-04 21:51+0900\n"
-"PO-Revision-Date: 2019-11-11 23:00+0900\n"
+"POT-Creation-Date: 2022-01-16 10:46+0900\n"
+"PO-Revision-Date: 2022-01-16 12:43+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n"
@@ -24,66 +24,45 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "E163: There is only one file to edit"
-msgstr "E163: 編集するファイルは1つしかありません"
+msgid "ERROR: "
+msgstr "エラー: "
-msgid "E164: Cannot go before first file"
-msgstr "E164: 最初のファイルより前には行けません"
+#, c-format
+msgid ""
+"\n"
+"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
+msgstr ""
+"\n"
+"[メモリ(バイト)] 総割当-解放量 %lu-%lu, 使用量 %lu, ピーク時 %lu\n"
-msgid "E165: Cannot go beyond last file"
-msgstr "E165: 最後のファイルを越えて後には行けません"
-
-msgid "E249: window layout changed unexpectedly"
-msgstr "E249: 予期せずウィンドウの配置が変わりました"
+#, c-format
+msgid ""
+"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
+"\n"
+msgstr ""
+"[呼出] 総 re/malloc() 回数 %lu, 総 free() 回数 %lu\n"
+"\n"
msgid "--Deleted--"
msgstr "--削除済--"
#, c-format
msgid "auto-removing autocommand: %s <buffer=%d>"
-msgstr "autocommand: %s <バッファ=%d> が自動的に削除されます"
-
-#, c-format
-msgid "E367: No such group: \"%s\""
-msgstr "E367: そのグループはありません: \"%s\""
-
-msgid "E936: Cannot delete the current group"
-msgstr "E936: 現在のグループは削除できません"
+msgstr "自動コマンド: %s <バッファ=%d> が自動的に削除されます"
msgid "W19: Deleting augroup that is still in use"
msgstr "W19: 使用中の augroup を消そうとしています"
-#, c-format
-msgid "E215: Illegal character after *: %s"
-msgstr "E215: * の後に不正な文字がありました: %s"
-
-#, c-format
-msgid "E216: No such event: %s"
-msgstr "E216: そのようなイベントはありません: %s"
-
-#, c-format
-msgid "E216: No such group or event: %s"
-msgstr "E216: そのようなグループもしくはイベントはありません: %s"
-
msgid ""
"\n"
"--- Autocommands ---"
msgstr ""
"\n"
-"--- Autocommands ---"
+"--- 自動コマンド ---"
#, c-format
-msgid "E680: <buffer=%d>: invalid buffer number "
-msgstr "E680: <バッファ=%d>: 無効なバッファ番号です "
-
-msgid "E217: Can't execute autocommands for ALL events"
-msgstr "E217: 全てのイベントに対してのautocommandは実行できません"
-
-msgid "No matching autocommands"
-msgstr "該当するautocommandは存在しません"
-
-msgid "E218: autocommand nesting too deep"
-msgstr "E218: autocommandの入れ子が深過ぎます"
+msgid "No matching autocommands: %s"
+msgstr "該当する自動コマンドは存在しません: %s"
#, c-format
msgid "%s Autocommands for \"%s\""
@@ -97,20 +76,11 @@
msgid "autocommand %s"
msgstr "autocommand %s"
-msgid "E831: bf_key_init() called with empty password"
-msgstr "E831: bf_key_init() が空パスワードで呼び出されました"
+msgid "add() argument"
+msgstr "add() の引数"
-msgid "E820: sizeof(uint32_t) != 4"
-msgstr "E820: sizeof(uint32_t) != 4"
-
-msgid "E817: Blowfish big/little endian use wrong"
-msgstr "E817: Blowfish暗号のビッグ/リトルエンディアンが間違っています"
-
-msgid "E818: sha256 test failed"
-msgstr "E818: sha256のテストに失敗しました"
-
-msgid "E819: Blowfish test failed"
-msgstr "E819: Blowfish暗号のテストに失敗しました"
+msgid "insert() argument"
+msgstr "insert() の引数"
msgid "[Location List]"
msgstr "[ロケーションリスト]"
@@ -118,31 +88,6 @@
msgid "[Quickfix List]"
msgstr "[Quickfixリスト]"
-msgid "E855: Autocommands caused command to abort"
-msgstr "E855: autocommandがコマンドの停止を引き起こしました"
-
-msgid "E82: Cannot allocate any buffer, exiting..."
-msgstr "E82: バッファを1つも作成できないので、終了します..."
-
-msgid "E83: Cannot allocate buffer, using other one..."
-msgstr "E83: バッファを作成できないので、他のを使用します..."
-
-msgid "E931: Buffer cannot be registered"
-msgstr "E931: バッファを登録できません"
-
-#, c-format
-msgid "E937: Attempt to delete a buffer that is in use: %s"
-msgstr "E937: 使用中のバッファを削除しようと試みました: %s"
-
-msgid "E515: No buffers were unloaded"
-msgstr "E515: 解放されたバッファはありません"
-
-msgid "E516: No buffers were deleted"
-msgstr "E516: 削除されたバッファはありません"
-
-msgid "E517: No buffers were wiped out"
-msgstr "E517: 破棄されたバッファはありません"
-
#, c-format
msgid "%d buffer unloaded"
msgid_plural "%d buffers unloaded"
@@ -158,68 +103,19 @@
msgid_plural "%d buffers wiped out"
msgstr[0] "%d 個のバッファが破棄されました"
-msgid "E90: Cannot unload last buffer"
-msgstr "E90: 最後のバッファは解放できません"
-
-msgid "E84: No modified buffer found"
-msgstr "E84: 変更されたバッファはありません"
-
-msgid "E85: There is no listed buffer"
-msgstr "E85: リスト表示されるバッファはありません"
-
-msgid "E87: Cannot go beyond last buffer"
-msgstr "E87: 最後のバッファを越えて移動はできません"
-
-msgid "E88: Cannot go before first buffer"
-msgstr "E88: 最初のバッファより前へは移動できません"
-
-#, c-format
-msgid "E89: No write since last change for buffer %d (add ! to override)"
-msgstr "E89: バッファ %d の変更は保存されていません (! で変更を破棄)"
-
-msgid "E948: Job still running (add ! to end the job)"
-msgstr "E948: ジョブはまだ実行中です (! を追加でジョブを終了)"
-
-msgid "E37: No write since last change (add ! to override)"
-msgstr "E37: 最後の変更が保存されていません (! を追加で変更を破棄)"
-
-msgid "E948: Job still running"
-msgstr "E948: ジョブはまだ実行中です"
-
-msgid "E37: No write since last change"
-msgstr "E37: 最後の変更が保存されていません"
-
msgid "W14: Warning: List of file names overflow"
msgstr "W14: 警告: ファイル名のリストが長過ぎます"
#, c-format
-msgid "E92: Buffer %d not found"
-msgstr "E92: バッファ %d が見つかりません"
-
-#, c-format
-msgid "E93: More than one match for %s"
-msgstr "E93: %s に複数の該当がありました"
-
-#, c-format
-msgid "E94: No matching buffer for %s"
-msgstr "E94: %s に該当するバッファはありませんでした"
-
-#, c-format
msgid "line %ld"
msgstr "行 %ld"
-msgid "E95: Buffer with this name already exists"
-msgstr "E95: この名前のバッファは既にあります"
-
msgid " [Modified]"
msgstr " [変更あり]"
msgid "[Not edited]"
msgstr "[未編集]"
-msgid "[New file]"
-msgstr "[新ファイル]"
-
msgid "[Read errors]"
msgstr "[読込エラー]"
@@ -259,9 +155,6 @@
msgid "Top"
msgstr "先頭"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: 'buftype' オプションが設定されているので書込めません"
-
msgid "[Prompt]"
msgstr "[プロンプト]"
@@ -277,82 +170,11 @@
msgid "Do you really want to write to it"
msgstr "本当に上書きしますか"
-msgid "E676: No matching autocommands for acwrite buffer"
-msgstr "E676: acwriteバッファの該当するautocommandは存在しません"
+msgid "[New]"
+msgstr "[新]"
-msgid "E203: Autocommands deleted or unloaded buffer to be written"
-msgstr "E203: 保存するバッファをautocommandが削除か解放しました"
-
-msgid "E204: Autocommand changed number of lines in unexpected way"
-msgstr "E204: autocommandが予期せぬ方法で行数を変更しました"
-
-# Added at 19-Jan-2004.
-msgid "NetBeans disallows writes of unmodified buffers"
-msgstr "NetBeansは未変更のバッファを上書することは許可していません"
-
-msgid "Partial writes disallowed for NetBeans buffers"
-msgstr "NetBeansバッファの一部を書き出すことはできません"
-
-msgid "is a directory"
-msgstr "はディレクトリです"
-
-msgid "is not a file or writable device"
-msgstr "はファイルでも書込み可能デバイスでもありません"
-
-msgid "writing to device disabled with 'opendevice' option"
-msgstr "'opendevice' オプションによりデバイスへの書き込みはできません"
-
-msgid "is read-only (add ! to override)"
-msgstr "は読込専用です (強制書込には ! を追加)"
-
-msgid "E506: Can't write to backup file (add ! to override)"
-msgstr "E506: バックアップファイルを保存できません (! を追加で強制書込)"
-
-msgid "E507: Close error for backup file (add ! to override)"
-msgstr ""
-"E507: バックアップファイルを閉じる際にエラーが発生しました (! を追加で強制書"
-"込)"
-
-msgid "E508: Can't read file for backup (add ! to override)"
-msgstr "E508: バックアップ用ファイルを読込めません (! を追加で強制書込)"
-
-msgid "E509: Cannot create backup file (add ! to override)"
-msgstr "E509: バックアップファイルを作れません (! を追加で強制書込)"
-
-msgid "E510: Can't make backup file (add ! to override)"
-msgstr "E510: バックアップファイルを作れません (! を追加で強制書込)"
-
-msgid "E214: Can't find temp file for writing"
-msgstr "E214: 保存用一時ファイルが見つかりません"
-
-msgid "E213: Cannot convert (add ! to write without conversion)"
-msgstr "E213: 変換できません (! を追加で変換せずに保存)"
-
-msgid "E166: Can't open linked file for writing"
-msgstr "E166: リンクされたファイルに書込めません"
-
-msgid "E212: Can't open file for writing"
-msgstr "E212: 書込み用にファイルを開けません"
-
-msgid "E949: File changed while writing"
-msgstr "E949: 書込み中にファイルが変更されました"
-
-msgid "E512: Close failed"
-msgstr "E512: 閉じることに失敗"
-
-msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
-msgstr "E513: 書込みエラー、変換失敗 (上書するには 'fenc' を空にしてください)"
-
-#, c-format
-msgid ""
-"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
-"override)"
-msgstr ""
-"E513: 書込みエラー、変換失敗、行数 %ld (上書するには 'fenc' を空にしてくださ"
-"い)"
-
-msgid "E514: write error (file system full?)"
-msgstr "E514: 書込みエラー (ファイルシステムが満杯?)"
+msgid "[New File]"
+msgstr "[新ファイル]"
msgid " CONVERSION ERROR"
msgstr " 変換エラー"
@@ -370,12 +192,6 @@
msgid "[Device]"
msgstr "[デバイス]"
-msgid "[New]"
-msgstr "[新]"
-
-msgid "[New File]"
-msgstr "[新ファイル]"
-
msgid " [a]"
msgstr " [a]"
@@ -388,15 +204,6 @@
msgid " written"
msgstr " 書込み"
-msgid "E205: Patchmode: can't save original file"
-msgstr "E205: patchmode: 原本ファイルを保存できません"
-
-msgid "E206: patchmode: can't touch empty original file"
-msgstr "E206: patchmode: 空の原本ファイルをtouchできません"
-
-msgid "E207: Can't delete backup file"
-msgstr "E207: バックアップファイルを消せません"
-
msgid ""
"\n"
"WARNING: Original file may be lost or damaged\n"
@@ -410,59 +217,27 @@
msgid "W10: Warning: Changing a readonly file"
msgstr "W10: 警告: 読込専用ファイルを変更します"
-msgid "E902: Cannot connect to port"
-msgstr "E902: ポートに接続できません"
+msgid "No display"
+msgstr "ディスプレイが見つかりません"
-msgid "E901: gethostbyname() in channel_open()"
-msgstr "E901: channel_open() 内の gethostbyname() が失敗しました"
+msgid ": Send failed.\n"
+msgstr ": 送信に失敗しました.\n"
-msgid "E898: socket() in channel_open()"
-msgstr "E898: channel_open() 内の socket() が失敗しました"
-
-msgid "E903: received command with non-string argument"
-msgstr "E903: 非文字列の引数のコマンドを受信しました"
-
-msgid "E904: last argument for expr/call must be a number"
-msgstr "E904: expr/call の最後の引数は数字でなければなりません"
-
-msgid "E904: third argument for call must be a list"
-msgstr "E904: call の3番目の引数はリスト型でなければなりません"
+msgid ": Send failed. Trying to execute locally\n"
+msgstr ": 送信に失敗しました。ローカルでの実行を試みています\n"
#, c-format
-msgid "E905: received unknown command: %s"
-msgstr "E905: 未知のコマンドを受信しました: %s"
+msgid "%d of %d edited"
+msgstr "%d 個 (%d 個中) のファイルを編集しました"
-msgid "E906: not an open channel"
-msgstr "E906: 開いていないチャネルです"
+msgid "No display: Send expression failed.\n"
+msgstr "ディスプレイがありません: 式の送信に失敗しました.\n"
-#, c-format
-msgid "E630: %s(): write while not connected"
-msgstr "E630: %s(): 非接続状態で書き込みました"
+msgid ": Send expression failed.\n"
+msgstr ": 式の送信に失敗しました.\n"
-#, c-format
-msgid "E631: %s(): write failed"
-msgstr "E631: %s(): 書き込みに失敗しました"
-
-#, c-format
-msgid "E917: Cannot use a callback with %s()"
-msgstr "E917: %s() にコールバックは使えません"
-
-msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
-msgstr ""
-"E912: raw や nl モードのチャネルに ch_evalexpr()/ch_sendexpr() は使えません"
-
-msgid "E920: _io file requires _name to be set"
-msgstr "E920: _io ファイルは _name の設定が必要です"
-
-msgid "E915: in_io buffer requires in_buf or in_name to be set"
-msgstr "E915: in_io バッファは in_buf か in_name の設定が必要です"
-
-#, c-format
-msgid "E918: buffer must be loaded: %s"
-msgstr "E918: バッファがロードされてなければなりません: %s"
-
-msgid "E916: not a valid job"
-msgstr "E916: 有効なジョブではありません"
+msgid "Used CUT_BUFFER0 instead of empty selection"
+msgstr "空の選択領域のかわりにCUT_BUFFER0が使用されました"
msgid "tagname"
msgstr "タグ名"
@@ -473,12 +248,14 @@
msgid "'history' option is zero"
msgstr "オプション 'history' がゼロです"
-msgid "E821: File is encrypted with unknown method"
-msgstr "E821: ファイルが未知の方法で暗号化されています"
-
msgid "Warning: Using a weak encryption method; see :help 'cm'"
msgstr "警告: 弱い暗号方法を使っています; :help 'cm' を参照してください"
+msgid "Note: Encryption of swapfile not supported, disabling swap file"
+msgstr ""
+"注意: スワップファイルの暗号化はサポートされていません。スワップファイルを無"
+"効化します"
+
msgid "Enter encryption key: "
msgstr "暗号化用のキーを入力してください: "
@@ -521,10 +298,6 @@
msgid "Breakpoint in \"%s%s\" line %ld"
msgstr "ブレークポイント \"%s%s\" 行 %ld"
-#, c-format
-msgid "E161: Breakpoint not found: %s"
-msgstr "E161: ブレークポイントが見つかりません: %s"
-
msgid "No breakpoints defined"
msgstr "ブレークポイントが定義されていません"
@@ -536,85 +309,16 @@
msgid "%3d expr %s"
msgstr "%3d expr %s"
-#, c-format
-msgid "E720: Missing colon in Dictionary: %s"
-msgstr "E720: 辞書型にコロンがありません: %s"
-
-#, c-format
-msgid "E721: Duplicate key in Dictionary: \"%s\""
-msgstr "E721: 辞書型に重複キーがあります: \"%s\""
-
-#, c-format
-msgid "E722: Missing comma in Dictionary: %s"
-msgstr "E722: 辞書型にカンマがありません: %s"
-
-#, c-format
-msgid "E723: Missing end of Dictionary '}': %s"
-msgstr "E723: 辞書型の最後に '}' がありません: %s"
-
msgid "extend() argument"
msgstr "extend() の引数"
#, c-format
-msgid "E737: Key already exists: %s"
-msgstr "E737: キーは既に存在します: %s"
-
-#, c-format
-msgid "E96: Cannot diff more than %d buffers"
-msgstr "E96: %d 以上のバッファはdiffできません"
-
-#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "バッファ \"%s\" 用に内部diffを使うためのメモリが不足しています"
-msgid "E810: Cannot read or write temp files"
-msgstr "E810: 一時ファイルの読込もしくは書込ができません"
-
-msgid "E97: Cannot create diffs"
-msgstr "E97: 差分を作成できません"
-
-msgid "E960: Problem creating the internal diff"
-msgstr "E960: 内部diff作成時に問題が発生しました"
-
msgid "Patch file"
msgstr "パッチファイル"
-msgid "E816: Cannot read patch output"
-msgstr "E816: patchの出力を読込めません"
-
-msgid "E98: Cannot read diff output"
-msgstr "E98: diffの出力を読込めません"
-
-msgid "E959: Invalid diff format."
-msgstr "E959: 無効なdiff形式です"
-
-msgid "E99: Current buffer is not in diff mode"
-msgstr "E99: 現在のバッファは差分モードではありません"
-
-msgid "E793: No other buffer in diff mode is modifiable"
-msgstr "E793: 差分モードである他のバッファは変更できません"
-
-msgid "E100: No other buffer in diff mode"
-msgstr "E100: 差分モードである他のバッファはありません"
-
-msgid "E101: More than two buffers in diff mode, don't know which one to use"
-msgstr ""
-"E101: 差分モードのバッファが2個以上あるので、どれを使うか特定できません"
-
-#, c-format
-msgid "E102: Can't find buffer \"%s\""
-msgstr "E102: バッファ \"%s\" が見つかりません"
-
-#, c-format
-msgid "E103: Buffer \"%s\" is not in diff mode"
-msgstr "E103: バッファ \"%s\" は差分モードではありません"
-
-msgid "E787: Buffer changed unexpectedly"
-msgstr "E787: 予期せずバッファが変更されました"
-
-msgid "E104: Escape not allowed in digraph"
-msgstr "E104: 合字にEscapeは使用できません"
-
msgid "Custom"
msgstr "カスタム"
@@ -690,161 +394,10 @@
msgid "Bopomofo"
msgstr "注音字母"
-msgid "E544: Keymap file not found"
-msgstr "E544: キーマップファイルが見つかりません"
-
-msgid "E105: Using :loadkeymap not in a sourced file"
-msgstr "E105: :source で取込むファイル以外では :loadkeymap を使えません"
-
-msgid "E791: Empty keymap entry"
-msgstr "E791: 空のキーマップエントリ"
-
-msgid "E111: Missing ']'"
-msgstr "E111: ']' が見つかりません"
-
-msgid "E719: Cannot use [:] with a Dictionary"
-msgstr "E719: [:] を辞書型と組み合わせては使えません"
-
-msgid "E806: using Float as a String"
-msgstr "E806: 浮動小数点数を文字列として扱っています"
-
-msgid "E274: No white space allowed before parenthesis"
-msgstr "E274: 丸括弧の前にスペースは許されません"
-
-msgid "E689: Can only index a List, Dictionary or Blob"
-msgstr "E689: リスト型、辞書型、Blob型以外はインデックス指定できません"
-
-msgid "E708: [:] must come last"
-msgstr "E708: [:] は最後でなければいけません"
-
-msgid "E709: [:] requires a List or Blob value"
-msgstr "E709: [:] にはリスト型かBlob型の値が必要です"
-
-msgid "E972: Blob value does not have the right number of bytes"
-msgstr "E972: Blob型の値のバイト数が正しくありません"
-
-msgid "E996: Cannot lock a range"
-msgstr "E996: 範囲はロックできません"
-
-msgid "E710: List value has more items than target"
-msgstr "E710: リスト型変数にターゲットよりも多い要素があります"
-
-msgid "E711: List value has not enough items"
-msgstr "E711: リスト型変数に十分な数の要素がありません"
-
-msgid "E996: Cannot lock a list or dict"
-msgstr "E996: リストあるいは辞書はロックできません"
-
-msgid "E690: Missing \"in\" after :for"
-msgstr "E690: :for の後に \"in\" がありません"
-
-msgid "E109: Missing ':' after '?'"
-msgstr "E109: '?' の後に ':' がありません"
-
-msgid "E804: Cannot use '%' with Float"
-msgstr "E804: '%' を浮動小数点数と組み合わせては使えません"
-
-msgid "E973: Blob literal should have an even number of hex characters"
-msgstr "E973: Blobリテラルは偶数個の16進数文字でなければなりません"
-
-msgid "E110: Missing ')'"
-msgstr "E110: ')' が見つかりません"
-
-msgid "E260: Missing name after ->"
-msgstr "E260: -> の後に名前がありません"
-
-msgid "E695: Cannot index a Funcref"
-msgstr "E695: 関数参照型はインデックスできません"
-
-msgid "E909: Cannot index a special variable"
-msgstr "E909: 特殊変数はインデックスできません"
-
-#, c-format
-msgid "E112: Option name missing: %s"
-msgstr "E112: オプション名がありません: %s"
-
-#, c-format
-msgid "E113: Unknown option: %s"
-msgstr "E113: 未知のオプションです: %s"
-
-#, c-format
-msgid "E114: Missing quote: %s"
-msgstr "E114: 引用符 (\") がありません: %s"
-
-#, c-format
-msgid "E115: Missing quote: %s"
-msgstr "E115: 引用符 (') がありません: %s"
-
msgid "Not enough memory to set references, garbage collection aborted!"
msgstr ""
"ガーベッジコレクションを中止しました! 参照を作成するのにメモリが不足しました"
-msgid "E724: variable nested too deep for displaying"
-msgstr "E724: 表示するには変数の入れ子が深過ぎます"
-
-msgid "E805: Using a Float as a Number"
-msgstr "E805: 浮動小数点数を数値として扱っています"
-
-msgid "E703: Using a Funcref as a Number"
-msgstr "E703: 関数参照型を数値として扱っています"
-
-msgid "E745: Using a List as a Number"
-msgstr "E745: リスト型を数値として扱っています"
-
-msgid "E728: Using a Dictionary as a Number"
-msgstr "E728: 辞書型を数値として扱っています"
-
-msgid "E910: Using a Job as a Number"
-msgstr "E910: ジョブを数値として扱っています"
-
-msgid "E913: Using a Channel as a Number"
-msgstr "E913: チャネルを数値として扱っています"
-
-msgid "E974: Using a Blob as a Number"
-msgstr "E974: Blob型を数値として扱っています"
-
-msgid "E891: Using a Funcref as a Float"
-msgstr "E891: 関数参照型を浮動小数点数として扱っています"
-
-msgid "E892: Using a String as a Float"
-msgstr "E892: 文字列を浮動小数点数として扱っています"
-
-msgid "E893: Using a List as a Float"
-msgstr "E893: リスト型を浮動小数点数として扱っています"
-
-msgid "E894: Using a Dictionary as a Float"
-msgstr "E894: 辞書型を浮動小数点数として扱っています"
-
-msgid "E907: Using a special value as a Float"
-msgstr "E907: 特殊値を浮動小数点数として扱っています"
-
-msgid "E911: Using a Job as a Float"
-msgstr "E911: ジョブを浮動小数点数として扱っています"
-
-msgid "E914: Using a Channel as a Float"
-msgstr "E914: チャネルを浮動小数点数として扱っています"
-
-msgid "E975: Using a Blob as a Float"
-msgstr "E975: Blob型を浮動小数点数として扱っています"
-
-msgid "E729: using Funcref as a String"
-msgstr "E729: 関数参照型を文字列として扱っています"
-
-msgid "E730: using List as a String"
-msgstr "E730: リスト型を文字列として扱っています"
-
-msgid "E731: using Dictionary as a String"
-msgstr "E731: 辞書型を文字列として扱っています"
-
-msgid "E976: using Blob as a String"
-msgstr "E976: Blob型を文字列として扱っています"
-
-msgid "E908: using an invalid value as a String"
-msgstr "E908: 無効な値を文字列として扱っています"
-
-msgid "E698: variable nested too deep for making a copy"
-msgstr "E698: コピーを取るには変数の入れ子が深過ぎます"
-
msgid ""
"\n"
"\tLast set from "
@@ -852,50 +405,9 @@
"\n"
"\t最後にセットしたスクリプト: "
-msgid " line "
-msgstr " 行 "
-
-msgid "E977: Can only compare Blob with Blob"
-msgstr "E977: Blob型はBlob型としか比較できません"
-
-msgid "E691: Can only compare List with List"
-msgstr "E691: リスト型はリスト型としか比較できません"
-
-msgid "E692: Invalid operation for List"
-msgstr "E692: リスト型には無効な操作です"
-
-msgid "E735: Can only compare Dictionary with Dictionary"
-msgstr "E735: 辞書型は辞書型としか比較できません"
-
-msgid "E736: Invalid operation for Dictionary"
-msgstr "E736: 辞書型には無効な操作です"
-
-msgid "E694: Invalid operation for Funcrefs"
-msgstr "E694: 関数参照型には無効な操作です"
-
-msgid "E808: Number or Float required"
-msgstr "E808: 数値か浮動小数点数が必要です"
-
-#, c-format
-msgid "E158: Invalid buffer name: %s"
-msgstr "E158: 無効なバッファ名です: %s"
-
msgid "&Ok"
msgstr "&Ok"
-msgid "E980: lowlevel input not supported"
-msgstr "E980: 低レベル入力はサポートされていません"
-
-#, c-format
-msgid "E700: Unknown function: %s"
-msgstr "E700: 未知の関数です: %s"
-
-msgid "E922: expected a dict"
-msgstr "E922: 辞書が期待されています"
-
-msgid "E923: Second argument of function() must be a list or a dict"
-msgstr "E923: function() の第 2 引数はリスト型または辞書型でなければなりません"
-
msgid ""
"&OK\n"
"&Cancel"
@@ -906,130 +418,6 @@
msgid "called inputrestore() more often than inputsave()"
msgstr "inputrestore() が inputsave() よりも多く呼ばれました"
-msgid "E786: Range not allowed"
-msgstr "E786: 範囲指定は許可されていません"
-
-msgid "E701: Invalid type for len()"
-msgstr "E701: len() には無効な型です"
-
-msgid "E726: Stride is zero"
-msgstr "E726: ストライド(前進量)が 0 です"
-
-msgid "E727: Start past end"
-msgstr "E727: 開始位置が終了位置を越えました"
-
-msgid "E240: No connection to the X server"
-msgstr "E240: X サーバーへの接続がありません"
-
-#, c-format
-msgid "E241: Unable to send to %s"
-msgstr "E241: %s へ送ることができません"
-
-msgid "E277: Unable to read a server reply"
-msgstr "E277: サーバーの応答がありません"
-
-msgid "E941: already started a server"
-msgstr "E941: サーバーはすでに開始しています"
-
-msgid "E942: +clientserver feature not available"
-msgstr "E942: +clientserver 機能が無効になっています"
-
-msgid "E258: Unable to send to client"
-msgstr "E258: クライアントへ送ることができません"
-
-#, c-format
-msgid "E962: Invalid action: '%s'"
-msgstr "E962: 無効な操作です: '%s'"
-
-msgid "(Invalid)"
-msgstr "(無効)"
-
-#, c-format
-msgid "E935: invalid submatch number: %d"
-msgstr "E935: 無効なサブマッチ番号です: %d"
-
-msgid "E18: Unexpected characters in :let"
-msgstr "E18: 予期せぬ文字が :let にありました"
-
-msgid "E991: cannot use =<< here"
-msgstr "E991: ここでは =<< は使えません"
-
-msgid "E221: Marker cannot start with lower case letter"
-msgstr "E221: マーカーは英小文字で始まってはいけません"
-
-msgid "E172: Missing marker"
-msgstr "E172: マーカーがありません"
-
-#, c-format
-msgid "E990: Missing end marker '%s'"
-msgstr "E990: 終端マーカーがありません '%s'"
-
-msgid "E985: .= is not supported with script version 2"
-msgstr "E985: .= はスクリプトバージョン 2 では対応していません"
-
-msgid "E687: Less targets than List items"
-msgstr "E687: ターゲットがリスト型内の要素よりも少ないです"
-
-msgid "E688: More targets than List items"
-msgstr "E688: ターゲットがリスト型内の要素よりも多いです"
-
-msgid "Double ; in list of variables"
-msgstr "リスト型の値に2つ以上の ; が検出されました"
-
-#, c-format
-msgid "E738: Can't list variables for %s"
-msgstr "E738: %s の値を一覧表示できません"
-
-msgid "E996: Cannot lock an environment variable"
-msgstr "E996: 環境変数はロックできません"
-
-msgid "E996: Cannot lock an option"
-msgstr "E996: オプションはロックできません"
-
-msgid "E996: Cannot lock a register"
-msgstr "E996: レジスタはロックできません"
-
-#, c-format
-msgid "E108: No such variable: \"%s\""
-msgstr "E108: その変数はありません: \"%s\""
-
-#, c-format
-msgid "E940: Cannot lock or unlock variable %s"
-msgstr "E940: 変数 %s はロックまたはアンロックできません"
-
-msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: (アン)ロックするには変数の入れ子が深過ぎます"
-
-#, c-format
-msgid "E963: setting %s to value with wrong type"
-msgstr "E963: %s を間違った型の値で設定しています"
-
-#, c-format
-msgid "E795: Cannot delete variable %s"
-msgstr "E795: 変数 %s を削除できません"
-
-#, c-format
-msgid "E704: Funcref variable name must start with a capital: %s"
-msgstr "E704: 関数参照型変数名は大文字で始まらなければなりません: %s"
-
-#, c-format
-msgid "E705: Variable name conflicts with existing function: %s"
-msgstr "E705: 変数名が既存の関数名と衝突します: %s"
-
-#, c-format
-msgid "E741: Value is locked: %s"
-msgstr "E741: 値がロックされています: %s"
-
-msgid "Unknown"
-msgstr "不明"
-
-#, c-format
-msgid "E742: Cannot change value of %s"
-msgstr "E742: %s の値を変更できません"
-
-msgid "E921: Invalid callback argument"
-msgstr "E921: 無効なコールバック引数です"
-
#, c-format
msgid "<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"
msgstr "<%s>%s%s %d, 16進数 %02x, 8進数 %03o, ダイグラフ %s"
@@ -1054,9 +442,6 @@
msgid "> %d, Hex %08x, Octal %o"
msgstr "> %d, 16進数 %08x, 8進数 %o"
-msgid "E134: Cannot move a range of lines into itself"
-msgstr "E134: 行の範囲をそれ自身には移動できません"
-
#, c-format
msgid "%ld line moved"
msgid_plural "%ld lines moved"
@@ -1066,9 +451,6 @@
msgid "%ld lines filtered"
msgstr "%ld 行がフィルタ処理されました"
-msgid "E135: *Filter* Autocommands must not change current buffer"
-msgstr "E135: *フィルタ* autocommandは現在のバッファを変更してはいけません"
-
msgid "[No write since last change]\n"
msgstr "[最後の変更が保存されていません]\n"
@@ -1078,9 +460,6 @@
msgid "Write partial file?"
msgstr "ファイルを部分的に保存しますか?"
-msgid "E140: Use ! to write partial buffer"
-msgstr "E140: バッファを部分的に保存するには ! を使ってください"
-
#, c-format
msgid "Overwrite existing file \"%s\"?"
msgstr "既存のファイル \"%s\" を上書きしますか?"
@@ -1090,17 +469,6 @@
msgstr "スワップファイル \"%s\" が存在します。上書きを強制しますか?"
#, c-format
-msgid "E768: Swap file exists: %s (:silent! overrides)"
-msgstr "E768: スワップファイルが存在します: %s (:silent! を追加で上書)"
-
-#, c-format
-msgid "E141: No file name for buffer %ld"
-msgstr "E141: バッファ %ld には名前がありません"
-
-msgid "E142: File not written: Writing is disabled by 'write' option"
-msgstr "E142: ファイルは保存されませんでした: 'write' オプションにより無効です"
-
-#, c-format
msgid ""
"'readonly' option is set for \"%s\".\n"
"Do you wish to write anyway?"
@@ -1115,30 +483,13 @@
"Do you wish to try?"
msgstr ""
"ファイル \"%s\" のパーミッションが読込専用です.\n"
-"それでも恐らく書き込むことは可能です.\n"
+"それでも恐らく書込むことは可能です.\n"
"継続しますか?"
-#, c-format
-msgid "E505: \"%s\" is read-only (add ! to override)"
-msgstr "E505: \"%s\" は読込専用です (強制書込には ! を追加)"
-
msgid "Edit File"
msgstr "ファイルを編集"
#, c-format
-msgid "E143: Autocommands unexpectedly deleted new buffer %s"
-msgstr "E143: autocommandが予期せず新しいバッファ %s を削除しました"
-
-msgid "E144: non-numeric argument to :z"
-msgstr "E144: 数ではない引数が :z に渡されました"
-
-msgid "E145: Shell commands and some functionality not allowed in rvim"
-msgstr "E145: rvimではシェルコマンドと一部の機能を使えません"
-
-msgid "E146: Regular expressions can't be delimited by letters"
-msgstr "E146: 正規表現は文字で区切ることができません"
-
-#, c-format
msgid "replace with %s (y/n/a/q/l/^E/^Y)?"
msgstr "%s に置換しますか? (y/n/a/q/l/^E/^Y)"
@@ -1165,12 +516,6 @@
msgid_plural "%ld substitutions on %ld lines"
msgstr[0] "%ld 箇所置換しました (計 %ld 行内)"
-msgid "E147: Cannot do :global recursive with a range"
-msgstr "E147: :global を範囲付きで再帰的には使えません"
-
-msgid "E148: Regular expression missing from global"
-msgstr "E148: globalコマンドに正規表現が指定されていません"
-
#, c-format
msgid "Pattern found in every line: %s"
msgstr "パターンが全ての行で見つかりました: %s"
@@ -1179,46 +524,6 @@
msgid "Pattern not found: %s"
msgstr "パターンは見つかりませんでした: %s"
-msgid "E478: Don't panic!"
-msgstr "E478: 慌てないでください"
-
-#, c-format
-msgid "E661: Sorry, no '%s' help for %s"
-msgstr "E661: 残念ですが '%s' のヘルプが %s にはありません"
-
-#, c-format
-msgid "E149: Sorry, no help for %s"
-msgstr "E149: 残念ですが %s にはヘルプがありません"
-
-#, c-format
-msgid "Sorry, help file \"%s\" not found"
-msgstr "残念ですがヘルプファイル \"%s\" が見つかりません"
-
-#, c-format
-msgid "E151: No match: %s"
-msgstr "E151: マッチはありません: %s"
-
-#, c-format
-msgid "E152: Cannot open %s for writing"
-msgstr "E152: 書込み用に %s を開けません"
-
-#, c-format
-msgid "E153: Unable to open %s for reading"
-msgstr "E153: 読込用に %s を開けません"
-
-# Added at 29-Apr-2004.
-#, c-format
-msgid "E670: Mix of help file encodings within a language: %s"
-msgstr "E670: 1つの言語のヘルプファイルに複数のエンコードが混在しています: %s"
-
-#, c-format
-msgid "E154: Duplicate tag \"%s\" in file %s/%s"
-msgstr "E154: タグ \"%s\" がファイル %s/%s に重複しています"
-
-#, c-format
-msgid "E150: Not a directory: %s"
-msgstr "E150: ディレクトリではありません: %s"
-
msgid "No old files"
msgstr "古いファイルはありません"
@@ -1226,20 +531,8 @@
msgid "Save changes to \"%s\"?"
msgstr "変更を \"%s\" に保存しますか?"
-#, c-format
-msgid "E947: Job still running in buffer \"%s\""
-msgstr "E947: ジョブはバッファ \"%s\" でまだ実行中です"
-
-#, c-format
-msgid "E162: No write since last change for buffer \"%s\""
-msgstr "E162: バッファ \"%s\" の変更は保存されていません"
-
msgid "Warning: Entered other buffer unexpectedly (check autocommands)"
-msgstr "警告: 予期せず他バッファへ移動しました (autocommands を調べてください)"
-
-#, c-format
-msgid "E666: compiler not supported: %s"
-msgstr "E666: そのコンパイラには対応していません: %s"
+msgstr "警告: 予期せず他バッファへ移動しました (自動コマンドを調べてください)"
#, c-format
msgid "W20: Required python version 2.x not supported, ignoring file: %s"
@@ -1249,93 +542,40 @@
msgid "W21: Required python version 3.x not supported, ignoring file: %s"
msgstr "W21: 要求されたpython 3.xは対応していません、ファイルを無視します: %s"
-#, c-format
-msgid "Current %slanguage: \"%s\""
-msgstr "現在の %s言語: \"%s\""
-
-#, c-format
-msgid "E197: Cannot set language to \"%s\""
-msgstr "E197: 言語を \"%s\" に設定できません"
-
msgid "Entering Ex mode. Type \"visual\" to go to Normal mode."
msgstr ""
"Exモードに入ります。ノーマルモードに戻るには\"visual\"と入力してください。"
-msgid "E501: At end-of-file"
-msgstr "E501: ファイルの終了位置"
-
#, c-format
msgid "Executing: %s"
msgstr "実行中: %s"
-msgid "E169: Command too recursive"
-msgstr "E169: コマンドが再帰的過ぎます"
-
-#, c-format
-msgid "E605: Exception not caught: %s"
-msgstr "E605: 例外が捕捉されませんでした: %s"
-
msgid "End of sourced file"
-msgstr "取込ファイルの最後です"
+msgstr "取込みファイルの最後です"
msgid "End of function"
msgstr "関数の最後です"
-msgid "E464: Ambiguous use of user-defined command"
-msgstr "E464: ユーザー定義コマンドのあいまいな使用です"
-
-msgid "E492: Not an editor command"
-msgstr "E492: エディタのコマンドではありません"
-
-msgid "E981: Command not allowed in rvim"
-msgstr "E981: rvimではこのコマンドを使えません"
-
-msgid "E493: Backwards range given"
-msgstr "E493: 逆さまの範囲が指定されました"
-
msgid "Backwards range given, OK to swap"
msgstr "逆さまの範囲が指定されました、入替えますか?"
-msgid "E494: Use w or w>>"
-msgstr "E494: w もしくは w>> を使用してください"
-
msgid ""
"INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"
msgstr ""
"内部エラー: EX_DFLALL を ADDR_NONE, ADDR_UNSIGNED や ADDR_QUICKFIX とともに使"
"うことはできません"
-msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
-msgstr ""
-"E943: コマンドテーブルを更新する必要があります、'make cmdidxs' を実行してくだ"
-"さい"
-
-msgid "E319: Sorry, the command is not available in this version"
-msgstr "E319: このバージョンではこのコマンドは利用できません、ごめんなさい"
-
#, c-format
msgid "%d more file to edit. Quit anyway?"
msgid_plural "%d more files to edit. Quit anyway?"
msgstr[0] "編集すべきファイルがあと %d 個ありますが、終了しますか?"
-#, c-format
-msgid "E173: %d more file to edit"
-msgid_plural "E173: %d more files to edit"
-msgstr[0] "E173: 編集すべきファイルがあと %d 個あります"
-
msgid "unknown"
msgstr "不明"
-#, c-format
-msgid "E185: Cannot find color scheme '%s'"
-msgstr "E185: カラースキーム '%s' が見つかりません"
-
msgid "Greetings, Vim user!"
msgstr "Vim 使いさん、やあ!"
-msgid "E784: Cannot close last tab page"
-msgstr "E784: 最後のタブページを閉じることはできません"
-
msgid "Already only one tab page"
msgstr "既にタブページは1つしかありません"
@@ -1355,96 +595,16 @@
msgid "Append File"
msgstr "追加ファイル"
-msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
-msgstr ""
-"E747: バッファが修正されているので、ディレクトリを変更できません (! を追加で"
-"上書)"
-
-msgid "E186: No previous directory"
-msgstr "E186: 前のディレクトリはありません"
-
-msgid "E187: Unknown"
-msgstr "E187: 未知"
-
-msgid "E465: :winsize requires two number arguments"
-msgstr "E465: :winsize には2つの数値の引数が必要です"
-
#, c-format
msgid "Window position: X %d, Y %d"
msgstr "ウィンドウ位置: X %d, Y %d"
-msgid "E188: Obtaining window position not implemented for this platform"
-msgstr ""
-"E188: このプラットホームにはウィンドウ位置の取得機能は実装されていません"
-
-msgid "E466: :winpos requires two number arguments"
-msgstr "E466: :winpos には2つの数値の引数が必要です"
-
-msgid "E930: Cannot use :redir inside execute()"
-msgstr "E930: execute() の中では :redir は使えません"
-
msgid "Save Redirection"
msgstr "リダイレクトを保存します"
-#, c-format
-msgid "E739: Cannot create directory: %s"
-msgstr "E739: ディレクトリを作成できません: %s"
-
-#, c-format
-msgid "E189: \"%s\" exists (add ! to override)"
-msgstr "E189: \"%s\" が存在します (上書するには ! を追加してください)"
-
-#, c-format
-msgid "E190: Cannot open \"%s\" for writing"
-msgstr "E190: \"%s\" を書込み用として開けません"
-
-msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr "E191: 引数は1文字の英字か引用符 (' か `) でなければいけません"
-
-msgid "E192: Recursive use of :normal too deep"
-msgstr "E192: :normal の再帰利用が深くなり過ぎました"
-
-msgid "E809: #< is not available without the +eval feature"
-msgstr "E809: #< は +eval 機能が無いと利用できません"
-
-msgid "E194: No alternate file name to substitute for '#'"
-msgstr "E194: '#'を置き換える副ファイルの名前がありません"
-
-msgid "E495: no autocommand file name to substitute for \"<afile>\""
-msgstr "E495: \"<afile>\"を置き換えるautocommandのファイル名がありません"
-
-msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
-msgstr "E496: \"<abuf>\"を置き換えるautocommandバッファ番号がありません"
-
-msgid "E497: no autocommand match name to substitute for \"<amatch>\""
-msgstr "E497: \"<amatch>\"を置き換えるautocommandの該当名がありません"
-
-msgid "E498: no :source file name to substitute for \"<sfile>\""
-msgstr "E498: \"<sfile>\"を置き換える :source 対象ファイル名がありません"
-
-msgid "E842: no line number to use for \"<slnum>\""
-msgstr "E842: \"<slnum>\"を置き換える行番号がありません"
-
-msgid "E961: no line number to use for \"<sflnum>\""
-msgstr "E961: \"<sflnum>\"を置き換える行番号がありません"
-
-#, no-c-format
-msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
-msgstr ""
-"E499: '%' や '#' が無名ファイルなので \":p:h\" を伴わない使い方はできません"
-
-msgid "E500: Evaluates to an empty string"
-msgstr "E500: 空文字列として評価されました"
-
msgid "Untitled"
msgstr "無題"
-msgid "E196: No digraphs in this version"
-msgstr "E196: このバージョンに合字はありません"
-
-msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
-msgstr "E608: 'Vim' で始まる例外は :throw できません"
-
#, c-format
msgid "Exception thrown: %s"
msgstr "例外が発生しました: %s"
@@ -1489,71 +649,11 @@
msgid "Interrupt"
msgstr "割込み"
-msgid "E579: :if nesting too deep"
-msgstr "E579: :if の入れ子が深過ぎます"
+msgid "[Command Line]"
+msgstr "[コマンドライン]"
-msgid "E580: :endif without :if"
-msgstr "E580: :if のない :endif があります"
-
-msgid "E581: :else without :if"
-msgstr "E581: :if のない :else があります"
-
-msgid "E582: :elseif without :if"
-msgstr "E582: :if のない :elseif があります"
-
-msgid "E583: multiple :else"
-msgstr "E583: 複数の :else があります"
-
-msgid "E584: :elseif after :else"
-msgstr "E584: :else の後に :elseif があります"
-
-msgid "E585: :while/:for nesting too deep"
-msgstr "E585: :while や :for の入れ子が深過ぎます"
-
-msgid "E586: :continue without :while or :for"
-msgstr "E586: :while や :for のない :continue があります"
-
-msgid "E587: :break without :while or :for"
-msgstr "E587: :while や :for のない :break があります"
-
-msgid "E732: Using :endfor with :while"
-msgstr "E732: :endfor を :while と組み合わせています"
-
-msgid "E733: Using :endwhile with :for"
-msgstr "E733: :endwhile を :for と組み合わせています"
-
-msgid "E601: :try nesting too deep"
-msgstr "E601: :try の入れ子が深過ぎます"
-
-msgid "E603: :catch without :try"
-msgstr "E603: :try のない :catch があります"
-
-msgid "E604: :catch after :finally"
-msgstr "E604: :finally の後に :catch があります"
-
-msgid "E606: :finally without :try"
-msgstr "E606: :try のない :finally があります"
-
-msgid "E607: multiple :finally"
-msgstr "E607: 複数の :finally があります"
-
-msgid "E602: :endtry without :try"
-msgstr "E602: :try のない :endtry です"
-
-msgid "E193: :endfunction not inside a function"
-msgstr "E193: 関数の外に :endfunction がありました"
-
-msgid "E788: Not allowed to edit another buffer now"
-msgstr "E788: 現在は他のバッファを編集することは許されません"
-
-msgid "E811: Not allowed to change buffer information now"
-msgstr "E811: 現在はバッファ情報を変更することは許されません"
-
-msgid "E199: Active window or buffer deleted"
-msgstr "E199: アクティブなウィンドウかバッファが削除されました"
-
-msgid "E812: Autocommands changed buffer or buffer name"
-msgstr "E812: autocommandがバッファかバッファ名を変更しました"
+msgid "is a directory"
+msgstr "はディレクトリです"
msgid "Illegal file name"
msgstr "不正なファイル名"
@@ -1573,21 +673,12 @@
msgid "[Permission Denied]"
msgstr "[権限がありません]"
-msgid "E200: *ReadPre autocommands made the file unreadable"
-msgstr "E200: *ReadPre autocommand がファイルを読込不可にしました"
-
-msgid "E201: *ReadPre autocommands must not change current buffer"
-msgstr "E201: *ReadPre autocommand は現在のバッファを変えられません"
-
msgid "Vim: Reading from stdin...\n"
-msgstr "Vim: 標準入力から読込中...\n"
+msgstr "Vim: 標準入力から読込み中...\n"
msgid "Reading from stdin..."
msgstr "標準入力から読込み中..."
-msgid "E202: Conversion made file unreadable!"
-msgstr "E202: 変換がファイルを読込不可にしました"
-
msgid "[fifo]"
msgstr "[FIFO]"
@@ -1647,9 +738,9 @@
msgstr[0] "%ld 行, "
#, c-format
-msgid "%lld character"
-msgid_plural "%lld characters"
-msgstr[0] "%lld 文字"
+msgid "%lld byte"
+msgid_plural "%lld bytes"
+msgstr[0] "%lld バイト"
msgid "[noeol]"
msgstr "[noeol]"
@@ -1658,25 +749,6 @@
msgstr "[最終行が不完全]"
#, c-format
-msgid "E208: Error writing to \"%s\""
-msgstr "E208: \"%s\" を書込み中のエラーです"
-
-#, c-format
-msgid "E209: Error closing \"%s\""
-msgstr "E209: \"%s\" を閉じる時にエラーです"
-
-#, c-format
-msgid "E210: Error reading \"%s\""
-msgstr "E210: \"%s\" を読込中のエラーです"
-
-msgid "E246: FileChangedShell autocommand deleted buffer"
-msgstr "E246: autocommand の FileChangedShell がバッファを削除しました"
-
-#, c-format
-msgid "E211: File \"%s\" no longer available"
-msgstr "E211: ファイル \"%s\" は既に存在しません"
-
-#, c-format
msgid ""
"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as "
"well"
@@ -1713,26 +785,11 @@
"&OK\n"
"ファイル読込(&L)"
-#, c-format
-msgid "E462: Could not prepare for reloading \"%s\""
-msgstr "E462: \"%s\" をリロードする準備ができませんでした"
-
-#, c-format
-msgid "E321: Could not reload \"%s\""
-msgstr "E321: \"%s\" はリロードできませんでした"
-
-msgid "E219: Missing {."
-msgstr "E219: { がありません。"
-
-msgid "E220: Missing }."
-msgstr "E220: } がありません。"
-
msgid "<empty>"
msgstr "<空>"
-# Added at 10-Mar-2004.
-msgid "E655: Too many symbolic links (cycle?)"
-msgstr "E655: シンボリックリンクが多過ぎます (循環している可能性があります)"
+msgid "writefile() first argument must be a List or a Blob"
+msgstr "writefile() の第1引数はリスト型またはBlob型でなければなりません"
msgid "Select Directory dialog"
msgstr "ディレクトリ選択ダイアログ"
@@ -1743,51 +800,8 @@
msgid "Open File dialog"
msgstr "ファイル読込ダイアログ"
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: コンソールモードではファイルブラウザを使えません、ごめんなさい"
-
-msgid "E854: path too long for completion"
-msgstr "E854: パスが長過ぎて補完できません"
-
-#, c-format
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: 無効なパスです: '**[数値]' はpathの最後か '%s' が続いてないといけませ"
-"ん。"
-
-#, c-format
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: cdpathには \"%s\" というディレクトリがありません"
-
-#, c-format
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: pathには \"%s\" というファイルがありません"
-
-#, c-format
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: cdpathにはこれ以上 \"%s\" というディレクトリがありません"
-
-#, c-format
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: パスにはこれ以上 \"%s\" というファイルがありません"
-
-msgid "E446: No file name under cursor"
-msgstr "E446: カーソルの下にファイル名がありません"
-
-#, c-format
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: pathには \"%s\" というファイルがありません"
-
-msgid "E490: No fold found"
-msgstr "E490: 折畳みがありません"
-
-msgid "E350: Cannot create fold with current 'foldmethod'"
-msgstr "E350: 現在の 'foldmethod' では折畳みを作成できません"
-
-msgid "E351: Cannot delete fold with current 'foldmethod'"
-msgstr "E351: 現在の 'foldmethod' では折畳みを削除できません"
+msgid "no matches"
+msgstr "該当なし"
#, c-format
msgid "+--%3ld line folded "
@@ -1799,57 +813,15 @@
msgid_plural "+-%s%3ld lines: "
msgstr[0] "+-%s%3ld 行: "
-msgid "E222: Add to read buffer"
-msgstr "E222: 読込バッファへ追加"
-
-msgid "E223: recursive mapping"
-msgstr "E223: 再帰的マッピング"
-
-msgid "E851: Failed to create a new process for the GUI"
-msgstr "E851: GUI用のプロセスの起動に失敗しました"
-
-msgid "E852: The child process failed to start the GUI"
-msgstr "E852: 子プロセスがGUIの起動に失敗しました"
-
-msgid "E229: Cannot start the GUI"
-msgstr "E229: GUIを開始できません"
-
-#, c-format
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: \"%s\"から読込むことができません"
-
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: 有効なフォントが見つからないので、GUIを開始できません"
-
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' が無効です"
-
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: 'imactivatekey' に設定された値が無効です"
-
-#, c-format
-msgid "E254: Cannot allocate color %s"
-msgstr "E254: %s の色を割り当てられません"
-
msgid "No match at cursor, finding next"
msgstr "カーソルの位置にマッチはありません、次を検索しています"
msgid "<cannot open> "
msgstr "<開けません> "
-#, c-format
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: フォント %s を取得できません"
-
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: 現在のディレクトリに戻れません"
-
msgid "Pathname:"
msgstr "パス名:"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: 現在のディレクトリを取得できません"
-
msgid "OK"
msgstr "OK"
@@ -1862,18 +834,15 @@
msgid "Vim dialog"
msgstr "Vim ダイアログ"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: メッセージとコールバックのある BalloonEval を作成できません"
-
-msgid "_Cancel"
-msgstr "キャンセル(_C)"
-
msgid "_Save"
msgstr "保存(_S)"
msgid "_Open"
msgstr "開く(_O)"
+msgid "_Cancel"
+msgstr "キャンセル(_C)"
+
msgid "_OK"
msgstr "_OK"
@@ -2001,39 +970,6 @@
msgstr "ディレクトリ\t*.nothing\n"
#, c-format
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: タイトルが \"%s\" のウィンドウは見つかりません"
-
-#, c-format
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: 引数はサポートされません: \"-%s\"; OLE版を使用してください。"
-
-msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
-msgstr "E988: GUIは使用不可能です。gvim.exeを起動できません。"
-
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: MDIアプリの中ではウィンドウを開けません"
-
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr "Vim E458: 色指定が正しくないのでエントリを割り当てられません"
-
-#, c-format
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: 以下の文字セットのフォントがありません %s:"
-
-#, c-format
-msgid "E252: Fontset name: %s"
-msgstr "E252: フォントセット名: %s"
-
-#, c-format
-msgid "Font '%s' is not fixed-width"
-msgstr "フォント '%s' は固定幅ではありません"
-
-#, c-format
-msgid "E253: Fontset name: %s"
-msgstr "E253: フォントセット名: %s"
-
-#, c-format
msgid "Font0: %s"
msgstr "フォント0: %s"
@@ -2083,18 +1019,6 @@
msgid "Size:"
msgstr "サイズ:"
-msgid "E256: Hangul automata ERROR"
-msgstr "E256: ハングルオートマトンエラー"
-
-msgid "E550: Missing colon"
-msgstr "E550: コロンがありません"
-
-msgid "E551: Illegal component"
-msgstr "E551: 不正な構文要素です"
-
-msgid "E552: digit expected"
-msgstr "E552: 数値が必要です"
-
#, c-format
msgid "Page %d"
msgstr "%d ページ"
@@ -2117,158 +1041,19 @@
msgid "Printing aborted"
msgstr "印刷が中止されました"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: PostScript出力ファイルの書込みエラーです"
-
-#, c-format
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: ファイル \"%s\" を開けません"
-
-#, c-format
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: PostScriptのリソースファイル \"%s\" を読込めません"
-
-#, c-format
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: ファイル \"%s\" は PostScript リソースファイルではありません"
-
-#, c-format
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: ファイル \"%s\" は対応していない PostScript リソースファイルです"
-
-#, c-format
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: リソースファイル \"%s\" はバージョンが異なります"
-
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: 互換性の無いマルチバイトエンコーディングと文字セットです。"
-
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr ""
-"E674: マルチバイトエンコーディングでは printmbcharset を空にできません。"
-
-msgid "E675: No default font specified for multi-byte printing."
-msgstr ""
-"E675: マルチバイト文字を印刷するためのデフォルトフォントが指定されていませ"
-"ん。"
-
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: PostScript出力用のファイルを開けません"
-
-#, c-format
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: ファイル \"%s\" を開けません"
-
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: PostScriptのリソースファイル \"prolog.ps\" が見つかりません"
-
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: PostScriptのリソースファイル \"cidfont.ps\" が見つかりません"
-
-#, c-format
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: PostScriptのリソースファイル \"%s.ps\" が見つかりません"
-
-#, c-format
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: 印刷エンコード \"%s\" へ変換できません"
-
msgid "Sending to printer..."
msgstr "プリンタに送信中..."
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: PostScriptファイルの印刷に失敗しました"
-
msgid "Print job sent."
msgstr "印刷ジョブを送信しました。"
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: syncolor.vim の再帰呼び出しを検出しました"
-
#, c-format
-msgid "E411: highlight group not found: %s"
-msgstr "E411: ハイライトグループが見つかりません: %s"
-
-#, c-format
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: 引数が充分ではない: \":highlight link %s\""
-
-#, c-format
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: 引数が多過ぎます: \":highlight link %s\""
-
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: グループが設定されているのでハイライトリンクは無視されます"
-
-#, c-format
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: 予期せぬ等号です: %s"
-
-#, c-format
-msgid "E416: missing equal sign: %s"
-msgstr "E416: 等号がありません: %s"
-
-#, c-format
-msgid "E417: missing argument: %s"
-msgstr "E417: 引数がありません: %s"
-
-#, c-format
-msgid "E418: Illegal value: %s"
-msgstr "E418: 不正な値です: %s"
-
-msgid "E419: FG color unknown"
-msgstr "E419: 未知の前景色です"
-
-msgid "E420: BG color unknown"
-msgstr "E420: 未知の背景色です"
-
-#, c-format
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: カラー名や番号を認識できません: %s"
-
-#, c-format
-msgid "E422: terminal code too long: %s"
-msgstr "E422: 終端コードが長過ぎます: %s"
-
-#, c-format
-msgid "E423: Illegal argument: %s"
-msgstr "E423: 不正な引数です: %s"
-
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: 多くの異なるハイライト属性が使われ過ぎています"
-
-msgid "E669: Unprintable character in group name"
-msgstr "E669: グループ名に印刷不可能な文字があります"
+msgid "Sorry, help file \"%s\" not found"
+msgstr "残念ですがヘルプファイル \"%s\" が見つかりません"
msgid "W18: Invalid character in group name"
msgstr "W18: グループ名に不正な文字があります"
-msgid "E849: Too many highlight and syntax groups"
-msgstr "E849: ハイライトと構文グループが多過ぎます"
-
-#, c-format
-msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E799: 無効な ID: %d (1 以上でなければなりません)"
-
-#, c-format
-msgid "E801: ID already taken: %d"
-msgstr "E801: ID はすでに利用中です: %d"
-
-msgid "E290: List or number required"
-msgstr "E290: リストか数値が必要です"
-
-#, c-format
-msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E802: 無効な ID: %d (1 以上でなければなりません)"
-
-#, c-format
-msgid "E803: ID not found: %d"
-msgstr "E803: ID はありません: %d"
-
-#, c-format
-msgid "E798: ID is reserved for \":match\": %d"
-msgstr "E798: ID は \":match\" のために予約されています: %d"
-
msgid "Add a new database"
msgstr "新データベースを追加"
@@ -2287,47 +1072,13 @@
msgid "Show connections"
msgstr "接続を表示する"
-#, c-format
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: 使用方法: cs[cope] %s"
-
msgid "This cscope command does not support splitting the window.\n"
msgstr "このcscopeコマンドは分割ウィンドウではサポートされません.\n"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: 使用法: cstag <ident>"
-
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: タグが見つかりません"
-
-#, c-format
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: stat(%s) エラー: %d"
-
-msgid "E563: stat error"
-msgstr "E563: stat エラー"
-
-#, c-format
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s はディレクトリ及び有効なcscopeのデータベースではありません"
-
#, c-format
msgid "Added cscope database %s"
msgstr "cscopeデータベース %s を追加"
-#, c-format
-msgid "E262: error reading cscope connection %d"
-msgstr "E262: cscopeの接続 %d を読込み中のエラーです"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: 未知のcscope検索型です"
-
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: cscopeパイプを作成できませんでした"
-
-msgid "E622: Could not fork for cscope"
-msgstr "E622: cscopeの起動準備(fork)に失敗しました"
-
msgid "cs_create_connection setpgid failed"
msgstr "cs_create_connection への setpgid に失敗しました"
@@ -2340,20 +1091,6 @@
msgid "cs_create_connection: fdopen for fr_fp failed"
msgstr "cs_create_connection: fr_fp の fdopen に失敗しました"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: cscopeプロセスを起動できませんでした"
-
-msgid "E567: no cscope connections"
-msgstr "E567: cscope接続に失敗しました"
-
-#, c-format
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: 無効な cscopequickfix フラグ %c の %c です"
-
-#, c-format
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: cscopeクエリー %s of %s に該当がありませんでした"
-
msgid "cscope commands:\n"
msgstr "cscopeコマンド:\n"
@@ -2385,26 +1122,9 @@
" t: このテキスト文字列を探す\n"
#, c-format
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: cscopeデータベース: %s を開くことができません"
-
-msgid "E626: cannot get cscope database information"
-msgstr "E626: cscopeデータベースの情報を取得できません"
-
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: 重複するcscopeデータベースは追加されませんでした"
-
-#, c-format
-msgid "E261: cscope connection %s not found"
-msgstr "E261: cscope接続 %s が見つかりませんでした"
-
-#, c-format
msgid "cscope connection %s closed"
msgstr "cscope接続 %s が閉じられました"
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: cs_manage_matches で致命的なエラーです"
-
#, c-format
msgid "Cscope tag: %s"
msgstr "Cscope タグ: %s"
@@ -2419,10 +1139,6 @@
msgid "filename / context / line\n"
msgstr "ファイル名 / 文脈 / 行\n"
-#, c-format
-msgid "E609: Cscope error: %s"
-msgstr "E609: cscopeエラー: %s"
-
msgid "All cscope databases reset"
msgstr "全てのcscopeデータベースをリセットします"
@@ -2438,18 +1154,6 @@
msgid "cannot save undo information"
msgstr "アンドゥ情報が保存できません"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr "E815: このコマンドは無効です。MzScheme ライブラリをロードできません。"
-
-msgid ""
-"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
-"could not be loaded."
-msgstr ""
-"E895: このコマンドは無効です、ごめんなさい。MzScheme の racket/base モジュー"
-"ルがロードできませんでした。"
-
msgid "invalid expression"
msgstr "無効な式です"
@@ -2501,61 +1205,6 @@
msgid "not allowed in the Vim sandbox"
msgstr "サンドボックスでは許されません"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: このVimでは :py3 を使った後に :python を使えません"
-
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: このコマンドは無効です、ごめんなさい: Pythonライブラリをロードできませ"
-"んでした。"
-
-msgid ""
-"E887: Sorry, this command is disabled, the Python's site module could not be "
-"loaded."
-msgstr ""
-"E887: このコマンドは無効です、ごめんなさい。Python の site モジュールをロード"
-"できませんでした。"
-
-# Added at 07-Feb-2004.
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python を再帰的に実行することはできません"
-
-msgid "E837: This Vim cannot execute :py3 after using :python"
-msgstr "E837: このVimでは :python を使った後に :py3 を使えません"
-
-msgid "E265: $_ must be an instance of String"
-msgstr "E265: $_ は文字列のインスタンスでなければなりません"
-
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: このコマンドは無効です、ごめんなさい: Rubyライブラリをロードできません"
-"でした。"
-
-msgid "E267: unexpected return"
-msgstr "E267: 予期せぬ return です"
-
-msgid "E268: unexpected next"
-msgstr "E268: 予期せぬ next です"
-
-msgid "E269: unexpected break"
-msgstr "E269: 予期せぬ break です"
-
-msgid "E270: unexpected redo"
-msgstr "E270: 予期せぬ redo です"
-
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: rescue の外の retry です"
-
-msgid "E272: unhandled exception"
-msgstr "E272: 取り扱われなかった例外があります"
-
-#, c-format
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: 未知のlongjmp状態: %d"
-
msgid "invalid buffer number"
msgstr "無効なバッファ番号です"
@@ -2600,43 +1249,17 @@
msgstr ""
"コールバックコマンドを登録できません: バッファ/ウィンドウが既に消去されました"
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: TCL 致命的エラー: reflist 汚染!? vim-dev@vim.org に報告してください"
-
msgid "cannot register callback command: buffer/window reference not found"
msgstr ""
"コールバックコマンドを登録できません: バッファ/ウィンドウの参照が見つかりませ"
"ん"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: このコマンドは無効です、ごめんなさい: Tclライブラリをロードできませんで"
-"した。"
-
-#, c-format
-msgid "E572: exit code %d"
-msgstr "E572: 終了コード %d"
-
msgid "cannot get line"
msgstr "行を取得できません"
msgid "Unable to register a command server name"
msgstr "命令サーバーの名前を登録できません"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: 目的のプログラムへのコマンド送信に失敗しました"
-
-#, c-format
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: 無効なサーバーIDが使われました: %s"
-
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: VIM 実体の登録プロパティが不正です。消去しました!"
-
#, c-format
msgid "%ld lines to indent... "
msgstr "%ld 行がインデントされます... "
@@ -2691,12 +1314,6 @@
msgid "Hit end of paragraph"
msgstr "段落の最後にヒット"
-msgid "E839: Completion function changed window"
-msgstr "E839: 補完関数がウィンドウを変更しました"
-
-msgid "E840: Completion function deleted text"
-msgstr "E840: 補完関数がテキストを削除しました"
-
msgid "'dictionary' option is empty"
msgstr "'dictionary' オプションが空です"
@@ -2713,9 +1330,6 @@
msgid " (replace) Scroll (^E/^Y)"
msgstr " (置換) スクロール (^E/^Y)"
-msgid "E785: complete() can only be used in Insert mode"
-msgstr "E785: complete() は挿入モードでしか利用できません"
-
#, c-format
msgid "Scanning: %s"
msgstr "スキャン中: %s"
@@ -2749,21 +1363,8 @@
msgid "match %d"
msgstr "%d 番目の該当"
-#, c-format
-msgid "E938: Duplicate key in JSON: \"%s\""
-msgstr "E938: JSONに重複キーがあります: \"%s\""
-
-#, c-format
-msgid "E899: Argument of %s must be a List or Blob"
-msgstr "E899: %s の引数はリスト型またはBlob型でなければなりません"
-
-#, c-format
-msgid "E696: Missing comma in List: %s"
-msgstr "E696: リスト型にカンマがありません: %s"
-
-#, c-format
-msgid "E697: Missing end of List ']': %s"
-msgstr "E697: リスト型の最後に ']' がありません: %s"
+msgid "flatten() argument"
+msgstr "flatten() の引数"
msgid "sort() argument"
msgstr "sort() の引数"
@@ -2771,23 +1372,17 @@
msgid "uniq() argument"
msgstr "uniq() の引数"
-msgid "E702: Sort compare function failed"
-msgstr "E702: ソートの比較関数が失敗しました"
-
-msgid "E882: Uniq compare function failed"
-msgstr "E882: Uniq の比較関数が失敗しました"
-
msgid "map() argument"
msgstr "map() の引数"
+msgid "mapnew() argument"
+msgstr "mapnew() の引数"
+
msgid "filter() argument"
msgstr "filter() の引数"
-msgid "add() argument"
-msgstr "add() の引数"
-
-msgid "insert() argument"
-msgstr "insert() の引数"
+msgid "extendnew() argument"
+msgstr "extendnew() の引数"
msgid "remove() argument"
msgstr "remove() の引数"
@@ -2795,6 +1390,10 @@
msgid "reverse() argument"
msgstr "reverse() の引数"
+#, c-format
+msgid "Current %slanguage: \"%s\""
+msgstr "現在の %s言語: \"%s\""
+
msgid "Unknown option argument"
msgstr "未知のオプション引数です"
@@ -2830,16 +1429,17 @@
msgstr "スクリプトファイルを再び開こうとしました: \""
msgid "Cannot open for reading: \""
-msgstr "読込用として開けません"
+msgstr "読込み用として開けません: \""
msgid "Cannot open for script output: \""
-msgstr "スクリプト出力用を開けません"
+msgstr "スクリプト出力用として開けません: \""
msgid "Vim: Error: Failure to start gvim from NetBeans\n"
msgstr "Vim: エラー: NetBeansからgvimをスタートできません\n"
+# This message should be English to avoid mojibake.
msgid "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
-msgstr "Vim: エラー: このバージョンのVimはCygwin端末では動作しません\n"
+msgstr "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
msgid "Vim: Warning: Output is not to a terminal\n"
msgstr "Vim: 警告: 端末への出力ではありません\n"
@@ -2850,10 +1450,6 @@
msgid "pre-vimrc command line"
msgstr "vimrc前のコマンドライン"
-#, c-format
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: \"%s\"から読込むことができません"
-
msgid ""
"\n"
"More info with: \"vim -h\"\n"
@@ -2862,7 +1458,7 @@
"より詳細な情報は: \"vim -h\"\n"
msgid "[file ..] edit specified file(s)"
-msgstr "[ファイル..] あるファイルを編集する"
+msgstr "[ファイル..] 指定されたファイルを編集する"
msgid "- read text from stdin"
msgstr "- 標準入力からテキストを読込む"
@@ -3053,7 +1649,7 @@
msgstr "-x\t\t\t暗号化されたファイルを編集する"
msgid "-display <display>\tConnect Vim to this particular X-server"
-msgstr "-display <display>\tvimを指定した X サーバーに接続する"
+msgstr "-display <display>\tVimを指定した X サーバーに接続する"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tXサーバーに接続しない"
@@ -3128,10 +1724,10 @@
"gvimによって解釈される引数(Athenaバージョン):\n"
msgid "-display <display>\tRun Vim on <display>"
-msgstr "-display <display>\t<display> でvimを実行する"
+msgstr "-display <display>\t<display> でVimを実行する"
msgid "-iconic\t\tStart Vim iconified"
-msgstr "-iconic\t\t最小化した状態でvimを起動する"
+msgstr "-iconic\t\t最小化した状態でVimを起動する"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <color>\t背景色に <color> を使う(同義: -bg)"
@@ -3195,65 +1791,15 @@
msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
msgstr "--windowid <HWND>\t異なるWin32 widgetの内部にVimを開く"
-msgid "No display"
-msgstr "ディスプレイが見つかりません"
-
-msgid ": Send failed.\n"
-msgstr ": 送信に失敗しました.\n"
-
-msgid ": Send failed. Trying to execute locally\n"
-msgstr ": 送信に失敗しました。ローカルでの実行を試みています\n"
-
-#, c-format
-msgid "%d of %d edited"
-msgstr "%d 個 (%d 個中) のファイルを編集しました"
-
-msgid "No display: Send expression failed.\n"
-msgstr "ディスプレイがありません: 式の送信に失敗しました.\n"
-
-msgid ": Send expression failed.\n"
-msgstr ": 式の送信に失敗しました.\n"
-
-#, c-format
-msgid "E224: global abbreviation already exists for %s"
-msgstr "E224: %s というグローバル短縮入力は既に存在します"
-
-#, c-format
-msgid "E225: global mapping already exists for %s"
-msgstr "E225: %s というグローバルマッピングは既に存在します"
-
-#, c-format
-msgid "E226: abbreviation already exists for %s"
-msgstr "E226: %s という短縮入力は既に存在します"
-
-#, c-format
-msgid "E227: mapping already exists for %s"
-msgstr "E227: %s というマッピングは既に存在します"
-
msgid "No abbreviation found"
msgstr "短縮入力は見つかりませんでした"
msgid "No mapping found"
msgstr "マッピングは見つかりませんでした"
-msgid "E228: makemap: Illegal mode"
-msgstr "E228: makemap: 不正なモード"
-
-#, c-format
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': %s に対応する文字がありません"
-
-#, c-format
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': セミコロンの後に余分な文字があります: %s"
-
msgid "No marks set"
msgstr "マークが設定されていません"
-#, c-format
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: \"%s\" に該当するマークがありません"
-
msgid ""
"\n"
"mark line col file/text"
@@ -3275,81 +1821,9 @@
"\n"
"変更 行 列 テキスト"
-msgid "E543: Not a valid codepage"
-msgstr "E543: 無効なコードページです"
-
-msgid "E284: Cannot set IC values"
-msgstr "E284: ICの値を設定できません"
-
-msgid "E285: Failed to create input context"
-msgstr "E285: インプットコンテキストの作成に失敗しました"
-
-msgid "E286: Failed to open input method"
-msgstr "E286: インプットメソッドのオープンに失敗しました"
-
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: 警告: IMの破壊コールバックを設定できませんでした"
-
-msgid "E288: input method doesn't support any style"
-msgstr "E288: インプットメソッドはどんなスタイルもサポートしません"
-
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: インプットメソッドは my preedit type をサポートしません"
-
-msgid "E293: block was not locked"
-msgstr "E293: ブロックがロックされていません"
-
-msgid "E294: Seek error in swap file read"
-msgstr "E294: スワップファイル読込時にシークエラーです"
-
-msgid "E295: Read error in swap file"
-msgstr "E295: スワップファイルの読込みエラーです"
-
-msgid "E296: Seek error in swap file write"
-msgstr "E296: スワップファイル書込み時にシークエラーです"
-
-msgid "E297: Write error in swap file"
-msgstr "E297: スワップファイルの書込みエラーです"
-
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: スワップファイルが既に存在します (symlinkによる攻撃?)"
-
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: ブロック 0 を取得できません?"
-
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: ブロック 1 を取得できません?"
-
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: ブロック 2 を取得できません?"
-
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: スワップファイルの暗号を更新中にエラーが発生しました"
-
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: おっと、スワップファイルが失われました!!!"
-
-msgid "E302: Could not rename swap file"
-msgstr "E302: スワップファイルの名前を変えられません"
-
-#, c-format
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr "E303: \"%s\" のスワップファイルを開けないのでリカバリは不可能です"
-
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): ブロック 0 を取得できませんでした??"
-
-#, c-format
-msgid "E305: No swap file found for %s"
-msgstr "E305: %s にはスワップファイルが見つかりません"
-
msgid "Enter number of swap file to use (0 to quit): "
msgstr "使用するスワップファイルの番号を入力してください(0 で終了): "
-#, c-format
-msgid "E306: Cannot open %s"
-msgstr "E306: %s を開けません"
-
msgid "Unable to read block 0 from "
msgstr "ブロック 0 を読込めません "
@@ -3366,10 +1840,6 @@
msgid "Use Vim version 3.0.\n"
msgstr "Vimのバージョン3.0を使用してください.\n"
-#, c-format
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s はVimのスワップファイルではないようです"
-
msgid " cannot be used on this computer.\n"
msgstr " このコンピュータでは使用できません.\n"
@@ -3383,12 +1853,6 @@
",\n"
"もしくはファイルが損傷しています。"
-#, c-format
-msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
-msgstr ""
-"E833: %s はこのバージョンのVimでサポートしていない形式で暗号化されています"
-
msgid " has been damaged (page size is smaller than minimum value).\n"
msgstr " は損傷しています (ページサイズが最小値を下回っています).\n"
@@ -3400,9 +1864,6 @@
msgid "Original file \"%s\""
msgstr "原本ファイル \"%s\""
-msgid "E308: Warning: Original file may have been changed"
-msgstr "E308: 警告: 原本ファイルが変更されています"
-
#, c-format
msgid "Swap file is encrypted: \"%s\""
msgstr "スワップファイルは暗号化されています: \"%s\""
@@ -3435,10 +1896,6 @@
"\n"
"スワップファイルに同じ暗号キーを使うためにenterだけを押してください。"
-#, c-format
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: %s からブロック 1 を読込めません"
-
msgid "???MANY LINES MISSING"
msgstr "???多くの行が失われています"
@@ -3451,10 +1908,6 @@
msgid "???LINES MISSING"
msgstr "???行が失われています"
-#, c-format
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: ブロック 1 のIDが間違っています(%s が.swpファイルでない?)"
-
msgid "???BLOCK MISSING"
msgstr "???ブロックがありません"
@@ -3467,14 +1920,6 @@
msgid "???END"
msgstr "???END"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: リカバリが割込まれました"
-
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: リカバリの最中にエラーが検出されました; ???で始まる行を参照してください"
-
msgid "See \":help E312\" for more information."
msgstr "詳細は \":help E312\" を参照してください"
@@ -3496,15 +1941,20 @@
msgid ""
"\n"
-"You may want to delete the .swp file now.\n"
-"\n"
+"You may want to delete the .swp file now."
msgstr ""
"\n"
-"元の.swpファイルは削除しても構いません\n"
+"元の.swpファイルは削除しても構いません。"
+
+msgid ""
"\n"
+"Note: process STILL RUNNING: "
+msgstr ""
+"\n"
+"注意: プロセスはまだ実行中です: "
msgid "Using crypt key from swap file for the text file.\n"
-msgstr "スワップファイルから取得した暗号キーをテキストファイルに使います.\n"
+msgstr "スワップファイルから取得した暗号キーをテキストファイルに使います。\n"
msgid "Swap files found:"
msgstr "スワップファイルが複数見つかりました:"
@@ -3521,9 +1971,6 @@
msgid " -- none --\n"
msgstr " -- なし --\n"
-msgid "%a %b %d %H:%M:%S %Y"
-msgstr "%Y/%m/%d (%a) %H:%M:%S"
-
msgid " owned by: "
msgstr " 所有者: "
@@ -3602,69 +2049,21 @@
msgid " [cannot be opened]"
msgstr " [開けません]"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: スワップファイルが無いので維持できません"
-
msgid "File preserved"
msgstr "ファイルが維持されます"
-msgid "E314: Preserve failed"
-msgstr "E314: 維持に失敗しました"
-
-#, c-format
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: 無効なlnumです: %ld"
-
-#, c-format
-msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
-msgstr "E316: ml_get: 行 %ld をバッファ %d %s 内に見つけられません"
-
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: ポインタブロックのIDが間違っています 3"
-
msgid "stack_idx should be 0"
msgstr "stack_idx は 0 であるべきです"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: 更新されたブロックが多過ぎるかも?"
-
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: ポインタブロックのIDが間違っています 4"
-
msgid "deleted block 1?"
msgstr "ブロック 1 は消された?"
-#, c-format
-msgid "E320: Cannot find line %ld"
-msgstr "E320: 行 %ld が見つかりません"
-
-msgid "E317: pointer block id wrong"
-msgstr "E317: ポインタブロックのIDが間違っています"
-
msgid "pe_line_count is zero"
msgstr "pe_line_count がゼロです"
-#, c-format
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: 行番号が範囲外です: %ld 超えています"
-
-#, c-format
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: ブロック %ld の行カウントが間違っています"
-
msgid "Stack size increases"
msgstr "スタックサイズが増えます"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: ポインタブロックのIDが間違っています 2"
-
-#, c-format
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: \"%s\" のシンボリックリンクがループになっています"
-
-msgid "E325: ATTENTION"
-msgstr "E325: 注意"
-
msgid ""
"\n"
"Found a swap file by the name \""
@@ -3759,28 +2158,6 @@
"終了する(&Q)\n"
"中止する(&A)"
-msgid "E326: Too many swap files found"
-msgstr "E326: スワップファイルが多数見つかりました"
-
-msgid "E327: Part of menu-item path is not sub-menu"
-msgstr "E327: メニューアイテムのパスの部分がサブメニューではありません"
-
-#, c-format
-msgid "E329: No menu \"%s\""
-msgstr "E329: \"%s\" というメニューはありません"
-
-msgid "E792: Empty menu name"
-msgstr "E792: メニュー名が空です"
-
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: メニューパスはサブメニューを生じるべきではありません"
-
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr "E331: メニューバーには直接メニューアイテムを追加できません"
-
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: 区切りはメニューパスの一部ではありません"
-
msgid ""
"\n"
"--- Menus ---"
@@ -3792,21 +2169,8 @@
msgstr "このメニューを切り取る"
#, c-format
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: %s にはメニューが定義されていません"
-
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: メニューパスはメニューアイテムを生じなければいけません"
-
-#, c-format
-msgid "E334: Menu not found: %s"
-msgstr "E334: メニューが見つかりません: %s"
-
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: メニューパスはサブメニューを生じなければいけません"
-
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: メニューが見つかりません - メニュー名を確認してください"
+msgid "Error detected while compiling %s:"
+msgstr "%s のコンパイル中にエラーが検出されました:"
#, c-format
msgid "Error detected while processing %s:"
@@ -3816,10 +2180,6 @@
msgid "line %4ld:"
msgstr "行 %4ld:"
-#, c-format
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: 無効なレジスタ名: '%s'"
-
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
msgstr "日本語メッセージ翻訳/監修: 村岡 太郎 <koron.kaoriya@gmail.com>"
@@ -3829,6 +2189,9 @@
msgid "Press ENTER or type command to continue"
msgstr "続けるにはENTERを押すかコマンドを入力してください"
+msgid "Unknown"
+msgstr "不明"
+
#, c-format
msgid "%s line %ld"
msgstr "%s 行 %ld"
@@ -3862,21 +2225,12 @@
"全て放棄(&D)\n"
"キャンセル(&C)"
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: printf() の引数が不十分です"
-
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: printf() の引数には浮動小数点数が期待されています"
-
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: printf() の引数が多過ぎます"
-
-msgid "Type number and <Enter> or click with mouse (empty cancels): "
+msgid "Type number and <Enter> or click with the mouse (q or empty cancels): "
msgstr ""
-"番号と<Enter>を入力するかマウスでクリックしてください (空でキャンセル): "
+"番号と<Enter>を入力するかマウスでクリックしてください (q か空でキャンセル): "
-msgid "Type number and <Enter> (empty cancels): "
-msgstr "番号と<Enter>を入力してください (空でキャンセル): "
+msgid "Type number and <Enter> (q or empty cancels): "
+msgstr "番号と<Enter>を入力してください (q か空でキャンセル): "
#, c-format
msgid "%ld more line"
@@ -3894,99 +2248,13 @@
msgid "Beep!"
msgstr "ビーッ!"
-msgid "E677: Error writing temp file"
-msgstr "E677: 一時ファイル書込中にエラーが発生しました"
-
-#, c-format
-msgid "%ld second ago"
-msgid_plural "%ld seconds ago"
-msgstr[0] "%ld 秒経過しています"
-
-msgid "ERROR: "
-msgstr "エラー: "
-
-#, c-format
-msgid ""
-"\n"
-"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
-msgstr ""
-"\n"
-"[メモリ(バイト)] 総割当-解放量 %lu-%lu, 使用量 %lu, ピーク時 %lu\n"
-
-#, c-format
-msgid ""
-"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
-"\n"
-msgstr ""
-"[呼出] 総 re/malloc() 回数 %lu, 総 free() 回数 %lu\n"
-"\n"
-
-msgid "E341: Internal error: lalloc(0, )"
-msgstr "E341: 内部エラー: lalloc(0, )"
-
-#, c-format
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: メモリが足りません! (%lu バイトを割当要求)"
-
#, c-format
msgid "Calling shell to execute: \"%s\""
msgstr "実行のためにシェルを呼出し中: \"%s\""
-msgid "E545: Missing colon"
-msgstr "E545: コロンがありません"
-
-msgid "E546: Illegal mode"
-msgstr "E546: 不正なモードです"
-
-msgid "E547: Illegal mouseshape"
-msgstr "E547: 不正な 'mouseshape' です"
-
-msgid "E548: digit expected"
-msgstr "E548: 数値が必要です"
-
-msgid "E549: Illegal percentage"
-msgstr "E549: 不正なパーセンテージです"
-
-#, c-format
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: NetBeansの接続情報ファイルのアクセスモードに問題があります: \"%s\""
-
-#, c-format
-msgid "E658: NetBeans connection lost for buffer %d"
-msgstr "E658: バッファ %d の NetBeans 接続が失われました"
-
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: NetBeansはこのGUIには対応していません"
-
-msgid "E511: netbeans already connected"
-msgstr "E511: NetBeansは既に接続しています"
-
-#, c-format
-msgid "E505: %s is read-only (add ! to override)"
-msgstr "E505: %s は読込専用です (強制書込には ! を追加)"
-
-msgid "E349: No identifier under cursor"
-msgstr "E349: カーソルの位置には識別子がありません"
-
msgid "Warning: terminal cannot highlight"
msgstr "警告: 使用している端末はハイライトできません"
-msgid "E348: No string under cursor"
-msgstr "E348: カーソルの位置には文字列がありません"
-
-msgid "E352: Cannot erase folds with current 'foldmethod'"
-msgstr "E352: 現在の 'foldmethod' では折畳みを消去できません"
-
-msgid "E664: changelist is empty"
-msgstr "E664: 変更リストが空です"
-
-msgid "E662: At start of changelist"
-msgstr "E662: 変更リストの先頭"
-
-msgid "E663: At end of changelist"
-msgstr "E663: 変更リストの末尾"
-
msgid "Type :qa! and press <Enter> to abandon all changes and exit Vim"
msgstr ""
"すべての変更を破棄し、Vimを終了するには :qa! と入力し <Enter> を押してくだ"
@@ -4014,6 +2282,11 @@
msgstr[0] "%ld 行が変更されました"
#, c-format
+msgid "%d line changed"
+msgid_plural "%d lines changed"
+msgstr[0] "%d 行が変更されました"
+
+#, c-format
msgid "%ld Cols; "
msgstr "%ld 列; "
@@ -4044,62 +2317,10 @@
msgid "(+%lld for BOM)"
msgstr "(+%lld for BOM)"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: 'operatorfunc' オプションが空です"
-
-msgid "E775: Eval feature not available"
-msgstr "E775: 式評価機能が無効になっています"
-
-msgid "E518: Unknown option"
-msgstr "E518: 未知のオプションです"
-
-msgid "E519: Option not supported"
-msgstr "E519: オプションはサポートされていません"
-
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: modeline では許可されません"
-
-msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
-msgstr "E992: 'modelineexpr' がオフの時 modeline では許可されません"
-
-msgid "E846: Key code not set"
-msgstr "E846: キーコードが設定されていません"
-
-msgid "E521: Number required after ="
-msgstr "E521: = の後には数字が必要です"
-
-msgid "E522: Not found in termcap"
-msgstr "E522: termcap 内に見つかりません"
-
-msgid "E946: Cannot make a terminal with running job modifiable"
-msgstr "E946: 実行中のジョブがある端末は変更可能にできません"
-
-msgid "E590: A preview window already exists"
-msgstr "E590: プレビューウィンドウが既に存在します"
-
msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
msgstr ""
"W17: アラビア文字にはUTF-8が必要なので、':set encoding=utf-8' してください"
-msgid "E954: 24-bit colors are not supported on this environment"
-msgstr "E954: 24bit色はこの環境ではサポートされていません"
-
-#, c-format
-msgid "E593: Need at least %d lines"
-msgstr "E593: 最低 %d の行数が必要です"
-
-#, c-format
-msgid "E594: Need at least %d columns"
-msgstr "E594: 最低 %d のカラム幅が必要です"
-
-#, c-format
-msgid "E355: Unknown option: %s"
-msgstr "E355: 未知のオプションです: %s"
-
-#, c-format
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: 数字が必要です: &%s = '%s'"
-
msgid ""
"\n"
"--- Terminal codes ---"
@@ -4128,94 +2349,10 @@
"\n"
"--- オプション ---"
-msgid "E356: get_varp ERROR"
-msgstr "E356: get_varp エラー"
-
-#, c-format
-msgid "E539: Illegal character <%s>"
-msgstr "E539: 不正な文字です <%s>"
-
#, c-format
msgid "For option %s"
msgstr "オプション: %s"
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: 式が終了していません"
-
-
-msgid "E542: unbalanced groups"
-msgstr "E542: グループが釣合いません"
-
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: 'term' には空文字列を設定できません"
-
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: GUIでは 'term' を変更できません"
-
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: GUIをスタートするには \":gui\" を使用してください"
-
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' と 'patchmode' が同じです"
-
-msgid "E834: Conflicts with value of 'listchars'"
-msgstr "E834: 'listchars'の値に矛盾があります"
-
-msgid "E835: Conflicts with value of 'fillchars'"
-msgstr "E835: 'fillchars'の値に矛盾があります"
-
-msgid "E617: Cannot be changed in the GTK+ 2 GUI"
-msgstr "E617: GTK+2 GUIでは変更できません"
-
-#, c-format
-msgid "E950: Cannot convert between %s and %s"
-msgstr "E950: %s と %s の間で変換できません"
-
-msgid "E524: Missing colon"
-msgstr "E524: コロンがありません"
-
-msgid "E525: Zero length string"
-msgstr "E525: 文字列の長さがゼロです"
-
-#, c-format
-msgid "E526: Missing number after <%s>"
-msgstr "E526: <%s> の後に数字がありません"
-
-msgid "E527: Missing comma"
-msgstr "E527: カンマがありません"
-
-msgid "E528: Must specify a ' value"
-msgstr "E528: ' の値を指定しなければなりません"
-
-msgid "E595: contains unprintable or wide character"
-msgstr "E595: 表示できない文字かワイド文字を含んでいます"
-
-msgid "E596: Invalid font(s)"
-msgstr "E596: 無効なフォントです"
-
-msgid "E597: can't select fontset"
-msgstr "E597: フォントセットを選択できません"
-
-msgid "E598: Invalid fontset"
-msgstr "E598: 無効なフォントセットです"
-
-msgid "E533: can't select wide font"
-msgstr "E533: ワイドフォントを選択できません"
-
-msgid "E534: Invalid wide font"
-msgstr "E534: 無効なワイドフォントです"
-
-#, c-format
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: <%c> の後に不正な文字があります"
-
-msgid "E536: comma required"
-msgstr "E536: カンマが必要です"
-
-#, c-format
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' は空であるか %s を含む必要があります"
-
msgid "cannot open "
msgstr "開けません "
@@ -4245,9 +2382,6 @@
msgid "mch_get_shellsize: not a console??\n"
msgstr "mch_get_shellsize: コンソールではない??\n"
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: -f オプションでシェルを実行できません"
-
msgid "Cannot execute "
msgstr "実行できません "
@@ -4266,38 +2400,15 @@
msgid "Message"
msgstr "メッセージ"
-msgid "E237: Printer selection failed"
-msgstr "E237: プリンタの選択に失敗しました"
-
#, c-format
msgid "to %s on %s"
msgstr "%s へ (%s 上の)"
#, c-format
-msgid "E613: Unknown printer font: %s"
-msgstr "E613: 未知のプリンタオプションです: %s"
-
-#, c-format
-msgid "E238: Print error: %s"
-msgstr "E238: 印刷エラー: %s"
-
-#, c-format
msgid "Printing '%s'"
msgstr "印刷しています: '%s'"
#, c-format
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr "E244: 文字セット名 \"%s\" は不正です (フォント名 \"%s\")"
-
-#, c-format
-msgid "E244: Illegal quality name \"%s\" in font name \"%s\""
-msgstr "E244: 品質名 \"%s\" は不正です (フォント名 \"%s\")"
-
-#, c-format
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: '%c' は不正な文字です (フォント名 \"%s\")"
-
-#, c-format
msgid "Opening the X display took %ld msec"
msgstr "Xサーバーへの接続に %ld ミリ秒かかりました"
@@ -4421,9 +2532,6 @@
msgid "shutdown"
msgstr "シャットダウン"
-msgid "E371: Command not found"
-msgstr "E371: コマンドがありません"
-
msgid ""
"VIMRUN.EXE not found in your $PATH.\n"
"External commands will not pause after completion.\n"
@@ -4440,64 +2548,6 @@
msgid "shell returned %d"
msgstr "シェルがコード %d で終了しました"
-msgid "E278: Cannot put a terminal buffer in a popup window"
-msgstr "E278: 端末バッファをポップアップウィンドウ内に置くことはできません"
-
-#, c-format
-msgid "E997: Tabpage not found: %d"
-msgstr "E997: タブページが見つかりません: %d"
-
-#, c-format
-msgid "E993: window %d is not a popup window"
-msgstr "E993: ウィンドウ %d はポップアップウィンドウではありません"
-
-msgid "E994: Not allowed in a popup window"
-msgstr "E994: ポップアップウィンドウでは許されません"
-
-msgid "E750: First use \":profile start {fname}\""
-msgstr "E750: 初めに \":profile start {fname}\" を実行してください"
-
-msgid "E553: No more items"
-msgstr "E553: 要素がもうありません"
-
-msgid "E926: Current location list was changed"
-msgstr "E926: 現在のロケーションリストが変更されました"
-
-#, c-format
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: フォーマット文字列に %%%c が多過ぎます"
-
-#, c-format
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: フォーマット文字列に予期せぬ %%%c がありました"
-
-msgid "E374: Missing ] in format string"
-msgstr "E374: フォーマット文字列に ] がありません"
-
-#, c-format
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: フォーマット文字列では %%%c はサポートされません"
-
-#, c-format
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: フォーマット文字列の前置に無効な %%%c があります"
-
-#, c-format
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: フォーマット文字列に無効な %%%c があります"
-
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' にパターンが指定されていません"
-
-msgid "E379: Missing or empty directory name"
-msgstr "E379: ディレクトリ名が無いか空です"
-
-msgid "E924: Current window was closed"
-msgstr "E924: 現在のウィンドウが閉じられました"
-
-msgid "E925: Current quickfix was changed"
-msgstr "E925: 現在の quickfix が変更されました"
-
#, c-format
msgid "(%d of %d)%s%s: "
msgstr "(%d of %d)%s%s: "
@@ -4507,13 +2557,7 @@
#, c-format
msgid "%serror list %d of %d; %d errors "
-msgstr "%s エラー一覧 %d of %d; %d 個エラー"
-
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: quickfix スタックの末尾です"
-
-msgid "E381: At top of quickfix stack"
-msgstr "E381: quickfix スタックの先頭です"
+msgstr "%s エラー一覧 %d of %d; %d 個エラー "
msgid "No entries"
msgstr "エントリがありません"
@@ -4521,208 +2565,23 @@
msgid "Error file"
msgstr "エラーファイル"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: ファイル名が無いか無効なパターンです"
-
#, c-format
msgid "Cannot open file \"%s\""
msgstr "ファイル \"%s\" を開けません"
-msgid "E681: Buffer is not loaded"
-msgstr "E681: バッファは読み込まれませんでした"
-
-msgid "E777: String or List expected"
-msgstr "E777: 文字列かリストが必要です"
-
-#, c-format
-msgid "E927: Invalid action: '%s'"
-msgstr "E927: 無効な操作です: '%s'"
-
-#, c-format
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: 無効な項目です: %s%%[]"
-
-#, c-format
-msgid "E769: Missing ] after %s["
-msgstr "E769: %s[ の後に ] がありません"
-
-msgid "E944: Reverse range in character class"
-msgstr "E944: 文字クラスの範囲が逆です"
-
-msgid "E945: Range too large in character class"
-msgstr "E945: 文字クラスの範囲が大きすぎます"
-
-#, c-format
-msgid "E53: Unmatched %s%%("
-msgstr "E53: %s%%( が釣り合っていません"
-
-#, c-format
-msgid "E54: Unmatched %s("
-msgstr "E54: %s( が釣り合っていません"
-
-#, c-format
-msgid "E55: Unmatched %s)"
-msgstr "E55: %s) が釣り合っていません"
-
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( はココでは許可されていません"
-
-msgid "E67: \\z1 - \\z9 not allowed here"
-msgstr "E67: \\z1 - \\z9 はココでは許可されていません"
-
-#, c-format
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: %s%%[ の後に ] がありません"
-
-#, c-format
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] が空です"
-
-msgid "E956: Cannot use pattern recursively"
-msgstr "E956: パターンを再帰的に使うことはできません"
-
-#, c-format
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: %s{...} 内に文法エラーがあります"
-
-#, c-format
-msgid "E888: (NFA regexp) cannot repeat %s"
-msgstr "E888: (NFA 正規表現) 繰り返せません %s"
-
-msgid ""
-"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
-"used "
-msgstr ""
-"E864: \\%#= には 0, 1 もしくは 2 のみが続けられます。正規表現エンジンは自動選"
-"択されます。"
+msgid "cannot have both a list and a \"what\" argument"
+msgstr "リストと \"what\" 引数の両方を指定することはできません"
msgid "Switching to backtracking RE engine for pattern: "
msgstr "次のパターンにバックトラッキング RE エンジンを適用します: "
-msgid "E65: Illegal back reference"
-msgstr "E65: 不正な後方参照です"
-
-msgid "E63: invalid use of \\_"
-msgstr "E63: \\_ の無効な使用方法です"
-
-#, c-format
-msgid "E64: %s%c follows nothing"
-msgstr "E64:%s%c の後になにもありません"
-
-msgid "E68: Invalid character after \\z"
-msgstr "E68: \\z の後に不正な文字がありました"
-
-#, c-format
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: %s%%[dxouU] の後に不正な文字がありました"
-
-#, c-format
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: %s%% の後に不正な文字がありました"
-
-#, c-format
-msgid "E59: invalid character after %s@"
-msgstr "E59: %s@ の後に不正な文字がありました"
-
-#, c-format
-msgid "E60: Too many complex %s{...}s"
-msgstr "E60: 複雑な %s{...} が多過ぎます"
-
-#, c-format
-msgid "E61: Nested %s*"
-msgstr "E61:%s* が入れ子になっています"
-
-#, c-format
-msgid "E62: Nested %s%c"
-msgstr "E62:%s%c が入れ子になっています"
-
-msgid "E50: Too many \\z("
-msgstr "E50: \\z( が多過ぎます"
-
-#, c-format
-msgid "E51: Too many %s("
-msgstr "E51: %s( が多過ぎます"
-
-msgid "E52: Unmatched \\z("
-msgstr "E52: \\z( が釣り合っていません"
-
-msgid "E339: Pattern too long"
-msgstr "E339: パターンが長過ぎます"
-
msgid "External submatches:\n"
msgstr "外部の部分該当:\n"
-msgid "E865: (NFA) Regexp end encountered prematurely"
-msgstr "E865: (NFA) 期待より早く正規表現の終端に到達しました"
-
-#, c-format
-msgid "E866: (NFA regexp) Misplaced %c"
-msgstr "E866: (NFA 正規表現) 位置が誤っています: %c"
-
-#, c-format
-msgid "E877: (NFA regexp) Invalid character class: %d"
-msgstr "E877: (NFA 正規表現) 無効な文字クラスです: %d"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\z%c'"
-msgstr "E867: (NFA) 未知のオペレータです: '\\z%c'"
-
-msgid "E951: \\% value too large"
-msgstr "E951: \\% 値が長過ぎます"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\%%%c'"
-msgstr "E867: (NFA) 未知のオペレータです: '\\%%%c'"
-
-msgid "E868: Error building NFA with equivalence class!"
-msgstr "E868: 等価クラスを含むNFA構築に失敗しました!"
-
-#, c-format
-msgid "E869: (NFA) Unknown operator '\\@%c'"
-msgstr "E869: (NFA) 未知のオペレータです: '\\@%c'"
-
-msgid "E870: (NFA regexp) Error reading repetition limits"
-msgstr "E870: (NFA 正規表現) 繰り返しの制限回数を読込中にエラー"
-
-msgid "E871: (NFA regexp) Can't have a multi follow a multi"
-msgstr "E871: (NFA 正規表現) 繰り返し の後に 繰り返し はできません"
-
-msgid "E872: (NFA regexp) Too many '('"
-msgstr "E872: (NFA 正規表現) '(' が多過ぎます"
-
-msgid "E879: (NFA regexp) Too many \\z("
-msgstr "E879: (NFA 正規表現) \\z( が多過ぎます"
-
-msgid "E873: (NFA regexp) proper termination error"
-msgstr "E873: (NFA 正規表現) 終端記号がありません"
-
msgid "Could not open temporary log file for writing, displaying on stderr... "
msgstr ""
-"NFA正規表現エンジン用のログファイルを書込用として開けません。ログは標準エラー"
-"出力に出力します。"
-
-msgid "E874: (NFA) Could not pop the stack!"
-msgstr "E874: (NFA) スタックをポップできません!"
-
-msgid ""
-"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
-"left on stack"
-msgstr ""
-"E875: (NFA 正規表現) (後置文字列をNFAに変換中に) スタックに残されたステートが"
-"多過ぎます"
-
-msgid "E876: (NFA regexp) Not enough space to store the whole NFA "
-msgstr "E876: (NFA 正規表現) NFA全体を保存するには空きスペースが足りません"
-
-msgid "E878: (NFA) Could not allocate memory for branch traversal!"
-msgstr "E878: (NFA) 現在横断中のブランチに十分なメモリを割り当てられません!"
-
-msgid "E748: No previously used register"
-msgstr "E748: まだレジスタを使用していません"
-
-#, c-format
-msgid "freeing %ld lines"
-msgstr "%ld 行を解放中"
+"NFA正規表現エンジン用のログファイルを書込み用として開けません。ログは標準エ"
+"ラー出力に出力します。"
#, c-format
msgid " into \"%c"
@@ -4738,10 +2597,6 @@
msgid_plural "%ld lines yanked%s"
msgstr[0] "%ld 行が%sヤンクされました"
-#, c-format
-msgid "E353: Nothing in register %s"
-msgstr "E353: レジスタ %s には何もありません"
-
msgid ""
"\n"
"Type Name Content"
@@ -4749,11 +2604,6 @@
"\n"
"型式 名前 内容"
-msgid ""
-"E883: search pattern and expression register may not contain two or more "
-"lines"
-msgstr "E883: 検索パターンと式レジスタには2行以上を含められません"
-
msgid " VREPLACE"
msgstr " 仮想置換"
@@ -4834,15 +2684,15 @@
#, c-format
msgid "sourcing \"%s\""
-msgstr "\"%s\" を取込中"
+msgstr "\"%s\" を取込み中"
#, c-format
msgid "line %ld: sourcing \"%s\""
-msgstr "行 %ld: %s を取込中"
+msgstr "行 %ld: %s を取込み中"
#, c-format
msgid "finished sourcing %s"
-msgstr "%s の取込を完了"
+msgstr "%s の取込みを完了"
#, c-format
msgid "continuing in %s"
@@ -4863,37 +2713,12 @@
msgid "error handler"
msgstr "エラーハンドラ"
+msgid "changed window size"
+msgstr "ウィンドウサイズが変更されました"
+
msgid "W15: Warning: Wrong line separator, ^M may be missing"
msgstr "W15: 警告: 行区切が不正です。^M がないのでしょう"
-msgid "E167: :scriptencoding used outside of a sourced file"
-msgstr "E167: :scriptencoding が取込スクリプト以外で使用されました"
-
-msgid "E984: :scriptversion used outside of a sourced file"
-msgstr "E984: :scriptversion が取込スクリプト以外で使用されました"
-
-#, c-format
-msgid "E999: scriptversion not supported: %d"
-msgstr "E999: scriptversion はサポートされていません: %d"
-
-msgid "E168: :finish used outside of a sourced file"
-msgstr "E168: :finish が取込スクリプト以外で使用されました"
-
-#, c-format
-msgid "E383: Invalid search string: %s"
-msgstr "E383: 無効な検索文字列です: %s"
-
-#, c-format
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: 上まで検索しましたが該当箇所はありません: %s"
-
-#, c-format
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: 下まで検索しましたが該当箇所はありません: %s"
-
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: ';' のあとには '?' か '/' が期待されている"
-
msgid " (includes previously listed match)"
msgstr " (前に列挙した該当箇所を含む)"
@@ -4920,21 +2745,12 @@
msgid "Searching included file %s"
msgstr "インクルードされたファイルを検索中 %s"
-msgid "E387: Match is on current line"
-msgstr "E387: 現在行に該当があります"
-
msgid "All included files were found"
msgstr "全てのインクルードされたファイルが見つかりました"
msgid "No included files"
msgstr "インクルードファイルはありません"
-msgid "E388: Couldn't find definition"
-msgstr "E388: 定義を見つけられません"
-
-msgid "E389: Couldn't find pattern"
-msgstr "E389: パターンを見つけられません"
-
msgid "Save View"
msgstr "ビューを保存します"
@@ -4966,48 +2782,12 @@
msgid " line=%ld id=%d%s name=%s priority=%d"
msgstr " 行=%ld 識別子=%d%s 名前=%s 優先度=%d"
-msgid "E612: Too many signs defined"
-msgstr "E612: signの定義が多過ぎます"
-
-#, c-format
-msgid "E239: Invalid sign text: %s"
-msgstr "E239: 無効なsignのテキストです: %s"
-
-#, c-format
-msgid "E155: Unknown sign: %s"
-msgstr "E155: 未知のsignです: %s"
-
-#, c-format
-msgid "E885: Not possible to change sign %s"
-msgstr "E885: 変更できない sign です: %s"
-
-msgid "E159: Missing sign number"
-msgstr "E159: signの番号がありません"
-
-#, c-format
-msgid "E157: Invalid sign ID: %d"
-msgstr "E157: 無効なsign識別子です: %d"
-
-msgid "E934: Cannot jump to a buffer that does not have a name"
-msgstr "E934: 名前の無いバッファへはジャンプできません"
-
-#, c-format
-msgid "E160: Unknown sign command: %s"
-msgstr "E160: 未知のsignコマンドです: %s"
-
-msgid "E156: Missing sign name"
-msgstr "E156: sign名がありません"
-
-# Added at 27-Jan-2004.
msgid " (NOT FOUND)"
msgstr " (見つかりません)"
msgid " (not supported)"
msgstr " (非サポート)"
-msgid "E756: Spell checking is not enabled"
-msgstr "E756: スペルチェックは無効化されています"
-
#, c-format
msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
msgstr ""
@@ -5018,23 +2798,10 @@
msgstr ""
"警告: 単語リスト \"%s.%s.spl\" および \"%s.ascii.spl\" は見つかりません"
-msgid "E797: SpellFileMissing autocommand deleted buffer"
-msgstr "E797: autocommand の SpellFileMissing がバッファを削除しました"
-
#, c-format
msgid "Warning: region %s not supported"
msgstr "警告9: %s という範囲はサポートされていません"
-msgid "E752: No previous spell replacement"
-msgstr "E752: スペル置換がまだ実行されていません"
-
-#, c-format
-msgid "E753: Not found: %s"
-msgstr "E753: 見つかりません: %s"
-
-msgid "E758: Truncated spell file"
-msgstr "E758: スペルファイルが切取られているようです"
-
#, c-format
msgid "Trailing text in %s line %d: %s"
msgstr "%s (%d 行目) に続くテキスト: %s"
@@ -5043,55 +2810,16 @@
msgid "Affix name too long in %s line %d: %s"
msgstr "%s (%d 行目) の affix 名が長過ぎます: %s"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
-msgstr ""
-"E761: affixファイルの FOL, LOW もしくは UPP のフォーマットにエラーがあります"
-
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: FOL, LOW もしくは UPP の文字が範囲外です"
-
msgid "Compressing word tree..."
msgstr "単語ツリーを圧縮しています..."
#, c-format
msgid "Reading spell file \"%s\""
-msgstr "スペルファイル \"%s\" を読込中"
-
-msgid "E757: This does not look like a spell file"
-msgstr "E757: スペルファイルではないようです"
-
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: 古いスペルファイルなので、アップデートしてください"
-
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: より新しいバージョンの Vim 用のスペルファイルです"
-
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: スペルファイルにサポートしていないセクションがあります"
-
-#, c-format
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: .sug ファイルではないようです: %s"
-
-#, c-format
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: 古い .sug ファイルなので、アップデートしてください: %s"
-
-#, c-format
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: より新しいバージョンの Vim 用の .sug ファイルです: %s"
-
-#, c-format
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: .sug ファイルが .spl ファイルと一致しません: %s"
-
-#, c-format
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: .sug ファイルの読込中にエラーが発生しました: %s"
+msgstr "スペルファイル \"%s\" を読込み中"
#, c-format
msgid "Reading affix file %s..."
-msgstr "affix ファイル %s を読込中..."
+msgstr "affix ファイル %s を読込み中..."
#, c-format
msgid "Conversion failure for word in %s line %d: %s"
@@ -5227,10 +2955,6 @@
msgstr "辞書ファイル %s を読込み中..."
#, c-format
-msgid "E760: No word count in %s"
-msgstr "E760: %s には単語数がありません"
-
-#, c-format
msgid "line %6d, word %6ld - %s"
msgstr "行 %6d, 単語 %6ld - %s"
@@ -5255,46 +2979,47 @@
msgstr "単語ファイル %s を読込み中..."
#, c-format
-msgid "Duplicate /encoding= line ignored in %s line %d: %s"
-msgstr "%s の %d 行目の 重複した /encoding= 行を無視しました: %s"
+msgid "Conversion failure for word in %s line %ld: %s"
+msgstr "%s (%ld 行目) の単語を変換できませんでした: %s"
#, c-format
-msgid "/encoding= line after word ignored in %s line %d: %s"
-msgstr "%s の %d 行目の 単語の後の /encoding= 行を無視しました: %s"
+msgid "Duplicate /encoding= line ignored in %s line %ld: %s"
+msgstr "%s の %ld 行目の 重複した /encoding= 行を無視しました: %s"
#, c-format
-msgid "Duplicate /regions= line ignored in %s line %d: %s"
-msgstr "%s の %d 行目の 重複した /regions= 行を無視しました: %s"
+msgid "/encoding= line after word ignored in %s line %ld: %s"
+msgstr "%s の %ld 行目の 単語の後の /encoding= 行を無視しました: %s"
#, c-format
-msgid "Too many regions in %s line %d: %s"
-msgstr "%s の %d 行目、範囲指定が多過ぎます: %s"
+msgid "Duplicate /regions= line ignored in %s line %ld: %s"
+msgstr "%s の %ld 行目の 重複した /regions= 行を無視しました: %s"
#, c-format
-msgid "/ line ignored in %s line %d: %s"
-msgstr "%s の %d 行目の 重複した / 行を無視しました: %s"
+msgid "Too many regions in %s line %ld: %s"
+msgstr "%s の %ld 行目、範囲指定が多過ぎます: %s"
#, c-format
-msgid "Invalid region nr in %s line %d: %s"
-msgstr "%s の %d 行目 無効な nr 領域です: %s"
+msgid "/ line ignored in %s line %ld: %s"
+msgstr "%s の %ld 行目の 重複した / 行を無視しました: %s"
#, c-format
-msgid "Unrecognized flags in %s line %d: %s"
-msgstr "%s の %d 行目 認識不能なフラグです: %s"
+msgid "Invalid region nr in %s line %ld: %s"
+msgstr "%s の %ld 行目 無効な nr 領域です: %s"
+
+#, c-format
+msgid "Unrecognized flags in %s line %ld: %s"
+msgstr "%s の %ld 行目 認識不能なフラグです: %s"
#, c-format
msgid "Ignored %d words with non-ASCII characters"
msgstr "非ASCII文字を含む %d 個の単語を無視しました"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: メモリが足りないので、単語リストは不完全です"
-
#, c-format
-msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
-msgstr "ノード %d 個(全 %d 個中) を圧縮しました; 残り %d (%d%%)"
+msgid "Compressed %s: %ld of %ld nodes; %ld (%ld%%) remaining"
+msgstr "%s を圧縮: ノード %ld 個(全 %ld 個中); 残り %ld (%ld%%)"
msgid "Reading back spell file..."
-msgstr "スペルファイルを逆読込中"
+msgstr "スペルファイルを逆読込み中"
msgid "Performing soundfolding..."
msgstr "音声畳込みを実行中..."
@@ -5315,17 +3040,6 @@
msgid "Estimated runtime memory use: %d bytes"
msgstr "推定メモリ使用量: %d バイト"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: 出力ファイル名には範囲名を含められません"
-
-#, c-format
-msgid "E754: Only up to %d regions supported"
-msgstr "E754: 範囲は %d 個までしかサポートされていません"
-
-#, c-format
-msgid "E755: Invalid region in %s"
-msgstr "E755: 無効な範囲です: %s"
-
msgid "Warning: both compounding and NOBREAK specified"
msgstr "警告: 複合フラグと NOBREAK が両方とも指定されました"
@@ -5337,23 +3051,16 @@
msgstr "実行しました!"
#, c-format
-msgid "E765: 'spellfile' does not have %d entries"
-msgstr "E765: 'spellfile' には %d 個のエントリはありません"
-
-#, c-format
msgid "Word '%.*s' removed from %s"
msgstr "単語 '%.*s' が %s から削除されました"
+msgid "Seek error in spellfile"
+msgstr "スワップファイルでシークエラーです"
+
#, c-format
msgid "Word '%.*s' added to %s"
msgstr "単語 '%.*s' が %s へ追加されました"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: 単語の文字がスペルファイルと異なります"
-
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: MAP エントリに重複文字が存在します"
-
msgid "Sorry, no suggestions"
msgstr "残念ですが、修正候補はありません"
@@ -5381,16 +3088,18 @@
msgid "syntax conceal off"
msgstr "構文の conceal は現在 off です"
-#, c-format
-msgid "E390: Illegal argument: %s"
-msgstr "E390: 不正な引数です: %s"
-
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 です"
@@ -5406,16 +3115,15 @@
msgid "syntax iskeyword not set"
msgstr "構文用 iskeyword はセットされていません"
-#, c-format
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: そのような構文クラスタはありません: %s"
-
msgid "syncing on C-style comments"
msgstr "C言語風コメントから同期中"
msgid "no syncing"
msgstr "非同期"
+msgid "syncing starts at the first line"
+msgstr "最初の行で同期開始"
+
msgid "syncing starts "
msgstr "同期開始 "
@@ -5443,15 +3151,14 @@
"\n"
"--- 構文要素 ---"
-#, c-format
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: そのような構文クラスタはありません: %s"
+msgid "from the first line"
+msgstr "(最初の行から)"
msgid "minimal "
-msgstr "minimal "
+msgstr "最小 "
msgid "maximal "
-msgstr "maximal "
+msgstr "最大 "
msgid "; match "
msgstr "; 該当 "
@@ -5459,116 +3166,11 @@
msgid " line breaks"
msgstr " 個の改行"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: この場所では引数containsは許可されていません"
-
-msgid "E844: invalid cchar value"
-msgstr "E844: 無効なccharの値です"
-
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: ここではグループは許可されません"
-
-#, c-format
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: %s の範囲要素が見つかりません"
-
-msgid "E397: Filename required"
-msgstr "E397: ファイル名が必要です"
-
-msgid "E847: Too many syntax includes"
-msgstr "E847: 構文の取り込み(include)が多過ぎます"
-
-#, c-format
-msgid "E789: Missing ']': %s"
-msgstr "E789: ']' がありません: %s"
-
-#, c-format
-msgid "E890: trailing char after ']': %s]%s"
-msgstr "E890: ']' の後ろに余分な文字があります: %s]%s"
-
-#, c-format
-msgid "E398: Missing '=': %s"
-msgstr "E398: '=' がありません: %s"
-
-#, c-format
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: 引数が足りません: 構文範囲 %s"
-
-msgid "E848: Too many syntax clusters"
-msgstr "E848: 構文クラスタが多過ぎます"
-
-msgid "E400: No cluster specified"
-msgstr "E400: クラスタが指定されていません"
-
-#, c-format
-msgid "E401: Pattern delimiter not found: %s"
-msgstr "E401: パターン区切りが見つかりません: %s"
-
-#, c-format
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: パターンのあとにゴミがあります: %s"
-
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr "E403: 構文同期: 連続行パターンが2度指定されました"
-
-#, c-format
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: 不正な引数です: %s"
-
-#, c-format
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: 等号がありません: %s"
-
-#, c-format
-msgid "E406: Empty argument: %s"
-msgstr "E406: 空の引数: %s"
-
-#, c-format
-msgid "E407: %s not allowed here"
-msgstr "E407: %s はココでは許可されていません"
-
-#, c-format
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s は内容リストの先頭でなければならない"
-
-#, c-format
-msgid "E409: Unknown group name: %s"
-msgstr "E409: 未知のグループ名: %s"
-
-#, c-format
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: 無効な :syntax のサブコマンドです: %s"
-
msgid ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
msgstr ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
-msgid "E555: at bottom of tag stack"
-msgstr "E555: タグスタックの末尾です"
-
-msgid "E556: at top of tag stack"
-msgstr "E556: タグスタックの先頭です"
-
-msgid "E986: cannot modify the tag stack within tagfunc"
-msgstr "E986: tagfunc内のタグスタックを変更できません"
-
-msgid "E987: invalid return value from tagfunc"
-msgstr "E987: tagfuncからの戻り値が無効です"
-
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: 最初の該当タグを越えて戻ることはできません"
-
-#, c-format
-msgid "E426: tag not found: %s"
-msgstr "E426: タグが見つかりません: %s"
-
-msgid "E427: There is only one matching tag"
-msgstr "E427: 該当タグが1つだけしかありません"
-
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: 最後の該当タグを越えて進むことはできません"
-
#, c-format
msgid "File \"%s\" does not exist"
msgstr "ファイル \"%s\" がありません"
@@ -5583,10 +3185,6 @@
msgid " Using tag with different case!"
msgstr " タグを異なるcaseで使用します!"
-#, c-format
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: ファイル \"%s\" がありません"
-
msgid " # pri kind tag"
msgstr " # pri kind tag"
@@ -5605,59 +3203,22 @@
msgstr "タグファイル %s を検索中"
#, c-format
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: タグファイルのパスが %s に切り捨てられました\n"
-
-msgid "Ignoring long line in tags file"
-msgstr "タグファイル内の長い行を無視します"
-
-#, c-format
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: タグファイル \"%s\" のフォーマットにエラーがあります"
-
-#, c-format
msgid "Before byte %ld"
msgstr "直前の %ld バイト"
-#, c-format
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: タグファイルがソートされていません: %s"
-
-msgid "E433: No tags file"
-msgstr "E433: タグファイルがありません"
-
-msgid "E434: Can't find tag pattern"
-msgstr "E434: タグパターンを見つけられません"
-
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: タグを見つけられないので単に推測します!"
+msgid "Ignoring long line in tags file"
+msgstr "タグファイル内の長い行を無視します"
#, c-format
msgid "Duplicate field name: %s"
msgstr "重複したフィールド名: %s"
msgid "' not known. Available builtin terminals are:"
-msgstr "' は未知です。現行の組み込み端末は次のとおりです:"
+msgstr "' は未知です。現行の組込み端末は次のとおりです:"
msgid "defaulting to '"
msgstr "省略値を次のように設定します '"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: termcapファイルを開けません"
-
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: terminfoに端末エントリを見つけられません"
-
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: termcapに端末エントリを見つけられません"
-
-#, c-format
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: termcapに \"%s\" のエントリがありません"
-
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: 端末に \"cm\" 機能が必要です"
-
msgid ""
"\n"
"--- Terminal keys ---"
@@ -5666,13 +3227,6 @@
"--- 端末キー ---"
#, c-format
-msgid "E181: Invalid attribute: %s"
-msgstr "E181: 無効な属性です: %s"
-
-msgid "E279: Sorry, ++shell is not supported on this system"
-msgstr "E279: ごめんなさい、++shell はこのシステムではサポートされていません"
-
-#, c-format
msgid "Kill job in \"%s\"?"
msgstr "\"%s\" 内のジョブを終了しますか?"
@@ -5691,50 +3245,17 @@
msgid "finished"
msgstr "終了"
-msgid "E958: Job already finished"
-msgstr "E958: ジョブはすでに終了しています"
+msgid "(Invalid)"
+msgstr "(無効)"
+
+# no-c-format
+msgid "%a %b %d %H:%M:%S %Y"
+msgstr "%Y/%m/%d (%a) %H:%M:%S"
#, c-format
-msgid "E953: File exists: %s"
-msgstr "E953: ファイルは既に存在します: %s"
-
-msgid "E955: Not a terminal buffer"
-msgstr "E955: 端末バッファではありません"
-
-msgid "E982: ConPTY is not available"
-msgstr "E982: ConPTY が無効です"
-
-#, c-format
-msgid "E971: Property type %s does not exist"
-msgstr "E971: プロパティタイプ %s がありません"
-
-#, c-format
-msgid "E964: Invalid column number: %ld"
-msgstr "E964: 無効な列番号です: %ld"
-
-#, c-format
-msgid "E966: Invalid line number: %ld"
-msgstr "E966: 無効な行番号です: %ld"
-
-msgid "E965: missing property type name"
-msgstr "E965: プロパティタイプ名がありません"
-
-msgid "E275: Cannot add text property to unloaded buffer"
-msgstr "E275: 解放されたバッファにはテキストプロパティを追加できません"
-
-msgid "E967: text property info corrupted"
-msgstr "E967: テキストプロパティ情報が壊れています"
-
-msgid "E968: Need at least one of 'id' or 'type'"
-msgstr "E968: 最低 1 個の 'id' または 'type' が必要です"
-
-#, c-format
-msgid "E969: Property type %s already defined"
-msgstr "E969: プロパティタイプ %s は既に定義されています"
-
-#, c-format
-msgid "E970: Unknown highlight group name: '%s'"
-msgstr "E970: 未知のハイライトグループ名: '%s'"
+msgid "%ld second ago"
+msgid_plural "%ld seconds ago"
+msgstr[0] "%ld 秒経過しています"
msgid "new shell started\n"
msgstr "新しいシェルを起動します\n"
@@ -5742,83 +3263,41 @@
msgid "Vim: Error reading input, exiting...\n"
msgstr "Vim: 入力を読込み中のエラーにより終了します...\n"
-msgid "Used CUT_BUFFER0 instead of empty selection"
-msgstr "空の選択領域のかわりにCUT_BUFFER0が使用されました"
-
-msgid "E881: Line count changed unexpectedly"
-msgstr "E881: 予期せず行カウントが変わりました"
-
msgid "No undo possible; continue anyway"
msgstr "可能なアンドゥはありません: とりあえず続けます"
-#, c-format
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: 書込み用にアンドゥファイルを開けません: %s"
-
-#, c-format
-msgid "E825: Corrupted undo file (%s): %s"
-msgstr "E825: アンドゥファイルが壊れています (%s): %s"
-
msgid "Cannot write undo file in any directory in 'undodir'"
-msgstr "'undodir'のディレクトリにアンドゥファイルを書き込めません"
+msgstr "'undodir'のディレクトリにアンドゥファイルを書込めません"
#, c-format
msgid "Will not overwrite with undo file, cannot read: %s"
-msgstr "アンドゥファイルとして読み込めないので上書きしません: %s"
+msgstr "アンドゥファイルとして読込めないので上書きしません: %s"
#, c-format
msgid "Will not overwrite, this is not an undo file: %s"
msgstr "アンドゥファイルではないので上書きしません: %s"
msgid "Skipping undo file write, nothing to undo"
-msgstr "対象がないのでアンドゥファイルの書き込みをスキップします"
+msgstr "対象がないのでアンドゥファイルの書込みをスキップします"
#, c-format
msgid "Writing undo file: %s"
-msgstr "アンドゥファイル書き込み中: %s"
-
-#, c-format
-msgid "E829: write error in undo file: %s"
-msgstr "E829: アンドゥファイルの書き込みエラーです: %s"
+msgstr "アンドゥファイル書込み中: %s"
#, c-format
msgid "Not reading undo file, owner differs: %s"
-msgstr "オーナーが異なるのでアンドゥファイルを読み込みません: %s"
+msgstr "オーナーが異なるのでアンドゥファイルを読込みません: %s"
#, c-format
msgid "Reading undo file: %s"
-msgstr "アンドゥファイル読込中: %s"
-
-#, c-format
-msgid "E822: Cannot open undo file for reading: %s"
-msgstr "E822: アンドゥファイルを読込用として開けません: %s"
-
-#, c-format
-msgid "E823: Not an undo file: %s"
-msgstr "E823: アンドゥファイルではありません: %s"
-
-#, c-format
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: 非暗号化ファイルが暗号化されたアンドゥファイルを使ってます: %s"
-
-#, c-format
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: 暗号化されたアンドゥファイルの解読に失敗しました: %s"
-
-#, c-format
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: アンドゥファイルが暗号化されています: %s"
-
-#, c-format
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: 互換性の無いアンドゥファイルです: %s"
+msgstr "アンドゥファイル読込み中: %s"
msgid "File contents changed, cannot use undo info"
msgstr "ファイルの内容が変わっているため、アンドゥ情報を利用できません"
#, c-format
msgid "Finished reading undo file %s"
-msgstr "アンドゥファイル %s の取込を完了"
+msgstr "アンドゥファイル %s の取込みを完了"
msgid "Already at oldest change"
msgstr "既に一番古い変更です"
@@ -5826,13 +3305,6 @@
msgid "Already at newest change"
msgstr "既に一番新しい変更です"
-#, c-format
-msgid "E830: Undo number %ld not found"
-msgstr "E830: アンドゥ番号 %ld は見つかりません"
-
-msgid "E438: u_undo: line numbers wrong"
-msgstr "E438: u_undo: 行番号が間違っています"
-
msgid "more line"
msgstr "行 追加しました"
@@ -5867,15 +3339,6 @@
msgid "number changes when saved"
msgstr "通番 変更数 変更時期 保存済"
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undo の直後に undojoin はできません"
-
-msgid "E439: undo list corrupt"
-msgstr "E439: アンドゥリストが壊れています"
-
-msgid "E440: undo line missing"
-msgstr "E440: アンドゥ行がありません"
-
msgid ""
"\n"
" Name Args Address Complete Definition"
@@ -5887,89 +3350,8 @@
msgstr "ユーザー定義コマンドが見つかりませんでした"
#, c-format
-msgid "E180: Invalid address type value: %s"
-msgstr "E180: 無効なアドレスタイプ値です: %s"
-
-#, c-format
-msgid "E180: Invalid complete value: %s"
-msgstr "E180: 無効な補完指定です: %s"
-
-msgid "E468: Completion argument only allowed for custom completion"
-msgstr "E468: 補完引数はカスタム補完でしか使用できません"
-
-msgid "E467: Custom completion requires a function argument"
-msgstr "E467: カスタム補完には引数として関数が必要です"
-
-msgid "E175: No attribute specified"
-msgstr "E175: 属性は定義されていません"
-
-msgid "E176: Invalid number of arguments"
-msgstr "E176: 引数の数が無効です"
-
-msgid "E177: Count cannot be specified twice"
-msgstr "E177: カウントを2重指定することはできません"
-
-msgid "E178: Invalid default value for count"
-msgstr "E178: カウントの省略値が無効です"
-
-msgid "E179: argument required for -complete"
-msgstr "E179: -complete には引数が必要です"
-
-msgid "E179: argument required for -addr"
-msgstr "E179: -addr には引数が必要です"
-
-#, c-format
-msgid "E174: Command already exists: add ! to replace it: %s"
-msgstr "E174: コマンドが既にあります: 再定義するには ! を追加してください: %s"
-
-msgid "E182: Invalid command name"
-msgstr "E182: 無効なコマンド名です"
-
-msgid "E183: User defined commands must start with an uppercase letter"
-msgstr "E183: ユーザー定義コマンドは英大文字で始まらなければなりません"
-
-msgid "E841: Reserved name, cannot be used for user defined command"
-msgstr "E841: 予約名なので、ユーザー定義コマンドに利用できません"
-
-#, c-format
-msgid "E184: No such user-defined command: %s"
-msgstr "E184: そのユーザー定義コマンドはありません: %s"
-
-#, c-format
-msgid "E122: Function %s already exists, add ! to replace it"
-msgstr "E122: 関数 %s は定義済です、再定義するには ! を追加してください"
-
-msgid "E717: Dictionary entry already exists"
-msgstr "E717: 辞書型内にエントリが既に存在します"
-
-msgid "E718: Funcref required"
-msgstr "E718: 関数参照型が要求されます"
-
-#, c-format
-msgid "E130: Unknown function: %s"
-msgstr "E130: 未知の関数です: %s"
-
-#, c-format
-msgid "E125: Illegal argument: %s"
-msgstr "E125: 不正な引数です: %s"
-
-#, c-format
-msgid "E853: Duplicate argument name: %s"
-msgstr "E853: 引数名が重複しています: %s"
-
-msgid "E989: Non-default argument follows default argument"
-msgstr "E989: 非デフォルト引数がデフォルト引数の後にあります"
-
-#, c-format
-msgid "E740: Too many arguments for function %s"
-msgstr "E740: 関数の引数が多過ぎます: %s"
-
-#, c-format
-msgid "E116: Invalid arguments for function %s"
-msgstr "E116: 関数の無効な引数です: %s"
-
-msgid "E132: Function call depth is higher than 'maxfuncdepth'"
-msgstr "E132: 関数呼出の入れ子数が 'maxfuncdepth' を超えました"
+msgid "W22: Text found after :endfunction: %s"
+msgstr "W22: :endfunction の後に文字があります: %s"
#, c-format
msgid "calling %s"
@@ -5987,85 +3369,6 @@
msgid "%s returning %s"
msgstr "%s が %s を返しました"
-msgid "E699: Too many arguments"
-msgstr "E699: 引数が多過ぎます"
-
-#, c-format
-msgid "E117: Unknown function: %s"
-msgstr "E117: 未知の関数です: %s"
-
-#, c-format
-msgid "E276: Cannot use function as a method: %s"
-msgstr "E276: 関数をメソッドとして使用できません: %s"
-
-#, c-format
-msgid "E933: Function was deleted: %s"
-msgstr "E933: 関数は削除されました: %s"
-
-#, c-format
-msgid "E119: Not enough arguments for function: %s"
-msgstr "E119: 関数の引数が足りません: %s"
-
-#, c-format
-msgid "E120: Using <SID> not in a script context: %s"
-msgstr "E120: スクリプト以外で<SID>が使われました: %s"
-
-#, c-format
-msgid "E725: Calling dict function without Dictionary: %s"
-msgstr "E725: 辞書用関数が呼ばれましたが辞書がありません: %s"
-
-msgid "E129: Function name required"
-msgstr "E129: 関数名が要求されます"
-
-#, c-format
-msgid "E128: Function name must start with a capital or \"s:\": %s"
-msgstr "E128: 関数名は大文字か \"s:\" で始まらなければなりません: %s"
-
-#, c-format
-msgid "E884: Function name cannot contain a colon: %s"
-msgstr "E884: 関数名にはコロンは含められません: %s"
-
-#, c-format
-msgid "E123: Undefined function: %s"
-msgstr "E123: 未定義の関数です: %s"
-
-#, c-format
-msgid "E124: Missing '(': %s"
-msgstr "E124: '(' がありません: %s"
-
-msgid "E862: Cannot use g: here"
-msgstr "E862: ここでは g: は使えません"
-
-#, c-format
-msgid "E932: Closure function should not be at top level: %s"
-msgstr "E932: クロージャー関数はトップレベルに記述できません: %s"
-
-msgid "E126: Missing :endfunction"
-msgstr "E126: :endfunction がありません"
-
-#, c-format
-msgid "W22: Text found after :endfunction: %s"
-msgstr "W22: :endfunction の後に文字があります: %s"
-
-#, c-format
-msgid "E707: Function name conflicts with variable: %s"
-msgstr "E707: 関数名が変数名と衝突します: %s"
-
-#, c-format
-msgid "E127: Cannot redefine function %s: It is in use"
-msgstr "E127: 関数 %s を再定義できません: 使用中です"
-
-#, c-format
-msgid "E746: Function name does not match script file name: %s"
-msgstr "E746: 関数名がスクリプトのファイル名と一致しません: %s"
-
-#, c-format
-msgid "E131: Cannot delete function %s: It is in use"
-msgstr "E131: 関数 %s を削除できません: 使用中です"
-
-msgid "E133: :return not inside a function"
-msgstr "E133: 関数外に :return がありました"
-
#, c-format
msgid "%s (%s, compiled %s)"
msgstr "%s (%s, compiled %s)"
@@ -6219,18 +3522,15 @@
msgid "with X11-Athena GUI."
msgstr "with X11-Athena GUI."
+msgid "with Haiku GUI."
+msgstr "with Haiku GUI."
+
msgid "with Photon GUI."
msgstr "with Photon GUI."
msgid "with GUI."
msgstr "with GUI."
-msgid "with Carbon GUI."
-msgstr "with Carbon GUI."
-
-msgid "with Cocoa GUI."
-msgstr "with Cocoa GUI."
-
msgid " Features included (+) or not (-):\n"
msgstr " 機能の一覧 有効(+)/無効(-)\n"
@@ -6357,6 +3657,21 @@
msgid "menu Help->Sponsor/Register for information "
msgstr "詳細はメニューの ヘルプ->スポンサー/登録 を参照して下さい"
+msgid "global"
+msgstr "グローバル"
+
+msgid "buffer"
+msgstr "バッファ"
+
+msgid "window"
+msgstr "ウィンドウ"
+
+msgid "tab"
+msgstr "タブ"
+
+msgid "[end of lines]"
+msgstr "[最終行]"
+
msgid ""
"\n"
"# Buffer list:\n"
@@ -6398,9 +3713,6 @@
msgid "%sviminfo: %s in line: "
msgstr "%sviminfo: %s 行目: "
-msgid "E136: viminfo: Too many errors, skipping rest of file"
-msgstr "E136: viminfo: エラーが多過ぎるので、以降はスキップします"
-
msgid ""
"\n"
"# global variables:\n"
@@ -6430,9 +3742,6 @@
msgid "Substitute "
msgstr "Substitute "
-msgid "Illegal register name"
-msgstr "不正なレジスタ名"
-
msgid ""
"\n"
"# Registers:\n"
@@ -6440,10 +3749,6 @@
"\n"
"# レジスタ:\n"
-#, c-format
-msgid "E574: Unknown register type %d"
-msgstr "E574: 未知のレジスタ型 %d です"
-
msgid ""
"\n"
"# History of marks within files (newest to oldest):\n"
@@ -6465,12 +3770,6 @@
"\n"
"# ジャンプリスト (新しいものが先):\n"
-msgid "Missing '>'"
-msgstr "'>' が見つかりません"
-
-msgid "Illegal starting char"
-msgstr "不正な先頭文字です"
-
#, c-format
msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# この viminfo ファイルは Vim %s によって生成されました.\n"
@@ -6486,8 +3785,8 @@
msgstr "# このファイルが書かれた時の 'encoding' の値\n"
#, c-format
-msgid "Reading viminfo file \"%s\"%s%s%s"
-msgstr "viminfoファイル \"%s\"%s%s%s を読込み中"
+msgid "Reading viminfo file \"%s\"%s%s%s%s"
+msgstr "viminfoファイル \"%s\"%s%s%s%s を読込み中"
msgid " info"
msgstr " 情報"
@@ -6502,60 +3801,13 @@
msgstr " 失敗"
#, c-format
-msgid "E137: Viminfo file is not writable: %s"
-msgstr "E137: viminfoファイルが書込みできません: %s"
-
-#, c-format
-msgid "E929: Too many viminfo temp files, like %s!"
-msgstr "E929: 一時viminfoファイルが多過ぎます! 例: %s"
-
-#, c-format
-msgid "E138: Can't write viminfo file %s!"
-msgstr "E138: viminfoファイル %s を保存できません!"
-
-#, c-format
msgid "Writing viminfo file \"%s\""
msgstr "viminfoファイル \"%s\" を書込み中"
-#, c-format
-msgid "E886: Can't rename viminfo file to %s!"
-msgstr "E886: viminfoファイルを %s へ名前変更できません!"
-
-msgid "E195: Cannot open viminfo file for reading"
-msgstr "E195: viminfoファイルを読込用として開けません"
-
msgid "Already only one window"
msgstr "既にウィンドウは1つしかありません"
#, c-format
-msgid "E92: Buffer %ld not found"
-msgstr "E92: バッファ %ld が見つかりません"
-
-msgid "E441: There is no preview window"
-msgstr "E441: プレビューウィンドウがありません"
-
-msgid "E242: Can't split a window while closing another"
-msgstr "E242: 別のウィンドウを閉じている間に分割することはできません"
-
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: 左上と右下を同時に分割することはできません"
-
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: 他のウィンドウが分割されている時には順回できません"
-
-msgid "E444: Cannot close last window"
-msgstr "E444: 最後のウィンドウを閉じることはできません"
-
-msgid "E813: Cannot close autocmd or popup window"
-msgstr "E813: autocmdウィンドウまたはポップアップウィンドウは閉じられません"
-
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr "E814: autocmdウィンドウしか残らないため、ウィンドウは閉じられません"
-
-msgid "E445: Other window contains changes"
-msgstr "E445: 他のウィンドウには変更があります"
-
-#, c-format
msgid "E370: Could not load library %s"
msgstr "E370: ライブラリ %s をロードできませんでした"
@@ -6569,11 +3821,11 @@
"E299: サンドボックスでは Safe モジュールを使用しないPerlスクリプトは禁じられ"
"ています"
-msgid "Edit with &multiple Vims"
-msgstr "複数のVimで編集する (&M)"
+msgid "Edit with Vim using &tabpages"
+msgstr "Vimでタブページを使って編集する (&T)"
msgid "Edit with single &Vim"
-msgstr "1つのVimで編集する (&V)"
+msgstr "単一のVimで編集する (&V)"
msgid "Diff with Vim"
msgstr "Vimで差分を表示する"
@@ -6596,117 +3848,38 @@
msgid "gvimext.dll error"
msgstr "gvimext.dll エラー"
-msgid "Path length too long!"
-msgstr "パスが長過ぎます!"
-
-msgid "--No lines in buffer--"
-msgstr "--バッファに行がありません--"
-
-msgid "E470: Command aborted"
-msgstr "E470: コマンドが中断されました"
-
-msgid "E471: Argument required"
-msgstr "E471: 引数が必要です"
+msgid "Interrupted"
+msgstr "割込まれました"
msgid "E10: \\ should be followed by /, ? or &"
msgstr "E10: \\ の後は / か ? か & でなければなりません"
msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
-msgstr "E11: コマンドラインでは無効です; <CR>で実行, CTRL-Cでやめる"
+msgstr "E11: コマンドラインウィンドウでは無効です; <CR>で実行, CTRL-Cでやめる"
msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
msgstr ""
"E12: 現在のディレクトリやタグ検索ではexrc/vimrcのコマンドは許可されません"
-msgid "E171: Missing :endif"
-msgstr "E171: :endif がありません"
-
-msgid "E600: Missing :endtry"
-msgstr "E600: :endtry がありません"
-
-msgid "E170: Missing :endwhile"
-msgstr "E170: :endwhile がありません"
-
-msgid "E170: Missing :endfor"
-msgstr "E170: :endfor がありません"
-
-msgid "E588: :endwhile without :while"
-msgstr "E588: :while のない :endwhile があります"
-
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor のない :for があります"
-
msgid "E13: File exists (add ! to override)"
msgstr "E13: ファイルが存在します (! を追加で上書)"
-msgid "E472: Command failed"
-msgstr "E472: コマンドが失敗しました"
-
#, c-format
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: 未知のフォントセット: %s"
-
-#, c-format
-msgid "E235: Unknown font: %s"
-msgstr "E235: 未知のフォント: %s"
-
-#, c-format
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: フォント \"%s\" は固定幅ではありません"
-
-msgid "E473: Internal error"
-msgstr "E473: 内部エラーです"
-
-#, c-format
-msgid "E685: Internal error: %s"
-msgstr "E685: 内部エラーです: %s"
-
-msgid "Interrupted"
-msgstr "割込まれました"
-
-msgid "E474: Invalid argument"
-msgstr "E474: 無効な引数です"
-
-#, c-format
-msgid "E475: Invalid argument: %s"
-msgstr "E475: 無効な引数です: %s"
-
-#, c-format
-msgid "E983: Duplicate argument: %s"
-msgstr "E983: 引数が重複しています: %s"
-
-#, c-format
-msgid "E475: Invalid value for argument %s"
-msgstr "E475: 引数 %s に対して無効な値です"
-
-#, c-format
-msgid "E475: Invalid value for argument %s: %s"
-msgstr "E475: 引数 %s に対して無効な値です: %s"
-
-#, c-format
-msgid "E15: Invalid expression: %s"
-msgstr "E15: 無効な式です: %s"
+msgid "E15: Invalid expression: \"%s\""
+msgstr "E15: 無効な式です: \"%s\""
msgid "E16: Invalid range"
msgstr "E16: 無効な範囲です"
-msgid "E476: Invalid command"
-msgstr "E476: 無効なコマンドです"
-
#, c-format
msgid "E17: \"%s\" is a directory"
msgstr "E17: \"%s\" はディレクトリです"
-#, c-format
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: \"%s\"() のライブラリ呼出に失敗しました"
+msgid "E18: Unexpected characters in :let"
+msgstr "E18: 予期せぬ文字が :let にありました"
-msgid "E667: Fsync failed"
-msgstr "E667: fsync に失敗しました"
-
-#, c-format
-msgid "E448: Could not load library function %s"
-msgstr "E448: ライブラリの関数 %s をロードできませんでした"
+msgid "E18: Unexpected characters in assignment"
+msgstr "E18: 予期せぬ文字が代入にありました"
msgid "E19: Mark has invalid line number"
msgstr "E19: マークに無効な行番号が指定されていました"
@@ -6726,9 +3899,6 @@
msgid "E24: No such abbreviation"
msgstr "E24: そのような短縮入力はありません"
-msgid "E477: No ! allowed"
-msgstr "E477: ! は許可されていません"
-
msgid "E25: GUI cannot be used: Not enabled at compile time"
msgstr "E25: GUIは使用不可能です: コンパイル時に無効にされています"
@@ -6738,9 +3908,6 @@
msgid "E27: Farsi support has been removed\n"
msgstr "E27: ペルシア語サポートは削除されました\n"
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: アラビア語は使用不可能です: コンパイル時に無効にされています\n"
-
#, c-format
msgid "E28: No such highlight group name: %s"
msgstr "E28: そのような名のハイライトグループはありません: %s"
@@ -6754,13 +3921,6 @@
msgid "E31: No such mapping"
msgstr "E31: そのようなマッピングはありません"
-msgid "E479: No match"
-msgstr "E479: 該当はありません"
-
-#, c-format
-msgid "E480: No match: %s"
-msgstr "E480: 該当はありません: %s"
-
msgid "E32: No file name"
msgstr "E32: ファイル名がありません"
@@ -6773,30 +3933,14 @@
msgid "E35: No previous regular expression"
msgstr "E35: 正規表現がまだ実行されていません"
-msgid "E481: No range allowed"
-msgstr "E481: 範囲指定は許可されていません"
-
msgid "E36: Not enough room"
msgstr "E36: ウィンドウに十分な高さもしくは幅がありません"
-#, c-format
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: %s という名前の登録されたサーバーはありません"
+msgid "E37: No write since last change"
+msgstr "E37: 最後の変更が保存されていません"
-#, c-format
-msgid "E482: Can't create file %s"
-msgstr "E482: ファイル %s を作成できません"
-
-msgid "E483: Can't get temp file name"
-msgstr "E483: 一時ファイルの名前を取得できません"
-
-#, c-format
-msgid "E484: Can't open file %s"
-msgstr "E484: ファイル \"%s\" を開けません"
-
-#, c-format
-msgid "E485: Can't read file %s"
-msgstr "E485: ファイル %s を読込めません"
+msgid "E37: No write since last change (add ! to override)"
+msgstr "E37: 最後の変更が保存されていません (! を追加で変更を破棄)"
msgid "E38: Null argument"
msgstr "E38: 引数が空です"
@@ -6808,31 +3952,12 @@
msgid "E40: Can't open errorfile %s"
msgstr "E40: エラーファイル %s を開けません"
-msgid "E233: cannot open display"
-msgstr "E233: ディスプレイを開けません"
-
msgid "E41: Out of memory!"
msgstr "E41: メモリが尽き果てました!"
-msgid "Pattern not found"
-msgstr "パターンは見つかりませんでした"
-
-#, c-format
-msgid "E486: Pattern not found: %s"
-msgstr "E486: パターンは見つかりませんでした: %s"
-
-msgid "E487: Argument must be positive"
-msgstr "E487: 引数は正の値でなければなりません"
-
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: 前のディレクトリに戻れません"
-
msgid "E42: No Errors"
msgstr "E42: エラーはありません"
-msgid "E776: No location list"
-msgstr "E776: ロケーションリストはありません"
-
msgid "E43: Damaged match string"
msgstr "E43: 該当文字列が破損しています"
@@ -6842,91 +3967,90 @@
msgid "E45: 'readonly' option is set (add ! to override)"
msgstr "E45: 'readonly' オプションが設定されています (! を追加で上書き)"
-#, c-format
-msgid "E121: Undefined variable: %s"
-msgstr "E121: 未定義の変数です: %s"
-
-#, c-format
-msgid "E734: Wrong variable type for %s="
-msgstr "E734: 異なった型の変数です %s="
-
-#, c-format
-msgid "E461: Illegal variable name: %s"
-msgstr "E461: 不正な変数名です: %s"
-
-msgid "E995: Cannot modify existing variable"
-msgstr "E995: 既存の変数を変更できません"
+msgid "E46: Cannot change read-only variable"
+msgstr "E46: 読取専用変数には値を設定できません"
#, c-format
msgid "E46: Cannot change read-only variable \"%s\""
msgstr "E46: 読取専用変数 \"%s\" には値を設定できません"
-#, c-format
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr "E794: サンドボックスでは変数 \"%s\" に値を設定できません"
-
-msgid "E928: String required"
-msgstr "E928: 文字列が必要です"
-
-msgid "E713: Cannot use empty key for Dictionary"
-msgstr "E713: 辞書型に空のキーを使うことはできません"
-
-msgid "E715: Dictionary required"
-msgstr "E715: 辞書型が必要です"
-
-#, c-format
-msgid "E684: list index out of range: %ld"
-msgstr "E684: リストのインデックスが範囲外です: %ld"
-
-#, c-format
-msgid "E979: Blob index out of range: %ld"
-msgstr "E979: Blobのインデックスが範囲外です: %ld"
-
-msgid "E978: Invalid operation for Blob"
-msgstr "E978: Blob型には無効な操作です"
-
-#, c-format
-msgid "E118: Too many arguments for function: %s"
-msgstr "E118: 関数の引数が多過ぎます: %s"
-
-#, c-format
-msgid "E716: Key not present in Dictionary: %s"
-msgstr "E716: 辞書型にキーが存在しません: %s"
-
-msgid "E714: List required"
-msgstr "E714: リスト型が必要です"
-
-msgid "E897: List or Blob required"
-msgstr "E897: リスト型またはBlob型が必要です"
-
-#, c-format
-msgid "E712: Argument of %s must be a List or Dictionary"
-msgstr "E712: %s の引数はリスト型または辞書型でなければなりません"
-
-#, c-format
-msgid "E896: Argument of %s must be a List, Dictionary or Blob"
-msgstr "E896: %s の引数はリスト型、辞書型またはBlob型でなければなりません"
-
msgid "E47: Error while reading errorfile"
-msgstr "E47: エラーファイルの読込中にエラーが発生しました"
+msgstr "E47: エラーファイルの読込み中にエラーが発生しました"
msgid "E48: Not allowed in sandbox"
msgstr "E48: サンドボックスでは許されません"
-msgid "E523: Not allowed here"
-msgstr "E523: ここでは許可されません"
-
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: スクリーンモードの設定には対応していません"
-
msgid "E49: Invalid scroll size"
msgstr "E49: 無効なスクロール量です"
-msgid "E91: 'shell' option is empty"
-msgstr "E91: 'shell' オプションが空です"
+msgid "E50: Too many \\z("
+msgstr "E50: \\z( が多過ぎます"
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: sign のデータを読込めませんでした"
+#, c-format
+msgid "E51: Too many %s("
+msgstr "E51: %s( が多過ぎます"
+
+msgid "E52: Unmatched \\z("
+msgstr "E52: \\z( が釣り合っていません"
+
+#, c-format
+msgid "E53: Unmatched %s%%("
+msgstr "E53: %s%%( が釣り合っていません"
+
+#, c-format
+msgid "E54: Unmatched %s("
+msgstr "E54: %s( が釣り合っていません"
+
+#, c-format
+msgid "E55: Unmatched %s)"
+msgstr "E55: %s) が釣り合っていません"
+
+#, c-format
+msgid "E59: invalid character after %s@"
+msgstr "E59: %s@ の後に不正な文字がありました"
+
+#, c-format
+msgid "E60: Too many complex %s{...}s"
+msgstr "E60: 複雑な %s{...} が多過ぎます"
+
+#, c-format
+msgid "E61: Nested %s*"
+msgstr "E61:%s* が入れ子になっています"
+
+#, c-format
+msgid "E62: Nested %s%c"
+msgstr "E62:%s%c が入れ子になっています"
+
+msgid "E63: invalid use of \\_"
+msgstr "E63: \\_ の無効な使用方法です"
+
+#, c-format
+msgid "E64: %s%c follows nothing"
+msgstr "E64:%s%c の後になにもありません"
+
+msgid "E65: Illegal back reference"
+msgstr "E65: 不正な後方参照です"
+
+msgid "E66: \\z( not allowed here"
+msgstr "E66: \\z( はココでは許可されていません"
+
+msgid "E67: \\z1 - \\z9 not allowed here"
+msgstr "E67: \\z1 - \\z9 はココでは許可されていません"
+
+msgid "E68: Invalid character after \\z"
+msgstr "E68: \\z の後に不正な文字がありました"
+
+#, c-format
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: %s%%[ の後に ] がありません"
+
+#, c-format
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] が空です"
+
+#, c-format
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: %s%% の後に不正な文字がありました"
msgid "E72: Close error on swap file"
msgstr "E72: スワップファイルのクローズ時エラーです"
@@ -6946,82 +4070,4061 @@
msgid "E77: Too many file names"
msgstr "E77: ファイル名が多過ぎます"
-msgid "E488: Trailing characters"
-msgstr "E488: 余分な文字が後ろにあります"
-
msgid "E78: Unknown mark"
msgstr "E78: 未知のマーク"
msgid "E79: Cannot expand wildcards"
msgstr "E79: ワイルドカードを展開できません"
+msgid "E80: Error while writing"
+msgstr "E80: 書込み中のエラー"
+
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: スクリプト以外で<SID>が使われました"
+
+msgid "E82: Cannot allocate any buffer, exiting..."
+msgstr "E82: バッファを1つも作成できないので、終了します..."
+
+msgid "E83: Cannot allocate buffer, using other one..."
+msgstr "E83: バッファを作成できないので、他のを使用します..."
+
+msgid "E84: No modified buffer found"
+msgstr "E84: 変更されたバッファはありません"
+
+msgid "E85: There is no listed buffer"
+msgstr "E85: リスト表示されるバッファはありません"
+
+#, c-format
+msgid "E86: Buffer %ld does not exist"
+msgstr "E86: バッファ %ld はありません"
+
+msgid "E87: Cannot go beyond last buffer"
+msgstr "E87: 最後のバッファを越えて移動はできません"
+
+msgid "E88: Cannot go before first buffer"
+msgstr "E88: 最初のバッファより前へは移動できません"
+
+#, c-format
+msgid "E89: No write since last change for buffer %d (add ! to override)"
+msgstr "E89: バッファ %d の変更は保存されていません (! で変更を破棄)"
+
+msgid "E90: Cannot unload last buffer"
+msgstr "E90: 最後のバッファは解放できません"
+
+msgid "E91: 'shell' option is empty"
+msgstr "E91: 'shell' オプションが空です"
+
+#, c-format
+msgid "E92: Buffer %d not found"
+msgstr "E92: バッファ %d が見つかりません"
+
+#, c-format
+msgid "E93: More than one match for %s"
+msgstr "E93: %s に複数の該当がありました"
+
+#, c-format
+msgid "E94: No matching buffer for %s"
+msgstr "E94: %s に該当するバッファはありませんでした"
+
+msgid "E95: Buffer with this name already exists"
+msgstr "E95: この名前のバッファは既にあります"
+
+#, c-format
+msgid "E96: Cannot diff more than %d buffers"
+msgstr "E96: %d 以上のバッファはdiffできません"
+
+msgid "E97: Cannot create diffs"
+msgstr "E97: 差分を作成できません"
+
+msgid "E98: Cannot read diff output"
+msgstr "E98: diffの出力を読込めません"
+
+msgid "E99: Current buffer is not in diff mode"
+msgstr "E99: 現在のバッファは差分モードではありません"
+
+msgid "E100: No other buffer in diff mode"
+msgstr "E100: 差分モードである他のバッファはありません"
+
+msgid "E101: More than two buffers in diff mode, don't know which one to use"
+msgstr ""
+"E101: 差分モードのバッファが2個以上あるので、どれを使うか特定できません"
+
+#, c-format
+msgid "E102: Can't find buffer \"%s\""
+msgstr "E102: バッファ \"%s\" が見つかりません"
+
+#, c-format
+msgid "E103: Buffer \"%s\" is not in diff mode"
+msgstr "E103: バッファ \"%s\" は差分モードではありません"
+
+msgid "E104: Escape not allowed in digraph"
+msgstr "E104: 合字にEscapeは使用できません"
+
+msgid "E105: Using :loadkeymap not in a sourced file"
+msgstr "E105: :source で取込むファイル以外では :loadkeymap を使えません"
+
+#, c-format
+msgid "E107: Missing parentheses: %s"
+msgstr "E107: カッコ '(' がありません: %s"
+
+#, c-format
+msgid "E108: No such variable: \"%s\""
+msgstr "E108: その変数はありません: \"%s\""
+
+msgid "E109: Missing ':' after '?'"
+msgstr "E109: '?' の後に ':' がありません"
+
+msgid "E110: Missing ')'"
+msgstr "E110: ')' が見つかりません"
+
+msgid "E111: Missing ']'"
+msgstr "E111: ']' が見つかりません"
+
+#, c-format
+msgid "E112: Option name missing: %s"
+msgstr "E112: オプション名がありません: %s"
+
+#, c-format
+msgid "E113: Unknown option: %s"
+msgstr "E113: 未知のオプションです: %s"
+
+#, c-format
+msgid "E114: Missing double quote: %s"
+msgstr "E114: ダブルクォートがありません: %s"
+
+#, c-format
+msgid "E115: Missing single quote: %s"
+msgstr "E115: シングルクォートがありません: %s"
+
+#, c-format
+msgid "E116: Invalid arguments for function %s"
+msgstr "E116: 関数の無効な引数です: %s"
+
+#, c-format
+msgid "E117: Unknown function: %s"
+msgstr "E117: 未知の関数です: %s"
+
+#, c-format
+msgid "E118: Too many arguments for function: %s"
+msgstr "E118: 関数の引数が多過ぎます: %s"
+
+#, c-format
+msgid "E119: Not enough arguments for function: %s"
+msgstr "E119: 関数の引数が足りません: %s"
+
+#, c-format
+msgid "E120: Using <SID> not in a script context: %s"
+msgstr "E120: スクリプト以外で<SID>が使われました: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %s"
+msgstr "E121: 未定義の変数です: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %c:%s"
+msgstr "E121: 未定義の変数です: %c:%s"
+
+#, c-format
+msgid "E122: Function %s already exists, add ! to replace it"
+msgstr "E122: 関数 %s は定義済です、再定義するには ! を追加してください"
+
+#, c-format
+msgid "E123: Undefined function: %s"
+msgstr "E123: 未定義の関数です: %s"
+
+#, c-format
+msgid "E124: Missing '(': %s"
+msgstr "E124: '(' がありません: %s"
+
+#, c-format
+msgid "E125: Illegal argument: %s"
+msgstr "E125: 不正な引数です: %s"
+
+msgid "E126: Missing :endfunction"
+msgstr "E126: :endfunction がありません"
+
+#, c-format
+msgid "E127: Cannot redefine function %s: It is in use"
+msgstr "E127: 関数 %s を再定義できません: 使用中です"
+
+#, c-format
+msgid "E128: Function name must start with a capital or \"s:\": %s"
+msgstr "E128: 関数名は大文字か \"s:\" で始まらなければなりません: %s"
+
+msgid "E129: Function name required"
+msgstr "E129: 関数名が要求されます"
+
+#, c-format
+msgid "E131: Cannot delete function %s: It is in use"
+msgstr "E131: 関数 %s を削除できません: 使用中です"
+
+msgid "E132: Function call depth is higher than 'maxfuncdepth'"
+msgstr "E132: 関数呼出しの入れ子数が 'maxfuncdepth' を超えました"
+
+msgid "E133: :return not inside a function"
+msgstr "E133: 関数外に :return がありました"
+
+msgid "E134: Cannot move a range of lines into itself"
+msgstr "E134: 行の範囲をそれ自身には移動できません"
+
+msgid "E135: *Filter* Autocommands must not change current buffer"
+msgstr "E135: *Filter* 自動コマンドは現在のバッファを変更してはいけません"
+
+msgid "E136: viminfo: Too many errors, skipping rest of file"
+msgstr "E136: viminfo: エラーが多過ぎるので、以降はスキップします"
+
+#, c-format
+msgid "E137: Viminfo file is not writable: %s"
+msgstr "E137: viminfoファイルが書込みできません: %s"
+
+#, c-format
+msgid "E138: Can't write viminfo file %s!"
+msgstr "E138: viminfoファイル %s を保存できません!"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: 同じ名前のファイルが他のバッファで読込まれています"
+
+msgid "E140: Use ! to write partial buffer"
+msgstr "E140: バッファを部分的に保存するには ! を使ってください"
+
+#, c-format
+msgid "E141: No file name for buffer %ld"
+msgstr "E141: バッファ %ld には名前がありません"
+
+msgid "E142: File not written: Writing is disabled by 'write' option"
+msgstr "E142: ファイルは保存されませんでした: 'write' オプションにより無効です"
+
+#, c-format
+msgid "E143: Autocommands unexpectedly deleted new buffer %s"
+msgstr "E143: 自動コマンドが予期せず新しいバッファ %s を削除しました"
+
+msgid "E144: non-numeric argument to :z"
+msgstr "E144: 数ではない引数が :z に渡されました"
+
+msgid "E145: Shell commands and some functionality not allowed in rvim"
+msgstr "E145: rvimではシェルコマンドと一部の機能を使えません"
+
+msgid "E146: Regular expressions can't be delimited by letters"
+msgstr "E146: 正規表現は文字で区切ることができません"
+
+msgid "E147: Cannot do :global recursive with a range"
+msgstr "E147: :global を範囲付きで再帰的には使えません"
+
+msgid "E148: Regular expression missing from :global"
+msgstr "E148: :global に正規表現が指定されていません"
+
+#, c-format
+msgid "E149: Sorry, no help for %s"
+msgstr "E149: 残念ですが %s にはヘルプがありません"
+
+#, c-format
+msgid "E150: Not a directory: %s"
+msgstr "E150: ディレクトリではありません: %s"
+
+#, c-format
+msgid "E151: No match: %s"
+msgstr "E151: マッチはありません: %s"
+
+#, c-format
+msgid "E152: Cannot open %s for writing"
+msgstr "E152: 書込み用に %s を開けません"
+
+#, c-format
+msgid "E153: Unable to open %s for reading"
+msgstr "E153: 読込み用に %s を開けません"
+
+#, c-format
+msgid "E154: Duplicate tag \"%s\" in file %s/%s"
+msgstr "E154: タグ \"%s\" がファイル %s/%s に重複しています"
+
+#, c-format
+msgid "E155: Unknown sign: %s"
+msgstr "E155: 未知のsignです: %s"
+
+msgid "E156: Missing sign name"
+msgstr "E156: sign名がありません"
+
+#, c-format
+msgid "E157: Invalid sign ID: %d"
+msgstr "E157: 無効なsign識別子です: %d"
+
+#, c-format
+msgid "E158: Invalid buffer name: %s"
+msgstr "E158: 無効なバッファ名です: %s"
+
+msgid "E159: Missing sign number"
+msgstr "E159: signの番号がありません"
+
+#, c-format
+msgid "E160: Unknown sign command: %s"
+msgstr "E160: 未知のsignコマンドです: %s"
+
+#, c-format
+msgid "E161: Breakpoint not found: %s"
+msgstr "E161: ブレークポイントが見つかりません: %s"
+
+#, c-format
+msgid "E162: No write since last change for buffer \"%s\""
+msgstr "E162: バッファ \"%s\" の変更は保存されていません"
+
+msgid "E163: There is only one file to edit"
+msgstr "E163: 編集するファイルは1つしかありません"
+
+msgid "E164: Cannot go before first file"
+msgstr "E164: 最初のファイルより前には行けません"
+
+msgid "E165: Cannot go beyond last file"
+msgstr "E165: 最後のファイルを越えて後には行けません"
+
+msgid "E166: Can't open linked file for writing"
+msgstr "E166: リンクされたファイルに書込めません"
+
+msgid "E167: :scriptencoding used outside of a sourced file"
+msgstr "E167: :scriptencoding が取込みスクリプト以外で使用されました"
+
+msgid "E168: :finish used outside of a sourced file"
+msgstr "E168: :finish が取込みスクリプト以外で使用されました"
+
+msgid "E169: Command too recursive"
+msgstr "E169: コマンドが再帰的過ぎます"
+
+msgid "E170: Missing :endwhile"
+msgstr "E170: :endwhile がありません"
+
+msgid "E170: Missing :endfor"
+msgstr "E170: :endfor がありません"
+
+msgid "E171: Missing :endif"
+msgstr "E171: :endif がありません"
+
+msgid "E172: Missing marker"
+msgstr "E172: マーカーがありません"
+
+#, c-format
+msgid "E173: %d more file to edit"
+msgstr "E173: 編集すべきファイルがあと %d 個あります"
+
+#, c-format
+msgid "E173: %d more files to edit"
+msgstr "E173: 編集すべきファイルがあと %d 個あります"
+
+#, c-format
+msgid "E174: Command already exists: add ! to replace it: %s"
+msgstr "E174: コマンドが既にあります: 再定義するには ! を追加してください: %s"
+
+msgid "E175: No attribute specified"
+msgstr "E175: 属性は定義されていません"
+
+msgid "E176: Invalid number of arguments"
+msgstr "E176: 引数の数が無効です"
+
+msgid "E177: Count cannot be specified twice"
+msgstr "E177: カウントを2重指定することはできません"
+
+msgid "E178: Invalid default value for count"
+msgstr "E178: カウントの省略値が無効です"
+
+#, c-format
+msgid "E179: argument required for %s"
+msgstr "E179: %s には引数が必要です"
+
+#, c-format
+msgid "E180: Invalid complete value: %s"
+msgstr "E180: 無効な補完指定です: %s"
+
+#, c-format
+msgid "E180: Invalid address type value: %s"
+msgstr "E180: 無効なアドレスタイプ値です: %s"
+
+#, c-format
+msgid "E181: Invalid attribute: %s"
+msgstr "E181: 無効な属性です: %s"
+
+msgid "E182: Invalid command name"
+msgstr "E182: 無効なコマンド名です"
+
+msgid "E183: User defined commands must start with an uppercase letter"
+msgstr "E183: ユーザー定義コマンドは英大文字で始まらなければなりません"
+
+#, c-format
+msgid "E184: No such user-defined command: %s"
+msgstr "E184: そのユーザー定義コマンドはありません: %s"
+
+#, c-format
+msgid "E185: Cannot find color scheme '%s'"
+msgstr "E185: カラースキーム '%s' が見つかりません"
+
+msgid "E186: No previous directory"
+msgstr "E186: 前のディレクトリはありません"
+
+msgid "E187: Directory unknown"
+msgstr "E187: 未知のディレクトリ"
+
+msgid "E188: Obtaining window position not implemented for this platform"
+msgstr ""
+"E188: このプラットホームにはウィンドウ位置の取得機能は実装されていません"
+
+#, c-format
+msgid "E189: \"%s\" exists (add ! to override)"
+msgstr "E189: \"%s\" が存在します (上書するには ! を追加してください)"
+
+#, c-format
+msgid "E190: Cannot open \"%s\" for writing"
+msgstr "E190: \"%s\" を書込み用として開けません"
+
+msgid "E191: Argument must be a letter or forward/backward quote"
+msgstr "E191: 引数は1文字の英字か引用符 (' か `) でなければいけません"
+
+msgid "E192: Recursive use of :normal too deep"
+msgstr "E192: :normal の再帰利用が深くなり過ぎました"
+
+#, c-format
+msgid "E193: %s not inside a function"
+msgstr "E193: 関数の外に %s がありました"
+
+msgid "E194: No alternate file name to substitute for '#'"
+msgstr "E194: '#'を置き換える副ファイルの名前がありません"
+
+msgid "E195: Cannot open viminfo file for reading"
+msgstr "E195: viminfoファイルを読込み用として開けません"
+
+msgid "E196: No digraphs in this version"
+msgstr "E196: このバージョンに合字はありません"
+
+#, c-format
+msgid "E197: Cannot set language to \"%s\""
+msgstr "E197: 言語を \"%s\" に設定できません"
+
+msgid "E199: Active window or buffer deleted"
+msgstr "E199: アクティブなウィンドウかバッファが削除されました"
+
+msgid "E200: *ReadPre autocommands made the file unreadable"
+msgstr "E200: *ReadPre 自動コマンド がファイルを読込不可にしました"
+
+msgid "E201: *ReadPre autocommands must not change current buffer"
+msgstr "E201: *ReadPre 自動コマンド は現在のバッファを変えられません"
+
+msgid "E202: Conversion made file unreadable!"
+msgstr "E202: 変換がファイルを読込不可にしました"
+
+msgid "E203: Autocommands deleted or unloaded buffer to be written"
+msgstr "E203: 保存するバッファを自動コマンドが削除か解放しました"
+
+msgid "E204: Autocommand changed number of lines in unexpected way"
+msgstr "E204: 自動コマンドが予期せぬ方法で行数を変更しました"
+
+msgid "E205: Patchmode: can't save original file"
+msgstr "E205: patchmode: 原本ファイルを保存できません"
+
+msgid "E206: patchmode: can't touch empty original file"
+msgstr "E206: patchmode: 空の原本ファイルをtouchできません"
+
+msgid "E207: Can't delete backup file"
+msgstr "E207: バックアップファイルを消せません"
+
+#, c-format
+msgid "E208: Error writing to \"%s\""
+msgstr "E208: \"%s\" を書込み中のエラーです"
+
+#, c-format
+msgid "E209: Error closing \"%s\""
+msgstr "E209: \"%s\" を閉じる時にエラーです"
+
+#, c-format
+msgid "E210: Error reading \"%s\""
+msgstr "E210: \"%s\" を読込み中のエラーです"
+
+#, c-format
+msgid "E211: File \"%s\" no longer available"
+msgstr "E211: ファイル \"%s\" は既に存在しません"
+
+msgid "E212: Can't open file for writing"
+msgstr "E212: 書込み用にファイルを開けません"
+
+msgid "E213: Cannot convert (add ! to write without conversion)"
+msgstr "E213: 変換できません (! を追加で変換せずに保存)"
+
+msgid "E214: Can't find temp file for writing"
+msgstr "E214: 保存用一時ファイルが見つかりません"
+
+#, c-format
+msgid "E215: Illegal character after *: %s"
+msgstr "E215: * の後に不正な文字がありました: %s"
+
+#, c-format
+msgid "E216: No such event: %s"
+msgstr "E216: そのようなイベントはありません: %s"
+
+#, c-format
+msgid "E216: No such group or event: %s"
+msgstr "E216: そのようなグループもしくはイベントはありません: %s"
+
+msgid "E217: Can't execute autocommands for ALL events"
+msgstr "E217: 全てのイベントに対しての自動コマンドは実行できません"
+
+msgid "E218: autocommand nesting too deep"
+msgstr "E218: 自動コマンドの入れ子が深過ぎます"
+
+msgid "E219: Missing {."
+msgstr "E219: { がありません。"
+
+msgid "E220: Missing }."
+msgstr "E220: } がありません。"
+
+msgid "E221: Marker cannot start with lower case letter"
+msgstr "E221: マーカーは英小文字で始まってはいけません"
+
+msgid "E222: Add to internal buffer that was already read from"
+msgstr "E222: 既に読んだ内部バッファに追加しています"
+
+msgid "E223: recursive mapping"
+msgstr "E223: 再帰的マッピング"
+
+#, c-format
+msgid "E224: global abbreviation already exists for %s"
+msgstr "E224: %s というグローバル短縮入力は既に存在します"
+
+#, c-format
+msgid "E225: global mapping already exists for %s"
+msgstr "E225: %s というグローバルマッピングは既に存在します"
+
+#, c-format
+msgid "E226: abbreviation already exists for %s"
+msgstr "E226: %s という短縮入力は既に存在します"
+
+#, c-format
+msgid "E227: mapping already exists for %s"
+msgstr "E227: %s というマッピングは既に存在します"
+
+msgid "E228: makemap: Illegal mode"
+msgstr "E228: makemap: 不正なモード"
+
+msgid "E229: Cannot start the GUI"
+msgstr "E229: GUIを開始できません"
+
+#, c-format
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: \"%s\"から読込むことができません"
+
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' が無効です"
+
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: メッセージとコールバックのある BalloonEval を作成できません"
+
+msgid "E233: cannot open display"
+msgstr "E233: ディスプレイを開けません"
+
+#, c-format
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: 未知のフォントセット: %s"
+
+#, c-format
+msgid "E235: Unknown font: %s"
+msgstr "E235: 未知のフォント: %s"
+
+#, c-format
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: フォント \"%s\" は固定幅ではありません"
+
+msgid "E237: Printer selection failed"
+msgstr "E237: プリンタの選択に失敗しました"
+
+#, c-format
+msgid "E238: Print error: %s"
+msgstr "E238: 印刷エラー: %s"
+
+#, c-format
+msgid "E239: Invalid sign text: %s"
+msgstr "E239: 無効なsignのテキストです: %s"
+
+msgid "E240: No connection to the X server"
+msgstr "E240: X サーバーへの接続がありません"
+
+#, c-format
+msgid "E241: Unable to send to %s"
+msgstr "E241: %s へ送ることができません"
+
+msgid "E242: Can't split a window while closing another"
+msgstr "E242: 別のウィンドウを閉じている間に分割することはできません"
+
+#, c-format
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: 引数はサポートされません: \"-%s\"; OLE版を使用してください。"
+
+#, c-format
+msgid "E244: Illegal %s name \"%s\" in font name \"%s\""
+msgstr "E244: 不正な%s名 \"%s\" です (フォント名 \"%s\")"
+
+#, c-format
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: '%c' は不正な文字です (フォント名 \"%s\")"
+
+msgid "E246: FileChangedShell autocommand deleted buffer"
+msgstr "E246: FileChangedShell 自動コマンドがバッファを削除しました"
+
+#, c-format
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: \"%s\" という名前の登録されたサーバーはありません"
+
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: 目的のプログラムへのコマンド送信に失敗しました"
+
+msgid "E249: window layout changed unexpectedly"
+msgstr "E249: 予期せずウィンドウの配置が変わりました"
+
+#, c-format
+msgid "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: 以下の文字セットのフォントがありません %s:"
+
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: VIM 実体の登録プロパティが不正です。消去しました!"
+
+#, c-format
+msgid "E252: Fontset name: %s - Font '%s' is not fixed-width"
+msgstr "E252: フォントセット名: %s - フォント '%s' は固定幅ではありません"
+
+#, c-format
+msgid "E253: Fontset name: %s"
+msgstr "E253: フォントセット名: %s"
+
+#, c-format
+msgid "E254: Cannot allocate color %s"
+msgstr "E254: %s の色を割り当てられません"
+
+msgid "E255: Couldn't read in sign data"
+msgstr "E255: sign のデータを読込めませんでした"
+
+msgid "E257: cstag: tag not found"
+msgstr "E257: cstag: タグが見つかりません"
+
+msgid "E258: Unable to send to client"
+msgstr "E258: クライアントへ送ることができません"
+
+#, c-format
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: cscopeクエリー %s of %s に該当がありませんでした"
+
+msgid "E260: Missing name after ->"
+msgstr "E260: -> の後に名前がありません"
+
+#, c-format
+msgid "E261: cscope connection %s not found"
+msgstr "E261: cscope接続 %s が見つかりませんでした"
+
+#, c-format
+msgid "E262: error reading cscope connection %d"
+msgstr "E262: cscopeの接続 %d を読込み中のエラーです"
+
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: このコマンドは無効です、ごめんなさい: Pythonライブラリをロードできませ"
+"んでした。"
+
+msgid "E264: Python: Error initialising I/O objects"
+msgstr "E264: Python: I/Oオブジェクトの初期化エラー"
+
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ は文字列のインスタンスでなければなりません"
+
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: このコマンドは無効です、ごめんなさい: Rubyライブラリをロードできません"
+"でした。"
+
+msgid "E267: unexpected return"
+msgstr "E267: 予期せぬ return です"
+
+msgid "E268: unexpected next"
+msgstr "E268: 予期せぬ next です"
+
+msgid "E269: unexpected break"
+msgstr "E269: 予期せぬ break です"
+
+msgid "E270: unexpected redo"
+msgstr "E270: 予期せぬ redo です"
+
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: rescue の外の retry です"
+
+msgid "E272: unhandled exception"
+msgstr "E272: 取り扱われなかった例外があります"
+
+#, c-format
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: 未知のlongjmp状態: %d"
+
+msgid "E274: No white space allowed before parenthesis"
+msgstr "E274: 丸括弧の前にスペースは許されません"
+
+msgid "E275: Cannot add text property to unloaded buffer"
+msgstr "E275: 解放されたバッファにはテキストプロパティを追加できません"
+
+#, c-format
+msgid "E276: Cannot use function as a method: %s"
+msgstr "E276: 関数をメソッドとして使用できません: %s"
+
+msgid "E277: Unable to read a server reply"
+msgstr "E277: サーバーの応答がありません"
+
+msgid "E279: Sorry, ++shell is not supported on this system"
+msgstr "E279: ごめんなさい、++shell はこのシステムではサポートされていません"
+
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: TCL 致命的エラー: reflist 汚染!? vim-dev@vim.org に報告してください"
+
+#, c-format
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: \"%s\"から読込むことができません"
+
+#, c-format
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: \"%s\" に該当するマークがありません"
+
+msgid "E284: Cannot set IC values"
+msgstr "E284: ICの値を設定できません"
+
+msgid "E285: Failed to create input context"
+msgstr "E285: インプットコンテキストの作成に失敗しました"
+
+msgid "E286: Failed to open input method"
+msgstr "E286: インプットメソッドのオープンに失敗しました"
+
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: 警告: IMの破壊コールバックを設定できませんでした"
+
+msgid "E288: input method doesn't support any style"
+msgstr "E288: インプットメソッドはどんなスタイルもサポートしません"
+
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: インプットメソッドは my preedit type をサポートしません"
+
+msgid "E290: List or number required"
+msgstr "E290: リストか数値が必要です"
+
+#, c-format
+msgid "E292: Invalid count for del_bytes(): %ld"
+msgstr "E292: del_bytes() として無効な数値です: %ld"
+
+msgid "E293: block was not locked"
+msgstr "E293: ブロックがロックされていません"
+
+msgid "E294: Seek error in swap file read"
+msgstr "E294: スワップファイル読込み時にシークエラーです"
+
+msgid "E295: Read error in swap file"
+msgstr "E295: スワップファイルの読込みエラーです"
+
+msgid "E296: Seek error in swap file write"
+msgstr "E296: スワップファイル書込み時にシークエラーです"
+
+msgid "E297: Write error in swap file"
+msgstr "E297: スワップファイルの書込みエラーです"
+
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: ブロック 0 を取得できません?"
+
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: ブロック 1 を取得できません?"
+
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: ブロック 2 を取得できません?"
+
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: スワップファイルが既に存在します (symlinkによる攻撃?)"
+
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: おっと、スワップファイルが失われました!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: スワップファイルの名前を変えられません"
+
+#, c-format
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr "E303: \"%s\" のスワップファイルを開けないのでリカバリは不可能です"
+
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): ブロック 0 を取得できませんでした??"
+
+#, c-format
+msgid "E305: No swap file found for %s"
+msgstr "E305: %s にはスワップファイルが見つかりません"
+
+#, c-format
+msgid "E306: Cannot open %s"
+msgstr "E306: %s を開けません"
+
+#, c-format
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s はVimのスワップファイルではないようです"
+
+msgid "E308: Warning: Original file may have been changed"
+msgstr "E308: 警告: 原本ファイルが変更されています"
+
+#, c-format
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: %s からブロック 1 を読込めません"
+
+#, c-format
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: ブロック 1 のIDが間違っています(%s が.swpファイルでない?)"
+
+msgid "E311: Recovery Interrupted"
+msgstr "E311: リカバリが割込まれました"
+
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: リカバリの最中にエラーが検出されました; ???で始まる行を参照してください"
+
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: スワップファイルが無いので維持できません"
+
+msgid "E314: Preserve failed"
+msgstr "E314: 維持に失敗しました"
+
+#, c-format
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: 無効なlnumです: %ld"
+
+#, c-format
+msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
+msgstr "E316: ml_get: 行 %ld をバッファ %d %s 内に見つけられません"
+
+msgid "E317: pointer block id wrong"
+msgstr "E317: ポインタブロックのIDが間違っています"
+
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: ポインタブロックのIDが間違っています 2"
+
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: ポインタブロックのIDが間違っています 3"
+
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: ポインタブロックのIDが間違っています 4"
+
+msgid "E318: Updated too many blocks?"
+msgstr "E318: 更新されたブロックが多過ぎるかも?"
+
+msgid "E319: Sorry, the command is not available in this version"
+msgstr "E319: このバージョンではこのコマンドは利用できません、ごめんなさい"
+
+#, c-format
+msgid "E320: Cannot find line %ld"
+msgstr "E320: 行 %ld が見つかりません"
+
+#, c-format
+msgid "E321: Could not reload \"%s\""
+msgstr "E321: \"%s\" はリロードできませんでした"
+
+#, c-format
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: 行番号が範囲外です: %ld 超えています"
+
+#, c-format
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: ブロック %ld の行カウントが間違っています"
+
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: PostScript出力用のファイルを開けません"
+
+msgid "E325: ATTENTION"
+msgstr "E325: 注意"
+
+msgid "E326: Too many swap files found"
+msgstr "E326: スワップファイルが多数見つかりました"
+
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr "E327: メニューアイテムのパスの部分がサブメニューではありません"
+
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: メニューは他のモードにだけあります"
+
+#, c-format
+msgid "E329: No menu \"%s\""
+msgstr "E329: \"%s\" というメニューはありません"
+
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: メニューパスはサブメニューを生じるべきではありません"
+
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr "E331: メニューバーには直接メニューアイテムを追加できません"
+
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: 区切りはメニューパスの一部ではありません"
+
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: メニューパスはメニューアイテムを生じなければいけません"
+
+#, c-format
+msgid "E334: Menu not found: %s"
+msgstr "E334: メニューが見つかりません: %s"
+
+#, c-format
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: %s にはメニューが定義されていません"
+
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: メニューパスはサブメニューを生じなければいけません"
+
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: メニューが見つかりません - メニュー名を確認してください"
+
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: コンソールモードではファイルブラウザを使えません、ごめんなさい"
+
+msgid "E339: Pattern too long"
+msgstr "E339: パターンが長過ぎます"
+
+msgid "E341: Internal error: lalloc(0, )"
+msgstr "E341: 内部エラー: lalloc(0, )"
+
+#, c-format
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: メモリが足りません! (%lu バイトを割当要求)"
+
+#, c-format
+msgid ""
+"E343: Invalid path: '**[number]' must be at the end of the path or be "
+"followed by '%s'."
+msgstr ""
+"E343: 無効なパスです: '**[数値]' はpathの最後か '%s' が続いてないといけませ"
+"ん。"
+
+#, c-format
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: cdpathには \"%s\" というディレクトリがありません"
+
+#, c-format
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: pathには \"%s\" というファイルがありません"
+
+#, c-format
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: cdpathにはこれ以上 \"%s\" というディレクトリがありません"
+
+#, c-format
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: パスにはこれ以上 \"%s\" というファイルがありません"
+
+msgid "E348: No string under cursor"
+msgstr "E348: カーソルの位置には文字列がありません"
+
+msgid "E349: No identifier under cursor"
+msgstr "E349: カーソルの位置には識別子がありません"
+
+msgid "E350: Cannot create fold with current 'foldmethod'"
+msgstr "E350: 現在の 'foldmethod' では折畳みを作成できません"
+
+msgid "E351: Cannot delete fold with current 'foldmethod'"
+msgstr "E351: 現在の 'foldmethod' では折畳みを削除できません"
+
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: 現在の 'foldmethod' では折畳みを消去できません"
+
+#, c-format
+msgid "E353: Nothing in register %s"
+msgstr "E353: レジスタ %s には何もありません"
+
+#, c-format
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: 無効なレジスタ名: '%s'"
+
+#, c-format
+msgid "E355: Unknown option: %s"
+msgstr "E355: 未知のオプションです: %s"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: get_varp エラー"
+
+#, c-format
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': %s に対応する文字がありません"
+
+#, c-format
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': セミコロンの後に余分な文字があります: %s"
+
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: スクリーンモードの設定には対応していません"
+
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: -f オプションでシェルを実行できません"
+
+msgid "E362: Using a boolean value as a Float"
+msgstr "E362: ブール値を浮動小数点数として扱っています"
+
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: パターンが 'maxmempattern' 以上のメモリを使用します"
+
+#, c-format
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: \"%s()\" のライブラリ呼出しに失敗しました"
+
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: PostScriptファイルの印刷に失敗しました"
+
+msgid "E366: Not allowed to enter a popup window"
+msgstr "E366: ポップアップウィンドウに入ることは許されません"
+
+#, c-format
+msgid "E367: No such group: \"%s\""
+msgstr "E367: そのグループはありません: \"%s\""
+
+#, c-format
+msgid "E368: got SIG%s in libcall()"
+msgstr "E368: libcall() で SIG%s を受け取りました"
+
+#, c-format
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: 無効な項目です: %s%%[]"
+
+#, c-format
+msgid "E370: Could not load library %s: %s"
+msgstr "E370: ライブラリ %s をロードできませんでした: %s"
+
+msgid "E371: Command not found"
+msgstr "E371: コマンドがありません"
+
+#, c-format
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: フォーマット文字列に %%%c が多過ぎます"
+
+#, c-format
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: フォーマット文字列に予期せぬ %%%c がありました"
+
+msgid "E374: Missing ] in format string"
+msgstr "E374: フォーマット文字列に ] がありません"
+
+#, c-format
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: フォーマット文字列では %%%c はサポートされません"
+
+#, c-format
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: フォーマット文字列の前置に無効な %%%c があります"
+
+#, c-format
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: フォーマット文字列に無効な %%%c があります"
+
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' にパターンが指定されていません"
+
+msgid "E379: Missing or empty directory name"
+msgstr "E379: ディレクトリ名が無いか空です"
+
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: quickfix スタックの末尾です"
+
+msgid "E381: At top of quickfix stack"
+msgstr "E381: quickfix スタックの先頭です"
+
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: 'buftype' オプションが設定されているので書込めません"
+
+#, c-format
+msgid "E383: Invalid search string: %s"
+msgstr "E383: 無効な検索文字列です: %s"
+
+#, c-format
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: 上まで検索しましたが該当箇所はありません: %s"
+
+#, c-format
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: 下まで検索しましたが該当箇所はありません: %s"
+
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: ';' のあとには '?' か '/' が期待されている"
+
+msgid "E387: Match is on current line"
+msgstr "E387: 現在行に該当があります"
+
+msgid "E388: Couldn't find definition"
+msgstr "E388: 定義を見つけられません"
+
+msgid "E389: Couldn't find pattern"
+msgstr "E389: パターンを見つけられません"
+
+#, c-format
+msgid "E390: Illegal argument: %s"
+msgstr "E390: 不正な引数です: %s"
+
+#, c-format
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: そのような構文クラスタはありません: %s"
+
+#, c-format
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: そのような構文クラスタはありません: %s"
+
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: ここではグループは許可されません"
+
+#, c-format
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: %s の範囲要素が見つかりません"
+
+msgid "E395: contains argument not accepted here"
+msgstr "E395: この場所では引数containsは許可されていません"
+
+msgid "E397: Filename required"
+msgstr "E397: ファイル名が必要です"
+
+#, c-format
+msgid "E398: Missing '=': %s"
+msgstr "E398: '=' がありません: %s"
+
+#, c-format
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: 引数が足りません: 構文範囲 %s"
+
+msgid "E400: No cluster specified"
+msgstr "E400: クラスタが指定されていません"
+
+#, c-format
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: パターン区切りが見つかりません: %s"
+
+#, c-format
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: パターンのあとにゴミがあります: %s"
+
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr "E403: 構文同期: 連続行パターンが2度指定されました"
+
+#, c-format
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: 不正な引数です: %s"
+
+#, c-format
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: 等号がありません: %s"
+
+#, c-format
+msgid "E406: Empty argument: %s"
+msgstr "E406: 空の引数: %s"
+
+#, c-format
+msgid "E407: %s not allowed here"
+msgstr "E407: %s はココでは許可されていません"
+
+#, c-format
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s は内容リストの先頭でなければならない"
+
+#, c-format
+msgid "E409: Unknown group name: %s"
+msgstr "E409: 未知のグループ名: %s"
+
+#, c-format
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: 無効な :syntax のサブコマンドです: %s"
+
+#, c-format
+msgid "E411: highlight group not found: %s"
+msgstr "E411: ハイライトグループが見つかりません: %s"
+
+#, c-format
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: 引数が充分ではない: \":highlight link %s\""
+
+#, c-format
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: 引数が多過ぎます: \":highlight link %s\""
+
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: グループが設定されているのでハイライトリンクは無視されます"
+
+#, c-format
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: 予期せぬ等号です: %s"
+
+#, c-format
+msgid "E416: missing equal sign: %s"
+msgstr "E416: 等号がありません: %s"
+
+#, c-format
+msgid "E417: missing argument: %s"
+msgstr "E417: 引数がありません: %s"
+
+#, c-format
+msgid "E418: Illegal value: %s"
+msgstr "E418: 不正な値です: %s"
+
+msgid "E419: FG color unknown"
+msgstr "E419: 未知の前景色です"
+
+msgid "E420: BG color unknown"
+msgstr "E420: 未知の背景色です"
+
+#, c-format
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: カラー名や番号を認識できません: %s"
+
+#, c-format
+msgid "E422: terminal code too long: %s"
+msgstr "E422: 終端コードが長過ぎます: %s"
+
+#, c-format
+msgid "E423: Illegal argument: %s"
+msgstr "E423: 不正な引数です: %s"
+
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: 多くの異なるハイライト属性が使われ過ぎています"
+
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: 最初の該当タグを越えて戻ることはできません"
+
+#, c-format
+msgid "E426: tag not found: %s"
+msgstr "E426: タグが見つかりません: %s"
+
+msgid "E427: There is only one matching tag"
+msgstr "E427: 該当タグが1つだけしかありません"
+
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: 最後の該当タグを越えて進むことはできません"
+
+#, c-format
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: ファイル \"%s\" がありません"
+
+#, c-format
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: タグファイルのパスが %s に切り捨てられました\n"
+
+#, c-format
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: タグファイル \"%s\" のフォーマットにエラーがあります"
+
+#, c-format
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: タグファイルがソートされていません: %s"
+
+msgid "E433: No tags file"
+msgstr "E433: タグファイルがありません"
+
+msgid "E434: Can't find tag pattern"
+msgstr "E434: タグパターンを見つけられません"
+
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: タグを見つけられないので単に推測します!"
+
+#, c-format
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: termcapに \"%s\" のエントリがありません"
+
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: 端末に \"cm\" 機能が必要です"
+
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: 行番号が間違っています"
+
+msgid "E439: undo list corrupt"
+msgstr "E439: アンドゥリストが壊れています"
+
+msgid "E440: undo line missing"
+msgstr "E440: アンドゥ行がありません"
+
+msgid "E441: There is no preview window"
+msgstr "E441: プレビューウィンドウがありません"
+
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: 左上と右下を同時に分割することはできません"
+
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: 他のウィンドウが分割されている時には順回できません"
+
+msgid "E444: Cannot close last window"
+msgstr "E444: 最後のウィンドウを閉じることはできません"
+
+msgid "E445: Other window contains changes"
+msgstr "E445: 他のウィンドウには変更があります"
+
+msgid "E446: No file name under cursor"
+msgstr "E446: カーソルの下にファイル名がありません"
+
+#, c-format
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: pathには \"%s\" というファイルがありません"
+
+#, c-format
+msgid "E448: Could not load library function %s"
+msgstr "E448: ライブラリの関数 %s をロードできませんでした"
+
+msgid "E449: Invalid expression received"
+msgstr "E449: 無効な式を受け取りました"
+
+msgid "E450: buffer number, text or a list required"
+msgstr "E450: バッファ番号、テキストまたはリストが必要です"
+
+#, c-format
+msgid "E451: Expected }: %s"
+msgstr "E451: } が必要です: %s"
+
+msgid "E452: Double ; in list of variables"
+msgstr "E452: リスト型の値に2つ以上の ; が検出されました"
+
+msgid "E453: UL color unknown"
+msgstr "E453: 未知の下線色です"
+
+msgid "E454: function list was modified"
+msgstr "E454: 関数リストが変更されました"
+
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: PostScript出力ファイルの書込みエラーです"
+
+#, c-format
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: ファイル \"%s\" を開けません"
+
+#, c-format
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: PostScriptのリソースファイル \"%s.ps\" が見つかりません"
+
+#, c-format
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: PostScriptのリソースファイル \"%s\" を読込めません"
+
+msgid "E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr "E458: 色指定が正しくないのでカラーマップのエントリを割り当てられません"
+
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: 前のディレクトリに戻れません"
+
+msgid "E460: entries missing in mapset() dict argument"
+msgstr "E460: mapset() の辞書引数の要素が足りません"
+
+#, c-format
+msgid "E461: Illegal variable name: %s"
+msgstr "E461: 不正な変数名です: %s"
+
+#, c-format
+msgid "E462: Could not prepare for reloading \"%s\""
+msgstr "E462: \"%s\" をリロードする準備ができませんでした"
+
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: 領域が保護されているので、変更できません"
+
+msgid "E464: Ambiguous use of user-defined command"
+msgstr "E464: ユーザー定義コマンドのあいまいな使用です"
+
+msgid "E465: :winsize requires two number arguments"
+msgstr "E465: :winsize には2つの数値の引数が必要です"
+
+msgid "E466: :winpos requires two number arguments"
+msgstr "E466: :winpos には2つの数値の引数が必要です"
+
+msgid "E467: Custom completion requires a function argument"
+msgstr "E467: カスタム補完には引数として関数が必要です"
+
+msgid "E468: Completion argument only allowed for custom completion"
+msgstr "E468: 補完引数はカスタム補完でしか使用できません"
+
+#, c-format
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: 無効な cscopequickfix フラグ %c の %c です"
+
+msgid "E470: Command aborted"
+msgstr "E470: コマンドが中断されました"
+
+msgid "E471: Argument required"
+msgstr "E471: 引数が必要です"
+
+msgid "E472: Command failed"
+msgstr "E472: コマンドが失敗しました"
+
+msgid "E473: Internal error in regexp"
+msgstr "E473: 正規表現の内部エラーです"
+
+msgid "E474: Invalid argument"
+msgstr "E474: 無効な引数です"
+
+#, c-format
+msgid "E475: Invalid argument: %s"
+msgstr "E475: 無効な引数です: %s"
+
+#, c-format
+msgid "E475: Invalid value for argument %s"
+msgstr "E475: 引数 %s に対して無効な値です"
+
+#, c-format
+msgid "E475: Invalid value for argument %s: %s"
+msgstr "E475: 引数 %s に対して無効な値です: %s"
+
+msgid "E476: Invalid command"
+msgstr "E476: 無効なコマンドです"
+
+#, c-format
+msgid "E476: Invalid command: %s"
+msgstr "E476: 無効なコマンドです: %s"
+
+msgid "E477: No ! allowed"
+msgstr "E477: ! は許可されていません"
+
+msgid "E478: Don't panic!"
+msgstr "E478: 慌てないでください"
+
+msgid "E479: No match"
+msgstr "E479: 該当はありません"
+
+#, c-format
+msgid "E480: No match: %s"
+msgstr "E480: 該当はありません: %s"
+
+msgid "E481: No range allowed"
+msgstr "E481: 範囲指定は許可されていません"
+
+#, c-format
+msgid "E482: Can't create file %s"
+msgstr "E482: ファイル %s を作成できません"
+
+msgid "E483: Can't get temp file name"
+msgstr "E483: 一時ファイルの名前を取得できません"
+
+#, c-format
+msgid "E484: Can't open file %s"
+msgstr "E484: ファイル %s を開けません"
+
+#, c-format
+msgid "E485: Can't read file %s"
+msgstr "E485: ファイル %s を読込めません"
+
+msgid "E486: Pattern not found"
+msgstr "E486: パターンは見つかりませんでした"
+
+#, c-format
+msgid "E486: Pattern not found: %s"
+msgstr "E486: パターンは見つかりませんでした: %s"
+
+msgid "E487: Argument must be positive"
+msgstr "E487: 引数は正の値でなければなりません"
+
+msgid "E488: Trailing characters"
+msgstr "E488: 余分な文字が後ろにあります"
+
+#, c-format
+msgid "E488: Trailing characters: %s"
+msgstr "E488: 余分な文字が後ろにあります: %s"
+
+msgid "E489: no call stack to substitute for \"<stack>\""
+msgstr "E489: \"<stack>\"を置き換えるコールスタックがありません"
+
+msgid "E490: No fold found"
+msgstr "E490: 折畳みがありません"
+
+#, c-format
+msgid "E491: json decode error at '%s'"
+msgstr "E491: '%s' でjsonデコードエラー"
+
+msgid "E492: Not an editor command"
+msgstr "E492: エディタのコマンドではありません"
+
+msgid "E493: Backwards range given"
+msgstr "E493: 逆さまの範囲が指定されました"
+
+msgid "E494: Use w or w>>"
+msgstr "E494: w もしくは w>> を使用してください"
+
+msgid "E495: no autocommand file name to substitute for \"<afile>\""
+msgstr "E495: \"<afile>\"を置き換える自動コマンドのファイル名がありません"
+
+msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
+msgstr "E496: \"<abuf>\"を置き換える自動コマンドバッファ番号がありません"
+
+msgid "E497: no autocommand match name to substitute for \"<amatch>\""
+msgstr "E497: \"<amatch>\"を置き換える自動コマンドの該当名がありません"
+
+msgid "E498: no :source file name to substitute for \"<sfile>\""
+msgstr "E498: \"<sfile>\"を置き換える :source 対象ファイル名がありません"
+
+#, no-c-format
+msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
+msgstr ""
+"E499: '%' や '#' が無名ファイルなので \":p:h\" を伴わない使い方はできません"
+
+msgid "E500: Evaluates to an empty string"
+msgstr "E500: 空文字列として評価されました"
+
+msgid "E501: At end-of-file"
+msgstr "E501: ファイルの終了位置"
+
+msgid "is not a file or writable device"
+msgstr "はファイルでも書込み可能デバイスでもありません"
+
+#, c-format
+msgid "E503: \"%s\" is not a file or writable device"
+msgstr "E503: \"%s\" はファイルでも書込み可能デバイスでもありません"
+
+msgid "is read-only (cannot override: \"W\" in 'cpoptions')"
+msgstr "は読込専用です (\"W\" が 'cpoptions' にあるため、強制書込できません)"
+
+msgid "is read-only (add ! to override)"
+msgstr "は読込専用です (強制書込には ! を追加)"
+
+#, c-format
+msgid "E505: \"%s\" is read-only (add ! to override)"
+msgstr "E505: \"%s\" は読込専用です (強制書込には ! を追加)"
+
+msgid "E506: Can't write to backup file (add ! to override)"
+msgstr "E506: バックアップファイルを保存できません (! を追加で強制書込)"
+
+msgid "E507: Close error for backup file (add ! to write anyway)"
+msgstr ""
+"E507: バックアップファイルを閉じる際にエラーが発生しました (! を追加で構わず"
+"書込)"
+
+msgid "E508: Can't read file for backup (add ! to write anyway)"
+msgstr "E508: バックアップ用ファイルを読込めません (! を追加で構わず書込)"
+
+msgid "E509: Cannot create backup file (add ! to override)"
+msgstr "E509: バックアップファイルを作れません (! を追加で強制書込)"
+
+msgid "E510: Can't make backup file (add ! to write anyway)"
+msgstr "E510: バックアップファイルを作れません (! を追加で構わず書込)"
+
+msgid "E511: netbeans already connected"
+msgstr "E511: NetBeansは既に接続しています"
+
+msgid "E512: Close failed"
+msgstr "E512: 閉じることに失敗"
+
+msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
+msgstr "E513: 書込みエラー、変換失敗 (上書するには 'fenc' を空にしてください)"
+
+#, c-format
+msgid ""
+"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
+"override)"
+msgstr ""
+"E513: 書込みエラー、変換失敗、行数 %ld (上書するには 'fenc' を空にしてくださ"
+"い)"
+
+msgid "E514: write error (file system full?)"
+msgstr "E514: 書込みエラー (ファイルシステムが満杯?)"
+
+msgid "E515: No buffers were unloaded"
+msgstr "E515: 解放されたバッファはありません"
+
+msgid "E516: No buffers were deleted"
+msgstr "E516: 削除されたバッファはありません"
+
+msgid "E517: No buffers were wiped out"
+msgstr "E517: 破棄されたバッファはありません"
+
+msgid "E518: Unknown option"
+msgstr "E518: 未知のオプションです"
+
+msgid "E519: Option not supported"
+msgstr "E519: オプションはサポートされていません"
+
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: modeline では許可されません"
+
+msgid "E521: Number required after ="
+msgstr "E521: = の後には数字が必要です"
+
+#, c-format
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: 数字が必要です: &%s = '%s'"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: termcap 内に見つかりません"
+
+msgid "E523: Not allowed here"
+msgstr "E523: ここでは許可されません"
+
+msgid "E524: Missing colon"
+msgstr "E524: コロンがありません"
+
+msgid "E525: Zero length string"
+msgstr "E525: 文字列の長さがゼロです"
+
+#, c-format
+msgid "E526: Missing number after <%s>"
+msgstr "E526: <%s> の後に数字がありません"
+
+msgid "E527: Missing comma"
+msgstr "E527: コンマがありません"
+
+msgid "E528: Must specify a ' value"
+msgstr "E528: ' の値を指定しなければなりません"
+
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: 'term' には空文字列を設定できません"
+
+msgid "E530: Cannot change 'term' in the GUI"
+msgstr "E530: GUIでは 'term' を変更できません"
+
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: GUIをスタートするには \":gui\" を使用してください"
+
+msgid "E532: highlighting color name too long in defineAnnoType"
+msgstr "E532: defineAnnoType内のハイライト色名が長すぎます"
+
+msgid "E533: can't select wide font"
+msgstr "E533: ワイドフォントを選択できません"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: 無効なワイドフォントです"
+
+#, c-format
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: <%c> の後に不正な文字があります"
+
+msgid "E536: comma required"
+msgstr "E536: コンマが必要です"
+
+#, c-format
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' は空であるか %s を含む必要があります"
+
+#, c-format
+msgid "E539: Illegal character <%s>"
+msgstr "E539: 不正な文字です <%s>"
+
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: 式が終了していません"
+
+msgid "E542: unbalanced groups"
+msgstr "E542: グループが釣合いません"
+
+msgid "E543: Not a valid codepage"
+msgstr "E543: 無効なコードページです"
+
+msgid "E544: Keymap file not found"
+msgstr "E544: キーマップファイルが見つかりません"
+
+msgid "E545: Missing colon"
+msgstr "E545: コロンがありません"
+
+msgid "E546: Illegal mode"
+msgstr "E546: 不正なモードです"
+
+msgid "E547: Illegal mouseshape"
+msgstr "E547: 不正な 'mouseshape' です"
+
+msgid "E548: digit expected"
+msgstr "E548: 数値が必要です"
+
+msgid "E549: Illegal percentage"
+msgstr "E549: 不正なパーセンテージです"
+
+msgid "E550: Missing colon"
+msgstr "E550: コロンがありません"
+
+msgid "E551: Illegal component"
+msgstr "E551: 不正な構文要素です"
+
+msgid "E552: digit expected"
+msgstr "E552: 数値が必要です"
+
+msgid "E553: No more items"
+msgstr "E553: 要素がもうありません"
+
+#, c-format
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: %s{...} 内に文法エラーがあります"
+
+msgid "E555: at bottom of tag stack"
+msgstr "E555: タグスタックの末尾です"
+
+msgid "E556: at top of tag stack"
+msgstr "E556: タグスタックの先頭です"
+
+msgid "E557: Cannot open termcap file"
+msgstr "E557: termcapファイルを開けません"
+
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: terminfoに端末エントリを見つけられません"
+
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: termcapに端末エントリを見つけられません"
+
+#, c-format
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: 使用方法: cs[cope] %s"
+
+msgid "E561: unknown cscope search type"
+msgstr "E561: 未知のcscope検索型です"
+
+msgid "E562: Usage: cstag <ident>"
+msgstr "E562: 使用法: cstag <ident>"
+
+#, c-format
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: stat(%s) エラー: %d"
+
+#, c-format
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s はディレクトリ及び有効なcscopeのデータベースではありません"
+
+msgid "E565: Not allowed to change text or change window"
+msgstr "E565: テキストを変更したりウィンドウを変更することは許可されません"
+
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: cscopeパイプを作成できませんでした"
+
+msgid "E567: no cscope connections"
+msgstr "E567: cscope接続に失敗しました"
+
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: 重複するcscopeデータベースは追加されませんでした"
+
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: cs_manage_matches で致命的なエラーです"
+
+msgid ""
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
+msgstr ""
+"E571: このコマンドは無効です、ごめんなさい: Tclライブラリをロードできませんで"
+"した。"
+
+#, c-format
+msgid "E572: exit code %d"
+msgstr "E572: 終了コード %d"
+
+#, c-format
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: 無効なサーバーIDが使われました: %s"
+
+#, c-format
+msgid "E574: Unknown register type %d"
+msgstr "E574: 未知のレジスタ型 %d です"
+
+msgid "Illegal starting char"
+msgstr "不正な先頭文字です"
+
+msgid "Missing '>'"
+msgstr "'>' が見つかりません"
+
+msgid "Illegal register name"
+msgstr "不正なレジスタ名"
+
+msgid "E578: Not allowed to change text here"
+msgstr "E578: ここでテキストを変更することは許可されません"
+
+msgid "E579: :if nesting too deep"
+msgstr "E579: :if の入れ子が深過ぎます"
+
+msgid "E579: block nesting too deep"
+msgstr "E579: ブロックの入れ子が深過ぎます"
+
+msgid "E580: :endif without :if"
+msgstr "E580: :if のない :endif があります"
+
+msgid "E581: :else without :if"
+msgstr "E581: :if のない :else があります"
+
+msgid "E582: :elseif without :if"
+msgstr "E582: :if のない :elseif があります"
+
+msgid "E583: multiple :else"
+msgstr "E583: 複数の :else があります"
+
+msgid "E584: :elseif after :else"
+msgstr "E584: :else の後に :elseif があります"
+
+msgid "E585: :while/:for nesting too deep"
+msgstr "E585: :while や :for の入れ子が深過ぎます"
+
+msgid "E586: :continue without :while or :for"
+msgstr "E586: :while や :for のない :continue があります"
+
+msgid "E587: :break without :while or :for"
+msgstr "E587: :while や :for のない :break があります"
+
+msgid "E588: :endwhile without :while"
+msgstr "E588: :while のない :endwhile があります"
+
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor のない :for があります"
+
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' と 'patchmode' が同じです"
+
+msgid "E590: A preview window already exists"
+msgstr "E590: プレビューウィンドウが既に存在します"
+
msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
msgstr "E591: 'winheight' は 'winminheight' より小さくできません"
msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
msgstr "E592: 'winwidth' は 'winminwidth' より小さくできません"
-msgid "E80: Error while writing"
-msgstr "E80: 書込み中のエラー"
-
-msgid "E939: Positive count required"
-msgstr "E939: 正のカウントが必要です"
-
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: スクリプト以外で<SID>が使われました"
+#, c-format
+msgid "E593: Need at least %d lines"
+msgstr "E593: 最低 %d の行数が必要です"
#, c-format
-msgid "E107: Missing parentheses: %s"
-msgstr "E107: カッコ '(' がありません: %s"
+msgid "E594: Need at least %d columns"
+msgstr "E594: 最低 %d のカラム幅が必要です"
-msgid "E449: Invalid expression received"
-msgstr "E449: 無効な式を受け取りました"
+msgid "E595: 'showbreak' contains unprintable or wide character"
+msgstr "E595: 'showbreak' は表示できない文字かワイド文字を含んでいます"
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: 領域が保護されているので、変更できません"
+msgid "E596: Invalid font(s)"
+msgstr "E596: 無効なフォントです"
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans は読込専用ファイルを変更することを許しません"
+msgid "E597: can't select fontset"
+msgstr "E597: フォントセットを選択できません"
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: パターンが 'maxmempattern' 以上のメモリを使用します"
+msgid "E598: Invalid fontset"
+msgstr "E598: 無効なフォントセットです"
-msgid "E749: empty buffer"
-msgstr "E749: バッファが空です"
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: 'imactivatekey' に設定された値が無効です"
+
+msgid "E600: Missing :endtry"
+msgstr "E600: :endtry がありません"
+
+msgid "E601: :try nesting too deep"
+msgstr "E601: :try の入れ子が深過ぎます"
+
+msgid "E602: :endtry without :try"
+msgstr "E602: :try のない :endtry です"
+
+msgid "E603: :catch without :try"
+msgstr "E603: :try のない :catch があります"
+
+msgid "E604: :catch after :finally"
+msgstr "E604: :finally の後に :catch があります"
#, c-format
-msgid "E86: Buffer %ld does not exist"
-msgstr "E86: バッファ %ld はありません"
+msgid "E605: Exception not caught: %s"
+msgstr "E605: 例外が捕捉されませんでした: %s"
+
+msgid "E606: :finally without :try"
+msgstr "E606: :try のない :finally があります"
+
+msgid "E607: multiple :finally"
+msgstr "E607: 複数の :finally があります"
+
+msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
+msgstr "E608: 'Vim' で始まる例外は :throw できません"
+
+#, c-format
+msgid "E609: Cscope error: %s"
+msgstr "E609: cscopeエラー: %s"
+
+msgid "E610: No argument to delete"
+msgstr "E610: 削除する引数がありません"
+
+msgid "E611: Using a Special as a Number"
+msgstr "E611: 特殊値型を数値として扱っています"
+
+msgid "E612: Too many signs defined"
+msgstr "E612: signの定義が多過ぎます"
+
+#, c-format
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: 未知のプリンタオプションです: %s"
+
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: 現在のディレクトリに戻れません"
+
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: 現在のディレクトリを取得できません"
+
+#, c-format
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: フォント %s を取得できません"
+
+msgid "E617: Cannot be changed in the GTK GUI"
+msgstr "E617: GTK GUIでは変更できません"
+
+#, c-format
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: ファイル \"%s\" は PostScript リソースファイルではありません"
+
+#, c-format
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: ファイル \"%s\" は対応していない PostScript リソースファイルです"
+
+#, c-format
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: 印刷エンコード \"%s\" へ変換できません"
+
+#, c-format
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: リソースファイル \"%s\" はバージョンが異なります"
+
+msgid "E622: Could not fork for cscope"
+msgstr "E622: cscopeの起動準備(fork)に失敗しました"
+
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: cscopeプロセスを起動できませんでした"
+
+#, c-format
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: ファイル \"%s\" を開けません"
+
+#, c-format
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: cscopeデータベース: %s を開くことができません"
+
+msgid "E626: cannot get cscope database information"
+msgstr "E626: cscopeデータベースの情報を取得できません"
+
+#, c-format
+msgid "E630: %s(): write while not connected"
+msgstr "E630: %s(): 非接続状態で書込みました"
+
+#, c-format
+msgid "E631: %s(): write failed"
+msgstr "E631: %s(): 書込みに失敗しました"
+
+#, c-format
+msgid "E654: missing delimiter after search pattern: %s"
+msgstr "E654: 検索パターンのあとに区切りがありません: %s"
+
+msgid "E655: Too many symbolic links (cycle?)"
+msgstr "E655: シンボリックリンクが多過ぎます (循環している可能性があります)"
+
+msgid "NetBeans disallows writes of unmodified buffers"
+msgstr "NetBeansは未変更のバッファを上書することは許可していません"
+
+msgid "Partial writes disallowed for NetBeans buffers"
+msgstr "NetBeansバッファの一部を書き出すことはできません"
+
+#, c-format
+msgid "E658: NetBeans connection lost for buffer %d"
+msgstr "E658: バッファ %d の NetBeans 接続が失われました"
+
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python を再帰的に実行することはできません"
+
+#, c-format
+msgid "E661: Sorry, no '%s' help for %s"
+msgstr "E661: 残念ですが '%s' のヘルプが %s にはありません"
+
+msgid "E662: At start of changelist"
+msgstr "E662: 変更リストの先頭"
+
+msgid "E663: At end of changelist"
+msgstr "E663: 変更リストの末尾"
+
+msgid "E664: changelist is empty"
+msgstr "E664: 変更リストが空です"
+
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: 有効なフォントが見つからないので、GUIを開始できません"
+
+#, c-format
+msgid "E666: compiler not supported: %s"
+msgstr "E666: そのコンパイラには対応していません: %s"
+
+msgid "E667: Fsync failed"
+msgstr "E667: fsync に失敗しました"
+
+#, c-format
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: NetBeansの接続情報ファイルのアクセスモードに問題があります: \"%s\""
+
+msgid "E669: Unprintable character in group name"
+msgstr "E669: グループ名に印刷不可能な文字があります"
+
+#, c-format
+msgid "E670: Mix of help file encodings within a language: %s"
+msgstr "E670: 1つの言語のヘルプファイルに複数のエンコードが混在しています: %s"
+
+#, c-format
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: タイトルが \"%s\" のウィンドウは見つかりません"
+
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: MDIアプリの中ではウィンドウを開けません"
+
+msgid "E673: Incompatible multi-byte encoding and character set"
+msgstr "E673: 互換性の無いマルチバイトエンコーディングと文字セットです"
+
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr ""
+"E674: マルチバイトエンコーディングでは printmbcharset を空にできません。"
+
+msgid "E675: No default font specified for multi-byte printing."
+msgstr ""
+"E675: マルチバイト文字を印刷するためのデフォルトフォントが指定されていませ"
+"ん。"
+
+msgid "E676: No matching autocommands for acwrite buffer"
+msgstr "E676: acwriteバッファの該当する自動コマンドは存在しません"
+
+msgid "E677: Error writing temp file"
+msgstr "E677: 一時ファイル書込み中にエラーが発生しました"
+
+#, c-format
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: %s%%[dxouU] の後に不正な文字がありました"
+
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: syncolor.vim の再帰呼出しを検出しました"
+
+#, c-format
+msgid "E680: <buffer=%d>: invalid buffer number"
+msgstr "E680: <バッファ=%d>: 無効なバッファ番号です"
+
+msgid "E681: Buffer is not loaded"
+msgstr "E681: バッファは読込まれませんでした"
msgid "E682: Invalid search pattern or delimiter"
msgstr "E682: 検索パターンか区切り記号が不正です"
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: 同じ名前のファイルが他のバッファで読込まれています"
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: ファイル名が無いか無効なパターンです"
+
+#, c-format
+msgid "E684: list index out of range: %ld"
+msgstr "E684: リストのインデックスが範囲外です: %ld"
+
+#, c-format
+msgid "E685: Internal error: %s"
+msgstr "E685: 内部エラーです: %s"
+
+#, c-format
+msgid "E686: Argument of %s must be a List"
+msgstr "E686: %s の引数はリスト型でなければなりません"
+
+msgid "E687: Less targets than List items"
+msgstr "E687: ターゲットがリスト型内の要素よりも少ないです"
+
+msgid "E688: More targets than List items"
+msgstr "E688: ターゲットがリスト型内の要素よりも多いです"
+
+msgid "E689: Can only index a List, Dictionary or Blob"
+msgstr "E689: リスト型、辞書型、Blob型以外はインデックス指定できません"
+
+msgid "E690: Missing \"in\" after :for"
+msgstr "E690: :for の後に \"in\" がありません"
+
+msgid "E691: Can only compare List with List"
+msgstr "E691: リスト型はリスト型としか比較できません"
+
+msgid "E692: Invalid operation for List"
+msgstr "E692: リスト型には無効な操作です"
+
+msgid "E694: Invalid operation for Funcrefs"
+msgstr "E694: 関数参照型には無効な操作です"
+
+msgid "E695: Cannot index a Funcref"
+msgstr "E695: 関数参照型はインデックスできません"
+
+#, c-format
+msgid "E696: Missing comma in List: %s"
+msgstr "E696: リスト型にコンマがありません: %s"
+
+#, c-format
+msgid "E697: Missing end of List ']': %s"
+msgstr "E697: リスト型の最後に ']' がありません: %s"
+
+msgid "E698: variable nested too deep for making a copy"
+msgstr "E698: コピーを取るには変数の入れ子が深過ぎます"
+
+msgid "E699: Too many arguments"
+msgstr "E699: 引数が多過ぎます"
+
+#, c-format
+msgid "E700: Unknown function: %s"
+msgstr "E700: 未知の関数です: %s"
+
+msgid "E701: Invalid type for len()"
+msgstr "E701: len() には無効な型です"
+
+msgid "E702: Sort compare function failed"
+msgstr "E702: ソートの比較関数が失敗しました"
+
+msgid "E703: Using a Funcref as a Number"
+msgstr "E703: 関数参照型を数値として扱っています"
+
+#, c-format
+msgid "E704: Funcref variable name must start with a capital: %s"
+msgstr "E704: 関数参照型変数名は大文字で始まらなければなりません: %s"
+
+#, c-format
+msgid "E705: Variable name conflicts with existing function: %s"
+msgstr "E705: 変数名が既存の関数名と衝突します: %s"
+
+#, c-format
+msgid "E707: Function name conflicts with variable: %s"
+msgstr "E707: 関数名が変数名と衝突します: %s"
+
+msgid "E708: [:] must come last"
+msgstr "E708: [:] は最後でなければいけません"
+
+msgid "E709: [:] requires a List or Blob value"
+msgstr "E709: [:] にはリスト型かBlob型の値が必要です"
+
+msgid "E710: List value has more items than targets"
+msgstr "E710: リスト型変数にターゲットよりも多い要素があります"
+
+msgid "E711: List value does not have enough items"
+msgstr "E711: リスト型変数に十分な数の要素がありません"
+
+#, c-format
+msgid "E712: Argument of %s must be a List or Dictionary"
+msgstr "E712: %s の引数はリスト型または辞書型でなければなりません"
+
+msgid "E713: Cannot use empty key for Dictionary"
+msgstr "E713: 辞書型に空のキーを使うことはできません"
+
+msgid "E714: List required"
+msgstr "E714: リスト型が必要です"
+
+msgid "E715: Dictionary required"
+msgstr "E715: 辞書型が必要です"
+
+#, c-format
+msgid "E716: Key not present in Dictionary: \"%s\""
+msgstr "E716: 辞書型にキーが存在しません: \"%s\""
+
+msgid "E717: Dictionary entry already exists"
+msgstr "E717: 辞書型内にエントリが既に存在します"
+
+msgid "E718: Funcref required"
+msgstr "E718: 関数参照型が要求されます"
+
+msgid "E719: Cannot slice a Dictionary"
+msgstr "E719: 辞書型はスライスできません"
+
+#, c-format
+msgid "E720: Missing colon in Dictionary: %s"
+msgstr "E720: 辞書型にコロンがありません: %s"
+
+#, c-format
+msgid "E721: Duplicate key in Dictionary: \"%s\""
+msgstr "E721: 辞書型に重複キーがあります: \"%s\""
+
+#, c-format
+msgid "E722: Missing comma in Dictionary: %s"
+msgstr "E722: 辞書型にコンマがありません: %s"
+
+#, c-format
+msgid "E723: Missing end of Dictionary '}': %s"
+msgstr "E723: 辞書型の最後に '}' がありません: %s"
+
+msgid "E724: variable nested too deep for displaying"
+msgstr "E724: 表示するには変数の入れ子が深過ぎます"
+
+#, c-format
+msgid "E725: Calling dict function without Dictionary: %s"
+msgstr "E725: 辞書用関数が呼ばれましたが辞書がありません: %s"
+
+msgid "E726: Stride is zero"
+msgstr "E726: ストライド(前進量)が 0 です"
+
+msgid "E727: Start past end"
+msgstr "E727: 開始位置が終了位置を越えました"
+
+msgid "E728: Using a Dictionary as a Number"
+msgstr "E728: 辞書型を数値として扱っています"
+
+msgid "E729: Using a Funcref as a String"
+msgstr "E729: 関数参照型を文字列として扱っています"
+
+msgid "E730: Using a List as a String"
+msgstr "E730: リスト型を文字列として扱っています"
+
+msgid "E731: Using a Dictionary as a String"
+msgstr "E731: 辞書型を文字列として扱っています"
+
+msgid "E732: Using :endfor with :while"
+msgstr "E732: :endfor を :while と組み合わせています"
+
+msgid "E733: Using :endwhile with :for"
+msgstr "E733: :endwhile を :for と組み合わせています"
+
+#, c-format
+msgid "E734: Wrong variable type for %s="
+msgstr "E734: 異なった型の変数です %s="
+
+msgid "E735: Can only compare Dictionary with Dictionary"
+msgstr "E735: 辞書型は辞書型としか比較できません"
+
+msgid "E736: Invalid operation for Dictionary"
+msgstr "E736: 辞書型には無効な操作です"
+
+#, c-format
+msgid "E737: Key already exists: %s"
+msgstr "E737: キーは既に存在します: %s"
+
+#, c-format
+msgid "E738: Can't list variables for %s"
+msgstr "E738: %s の値を一覧表示できません"
+
+#, c-format
+msgid "E739: Cannot create directory: %s"
+msgstr "E739: ディレクトリを作成できません: %s"
+
+#, c-format
+msgid "E740: Too many arguments for function %s"
+msgstr "E740: 関数の引数が多過ぎます: %s"
+
+msgid "E741: Value is locked"
+msgstr "E741: 値がロックされています"
+
+#, c-format
+msgid "E741: Value is locked: %s"
+msgstr "E741: 値がロックされています: %s"
+
+msgid "E742: Cannot change value"
+msgstr "E742: 値を変更できません"
+
+#, c-format
+msgid "E742: Cannot change value of %s"
+msgstr "E742: %s の値を変更できません"
+
+msgid "E743: variable nested too deep for (un)lock"
+msgstr "E743: (アン)ロックするには変数の入れ子が深過ぎます"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans は読込専用ファイルを変更することを許しません"
+
+msgid "E745: Using a List as a Number"
+msgstr "E745: リスト型を数値として扱っています"
+
+#, c-format
+msgid "E746: Function name does not match script file name: %s"
+msgstr "E746: 関数名がスクリプトのファイル名と一致しません: %s"
+
+msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
+msgstr ""
+"E747: バッファが修正されているので、ディレクトリを変更できません (! を追加で"
+"上書)"
+
+msgid "E748: No previously used register"
+msgstr "E748: まだレジスタを使用していません"
+
+msgid "E749: empty buffer"
+msgstr "E749: バッファが空です"
+
+msgid "E750: First use \":profile start {fname}\""
+msgstr "E750: 初めに \":profile start {fname}\" を実行してください"
+
+msgid "E751: Output file name must not have region name"
+msgstr "E751: 出力ファイル名には範囲名を含められません"
+
+msgid "E752: No previous spell replacement"
+msgstr "E752: スペル置換がまだ実行されていません"
+
+#, c-format
+msgid "E753: Not found: %s"
+msgstr "E753: 見つかりません: %s"
+
+#, c-format
+msgid "E754: Only up to %d regions supported"
+msgstr "E754: 範囲は %d 個までしかサポートされていません"
+
+#, c-format
+msgid "E755: Invalid region in %s"
+msgstr "E755: 無効な範囲です: %s"
+
+msgid "E756: Spell checking is not possible"
+msgstr "E756: スペルチェックは使用できません"
+
+msgid "E757: This does not look like a spell file"
+msgstr "E757: スペルファイルではないようです"
+
+msgid "E758: Truncated spell file"
+msgstr "E758: スペルファイルが切取られているようです"
+
+msgid "E759: Format error in spell file"
+msgstr "E759: スペルファイルのフォーマットエラーです"
+
+#, c-format
+msgid "E760: No word count in %s"
+msgstr "E760: %s には単語数がありません"
+
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr ""
+"E761: affixファイルの FOL, LOW もしくは UPP のフォーマットにエラーがあります"
+
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: FOL, LOW もしくは UPP の文字が範囲外です"
+
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: 単語の文字がスペルファイルと異なります"
#, c-format
msgid "E764: Option '%s' is not set"
msgstr "E764: オプション '%s' は設定されていません"
+#, c-format
+msgid "E765: 'spellfile' does not have %d entries"
+msgstr "E765: 'spellfile' には %d 個のエントリはありません"
+
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: printf() の引数が不十分です"
+
+msgid "E767: Too many arguments for printf()"
+msgstr "E767: printf() の引数が多過ぎます"
+
+#, c-format
+msgid "E768: Swap file exists: %s (:silent! overrides)"
+msgstr "E768: スワップファイルが存在します: %s (:silent! を追加で上書)"
+
+#, c-format
+msgid "E769: Missing ] after %s["
+msgstr "E769: %s[ の後に ] がありません"
+
+msgid "E770: Unsupported section in spell file"
+msgstr "E770: スペルファイルにサポートしていないセクションがあります"
+
+msgid "E771: Old spell file, needs to be updated"
+msgstr "E771: 古いスペルファイルなので、アップデートしてください"
+
+msgid "E772: Spell file is for newer version of Vim"
+msgstr "E772: より新しいバージョンの Vim 用のスペルファイルです"
+
+#, c-format
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: \"%s\" のシンボリックリンクがループになっています"
+
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: 'operatorfunc' オプションが空です"
+
+msgid "E775: Eval feature not available"
+msgstr "E775: 式評価機能が無効になっています"
+
+msgid "E776: No location list"
+msgstr "E776: ロケーションリストはありません"
+
+msgid "E777: String or List expected"
+msgstr "E777: 文字列かリストが必要です"
+
+#, c-format
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: .sug ファイルではないようです: %s"
+
+#, c-format
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: 古い .sug ファイルなので、アップデートしてください: %s"
+
+#, c-format
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: より新しいバージョンの Vim 用の .sug ファイルです: %s"
+
+#, c-format
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: .sug ファイルが .spl ファイルと一致しません: %s"
+
+#, c-format
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: .sug ファイルの読込み中にエラーが発生しました: %s"
+
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: MAP エントリに重複文字が存在します"
+
+msgid "E784: Cannot close last tab page"
+msgstr "E784: 最後のタブページを閉じることはできません"
+
+msgid "E785: complete() can only be used in Insert mode"
+msgstr "E785: complete() は挿入モードでしか利用できません"
+
+msgid "E786: Range not allowed"
+msgstr "E786: 範囲指定は許可されていません"
+
+msgid "E787: Buffer changed unexpectedly"
+msgstr "E787: 予期せずバッファが変更されました"
+
+msgid "E788: Not allowed to edit another buffer now"
+msgstr "E788: 現在は他のバッファを編集することは許されません"
+
+#, c-format
+msgid "E789: Missing ']': %s"
+msgstr "E789: ']' がありません: %s"
+
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undo の直後に undojoin はできません"
+
+msgid "E791: Empty keymap entry"
+msgstr "E791: 空のキーマップエントリ"
+
+msgid "E792: Empty menu name"
+msgstr "E792: メニュー名が空です"
+
+msgid "E793: No other buffer in diff mode is modifiable"
+msgstr "E793: 差分モードである他のバッファは変更できません"
+
+msgid "E794: Cannot set variable in the sandbox"
+msgstr "E794: サンドボックスでは変数に値を設定できません"
+
+#, c-format
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr "E794: サンドボックスでは変数 \"%s\" に値を設定できません"
+
+msgid "E795: Cannot delete variable"
+msgstr "E795: 変数を削除できません"
+
+#, c-format
+msgid "E795: Cannot delete variable %s"
+msgstr "E795: 変数 %s を削除できません"
+
+msgid "writing to device disabled with 'opendevice' option"
+msgstr "'opendevice' オプションによりデバイスへの書込みはできません"
+
+msgid "E797: SpellFileMissing autocommand deleted buffer"
+msgstr "E797: SpellFileMissing 自動コマンドがバッファを削除しました"
+
+#, c-format
+msgid "E798: ID is reserved for \":match\": %d"
+msgstr "E798: ID は \":match\" のために予約されています: %d"
+
+#, c-format
+msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E799: 無効な ID: %d (1 以上でなければなりません)"
+
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: アラビア語は使用不可能です: コンパイル時に無効にされています\n"
+
+#, c-format
+msgid "E801: ID already taken: %d"
+msgstr "E801: ID は既に利用中です: %d"
+
+#, c-format
+msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E802: 無効な ID: %d (1 以上でなければなりません)"
+
+#, c-format
+msgid "E803: ID not found: %d"
+msgstr "E803: ID はありません: %d"
+
+msgid "E804: Cannot use '%' with Float"
+msgstr "E804: '%' を浮動小数点数と組み合わせては使えません"
+
+msgid "E805: Using a Float as a Number"
+msgstr "E805: 浮動小数点数を数値として扱っています"
+
+msgid "E806: using Float as a String"
+msgstr "E806: 浮動小数点数を文字列として扱っています"
+
+msgid "E807: Expected Float argument for printf()"
+msgstr "E807: printf() の引数には浮動小数点数が期待されています"
+
+msgid "E808: Number or Float required"
+msgstr "E808: 数値か浮動小数点数が必要です"
+
+msgid "E809: #< is not available without the +eval feature"
+msgstr "E809: #< は +eval 機能が無いと利用できません"
+
+msgid "E810: Cannot read or write temp files"
+msgstr "E810: 一時ファイルの読込みもしくは書込みができません"
+
+msgid "E811: Not allowed to change buffer information now"
+msgstr "E811: 現在はバッファ情報を変更することは許されません"
+
+msgid "E812: Autocommands changed buffer or buffer name"
+msgstr "E812: 自動コマンドがバッファかバッファ名を変更しました"
+
+msgid "E813: Cannot close autocmd or popup window"
+msgstr "E813: autocmdウィンドウまたはポップアップウィンドウは閉じられません"
+
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr "E814: autocmdウィンドウしか残らないため、ウィンドウは閉じられません"
+
+msgid ""
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr "E815: このコマンドは無効です。MzScheme ライブラリをロードできません。"
+
+msgid "E816: Cannot read patch output"
+msgstr "E816: patchの出力を読込めません"
+
+msgid "E817: Blowfish big/little endian use wrong"
+msgstr "E817: Blowfish暗号のビッグ/リトルエンディアンが間違っています"
+
+msgid "E818: sha256 test failed"
+msgstr "E818: sha256のテストに失敗しました"
+
+msgid "E819: Blowfish test failed"
+msgstr "E819: Blowfish暗号のテストに失敗しました"
+
+msgid "E820: sizeof(uint32_t) != 4"
+msgstr "E820: sizeof(uint32_t) != 4"
+
+msgid "E821: File is encrypted with unknown method"
+msgstr "E821: ファイルが未知の方法で暗号化されています"
+
+#, c-format
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: アンドゥファイルを読込み用として開けません: %s"
+
+#, c-format
+msgid "E823: Not an undo file: %s"
+msgstr "E823: アンドゥファイルではありません: %s"
+
+#, c-format
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: 互換性の無いアンドゥファイルです: %s"
+
+#, c-format
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: アンドゥファイルが壊れています (%s): %s"
+
+#, c-format
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: 暗号化されたアンドゥファイルの解読に失敗しました: %s"
+
+#, c-format
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: アンドゥファイルが暗号化されています: %s"
+
+#, c-format
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: 書込み用にアンドゥファイルを開けません: %s"
+
+#, c-format
+msgid "E829: write error in undo file: %s"
+msgstr "E829: アンドゥファイルの書込みエラーです: %s"
+
+#, c-format
+msgid "E830: Undo number %ld not found"
+msgstr "E830: アンドゥ番号 %ld は見つかりません"
+
+msgid "E831: bf_key_init() called with empty password"
+msgstr "E831: bf_key_init() が空パスワードで呼出されました"
+
+#, c-format
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: 非暗号化ファイルが暗号化されたアンドゥファイルを使ってます: %s"
+
+#, c-format
+msgid ""
+"E833: %s is encrypted and this version of Vim does not support encryption"
+msgstr ""
+"E833: %s はこのバージョンのVimでサポートしていない形式で暗号化されています"
+
+msgid "E834: Conflicts with value of 'listchars'"
+msgstr "E834: 'listchars'の値に矛盾があります"
+
+msgid "E835: Conflicts with value of 'fillchars'"
+msgstr "E835: 'fillchars'の値に矛盾があります"
+
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: このVimでは :py3 を使った後に :python を使えません"
+
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: このVimでは :python を使った後に :py3 を使えません"
+
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: NetBeansはこのGUIには対応していません"
+
+msgid "E840: Completion function deleted text"
+msgstr "E840: 補完関数がテキストを削除しました"
+
+msgid "E841: Reserved name, cannot be used for user defined command"
+msgstr "E841: 予約名なので、ユーザー定義コマンドに利用できません"
+
+msgid "E842: no line number to use for \"<slnum>\""
+msgstr "E842: \"<slnum>\"を置き換える行番号がありません"
+
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: スワップファイルの暗号を更新中にエラーが発生しました"
+
+msgid "E844: invalid cchar value"
+msgstr "E844: 無効なccharの値です"
+
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: メモリが足りないので、単語リストは不完全です"
+
+msgid "E846: Key code not set"
+msgstr "E846: キーコードが設定されていません"
+
+msgid "E847: Too many syntax includes"
+msgstr "E847: 構文の取込み(include)が多過ぎます"
+
+msgid "E848: Too many syntax clusters"
+msgstr "E848: 構文クラスタが多過ぎます"
+
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: ハイライトと構文グループが多過ぎます"
+
msgid "E850: Invalid register name"
msgstr "E850: 無効なレジスタ名です"
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: GUI用のプロセスの起動に失敗しました"
+
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: 子プロセスがGUIの起動に失敗しました"
+
+#, c-format
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: 引数名が重複しています: %s"
+
+msgid "E854: path too long for completion"
+msgstr "E854: パスが長過ぎて補完できません"
+
+msgid "E855: Autocommands caused command to abort"
+msgstr "E855: 自動コマンドがコマンドの停止を引き起こしました"
+
+msgid ""
+"E856: \"assert_fails()\" second argument must be a string or a list with one "
+"or two strings"
+msgstr ""
+"E856: \"assert_fails()\" の第2引数は文字列または1個か2個の文字列のリストでな"
+"ければなりません"
+
+#, c-format
+msgid "E857: Dictionary key \"%s\" required"
+msgstr "E857: 辞書のキー \"%s\" が必要です"
+
+msgid "E858: Eval did not return a valid python object"
+msgstr "E858: 式評価は有効なpythonオブジェクトを返しませんでした"
+
+msgid "E859: Failed to convert returned python object to a Vim value"
+msgstr "E859: 返されたpythonオブジェクトをVimの値に変換できませんでした"
+
+msgid "E860: Need 'id' and 'type' with 'both'"
+msgstr "E860: 'both' には 'id' と 'type' の両方が必要です"
+
+msgid "E861: Cannot open a second popup with a terminal"
+msgstr "E861: 2つ目の端末付きポップアップを開くことはできません"
+
+msgid "E862: Cannot use g: here"
+msgstr "E862: ここでは g: は使えません"
+
+msgid "E863: Not allowed for a terminal in a popup window"
+msgstr "E863: 端末はポップアップウィンドウでは許されません"
+
+msgid ""
+"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
+"used"
+msgstr ""
+"E864: \\%#= には 0, 1 もしくは 2 のみが続けられます。正規表現エンジンは自動選"
+"択されます"
+
+msgid "E865: (NFA) Regexp end encountered prematurely"
+msgstr "E865: (NFA) 期待より早く正規表現の終端に到達しました"
+
+#, c-format
+msgid "E866: (NFA regexp) Misplaced %c"
+msgstr "E866: (NFA 正規表現) 位置が誤っています: %c"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\z%c'"
+msgstr "E867: (NFA 正規表現) 未知のオペレータです: '\\z%c'"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\%%%c'"
+msgstr "E867: (NFA 正規表現) 未知のオペレータです: '\\%%%c'"
+
+msgid "E868: Error building NFA with equivalence class!"
+msgstr "E868: 等価クラスを含むNFA構築に失敗しました!"
+
+#, c-format
+msgid "E869: (NFA regexp) Unknown operator '\\@%c'"
+msgstr "E869: (NFA 正規表現) 未知のオペレータです: '\\@%c'"
+
+msgid "E870: (NFA regexp) Error reading repetition limits"
+msgstr "E870: (NFA 正規表現) 繰り返しの制限回数を読込み中にエラー"
+
+msgid "E871: (NFA regexp) Can't have a multi follow a multi"
+msgstr "E871: (NFA 正規表現) 繰り返し の後に 繰り返し はできません"
+
+msgid "E872: (NFA regexp) Too many '('"
+msgstr "E872: (NFA 正規表現) '(' が多過ぎます"
+
+msgid "E873: (NFA regexp) proper termination error"
+msgstr "E873: (NFA 正規表現) 終端記号がありません"
+
+msgid "E874: (NFA regexp) Could not pop the stack!"
+msgstr "E874: (NFA 正規表現) スタックをポップできません!"
+
+msgid ""
+"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
+"left on stack"
+msgstr ""
+"E875: (NFA 正規表現) (後置文字列をNFAに変換中に) スタックに残されたステートが"
+"多過ぎます"
+
+msgid "E876: (NFA regexp) Not enough space to store the whole NFA"
+msgstr "E876: (NFA 正規表現) NFA全体を保存するには空きスペースが足りません"
+
+#, c-format
+msgid "E877: (NFA regexp) Invalid character class: %d"
+msgstr "E877: (NFA 正規表現) 無効な文字クラスです: %d"
+
+msgid "E878: (NFA regexp) Could not allocate memory for branch traversal!"
+msgstr ""
+"E878: (NFA 正規表現) 現在横断中のブランチに十分なメモリを割り当てられません!"
+
+msgid "E879: (NFA regexp) Too many \\z("
+msgstr "E879: (NFA 正規表現) \\z( が多過ぎます"
+
+msgid "E880: Can't handle SystemExit of python exception in vim"
+msgstr "E880: vimでpythonのSystemExit例外を扱うことができません"
+
+msgid "E881: Line count changed unexpectedly"
+msgstr "E881: 予期せず行カウントが変わりました"
+
+msgid "E882: Uniq compare function failed"
+msgstr "E882: Uniq の比較関数が失敗しました"
+
+msgid ""
+"E883: search pattern and expression register may not contain two or more "
+"lines"
+msgstr "E883: 検索パターンと式レジスタには2行以上を含められません"
+
+#, c-format
+msgid "E884: Function name cannot contain a colon: %s"
+msgstr "E884: 関数名にはコロンは含められません: %s"
+
+#, c-format
+msgid "E885: Not possible to change sign %s"
+msgstr "E885: 変更できない sign です: %s"
+
+#, c-format
+msgid "E886: Can't rename viminfo file to %s!"
+msgstr "E886: viminfoファイルを %s へ名前変更できません!"
+
+msgid ""
+"E887: Sorry, this command is disabled, the Python's site module could not be "
+"loaded."
+msgstr ""
+"E887: このコマンドは無効です、ごめんなさい。Python の site モジュールをロード"
+"できませんでした。"
+
+#, c-format
+msgid "E888: (NFA regexp) cannot repeat %s"
+msgstr "E888: (NFA 正規表現) 繰り返せません %s"
+
+msgid "E889: Number required"
+msgstr "E889: 数値が必要です"
+
+#, c-format
+msgid "E890: trailing char after ']': %s]%s"
+msgstr "E890: ']' の後ろに余分な文字があります: %s]%s"
+
+msgid "E891: Using a Funcref as a Float"
+msgstr "E891: 関数参照型を浮動小数点数として扱っています"
+
+msgid "E892: Using a String as a Float"
+msgstr "E892: 文字列を浮動小数点数として扱っています"
+
+msgid "E893: Using a List as a Float"
+msgstr "E893: リスト型を浮動小数点数として扱っています"
+
+msgid "E894: Using a Dictionary as a Float"
+msgstr "E894: 辞書型を浮動小数点数として扱っています"
+
+msgid ""
+"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
+"could not be loaded."
+msgstr ""
+"E895: このコマンドは無効です、ごめんなさい。MzScheme の racket/base モジュー"
+"ルがロードできませんでした。"
+
+#, c-format
+msgid "E896: Argument of %s must be a List, Dictionary or Blob"
+msgstr "E896: %s の引数はリスト型、辞書型またはBlob型でなければなりません"
+
+msgid "E897: List or Blob required"
+msgstr "E897: リスト型またはBlob型が必要です"
+
+msgid "E898: socket() in channel_connect()"
+msgstr "E898: channel_connect() 内の socket() が失敗しました"
+
+#, c-format
+msgid "E899: Argument of %s must be a List or Blob"
+msgstr "E899: %s の引数はリスト型またはBlob型でなければなりません"
+
+msgid "E900: maxdepth must be non-negative number"
+msgstr "E900: maxdepth は非負数でなければなりません"
+
+#, c-format
+msgid "E901: getaddrinfo() in channel_open(): %s"
+msgstr "E901: channel_open() 内の getaddrinfo(): %s"
+
+msgid "E901: gethostbyname() in channel_open()"
+msgstr "E901: channel_open() 内の gethostbyname() が失敗しました"
+
+msgid "E902: Cannot connect to port"
+msgstr "E902: ポートに接続できません"
+
+msgid "E903: received command with non-string argument"
+msgstr "E903: 非文字列の引数のコマンドを受信しました"
+
+msgid "E904: last argument for expr/call must be a number"
+msgstr "E904: expr/call の最後の引数は数字でなければなりません"
+
+msgid "E904: third argument for call must be a list"
+msgstr "E904: call の3番目の引数はリスト型でなければなりません"
+
+#, c-format
+msgid "E905: received unknown command: %s"
+msgstr "E905: 未知のコマンドを受信しました: %s"
+
+msgid "E906: not an open channel"
+msgstr "E906: 開いていないチャネルです"
+
+msgid "E907: Using a special value as a Float"
+msgstr "E907: 特殊値を浮動小数点数として扱っています"
+
+#, c-format
+msgid "E908: using an invalid value as a String: %s"
+msgstr "E908: 無効な値を文字列として扱っています: %s"
+
+msgid "E909: Cannot index a special variable"
+msgstr "E909: 特殊変数はインデックスできません"
+
+msgid "E910: Using a Job as a Number"
+msgstr "E910: ジョブを数値として扱っています"
+
+msgid "E911: Using a Job as a Float"
+msgstr "E911: ジョブを浮動小数点数として扱っています"
+
+msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
+msgstr ""
+"E912: raw や nl モードのチャネルに ch_evalexpr()/ch_sendexpr() は使えません"
+
+msgid "E913: Using a Channel as a Number"
+msgstr "E913: チャネルを数値として扱っています"
+
+msgid "E914: Using a Channel as a Float"
+msgstr "E914: チャネルを浮動小数点数として扱っています"
+
+msgid "E915: in_io buffer requires in_buf or in_name to be set"
+msgstr "E915: in_io バッファは in_buf か in_name の設定が必要です"
+
+msgid "E916: not a valid job"
+msgstr "E916: 有効なジョブではありません"
+
+#, c-format
+msgid "E917: Cannot use a callback with %s()"
+msgstr "E917: %s() にコールバックは使えません"
+
+#, c-format
+msgid "E918: buffer must be loaded: %s"
+msgstr "E918: バッファがロードされてなければなりません: %s"
+
#, c-format
msgid "E919: Directory not found in '%s': \"%s\""
msgstr "E919: ディレクトリが '%s' の中にありません: \"%s\""
-msgid "E952: Autocommand caused recursive behavior"
-msgstr "E952: Autocommandが再帰を引き起こしました"
+msgid "E920: _io file requires _name to be set"
+msgstr "E920: _io ファイルは _name の設定が必要です"
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: メニューは他のモードにだけあります"
+msgid "E921: Invalid callback argument"
+msgstr "E921: 無効なコールバック引数です"
+
+msgid "E922: expected a dict"
+msgstr "E922: 辞書が期待されています"
+
+msgid "E923: Second argument of function() must be a list or a dict"
+msgstr "E923: function() の第 2 引数はリスト型または辞書型でなければなりません"
+
+msgid "E924: Current window was closed"
+msgstr "E924: 現在のウィンドウが閉じられました"
+
+msgid "E925: Current quickfix list was changed"
+msgstr "E925: 現在の quickfix リストが変更されました"
+
+msgid "E926: Current location list was changed"
+msgstr "E926: 現在のロケーションリストが変更されました"
+
+#, c-format
+msgid "E927: Invalid action: '%s'"
+msgstr "E927: 無効な操作です: '%s'"
+
+msgid "E928: String required"
+msgstr "E928: 文字列が必要です"
+
+#, c-format
+msgid "E929: Too many viminfo temp files, like %s!"
+msgstr "E929: 一時viminfoファイルが多過ぎます! 例: %s"
+
+msgid "E930: Cannot use :redir inside execute()"
+msgstr "E930: execute() の中では :redir は使えません"
+
+msgid "E931: Buffer cannot be registered"
+msgstr "E931: バッファを登録できません"
+
+#, c-format
+msgid "E932: Closure function should not be at top level: %s"
+msgstr "E932: クロージャー関数はトップレベルに記述できません: %s"
+
+#, c-format
+msgid "E933: Function was deleted: %s"
+msgstr "E933: 関数は削除されました: %s"
+
+msgid "E934: Cannot jump to a buffer that does not have a name"
+msgstr "E934: 名前の無いバッファへはジャンプできません"
+
+#, c-format
+msgid "E935: invalid submatch number: %d"
+msgstr "E935: 無効なサブマッチ番号です: %d"
+
+msgid "E936: Cannot delete the current group"
+msgstr "E936: 現在のグループは削除できません"
+
+#, c-format
+msgid "E937: Attempt to delete a buffer that is in use: %s"
+msgstr "E937: 使用中のバッファを削除しようと試みました: %s"
+
+#, c-format
+msgid "E938: Duplicate key in JSON: \"%s\""
+msgstr "E938: JSONに重複キーがあります: \"%s\""
+
+msgid "E939: Positive count required"
+msgstr "E939: 正のカウントが必要です"
+
+#, c-format
+msgid "E940: Cannot lock or unlock variable %s"
+msgstr "E940: 変数 %s はロックまたはアンロックできません"
+
+msgid "E941: already started a server"
+msgstr "E941: サーバーは既に開始しています"
+
+msgid "E942: +clientserver feature not available"
+msgstr "E942: +clientserver 機能が無効になっています"
+
+msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
+msgstr ""
+"E943: コマンドテーブルを更新する必要があります、'make cmdidxs' を実行してくだ"
+"さい"
+
+msgid "E944: Reverse range in character class"
+msgstr "E944: 文字クラスの範囲が逆です"
+
+msgid "E945: Range too large in character class"
+msgstr "E945: 文字クラスの範囲が大きすぎます"
+
+msgid "E946: Cannot make a terminal with running job modifiable"
+msgstr "E946: 実行中のジョブがある端末は変更可能にできません"
+
+#, c-format
+msgid "E947: Job still running in buffer \"%s\""
+msgstr "E947: ジョブはバッファ \"%s\" でまだ実行中です"
+
+msgid "E948: Job still running"
+msgstr "E948: ジョブはまだ実行中です"
+
+msgid "E948: Job still running (add ! to end the job)"
+msgstr "E948: ジョブはまだ実行中です (! を追加でジョブを終了)"
+
+msgid "E949: File changed while writing"
+msgstr "E949: 書込み中にファイルが変更されました"
+
+#, c-format
+msgid "E950: Cannot convert between %s and %s"
+msgstr "E950: %s と %s の間で変換できません"
+
+msgid "E951: \\% value too large"
+msgstr "E951: \\% 値が大き過ぎます"
+
+msgid "E952: Autocommand caused recursive behavior"
+msgstr "E952: 自動コマンドが再帰を引き起こしました"
+
+#, c-format
+msgid "E953: File exists: %s"
+msgstr "E953: ファイルは既に存在します: %s"
+
+msgid "E954: 24-bit colors are not supported on this environment"
+msgstr "E954: 24bit色はこの環境ではサポートされていません"
+
+msgid "E955: Not a terminal buffer"
+msgstr "E955: 端末バッファではありません"
+
+msgid "E956: Cannot use pattern recursively"
+msgstr "E956: パターンを再帰的に使うことはできません"
msgid "E957: Invalid window number"
msgstr "E957: 無効なウィンドウ番号です"
+msgid "E958: Job already finished"
+msgstr "E958: ジョブは既に終了しています"
+
+msgid "E959: Invalid diff format."
+msgstr "E959: 無効なdiff形式です"
+
+msgid "E960: Problem creating the internal diff"
+msgstr "E960: 内部diff作成時に問題が発生しました"
+
+msgid "E961: no line number to use for \"<sflnum>\""
+msgstr "E961: \"<sflnum>\"を置き換える行番号がありません"
+
#, c-format
-msgid "E686: Argument of %s must be a List"
-msgstr "E686: %s の引数はリスト型でなければなりません"
+msgid "E962: Invalid action: '%s'"
+msgstr "E962: 無効な操作です: '%s'"
+
+#, c-format
+msgid "E963: setting %s to value with wrong type"
+msgstr "E963: %s を間違った型の値で設定しています"
+
+#, c-format
+msgid "E964: Invalid column number: %ld"
+msgstr "E964: 無効な列番号です: %ld"
+
+msgid "E965: missing property type name"
+msgstr "E965: プロパティタイプ名がありません"
+
+#, c-format
+msgid "E966: Invalid line number: %ld"
+msgstr "E966: 無効な行番号です: %ld"
+
+msgid "E967: text property info corrupted"
+msgstr "E967: テキストプロパティ情報が壊れています"
+
+msgid "E968: Need at least one of 'id' or 'type'"
+msgstr "E968: 最低 1 個の 'id' または 'type' が必要です"
+
+#, c-format
+msgid "E969: Property type %s already defined"
+msgstr "E969: プロパティタイプ %s は既に定義されています"
+
+#, c-format
+msgid "E970: Unknown highlight group name: '%s'"
+msgstr "E970: 未知のハイライトグループ名: '%s'"
+
+#, c-format
+msgid "E971: Property type %s does not exist"
+msgstr "E971: プロパティタイプ %s がありません"
+
+msgid "E972: Blob value does not have the right number of bytes"
+msgstr "E972: Blob値のバイト数が正しくありません"
+
+msgid "E973: Blob literal should have an even number of hex characters"
+msgstr "E973: Blobリテラルは偶数個の16進数文字でなければなりません"
+
+msgid "E974: Using a Blob as a Number"
+msgstr "E974: Blob型を数値として扱っています"
+
+msgid "E975: Using a Blob as a Float"
+msgstr "E975: Blob型を浮動小数点数として扱っています"
+
+msgid "E976: Using a Blob as a String"
+msgstr "E976: Blob型を文字列として扱っています"
+
+msgid "E977: Can only compare Blob with Blob"
+msgstr "E977: Blob型はBlob型としか比較できません"
+
+msgid "E978: Invalid operation for Blob"
+msgstr "E978: Blob型には無効な操作です"
+
+#, c-format
+msgid "E979: Blob index out of range: %ld"
+msgstr "E979: Blobのインデックスが範囲外です: %ld"
+
+msgid "E980: lowlevel input not supported"
+msgstr "E980: 低レベル入力はサポートされていません"
+
+msgid "E981: Command not allowed in rvim"
+msgstr "E981: rvimではこのコマンドを使えません"
+
+msgid "E982: ConPTY is not available"
+msgstr "E982: ConPTY が無効です"
+
+#, c-format
+msgid "E983: Duplicate argument: %s"
+msgstr "E983: 引数が重複しています: %s"
+
+msgid "E984: :scriptversion used outside of a sourced file"
+msgstr "E984: :scriptversion が取込みスクリプト以外で使用されました"
+
+msgid "E985: .= is not supported with script version >= 2"
+msgstr "E985: .= はスクリプトバージョン 2 以上では対応していません"
+
+msgid "E986: cannot modify the tag stack within tagfunc"
+msgstr "E986: tagfunc内のタグスタックを変更できません"
+
+msgid "E987: invalid return value from tagfunc"
+msgstr "E987: tagfuncからの戻り値が無効です"
+
+msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
+msgstr "E988: GUIは使用不可能です。gvim.exeを起動できません。"
+
+msgid "E989: Non-default argument follows default argument"
+msgstr "E989: 非デフォルト引数がデフォルト引数の後にあります"
+
+#, c-format
+msgid "E990: Missing end marker '%s'"
+msgstr "E990: 終端マーカーがありません '%s'"
+
+msgid "E991: cannot use =<< here"
+msgstr "E991: ここでは =<< は使えません"
+
+msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
+msgstr "E992: 'modelineexpr' がオフの時 modeline では許可されません"
+
+#, c-format
+msgid "E993: window %d is not a popup window"
+msgstr "E993: ウィンドウ %d はポップアップウィンドウではありません"
+
+msgid "E994: Not allowed in a popup window"
+msgstr "E994: ポップアップウィンドウでは許されません"
+
+msgid "E995: Cannot modify existing variable"
+msgstr "E995: 既存の変数を変更できません"
+
+msgid "E996: Cannot lock a range"
+msgstr "E996: 範囲はロックできません"
+
+msgid "E996: Cannot lock an option"
+msgstr "E996: オプションはロックできません"
+
+msgid "E996: Cannot lock a list or dict"
+msgstr "E996: リストあるいは辞書はロックできません"
+
+msgid "E996: Cannot lock an environment variable"
+msgstr "E996: 環境変数はロックできません"
+
+msgid "E996: Cannot lock a register"
+msgstr "E996: レジスタはロックできません"
+
+#, c-format
+msgid "E997: Tabpage not found: %d"
+msgstr "E997: タブページが見つかりません: %d"
+
+#, c-format
+msgid "E998: Reduce of an empty %s with no initial value"
+msgstr "E998: reduce が初期値無しで空の %s で呼ばれました"
+
+#, c-format
+msgid "E999: scriptversion not supported: %d"
+msgstr "E999: scriptversion はサポートされていません: %d"
+
+#, c-format
+msgid "E1001: Variable not found: %s"
+msgstr "E1001: 変数が見つかりません: %s"
+
+#, c-format
+msgid "E1002: Syntax error at %s"
+msgstr "E1002: %s に文法エラーがあります"
+
+msgid "E1003: Missing return value"
+msgstr "E1003: 戻り値がありません"
+
+#, c-format
+msgid "E1004: White space required before and after '%s' at \"%s\""
+msgstr "E1004: '%s' の前後にスペースが必要です (\"%s\")"
+
+msgid "E1005: Too many argument types"
+msgstr "E1005: 引数の型が多過ぎます"
+
+#, c-format
+msgid "E1006: %s is used as an argument"
+msgstr "E1006: %s が引数として使われています"
+
+msgid "E1007: Mandatory argument after optional argument"
+msgstr "E1007: オプション引数の後に必須引数があります"
+
+msgid "E1008: Missing <type>"
+msgstr "E1008: <type> がありません"
+
+msgid "E1009: Missing > after type"
+msgstr "E1009: 型の後に > がありません"
+
+#, c-format
+msgid "E1010: Type not recognized: %s"
+msgstr "E1010: 型を認識できません: %s"
+
+#, c-format
+msgid "E1011: Name too long: %s"
+msgstr "E1011: 名前が長過ぎます: %s"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s"
+msgstr "E1012: 型が不一致です。%s が必要ですが %s でした"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s in %s"
+msgstr "E1012: 型が不一致です。%s が必要ですが %s でした (%s 内)"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s"
+msgstr "E1013: 引数 %d: 型が不一致です。%s が必要ですが %s でした"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1013: 引数 %d: 型が不一致です。%s が必要ですが %s でした (%s 内)"
+
+#, c-format
+msgid "E1014: Invalid key: %s"
+msgstr "E1014: 無効なキーです: %s"
+
+#, c-format
+msgid "E1015: Name expected: %s"
+msgstr "E1015: 名前が要求されています: %s"
+
+#, c-format
+msgid "E1016: Cannot declare a %s variable: %s"
+msgstr "E1016: %s変数は宣言できません: %s"
+
+#, c-format
+msgid "E1016: Cannot declare an environment variable: %s"
+msgstr "E1016: 環境変数は宣言できません: %s"
+
+#, c-format
+msgid "E1017: Variable already declared: %s"
+msgstr "E1017: 変数は既に宣言されています: %s"
+
+#, c-format
+msgid "E1018: Cannot assign to a constant: %s"
+msgstr "E1018: 定数には代入できません: %s"
+
+msgid "E1019: Can only concatenate to string"
+msgstr "E1019: 文字列としか結合できません"
+
+#, c-format
+msgid "E1020: Cannot use an operator on a new variable: %s"
+msgstr "E1020: 新規の変数に対して演算子を使用できません: %s"
+
+msgid "E1021: Const requires a value"
+msgstr "E1021: const には値が必要です"
+
+msgid "E1022: Type or initialization required"
+msgstr "E1022: 型か初期化が必要です"
+
+#, c-format
+msgid "E1023: Using a Number as a Bool: %lld"
+msgstr "E1023: 数値をBoolとして扱っています: %lld"
+
+msgid "E1024: Using a Number as a String"
+msgstr "E1024: 数値を文字列として扱っています"
+
+msgid "E1025: Using } outside of a block scope"
+msgstr "E1025: ブロックスコープの外側で } が使用されました"
+
+msgid "E1026: Missing }"
+msgstr "E1026: } がありません"
+
+msgid "E1027: Missing return statement"
+msgstr "E1027: return 文がありません"
+
+msgid "E1028: Compiling :def function failed"
+msgstr "E1028: :def 関数のコンパイルに失敗しました"
+
+#, c-format
+msgid "E1029: Expected %s but got %s"
+msgstr "E1029: %s が期待されていますが %s でした"
+
+#, c-format
+msgid "E1030: Using a String as a Number: \"%s\""
+msgstr "E1030: 文字列を数値として扱っています: \"%s\""
+
+msgid "E1031: Cannot use void value"
+msgstr "E1031: void 値は使用できません"
+
+msgid "E1032: Missing :catch or :finally"
+msgstr "E1032: :catch または :finally がありません"
+
+msgid "E1033: Catch unreachable after catch-all"
+msgstr "E1033: 全てをcatchした後のcatchには到達しません"
+
+#, c-format
+msgid "E1034: Cannot use reserved name %s"
+msgstr "E1034: 予約名 %s は使用できません"
+
+msgid "E1035: % requires number arguments"
+msgstr "E1035: % には数値の引数が必要です"
+
+#, c-format
+msgid "E1036: %c requires number or float arguments"
+msgstr "E1036: %c には数値または浮動小数点数の引数が必要です"
+
+#, c-format
+msgid "E1037: Cannot use \"%s\" with %s"
+msgstr "E1037: \"%s\" を %s と組み合わせては使えません"
+
+msgid "E1038: \"vim9script\" can only be used in a script"
+msgstr "E1038: \"vim9script\" はスクリプトの中でのみ使用できます"
+
+msgid "E1039: \"vim9script\" must be the first command in a script"
+msgstr ""
+"E1039: \"vim9script\" はスクリプトの中の最初のコマンドでなければなりません"
+
+msgid "E1040: Cannot use :scriptversion after :vim9script"
+msgstr "E1040: :vim9script の後に :scriptversion は使用できません"
+
+#, c-format
+msgid "E1041: Redefining script item %s"
+msgstr "E1041: スクリプト要素 %s を再定義しています"
+
+msgid "E1042: Export can only be used in vim9script"
+msgstr "E1042: export は vim9script の中でのみ使用できます"
+
+msgid "E1043: Invalid command after :export"
+msgstr "E1043: :export の後に無効なコマンドがあります"
+
+msgid "E1044: Export with invalid argument"
+msgstr "E1044: export に無効な引数が渡されました"
+
+#, c-format
+msgid "E1047: Syntax error in import: %s"
+msgstr "E1047: import 内に文法エラーがあります: %s"
+
+#, c-format
+msgid "E1048: Item not found in script: %s"
+msgstr "E1048: 要素がスクリプト内で見つかりません: %s"
+
+#, c-format
+msgid "E1049: Item not exported in script: %s"
+msgstr "E1049: 要素がスクリプト内でエクスポートされていません: %s"
+
+#, c-format
+msgid "E1050: Colon required before a range: %s"
+msgstr "E1050: 範囲の前にはコロンが必要です: %s"
+
+msgid "E1051: Wrong argument type for +"
+msgstr "E1051: + の引数の型が違います"
+
+#, c-format
+msgid "E1052: Cannot declare an option: %s"
+msgstr "E1052: オプションは宣言できません: %s"
+
+#, c-format
+msgid "E1053: Could not import \"%s\""
+msgstr "E1053: \"%s\" をインポートできませんでした"
+
+#, c-format
+msgid "E1054: Variable already declared in the script: %s"
+msgstr "E1054: 変数は既にスクリプト内で宣言されています: %s"
+
+msgid "E1055: Missing name after ..."
+msgstr "E1055: ... の後に名前がありません"
+
+#, c-format
+msgid "E1056: Expected a type: %s"
+msgstr "E1056: 以下の型が必要です: %s"
+
+msgid "E1057: Missing :enddef"
+msgstr "E1057: :enddef がありません"
+
+msgid "E1058: Function nesting too deep"
+msgstr "E1058: 関数の入れ子が深過ぎます"
+
+#, c-format
+msgid "E1059: No white space allowed before colon: %s"
+msgstr "E1059: コロンの前にスペースは許されません: %s"
+
+#, c-format
+msgid "E1060: Expected dot after name: %s"
+msgstr "E1060: 名前の後にドットが必要です: %s"
+
+#, c-format
+msgid "E1061: Cannot find function %s"
+msgstr "E1061: 関数 %s が見つかりません"
+
+msgid "E1062: Cannot index a Number"
+msgstr "E1062: 数値はインデックスできません"
+
+msgid "E1063: Type mismatch for v: variable"
+msgstr "E1063: v: 変数の型が一致しません"
+
+msgid "E1064: Yank register changed while using it"
+msgstr "E1064: ヤンクレジスタが使用中に変更されました"
+
+#, c-format
+msgid "E1066: Cannot declare a register: %s"
+msgstr "E1066: レジスタは宣言できません: %s"
+
+#, c-format
+msgid "E1067: Separator mismatch: %s"
+msgstr "E1067: 区切りが一致しません: %s"
+
+#, c-format
+msgid "E1068: No white space allowed before '%s': %s"
+msgstr "E1068: '%s' の前にスペースは許されません: %s"
+
+#, c-format
+msgid "E1069: White space required after '%s': %s"
+msgstr "E1069: '%s' の後にスペースが必要です: %s"
+
+#, c-format
+msgid "E1071: Invalid string for :import: %s"
+msgstr "E1071: :import に不正な文字列があります: %s"
+
+#, c-format
+msgid "E1072: Cannot compare %s with %s"
+msgstr "E1072: %s と %s を比較できません"
+
+#, c-format
+msgid "E1073: Name already defined: %s"
+msgstr "E1073: 名前は既に定義されています: %s"
+
+msgid "E1074: No white space allowed after dot"
+msgstr "E1074: ドットの後にスペースは許されません"
+
+#, c-format
+msgid "E1075: Namespace not supported: %s"
+msgstr "E1075: ネームスペースには対応していません: %s"
+
+msgid "E1076: This Vim is not compiled with float support"
+msgstr "E1076: このVimは浮動小数点数サポート付きでコンパイルされていません"
+
+#, c-format
+msgid "E1077: Missing argument type for %s"
+msgstr "E1077: %s の引数の型がありません"
+
+#, c-format
+msgid "E1081: Cannot unlet %s"
+msgstr "E1081: %s を unlet できません"
+
+msgid "E1083: Missing backtick"
+msgstr "E1083: バッククォートがありません"
+
+#, c-format
+msgid "E1084: Cannot delete Vim9 script function %s"
+msgstr "E1084: Vim9 スクリプト関数は削除できません: %s"
+
+#, c-format
+msgid "E1085: Not a callable type: %s"
+msgstr "E1085: 呼出し可能な型ではありません: %s"
+
+msgid "E1086: Function reference invalid"
+msgstr "E1086: 関数参照が不正です"
+
+msgid "E1087: Cannot use an index when declaring a variable"
+msgstr "E1087: 変数を宣言する際にインデックスは使用できません"
+
+#, c-format
+msgid "E1089: Unknown variable: %s"
+msgstr "E1089: 不明な変数: %s"
+
+#, c-format
+msgid "E1090: Cannot assign to argument %s"
+msgstr "E1090: 引数 %s に対して代入できません"
+
+#, c-format
+msgid "E1091: Function is not compiled: %s"
+msgstr "E1091: 関数はコンパイルされていません: %s"
+
+#, c-format
+msgid "E1093: Expected %d items but got %d"
+msgstr "E1093: %d 個の要素が期待されていますが %d 個でした"
+
+msgid "E1094: Import can only be used in a script"
+msgstr "E1094: import はスクリプトの中でのみ使用できます"
+
+msgid "E1095: Unreachable code after :return"
+msgstr "E1095: :return の後に到達不能なコードがあります"
+
+msgid "E1096: Returning a value in a function without a return type"
+msgstr "E1096: 戻り値の型がない関数で値を返しています"
+
+msgid "E1097: Line incomplete"
+msgstr "E1097: 行が不完全です"
+
+msgid "E1098: String, List or Blob required"
+msgstr "E1098: 文字列型、リスト型またはBlob型が必要です"
+
+#, c-format
+msgid "E1099: Unknown error while executing %s"
+msgstr "E1099: %s を実行中に未知のエラーです"
+
+#, c-format
+msgid "E1100: Command not supported in Vim9 script (missing :var?): %s"
+msgstr ""
+"E1100: コマンドが Vim9 スクリプトでサポートされていません (:var がない?): %s"
+
+#, c-format
+msgid "E1101: Cannot declare a script variable in a function: %s"
+msgstr "E1101: 関数内でスクリプト変数は宣言できません: %s"
+
+#, c-format
+msgid "E1102: Lambda function not found: %s"
+msgstr "E1102: ラムダ関数が見つかりません: %s"
+
+msgid "E1103: Dictionary not set"
+msgstr "E1103: 辞書は設定されていません"
+
+msgid "E1104: Missing >"
+msgstr "E1104: > が見つかりません"
+
+#, c-format
+msgid "E1105: Cannot convert %s to string"
+msgstr "E1105: %s を文字列に変換できません"
+
+msgid "E1106: One argument too many"
+msgstr "E1106: 引数が 1 個多いです"
+
+#, c-format
+msgid "E1106: %d arguments too many"
+msgstr "E1106: 引数が %d 個多いです"
+
+msgid "E1107: String, List, Dict or Blob required"
+msgstr "E1107: 文字列型、リスト型、辞書型またはBlob型が必要です"
+
+#, c-format
+msgid "E1108: Item not found: %s"
+msgstr "E1108: 要素が見つかりません: %s"
+
+#, c-format
+msgid "E1109: List item %d is not a List"
+msgstr "E1109: リストの要素 %d はリストではありません"
+
+#, c-format
+msgid "E1110: List item %d does not contain 3 numbers"
+msgstr "E1110: リストの要素 %d は数値を 3 個含んでいません"
+
+#, c-format
+msgid "E1111: List item %d range invalid"
+msgstr "E1111: リストの要素 %d の範囲が不正です"
+
+#, c-format
+msgid "E1112: List item %d cell width invalid"
+msgstr "E1112: リストの要素 %d のセル幅が不正です"
+
+#, c-format
+msgid "E1113: Overlapping ranges for 0x%lx"
+msgstr "E1113: 0x%lx の範囲が重複しています"
+
+msgid "E1114: Only values of 0x100 and higher supported"
+msgstr "E1114: 0x100 以上の値しかサポートされていません"
+
+msgid "E1115: \"assert_fails()\" fourth argument must be a number"
+msgstr "E1115: \"assert_fails()\" の第4引数は数字でなければなりません"
+
+msgid "E1116: \"assert_fails()\" fifth argument must be a string"
+msgstr "E1116: \"assert_fails()\" の第5引数は文字列でなければなりません"
+
+msgid "E1117: Cannot use ! with nested :def"
+msgstr "E1117: ! を入れ子になった :def と組み合わせては使えません"
+
+msgid "E1118: Cannot change list"
+msgstr "E1118: リストを変更できません"
+
+msgid "E1119: Cannot change list item"
+msgstr "E1119: リストの要素を変更できません"
+
+msgid "E1120: Cannot change dict"
+msgstr "E1120: 辞書を変更できません"
+
+msgid "E1121: Cannot change dict item"
+msgstr "E1121: 辞書の要素を変更できません"
+
+#, c-format
+msgid "E1122: Variable is locked: %s"
+msgstr "E1122: 変数がロックされています: %s"
+
+#, c-format
+msgid "E1123: Missing comma before argument: %s"
+msgstr "E1123: 引数の前にコンマがありません: %s"
+
+#, c-format
+msgid "E1124: \"%s\" cannot be used in legacy Vim script"
+msgstr "E1124: \"%s\" は旧来の Vim スクリプトの中では使用できません"
+
+msgid "E1125: Final requires a value"
+msgstr "E1125: final には値が必要です"
+
+msgid "E1126: Cannot use :let in Vim9 script"
+msgstr "E1126: Vim9 スクリプトでは :let は使用できません"
+
+msgid "E1127: Missing name after dot"
+msgstr "E1127: ドットの後に名前がありません"
+
+msgid "E1128: } without {"
+msgstr "E1128: { のない } があります"
+
+msgid "E1129: Throw with empty string"
+msgstr "E1129: 空文字列が throw されています"
+
+msgid "E1130: Cannot add to null list"
+msgstr "E1130: null リストには追加できません"
+
+msgid "E1131: Cannot add to null blob"
+msgstr "E1131: null blob には追加できません"
+
+msgid "E1132: Missing function argument"
+msgstr "E1132: 引数に関数がありません"
+
+msgid "E1133: Cannot extend a null dict"
+msgstr "E1133: null 辞書は拡張できません"
+
+msgid "E1134: Cannot extend a null list"
+msgstr "E1134: null リストは拡張できません"
+
+#, c-format
+msgid "E1135: Using a String as a Bool: \"%s\""
+msgstr "E1135: 文字列をBoolとして扱っています: \"%s\""
+
+msgid "E1136: <Cmd> mapping must end with <CR> before second <Cmd>"
+msgstr ""
+"E1136: <Cmd> マッピングは次の <Cmd> の前に <CR> で終わらなければなりません"
+
+#, c-format
+msgid "E1137: <Cmd> mapping must not include %s key"
+msgstr "E1137: <Cmd> マッピングは %s キーを含んではいけません"
+
+msgid "E1138: Using a Bool as a Number"
+msgstr "E1138: Boolを数値として扱っています"
+
+msgid "E1139: Missing matching bracket after dict key"
+msgstr "E1139: 辞書のキーの後に一致する角括弧がありません"
+
+msgid "E1140: :for argument must be a sequence of lists"
+msgstr "E1140: :for の引数はリストのシーケンスでなければなりません"
+
+msgid "E1141: Indexable type required"
+msgstr "E1141: インデックス可能な型が必要です"
+
+#, c-format
+msgid "E1143: Empty expression: \"%s\""
+msgstr "E1143: 空の式です: \"%s\""
+
+#, c-format
+msgid "E1144: Command \"%s\" is not followed by white space: %s"
+msgstr "E1144: コマンド \"%s\" の後に空白がありません: %s"
+
+#, c-format
+msgid "E1145: Missing heredoc end marker: %s"
+msgstr "E1145: heredocの終端マーカーがありません '%s'"
+
+#, c-format
+msgid "E1146: Command not recognized: %s"
+msgstr "E1146: コマンドを認識できません: %s"
+
+msgid "E1147: List not set"
+msgstr "E1147: リストは設定されていません"
+
+#, c-format
+msgid "E1148: Cannot index a %s"
+msgstr "E1148: %s をインデックスできません"
+
+#, c-format
+msgid "E1149: Script variable is invalid after reload in function %s"
+msgstr "E1149: 関数 %s 内でリロード後のスクリプト変数は無効です"
+
+msgid "E1150: Script variable type changed"
+msgstr "E1150: スクリプト変数の型が変更されました"
+
+msgid "E1151: Mismatched endfunction"
+msgstr "E1151: endfunction が一致しません"
+
+msgid "E1152: Mismatched enddef"
+msgstr "E1152: enddef が一致しません"
+
+#, c-format
+msgid "E1153: Invalid operation for %s"
+msgstr "E1153: %s には無効な操作です"
+
+msgid "E1154: Divide by zero"
+msgstr "E1154: ゼロ除算"
+
+msgid "E1155: Cannot define autocommands for ALL events"
+msgstr "E1155: 全てのイベントに対しての自動コマンドは定義できません"
+
+msgid "E1156: Cannot change the argument list recursively"
+msgstr "E1156: 引数リストを再帰的に変更することはできません"
+
+msgid "E1157: Missing return type"
+msgstr "E1157: 戻り値の型がありません"
+
+msgid "E1158: Cannot use flatten() in Vim9 script"
+msgstr "E1158: Vim9 スクリプトでは flatten() は使用できません"
+
+msgid "E1159: Cannot split a window when closing the buffer"
+msgstr "E1159: バッファを閉じている間にウィンドウを分割することはできません"
+
+msgid "E1160: Cannot use a default for variable arguments"
+msgstr "E1160: 可変引数に対してデフォルトを使用できません"
+
+#, c-format
+msgid "E1161: Cannot json encode a %s"
+msgstr "E1161: %s を json エンコードできません"
+
+#, c-format
+msgid "E1162: Register name must be one character: %s"
+msgstr "E1162: レジスタ名は1文字でなければなりません: %s"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s"
+msgstr "E1163: 変数 %d: 型が不一致です。%s が必要ですが %s でした"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1163: 変数 %d: 型が不一致です。%s が必要ですが %s でした (%s 内)"
+
+msgid "E1164: vim9cmd must be followed by a command"
+msgstr "E1164: vim9cmd は後ろにコマンドが必要です"
+
+#, c-format
+msgid "E1165: Cannot use a range with an assignment: %s"
+msgstr "E1165: 代入で範囲は使用できません: %s"
+
+msgid "E1166: Cannot use a range with a dictionary"
+msgstr "E1166: 辞書で範囲は使用できません"
+
+#, c-format
+msgid "E1167: Argument name shadows existing variable: %s"
+msgstr "E1167: 引数名が既存の変数を隠しています: %s"
+
+#, c-format
+msgid "E1168: Argument already declared in the script: %s"
+msgstr "E1168: 引数は既にスクリプト内で宣言されています: %s"
+
+msgid "E1169: 'import * as {name}' not supported here"
+msgstr "E1169: 'import * as {name}' はここではサポートされていません"
+
+msgid "E1170: Cannot use #{ to start a comment"
+msgstr "E1170: コメントの開始に #{ は使用できません"
+
+msgid "E1171: Missing } after inline function"
+msgstr "E1171: インライン関数の後に } がありません"
+
+msgid "E1172: Cannot use default values in a lambda"
+msgstr "E1172: ラムダではデフォルト値を使用できません"
+
+#, c-format
+msgid "E1173: Text found after %s: %s"
+msgstr "E1173: %s の後に文字があります: %s"
+
+#, c-format
+msgid "E1174: String required for argument %d"
+msgstr "E1174: 引数 %d には文字列が必要です"
+
+#, c-format
+msgid "E1175: Non-empty string required for argument %d"
+msgstr "E1175: 引数 %d には空ではない文字列が必要です"
+
+msgid "E1176: Misplaced command modifier"
+msgstr "E1176: 間違ったコマンド修飾子です"
+
+#, c-format
+msgid "E1177: For loop on %s not supported"
+msgstr "E1177: %s に対する for ループはサポートされていません"
+
+msgid "E1178: Cannot lock or unlock a local variable"
+msgstr "E1178: ローカル変数はロックまたはアンロックできません"
+
+#, c-format
+msgid ""
+"E1179: Failed to extract PWD from %s, check your shell's config related to "
+"OSC 7"
+msgstr ""
+"E1179: %s から PWD を抽出するのに失敗しました。OSC 7 関連のシェルの設定を確認"
+"してください"
+
+#, c-format
+msgid "E1180: Variable arguments type must be a list: %s"
+msgstr "E1180: 可変引数の型はリストでなければなりません: %s"
+
+msgid "E1181: Cannot use an underscore here"
+msgstr "E1181: ここではアンダースコアは使えません"
+
+msgid "E1182: Blob required"
+msgstr "E1182: Blob型が必要です"
+
+#, c-format
+msgid "E1183: Cannot use a range with an assignment operator: %s"
+msgstr "E1183: 代入演算子で範囲は使用できません: %s"
+
+msgid "E1184: Blob not set"
+msgstr "E1184: Blob は設定されていません"
+
+msgid "E1185: Cannot nest :redir"
+msgstr "E1185: :redir は入れ子にできません"
+
+msgid "E1185: Missing :redir END"
+msgstr "E1185: :redir END がありません"
+
+#, c-format
+msgid "E1186: Expression does not result in a value: %s"
+msgstr "E1186: 式が値を返しませんでした: %s"
+
+msgid "E1187: Failed to source defaults.vim"
+msgstr "E1187: defaults.vim の読込みに失敗しました"
+
+msgid "E1188: Cannot open a terminal from the command line window"
+msgstr "E1188: コマンドラインウィンドウから端末を開くことはできません"
+
+#, c-format
+msgid "E1189: Cannot use :legacy with this command: %s"
+msgstr "E1189: このコマンドには :legacy を使用できません: %s"
+
+msgid "E1190: One argument too few"
+msgstr "E1190: 引数が 1 個少ないです"
+
+#, c-format
+msgid "E1190: %d arguments too few"
+msgstr "E1190: 引数が %d 個少ないです"
+
+#, c-format
+msgid "E1191: Call to function that failed to compile: %s"
+msgstr "E1191: コンパイルに失敗した関数を呼出そうとしています: %s"
+
+msgid "E1192: Empty function name"
+msgstr "E1192: 関数名が空です"
+
+msgid "E1193: cryptmethod xchacha20 not built into this Vim"
+msgstr "E1193: この Vim には暗号化メソッド xchacha20 が組込まれていません"
+
+msgid "E1194: Cannot encrypt header, not enough space"
+msgstr "E1194: ヘッダを暗号化できません、スペースが足りません"
+
+msgid "E1195: Cannot encrypt buffer, not enough space"
+msgstr "E1195: バッファを暗号化できません、スペースが足りません"
+
+msgid "E1196: Cannot decrypt header, not enough space"
+msgstr "E1196: ヘッダを復号できません、スペースが足りません"
+
+msgid "E1197: Cannot allocate_buffer for encryption"
+msgstr "E1197: 暗号化用のバッファを確保できません"
+
+msgid "E1198: Decryption failed: Header incomplete!"
+msgstr "E1198: 復号に失敗: ヘッダが不完全です!"
+
+msgid "E1199: Cannot decrypt buffer, not enough space"
+msgstr "E1199: バッファを復号できません、スペースが足りません"
+
+msgid "E1200: Decryption failed!"
+msgstr "E1200: 復号に失敗!"
+
+msgid "E1201: Decryption failed: pre-mature end of file!"
+msgstr "E1201: 復号に失敗: 予期せぬファイルの終わりです!"
+
+#, c-format
+msgid "E1202: No white space allowed after '%s': %s"
+msgstr "E1202: '%s' の後にスペースは許されません: %s"
+
+#, c-format
+msgid "E1203: Dot can only be used on a dictionary: %s"
+msgstr "E1203: ドットは辞書の中でのみ使用できます: %s"
+
+#, c-format
+msgid "E1204: No Number allowed after .: '\\%%%c'"
+msgstr "E1204: . の後に数字は許されません: '\\%%%c'"
+
+msgid "E1205: No white space allowed between option and"
+msgstr "E1205: オプションとの間にスペースは許されません"
+
+#, c-format
+msgid "E1206: Dictionary required for argument %d"
+msgstr "E1206: 引数 %d には辞書が必要です"
+
+#, c-format
+msgid "E1207: Expression without an effect: %s"
+msgstr "E1207: 効果のない式です: %s"
+
+msgid "E1208: -complete used without allowing arguments"
+msgstr "E1208: -complete が引数を許可されずに使われています"
+
+#, c-format
+msgid "E1209: Invalid value for a line number: \"%s\""
+msgstr "E1209: 行番号として無効な値です: \"%s\""
+
+#, c-format
+msgid "E1210: Number required for argument %d"
+msgstr "E1210: 引数 %d には数値が必要です"
+
+#, c-format
+msgid "E1211: List required for argument %d"
+msgstr "E1211: 引数 %d にはリストが必要です"
+
+#, c-format
+msgid "E1212: Bool required for argument %d"
+msgstr "E1212: 引数 %d にはBoolが必要です"
+
+#, c-format
+msgid "E1213: Redefining imported item \"%s\""
+msgstr "E1213: インポートされた要素 \"%s\" を再定義しています"
+
+#, c-format
+msgid "E1214: Digraph must be just two characters: %s"
+msgstr "E1214: ダイグラフはちょうど2文字でなければなりません: %s"
+
+#, c-format
+msgid "E1215: Digraph must be one character: %s"
+msgstr "E1215: ダイグラフは1文字でなければなりません: %s"
+
+msgid ""
+"E1216: digraph_setlist() argument must be a list of lists with two items"
+msgstr ""
+"E1216: digraph_setlist() の引数は2要素のリストのリストでなければなりません"
+
+#, c-format
+msgid "E1217: Channel or Job required for argument %d"
+msgstr "E1217: 引数 %d にはチャネルまたはジョブが必要です"
+
+#, c-format
+msgid "E1218: Job required for argument %d"
+msgstr "E1218: 引数 %d にはジョブが必要です"
+
+#, c-format
+msgid "E1219: Float or Number required for argument %d"
+msgstr "E1219: 引数 %d には浮動小数点数または数値が必要です"
+
+#, c-format
+msgid "E1220: String or Number required for argument %d"
+msgstr "E1220: 引数 %d には文字列または数値が必要です"
+
+#, c-format
+msgid "E1221: String or Blob required for argument %d"
+msgstr "E1221: 引数 %d には文字列またはBlobが必要です"
+
+#, c-format
+msgid "E1222: String or List required for argument %d"
+msgstr "E1222: 引数 %d には文字列またはリストが必要です"
+
+#, c-format
+msgid "E1223: String or Dictionary required for argument %d"
+msgstr "E1223: 引数 %d には文字列または辞書が必要です"
+
+#, c-format
+msgid "E1224: String, Number or List required for argument %d"
+msgstr "E1224: 引数 %d には文字列、数値またはリストが必要です"
+
+#, c-format
+msgid "E1225: String, List or Dictionary required for argument %d"
+msgstr "E1225: 引数 %d には文字列、リストまたは辞書が必要です"
+
+#, c-format
+msgid "E1226: List or Blob required for argument %d"
+msgstr "E1226: 引数 %d にはリストまたはBlobが必要です"
+
+#, c-format
+msgid "E1227: List or Dictionary required for argument %d"
+msgstr "E1227: 引数 %d にはリストまたは辞書が必要です"
+
+#, c-format
+msgid "E1228: List, Dictionary or Blob required for argument %d"
+msgstr "E1228: 引数 %d にはリスト、辞書またはBlobが必要です"
+
+#, c-format
+msgid "E1229: Expected dictionary for using key \"%s\", but got %s"
+msgstr "E1229: 辞書のキーに \"%s\" が期待されていますが %s でした"
+
+msgid "E1230: Encryption: sodium_mlock() failed"
+msgstr "E1230: 暗号化: sodium_mlock() に失敗"
+
+#, c-format
+msgid "E1231: Cannot use a bar to separate commands here: %s"
+msgstr "E1231: ここでコマンドを区切るために '|' を使用できません: %s"
+
+msgid "E1232: Argument of exists_compiled() must be a literal string"
+msgstr "E1232: exists_compiled() の引数はリテラル文字列でなければなりません"
+
+msgid "E1233: exists_compiled() can only be used in a :def function"
+msgstr "E1233: exists_compiled() は :def 関数の中でのみ使用できます"
+
+msgid "E1234: legacy must be followed by a command"
+msgstr "E1234: legacy は後ろにコマンドが必要です"
+
+msgid "E1235: Function reference is not set"
+msgstr "E1235: 関数参照が設定されていません"
+
+#, c-format
+msgid "E1236: Cannot use %s itself, it is imported"
+msgstr "E1236: %s 自身を使うことはできません、インポートされています"
+
+#, c-format
+msgid "E1237: No such user-defined command in current buffer: %s"
+msgstr "E1237: 現在のバッファにそのユーザー定義コマンドはありません: %s"
+
+#, c-format
+msgid "E1238: Blob required for argument %d"
+msgstr "E1238: 引数 %d にはBlobが必要です"
+
+#, c-format
+msgid "E1239: Invalid value for blob: %d"
+msgstr "E1239: blobとして無効な値です: %d"
+
+msgid "E1240: Resulting text too long"
+msgstr "E1240: テキストが長くなりすぎました"
+
+#, c-format
+msgid "E1241: Separator not supported: %s"
+msgstr "E1241: そのセパレータには対応していません: %s"
+
+#, c-format
+msgid "E1242: No white space allowed before separator: %s"
+msgstr "E1242: セパレータの前にスペースは許されません: %s"
+
+msgid "E1243: ASCII code not in 32-127 range"
+msgstr "E1243: ASCIIコードが32-127の範囲にありません"
+
+#, c-format
+msgid "E1244: Bad color string: %s"
+msgstr "E1244: 無効なカラー名文字列です: %s"
+
+msgid "E1245: Cannot expand <sfile> in a Vim9 function"
+msgstr "E1245: Vim9 関数では <sfile> は展開できません"
+
+#, c-format
+msgid "E1246: Cannot find variable to (un)lock: %s"
+msgstr "E1246: (アン)ロックする変数が見つかりません: %s"
+
+msgid "E1247: Line number out of range"
+msgstr "E1247: 範囲外の行番号です"
+
+msgid "E1248: Closure called from invalid context"
+msgstr "E1248: 不正な文脈でクロージャが呼ばれました"
+
+msgid "E1249: Highlight group name too long"
+msgstr "E1249: ハイライトグループ名が長すぎます"
+
+#, c-format
+msgid "E1250: Argument of %s must be a List, String, Dictionary or Blob"
+msgstr "E1250: %s の引数はリスト、文字列、辞書またはBlobでなければなりません"
+
+#, c-format
+msgid "E1251: List, Dictionary, Blob or String required for argument %d"
+msgstr "E1251: 引数 %d にはリスト、辞書、Blobまたは文字列が必要です"
+
+#, c-format
+msgid "E1252: String, List or Blob required for argument %d"
+msgstr "E1252: 引数 %d には文字列、リストまたはBlobが必要です"
+
+#, c-format
+msgid "E1253: String expected for argument %d"
+msgstr "E1253: 引数 %d には文字列が必要です"
+
+msgid "E1254: Cannot use script variable in for loop"
+msgstr "E1254: forループ内でスクリプト変数は使用できません"
+
+msgid "E1255: <Cmd> mapping must end with <CR>"
+msgstr "E1255: <Cmd> マッピングは <CR> で終わらなければなりません"
+
+#, c-format
+msgid "E1256: String or function required for argument %d"
+msgstr "E1256: 引数 %d には文字列または関数が必要です"
+
+#, c-format
+msgid "E1257: Imported script must use \"as\" or end in .vim: %s"
+msgstr ""
+"E1257: インポートされたスクリプトは \"as\" を使うか .vim で終わらなければなり"
+"ません: %s"
+
+#, c-format
+msgid "E1258: No '.' after imported name: %s"
+msgstr "E1258: インポート名の後に '.' がありません: %s"
+
+#, c-format
+msgid "E1259: Missing name after imported name: %s"
+msgstr "E1259: インポート名の後に名前がありません: %s"
+
+#, c-format
+msgid "E1260: Cannot unlet an imported item: %s"
+msgstr "E1260: インポートされた要素はunletできません: %s"
+
+msgid "E1261: Cannot import .vim without using \"as\""
+msgstr "E1261: \"as\" を使わずに .vim をインポートすることはできません"
+
+#, c-format
+msgid "E1262: Cannot import the same script twice: %s"
+msgstr "E1262: 同じスクリプトを2回インポートすることはできません: %s"
+
+msgid "E1263: Using autoload in a script not under an autoload directory"
+msgstr "E1263: autoloadディレクトリに無いスクリプトでautoloadを使っています"
+
+#, c-format
+msgid "E1264: Autoload import cannot use absolute or relative path: %s"
+msgstr ""
+"E1264: autoloadインポートで絶対または相対パスを使うことはできません: %s"
+
+msgid "--No lines in buffer--"
+msgstr "--バッファに行がありません--"
msgid "search hit TOP, continuing at BOTTOM"
msgstr "上まで検索したので下に戻ります"
@@ -7029,6 +8132,9 @@
msgid "search hit BOTTOM, continuing at TOP"
msgstr "下まで検索したので上に戻ります"
+msgid " line "
+msgstr " 行 "
+
#, c-format
msgid "Need encryption key for \"%s\""
msgstr "暗号キーが必要です: \"%s\""
@@ -7061,7 +8167,7 @@
#, c-format
msgid ""
"expected int(), long() or something supporting coercing to long(), but got %s"
-msgstr "long() かそれへ変換可能なものが期待されているのに %s でした"
+msgstr "int(), long() かそれへ変換可能なものが期待されているのに %s でした"
#, c-format
msgid "expected int() or something supporting coercing to int(), but got %s"
@@ -7086,9 +8192,6 @@
msgid "invalid attribute: %s"
msgstr "無効な属性です: %s"
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: I/Oオブジェクトの初期化エラー"
-
msgid "failed to change directory"
msgstr "辞書の変更に失敗しました"
@@ -7128,7 +8231,7 @@
#, c-format
msgid "internal error: failed to get Vim list item %d"
-msgstr "内部エラー: vimのリスト要素 %d の取得に失敗しました"
+msgstr "内部エラー: Vimのリスト要素 %d の取得に失敗しました"
msgid "slice step cannot be zero"
msgstr "スライスのステップに 0 は指定できません"
@@ -7139,7 +8242,7 @@
#, c-format
msgid "internal error: no Vim list item %d"
-msgstr "内部エラー: vimのリスト要素 %d はありません"
+msgstr "内部エラー: Vimのリスト要素 %d はありません"
msgid "internal error: not enough list items"
msgstr "内部エラー: リストに十分な要素がありません"
@@ -7199,7 +8302,7 @@
msgstr "削除されたウィンドウを参照しようとしました"
msgid "readonly attribute: buffer"
-msgstr "読込専用属性: バッファー"
+msgstr "読込専用属性: バッファ"
msgid "cursor position outside buffer"
msgstr "カーソル位置がバッファの外側です"
@@ -7244,23 +8347,17 @@
msgid "failed to run the code"
msgstr "コードの実行に失敗しました"
-msgid "E858: Eval did not return a valid python object"
-msgstr "E858: 式評価は有効なpythonオブジェクトを返しませんでした"
-
-msgid "E859: Failed to convert returned python object to a Vim value"
-msgstr "E859: 返されたpythonオブジェクトをvimの値に変換できませんでした"
-
#, c-format
msgid "unable to convert %s to a Vim dictionary"
-msgstr "%s vimの辞書型に変換できません"
+msgstr "%s をVimの辞書に変換できません"
#, c-format
msgid "unable to convert %s to a Vim list"
-msgstr "%s をvimのリストに変換できません"
+msgstr "%s をVimのリストに変換できません"
#, c-format
msgid "unable to convert %s to a Vim structure"
-msgstr "%s をvimの構造体に変換できません"
+msgstr "%s をVimの構造体に変換できません"
msgid "internal error: NULL reference passed"
msgstr "内部エラー: NULL参照が渡されました"
@@ -7330,6 +8427,7 @@
"C++ソース (*.cpp, *.hpp)\t*.cpp;*.hpp\n"
"Vimファイル (*.vim, _vimrc, _gvimrc)\t*.vim;_vimrc;_gvimrc\n"
+# No need to translate this.
#~ msgid "GVim"
#~ msgstr ""
@@ -7342,8 +8440,1396 @@
msgid "Text;editor;"
msgstr "テキスト;エディタ;"
-#~ msgid "gvim"
-#~ msgstr ""
-
+# No need to translate this.
#~ msgid "Vim"
#~ msgstr ""
+
+msgid "(local to window)"
+msgstr "(ウィンドウについてローカル)"
+
+msgid "(local to buffer)"
+msgstr "(バッファについてローカル)"
+
+msgid "(global or local to buffer)"
+msgstr "(グローバル/バッファについてローカル)"
+
+msgid ""
+"\" Each \"set\" line shows the current value of an option (on the left)."
+msgstr "\" それぞれの \"set\" 行はオプションの現在の値を(左側に)示しています。"
+
+msgid "\" Hit <Enter> on a \"set\" line to execute it."
+msgstr "\" \"set\" 行で <Enter> を打つとそれが実行されます。"
+
+msgid "\" A boolean option will be toggled."
+msgstr "\" 切替オプションは切り替えられます。"
+
+msgid ""
+"\" For other options you can edit the value before hitting "
+"<Enter>."
+msgstr ""
+"\" その他のオプションは <Enter> を打つ前に値を編集することができま"
+"す。"
+
+msgid "\" Hit <Enter> on a help line to open a help window on this option."
+msgstr ""
+"\" ヘルプ行で <Enter> を打つと、このオプションのへルプウィンドウが開きます。"
+
+msgid "\" Hit <Enter> on an index line to jump there."
+msgstr "\" インデックス行で <Enter> を打つと、そこにジャンプします。"
+
+msgid "\" Hit <Space> on a \"set\" line to refresh it."
+msgstr "\" \"set\" 行で <Spece> を打つと、最新の値が読込まれます。"
+
+msgid "important"
+msgstr "重要"
+
+msgid "behave very Vi compatible (not advisable)"
+msgstr "Vi との互換性を非常に高くする (望ましくない)"
+
+msgid "list of flags to specify Vi compatibility"
+msgstr "Vi との互換性を指定するフラグのリスト"
+
+msgid "use Insert mode as the default mode"
+msgstr "挿入モードを既定のモードとして使う"
+
+msgid "paste mode, insert typed text literally"
+msgstr "paste モード、タイプされたテキストをそのまま挿入する"
+
+msgid "key sequence to toggle paste mode"
+msgstr "paste モードを切り替えるためのキー列"
+
+msgid "list of directories used for runtime files and plugins"
+msgstr "ランタイムファイルとプラグインに使われるディレクトリのリスト"
+
+msgid "list of directories used for plugin packages"
+msgstr "プラグインパッケージに使われるディレクトリのリスト"
+
+msgid "name of the main help file"
+msgstr "メインのヘルプファイルの名前"
+
+msgid "moving around, searching and patterns"
+msgstr "移動、検索とパターン"
+
+msgid "list of flags specifying which commands wrap to another line"
+msgstr "どのコマンドが行をまたぐかを指定するフラグのリスト"
+
+msgid ""
+"many jump commands move the cursor to the first non-blank\n"
+"character of a line"
+msgstr "多くのジャンプ命令で、カーソルが行内の最初の非空白文字に移動する"
+
+msgid "nroff macro names that separate paragraphs"
+msgstr "段落を分けるための nroff マクロの名前"
+
+msgid "nroff macro names that separate sections"
+msgstr "章を分けるための nroff マクロの名前"
+
+msgid "list of directory names used for file searching"
+msgstr "ファイルの検索に用いられるディレクトリ名のリスト"
+
+msgid ":cd without argument goes to the home directory"
+msgstr "引数無しの :cd でホームディレクトリに移動する"
+
+msgid "list of directory names used for :cd"
+msgstr ":cd に用いられるディレクトリ名のリスト"
+
+msgid "change to directory of file in buffer"
+msgstr "バッファ内のファイルのディレクトリに変更する"
+
+msgid "change to pwd of shell in terminal buffer"
+msgstr "端末バッファ内のシェルの pwd に変更する"
+
+msgid "search commands wrap around the end of the buffer"
+msgstr "検索コマンドがバッファの末尾/先頭をまたぐ"
+
+msgid "show match for partly typed search command"
+msgstr "部分的に入力された検索コマンドのマッチを表示する"
+
+msgid "change the way backslashes are used in search patterns"
+msgstr "検索パターン内のバックスラッシュの扱いを変更する"
+
+msgid "select the default regexp engine used"
+msgstr "既定で使われる正規表現エンジンを選択する"
+
+msgid "ignore case when using a search pattern"
+msgstr "検索パターンにおいて大文字と小文字を区別しない"
+
+msgid "override 'ignorecase' when pattern has upper case characters"
+msgstr "検索パターンが大文字を含んでいたら 'ignorecase' を上書きする"
+
+msgid "what method to use for changing case of letters"
+msgstr "大文字・小文字を変更する際にどの方法を使うか"
+
+msgid "maximum amount of memory in Kbyte used for pattern matching"
+msgstr "パターンマッチングに使う最大メモリ量 (Kbyte)"
+
+msgid "pattern for a macro definition line"
+msgstr "マクロ定義行のためのパターン"
+
+msgid "pattern for an include-file line"
+msgstr "include 行のためのパターン"
+
+msgid "expression used to transform an include line to a file name"
+msgstr "include 行をファイル名に変換するために使われる式"
+
+msgid "tags"
+msgstr "タグ"
+
+msgid "use binary searching in tags files"
+msgstr "tags ファイル内で二分探索を使う"
+
+msgid "number of significant characters in a tag name or zero"
+msgstr "タグ名で有効になる文字数、あるいはゼロ"
+
+msgid "list of file names to search for tags"
+msgstr "tags を検索するファイル名のリスト"
+
+msgid ""
+"how to handle case when searching in tags files:\n"
+"\"followic\" to follow 'ignorecase', \"ignore\" or \"match\""
+msgstr ""
+"タグファイル内を検索するときに大文字小文字をどう扱うか:\n"
+"'ignorecase' に従うなら \"followic\"、あるいは \"ignore\" か \"match\""
+
+msgid "file names in a tags file are relative to the tags file"
+msgstr "tags ファイル内のファイル名は tags ファイルからの相対パス"
+
+msgid "a :tag command will use the tagstack"
+msgstr ":tag コマンドはタグスタックを使う"
+
+msgid "when completing tags in Insert mode show more info"
+msgstr "挿入モードでタグを補完するときにより多くの情報を表示する"
+
+msgid "a function to be used to perform tag searches"
+msgstr "タグの検索を実行する際に使われる関数"
+
+msgid "command for executing cscope"
+msgstr "cscope を実行するコマンド"
+
+msgid "use cscope for tag commands"
+msgstr "tag コマンドに cscope を使う"
+
+msgid "0 or 1; the order in which \":cstag\" performs a search"
+msgstr "0 か 1; \":cstag\" が検索を実行する際の順序"
+
+msgid "give messages when adding a cscope database"
+msgstr "cscope のデータベースに追加する際にメッセージを表示"
+
+msgid "how many components of the path to show"
+msgstr "パスの要素を何個まで表示するか"
+
+msgid "when to open a quickfix window for cscope"
+msgstr "cscope のために quickfix ウィンドウをいつ開くか"
+
+msgid "file names in a cscope file are relative to that file"
+msgstr "cscope ファイル内のファイル名はそのファイルからの相対パス"
+
+msgid "displaying text"
+msgstr "テキストの表示"
+
+msgid "number of lines to scroll for CTRL-U and CTRL-D"
+msgstr "CTRL-U と CTRL-D でスクロールする行数"
+
+msgid "number of screen lines to show around the cursor"
+msgstr "カーソルの上下に表示されるスクリーン行数"
+
+msgid "long lines wrap"
+msgstr "長い行を折り返して表示する"
+
+msgid "wrap long lines at a character in 'breakat'"
+msgstr "'breakat' の文字で長い行を折り返す"
+
+msgid "preserve indentation in wrapped text"
+msgstr "折り返されたテキストでインデントを保持する"
+
+msgid "adjust breakindent behaviour"
+msgstr "breakindent の挙動を調整する"
+
+msgid "which characters might cause a line break"
+msgstr "どの文字のところで行が折り返されるか"
+
+msgid "string to put before wrapped screen lines"
+msgstr "折り返されたスクリーン行の前に表示される文字列"
+
+msgid "minimal number of columns to scroll horizontally"
+msgstr "水平スクロールの最小桁数"
+
+msgid "minimal number of columns to keep left and right of the cursor"
+msgstr "カーソルの左右に表示する最小桁数"
+
+msgid ""
+"include \"lastline\" to show the last line even if it doesn't fit\n"
+"include \"uhex\" to show unprintable characters as a hex number"
+msgstr ""
+"最後の行が収まらない場合でも表示するには \"lastline\" を含めること\n"
+"表示できない文字を 16 進数で表示するには \"uhex\" を含めること"
+
+msgid "characters to use for the status line, folds and filler lines"
+msgstr "ステータス行、折畳み、フィラー行に使われる文字"
+
+msgid "number of lines used for the command-line"
+msgstr "コマンドラインに使われる行数"
+
+msgid "width of the display"
+msgstr "画面の幅"
+
+msgid "number of lines in the display"
+msgstr "画面の行数"
+
+msgid "number of lines to scroll for CTRL-F and CTRL-B"
+msgstr "CTRL-F と CTRL-B でスクロールする行数"
+
+msgid "don't redraw while executing macros"
+msgstr "マクロを実行中に再描画しない"
+
+msgid "timeout for 'hlsearch' and :match highlighting in msec"
+msgstr "'hlsearch' と :match のハイライト処理のタイムアウト (ミリ秒)"
+
+msgid ""
+"delay in msec for each char written to the display\n"
+"(for debugging)"
+msgstr ""
+"それぞれの文字が画面に描かれるまでの遅延時間 (ミリ秒)\n"
+"(デバッグ用)"
+
+msgid "show <Tab> as ^I and end-of-line as $"
+msgstr "<Tab> を ^I として表示し、改行を $ として表示する"
+
+msgid "list of strings used for list mode"
+msgstr "リストモードで使われる文字列のリスト"
+
+msgid "show the line number for each line"
+msgstr "それぞれの行に行番号を表示する"
+
+msgid "show the relative line number for each line"
+msgstr "それぞれの行に相対行番号を表示する"
+
+msgid "number of columns to use for the line number"
+msgstr "行番号に使われる桁数"
+
+msgid "controls whether concealable text is hidden"
+msgstr "conceal 可能なテキストを隠すかどうかを制御する"
+
+msgid "modes in which text in the cursor line can be concealed"
+msgstr "カーソル行のテキストを conceal 表示するモード"
+
+msgid "syntax, highlighting and spelling"
+msgstr "構文ハイライトとスペルチェック"
+
+msgid "\"dark\" or \"light\"; the background color brightness"
+msgstr "\"dark\" か \"light\"; 背景色の明るさ"
+
+msgid "type of file; triggers the FileType event when set"
+msgstr "ファイルのタイプ; セットされると FileType イベントが発生する"
+
+msgid "name of syntax highlighting used"
+msgstr "使用される構文ハイライトの名前"
+
+msgid "maximum column to look for syntax items"
+msgstr "構文アイテムを検索する最大桁数"
+
+msgid "which highlighting to use for various occasions"
+msgstr "様々な対象に対してどのハイライト表示を使うか"
+
+msgid "highlight all matches for the last used search pattern"
+msgstr "最後の検索パターンに対する全てのマッチをハイライト表示する"
+
+msgid "highlight group to use for the window"
+msgstr "このウィンドウに使うハイライトグループ"
+
+msgid "use GUI colors for the terminal"
+msgstr "端末で GUI カラーを使う"
+
+msgid "highlight the screen column of the cursor"
+msgstr "カーソルのある画面上の桁をハイライト表示する"
+
+msgid "highlight the screen line of the cursor"
+msgstr "カーソルのある画面上の行をハイライト表示する"
+
+msgid "specifies which area 'cursorline' highlights"
+msgstr "'cursorline' がどの領域をハイライト表示するか指定する"
+
+msgid "columns to highlight"
+msgstr "ハイライト表示する桁"
+
+msgid "highlight spelling mistakes"
+msgstr "スペルミスをハイライト表示する"
+
+msgid "list of accepted languages"
+msgstr "受け付ける言語のリスト"
+
+msgid "file that \"zg\" adds good words to"
+msgstr "\"zg\" で正しい単語を追加するファイル"
+
+msgid "pattern to locate the end of a sentence"
+msgstr "文の末尾を見つけるのに使うパターン"
+
+msgid "flags to change how spell checking works"
+msgstr "どのようにスペルチェックが動作するかを変更するフラグ"
+
+msgid "methods used to suggest corrections"
+msgstr "修正を提案する際に使われる方法"
+
+msgid "amount of memory used by :mkspell before compressing"
+msgstr "圧縮の前に :mkspell で使われるメモリ量"
+
+msgid "multiple windows"
+msgstr "複数ウィンドウ"
+
+msgid "0, 1 or 2; when to use a status line for the last window"
+msgstr "0, 1 または 2; 最後のウィンドウのステータス行がいつ使われるか"
+
+msgid "alternate format to be used for a status line"
+msgstr "ステータス行に使われる書式"
+
+msgid "make all windows the same size when adding/removing windows"
+msgstr "ウィンドウを追加/削除するときに全ウィンドウのサイズを等しくする"
+
+msgid "in which direction 'equalalways' works: \"ver\", \"hor\" or \"both\""
+msgstr "どの方向に 'equalalways' が働くか: \"ver\", \"hor\" または \"both\""
+
+msgid "minimal number of lines used for the current window"
+msgstr "現在のウィンドウに使われる最小行数"
+
+msgid "minimal number of lines used for any window"
+msgstr "任意のウィンドウに使われる最小行数"
+
+msgid "keep the height of the window"
+msgstr "ウィンドウの高さを保つ"
+
+msgid "keep the width of the window"
+msgstr "ウィンドウの幅を保つ"
+
+msgid "minimal number of columns used for the current window"
+msgstr "現在のウィンドウに使われる最小桁数"
+
+msgid "minimal number of columns used for any window"
+msgstr "任意のウィンドウに使われる最小桁数"
+
+msgid "initial height of the help window"
+msgstr "ヘルプウィンドウの開始時の高さ"
+
+msgid "use a popup window for preview"
+msgstr "プレビューにポップアップウィンドウを使用する"
+
+msgid "default height for the preview window"
+msgstr "プレビューウィンドウの既定の高さ"
+
+msgid "identifies the preview window"
+msgstr "プレビューウィンドウを識別する"
+
+msgid "don't unload a buffer when no longer shown in a window"
+msgstr "バッファがウィンドウに表示されていないときにアンロードしない"
+
+msgid ""
+"\"useopen\" and/or \"split\"; which window to use when jumping\n"
+"to a buffer"
+msgstr ""
+"\"useopen\" かつ/または \"split\"; バッファにジャンプするときに\n"
+"どのウィンドウを使うか"
+
+msgid "a new window is put below the current one"
+msgstr "新しいウィンドウは現在のものの下に置かれる"
+
+msgid "a new window is put right of the current one"
+msgstr "新しいウィンドウは現在のものの右に置かれる"
+
+msgid "this window scrolls together with other bound windows"
+msgstr "このウィンドウは他の同調ウィンドウと一緒にスクロールする"
+
+msgid "\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'"
+msgstr ""
+"\"ver\", \"hor\" かつ/または \"jump\"; 'scrollbind' のオプションの\n"
+"リスト"
+
+msgid "this window's cursor moves together with other bound windows"
+msgstr "このウィンドウのカーソルは他の同調ウィンドウと一緒に動く"
+
+msgid "size of a terminal window"
+msgstr "端末ウィンドウのサイズ"
+
+msgid "key that precedes Vim commands in a terminal window"
+msgstr "端末ウィンドウで Vim のコマンドの前に入力するキー"
+
+msgid "max number of lines to keep for scrollback in a terminal window"
+msgstr "端末ウィンドウでスクロールバックのために保持する最大行数"
+
+msgid "type of pty to use for a terminal window"
+msgstr "端末ウィンドウで使う pty の種類"
+
+msgid "name of the winpty dynamic library"
+msgstr "winpty 動的ライブラリの名前"
+
+msgid "multiple tab pages"
+msgstr "複数タブページ"
+
+msgid "0, 1 or 2; when to use a tab pages line"
+msgstr "0, 1 または 2; タブページ行をいつ使うか"
+
+msgid "maximum number of tab pages to open for -p and \"tab all\""
+msgstr "-p と \"tab all\" で開かれるタブページの最大数"
+
+msgid "custom tab pages line"
+msgstr "カスタムのタブページ行"
+
+msgid "custom tab page label for the GUI"
+msgstr "カスタムの GUI のタブページラベル"
+
+msgid "custom tab page tooltip for the GUI"
+msgstr "カスタムの GUI のタブページツールチップ"
+
+msgid "terminal"
+msgstr "端末"
+
+msgid "name of the used terminal"
+msgstr "使用されている端末の名前"
+
+msgid "alias for 'term'"
+msgstr "'term' の別名"
+
+msgid "check built-in termcaps first"
+msgstr "組込みの termcap を最初にチェックする"
+
+msgid "terminal connection is fast"
+msgstr "端末の接続が高速である"
+
+msgid "request terminal key codes when an xterm is detected"
+msgstr "xtermを検出したときに端末のキーコードを要求する"
+
+msgid "terminal that requires extra redrawing"
+msgstr "追加の再描画が必要な端末"
+
+msgid "recognize keys that start with <Esc> in Insert mode"
+msgstr "挿入モードで <Esc> で始まるキーを認識する"
+
+msgid "minimal number of lines to scroll at a time"
+msgstr "一度にスクロールする最小行数"
+
+msgid "maximum number of lines to use scrolling instead of redrawing"
+msgstr "再描画ではなくスクロールを使う最大行数"
+
+msgid "specifies what the cursor looks like in different modes"
+msgstr "それぞれのモード内でのカーソルの外観を指定"
+
+msgid "show info in the window title"
+msgstr "ウィンドウタイトルに情報を表示"
+
+msgid "percentage of 'columns' used for the window title"
+msgstr "ウィンドウタイトルに使われる 'columns' の割合 (パーセント単位)"
+
+msgid "when not empty, string to be used for the window title"
+msgstr "空でないとき、ウィンドウタイトルに使われる文字列"
+
+msgid "string to restore the title to when exiting Vim"
+msgstr "Vim の終了時にタイトルに復元する文字列"
+
+msgid "set the text of the icon for this window"
+msgstr "このウィンドウのアイコンのテキストを設定"
+
+msgid "when not empty, text for the icon of this window"
+msgstr "空でないとき、このウィンドウのアイコンに使われるテキスト"
+
+msgid "restore the screen contents when exiting Vim"
+msgstr "Vim の終了時に画面の内容を復元する"
+
+msgid "using the mouse"
+msgstr "マウスの使用"
+
+msgid "list of flags for using the mouse"
+msgstr "マウスを使うためのフラグのリスト"
+
+msgid "the window with the mouse pointer becomes the current one"
+msgstr "マウスポインタのあるウィンドウがアクティブになる"
+
+msgid "the window with the mouse pointer scrolls with the mouse wheel"
+msgstr "マウスポインタのあるウィンドウがマウスホイールでスクロールする"
+
+msgid "hide the mouse pointer while typing"
+msgstr "文字の入力中にマウスポインタを隠す"
+
+msgid ""
+"\"extend\", \"popup\" or \"popup_setpos\"; what the right\n"
+"mouse button is used for"
+msgstr ""
+"\"extend\", \"popup\" あるいは \"popup_setpos\"; マウスの右ボタンを\n"
+"何に使うか"
+
+msgid "maximum time in msec to recognize a double-click"
+msgstr "ダブルクリックとして認識する最大時間 (ミリ秒)"
+
+msgid "\"xterm\", \"xterm2\", \"sgr\", etc.; type of mouse"
+msgstr "\"xterm\", \"xterm2\", \"sgr\" など; マウスの種類"
+
+msgid "what the mouse pointer looks like in different modes"
+msgstr "それぞれのモード内でのマウスポインタの外観を指定"
+
+msgid "GUI"
+msgstr "GUI"
+
+msgid "list of font names to be used in the GUI"
+msgstr "GUI で使われるフォント名のリスト"
+
+msgid "pair of fonts to be used, for multibyte editing"
+msgstr "マルチバイトの編集で使われるフォントのペア"
+
+msgid "list of font names to be used for double-wide characters"
+msgstr "全角文字に使われるフォント名のリスト"
+
+msgid "use smooth, antialiased fonts"
+msgstr "なめらかでアンチエイリアスされたフォントを使う"
+
+msgid "list of flags that specify how the GUI works"
+msgstr "GUI がどう動くかを指定するフラグのリスト"
+
+msgid "\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar"
+msgstr ""
+"\"icons\", \"text\" かつ/あるいは \"tooltips\"; どのように\n"
+"ツールバーを表示するか"
+
+msgid "size of toolbar icons"
+msgstr "ツールバーアイコンのサイズ"
+
+msgid "room (in pixels) left above/below the window"
+msgstr "ウィンドウの上下の余白 (ピクセル単位)"
+
+msgid "list of ASCII characters that can be combined into complex shapes"
+msgstr "複合形状に結合されるASCII文字のリスト"
+
+msgid "options for text rendering"
+msgstr "テキストレンダリングのためのオプション"
+
+msgid "use a pseudo-tty for I/O to external commands"
+msgstr "外部コマンドの I/O に疑似 tty を使う"
+
+msgid ""
+"\"last\", \"buffer\" or \"current\": which directory used for the file "
+"browser"
+msgstr ""
+"\"last\", \"buffer\" あるいは \"current\": ファイルブラウザでどの\n"
+"ディレクトリを使うか"
+
+msgid "language to be used for the menus"
+msgstr "メニューで使われる言語"
+
+msgid "maximum number of items in one menu"
+msgstr "1 個のメニューの最大項目数"
+
+msgid "\"no\", \"yes\" or \"menu\"; how to use the ALT key"
+msgstr "\"no\", \"yes\" または \"menu\"; ALT キーをどう使うか"
+
+msgid "number of pixel lines to use between characters"
+msgstr "行間の幅のピクセル数"
+
+msgid "delay in milliseconds before a balloon may pop up"
+msgstr "バルーン表示が出るまでの時間 (ミリ秒)"
+
+msgid "use balloon evaluation in the GUI"
+msgstr "GUI でバルーン評価を使う"
+
+msgid "use balloon evaluation in the terminal"
+msgstr "端末でバルーン評価を使う"
+
+msgid "expression to show in balloon eval"
+msgstr "バルーン評価に表示する式"
+
+msgid "printing"
+msgstr "印刷"
+
+msgid "list of items that control the format of :hardcopy output"
+msgstr ":hardcopy 出力の書式を制御する要素のリスト"
+
+msgid "name of the printer to be used for :hardcopy"
+msgstr ":hardcopy で使われるプリンタの名前"
+
+msgid "expression used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy で PostScript ファイルの印刷に使われる式"
+
+msgid "name of the font to be used for :hardcopy"
+msgstr ":hardcopy で使われるフォントの名前"
+
+msgid "format of the header used for :hardcopy"
+msgstr ":hardcopy のヘッダで使われる書式"
+
+msgid "encoding used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy で PostScript ファイルの印刷に使われるエンコーディング"
+
+msgid "the CJK character set to be used for CJK output from :hardcopy"
+msgstr ":hardcopy の出力の中の CJK 文字に使われる文字集合"
+
+msgid "list of font names to be used for CJK output from :hardcopy"
+msgstr ":hardcopy の出力の中の CJK 文字に使われるフォント名のリスト"
+
+msgid "messages and info"
+msgstr "メッセージと情報"
+
+msgid "add 's' flag in 'shortmess' (don't show search message)"
+msgstr "'s' フラグを 'shortmess' に追加 (検索メッセージを表示しない)"
+
+msgid "list of flags to make messages shorter"
+msgstr "メッセージを短くするためのフラグのリスト"
+
+msgid "show (partial) command keys in the status line"
+msgstr "コマンド (の一部) をステータス行に表示"
+
+msgid "display the current mode in the status line"
+msgstr "現在のモードをステータス行に表示"
+
+msgid "show cursor position below each window"
+msgstr "カーソル位置をそれぞれのウィンドウの下に表示"
+
+msgid "alternate format to be used for the ruler"
+msgstr "ルーラーに使われる代替書式"
+
+msgid "threshold for reporting number of changed lines"
+msgstr "変更された行の数の報告が出る閾値"
+
+msgid "the higher the more messages are given"
+msgstr "値が大きいほど詳細なメッセージが表示される"
+
+msgid "file to write messages in"
+msgstr "メッセージを書込むファイル"
+
+msgid "pause listings when the screen is full"
+msgstr "画面が一杯になったとき一覧表示を一時停止"
+
+msgid "start a dialog when a command fails"
+msgstr "コマンドが失敗したときにダイアログを開く"
+
+msgid "ring the bell for error messages"
+msgstr "エラーメッセージでベルを鳴らす"
+
+msgid "use a visual bell instead of beeping"
+msgstr "ビープ音の代わりにビジュアルベルを使う"
+
+msgid "do not ring the bell for these reasons"
+msgstr "これらの理由にはベルを鳴らさない"
+
+msgid "list of preferred languages for finding help"
+msgstr "ヘルプを見つける際の望ましい言語のリスト"
+
+msgid "selecting text"
+msgstr "テキスト選択"
+
+msgid "\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves"
+msgstr ""
+"\"old\", \"inclusive\" または \"exclusive\"; テキスト選択がどう\n"
+"振舞うか"
+
+msgid ""
+"\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode\n"
+"instead of Visual mode"
+msgstr ""
+"\"mouse\", \"key\" かつ/または \"cmd\"; いつビジュアルモードでは\n"
+"なく選択モードを開始するか"
+
+msgid ""
+"\"unnamed\" to use the * register like unnamed register\n"
+"\"autoselect\" to always put selected text on the clipboard"
+msgstr ""
+"\"unnamed\"; * レジスタを無名レジスタと同じように使う\n"
+"\"autoselect\"; 常に選択されたテキストをクリップボードにコピー"
+
+msgid "\"startsel\" and/or \"stopsel\"; what special keys can do"
+msgstr "\"startsel\" かつ/または \"stopsel\"; 特別なキーが何をするか"
+
+msgid "editing text"
+msgstr "テキスト編集"
+
+msgid "maximum number of changes that can be undone"
+msgstr "アンドゥ可能な変更の最大値"
+
+msgid "automatically save and restore undo history"
+msgstr "アンドゥ履歴を自動で保存・復元"
+
+msgid "list of directories for undo files"
+msgstr "アンドゥファイル用のディレクトリのリスト"
+
+msgid "maximum number lines to save for undo on a buffer reload"
+msgstr "バッファのリロード時にアンドゥのために保存する最大行数"
+
+msgid "changes have been made and not written to a file"
+msgstr "変更が行われたがファイルに書込まれていない"
+
+msgid "buffer is not to be written"
+msgstr "バッファは書込まれない"
+
+msgid "changes to the text are possible"
+msgstr "テキストの変更が可能"
+
+msgid "line length above which to break a line"
+msgstr "これより長い行は改行される"
+
+msgid "margin from the right in which to break a line"
+msgstr "改行する際の右からのマージン"
+
+msgid "specifies what <BS>, CTRL-W, etc. can do in Insert mode"
+msgstr "挿入モードで <BS>, CTRL-W 等が何をできるかを指定"
+
+msgid "definition of what comment lines look like"
+msgstr "コメント行がどうなっているかの定義"
+
+msgid "list of flags that tell how automatic formatting works"
+msgstr "自動整形がどのように動作するかを決めるフラグのリスト"
+
+msgid "pattern to recognize a numbered list"
+msgstr "数字付きの箇条書きを認識するパターン"
+
+msgid "expression used for \"gq\" to format lines"
+msgstr "\"gq\" で行を整形するときに使われる式"
+
+msgid "specifies how Insert mode completion works for CTRL-N and CTRL-P"
+msgstr "挿入モード補完が CTRL-N と CTRL-P でどう動作するかを指定"
+
+msgid "whether to use a popup menu for Insert mode completion"
+msgstr "挿入モード補完でポップアップメニューを使うかどうか"
+
+msgid "options for the Insert mode completion info popup"
+msgstr "挿入モード補完の情報ポップアップ用のオプション"
+
+msgid "maximum height of the popup menu"
+msgstr "ポップアップメニューの最大高"
+
+msgid "minimum width of the popup menu"
+msgstr "ポップアップメニューの最大幅"
+
+msgid "user defined function for Insert mode completion"
+msgstr "挿入モード補完用のユーザー定義関数"
+
+msgid "function for filetype-specific Insert mode completion"
+msgstr "ファイルタイプ固有の挿入モード補完用関数"
+
+msgid "list of dictionary files for keyword completion"
+msgstr "キーワード補完用の辞書ファイルのリスト"
+
+msgid "list of thesaurus files for keyword completion"
+msgstr "キーワード補完用の同義語ファイルのリスト"
+
+msgid "function used for thesaurus completion"
+msgstr "同義語補完で使われる関数"
+
+msgid "adjust case of a keyword completion match"
+msgstr "キーワード補完のマッチで大文字小文字を調整"
+
+msgid "enable entering digraphs with c1 <BS> c2"
+msgstr "c1 <BS> c2 でダイグラフを入力可能にする"
+
+msgid "the \"~\" command behaves like an operator"
+msgstr "\"~\" コマンドがオペレータのようにふるまう"
+
+msgid "function called for the \"g@\" operator"
+msgstr "\"g@\" オペレータで呼ばれる関数"
+
+msgid "when inserting a bracket, briefly jump to its match"
+msgstr "括弧を入力したときに、対応する括弧にわずかの間ジャンプ"
+
+msgid "tenth of a second to show a match for 'showmatch'"
+msgstr "'showmatch' で対応を表示する時間 (0.1秒単位)"
+
+msgid "list of pairs that match for the \"%\" command"
+msgstr "\"%\" コマンドでマッチするペアのリスト"
+
+msgid "use two spaces after '.' when joining a line"
+msgstr "行を連結するときに '.' の後に空白を 2 個入れる"
+
+msgid ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" and/or \"unsigned\"; number formats\n"
+"recognized for CTRL-A and CTRL-X commands"
+msgstr ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" かつ/または \"unsigned\";\n"
+"CTRL-A と CTRL-X コマンドで認識する数字の書式"
+
+msgid "tabs and indenting"
+msgstr "タブとインデント"
+
+msgid "number of spaces a <Tab> in the text stands for"
+msgstr "1 つの <Tab> に対応する空白の数"
+
+msgid "number of spaces used for each step of (auto)indent"
+msgstr "(自動)インデントの各段階に使われる空白の数"
+
+msgid "list of number of spaces a tab counts for"
+msgstr "1 つのタブが相当する空白の数のリスト"
+
+msgid "list of number of spaces a soft tabsstop counts for"
+msgstr "1 つのソフトタブストップに相当する空白の数のリスト"
+
+msgid "a <Tab> in an indent inserts 'shiftwidth' spaces"
+msgstr "インデント内での <Tab> は 'shiftwidth' 個の空白を挿入"
+
+msgid "if non-zero, number of spaces to insert for a <Tab>"
+msgstr "0 でないとき、1 つの <Tab> で挿入される空白の数"
+
+msgid "round to 'shiftwidth' for \"<<\" and \">>\""
+msgstr "\"<<\" と \">>\" で 'shiftwidth' に丸める"
+
+msgid "expand <Tab> to spaces in Insert mode"
+msgstr "挿入モードで <Tab> を空白に展開"
+
+msgid "automatically set the indent of a new line"
+msgstr "新しい行のインデントを自動的に設定"
+
+msgid "do clever autoindenting"
+msgstr "賢い自動インデントを行う"
+
+msgid "enable specific indenting for C code"
+msgstr "C コードに特有のインデントを有効にする"
+
+msgid "options for C-indenting"
+msgstr "C インデント処理用のオプション"
+
+msgid "keys that trigger C-indenting in Insert mode"
+msgstr "挿入モードで C インデント処理を引き起こすキー"
+
+msgid "list of words that cause more C-indent"
+msgstr "さらなる C インデントを発生させる単語のリスト"
+
+msgid "expression used to obtain the indent of a line"
+msgstr "行のインデントを得るために使われる式"
+
+msgid "keys that trigger indenting with 'indentexpr' in Insert mode"
+msgstr "挿入モードで 'indentexpr' によるインデントを引き起こすキー"
+
+msgid "copy whitespace for indenting from previous line"
+msgstr "前の行からインデントの空白をコピー"
+
+msgid "preserve kind of whitespace when changing indent"
+msgstr "インデントを変更するときに空白の種類を保持"
+
+msgid "enable lisp mode"
+msgstr "lisp モードを有効化"
+
+msgid "words that change how lisp indenting works"
+msgstr "lisp インデント処理の動作を変更する単語のリスト"
+
+msgid "folding"
+msgstr "折畳み"
+
+msgid "unset to display all folds open"
+msgstr "全ての折畳みを開いて表示するにはオフにする"
+
+msgid "folds with a level higher than this number will be closed"
+msgstr "この数値よりもレベルの高い折畳みは閉じられる"
+
+msgid "value for 'foldlevel' when starting to edit a file"
+msgstr "ファイルを編集開始する際の 'foldlevel' の値"
+
+msgid "width of the column used to indicate folds"
+msgstr "折畳みを表示するのに使われる列幅"
+
+msgid "expression used to display the text of a closed fold"
+msgstr "閉じられた折畳みのテキストを表示するのに使われる式"
+
+msgid "set to \"all\" to close a fold when the cursor leaves it"
+msgstr "カーソルが折畳みを離れたときに閉じるには \"all\" に設定"
+
+msgid "specifies for which commands a fold will be opened"
+msgstr "どのコマンドが折畳みを開くかを指定"
+
+msgid "minimum number of screen lines for a fold to be closed"
+msgstr "折畳みが閉じられる画面上の最小行数"
+
+msgid "template for comments; used to put the marker in"
+msgstr "コメント用のテンプレート; マーカーを中に置くために使われる"
+
+msgid ""
+"folding type: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" or \"diff\""
+msgstr ""
+"折畳みの種類: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" または \"diff\""
+
+msgid "expression used when 'foldmethod' is \"expr\""
+msgstr "'foldmethod' が \"expr\" の際に使われる式"
+
+msgid "used to ignore lines when 'foldmethod' is \"indent\""
+msgstr "'foldmethod' が \"indent\" の際に行を無視するために使われる"
+
+msgid "markers used when 'foldmethod' is \"marker\""
+msgstr "'foldmethod' が \"marker\" の際に使われるマーカー"
+
+msgid "maximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\""
+msgstr ""
+"'foldmethod' が \"indent\" または \"syntax\" の際の折畳みの\n"
+"最大の深さ"
+
+msgid "diff mode"
+msgstr "差分モード"
+
+msgid "use diff mode for the current window"
+msgstr "現在のウィンドウで差分モードを使う"
+
+msgid "options for using diff mode"
+msgstr "差分モードを使うためのオプション"
+
+msgid "expression used to obtain a diff file"
+msgstr "差分ファイルを取得するために使われる式"
+
+msgid "expression used to patch a file"
+msgstr "ファイルにパッチを当てるために使われる式"
+
+msgid "mapping"
+msgstr "マッピング"
+
+msgid "maximum depth of mapping"
+msgstr "マッピングの最大の深さ"
+
+msgid "recognize mappings in mapped keys"
+msgstr "マップされたキーに対するマッピングを認識する"
+
+msgid "allow timing out halfway into a mapping"
+msgstr "マッピングの途中でのタイムアウトを許可"
+
+msgid "allow timing out halfway into a key code"
+msgstr "キーコードの途中でのタイムアウトを許可"
+
+msgid "time in msec for 'timeout'"
+msgstr "'timeout' の時間 (ミリ秒)"
+
+msgid "time in msec for 'ttimeout'"
+msgstr "'ttimeout' の時間 (ミリ秒)"
+
+msgid "reading and writing files"
+msgstr "ファイルの読み書き"
+
+msgid "enable using settings from modelines when reading a file"
+msgstr "ファイル読込み時にモードラインからの設定の使用を有効にする"
+
+msgid "allow setting expression options from a modeline"
+msgstr "モードラインから式であるオプションを設定することを許可する"
+
+msgid "number of lines to check for modelines"
+msgstr "モードライン用にチェックする行数"
+
+msgid "binary file editing"
+msgstr "バイナリファイルの編集"
+
+msgid "last line in the file has an end-of-line"
+msgstr "ファイルの末尾の行に改行がある"
+
+msgid "fixes missing end-of-line at end of text file"
+msgstr "テキストファイルの末尾に改行がない場合に修正する"
+
+msgid "prepend a Byte Order Mark to the file"
+msgstr "バイト順マーク (BOM) をファイル先頭につける"
+
+msgid "end-of-line format: \"dos\", \"unix\" or \"mac\""
+msgstr "改行の形式: \"dos\", \"unix\" または \"mac\""
+
+msgid "list of file formats to look for when editing a file"
+msgstr "ファイル編集時に調べる改行形式のリスト"
+
+msgid "obsolete, use 'fileformat'"
+msgstr "廃止、'fileformat' を使うこと"
+
+msgid "obsolete, use 'fileformats'"
+msgstr "廃止、'fileformats' を使うこと"
+
+msgid "writing files is allowed"
+msgstr "ファイルの書込みが許可されている"
+
+msgid "write a backup file before overwriting a file"
+msgstr "ファイルを上書きする前にバックアップに書込む"
+
+msgid "keep a backup after overwriting a file"
+msgstr "ファイルの上書き後にバックアップを保持"
+
+msgid "patterns that specify for which files a backup is not made"
+msgstr "どのファイルでバックアックが作られないかを指定するパターン"
+
+msgid "whether to make the backup as a copy or rename the existing file"
+msgstr "バックアップを既存のファイルのコピーとするかリネームするか"
+
+msgid "list of directories to put backup files in"
+msgstr "バックアップファイルを置くディレクトリのリスト"
+
+msgid "file name extension for the backup file"
+msgstr "バックアップファイルの拡張子"
+
+msgid "automatically write a file when leaving a modified buffer"
+msgstr "変更されたバッファを離れる際に自動的にファイルに書込む"
+
+msgid "as 'autowrite', but works with more commands"
+msgstr "'autowrite' と同様だが、より多くのコマンドで動作する"
+
+msgid "always write without asking for confirmation"
+msgstr "常に確認無しに書込む"
+
+msgid "automatically read a file when it was modified outside of Vim"
+msgstr "Vim の外でファイルが変更された際に自動的に読込む"
+
+msgid "keep oldest version of a file; specifies file name extension"
+msgstr "ファイルの最古のバージョンを保持; ファイルの拡張子を指定"
+
+msgid "forcibly sync the file to disk after writing it"
+msgstr "ファイルを書込んだ後に強制的にディスクに同期させる"
+
+msgid "use 8.3 file names"
+msgstr "8.3 形式のファイル名を使う"
+
+msgid "encryption method for file writing: zip, blowfish or blowfish2"
+msgstr "ファイル書込みのための暗号化方式: zip, blowfish または blowfish2"
+
+msgid "the swap file"
+msgstr "スワップファイル"
+
+msgid "list of directories for the swap file"
+msgstr "スワップファイル用のディレクトリのリスト"
+
+msgid "use a swap file for this buffer"
+msgstr "このバッファでスワップファイルを使う"
+
+msgid "\"sync\", \"fsync\" or empty; how to flush a swap file to disk"
+msgstr ""
+"\"sync\", \"fsync\" または空; どのようにスワップファイルを\n"
+"ディスクに掃き出すか"
+
+msgid "number of characters typed to cause a swap file update"
+msgstr "何文字入力したらスワップファイルを更新するか"
+
+msgid "time in msec after which the swap file will be updated"
+msgstr "スワップファイルを更新するまでの時間 (ミリ秒)"
+
+msgid "maximum amount of memory in Kbyte used for one buffer"
+msgstr "1 つのバッファ当たりの最大メモリ量 (Kbyte)"
+
+msgid "maximum amount of memory in Kbyte used for all buffers"
+msgstr "全てのバッファで使われる最大メモリ量 (Kbyte)"
+
+msgid "command line editing"
+msgstr "コマンドライン編集"
+
+msgid "how many command lines are remembered"
+msgstr "コマンドラインを何個まで記憶するか"
+
+msgid "key that triggers command-line expansion"
+msgstr "コマンドライン展開を引き起こすキー"
+
+msgid "like 'wildchar' but can also be used in a mapping"
+msgstr "'wildchar' と同様だがマッピング内でも使用できる"
+
+msgid "specifies how command line completion works"
+msgstr "どのようにコマンドライン補完が動作するかを指定"
+
+msgid "empty or \"tagfile\" to list file name of matching tags"
+msgstr "空、またはマッチしたファイル名を一覧表示するなら \"tagfile\""
+
+msgid "list of file name extensions that have a lower priority"
+msgstr "低い優先度を持つ拡張子のリスト"
+
+msgid "list of file name extensions added when searching for a file"
+msgstr "ファイル検索時に追加される拡張子のリスト"
+
+msgid "list of patterns to ignore files for file name completion"
+msgstr "ファイル名補完の際に無視するファイルパターンのリスト"
+
+msgid "ignore case when using file names"
+msgstr "ファイル名を使う際に大文字小文字の違いを無視"
+
+msgid "ignore case when completing file names"
+msgstr "ファイル名補完の際に大文字小文字の違いを無視"
+
+msgid "command-line completion shows a list of matches"
+msgstr "コマンドライン補完はマッチの一覧を表示する"
+
+msgid "key used to open the command-line window"
+msgstr "コマンドラインウィンドウを開くためのキー"
+
+msgid "height of the command-line window"
+msgstr "コマンドラインウィンドウの高さ"
+
+msgid "executing external commands"
+msgstr "外部コマンドの実行"
+
+msgid "name of the shell program used for external commands"
+msgstr "外部コマンドに使われるシェルプログラムの名前"
+
+msgid "when to use the shell or directly execute a command"
+msgstr "いつシェルを使うかそれとも直接外部コマンドを実行するか"
+
+msgid "character(s) to enclose a shell command in"
+msgstr "シェルコマンドを囲む引用符"
+
+msgid "like 'shellquote' but include the redirection"
+msgstr "'shellquote' と同様だがリダイレクトを含む"
+
+msgid "characters to escape when 'shellxquote' is ("
+msgstr "'shellxquote' が ( の時にエスケープされる文字"
+
+msgid "argument for 'shell' to execute a command"
+msgstr "コマンドを実行する際の 'shell' の引数"
+
+msgid "used to redirect command output to a file"
+msgstr "コマンドの出力をファイルにリダイレクトする際に使われる"
+
+msgid "use a temp file for shell commands instead of using a pipe"
+msgstr "シェルコマンドにパイプを使わずに一時ファイルを使う"
+
+msgid "program used for \"=\" command"
+msgstr "\"=\" コマンドに使われるプログラム"
+
+msgid "program used to format lines with \"gq\" command"
+msgstr "\"gq\" コマンドで行を整形する際に使われるプログラム"
+
+msgid "program used for the \"K\" command"
+msgstr "\"K\" コマンドに使われるプログラム"
+
+msgid "warn when using a shell command and a buffer has changes"
+msgstr "バッファに変更がありシェルコマンドが実行された際に警告する"
+
+msgid "running make and jumping to errors (quickfix)"
+msgstr "make の実行とエラーへのジャンプ (quickfix)"
+
+msgid "name of the file that contains error messages"
+msgstr "エラーメッセージが入っているファイルの名前"
+
+msgid "list of formats for error messages"
+msgstr "エラーメッセージの書式のリスト"
+
+msgid "program used for the \":make\" command"
+msgstr "\":make\" コマンドに使われるプログラム"
+
+msgid "string used to put the output of \":make\" in the error file"
+msgstr "\":make\" の出力をエラーファイルに書込むために使われる文字列"
+
+msgid "name of the errorfile for the 'makeprg' command"
+msgstr "'makeprg' コマンド用のエラーファイルの名前"
+
+msgid "program used for the \":grep\" command"
+msgstr "\":grep\" コマンドに使われるプログラム"
+
+msgid "list of formats for output of 'grepprg'"
+msgstr "'grepprg' の出力用の書式のリスト"
+
+msgid "encoding of the \":make\" and \":grep\" output"
+msgstr "\":make\" と \":grep\" の出力のエンコーディング"
+
+msgid "function to display text in the quickfix window"
+msgstr "quickfix ウィンドウにテキストを表示するための関数"
+
+msgid "system specific"
+msgstr "システム固有"
+
+msgid "use forward slashes in file names; for Unix-like shells"
+msgstr "ファイル名でスラッシュを使う; Unix ライクなシェル用"
+
+msgid "specifies slash/backslash used for completion"
+msgstr "補完に salsh/backslash のどちらを使うか指定"
+
+msgid "language specific"
+msgstr "言語固有"
+
+msgid "specifies the characters in a file name"
+msgstr "ファイル名に使われる文字を指定"
+
+msgid "specifies the characters in an identifier"
+msgstr "識別子に使われる文字を指定"
+
+msgid "specifies the characters in a keyword"
+msgstr "キーワードに使われる文字を指定"
+
+msgid "specifies printable characters"
+msgstr "表示可能な文字を指定"
+
+msgid "specifies escape characters in a string"
+msgstr "文字列内のエスケープ文字を指定"
+
+msgid "display the buffer right-to-left"
+msgstr "バッファを右から左に表示"
+
+msgid "when to edit the command-line right-to-left"
+msgstr "いつコマンドラインを右から左に編集するか"
+
+msgid "insert characters backwards"
+msgstr "文字を逆方向に挿入"
+
+msgid "allow CTRL-_ in Insert and Command-line mode to toggle 'revins'"
+msgstr "挿入・コマンドラインモードで CTRL-_ で 'revins' の切り替えを許可"
+
+msgid "the ASCII code for the first letter of the Hebrew alphabet"
+msgstr "ヘブライ語アルファベットの最初の文字を表す ASCII コード"
+
+msgid "use Hebrew keyboard mapping"
+msgstr "ヘブライキーボードのマッピングを使用"
+
+msgid "use phonetic Hebrew keyboard mapping"
+msgstr "音声ヘブライキーボードのマッピングを使用"
+
+msgid "prepare for editing Arabic text"
+msgstr "アラビア語のテキストを編集する準備"
+
+msgid "perform shaping of Arabic characters"
+msgstr "アラビア文字の字形処理を行う"
+
+msgid "terminal will perform bidi handling"
+msgstr "端末が双方向 (bidi) の処理を行う"
+
+msgid "name of a keyboard mapping"
+msgstr "キーボードマッピングの名前"
+
+msgid "list of characters that are translated in Normal mode"
+msgstr "ノーマルモードで変換される文字のリスト"
+
+msgid "apply 'langmap' to mapped characters"
+msgstr "'langmap' をマップされた文字に適用"
+
+msgid "when set never use IM; overrules following IM options"
+msgstr "オンのとき IM を全く使わない; 以下の IM 関連オプションに優先する"
+
+msgid "in Insert mode: 1: use :lmap; 2: use IM; 0: neither"
+msgstr "挿入モード時: 1: :lmap を使用; 2: IM を使用; 0: どちらも不使用"
+
+msgid "input method style, 0: on-the-spot, 1: over-the-spot"
+msgstr "IM のスタイル、0: on-the-spot, 1: over-the-spot"
+
+msgid "entering a search pattern: 1: use :lmap; 2: use IM; 0: neither"
+msgstr ""
+"検索パターン入力時: 1: :lmap を使用; 2: IM を使用;\n"
+"0: どちらも不使用"
+
+msgid "when set always use IM when starting to edit a command line"
+msgstr "オンのときはコマンドライン編集開始時に常に IM を使用"
+
+msgid "function to obtain IME status"
+msgstr "IME の状態を取得するための関数"
+
+msgid "function to enable/disable IME"
+msgstr "IME を有効化/無効化するための関数"
+
+msgid "multi-byte characters"
+msgstr "マルチバイト文字"
+
+msgid ""
+"character encoding used in Vim: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\", etc."
+msgstr ""
+"Vim で使用する文字エンコーディング: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\" など"
+
+msgid "character encoding for the current file"
+msgstr "現在のファイルの文字エンコーディング"
+
+msgid "automatically detected character encodings"
+msgstr "文字エンコーディングを自動検出"
+
+msgid "character encoding used by the terminal"
+msgstr "端末で使われる文字エンコーディング"
+
+msgid "expression used for character encoding conversion"
+msgstr "文字エンコーディング変換に使われる式"
+
+msgid "delete combining (composing) characters on their own"
+msgstr "結合文字そのものを削除"
+
+msgid "maximum number of combining (composing) characters displayed"
+msgstr "表示の際の結合文字の最大数"
+
+msgid "key that activates the X input method"
+msgstr "X インプットメソッドを起動するためのキー"
+
+msgid "width of ambiguous width characters"
+msgstr "あいまい幅文字の幅"
+
+msgid "emoji characters are full width"
+msgstr "絵文字の幅は全角"
+
+msgid "various"
+msgstr "その他"
+
+msgid ""
+"when to use virtual editing: \"block\", \"insert\", \"all\"\n"
+"and/or \"onemore\""
+msgstr ""
+"いつ仮想編集を使うか: \"block\", \"insert\", \"all\"\n"
+"かつ/または \"onemore\""
+
+msgid "list of autocommand events which are to be ignored"
+msgstr "自動コマンドイベントで無視するもののリスト"
+
+msgid "load plugin scripts when starting up"
+msgstr "起動時にプラグインスクリプトを読込む"
+
+msgid "enable reading .vimrc/.exrc/.gvimrc in the current directory"
+msgstr ""
+"カレントディレクトリにある .vimrc/.exrc/.gvimrc の読込みを\n"
+"有効化"
+
+msgid "safer working with script files in the current directory"
+msgstr "カレントディレクトリのスクリプトファイルを安全に扱う"
+
+msgid "use the 'g' flag for \":substitute\""
+msgstr "\":substitute\" に 'g' フラグを使う"
+
+msgid "'g' and 'c' flags of \":substitute\" toggle"
+msgstr "\":substitute\" の 'g' と 'c' フラグを切り替える"
+
+msgid "allow reading/writing devices"
+msgstr "デバイスからの読み書きを許可する"
+
+msgid "maximum depth of function calls"
+msgstr "関数呼出しの最大の深さ"
+
+msgid "list of words that specifies what to put in a session file"
+msgstr "セッションファイルに何を保存するかを指定する単語のリスト"
+
+msgid "list of words that specifies what to save for :mkview"
+msgstr ":mkview で何を保存するかを指定する単語のリスト"
+
+msgid "directory where to store files with :mkview"
+msgstr ":mkview でファイルを保存するディレクトリ"
+
+msgid "list that specifies what to write in the viminfo file"
+msgstr "viminfo ファイルに何を書くかを指定するリスト"
+
+msgid "file name used for the viminfo file"
+msgstr "viminfo ファイルに使われるファイル名"
+
+msgid "what happens with a buffer when it's no longer in a window"
+msgstr "バッファがウィンドウに表示されなくなった時の挙動"
+
+msgid "empty, \"nofile\", \"nowrite\", \"quickfix\", etc.: type of buffer"
+msgstr "空, \"nofile\", \"nowrite\", \"quickfix\" など: バッファの種別"
+
+msgid "whether the buffer shows up in the buffer list"
+msgstr "バッファをバッファ一覧に表示するかどうか"
+
+msgid "set to \"msg\" to see all error messages"
+msgstr "全てのエラーメッセージを見るには \"msg\" に設定"
+
+msgid "whether to show the signcolumn"
+msgstr "目印桁を表示するかどうか"
+
+msgid "interval in milliseconds between polls for MzScheme threads"
+msgstr "MzScheme のスレッドを切り替える間隔 (ミリ秒)"
+
+msgid "name of the Lua dynamic library"
+msgstr "Lua 動的ライブラリの名前"
+
+msgid "name of the Perl dynamic library"
+msgstr "Perl 動的ライブラリの名前"
+
+msgid "whether to use Python 2 or 3"
+msgstr "Python 2 と 3 のどちらを使うか"
+
+msgid "name of the Python 2 dynamic library"
+msgstr "Python 2 動的ライブラリの名前"
+
+msgid "name of the Python 2 home directory"
+msgstr "Python 2 ホームディレクトリの名前"
+
+msgid "name of the Python 3 dynamic library"
+msgstr "Python 3 動的ライブラリの名前"
+
+msgid "name of the Python 3 home directory"
+msgstr "Python 3 ホームディレクトリの名前"
+
+msgid "name of the Ruby dynamic library"
+msgstr "Ruby 動的ライブラリの名前"
+
+msgid "name of the Tcl dynamic library"
+msgstr "Tcl 動的ライブラリの名前"
+
+msgid "name of the MzScheme dynamic library"
+msgstr "MzScheme 動的ライブラリの名前"
+
+msgid "name of the MzScheme GC dynamic library"
+msgstr "MzScheme GC 動的ライブラリの名前"
diff --git a/src/po/ja.sjis.po b/src/po/ja.sjis.po
index 1530f1f..367abad 100644
--- a/src/po/ja.sjis.po
+++ b/src/po/ja.sjis.po
@@ -3,7 +3,7 @@
# Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed.
#
-# Copyright (C) 2001-2019 MURAOKA Taro <koron.kaoriya@gmail.com>,
+# Copyright (C) 2001-2022 MURAOKA Taro <koron.kaoriya@gmail.com>,
# vim-jp <http://vim-jp.org/>
#
# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
@@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Vim 8.1\n"
+"Project-Id-Version: Vim 8.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-04 21:51+0900\n"
-"PO-Revision-Date: 2019-11-11 23:00+0900\n"
+"POT-Creation-Date: 2022-01-16 10:46+0900\n"
+"PO-Revision-Date: 2022-01-16 12:43+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n"
"Language: ja\n"
@@ -24,66 +24,45 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "E163: There is only one file to edit"
-msgstr "E163: ÒW·ét@CÍ1µ© èܹñ"
+msgid "ERROR: "
+msgstr "G[: "
-msgid "E164: Cannot go before first file"
-msgstr "E164: ÅÌt@CæèOÉÍs¯Ü¹ñ"
+#, c-format
+msgid ""
+"\n"
+"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
+msgstr ""
+"\n"
+"[(oCg)] -ðúÊ %lu-%lu, gpÊ %lu, s[N %lu\n"
-msgid "E165: Cannot go beyond last file"
-msgstr "E165: ÅãÌt@Cðz¦ÄãÉÍs¯Ü¹ñ"
-
-msgid "E249: window layout changed unexpectedly"
-msgstr "E249: \\ú¹¸EBhEÌzuªÏíèܵ½"
+#, c-format
+msgid ""
+"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
+"\n"
+msgstr ""
+"[Äo] re/malloc() ñ %lu, free() ñ %lu\n"
+"\n"
msgid "--Deleted--"
msgstr "--íÏ--"
#, c-format
msgid "auto-removing autocommand: %s <buffer=%d>"
-msgstr "autocommand: %s <obt@=%d> ª©®IÉí³êÜ·"
-
-#, c-format
-msgid "E367: No such group: \"%s\""
-msgstr "E367: »ÌO[vÍ èܹñ: \"%s\""
-
-msgid "E936: Cannot delete the current group"
-msgstr "E936: »ÝÌO[vÍíūܹñ"
+msgstr "©®R}h: %s <obt@=%d> ª©®IÉí³êÜ·"
msgid "W19: Deleting augroup that is still in use"
msgstr "W19: gpÌ augroup ðÁ»¤ÆµÄ¢Ü·"
-#, c-format
-msgid "E215: Illegal character after *: %s"
-msgstr "E215: * ÌãÉs³È¶ª èܵ½: %s"
-
-#, c-format
-msgid "E216: No such event: %s"
-msgstr "E216: »Ìæ¤ÈCxgÍ èܹñ: %s"
-
-#, c-format
-msgid "E216: No such group or event: %s"
-msgstr "E216: »Ìæ¤ÈO[vàµÍCxgÍ èܹñ: %s"
-
msgid ""
"\n"
"--- Autocommands ---"
msgstr ""
"\n"
-"--- Autocommands ---"
+"--- ©®R}h ---"
#, c-format
-msgid "E680: <buffer=%d>: invalid buffer number "
-msgstr "E680: <obt@=%d>: ³øÈobt@ÔÅ· "
-
-msgid "E217: Can't execute autocommands for ALL events"
-msgstr "E217: SÄÌCxgÉεÄÌautocommandÍÀsūܹñ"
-
-msgid "No matching autocommands"
-msgstr "Y·éautocommandͶݵܹñ"
-
-msgid "E218: autocommand nesting too deep"
-msgstr "E218: autocommandÌüêqª[ܷ߬"
+msgid "No matching autocommands: %s"
+msgstr "Y·é©®R}hͶݵܹñ: %s"
#, c-format
msgid "%s Autocommands for \"%s\""
@@ -97,20 +76,11 @@
msgid "autocommand %s"
msgstr "autocommand %s"
-msgid "E831: bf_key_init() called with empty password"
-msgstr "E831: bf_key_init() ªópX[hÅÄÑo³êܵ½"
+msgid "add() argument"
+msgstr "add() Ìø"
-msgid "E820: sizeof(uint32_t) != 4"
-msgstr "E820: sizeof(uint32_t) != 4"
-
-msgid "E817: Blowfish big/little endian use wrong"
-msgstr "E817: BlowfishÃÌrbO/gGfBAªÔáÁĢܷ"
-
-msgid "E818: sha256 test failed"
-msgstr "E818: sha256ÌeXgɸsµÜµ½"
-
-msgid "E819: Blowfish test failed"
-msgstr "E819: BlowfishÃÌeXgɸsµÜµ½"
+msgid "insert() argument"
+msgstr "insert() Ìø"
msgid "[Location List]"
msgstr "[P[VXg]"
@@ -118,31 +88,6 @@
msgid "[Quickfix List]"
msgstr "[QuickfixXg]"
-msgid "E855: Autocommands caused command to abort"
-msgstr "E855: autocommandªR}hÌâ~ðø«N±µÜµ½"
-
-msgid "E82: Cannot allocate any buffer, exiting..."
-msgstr "E82: obt@ð1Âàì¬Å«È¢ÌÅAI¹µÜ·..."
-
-msgid "E83: Cannot allocate buffer, using other one..."
-msgstr "E83: obt@ðì¬Å«È¢ÌÅA¼ÌðgpµÜ·..."
-
-msgid "E931: Buffer cannot be registered"
-msgstr "E931: obt@ðo^ūܹñ"
-
-#, c-format
-msgid "E937: Attempt to delete a buffer that is in use: %s"
-msgstr "E937: gpÌobt@ðíµæ¤ÆÝܵ½: %s"
-
-msgid "E515: No buffers were unloaded"
-msgstr "E515: ðú³ê½obt@Í èܹñ"
-
-msgid "E516: No buffers were deleted"
-msgstr "E516: í³ê½obt@Í èܹñ"
-
-msgid "E517: No buffers were wiped out"
-msgstr "E517: jü³ê½obt@Í èܹñ"
-
#, c-format
msgid "%d buffer unloaded"
msgid_plural "%d buffers unloaded"
@@ -158,68 +103,19 @@
msgid_plural "%d buffers wiped out"
msgstr[0] "%d ÂÌobt@ªjü³êܵ½"
-msgid "E90: Cannot unload last buffer"
-msgstr "E90: ÅãÌobt@Íðúūܹñ"
-
-msgid "E84: No modified buffer found"
-msgstr "E84: ÏX³ê½obt@Í èܹñ"
-
-msgid "E85: There is no listed buffer"
-msgstr "E85: Xg\\¦³êéobt@Í èܹñ"
-
-msgid "E87: Cannot go beyond last buffer"
-msgstr "E87: ÅãÌobt@ðz¦ÄÚ®Íūܹñ"
-
-msgid "E88: Cannot go before first buffer"
-msgstr "E88: ÅÌobt@æèOÖÍڮūܹñ"
-
-#, c-format
-msgid "E89: No write since last change for buffer %d (add ! to override)"
-msgstr "E89: obt@ %d ÌÏXÍÛ¶³êĢܹñ (! ÅÏXðjü)"
-
-msgid "E948: Job still running (add ! to end the job)"
-msgstr "E948: WuÍܾÀsÅ· (! ðÇÁÅWuðI¹)"
-
-msgid "E37: No write since last change (add ! to override)"
-msgstr "E37: ÅãÌÏXªÛ¶³êĢܹñ (! ðÇÁÅÏXðjü)"
-
-msgid "E948: Job still running"
-msgstr "E948: WuÍܾÀsÅ·"
-
-msgid "E37: No write since last change"
-msgstr "E37: ÅãÌÏXªÛ¶³êĢܹñ"
-
msgid "W14: Warning: List of file names overflow"
msgstr "W14: x: t@C¼ÌXgª·ß¬Ü·"
#, c-format
-msgid "E92: Buffer %d not found"
-msgstr "E92: obt@ %d ª©Â©èܹñ"
-
-#, c-format
-msgid "E93: More than one match for %s"
-msgstr "E93: %s É¡ÌYª èܵ½"
-
-#, c-format
-msgid "E94: No matching buffer for %s"
-msgstr "E94: %s ÉY·éobt@Í èܹñŵ½"
-
-#, c-format
msgid "line %ld"
msgstr "s %ld"
-msgid "E95: Buffer with this name already exists"
-msgstr "E95: ±Ì¼OÌobt@ÍùÉ èÜ·"
-
msgid " [Modified]"
msgstr " [ÏX è]"
msgid "[Not edited]"
msgstr "[¢ÒW]"
-msgid "[New file]"
-msgstr "[Vt@C]"
-
msgid "[Read errors]"
msgstr "[ÇG[]"
@@ -259,9 +155,6 @@
msgid "Top"
msgstr "æª"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: 'buftype' IvVªÝè³êÄ¢éÌÅßܹñ"
-
msgid "[Prompt]"
msgstr "[vvg]"
@@ -277,82 +170,11 @@
msgid "Do you really want to write to it"
msgstr "{É㫵ܷ©"
-msgid "E676: No matching autocommands for acwrite buffer"
-msgstr "E676: acwriteobt@ÌY·éautocommandͶݵܹñ"
+msgid "[New]"
+msgstr "[V]"
-msgid "E203: Autocommands deleted or unloaded buffer to be written"
-msgstr "E203: Û¶·éobt@ðautocommandªí©ðúµÜµ½"
-
-msgid "E204: Autocommand changed number of lines in unexpected way"
-msgstr "E204: autocommandª\\ú¹Êû@ÅsðÏXµÜµ½"
-
-# Added at 19-Jan-2004.
-msgid "NetBeans disallows writes of unmodified buffers"
-msgstr "NetBeansÍ¢ÏXÌobt@ðã·é±ÆÍµĢܹñ"
-
-msgid "Partial writes disallowed for NetBeans buffers"
-msgstr "NetBeansobt@Ìêð«o·±ÆÍūܹñ"
-
-msgid "is a directory"
-msgstr "ÍfBNgÅ·"
-
-msgid "is not a file or writable device"
-msgstr "Ít@CÅàÝÂ\\foCXÅà èܹñ"
-
-msgid "writing to device disabled with 'opendevice' option"
-msgstr "'opendevice' IvVÉæèfoCXÖÌ«ÝÍūܹñ"
-
-msgid "is read-only (add ! to override)"
-msgstr "ÍÇêpÅ· (§ÉÍ ! ðÇÁ)"
-
-msgid "E506: Can't write to backup file (add ! to override)"
-msgstr "E506: obNAbvt@Cð۶ūܹñ (! ðÇÁŧ)"
-
-msgid "E507: Close error for backup file (add ! to override)"
-msgstr ""
-"E507: obNAbvt@Cð¶éÛÉG[ª¶µÜµ½ (! ðÇÁŧ"
-")"
-
-msgid "E508: Can't read file for backup (add ! to override)"
-msgstr "E508: obNAbvpt@CðÇßܹñ (! ðÇÁŧ)"
-
-msgid "E509: Cannot create backup file (add ! to override)"
-msgstr "E509: obNAbvt@Cðìêܹñ (! ðÇÁŧ)"
-
-msgid "E510: Can't make backup file (add ! to override)"
-msgstr "E510: obNAbvt@Cðìêܹñ (! ðÇÁŧ)"
-
-msgid "E214: Can't find temp file for writing"
-msgstr "E214: Û¶pêt@Cª©Â©èܹñ"
-
-msgid "E213: Cannot convert (add ! to write without conversion)"
-msgstr "E213: Ϸūܹñ (! ðÇÁÅÏ·¹¸ÉÛ¶)"
-
-msgid "E166: Can't open linked file for writing"
-msgstr "E166: N³ê½t@CÉßܹñ"
-
-msgid "E212: Can't open file for writing"
-msgstr "E212: ÝpÉt@CðJ¯Ü¹ñ"
-
-msgid "E949: File changed while writing"
-msgstr "E949: ÝÉt@CªÏX³êܵ½"
-
-msgid "E512: Close failed"
-msgstr "E512: Â¶é±ÆÉ¸s"
-
-msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
-msgstr "E513: ÝG[AÏ·¸s (ã·éÉÍ 'fenc' ðóɵľ³¢)"
-
-#, c-format
-msgid ""
-"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
-"override)"
-msgstr ""
-"E513: ÝG[AÏ·¸sAs %ld (ã·éÉÍ 'fenc' ðóɵľ³"
-"¢)"
-
-msgid "E514: write error (file system full?)"
-msgstr "E514: ÝG[ (t@CVXeªt?)"
+msgid "[New File]"
+msgstr "[Vt@C]"
msgid " CONVERSION ERROR"
msgstr " Ï·G["
@@ -370,12 +192,6 @@
msgid "[Device]"
msgstr "[foCX]"
-msgid "[New]"
-msgstr "[V]"
-
-msgid "[New File]"
-msgstr "[Vt@C]"
-
msgid " [a]"
msgstr " [a]"
@@ -388,15 +204,6 @@
msgid " written"
msgstr " Ý"
-msgid "E205: Patchmode: can't save original file"
-msgstr "E205: patchmode: ´{t@Cð۶ūܹñ"
-
-msgid "E206: patchmode: can't touch empty original file"
-msgstr "E206: patchmode: óÌ´{t@Cðtouchūܹñ"
-
-msgid "E207: Can't delete backup file"
-msgstr "E207: obNAbvt@CðÁ¹Ü¹ñ"
-
msgid ""
"\n"
"WARNING: Original file may be lost or damaged\n"
@@ -410,59 +217,27 @@
msgid "W10: Warning: Changing a readonly file"
msgstr "W10: x: Çêpt@CðÏXµÜ·"
-msgid "E902: Cannot connect to port"
-msgstr "E902: |[gÉڱūܹñ"
+msgid "No display"
+msgstr "fBXvCª©Â©èܹñ"
-msgid "E901: gethostbyname() in channel_open()"
-msgstr "E901: channel_open() àÌ gethostbyname() ª¸sµÜµ½"
+msgid ": Send failed.\n"
+msgstr ": MɸsµÜµ½.\n"
-msgid "E898: socket() in channel_open()"
-msgstr "E898: channel_open() àÌ socket() ª¸sµÜµ½"
-
-msgid "E903: received command with non-string argument"
-msgstr "E903: ñ¶ñÌøÌR}hðóMµÜµ½"
-
-msgid "E904: last argument for expr/call must be a number"
-msgstr "E904: expr/call ÌÅãÌøÍÅȯêÎÈèܹñ"
-
-msgid "E904: third argument for call must be a list"
-msgstr "E904: call Ì3ÔÚÌøÍXg^ÅȯêÎÈèܹñ"
+msgid ": Send failed. Trying to execute locally\n"
+msgstr ": MɸsµÜµ½B[JÅÌÀsðÝĢܷ\n"
#, c-format
-msgid "E905: received unknown command: %s"
-msgstr "E905: ¢mÌR}hðóMµÜµ½: %s"
+msgid "%d of %d edited"
+msgstr "%d  (%d Â) Ìt@CðÒWµÜµ½"
-msgid "E906: not an open channel"
-msgstr "E906: J¢Ä¢È¢`lÅ·"
+msgid "No display: Send expression failed.\n"
+msgstr "fBXvCª èܹñ: ®ÌMɸsµÜµ½.\n"
-#, c-format
-msgid "E630: %s(): write while not connected"
-msgstr "E630: %s(): ñÚ±óÔÅ«Ýܵ½"
+msgid ": Send expression failed.\n"
+msgstr ": ®ÌMɸsµÜµ½.\n"
-#, c-format
-msgid "E631: %s(): write failed"
-msgstr "E631: %s(): «ÝɸsµÜµ½"
-
-#, c-format
-msgid "E917: Cannot use a callback with %s()"
-msgstr "E917: %s() ÉR[obNÍg¦Ü¹ñ"
-
-msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
-msgstr ""
-"E912: raw â nl [hÌ`lÉ ch_evalexpr()/ch_sendexpr() Íg¦Ü¹ñ"
-
-msgid "E920: _io file requires _name to be set"
-msgstr "E920: _io t@CÍ _name ÌÝèªKvÅ·"
-
-msgid "E915: in_io buffer requires in_buf or in_name to be set"
-msgstr "E915: in_io obt@Í in_buf © in_name ÌÝèªKvÅ·"
-
-#, c-format
-msgid "E918: buffer must be loaded: %s"
-msgstr "E918: obt@ª[h³êÄȯêÎÈèܹñ: %s"
-
-msgid "E916: not a valid job"
-msgstr "E916: LøÈWuÅÍ èܹñ"
+msgid "Used CUT_BUFFER0 instead of empty selection"
+msgstr "óÌIðÌæÌ©íèÉCUT_BUFFER0ªgp³êܵ½"
msgid "tagname"
msgstr "^O¼"
@@ -473,12 +248,14 @@
msgid "'history' option is zero"
msgstr "IvV 'history' ª[Å·"
-msgid "E821: File is encrypted with unknown method"
-msgstr "E821: t@Cª¢mÌû@Åû³êĢܷ"
-
msgid "Warning: Using a weak encryption method; see :help 'cm'"
msgstr "x: ã¢Ãû@ðgÁĢܷ; :help 'cm' ðQƵľ³¢"
+msgid "Note: Encryption of swapfile not supported, disabling swap file"
+msgstr ""
+"Ó: Xbvt@CÌûÍT|[g³êĢܹñBXbvt@Cð³"
+"ø»µÜ·"
+
msgid "Enter encryption key: "
msgstr "ûpÌL[ðü͵ľ³¢: "
@@ -521,10 +298,6 @@
msgid "Breakpoint in \"%s%s\" line %ld"
msgstr "u[N|Cg \"%s%s\" s %ld"
-#, c-format
-msgid "E161: Breakpoint not found: %s"
-msgstr "E161: u[N|Cgª©Â©èܹñ: %s"
-
msgid "No breakpoints defined"
msgstr "u[N|Cgªè`³êĢܹñ"
@@ -536,85 +309,16 @@
msgid "%3d expr %s"
msgstr "%3d expr %s"
-#, c-format
-msgid "E720: Missing colon in Dictionary: %s"
-msgstr "E720: «^ÉRª èܹñ: %s"
-
-#, c-format
-msgid "E721: Duplicate key in Dictionary: \"%s\""
-msgstr "E721: «^Éd¡L[ª èÜ·: \"%s\""
-
-#, c-format
-msgid "E722: Missing comma in Dictionary: %s"
-msgstr "E722: «^ÉJ}ª èܹñ: %s"
-
-#, c-format
-msgid "E723: Missing end of Dictionary '}': %s"
-msgstr "E723: «^ÌÅãÉ '}' ª èܹñ: %s"
-
msgid "extend() argument"
msgstr "extend() Ìø"
#, c-format
-msgid "E737: Key already exists: %s"
-msgstr "E737: L[Íùɶݵܷ: %s"
-
-#, c-format
-msgid "E96: Cannot diff more than %d buffers"
-msgstr "E96: %d ÈãÌobt@Ídiffūܹñ"
-
-#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "obt@ \"%s\" pÉàdiffðg¤½ß̪s«µÄ¢Ü·"
-msgid "E810: Cannot read or write temp files"
-msgstr "E810: êt@CÌÇàµÍªÅ«Ü¹ñ"
-
-msgid "E97: Cannot create diffs"
-msgstr "E97: ·ªðì¬Å«Ü¹ñ"
-
-msgid "E960: Problem creating the internal diff"
-msgstr "E960: àdiffì¬Éâ誶µÜµ½"
-
msgid "Patch file"
msgstr "pb`t@C"
-msgid "E816: Cannot read patch output"
-msgstr "E816: patchÌoÍðÇßܹñ"
-
-msgid "E98: Cannot read diff output"
-msgstr "E98: diffÌoÍðÇßܹñ"
-
-msgid "E959: Invalid diff format."
-msgstr "E959: ³øÈdiff`®Å·"
-
-msgid "E99: Current buffer is not in diff mode"
-msgstr "E99: »ÝÌobt@Í·ª[hÅÍ èܹñ"
-
-msgid "E793: No other buffer in diff mode is modifiable"
-msgstr "E793: ·ª[hÅ é¼Ìobt@ÍÏXūܹñ"
-
-msgid "E100: No other buffer in diff mode"
-msgstr "E100: ·ª[hÅ é¼Ìobt@Í èܹñ"
-
-msgid "E101: More than two buffers in diff mode, don't know which one to use"
-msgstr ""
-"E101: ·ª[hÌobt@ª2ÂÈã éÌÅAÇêðg¤©Áèūܹñ"
-
-#, c-format
-msgid "E102: Can't find buffer \"%s\""
-msgstr "E102: obt@ \"%s\" ª©Â©èܹñ"
-
-#, c-format
-msgid "E103: Buffer \"%s\" is not in diff mode"
-msgstr "E103: obt@ \"%s\" Í·ª[hÅÍ èܹñ"
-
-msgid "E787: Buffer changed unexpectedly"
-msgstr "E787: \\ú¹¸obt@ªÏX³êܵ½"
-
-msgid "E104: Escape not allowed in digraph"
-msgstr "E104: ÉEscapeÍgpūܹñ"
-
msgid "Custom"
msgstr "JX^"
@@ -690,161 +394,10 @@
msgid "Bopomofo"
msgstr "¹ê"
-msgid "E544: Keymap file not found"
-msgstr "E544: L[}bvt@Cª©Â©èܹñ"
-
-msgid "E105: Using :loadkeymap not in a sourced file"
-msgstr "E105: :source ÅæÞt@CÈOÅÍ :loadkeymap ðg¦Ü¹ñ"
-
-msgid "E791: Empty keymap entry"
-msgstr "E791: óÌL[}bvGg"
-
-msgid "E111: Missing ']'"
-msgstr "E111: ']' ª©Â©èܹñ"
-
-msgid "E719: Cannot use [:] with a Dictionary"
-msgstr "E719: [:] ð«^ÆgÝí¹ÄÍg¦Ü¹ñ"
-
-msgid "E806: using Float as a String"
-msgstr "E806: ®¬_ð¶ñƵĵÁĢܷ"
-
-msgid "E274: No white space allowed before parenthesis"
-msgstr "E274: ÛÊÌOÉXy[Xͳêܹñ"
-
-msgid "E689: Can only index a List, Dictionary or Blob"
-msgstr "E689: Xg^A«^ABlob^ÈOÍCfbNXwèūܹñ"
-
-msgid "E708: [:] must come last"
-msgstr "E708: [:] ÍÅãÅȯê΢¯Ü¹ñ"
-
-msgid "E709: [:] requires a List or Blob value"
-msgstr "E709: [:] ÉÍXg^©Blob^ÌlªKvÅ·"
-
-msgid "E972: Blob value does not have the right number of bytes"
-msgstr "E972: Blob^ÌlÌoCgª³µ èܹñ"
-
-msgid "E996: Cannot lock a range"
-msgstr "E996: ÍÍÍbNūܹñ"
-
-msgid "E710: List value has more items than target"
-msgstr "E710: Xg^ÏÉ^[Qbgæèརvfª èÜ·"
-
-msgid "E711: List value has not enough items"
-msgstr "E711: Xg^ÏÉ\\ªÈÌvfª èܹñ"
-
-msgid "E996: Cannot lock a list or dict"
-msgstr "E996: Xg é¢Í«ÍbNūܹñ"
-
-msgid "E690: Missing \"in\" after :for"
-msgstr "E690: :for ÌãÉ \"in\" ª èܹñ"
-
-msgid "E109: Missing ':' after '?'"
-msgstr "E109: '?' ÌãÉ ':' ª èܹñ"
-
-msgid "E804: Cannot use '%' with Float"
-msgstr "E804: '%' ð®¬_ÆgÝí¹ÄÍg¦Ü¹ñ"
-
-msgid "E973: Blob literal should have an even number of hex characters"
-msgstr "E973: BlobeÍôÂÌ16i¶ÅȯêÎÈèܹñ"
-
-msgid "E110: Missing ')'"
-msgstr "E110: ')' ª©Â©èܹñ"
-
-msgid "E260: Missing name after ->"
-msgstr "E260: -> ÌãɼOª èܹñ"
-
-msgid "E695: Cannot index a Funcref"
-msgstr "E695: ÖQÆ^ÍCfbNXūܹñ"
-
-msgid "E909: Cannot index a special variable"
-msgstr "E909: ÁêÏÍCfbNXūܹñ"
-
-#, c-format
-msgid "E112: Option name missing: %s"
-msgstr "E112: IvV¼ª èܹñ: %s"
-
-#, c-format
-msgid "E113: Unknown option: %s"
-msgstr "E113: ¢mÌIvVÅ·: %s"
-
-#, c-format
-msgid "E114: Missing quote: %s"
-msgstr "E114: øp (\") ª èܹñ: %s"
-
-#, c-format
-msgid "E115: Missing quote: %s"
-msgstr "E115: øp (') ª èܹñ: %s"
-
msgid "Not enough memory to set references, garbage collection aborted!"
msgstr ""
"K[xbWRNVð~µÜµ½! QÆð쬷éÌɪs«µÜµ½"
-msgid "E724: variable nested too deep for displaying"
-msgstr "E724: \\¦·éÉÍÏÌüêqª[ܷ߬"
-
-msgid "E805: Using a Float as a Number"
-msgstr "E805: ®¬_ðlƵĵÁĢܷ"
-
-msgid "E703: Using a Funcref as a Number"
-msgstr "E703: ÖQÆ^ðlƵĵÁĢܷ"
-
-msgid "E745: Using a List as a Number"
-msgstr "E745: Xg^ðlƵĵÁĢܷ"
-
-msgid "E728: Using a Dictionary as a Number"
-msgstr "E728: «^ðlƵĵÁĢܷ"
-
-msgid "E910: Using a Job as a Number"
-msgstr "E910: WuðlƵĵÁĢܷ"
-
-msgid "E913: Using a Channel as a Number"
-msgstr "E913: `lðlƵĵÁĢܷ"
-
-msgid "E974: Using a Blob as a Number"
-msgstr "E974: Blob^ðlƵĵÁĢܷ"
-
-msgid "E891: Using a Funcref as a Float"
-msgstr "E891: ÖQÆ^ð®¬_ƵĵÁĢܷ"
-
-msgid "E892: Using a String as a Float"
-msgstr "E892: ¶ñð®¬_ƵĵÁĢܷ"
-
-msgid "E893: Using a List as a Float"
-msgstr "E893: Xg^ð®¬_ƵĵÁĢܷ"
-
-msgid "E894: Using a Dictionary as a Float"
-msgstr "E894: «^ð®¬_ƵĵÁĢܷ"
-
-msgid "E907: Using a special value as a Float"
-msgstr "E907: Áêlð®¬_ƵĵÁĢܷ"
-
-msgid "E911: Using a Job as a Float"
-msgstr "E911: Wuð®¬_ƵĵÁĢܷ"
-
-msgid "E914: Using a Channel as a Float"
-msgstr "E914: `lð®¬_ƵĵÁĢܷ"
-
-msgid "E975: Using a Blob as a Float"
-msgstr "E975: Blob^ð®¬_ƵĵÁĢܷ"
-
-msgid "E729: using Funcref as a String"
-msgstr "E729: ÖQÆ^ð¶ñƵĵÁĢܷ"
-
-msgid "E730: using List as a String"
-msgstr "E730: Xg^ð¶ñƵĵÁĢܷ"
-
-msgid "E731: using Dictionary as a String"
-msgstr "E731: «^ð¶ñƵĵÁĢܷ"
-
-msgid "E976: using Blob as a String"
-msgstr "E976: Blob^ð¶ñƵĵÁĢܷ"
-
-msgid "E908: using an invalid value as a String"
-msgstr "E908: ³øÈlð¶ñƵĵÁĢܷ"
-
-msgid "E698: variable nested too deep for making a copy"
-msgstr "E698: Rs[ðæéÉÍÏÌüêqª[ܷ߬"
-
msgid ""
"\n"
"\tLast set from "
@@ -852,50 +405,9 @@
"\n"
"\tÅãÉZbgµ½XNvg: "
-msgid " line "
-msgstr " s "
-
-msgid "E977: Can only compare Blob with Blob"
-msgstr "E977: Blob^ÍBlob^Ƶ©ärūܹñ"
-
-msgid "E691: Can only compare List with List"
-msgstr "E691: Xg^ÍXg^Ƶ©ärūܹñ"
-
-msgid "E692: Invalid operation for List"
-msgstr "E692: Xg^ÉͳøÈìÅ·"
-
-msgid "E735: Can only compare Dictionary with Dictionary"
-msgstr "E735: «^Í«^Ƶ©ärūܹñ"
-
-msgid "E736: Invalid operation for Dictionary"
-msgstr "E736: «^ÉͳøÈìÅ·"
-
-msgid "E694: Invalid operation for Funcrefs"
-msgstr "E694: ÖQÆ^ÉͳøÈìÅ·"
-
-msgid "E808: Number or Float required"
-msgstr "E808: l©®¬_ªKvÅ·"
-
-#, c-format
-msgid "E158: Invalid buffer name: %s"
-msgstr "E158: ³øÈobt@¼Å·: %s"
-
msgid "&Ok"
msgstr "&Ok"
-msgid "E980: lowlevel input not supported"
-msgstr "E980: áxüÍÍT|[g³êĢܹñ"
-
-#, c-format
-msgid "E700: Unknown function: %s"
-msgstr "E700: ¢mÌÖÅ·: %s"
-
-msgid "E922: expected a dict"
-msgstr "E922: «ªúÒ³êĢܷ"
-
-msgid "E923: Second argument of function() must be a list or a dict"
-msgstr "E923: function() Ìæ 2 øÍXg^ܽͫ^ÅȯêÎÈèܹñ"
-
msgid ""
"&OK\n"
"&Cancel"
@@ -906,130 +418,6 @@
msgid "called inputrestore() more often than inputsave()"
msgstr "inputrestore() ª inputsave() æèà½ÄÎêܵ½"
-msgid "E786: Range not allowed"
-msgstr "E786: ÍÍwèͳêĢܹñ"
-
-msgid "E701: Invalid type for len()"
-msgstr "E701: len() ÉͳøÈ^Å·"
-
-msgid "E726: Stride is zero"
-msgstr "E726: XgCh(OiÊ)ª 0 Å·"
-
-msgid "E727: Start past end"
-msgstr "E727: JnÊuªI¹Êuðz¦Üµ½"
-
-msgid "E240: No connection to the X server"
-msgstr "E240: X T[o[ÖÌÚ±ª èܹñ"
-
-#, c-format
-msgid "E241: Unable to send to %s"
-msgstr "E241: %s Ö鱯ªÅ«Ü¹ñ"
-
-msgid "E277: Unable to read a server reply"
-msgstr "E277: T[o[̪ èܹñ"
-
-msgid "E941: already started a server"
-msgstr "E941: T[o[Í·ÅÉJnµÄ¢Ü·"
-
-msgid "E942: +clientserver feature not available"
-msgstr "E942: +clientserver @\\ª³øÉÈÁĢܷ"
-
-msgid "E258: Unable to send to client"
-msgstr "E258: NCAgÖ鱯ªÅ«Ü¹ñ"
-
-#, c-format
-msgid "E962: Invalid action: '%s'"
-msgstr "E962: ³øÈìÅ·: '%s'"
-
-msgid "(Invalid)"
-msgstr "(³ø)"
-
-#, c-format
-msgid "E935: invalid submatch number: %d"
-msgstr "E935: ³øÈTu}b`ÔÅ·: %d"
-
-msgid "E18: Unexpected characters in :let"
-msgstr "E18: \\ú¹Ê¶ª :let É èܵ½"
-
-msgid "E991: cannot use =<< here"
-msgstr "E991: ±±ÅÍ =<< Íg¦Ü¹ñ"
-
-msgid "E221: Marker cannot start with lower case letter"
-msgstr "E221: }[J[Íp¬¶ÅnÜÁÄÍ¢¯Ü¹ñ"
-
-msgid "E172: Missing marker"
-msgstr "E172: }[J[ª èܹñ"
-
-#, c-format
-msgid "E990: Missing end marker '%s'"
-msgstr "E990: I[}[J[ª èܹñ '%s'"
-
-msgid "E985: .= is not supported with script version 2"
-msgstr "E985: .= ÍXNvgo[W 2 ÅÍεĢܹñ"
-
-msgid "E687: Less targets than List items"
-msgstr "E687: ^[QbgªXg^àÌvfæèàȢŷ"
-
-msgid "E688: More targets than List items"
-msgstr "E688: ^[QbgªXg^àÌvfæèརŷ"
-
-msgid "Double ; in list of variables"
-msgstr "Xg^ÌlÉ2ÂÈãÌ ; ªo³êܵ½"
-
-#, c-format
-msgid "E738: Can't list variables for %s"
-msgstr "E738: %s Ìlðê\\¦Å«Ü¹ñ"
-
-msgid "E996: Cannot lock an environment variable"
-msgstr "E996: «ÏÍbNūܹñ"
-
-msgid "E996: Cannot lock an option"
-msgstr "E996: IvVÍbNūܹñ"
-
-msgid "E996: Cannot lock a register"
-msgstr "E996: WX^ÍbNūܹñ"
-
-#, c-format
-msgid "E108: No such variable: \"%s\""
-msgstr "E108: »ÌÏÍ èܹñ: \"%s\""
-
-#, c-format
-msgid "E940: Cannot lock or unlock variable %s"
-msgstr "E940: Ï %s ÍbNܽÍAbNūܹñ"
-
-msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: (A)bN·éÉÍÏÌüêqª[ܷ߬"
-
-#, c-format
-msgid "E963: setting %s to value with wrong type"
-msgstr "E963: %s ðÔáÁ½^ÌlÅÝèµÄ¢Ü·"
-
-#, c-format
-msgid "E795: Cannot delete variable %s"
-msgstr "E795: Ï %s ðíūܹñ"
-
-#, c-format
-msgid "E704: Funcref variable name must start with a capital: %s"
-msgstr "E704: ÖQÆ^ϼÍå¶ÅnÜçȯêÎÈèܹñ: %s"
-
-#, c-format
-msgid "E705: Variable name conflicts with existing function: %s"
-msgstr "E705: ϼªù¶ÌÖ¼ÆÕ˵ܷ: %s"
-
-#, c-format
-msgid "E741: Value is locked: %s"
-msgstr "E741: lªbN³êĢܷ: %s"
-
-msgid "Unknown"
-msgstr "s¾"
-
-#, c-format
-msgid "E742: Cannot change value of %s"
-msgstr "E742: %s ÌlðÏXūܹñ"
-
-msgid "E921: Invalid callback argument"
-msgstr "E921: ³øÈR[obNøÅ·"
-
#, c-format
msgid "<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"
msgstr "<%s>%s%s %d, 16i %02x, 8i %03o, _COt %s"
@@ -1054,9 +442,6 @@
msgid "> %d, Hex %08x, Octal %o"
msgstr "> %d, 16i %08x, 8i %o"
-msgid "E134: Cannot move a range of lines into itself"
-msgstr "E134: sÌÍÍð»ê©gÉÍڮūܹñ"
-
#, c-format
msgid "%ld line moved"
msgid_plural "%ld lines moved"
@@ -1066,9 +451,6 @@
msgid "%ld lines filtered"
msgstr "%ld sªtB^³êܵ½"
-msgid "E135: *Filter* Autocommands must not change current buffer"
-msgstr "E135: *tB^* autocommandÍ»ÝÌobt@ðÏXµÄÍ¢¯Ü¹ñ"
-
msgid "[No write since last change]\n"
msgstr "[ÅãÌÏXªÛ¶³êĢܹñ]\n"
@@ -1078,9 +460,6 @@
msgid "Write partial file?"
msgstr "t@CðªIÉÛ¶µÜ·©?"
-msgid "E140: Use ! to write partial buffer"
-msgstr "E140: obt@ðªIÉÛ¶·éÉÍ ! ðgÁľ³¢"
-
#, c-format
msgid "Overwrite existing file \"%s\"?"
msgstr "ù¶Ìt@C \"%s\" ð㫵ܷ©?"
@@ -1090,17 +469,6 @@
msgstr "Xbvt@C \"%s\" ª¶ÝµÜ·Bã«ð§µÜ·©?"
#, c-format
-msgid "E768: Swap file exists: %s (:silent! overrides)"
-msgstr "E768: Xbvt@Cª¶ÝµÜ·: %s (:silent! ðÇÁÅã)"
-
-#, c-format
-msgid "E141: No file name for buffer %ld"
-msgstr "E141: obt@ %ld ÉͼOª èܹñ"
-
-msgid "E142: File not written: Writing is disabled by 'write' option"
-msgstr "E142: t@CÍÛ¶³êܹñŵ½: 'write' IvVÉæè³øÅ·"
-
-#, c-format
msgid ""
"'readonly' option is set for \"%s\".\n"
"Do you wish to write anyway?"
@@ -1115,30 +483,13 @@
"Do you wish to try?"
msgstr ""
"t@C \"%s\" Ìp[~bVªÇêpÅ·.\n"
-"»êÅà°ç«Þ±ÆÍÂ\\Å·.\n"
+"»êÅà°çÞ±ÆÍÂ\\Å·.\n"
"p±µÜ·©?"
-#, c-format
-msgid "E505: \"%s\" is read-only (add ! to override)"
-msgstr "E505: \"%s\" ÍÇêpÅ· (§ÉÍ ! ðÇÁ)"
-
msgid "Edit File"
msgstr "t@CðÒW"
#, c-format
-msgid "E143: Autocommands unexpectedly deleted new buffer %s"
-msgstr "E143: autocommandª\\ú¹¸Vµ¢obt@ %s ðíµÜµ½"
-
-msgid "E144: non-numeric argument to :z"
-msgstr "E144: ÅÍÈ¢øª :z Én³êܵ½"
-
-msgid "E145: Shell commands and some functionality not allowed in rvim"
-msgstr "E145: rvimÅÍVFR}hÆêÌ@\\ðg¦Ü¹ñ"
-
-msgid "E146: Regular expressions can't be delimited by letters"
-msgstr "E146: ³K\\»Í¶ÅæØé±ÆªÅ«Ü¹ñ"
-
-#, c-format
msgid "replace with %s (y/n/a/q/l/^E/^Y)?"
msgstr "%s Éu·µÜ·©? (y/n/a/q/l/^E/^Y)"
@@ -1165,12 +516,6 @@
msgid_plural "%ld substitutions on %ld lines"
msgstr[0] "%ld Óu·µÜµ½ (v %ld sà)"
-msgid "E147: Cannot do :global recursive with a range"
-msgstr "E147: :global ðÍÍt«ÅÄAIÉÍg¦Ü¹ñ"
-
-msgid "E148: Regular expression missing from global"
-msgstr "E148: globalR}hɳK\\»ªwè³êĢܹñ"
-
#, c-format
msgid "Pattern found in every line: %s"
msgstr "p^[ªSÄÌsũ©èܵ½: %s"
@@ -1179,46 +524,6 @@
msgid "Pattern not found: %s"
msgstr "p^[ͩ©èܹñŵ½: %s"
-msgid "E478: Don't panic!"
-msgstr "E478: QÄȢž³¢"
-
-#, c-format
-msgid "E661: Sorry, no '%s' help for %s"
-msgstr "E661: cOÅ·ª '%s' Ìwvª %s ÉÍ èܹñ"
-
-#, c-format
-msgid "E149: Sorry, no help for %s"
-msgstr "E149: cOÅ·ª %s ÉÍwvª èܹñ"
-
-#, c-format
-msgid "Sorry, help file \"%s\" not found"
-msgstr "cOÅ·ªwvt@C \"%s\" ª©Â©èܹñ"
-
-#, c-format
-msgid "E151: No match: %s"
-msgstr "E151: }b`Í èܹñ: %s"
-
-#, c-format
-msgid "E152: Cannot open %s for writing"
-msgstr "E152: ÝpÉ %s ðJ¯Ü¹ñ"
-
-#, c-format
-msgid "E153: Unable to open %s for reading"
-msgstr "E153: ÇpÉ %s ðJ¯Ü¹ñ"
-
-# Added at 29-Apr-2004.
-#, c-format
-msgid "E670: Mix of help file encodings within a language: %s"
-msgstr "E670: 1Â̾êÌwvt@CÉ¡ÌGR[hª¬ÝµÄ¢Ü·: %s"
-
-#, c-format
-msgid "E154: Duplicate tag \"%s\" in file %s/%s"
-msgstr "E154: ^O \"%s\" ªt@C %s/%s Éd¡µÄ¢Ü·"
-
-#, c-format
-msgid "E150: Not a directory: %s"
-msgstr "E150: fBNgÅÍ èܹñ: %s"
-
msgid "No old files"
msgstr "ât@CÍ èܹñ"
@@ -1226,20 +531,8 @@
msgid "Save changes to \"%s\"?"
msgstr "ÏXð \"%s\" ÉÛ¶µÜ·©?"
-#, c-format
-msgid "E947: Job still running in buffer \"%s\""
-msgstr "E947: WuÍobt@ \"%s\" ÅܾÀsÅ·"
-
-#, c-format
-msgid "E162: No write since last change for buffer \"%s\""
-msgstr "E162: obt@ \"%s\" ÌÏXÍÛ¶³êĢܹñ"
-
msgid "Warning: Entered other buffer unexpectedly (check autocommands)"
-msgstr "x: \\ú¹¸¼obt@ÖÚ®µÜµ½ (autocommands ð²×ľ³¢)"
-
-#, c-format
-msgid "E666: compiler not supported: %s"
-msgstr "E666: »ÌRpCÉÍεĢܹñ: %s"
+msgstr "x: \\ú¹¸¼obt@ÖÚ®µÜµ½ (©®R}hð²×ľ³¢)"
#, c-format
msgid "W20: Required python version 2.x not supported, ignoring file: %s"
@@ -1249,93 +542,40 @@
msgid "W21: Required python version 3.x not supported, ignoring file: %s"
msgstr "W21: v³ê½python 3.xÍεĢܹñAt@Cð³µÜ·: %s"
-#, c-format
-msgid "Current %slanguage: \"%s\""
-msgstr "»ÝÌ %s¾ê: \"%s\""
-
-#, c-format
-msgid "E197: Cannot set language to \"%s\""
-msgstr "E197: ¾êð \"%s\" ÉÝèūܹñ"
-
msgid "Entering Ex mode. Type \"visual\" to go to Normal mode."
msgstr ""
"Ex[hÉüèÜ·Bm[}[hÉßéÉÍ\"visual\"Æü͵ľ³¢B"
-msgid "E501: At end-of-file"
-msgstr "E501: t@CÌI¹Êu"
-
#, c-format
msgid "Executing: %s"
msgstr "Às: %s"
-msgid "E169: Command too recursive"
-msgstr "E169: R}hªÄAIܷ߬"
-
-#, c-format
-msgid "E605: Exception not caught: %s"
-msgstr "E605: áOªß¨³êܹñŵ½: %s"
-
msgid "End of sourced file"
-msgstr "æt@CÌÅãÅ·"
+msgstr "æÝt@CÌÅãÅ·"
msgid "End of function"
msgstr "ÖÌÅãÅ·"
-msgid "E464: Ambiguous use of user-defined command"
-msgstr "E464: [U[è`R}hÌ ¢Ü¢ÈgpÅ·"
-
-msgid "E492: Not an editor command"
-msgstr "E492: GfB^ÌR}hÅÍ èܹñ"
-
-msgid "E981: Command not allowed in rvim"
-msgstr "E981: rvimÅͱÌR}hðg¦Ü¹ñ"
-
-msgid "E493: Backwards range given"
-msgstr "E493: t³ÜÌÍͪwè³êܵ½"
-
msgid "Backwards range given, OK to swap"
msgstr "t³ÜÌÍͪwè³êܵ½Aü֦ܷ©?"
-msgid "E494: Use w or w>>"
-msgstr "E494: w àµÍ w>> ðgpµÄ¾³¢"
-
msgid ""
"INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"
msgstr ""
"àG[: EX_DFLALL ð ADDR_NONE, ADDR_UNSIGNED â ADDR_QUICKFIX ÆÆàÉg"
"¤±ÆÍūܹñ"
-msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
-msgstr ""
-"E943: R}he[uðXV·éKvª èÜ·A'make cmdidxs' ðÀsµÄ¾"
-"³¢"
-
-msgid "E319: Sorry, the command is not available in this version"
-msgstr "E319: ±Ìo[WÅͱÌR}hÍpūܹñA²ßñȳ¢"
-
#, c-format
msgid "%d more file to edit. Quit anyway?"
msgid_plural "%d more files to edit. Quit anyway?"
msgstr[0] "ÒW·×«t@Cª Æ %d  èÜ·ªAI¹µÜ·©?"
-#, c-format
-msgid "E173: %d more file to edit"
-msgid_plural "E173: %d more files to edit"
-msgstr[0] "E173: ÒW·×«t@Cª Æ %d  èÜ·"
-
msgid "unknown"
msgstr "s¾"
-#, c-format
-msgid "E185: Cannot find color scheme '%s'"
-msgstr "E185: J[XL[ '%s' ª©Â©èܹñ"
-
msgid "Greetings, Vim user!"
msgstr "Vim g¢³ñAâ !"
-msgid "E784: Cannot close last tab page"
-msgstr "E784: ÅãÌ^uy[WðÂ¶é±ÆÍūܹñ"
-
msgid "Already only one tab page"
msgstr "ùÉ^uy[WÍ1µ© èܹñ"
@@ -1355,96 +595,16 @@
msgid "Append File"
msgstr "ÇÁt@C"
-msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
-msgstr ""
-"E747: obt@ªC³³êÄ¢éÌÅAfBNgðÏXūܹñ (! ðÇÁÅ"
-"ã)"
-
-msgid "E186: No previous directory"
-msgstr "E186: OÌfBNgÍ èܹñ"
-
-msgid "E187: Unknown"
-msgstr "E187: ¢m"
-
-msgid "E465: :winsize requires two number arguments"
-msgstr "E465: :winsize ÉÍ2ÂÌlÌøªKvÅ·"
-
#, c-format
msgid "Window position: X %d, Y %d"
msgstr "EBhEÊu: X %d, Y %d"
-msgid "E188: Obtaining window position not implemented for this platform"
-msgstr ""
-"E188: ±Ìvbgz[ÉÍEBhEÊuÌæ¾@\\ÍÀ³êĢܹñ"
-
-msgid "E466: :winpos requires two number arguments"
-msgstr "E466: :winpos ÉÍ2ÂÌlÌøªKvÅ·"
-
-msgid "E930: Cannot use :redir inside execute()"
-msgstr "E930: execute() ÌÅÍ :redir Íg¦Ü¹ñ"
-
msgid "Save Redirection"
msgstr "_CNgðÛ¶µÜ·"
-#, c-format
-msgid "E739: Cannot create directory: %s"
-msgstr "E739: fBNgðì¬Å«Ü¹ñ: %s"
-
-#, c-format
-msgid "E189: \"%s\" exists (add ! to override)"
-msgstr "E189: \"%s\" ª¶ÝµÜ· (ã·éÉÍ ! ðÇÁµÄ¾³¢)"
-
-#, c-format
-msgid "E190: Cannot open \"%s\" for writing"
-msgstr "E190: \"%s\" ðÝpƵÄJ¯Ü¹ñ"
-
-msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr "E191: øÍ1¶Ìp©øp (' © `) Åȯê΢¯Ü¹ñ"
-
-msgid "E192: Recursive use of :normal too deep"
-msgstr "E192: :normal ÌÄApª[Èè߬ܵ½"
-
-msgid "E809: #< is not available without the +eval feature"
-msgstr "E809: #< Í +eval @\\ª³¢Æpūܹñ"
-
-msgid "E194: No alternate file name to substitute for '#'"
-msgstr "E194: '#'ðu«·¦ét@C̼Oª èܹñ"
-
-msgid "E495: no autocommand file name to substitute for \"<afile>\""
-msgstr "E495: \"<afile>\"ðu«·¦éautocommandÌt@C¼ª èܹñ"
-
-msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
-msgstr "E496: \"<abuf>\"ðu«·¦éautocommandobt@Ôª èܹñ"
-
-msgid "E497: no autocommand match name to substitute for \"<amatch>\""
-msgstr "E497: \"<amatch>\"ðu«·¦éautocommandÌY¼ª èܹñ"
-
-msgid "E498: no :source file name to substitute for \"<sfile>\""
-msgstr "E498: \"<sfile>\"ðu«·¦é :source ÎÛt@C¼ª èܹñ"
-
-msgid "E842: no line number to use for \"<slnum>\""
-msgstr "E842: \"<slnum>\"ðu«·¦ésÔª èܹñ"
-
-msgid "E961: no line number to use for \"<sflnum>\""
-msgstr "E961: \"<sflnum>\"ðu«·¦ésÔª èܹñ"
-
-#, no-c-format
-msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
-msgstr ""
-"E499: '%' â '#' ª³¼t@CÈÌÅ \":p:h\" ðºíÈ¢g¢ûÍūܹñ"
-
-msgid "E500: Evaluates to an empty string"
-msgstr "E500: ó¶ñƵÄ]¿³êܵ½"
-
msgid "Untitled"
msgstr "³è"
-msgid "E196: No digraphs in this version"
-msgstr "E196: ±Ìo[WÉÍ èܹñ"
-
-msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
-msgstr "E608: 'Vim' ÅnÜéáOÍ :throw ūܹñ"
-
#, c-format
msgid "Exception thrown: %s"
msgstr "áOª¶µÜµ½: %s"
@@ -1489,71 +649,11 @@
msgid "Interrupt"
msgstr "Ý"
-msgid "E579: :if nesting too deep"
-msgstr "E579: :if Ìüêqª[ܷ߬"
+msgid "[Command Line]"
+msgstr "[R}hC]"
-msgid "E580: :endif without :if"
-msgstr "E580: :if ÌÈ¢ :endif ª èÜ·"
-
-msgid "E581: :else without :if"
-msgstr "E581: :if ÌÈ¢ :else ª èÜ·"
-
-msgid "E582: :elseif without :if"
-msgstr "E582: :if ÌÈ¢ :elseif ª èÜ·"
-
-msgid "E583: multiple :else"
-msgstr "E583: ¡Ì :else ª èÜ·"
-
-msgid "E584: :elseif after :else"
-msgstr "E584: :else ÌãÉ :elseif ª èÜ·"
-
-msgid "E585: :while/:for nesting too deep"
-msgstr "E585: :while â :for Ìüêqª[ܷ߬"
-
-msgid "E586: :continue without :while or :for"
-msgstr "E586: :while â :for ÌÈ¢ :continue ª èÜ·"
-
-msgid "E587: :break without :while or :for"
-msgstr "E587: :while â :for ÌÈ¢ :break ª èÜ·"
-
-msgid "E732: Using :endfor with :while"
-msgstr "E732: :endfor ð :while ÆgÝí¹Ä¢Ü·"
-
-msgid "E733: Using :endwhile with :for"
-msgstr "E733: :endwhile ð :for ÆgÝí¹Ä¢Ü·"
-
-msgid "E601: :try nesting too deep"
-msgstr "E601: :try Ìüêqª[ܷ߬"
-
-msgid "E603: :catch without :try"
-msgstr "E603: :try ÌÈ¢ :catch ª èÜ·"
-
-msgid "E604: :catch after :finally"
-msgstr "E604: :finally ÌãÉ :catch ª èÜ·"
-
-msgid "E606: :finally without :try"
-msgstr "E606: :try ÌÈ¢ :finally ª èÜ·"
-
-msgid "E607: multiple :finally"
-msgstr "E607: ¡Ì :finally ª èÜ·"
-
-msgid "E602: :endtry without :try"
-msgstr "E602: :try ÌÈ¢ :endtry Å·"
-
-msgid "E193: :endfunction not inside a function"
-msgstr "E193: ÖÌOÉ :endfunction ª èܵ½"
-
-msgid "E788: Not allowed to edit another buffer now"
-msgstr "E788: »ÝͼÌobt@ðÒW·é±ÆÍ³êܹñ"
-
-msgid "E811: Not allowed to change buffer information now"
-msgstr "E811: »ÝÍobt@îñðÏX·é±ÆÍ³êܹñ"
-
-msgid "E199: Active window or buffer deleted"
-msgstr "E199: ANeBuÈEBhE©obt@ªí³êܵ½"
-
-msgid "E812: Autocommands changed buffer or buffer name"
-msgstr "E812: autocommandªobt@©obt@¼ðÏXµÜµ½"
+msgid "is a directory"
+msgstr "ÍfBNgÅ·"
msgid "Illegal file name"
msgstr "s³Èt@C¼"
@@ -1573,21 +673,12 @@
msgid "[Permission Denied]"
msgstr "[ Àª èܹñ]"
-msgid "E200: *ReadPre autocommands made the file unreadable"
-msgstr "E200: *ReadPre autocommand ªt@CðÇsÂɵܵ½"
-
-msgid "E201: *ReadPre autocommands must not change current buffer"
-msgstr "E201: *ReadPre autocommand Í»ÝÌobt@ðϦçêܹñ"
-
msgid "Vim: Reading from stdin...\n"
-msgstr "Vim: WüÍ©çÇ...\n"
+msgstr "Vim: WüÍ©çÇÝ...\n"
msgid "Reading from stdin..."
msgstr "WüÍ©çÇÝ..."
-msgid "E202: Conversion made file unreadable!"
-msgstr "E202: Ï·ªt@CðÇsÂɵܵ½"
-
msgid "[fifo]"
msgstr "[FIFO]"
@@ -1647,9 +738,9 @@
msgstr[0] "%ld s, "
#, c-format
-msgid "%lld character"
-msgid_plural "%lld characters"
-msgstr[0] "%lld ¶"
+msgid "%lld byte"
+msgid_plural "%lld bytes"
+msgstr[0] "%lld oCg"
msgid "[noeol]"
msgstr "[noeol]"
@@ -1658,25 +749,6 @@
msgstr "[ÅIsªs®S]"
#, c-format
-msgid "E208: Error writing to \"%s\""
-msgstr "E208: \"%s\" ðÝÌG[Å·"
-
-#, c-format
-msgid "E209: Error closing \"%s\""
-msgstr "E209: \"%s\" ð¶éÉG[Å·"
-
-#, c-format
-msgid "E210: Error reading \"%s\""
-msgstr "E210: \"%s\" ðÇÌG[Å·"
-
-msgid "E246: FileChangedShell autocommand deleted buffer"
-msgstr "E246: autocommand Ì FileChangedShell ªobt@ðíµÜµ½"
-
-#, c-format
-msgid "E211: File \"%s\" no longer available"
-msgstr "E211: t@C \"%s\" Íùɶݵܹñ"
-
-#, c-format
msgid ""
"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as "
"well"
@@ -1713,26 +785,11 @@
"&OK\n"
"t@CÇ(&L)"
-#, c-format
-msgid "E462: Could not prepare for reloading \"%s\""
-msgstr "E462: \"%s\" ð[h·éõªÅ«Ü¹ñŵ½"
-
-#, c-format
-msgid "E321: Could not reload \"%s\""
-msgstr "E321: \"%s\" Í[hūܹñŵ½"
-
-msgid "E219: Missing {."
-msgstr "E219: { ª èܹñB"
-
-msgid "E220: Missing }."
-msgstr "E220: } ª èܹñB"
-
msgid "<empty>"
msgstr "<ó>"
-# Added at 10-Mar-2004.
-msgid "E655: Too many symbolic links (cycle?)"
-msgstr "E655: V{bNNª½ß¬Ü· (zµĢéÂ\\«ª èÜ·)"
+msgid "writefile() first argument must be a List or a Blob"
+msgstr "writefile() Ìæ1øÍXg^ܽÍBlob^ÅȯêÎÈèܹñ"
msgid "Select Directory dialog"
msgstr "fBNgIð_CAO"
@@ -1743,51 +800,8 @@
msgid "Open File dialog"
msgstr "t@CÇ_CAO"
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: R\\[[hÅÍt@CuEUðg¦Ü¹ñA²ßñȳ¢"
-
-msgid "E854: path too long for completion"
-msgstr "E854: pXª·ß¬Äâ®Å«Ü¹ñ"
-
-#, c-format
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: ³øÈpXÅ·: '**[l]' ÍpathÌÅã© '%s' ª±¢ÄȢƢ¯Ü¹"
-"ñB"
-
-#, c-format
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: cdpathÉÍ \"%s\" Æ¢¤fBNgª èܹñ"
-
-#, c-format
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: pathÉÍ \"%s\" Æ¢¤t@Cª èܹñ"
-
-#, c-format
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: cdpathÉͱêÈã \"%s\" Æ¢¤fBNgª èܹñ"
-
-#, c-format
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: pXÉͱêÈã \"%s\" Æ¢¤t@Cª èܹñ"
-
-msgid "E446: No file name under cursor"
-msgstr "E446: J[\\̺Ét@C¼ª èܹñ"
-
-#, c-format
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: pathÉÍ \"%s\" Æ¢¤t@Cª èܹñ"
-
-msgid "E490: No fold found"
-msgstr "E490: Üôݪ èܹñ"
-
-msgid "E350: Cannot create fold with current 'foldmethod'"
-msgstr "E350: »ÝÌ 'foldmethod' ÅÍÜôÝðì¬Å«Ü¹ñ"
-
-msgid "E351: Cannot delete fold with current 'foldmethod'"
-msgstr "E351: »ÝÌ 'foldmethod' ÅÍÜôÝðíūܹñ"
+msgid "no matches"
+msgstr "Yȵ"
#, c-format
msgid "+--%3ld line folded "
@@ -1799,57 +813,15 @@
msgid_plural "+-%s%3ld lines: "
msgstr[0] "+-%s%3ld s: "
-msgid "E222: Add to read buffer"
-msgstr "E222: Çobt@ÖÇÁ"
-
-msgid "E223: recursive mapping"
-msgstr "E223: ÄAI}bsO"
-
-msgid "E851: Failed to create a new process for the GUI"
-msgstr "E851: GUIpÌvZXÌN®É¸sµÜµ½"
-
-msgid "E852: The child process failed to start the GUI"
-msgstr "E852: qvZXªGUIÌN®É¸sµÜµ½"
-
-msgid "E229: Cannot start the GUI"
-msgstr "E229: GUIðJnūܹñ"
-
-#, c-format
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: \"%s\"©çÇޱƪūܹñ"
-
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: LøÈtHgª©Â©çÈ¢ÌÅAGUIðJnūܹñ"
-
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' ª³øÅ·"
-
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: 'imactivatekey' ÉÝè³ê½lª³øÅ·"
-
-#, c-format
-msgid "E254: Cannot allocate color %s"
-msgstr "E254: %s ÌFðèÄçêܹñ"
-
msgid "No match at cursor, finding next"
msgstr "J[\\ÌÊuÉ}b`Í èܹñAðõµÄ¢Ü·"
msgid "<cannot open> "
msgstr "<J¯Ü¹ñ> "
-#, c-format
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: tHg %s ðæ¾Å«Ü¹ñ"
-
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: »ÝÌfBNgÉßêܹñ"
-
msgid "Pathname:"
msgstr "pX¼:"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: »ÝÌfBNgðæ¾Å«Ü¹ñ"
-
msgid "OK"
msgstr "OK"
@@ -1862,18 +834,15 @@
msgid "Vim dialog"
msgstr "Vim _CAO"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: bZ[WÆR[obNÌ é BalloonEval ðì¬Å«Ü¹ñ"
-
-msgid "_Cancel"
-msgstr "LZ(_C)"
-
msgid "_Save"
msgstr "Û¶(_S)"
msgid "_Open"
msgstr "J(_O)"
+msgid "_Cancel"
+msgstr "LZ(_C)"
+
msgid "_OK"
msgstr "_OK"
@@ -2001,39 +970,6 @@
msgstr "fBNg\t*.nothing\n"
#, c-format
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: ^Cgª \"%s\" ÌEBhEͩ©èܹñ"
-
-#, c-format
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: øÍT|[g³êܹñ: \"-%s\"; OLEÅðgpµÄ¾³¢B"
-
-msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
-msgstr "E988: GUIÍgpsÂ\\Å·Bgvim.exeðN®Å«Ü¹ñB"
-
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: MDIAvÌÅÍEBhEðJ¯Ü¹ñ"
-
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr "Vim E458: Fw誳µÈ¢ÌÅGgðèÄçêܹñ"
-
-#, c-format
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: Ⱥ̶ZbgÌtHgª èܹñ %s:"
-
-#, c-format
-msgid "E252: Fontset name: %s"
-msgstr "E252: tHgZbg¼: %s"
-
-#, c-format
-msgid "Font '%s' is not fixed-width"
-msgstr "tHg '%s' ÍÅèÅÍ èܹñ"
-
-#, c-format
-msgid "E253: Fontset name: %s"
-msgstr "E253: tHgZbg¼: %s"
-
-#, c-format
msgid "Font0: %s"
msgstr "tHg0: %s"
@@ -2083,18 +1019,6 @@
msgid "Size:"
msgstr "TCY:"
-msgid "E256: Hangul automata ERROR"
-msgstr "E256: nOI[g}gG["
-
-msgid "E550: Missing colon"
-msgstr "E550: Rª èܹñ"
-
-msgid "E551: Illegal component"
-msgstr "E551: s³È\\¶vfÅ·"
-
-msgid "E552: digit expected"
-msgstr "E552: lªKvÅ·"
-
#, c-format
msgid "Page %d"
msgstr "%d y[W"
@@ -2117,158 +1041,19 @@
msgid "Printing aborted"
msgstr "óüª~³êܵ½"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: PostScriptoÍt@CÌÝG[Å·"
-
-#, c-format
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: t@C \"%s\" ðJ¯Ü¹ñ"
-
-#, c-format
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: PostScriptÌ\\[Xt@C \"%s\" ðÇßܹñ"
-
-#, c-format
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: t@C \"%s\" Í PostScript \\[Xt@CÅÍ èܹñ"
-
-#, c-format
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: t@C \"%s\" ÍεĢȢ PostScript \\[Xt@CÅ·"
-
-#, c-format
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: \\[Xt@C \"%s\" Ío[WªÙÈèÜ·"
-
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: Ý·«Ì³¢}`oCgGR[fBOƶZbgÅ·B"
-
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr ""
-"E674: }`oCgGR[fBOÅÍ printmbcharset ðóÉūܹñB"
-
-msgid "E675: No default font specified for multi-byte printing."
-msgstr ""
-"E675: }`oCg¶ðóü·é½ßÌftHgtHgªwè³êĢܹ"
-"ñB"
-
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: PostScriptoÍpÌt@CðJ¯Ü¹ñ"
-
-#, c-format
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: t@C \"%s\" ðJ¯Ü¹ñ"
-
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: PostScriptÌ\\[Xt@C \"prolog.ps\" ª©Â©èܹñ"
-
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: PostScriptÌ\\[Xt@C \"cidfont.ps\" ª©Â©èܹñ"
-
-#, c-format
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: PostScriptÌ\\[Xt@C \"%s.ps\" ª©Â©èܹñ"
-
-#, c-format
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: óüGR[h \"%s\" ÖϷūܹñ"
-
msgid "Sending to printer..."
msgstr "v^ÉM..."
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: PostScriptt@CÌóüɸsµÜµ½"
-
msgid "Print job sent."
msgstr "óüWuðMµÜµ½B"
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: syncolor.vim ÌÄAÄÑoµðoµÜµ½"
-
#, c-format
-msgid "E411: highlight group not found: %s"
-msgstr "E411: nCCgO[vª©Â©èܹñ: %s"
-
-#, c-format
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: øª[ªÅÍÈ¢: \":highlight link %s\""
-
-#, c-format
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: øª½ß¬Ü·: \":highlight link %s\""
-
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: O[vªÝè³êÄ¢éÌÅnCCgNͳ³êÜ·"
-
-#, c-format
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: \\ú¹ÊÅ·: %s"
-
-#, c-format
-msgid "E416: missing equal sign: %s"
-msgstr "E416: ª èܹñ: %s"
-
-#, c-format
-msgid "E417: missing argument: %s"
-msgstr "E417: øª èܹñ: %s"
-
-#, c-format
-msgid "E418: Illegal value: %s"
-msgstr "E418: s³ÈlÅ·: %s"
-
-msgid "E419: FG color unknown"
-msgstr "E419: ¢mÌOiFÅ·"
-
-msgid "E420: BG color unknown"
-msgstr "E420: ¢mÌwiFÅ·"
-
-#, c-format
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: J[¼âÔðF¯Å«Ü¹ñ: %s"
-
-#, c-format
-msgid "E422: terminal code too long: %s"
-msgstr "E422: I[R[hª·ß¬Ü·: %s"
-
-#, c-format
-msgid "E423: Illegal argument: %s"
-msgstr "E423: s³ÈøÅ·: %s"
-
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: ½ÌÙÈénCCg®«ªgíê߬Ģܷ"
-
-msgid "E669: Unprintable character in group name"
-msgstr "E669: O[v¼ÉóüsÂ\\ȶª èÜ·"
+msgid "Sorry, help file \"%s\" not found"
+msgstr "cOÅ·ªwvt@C \"%s\" ª©Â©èܹñ"
msgid "W18: Invalid character in group name"
msgstr "W18: O[v¼És³È¶ª èÜ·"
-msgid "E849: Too many highlight and syntax groups"
-msgstr "E849: nCCgÆ\\¶O[vª½ß¬Ü·"
-
-#, c-format
-msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E799: ³øÈ ID: %d (1 ÈãÅȯêÎÈèܹñ)"
-
-#, c-format
-msgid "E801: ID already taken: %d"
-msgstr "E801: ID Í·ÅÉpÅ·: %d"
-
-msgid "E290: List or number required"
-msgstr "E290: Xg©lªKvÅ·"
-
-#, c-format
-msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
-msgstr "E802: ³øÈ ID: %d (1 ÈãÅȯêÎÈèܹñ)"
-
-#, c-format
-msgid "E803: ID not found: %d"
-msgstr "E803: ID Í èܹñ: %d"
-
-#, c-format
-msgid "E798: ID is reserved for \":match\": %d"
-msgstr "E798: ID Í \":match\" ̽ßÉ\\ñ³êĢܷ: %d"
-
msgid "Add a new database"
msgstr "Vf[^x[XðÇÁ"
@@ -2287,47 +1072,13 @@
msgid "Show connections"
msgstr "Ú±ð\\¦·é"
-#, c-format
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: gpû@: cs[cope] %s"
-
msgid "This cscope command does not support splitting the window.\n"
msgstr "±ÌcscopeR}hͪEBhEÅÍT|[g³êܹñ.\n"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: gp@: cstag <ident>"
-
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: ^Oª©Â©èܹñ"
-
-#, c-format
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: stat(%s) G[: %d"
-
-msgid "E563: stat error"
-msgstr "E563: stat G["
-
-#, c-format
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s ÍfBNgyÑLøÈcscopeÌf[^x[XÅÍ èܹñ"
-
#, c-format
msgid "Added cscope database %s"
msgstr "cscopef[^x[X %s ðÇÁ"
-#, c-format
-msgid "E262: error reading cscope connection %d"
-msgstr "E262: cscopeÌÚ± %d ðÇÝÌG[Å·"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: ¢mÌcscopeõ^Å·"
-
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: cscopepCvðì¬Å«Ü¹ñŵ½"
-
-msgid "E622: Could not fork for cscope"
-msgstr "E622: cscopeÌN®õ(fork)ɸsµÜµ½"
-
msgid "cs_create_connection setpgid failed"
msgstr "cs_create_connection ÖÌ setpgid ɸsµÜµ½"
@@ -2340,20 +1091,6 @@
msgid "cs_create_connection: fdopen for fr_fp failed"
msgstr "cs_create_connection: fr_fp Ì fdopen ɸsµÜµ½"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: cscopevZXðN®Å«Ü¹ñŵ½"
-
-msgid "E567: no cscope connections"
-msgstr "E567: cscopeڱɸsµÜµ½"
-
-#, c-format
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: ³øÈ cscopequickfix tO %c Ì %c Å·"
-
-#, c-format
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: cscopeNG[ %s of %s ÉYª èܹñŵ½"
-
msgid "cscope commands:\n"
msgstr "cscopeR}h:\n"
@@ -2385,26 +1122,9 @@
" t: ±ÌeLXg¶ñðT·\n"
#, c-format
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: cscopef[^x[X: %s ðJ±ÆªÅ«Ü¹ñ"
-
-msgid "E626: cannot get cscope database information"
-msgstr "E626: cscopef[^x[XÌîñðæ¾Å«Ü¹ñ"
-
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: d¡·écscopef[^x[XÍÇÁ³êܹñŵ½"
-
-#, c-format
-msgid "E261: cscope connection %s not found"
-msgstr "E261: cscopeÚ± %s ª©Â©èܹñŵ½"
-
-#, c-format
msgid "cscope connection %s closed"
msgstr "cscopeÚ± %s ªÂ¶çêܵ½"
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: cs_manage_matches Åv½IÈG[Å·"
-
#, c-format
msgid "Cscope tag: %s"
msgstr "Cscope ^O: %s"
@@ -2419,10 +1139,6 @@
msgid "filename / context / line\n"
msgstr "t@C¼ / ¶¬ / s\n"
-#, c-format
-msgid "E609: Cscope error: %s"
-msgstr "E609: cscopeG[: %s"
-
msgid "All cscope databases reset"
msgstr "SÄÌcscopef[^x[XðZbgµÜ·"
@@ -2438,18 +1154,6 @@
msgid "cannot save undo information"
msgstr "AhDîñªÛ¶Å«Ü¹ñ"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr "E815: ±ÌR}hͳøÅ·BMzScheme Cuð[hūܹñB"
-
-msgid ""
-"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
-"could not be loaded."
-msgstr ""
-"E895: ±ÌR}hͳøÅ·A²ßñȳ¢BMzScheme Ì racket/base W
["
-"ª[hūܹñŵ½B"
-
msgid "invalid expression"
msgstr "³øÈ®Å·"
@@ -2501,61 +1205,6 @@
msgid "not allowed in the Vim sandbox"
msgstr "Th{bNXÅͳêܹñ"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: ±ÌVimÅÍ :py3 ðgÁ½ãÉ :python ðg¦Ü¹ñ"
-
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: ±ÌR}hͳøÅ·A²ßñȳ¢: PythonCuð[hūܹ"
-"ñŵ½B"
-
-msgid ""
-"E887: Sorry, this command is disabled, the Python's site module could not be "
-"loaded."
-msgstr ""
-"E887: ±ÌR}hͳøÅ·A²ßñȳ¢BPython Ì site W
[ð[h"
-"ūܹñŵ½B"
-
-# Added at 07-Feb-2004.
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python ðÄAIÉÀs·é±ÆÍūܹñ"
-
-msgid "E837: This Vim cannot execute :py3 after using :python"
-msgstr "E837: ±ÌVimÅÍ :python ðgÁ½ãÉ :py3 ðg¦Ü¹ñ"
-
-msgid "E265: $_ must be an instance of String"
-msgstr "E265: $_ ͶñÌCX^XÅȯêÎÈèܹñ"
-
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: ±ÌR}hͳøÅ·A²ßñȳ¢: RubyCuð[hūܹñ"
-"ŵ½B"
-
-msgid "E267: unexpected return"
-msgstr "E267: \\ú¹Ê return Å·"
-
-msgid "E268: unexpected next"
-msgstr "E268: \\ú¹Ê next Å·"
-
-msgid "E269: unexpected break"
-msgstr "E269: \\ú¹Ê break Å·"
-
-msgid "E270: unexpected redo"
-msgstr "E270: \\ú¹Ê redo Å·"
-
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: rescue ÌOÌ retry Å·"
-
-msgid "E272: unhandled exception"
-msgstr "E272: æèµíêÈ©Á½áOª èÜ·"
-
-#, c-format
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: ¢mÌlongjmpóÔ: %d"
-
msgid "invalid buffer number"
msgstr "³øÈobt@ÔÅ·"
@@ -2600,43 +1249,17 @@
msgstr ""
"R[obNR}hðo^ūܹñ: obt@/EBhEªùÉÁ³êܵ½"
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: TCL v½IG[: reflist õ!? vim-dev@vim.org ÉñµÄ¾³¢"
-
msgid "cannot register callback command: buffer/window reference not found"
msgstr ""
"R[obNR}hðo^ūܹñ: obt@/EBhEÌQƪ©Â©èܹ"
"ñ"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: ±ÌR}hͳøÅ·A²ßñȳ¢: TclCuð[hūܹñÅ"
-"µ½B"
-
-#, c-format
-msgid "E572: exit code %d"
-msgstr "E572: I¹R[h %d"
-
msgid "cannot get line"
msgstr "sðæ¾Å«Ü¹ñ"
msgid "Unable to register a command server name"
msgstr "½ßT[o[̼Oðo^ūܹñ"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: ÚIÌvOÖÌR}hMɸsµÜµ½"
-
-#, c-format
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: ³øÈT[o[IDªgíêܵ½: %s"
-
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: VIM ÀÌÌo^vpeBªs³Å·BÁµÜµ½!"
-
#, c-format
msgid "%ld lines to indent... "
msgstr "%ld sªCfg³êÜ·... "
@@ -2691,12 +1314,6 @@
msgid "Hit end of paragraph"
msgstr "iÌÅãÉqbg"
-msgid "E839: Completion function changed window"
-msgstr "E839: â®ÖªEBhEðÏXµÜµ½"
-
-msgid "E840: Completion function deleted text"
-msgstr "E840: â®ÖªeLXgðíµÜµ½"
-
msgid "'dictionary' option is empty"
msgstr "'dictionary' IvVªóÅ·"
@@ -2713,9 +1330,6 @@
msgid " (replace) Scroll (^E/^Y)"
msgstr " (u·) XN[ (^E/^Y)"
-msgid "E785: complete() can only be used in Insert mode"
-msgstr "E785: complete() Í}ü[hŵ©pūܹñ"
-
#, c-format
msgid "Scanning: %s"
msgstr "XL: %s"
@@ -2749,21 +1363,8 @@
msgid "match %d"
msgstr "%d ÔÚÌY"
-#, c-format
-msgid "E938: Duplicate key in JSON: \"%s\""
-msgstr "E938: JSONÉd¡L[ª èÜ·: \"%s\""
-
-#, c-format
-msgid "E899: Argument of %s must be a List or Blob"
-msgstr "E899: %s ÌøÍXg^ܽÍBlob^ÅȯêÎÈèܹñ"
-
-#, c-format
-msgid "E696: Missing comma in List: %s"
-msgstr "E696: Xg^ÉJ}ª èܹñ: %s"
-
-#, c-format
-msgid "E697: Missing end of List ']': %s"
-msgstr "E697: Xg^ÌÅãÉ ']' ª èܹñ: %s"
+msgid "flatten() argument"
+msgstr "flatten() Ìø"
msgid "sort() argument"
msgstr "sort() Ìø"
@@ -2771,23 +1372,17 @@
msgid "uniq() argument"
msgstr "uniq() Ìø"
-msgid "E702: Sort compare function failed"
-msgstr "E702: \\[gÌärÖª¸sµÜµ½"
-
-msgid "E882: Uniq compare function failed"
-msgstr "E882: Uniq ÌärÖª¸sµÜµ½"
-
msgid "map() argument"
msgstr "map() Ìø"
+msgid "mapnew() argument"
+msgstr "mapnew() Ìø"
+
msgid "filter() argument"
msgstr "filter() Ìø"
-msgid "add() argument"
-msgstr "add() Ìø"
-
-msgid "insert() argument"
-msgstr "insert() Ìø"
+msgid "extendnew() argument"
+msgstr "extendnew() Ìø"
msgid "remove() argument"
msgstr "remove() Ìø"
@@ -2795,6 +1390,10 @@
msgid "reverse() argument"
msgstr "reverse() Ìø"
+#, c-format
+msgid "Current %slanguage: \"%s\""
+msgstr "»ÝÌ %s¾ê: \"%s\""
+
msgid "Unknown option argument"
msgstr "¢mÌIvVøÅ·"
@@ -2830,16 +1429,17 @@
msgstr "XNvgt@CðÄÑJ±¤ÆµÜµ½: \""
msgid "Cannot open for reading: \""
-msgstr "ÇpƵÄJ¯Ü¹ñ"
+msgstr "ÇÝpƵÄJ¯Ü¹ñ: \""
msgid "Cannot open for script output: \""
-msgstr "XNvgoÍpðJ¯Ü¹ñ"
+msgstr "XNvgoÍpƵÄJ¯Ü¹ñ: \""
msgid "Vim: Error: Failure to start gvim from NetBeans\n"
msgstr "Vim: G[: NetBeans©çgvimðX^[gūܹñ\n"
+# This message should be English to avoid mojibake.
msgid "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
-msgstr "Vim: G[: ±Ìo[WÌVimÍCygwin[ÅÍ®ìµÜ¹ñ\n"
+msgstr "Vim: Error: This version of Vim does not run in a Cygwin terminal\n"
msgid "Vim: Warning: Output is not to a terminal\n"
msgstr "Vim: x: [ÖÌoÍÅÍ èܹñ\n"
@@ -2850,10 +1450,6 @@
msgid "pre-vimrc command line"
msgstr "vimrcOÌR}hC"
-#, c-format
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: \"%s\"©çÇޱƪūܹñ"
-
msgid ""
"\n"
"More info with: \"vim -h\"\n"
@@ -2862,7 +1458,7 @@
"æèÚ×ÈîñÍ: \"vim -h\"\n"
msgid "[file ..] edit specified file(s)"
-msgstr "[t@C..] ét@CðÒW·é"
+msgstr "[t@C..] wè³ê½t@CðÒW·é"
msgid "- read text from stdin"
msgstr "- WüÍ©çeLXgðÇÞ"
@@ -3053,7 +1649,7 @@
msgstr "-x\t\t\tû³ê½t@CðÒW·é"
msgid "-display <display>\tConnect Vim to this particular X-server"
-msgstr "-display <display>\tvimðwèµ½ X T[o[ÉÚ±·é"
+msgstr "-display <display>\tVimðwèµ½ X T[o[ÉÚ±·é"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tXT[o[ÉÚ±µÈ¢"
@@ -3128,10 +1724,10 @@
"gvimÉæÁÄðß³êéø(Athenao[W):\n"
msgid "-display <display>\tRun Vim on <display>"
-msgstr "-display <display>\t<display> ÅvimðÀs·é"
+msgstr "-display <display>\t<display> ÅVimðÀs·é"
msgid "-iconic\t\tStart Vim iconified"
-msgstr "-iconic\t\tŬ»µ½óÔÅvimðN®·é"
+msgstr "-iconic\t\tŬ»µ½óÔÅVimðN®·é"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <color>\twiFÉ <color> ðg¤(¯`: -bg)"
@@ -3178,7 +1774,7 @@
"gvimÉæÁÄðß³êéø(GTK+o[W):\n"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
-msgstr "-display <display>\t<display> ÅvimðÀs·é(¯`: --display)"
+msgstr "-display <display>\t<display> ÅVimðÀs·é(¯`: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tCEBhEð¯Ê·éêÓÈð(role)ðÝè·é"
@@ -3195,65 +1791,15 @@
msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
msgstr "--windowid <HWND>\tÙÈéWin32 widgetÌàÉVimðJ"
-msgid "No display"
-msgstr "fBXvCª©Â©èܹñ"
-
-msgid ": Send failed.\n"
-msgstr ": MɸsµÜµ½.\n"
-
-msgid ": Send failed. Trying to execute locally\n"
-msgstr ": MɸsµÜµ½B[JÅÌÀsðÝĢܷ\n"
-
-#, c-format
-msgid "%d of %d edited"
-msgstr "%d  (%d Â) Ìt@CðÒWµÜµ½"
-
-msgid "No display: Send expression failed.\n"
-msgstr "fBXvCª èܹñ: ®ÌMɸsµÜµ½.\n"
-
-msgid ": Send expression failed.\n"
-msgstr ": ®ÌMɸsµÜµ½.\n"
-
-#, c-format
-msgid "E224: global abbreviation already exists for %s"
-msgstr "E224: %s Æ¢¤O[oZküÍÍùɶݵܷ"
-
-#, c-format
-msgid "E225: global mapping already exists for %s"
-msgstr "E225: %s Æ¢¤O[o}bsOÍùɶݵܷ"
-
-#, c-format
-msgid "E226: abbreviation already exists for %s"
-msgstr "E226: %s Æ¢¤ZküÍÍùɶݵܷ"
-
-#, c-format
-msgid "E227: mapping already exists for %s"
-msgstr "E227: %s Æ¢¤}bsOÍùɶݵܷ"
-
msgid "No abbreviation found"
msgstr "ZküÍͩ©èܹñŵ½"
msgid "No mapping found"
msgstr "}bsOͩ©èܹñŵ½"
-msgid "E228: makemap: Illegal mode"
-msgstr "E228: makemap: s³È[h"
-
-#, c-format
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': %s Éη鶪 èܹñ"
-
-#, c-format
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': Z~RÌãÉ]ªÈ¶ª èÜ·: %s"
-
msgid "No marks set"
msgstr "}[NªÝè³êĢܹñ"
-#, c-format
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: \"%s\" ÉY·é}[Nª èܹñ"
-
msgid ""
"\n"
"mark line col file/text"
@@ -3275,81 +1821,9 @@
"\n"
"ÏX s ñ eLXg"
-msgid "E543: Not a valid codepage"
-msgstr "E543: ³øÈR[hy[WÅ·"
-
-msgid "E284: Cannot set IC values"
-msgstr "E284: ICÌlðÝèūܹñ"
-
-msgid "E285: Failed to create input context"
-msgstr "E285: CvbgReLXgÌì¬É¸sµÜµ½"
-
-msgid "E286: Failed to open input method"
-msgstr "E286: Cvbg\\bhÌI[vɸsµÜµ½"
-
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: x: IMÌjóR[obNðÝèūܹñŵ½"
-
-msgid "E288: input method doesn't support any style"
-msgstr "E288: Cvbg\\bhÍÇñÈX^CàT|[gµÜ¹ñ"
-
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: Cvbg\\bhÍ my preedit type ðT|[gµÜ¹ñ"
-
-msgid "E293: block was not locked"
-msgstr "E293: ubNªbN³êĢܹñ"
-
-msgid "E294: Seek error in swap file read"
-msgstr "E294: Xbvt@CÇÉV[NG[Å·"
-
-msgid "E295: Read error in swap file"
-msgstr "E295: Xbvt@CÌÇÝG[Å·"
-
-msgid "E296: Seek error in swap file write"
-msgstr "E296: Xbvt@CÝÉV[NG[Å·"
-
-msgid "E297: Write error in swap file"
-msgstr "E297: Xbvt@CÌÝG[Å·"
-
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: Xbvt@Cªùɶݵܷ (symlinkÉæéU?)"
-
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: ubN 0 ðæ¾Å«Ü¹ñ?"
-
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: ubN 1 ðæ¾Å«Ü¹ñ?"
-
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: ubN 2 ðæ¾Å«Ü¹ñ?"
-
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: Xbvt@CÌÃðXVÉG[ª¶µÜµ½"
-
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: ¨ÁÆAXbvt@Cª¸íêܵ½!!!"
-
-msgid "E302: Could not rename swap file"
-msgstr "E302: Xbvt@C̼OðϦçêܹñ"
-
-#, c-format
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr "E303: \"%s\" ÌXbvt@CðJ¯È¢ÌÅJoÍsÂ\\Å·"
-
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): ubN 0 ðæ¾Å«Ü¹ñŵ½??"
-
-#, c-format
-msgid "E305: No swap file found for %s"
-msgstr "E305: %s ÉÍXbvt@Cª©Â©èܹñ"
-
msgid "Enter number of swap file to use (0 to quit): "
msgstr "gp·éXbvt@CÌÔðü͵ľ³¢(0 ÅI¹): "
-#, c-format
-msgid "E306: Cannot open %s"
-msgstr "E306: %s ðJ¯Ü¹ñ"
-
msgid "Unable to read block 0 from "
msgstr "ubN 0 ðÇßܹñ "
@@ -3366,10 +1840,6 @@
msgid "Use Vim version 3.0.\n"
msgstr "VimÌo[W3.0ðgpµÄ¾³¢.\n"
-#, c-format
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s ÍVimÌXbvt@CÅÍÈ¢æ¤Å·"
-
msgid " cannot be used on this computer.\n"
msgstr " ±ÌRs
[^ÅÍgpūܹñ.\n"
@@ -3383,12 +1853,6 @@
",\n"
"àµÍt@Cª¹µÄ¢Ü·B"
-#, c-format
-msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
-msgstr ""
-"E833: %s ͱÌo[WÌVimÅT|[gµÄ¢È¢`®Åû³êĢܷ"
-
msgid " has been damaged (page size is smaller than minimum value).\n"
msgstr " ͹µÄ¢Ü· (y[WTCYªÅ¬lðºñÁĢܷ).\n"
@@ -3400,9 +1864,6 @@
msgid "Original file \"%s\""
msgstr "´{t@C \"%s\""
-msgid "E308: Warning: Original file may have been changed"
-msgstr "E308: x: ´{t@CªÏX³êĢܷ"
-
#, c-format
msgid "Swap file is encrypted: \"%s\""
msgstr "Xbvt@CÍû³êĢܷ: \"%s\""
@@ -3435,10 +1896,6 @@
"\n"
"Xbvt@Cɯ¶ÃL[ðg¤½ßÉenter¾¯ðµÄ¾³¢B"
-#, c-format
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: %s ©çubN 1 ðÇßܹñ"
-
msgid "???MANY LINES MISSING"
msgstr "???½Ìsª¸íêĢܷ"
@@ -3451,10 +1908,6 @@
msgid "???LINES MISSING"
msgstr "???sª¸íêĢܷ"
-#, c-format
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: ubN 1 ÌIDªÔáÁĢܷ(%s ª.swpt@CÅÈ¢?)"
-
msgid "???BLOCK MISSING"
msgstr "???ubNª èܹñ"
@@ -3467,14 +1920,6 @@
msgid "???END"
msgstr "???END"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: JoªÜêܵ½"
-
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: JoÌÅÉG[ªo³êܵ½; ???ÅnÜésðQƵľ³¢"
-
msgid "See \":help E312\" for more information."
msgstr "Ú×Í \":help E312\" ðQƵľ³¢"
@@ -3496,15 +1941,20 @@
msgid ""
"\n"
-"You may want to delete the .swp file now.\n"
-"\n"
+"You may want to delete the .swp file now."
msgstr ""
"\n"
-"³Ì.swpt@CÍíµÄà\\¢Ü¹ñ\n"
+"³Ì.swpt@CÍíµÄà\\¢Ü¹ñB"
+
+msgid ""
"\n"
+"Note: process STILL RUNNING: "
+msgstr ""
+"\n"
+"Ó: vZXÍܾÀsÅ·: "
msgid "Using crypt key from swap file for the text file.\n"
-msgstr "Xbvt@C©çæ¾µ½ÃL[ðeLXgt@CÉg¢Ü·.\n"
+msgstr "Xbvt@C©çæ¾µ½ÃL[ðeLXgt@CÉg¢Ü·B\n"
msgid "Swap files found:"
msgstr "Xbvt@Cª¡©Â©èܵ½:"
@@ -3521,9 +1971,6 @@
msgid " -- none --\n"
msgstr " -- ȵ --\n"
-msgid "%a %b %d %H:%M:%S %Y"
-msgstr "%Y/%m/%d (%a) %H:%M:%S"
-
msgid " owned by: "
msgstr " LÒ: "
@@ -3602,69 +2049,21 @@
msgid " [cannot be opened]"
msgstr " [J¯Ü¹ñ]"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: Xbvt@Cª³¢ÌÅÛūܹñ"
-
msgid "File preserved"
msgstr "t@CªÛ³êÜ·"
-msgid "E314: Preserve failed"
-msgstr "E314: ÛɸsµÜµ½"
-
-#, c-format
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: ³øÈlnumÅ·: %ld"
-
-#, c-format
-msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
-msgstr "E316: ml_get: s %ld ðobt@ %d %s àɩ¯çêܹñ"
-
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 3"
-
msgid "stack_idx should be 0"
msgstr "stack_idx Í 0 Å é׫ŷ"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: XV³ê½ubNª½ß¬é©à?"
-
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 4"
-
msgid "deleted block 1?"
msgstr "ubN 1 ÍÁ³ê½?"
-#, c-format
-msgid "E320: Cannot find line %ld"
-msgstr "E320: s %ld ª©Â©èܹñ"
-
-msgid "E317: pointer block id wrong"
-msgstr "E317: |C^ubNÌIDªÔáÁĢܷ"
-
msgid "pe_line_count is zero"
msgstr "pe_line_count ª[Å·"
-#, c-format
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: sÔªÍÍOÅ·: %ld ´¦Ä¢Ü·"
-
-#, c-format
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: ubN %ld ÌsJEgªÔáÁĢܷ"
-
msgid "Stack size increases"
msgstr "X^bNTCYª¦Ü·"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 2"
-
-#, c-format
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: \"%s\" ÌV{bNNª[vÉÈÁĢܷ"
-
-msgid "E325: ATTENTION"
-msgstr "E325: Ó"
-
msgid ""
"\n"
"Found a swap file by the name \""
@@ -3759,28 +2158,6 @@
"I¹·é(&Q)\n"
"~·é(&A)"
-msgid "E326: Too many swap files found"
-msgstr "E326: Xbvt@Cª½©Â©èܵ½"
-
-msgid "E327: Part of menu-item path is not sub-menu"
-msgstr "E327: j
[ACeÌpX̪ªTuj
[ÅÍ èܹñ"
-
-#, c-format
-msgid "E329: No menu \"%s\""
-msgstr "E329: \"%s\" Æ¢¤j
[Í èܹñ"
-
-msgid "E792: Empty menu name"
-msgstr "E792: j
[¼ªóÅ·"
-
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: j
[pXÍTuj
[ð¶¶é׫ÅÍ èܹñ"
-
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr "E331: j
[o[ÉͼÚj
[ACeðÇÁūܹñ"
-
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: æØèÍj
[pXÌêÅÍ èܹñ"
-
msgid ""
"\n"
"--- Menus ---"
@@ -3792,21 +2169,8 @@
msgstr "±Ìj
[ðØèæé"
#, c-format
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: %s ÉÍj
[ªè`³êĢܹñ"
-
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: j
[pXÍj
[ACeð¶¶È¯ê΢¯Ü¹ñ"
-
-#, c-format
-msgid "E334: Menu not found: %s"
-msgstr "E334: j
[ª©Â©èܹñ: %s"
-
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: j
[pXÍTuj
[ð¶¶È¯ê΢¯Ü¹ñ"
-
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: j
[ª©Â©èܹñ - j
[¼ðmFµÄ¾³¢"
+msgid "Error detected while compiling %s:"
+msgstr "%s ÌRpCÉG[ªo³êܵ½:"
#, c-format
msgid "Error detected while processing %s:"
@@ -3816,10 +2180,6 @@
msgid "line %4ld:"
msgstr "s %4ld:"
-#, c-format
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: ³øÈWX^¼: '%s'"
-
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
msgstr "ú{êbZ[W|ó/ÄC: ºª ¾Y <koron.kaoriya@gmail.com>"
@@ -3829,6 +2189,9 @@
msgid "Press ENTER or type command to continue"
msgstr "±¯éÉÍENTERð·©R}hðü͵ľ³¢"
+msgid "Unknown"
+msgstr "s¾"
+
#, c-format
msgid "%s line %ld"
msgstr "%s s %ld"
@@ -3862,21 +2225,12 @@
"SÄúü(&D)\n"
"LZ(&C)"
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: printf() Ìøªs\\ªÅ·"
-
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: printf() ÌøÉÍ®¬_ªúÒ³êĢܷ"
-
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: printf() Ìøª½ß¬Ü·"
-
-msgid "Type number and <Enter> or click with mouse (empty cancels): "
+msgid "Type number and <Enter> or click with the mouse (q or empty cancels): "
msgstr ""
-"ÔÆ<Enter>ðüÍ·é©}EXÅNbNµÄ¾³¢ (óÅLZ): "
+"ÔÆ<Enter>ðüÍ·é©}EXÅNbNµÄ¾³¢ (q ©óÅLZ): "
-msgid "Type number and <Enter> (empty cancels): "
-msgstr "ÔÆ<Enter>ðü͵ľ³¢ (óÅLZ): "
+msgid "Type number and <Enter> (q or empty cancels): "
+msgstr "ÔÆ<Enter>ðü͵ľ³¢ (q ©óÅLZ): "
#, c-format
msgid "%ld more line"
@@ -3894,99 +2248,13 @@
msgid "Beep!"
msgstr "r[b!"
-msgid "E677: Error writing temp file"
-msgstr "E677: êt@CÉG[ª¶µÜµ½"
-
-#, c-format
-msgid "%ld second ago"
-msgid_plural "%ld seconds ago"
-msgstr[0] "%ld boߵĢܷ"
-
-msgid "ERROR: "
-msgstr "G[: "
-
-#, c-format
-msgid ""
-"\n"
-"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
-msgstr ""
-"\n"
-"[(oCg)] -ðúÊ %lu-%lu, gpÊ %lu, s[N %lu\n"
-
-#, c-format
-msgid ""
-"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
-"\n"
-msgstr ""
-"[Äo] re/malloc() ñ %lu, free() ñ %lu\n"
-"\n"
-
-msgid "E341: Internal error: lalloc(0, )"
-msgstr "E341: àG[: lalloc(0, )"
-
-#, c-format
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: ª«èܹñ! (%lu oCgðv)"
-
#, c-format
msgid "Calling shell to execute: \"%s\""
msgstr "Às̽ßÉVFðÄoµ: \"%s\""
-msgid "E545: Missing colon"
-msgstr "E545: Rª èܹñ"
-
-msgid "E546: Illegal mode"
-msgstr "E546: s³È[hÅ·"
-
-msgid "E547: Illegal mouseshape"
-msgstr "E547: s³È 'mouseshape' Å·"
-
-msgid "E548: digit expected"
-msgstr "E548: lªKvÅ·"
-
-msgid "E549: Illegal percentage"
-msgstr "E549: s³Èp[Ze[WÅ·"
-
-#, c-format
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: NetBeansÌÚ±îñt@CÌANZX[hÉâèª èÜ·: \"%s\""
-
-#, c-format
-msgid "E658: NetBeans connection lost for buffer %d"
-msgstr "E658: obt@ %d Ì NetBeans Ú±ª¸íêܵ½"
-
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: NetBeansͱÌGUIÉÍεĢܹñ"
-
-msgid "E511: netbeans already connected"
-msgstr "E511: NetBeansÍùÉÚ±µÄ¢Ü·"
-
-#, c-format
-msgid "E505: %s is read-only (add ! to override)"
-msgstr "E505: %s ÍÇêpÅ· (§ÉÍ ! ðÇÁ)"
-
-msgid "E349: No identifier under cursor"
-msgstr "E349: J[\\ÌÊuÉͯÊqª èܹñ"
-
msgid "Warning: terminal cannot highlight"
msgstr "x: gpµÄ¢é[ÍnCCgūܹñ"
-msgid "E348: No string under cursor"
-msgstr "E348: J[\\ÌÊuÉͶñª èܹñ"
-
-msgid "E352: Cannot erase folds with current 'foldmethod'"
-msgstr "E352: »ÝÌ 'foldmethod' ÅÍÜôÝðÁūܹñ"
-
-msgid "E664: changelist is empty"
-msgstr "E664: ÏXXgªóÅ·"
-
-msgid "E662: At start of changelist"
-msgstr "E662: ÏXXgÌæª"
-
-msgid "E663: At end of changelist"
-msgstr "E663: ÏXXgÌö"
-
msgid "Type :qa! and press <Enter> to abandon all changes and exit Vim"
msgstr ""
"·×ÄÌÏXðjüµAVimðI¹·éÉÍ :qa! Æü͵ <Enter> ðµÄ¾"
@@ -4014,6 +2282,11 @@
msgstr[0] "%ld sªÏX³êܵ½"
#, c-format
+msgid "%d line changed"
+msgid_plural "%d lines changed"
+msgstr[0] "%d sªÏX³êܵ½"
+
+#, c-format
msgid "%ld Cols; "
msgstr "%ld ñ; "
@@ -4044,62 +2317,10 @@
msgid "(+%lld for BOM)"
msgstr "(+%lld for BOM)"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: 'operatorfunc' IvVªóÅ·"
-
-msgid "E775: Eval feature not available"
-msgstr "E775: ®]¿@\\ª³øÉÈÁĢܷ"
-
-msgid "E518: Unknown option"
-msgstr "E518: ¢mÌIvVÅ·"
-
-msgid "E519: Option not supported"
-msgstr "E519: IvVÍT|[g³êĢܹñ"
-
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: modeline Åͳêܹñ"
-
-msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
-msgstr "E992: 'modelineexpr' ªItÌ modeline Åͳêܹñ"
-
-msgid "E846: Key code not set"
-msgstr "E846: L[R[hªÝè³êĢܹñ"
-
-msgid "E521: Number required after ="
-msgstr "E521: = ÌãÉͪKvÅ·"
-
-msgid "E522: Not found in termcap"
-msgstr "E522: termcap àɩ©èܹñ"
-
-msgid "E946: Cannot make a terminal with running job modifiable"
-msgstr "E946: ÀsÌWuª é[ÍÏXÂ\\Éūܹñ"
-
-msgid "E590: A preview window already exists"
-msgstr "E590: vr
[EBhEªùɶݵܷ"
-
msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
msgstr ""
"W17: ArA¶ÉÍUTF-8ªKvÈÌÅA':set encoding=utf-8' µÄ¾³¢"
-msgid "E954: 24-bit colors are not supported on this environment"
-msgstr "E954: 24bitFͱÌ«ÅÍT|[g³êĢܹñ"
-
-#, c-format
-msgid "E593: Need at least %d lines"
-msgstr "E593: Åá %d ÌsªKvÅ·"
-
-#, c-format
-msgid "E594: Need at least %d columns"
-msgstr "E594: Åá %d ÌJªKvÅ·"
-
-#, c-format
-msgid "E355: Unknown option: %s"
-msgstr "E355: ¢mÌIvVÅ·: %s"
-
-#, c-format
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: ªKvÅ·: &%s = '%s'"
-
msgid ""
"\n"
"--- Terminal codes ---"
@@ -4128,94 +2349,10 @@
"\n"
"--- IvV ---"
-msgid "E356: get_varp ERROR"
-msgstr "E356: get_varp G["
-
-#, c-format
-msgid "E539: Illegal character <%s>"
-msgstr "E539: s³È¶Å· <%s>"
-
#, c-format
msgid "For option %s"
msgstr "IvV: %s"
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: ®ªI¹µÄ¢Ü¹ñ"
-
-
-msgid "E542: unbalanced groups"
-msgstr "E542: O[vªÞ¢Ü¹ñ"
-
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: 'term' ÉÍó¶ñðÝèūܹñ"
-
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: GUIÅÍ 'term' ðÏXūܹñ"
-
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: GUIðX^[g·éÉÍ \":gui\" ðgpµÄ¾³¢"
-
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' Æ 'patchmode' ª¯¶Å·"
-
-msgid "E834: Conflicts with value of 'listchars'"
-msgstr "E834: 'listchars'Ìlɵª èÜ·"
-
-msgid "E835: Conflicts with value of 'fillchars'"
-msgstr "E835: 'fillchars'Ìlɵª èÜ·"
-
-msgid "E617: Cannot be changed in the GTK+ 2 GUI"
-msgstr "E617: GTK+2 GUIÅÍÏXūܹñ"
-
-#, c-format
-msgid "E950: Cannot convert between %s and %s"
-msgstr "E950: %s Æ %s ÌÔÅϷūܹñ"
-
-msgid "E524: Missing colon"
-msgstr "E524: Rª èܹñ"
-
-msgid "E525: Zero length string"
-msgstr "E525: ¶ñÌ·³ª[Å·"
-
-#, c-format
-msgid "E526: Missing number after <%s>"
-msgstr "E526: <%s> Ìãɪ èܹñ"
-
-msgid "E527: Missing comma"
-msgstr "E527: J}ª èܹñ"
-
-msgid "E528: Must specify a ' value"
-msgstr "E528: ' ÌlðwèµÈ¯êÎÈèܹñ"
-
-msgid "E595: contains unprintable or wide character"
-msgstr "E595: \\¦Å«È¢¶©Ch¶ðÜñŢܷ"
-
-msgid "E596: Invalid font(s)"
-msgstr "E596: ³øÈtHgÅ·"
-
-msgid "E597: can't select fontset"
-msgstr "E597: tHgZbgðIðūܹñ"
-
-msgid "E598: Invalid fontset"
-msgstr "E598: ³øÈtHgZbgÅ·"
-
-msgid "E533: can't select wide font"
-msgstr "E533: ChtHgðIðūܹñ"
-
-msgid "E534: Invalid wide font"
-msgstr "E534: ³øÈChtHgÅ·"
-
-#, c-format
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: <%c> ÌãÉs³È¶ª èÜ·"
-
-msgid "E536: comma required"
-msgstr "E536: J}ªKvÅ·"
-
-#, c-format
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' ÍóÅ é© %s ðÜÞKvª èÜ·"
-
msgid "cannot open "
msgstr "J¯Ü¹ñ "
@@ -4245,9 +2382,6 @@
msgid "mch_get_shellsize: not a console??\n"
msgstr "mch_get_shellsize: R\\[ÅÍÈ¢??\n"
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: -f IvVÅVFðÀsūܹñ"
-
msgid "Cannot execute "
msgstr "Àsūܹñ "
@@ -4266,38 +2400,15 @@
msgid "Message"
msgstr "bZ[W"
-msgid "E237: Printer selection failed"
-msgstr "E237: v^ÌIðɸsµÜµ½"
-
#, c-format
msgid "to %s on %s"
msgstr "%s Ö (%s ãÌ)"
#, c-format
-msgid "E613: Unknown printer font: %s"
-msgstr "E613: ¢mÌv^IvVÅ·: %s"
-
-#, c-format
-msgid "E238: Print error: %s"
-msgstr "E238: óüG[: %s"
-
-#, c-format
msgid "Printing '%s'"
msgstr "óüµÄ¢Ü·: '%s'"
#, c-format
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr "E244: ¶Zbg¼ \"%s\" Ís³Å· (tHg¼ \"%s\")"
-
-#, c-format
-msgid "E244: Illegal quality name \"%s\" in font name \"%s\""
-msgstr "E244: i¿¼ \"%s\" Ís³Å· (tHg¼ \"%s\")"
-
-#, c-format
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: '%c' Ís³È¶Å· (tHg¼ \"%s\")"
-
-#, c-format
msgid "Opening the X display took %ld msec"
msgstr "XT[o[ÖÌÚ±É %ld ~b©©èܵ½"
@@ -4421,9 +2532,6 @@
msgid "shutdown"
msgstr "Vbg_E"
-msgid "E371: Command not found"
-msgstr "E371: R}hª èܹñ"
-
msgid ""
"VIMRUN.EXE not found in your $PATH.\n"
"External commands will not pause after completion.\n"
@@ -4440,64 +2548,6 @@
msgid "shell returned %d"
msgstr "VFªR[h %d ÅI¹µÜµ½"
-msgid "E278: Cannot put a terminal buffer in a popup window"
-msgstr "E278: [obt@ð|bvAbvEBhEàÉu±ÆÍūܹñ"
-
-#, c-format
-msgid "E997: Tabpage not found: %d"
-msgstr "E997: ^uy[Wª©Â©èܹñ: %d"
-
-#, c-format
-msgid "E993: window %d is not a popup window"
-msgstr "E993: EBhE %d Í|bvAbvEBhEÅÍ èܹñ"
-
-msgid "E994: Not allowed in a popup window"
-msgstr "E994: |bvAbvEBhEÅͳêܹñ"
-
-msgid "E750: First use \":profile start {fname}\""
-msgstr "E750: ßÉ \":profile start {fname}\" ðÀsµÄ¾³¢"
-
-msgid "E553: No more items"
-msgstr "E553: vfªà¤ èܹñ"
-
-msgid "E926: Current location list was changed"
-msgstr "E926: »ÝÌP[VXgªÏX³êܵ½"
-
-#, c-format
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: tH[}bg¶ñÉ %%%c ª½ß¬Ü·"
-
-#, c-format
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: tH[}bg¶ñÉ\\ú¹Ê %%%c ª èܵ½"
-
-msgid "E374: Missing ] in format string"
-msgstr "E374: tH[}bg¶ñÉ ] ª èܹñ"
-
-#, c-format
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: tH[}bg¶ñÅÍ %%%c ÍT|[g³êܹñ"
-
-#, c-format
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: tH[}bg¶ñÌOuɳøÈ %%%c ª èÜ·"
-
-#, c-format
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: tH[}bg¶ñɳøÈ %%%c ª èÜ·"
-
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' Ép^[ªwè³êĢܹñ"
-
-msgid "E379: Missing or empty directory name"
-msgstr "E379: fBNg¼ª³¢©óÅ·"
-
-msgid "E924: Current window was closed"
-msgstr "E924: »ÝÌEBhEªÂ¶çêܵ½"
-
-msgid "E925: Current quickfix was changed"
-msgstr "E925: »ÝÌ quickfix ªÏX³êܵ½"
-
#, c-format
msgid "(%d of %d)%s%s: "
msgstr "(%d of %d)%s%s: "
@@ -4507,13 +2557,7 @@
#, c-format
msgid "%serror list %d of %d; %d errors "
-msgstr "%s G[ê %d of %d; %d ÂG["
-
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: quickfix X^bNÌöÅ·"
-
-msgid "E381: At top of quickfix stack"
-msgstr "E381: quickfix X^bNÌæªÅ·"
+msgstr "%s G[ê %d of %d; %d ÂG[ "
msgid "No entries"
msgstr "Ggª èܹñ"
@@ -4521,208 +2565,23 @@
msgid "Error file"
msgstr "G[t@C"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: t@C¼ª³¢©³øÈp^[Å·"
-
#, c-format
msgid "Cannot open file \"%s\""
msgstr "t@C \"%s\" ðJ¯Ü¹ñ"
-msgid "E681: Buffer is not loaded"
-msgstr "E681: obt@ÍÇÝÜêܹñŵ½"
-
-msgid "E777: String or List expected"
-msgstr "E777: ¶ñ©XgªKvÅ·"
-
-#, c-format
-msgid "E927: Invalid action: '%s'"
-msgstr "E927: ³øÈìÅ·: '%s'"
-
-#, c-format
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: ³øÈÚÅ·: %s%%[]"
-
-#, c-format
-msgid "E769: Missing ] after %s["
-msgstr "E769: %s[ ÌãÉ ] ª èܹñ"
-
-msgid "E944: Reverse range in character class"
-msgstr "E944: ¶NXÌÍͪtÅ·"
-
-msgid "E945: Range too large in character class"
-msgstr "E945: ¶NXÌÍͪ嫷¬Ü·"
-
-#, c-format
-msgid "E53: Unmatched %s%%("
-msgstr "E53: %s%%( ªÞèÁĢܹñ"
-
-#, c-format
-msgid "E54: Unmatched %s("
-msgstr "E54: %s( ªÞèÁĢܹñ"
-
-#, c-format
-msgid "E55: Unmatched %s)"
-msgstr "E55: %s) ªÞèÁĢܹñ"
-
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( ÍRRÅͳêĢܹñ"
-
-msgid "E67: \\z1 - \\z9 not allowed here"
-msgstr "E67: \\z1 - \\z9 ÍRRÅͳêĢܹñ"
-
-#, c-format
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: %s%%[ ÌãÉ ] ª èܹñ"
-
-#, c-format
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] ªóÅ·"
-
-msgid "E956: Cannot use pattern recursively"
-msgstr "E956: p^[ðÄAIÉg¤±ÆÍūܹñ"
-
-#, c-format
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: %s{...} àɶ@G[ª èÜ·"
-
-#, c-format
-msgid "E888: (NFA regexp) cannot repeat %s"
-msgstr "E888: (NFA ³K\\») JèԹܹñ %s"
-
-msgid ""
-"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
-"used "
-msgstr ""
-"E864: \\%#= ÉÍ 0, 1 àµÍ 2 Ìݪ±¯çêÜ·B³K\\»GWÍ©®I"
-"ð³êÜ·B"
+msgid "cannot have both a list and a \"what\" argument"
+msgstr "XgÆ \"what\" øÌ¼ûðwè·é±ÆÍūܹñ"
msgid "Switching to backtracking RE engine for pattern: "
msgstr "Ìp^[ÉobNgbLO RE GWðKpµÜ·: "
-msgid "E65: Illegal back reference"
-msgstr "E65: s³ÈãûQÆÅ·"
-
-msgid "E63: invalid use of \\_"
-msgstr "E63: \\_ ̳øÈgpû@Å·"
-
-#, c-format
-msgid "E64: %s%c follows nothing"
-msgstr "E64:%s%c ÌãÉÈÉà èܹñ"
-
-msgid "E68: Invalid character after \\z"
-msgstr "E68: \\z ÌãÉs³È¶ª èܵ½"
-
-#, c-format
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: %s%%[dxouU] ÌãÉs³È¶ª èܵ½"
-
-#, c-format
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: %s%% ÌãÉs³È¶ª èܵ½"
-
-#, c-format
-msgid "E59: invalid character after %s@"
-msgstr "E59: %s@ ÌãÉs³È¶ª èܵ½"
-
-#, c-format
-msgid "E60: Too many complex %s{...}s"
-msgstr "E60: ¡GÈ %s{...} ª½ß¬Ü·"
-
-#, c-format
-msgid "E61: Nested %s*"
-msgstr "E61:%s* ªüêqÉÈÁĢܷ"
-
-#, c-format
-msgid "E62: Nested %s%c"
-msgstr "E62:%s%c ªüêqÉÈÁĢܷ"
-
-msgid "E50: Too many \\z("
-msgstr "E50: \\z( ª½ß¬Ü·"
-
-#, c-format
-msgid "E51: Too many %s("
-msgstr "E51: %s( ª½ß¬Ü·"
-
-msgid "E52: Unmatched \\z("
-msgstr "E52: \\z( ªÞèÁĢܹñ"
-
-msgid "E339: Pattern too long"
-msgstr "E339: p^[ª·ß¬Ü·"
-
msgid "External submatches:\n"
msgstr "O̪Y:\n"
-msgid "E865: (NFA) Regexp end encountered prematurely"
-msgstr "E865: (NFA) úÒæè³K\\»ÌI[ÉBµÜµ½"
-
-#, c-format
-msgid "E866: (NFA regexp) Misplaced %c"
-msgstr "E866: (NFA ³K\\») ÊuªëÁĢܷ: %c"
-
-#, c-format
-msgid "E877: (NFA regexp) Invalid character class: %d"
-msgstr "E877: (NFA ³K\\») ³øÈ¶NXÅ·: %d"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\z%c'"
-msgstr "E867: (NFA) ¢mÌIy[^Å·: '\\z%c'"
-
-msgid "E951: \\% value too large"
-msgstr "E951: \\% lª·ß¬Ü·"
-
-#, c-format
-msgid "E867: (NFA) Unknown operator '\\%%%c'"
-msgstr "E867: (NFA) ¢mÌIy[^Å·: '\\%%%c'"
-
-msgid "E868: Error building NFA with equivalence class!"
-msgstr "E868: ¿NXðÜÞNFA\\zɸsµÜµ½!"
-
-#, c-format
-msgid "E869: (NFA) Unknown operator '\\@%c'"
-msgstr "E869: (NFA) ¢mÌIy[^Å·: '\\@%c'"
-
-msgid "E870: (NFA regexp) Error reading repetition limits"
-msgstr "E870: (NFA ³K\\») JèԵ̧ÀñðÇÉG["
-
-msgid "E871: (NFA regexp) Can't have a multi follow a multi"
-msgstr "E871: (NFA ³K\\») JèÔµ ÌãÉ JèÔµ Íūܹñ"
-
-msgid "E872: (NFA regexp) Too many '('"
-msgstr "E872: (NFA ³K\\») '(' ª½ß¬Ü·"
-
-msgid "E879: (NFA regexp) Too many \\z("
-msgstr "E879: (NFA ³K\\») \\z( ª½ß¬Ü·"
-
-msgid "E873: (NFA regexp) proper termination error"
-msgstr "E873: (NFA ³K\\») I[Lª èܹñ"
-
msgid "Could not open temporary log file for writing, displaying on stderr... "
msgstr ""
-"NFA³K\\»GWpÌOt@CðpƵÄJ¯Ü¹ñBOÍWG["
-"oÍÉo͵ܷB"
-
-msgid "E874: (NFA) Could not pop the stack!"
-msgstr "E874: (NFA) X^bNð|bvūܹñ!"
-
-msgid ""
-"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
-"left on stack"
-msgstr ""
-"E875: (NFA ³K\\») (ãu¶ñðNFAÉÏ·É) X^bNÉc³ê½Xe[gª"
-"½ß¬Ü·"
-
-msgid "E876: (NFA regexp) Not enough space to store the whole NFA "
-msgstr "E876: (NFA ³K\\») NFASÌðÛ¶·éÉÍó«Xy[Xª«èܹñ"
-
-msgid "E878: (NFA) Could not allocate memory for branch traversal!"
-msgstr "E878: (NFA) »Ý¡fÌu`É\\ªÈðèÄçêܹñ!"
-
-msgid "E748: No previously used register"
-msgstr "E748: ܾWX^ðgpµÄ¢Ü¹ñ"
-
-#, c-format
-msgid "freeing %ld lines"
-msgstr "%ld sððú"
+"NFA³K\\»GWpÌOt@CðÝpƵÄJ¯Ü¹ñBOÍWG"
+"[oÍÉo͵ܷB"
#, c-format
msgid " into \"%c"
@@ -4738,10 +2597,6 @@
msgid_plural "%ld lines yanked%s"
msgstr[0] "%ld sª%sN³êܵ½"
-#, c-format
-msgid "E353: Nothing in register %s"
-msgstr "E353: WX^ %s Éͽà èܹñ"
-
msgid ""
"\n"
"Type Name Content"
@@ -4749,11 +2604,6 @@
"\n"
"^® ¼O àe"
-msgid ""
-"E883: search pattern and expression register may not contain two or more "
-"lines"
-msgstr "E883: õp^[Æ®WX^ÉÍ2sÈãðÜßçêܹñ"
-
msgid " VREPLACE"
msgstr " ¼zu·"
@@ -4834,15 +2684,15 @@
#, c-format
msgid "sourcing \"%s\""
-msgstr "\"%s\" ðæ"
+msgstr "\"%s\" ðæÝ"
#, c-format
msgid "line %ld: sourcing \"%s\""
-msgstr "s %ld: %s ðæ"
+msgstr "s %ld: %s ðæÝ"
#, c-format
msgid "finished sourcing %s"
-msgstr "%s Ìæð®¹"
+msgstr "%s ÌæÝð®¹"
#, c-format
msgid "continuing in %s"
@@ -4863,37 +2713,12 @@
msgid "error handler"
msgstr "G[nh"
+msgid "changed window size"
+msgstr "EBhETCYªÏX³êܵ½"
+
msgid "W15: Warning: Wrong line separator, ^M may be missing"
msgstr "W15: x: sæØªs³Å·B^M ªÈ¢Ìŵå¤"
-msgid "E167: :scriptencoding used outside of a sourced file"
-msgstr "E167: :scriptencoding ªæXNvgÈOÅgp³êܵ½"
-
-msgid "E984: :scriptversion used outside of a sourced file"
-msgstr "E984: :scriptversion ªæXNvgÈOÅgp³êܵ½"
-
-#, c-format
-msgid "E999: scriptversion not supported: %d"
-msgstr "E999: scriptversion ÍT|[g³êĢܹñ: %d"
-
-msgid "E168: :finish used outside of a sourced file"
-msgstr "E168: :finish ªæXNvgÈOÅgp³êܵ½"
-
-#, c-format
-msgid "E383: Invalid search string: %s"
-msgstr "E383: ³øÈõ¶ñÅ·: %s"
-
-#, c-format
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: ãÜÅõµÜµ½ªYÓÍ èܹñ: %s"
-
-#, c-format
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: ºÜÅõµÜµ½ªYÓÍ èܹñ: %s"
-
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: ';' Ì ÆÉÍ '?' © '/' ªúÒ³êÄ¢é"
-
msgid " (includes previously listed match)"
msgstr " (OÉñµ½YÓðÜÞ)"
@@ -4920,21 +2745,12 @@
msgid "Searching included file %s"
msgstr "CN[h³ê½t@Cðõ %s"
-msgid "E387: Match is on current line"
-msgstr "E387: »ÝsÉYª èÜ·"
-
msgid "All included files were found"
msgstr "SÄÌCN[h³ê½t@Cª©Â©èܵ½"
msgid "No included files"
msgstr "CN[ht@CÍ èܹñ"
-msgid "E388: Couldn't find definition"
-msgstr "E388: è`ð©Â¯çêܹñ"
-
-msgid "E389: Couldn't find pattern"
-msgstr "E389: p^[ð©Â¯çêܹñ"
-
msgid "Save View"
msgstr "r
[ðÛ¶µÜ·"
@@ -4966,48 +2782,12 @@
msgid " line=%ld id=%d%s name=%s priority=%d"
msgstr " s=%ld ¯Êq=%d%s ¼O=%s Dæx=%d"
-msgid "E612: Too many signs defined"
-msgstr "E612: signÌè`ª½ß¬Ü·"
-
-#, c-format
-msgid "E239: Invalid sign text: %s"
-msgstr "E239: ³øÈsignÌeLXgÅ·: %s"
-
-#, c-format
-msgid "E155: Unknown sign: %s"
-msgstr "E155: ¢mÌsignÅ·: %s"
-
-#, c-format
-msgid "E885: Not possible to change sign %s"
-msgstr "E885: ÏXūȢ sign Å·: %s"
-
-msgid "E159: Missing sign number"
-msgstr "E159: signÌÔª èܹñ"
-
-#, c-format
-msgid "E157: Invalid sign ID: %d"
-msgstr "E157: ³øÈsign¯ÊqÅ·: %d"
-
-msgid "E934: Cannot jump to a buffer that does not have a name"
-msgstr "E934: ¼O̳¢obt@ÖÍWvūܹñ"
-
-#, c-format
-msgid "E160: Unknown sign command: %s"
-msgstr "E160: ¢mÌsignR}hÅ·: %s"
-
-msgid "E156: Missing sign name"
-msgstr "E156: sign¼ª èܹñ"
-
-# Added at 27-Jan-2004.
msgid " (NOT FOUND)"
msgstr " (©Â©èܹñ)"
msgid " (not supported)"
msgstr " (ñT|[g)"
-msgid "E756: Spell checking is not enabled"
-msgstr "E756: Xy`FbNͳø»³êĢܷ"
-
#, c-format
msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
msgstr ""
@@ -5018,23 +2798,10 @@
msgstr ""
"x: PêXg \"%s.%s.spl\" ¨æÑ \"%s.ascii.spl\" ͩ©èܹñ"
-msgid "E797: SpellFileMissing autocommand deleted buffer"
-msgstr "E797: autocommand Ì SpellFileMissing ªobt@ðíµÜµ½"
-
#, c-format
msgid "Warning: region %s not supported"
msgstr "x9: %s Æ¢¤ÍÍÍT|[g³êĢܹñ"
-msgid "E752: No previous spell replacement"
-msgstr "E752: Xyu·ªÜ¾Às³êĢܹñ"
-
-#, c-format
-msgid "E753: Not found: %s"
-msgstr "E753: ©Â©èܹñ: %s"
-
-msgid "E758: Truncated spell file"
-msgstr "E758: Xyt@CªØæçêĢ鿤ŷ"
-
#, c-format
msgid "Trailing text in %s line %d: %s"
msgstr "%s (%d sÚ) ɱeLXg: %s"
@@ -5043,55 +2810,16 @@
msgid "Affix name too long in %s line %d: %s"
msgstr "%s (%d sÚ) Ì affix ¼ª·ß¬Ü·: %s"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
-msgstr ""
-"E761: affixt@CÌ FOL, LOW àµÍ UPP ÌtH[}bgÉG[ª èÜ·"
-
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: FOL, LOW àµÍ UPP ̶ªÍÍOÅ·"
-
msgid "Compressing word tree..."
msgstr "Pêc[ð³kµÄ¢Ü·..."
#, c-format
msgid "Reading spell file \"%s\""
-msgstr "Xyt@C \"%s\" ðÇ"
-
-msgid "E757: This does not look like a spell file"
-msgstr "E757: Xyt@CÅÍÈ¢æ¤Å·"
-
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: âXyt@CÈÌÅAAbvf[gµÄ¾³¢"
-
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: æèVµ¢o[WÌ Vim pÌXyt@CÅ·"
-
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: Xyt@CÉT|[gµÄ¢È¢ZNVª èÜ·"
-
-#, c-format
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: .sug t@CÅÍÈ¢æ¤Å·: %s"
-
-#, c-format
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: â .sug t@CÈÌÅAAbvf[gµÄ¾³¢: %s"
-
-#, c-format
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: æèVµ¢o[WÌ Vim pÌ .sug t@CÅ·: %s"
-
-#, c-format
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: .sug t@Cª .spl t@CÆêvµÜ¹ñ: %s"
-
-#, c-format
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: .sug t@CÌÇÉG[ª¶µÜµ½: %s"
+msgstr "Xyt@C \"%s\" ðÇÝ"
#, c-format
msgid "Reading affix file %s..."
-msgstr "affix t@C %s ðÇ..."
+msgstr "affix t@C %s ðÇÝ..."
#, c-format
msgid "Conversion failure for word in %s line %d: %s"
@@ -5227,10 +2955,6 @@
msgstr "«t@C %s ðÇÝ..."
#, c-format
-msgid "E760: No word count in %s"
-msgstr "E760: %s ÉÍPêª èܹñ"
-
-#, c-format
msgid "line %6d, word %6ld - %s"
msgstr "s %6d, Pê %6ld - %s"
@@ -5255,46 +2979,47 @@
msgstr "Pêt@C %s ðÇÝ..."
#, c-format
-msgid "Duplicate /encoding= line ignored in %s line %d: %s"
-msgstr "%s Ì %d sÚÌ d¡µ½ /encoding= sð³µÜµ½: %s"
+msgid "Conversion failure for word in %s line %ld: %s"
+msgstr "%s (%ld sÚ) ÌPêðϷūܹñŵ½: %s"
#, c-format
-msgid "/encoding= line after word ignored in %s line %d: %s"
-msgstr "%s Ì %d sÚÌ PêÌãÌ /encoding= sð³µÜµ½: %s"
+msgid "Duplicate /encoding= line ignored in %s line %ld: %s"
+msgstr "%s Ì %ld sÚÌ d¡µ½ /encoding= sð³µÜµ½: %s"
#, c-format
-msgid "Duplicate /regions= line ignored in %s line %d: %s"
-msgstr "%s Ì %d sÚÌ d¡µ½ /regions= sð³µÜµ½: %s"
+msgid "/encoding= line after word ignored in %s line %ld: %s"
+msgstr "%s Ì %ld sÚÌ PêÌãÌ /encoding= sð³µÜµ½: %s"
#, c-format
-msgid "Too many regions in %s line %d: %s"
-msgstr "%s Ì %d sÚAÍÍw誽ܷ߬: %s"
+msgid "Duplicate /regions= line ignored in %s line %ld: %s"
+msgstr "%s Ì %ld sÚÌ d¡µ½ /regions= sð³µÜµ½: %s"
#, c-format
-msgid "/ line ignored in %s line %d: %s"
-msgstr "%s Ì %d sÚÌ d¡µ½ / sð³µÜµ½: %s"
+msgid "Too many regions in %s line %ld: %s"
+msgstr "%s Ì %ld sÚAÍÍw誽ܷ߬: %s"
#, c-format
-msgid "Invalid region nr in %s line %d: %s"
-msgstr "%s Ì %d sÚ ³øÈ nr ÌæÅ·: %s"
+msgid "/ line ignored in %s line %ld: %s"
+msgstr "%s Ì %ld sÚÌ d¡µ½ / sð³µÜµ½: %s"
#, c-format
-msgid "Unrecognized flags in %s line %d: %s"
-msgstr "%s Ì %d sÚ F¯s\\ÈtOÅ·: %s"
+msgid "Invalid region nr in %s line %ld: %s"
+msgstr "%s Ì %ld sÚ ³øÈ nr ÌæÅ·: %s"
+
+#, c-format
+msgid "Unrecognized flags in %s line %ld: %s"
+msgstr "%s Ì %ld sÚ F¯s\\ÈtOÅ·: %s"
#, c-format
msgid "Ignored %d words with non-ASCII characters"
msgstr "ñASCII¶ðÜÞ %d ÂÌPêð³µÜµ½"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: ª«èÈ¢ÌÅAPêXgÍs®SÅ·"
-
#, c-format
-msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
-msgstr "m[h %d Â(S %d Â) ð³kµÜµ½; cè %d (%d%%)"
+msgid "Compressed %s: %ld of %ld nodes; %ld (%ld%%) remaining"
+msgstr "%s ð³k: m[h %ld Â(S %ld Â); cè %ld (%ld%%)"
msgid "Reading back spell file..."
-msgstr "Xyt@CðtÇ"
+msgstr "Xyt@CðtÇÝ"
msgid "Performing soundfolding..."
msgstr "¹ºôÝðÀs..."
@@ -5315,17 +3040,6 @@
msgid "Estimated runtime memory use: %d bytes"
msgstr "ègpÊ: %d oCg"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: oÍt@C¼ÉÍÍͼðÜßçêܹñ"
-
-#, c-format
-msgid "E754: Only up to %d regions supported"
-msgstr "E754: ÍÍÍ %d ÂÜŵ©T|[g³êĢܹñ"
-
-#, c-format
-msgid "E755: Invalid region in %s"
-msgstr "E755: ³øÈÍÍÅ·: %s"
-
msgid "Warning: both compounding and NOBREAK specified"
msgstr "x: ¡tOÆ NOBREAK ª¼ûÆàwè³êܵ½"
@@ -5337,23 +3051,16 @@
msgstr "ÀsµÜµ½!"
#, c-format
-msgid "E765: 'spellfile' does not have %d entries"
-msgstr "E765: 'spellfile' ÉÍ %d ÂÌGgÍ èܹñ"
-
-#, c-format
msgid "Word '%.*s' removed from %s"
msgstr "Pê '%.*s' ª %s ©çí³êܵ½"
+msgid "Seek error in spellfile"
+msgstr "Xbvt@CÅV[NG[Å·"
+
#, c-format
msgid "Word '%.*s' added to %s"
msgstr "Pê '%.*s' ª %s ÖÇÁ³êܵ½"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: Pê̶ªXyt@CÆÙÈèÜ·"
-
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: MAP GgÉd¡¶ª¶ÝµÜ·"
-
msgid "Sorry, no suggestions"
msgstr "cOÅ·ªAC³óâÍ èܹñ"
@@ -5381,16 +3088,18 @@
msgid "syntax conceal off"
msgstr "\\¶Ì conceal Í»Ý off Å·"
-#, c-format
-msgid "E390: Illegal argument: %s"
-msgstr "E390: s³ÈøÅ·: %s"
-
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 Å·"
@@ -5406,16 +3115,15 @@
msgid "syntax iskeyword not set"
msgstr "\\¶p iskeyword ÍZbg³êĢܹñ"
-#, c-format
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: »Ìæ¤È\\¶NX^Í èܹñ: %s"
-
msgid "syncing on C-style comments"
msgstr "C¾êRg©ç¯ú"
msgid "no syncing"
msgstr "ñ¯ú"
+msgid "syncing starts at the first line"
+msgstr "ÅÌsůúJn"
+
msgid "syncing starts "
msgstr "¯úJn "
@@ -5443,15 +3151,14 @@
"\n"
"--- \\¶vf ---"
-#, c-format
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: »Ìæ¤È\\¶NX^Í èܹñ: %s"
+msgid "from the first line"
+msgstr "(ÅÌs©ç)"
msgid "minimal "
-msgstr "minimal "
+msgstr "Ŭ "
msgid "maximal "
-msgstr "maximal "
+msgstr "Åå "
msgid "; match "
msgstr "; Y "
@@ -5459,116 +3166,11 @@
msgid " line breaks"
msgstr " ÂÌüs"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: ±ÌêÅÍøcontainsͳêĢܹñ"
-
-msgid "E844: invalid cchar value"
-msgstr "E844: ³øÈccharÌlÅ·"
-
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: ±±ÅÍO[vͳêܹñ"
-
-#, c-format
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: %s ÌÍÍvfª©Â©èܹñ"
-
-msgid "E397: Filename required"
-msgstr "E397: t@C¼ªKvÅ·"
-
-msgid "E847: Too many syntax includes"
-msgstr "E847: \\¶ÌæèÝ(include)ª½ß¬Ü·"
-
-#, c-format
-msgid "E789: Missing ']': %s"
-msgstr "E789: ']' ª èܹñ: %s"
-
-#, c-format
-msgid "E890: trailing char after ']': %s]%s"
-msgstr "E890: ']' ÌãëÉ]ªÈ¶ª èÜ·: %s]%s"
-
-#, c-format
-msgid "E398: Missing '=': %s"
-msgstr "E398: '=' ª èܹñ: %s"
-
-#, c-format
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: øª«èܹñ: \\¶ÍÍ %s"
-
-msgid "E848: Too many syntax clusters"
-msgstr "E848: \\¶NX^ª½ß¬Ü·"
-
-msgid "E400: No cluster specified"
-msgstr "E400: NX^ªwè³êĢܹñ"
-
-#, c-format
-msgid "E401: Pattern delimiter not found: %s"
-msgstr "E401: p^[æØèª©Â©èܹñ: %s"
-
-#, c-format
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: p^[Ì ÆÉS~ª èÜ·: %s"
-
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr "E403: \\¶¯ú: A±sp^[ª2xwè³êܵ½"
-
-#, c-format
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: s³ÈøÅ·: %s"
-
-#, c-format
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: ª èܹñ: %s"
-
-#, c-format
-msgid "E406: Empty argument: %s"
-msgstr "E406: óÌø: %s"
-
-#, c-format
-msgid "E407: %s not allowed here"
-msgstr "E407: %s ÍRRÅͳêĢܹñ"
-
-#, c-format
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s ÍàeXgÌæªÅȯêÎÈçÈ¢"
-
-#, c-format
-msgid "E409: Unknown group name: %s"
-msgstr "E409: ¢mÌO[v¼: %s"
-
-#, c-format
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: ³øÈ :syntax ÌTuR}hÅ·: %s"
-
msgid ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
msgstr ""
" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"
-msgid "E555: at bottom of tag stack"
-msgstr "E555: ^OX^bNÌöÅ·"
-
-msgid "E556: at top of tag stack"
-msgstr "E556: ^OX^bNÌæªÅ·"
-
-msgid "E986: cannot modify the tag stack within tagfunc"
-msgstr "E986: tagfuncàÌ^OX^bNðÏXūܹñ"
-
-msgid "E987: invalid return value from tagfunc"
-msgstr "E987: tagfunc©çÌßèlª³øÅ·"
-
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: ÅÌY^Oðz¦Äß鱯Íūܹñ"
-
-#, c-format
-msgid "E426: tag not found: %s"
-msgstr "E426: ^Oª©Â©èܹñ: %s"
-
-msgid "E427: There is only one matching tag"
-msgstr "E427: Y^Oª1¾¯µ© èܹñ"
-
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: ÅãÌY^Oðz¦ÄiÞ±ÆÍūܹñ"
-
#, c-format
msgid "File \"%s\" does not exist"
msgstr "t@C \"%s\" ª èܹñ"
@@ -5583,10 +3185,6 @@
msgid " Using tag with different case!"
msgstr " ^OðÙÈécaseÅgpµÜ·!"
-#, c-format
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: t@C \"%s\" ª èܹñ"
-
msgid " # pri kind tag"
msgstr " # pri kind tag"
@@ -5605,59 +3203,22 @@
msgstr "^Ot@C %s ðõ"
#, c-format
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: ^Ot@CÌpXª %s ÉØèÌÄçêܵ½\n"
-
-msgid "Ignoring long line in tags file"
-msgstr "^Ot@CàÌ·¢sð³µÜ·"
-
-#, c-format
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: ^Ot@C \"%s\" ÌtH[}bgÉG[ª èÜ·"
-
-#, c-format
msgid "Before byte %ld"
msgstr "¼OÌ %ld oCg"
-#, c-format
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: ^Ot@Cª\\[g³êĢܹñ: %s"
-
-msgid "E433: No tags file"
-msgstr "E433: ^Ot@Cª èܹñ"
-
-msgid "E434: Can't find tag pattern"
-msgstr "E434: ^Op^[ð©Â¯çêܹñ"
-
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: ^Oð©Â¯çêÈ¢ÌÅPɪµÜ·!"
+msgid "Ignoring long line in tags file"
+msgstr "^Ot@CàÌ·¢sð³µÜ·"
#, c-format
msgid "Duplicate field name: %s"
msgstr "d¡µ½tB[h¼: %s"
msgid "' not known. Available builtin terminals are:"
-msgstr "' Í¢mÅ·B»sÌgÝÝ[ÍÌÆ¨èÅ·:"
+msgstr "' Í¢mÅ·B»sÌgÝ[ÍÌÆ¨èÅ·:"
msgid "defaulting to '"
msgstr "ȪlðÌæ¤ÉÝèµÜ· '"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: termcapt@CðJ¯Ü¹ñ"
-
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: terminfoÉ[Ggð©Â¯çêܹñ"
-
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: termcapÉ[Ggð©Â¯çêܹñ"
-
-#, c-format
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: termcapÉ \"%s\" ÌGgª èܹñ"
-
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: [É \"cm\" @\\ªKvÅ·"
-
msgid ""
"\n"
"--- Terminal keys ---"
@@ -5666,13 +3227,6 @@
"--- [L[ ---"
#, c-format
-msgid "E181: Invalid attribute: %s"
-msgstr "E181: ³øÈ®«Å·: %s"
-
-msgid "E279: Sorry, ++shell is not supported on this system"
-msgstr "E279: ²ßñȳ¢A++shell ͱÌVXeÅÍT|[g³êĢܹñ"
-
-#, c-format
msgid "Kill job in \"%s\"?"
msgstr "\"%s\" àÌWuðI¹µÜ·©?"
@@ -5691,50 +3245,17 @@
msgid "finished"
msgstr "I¹"
-msgid "E958: Job already finished"
-msgstr "E958: WuÍ·ÅÉI¹µÄ¢Ü·"
+msgid "(Invalid)"
+msgstr "(³ø)"
+
+# no-c-format
+msgid "%a %b %d %H:%M:%S %Y"
+msgstr "%Y/%m/%d (%a) %H:%M:%S"
#, c-format
-msgid "E953: File exists: %s"
-msgstr "E953: t@CÍùɶݵܷ: %s"
-
-msgid "E955: Not a terminal buffer"
-msgstr "E955: [obt@ÅÍ èܹñ"
-
-msgid "E982: ConPTY is not available"
-msgstr "E982: ConPTY ª³øÅ·"
-
-#, c-format
-msgid "E971: Property type %s does not exist"
-msgstr "E971: vpeB^Cv %s ª èܹñ"
-
-#, c-format
-msgid "E964: Invalid column number: %ld"
-msgstr "E964: ³øÈñÔÅ·: %ld"
-
-#, c-format
-msgid "E966: Invalid line number: %ld"
-msgstr "E966: ³øÈsÔÅ·: %ld"
-
-msgid "E965: missing property type name"
-msgstr "E965: vpeB^Cv¼ª èܹñ"
-
-msgid "E275: Cannot add text property to unloaded buffer"
-msgstr "E275: ðú³ê½obt@ÉÍeLXgvpeBðÇÁūܹñ"
-
-msgid "E967: text property info corrupted"
-msgstr "E967: eLXgvpeBîñªóêĢܷ"
-
-msgid "E968: Need at least one of 'id' or 'type'"
-msgstr "E968: Åá 1 ÂÌ 'id' Ü½Í 'type' ªKvÅ·"
-
-#, c-format
-msgid "E969: Property type %s already defined"
-msgstr "E969: vpeB^Cv %s ÍùÉè`³êĢܷ"
-
-#, c-format
-msgid "E970: Unknown highlight group name: '%s'"
-msgstr "E970: ¢mÌnCCgO[v¼: '%s'"
+msgid "%ld second ago"
+msgid_plural "%ld seconds ago"
+msgstr[0] "%ld boߵĢܷ"
msgid "new shell started\n"
msgstr "Vµ¢VFðN®µÜ·\n"
@@ -5742,83 +3263,41 @@
msgid "Vim: Error reading input, exiting...\n"
msgstr "Vim: üÍðÇÝÌG[ÉæèI¹µÜ·...\n"
-msgid "Used CUT_BUFFER0 instead of empty selection"
-msgstr "óÌIðÌæÌ©íèÉCUT_BUFFER0ªgp³êܵ½"
-
-msgid "E881: Line count changed unexpectedly"
-msgstr "E881: \\ú¹¸sJEgªÏíèܵ½"
-
msgid "No undo possible; continue anyway"
msgstr "Â\\ÈAhDÍ èܹñ: Æè ¦¸±¯Ü·"
-#, c-format
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: ÝpÉAhDt@CðJ¯Ü¹ñ: %s"
-
-#, c-format
-msgid "E825: Corrupted undo file (%s): %s"
-msgstr "E825: AhDt@CªóêĢܷ (%s): %s"
-
msgid "Cannot write undo file in any directory in 'undodir'"
-msgstr "'undodir'ÌfBNgÉAhDt@Cð«ßܹñ"
+msgstr "'undodir'ÌfBNgÉAhDt@Cðßܹñ"
#, c-format
msgid "Will not overwrite with undo file, cannot read: %s"
-msgstr "AhDt@CƵÄÇÝßÈ¢ÌÅ㫵ܹñ: %s"
+msgstr "AhDt@CƵÄÇßÈ¢ÌÅ㫵ܹñ: %s"
#, c-format
msgid "Will not overwrite, this is not an undo file: %s"
msgstr "AhDt@CÅÍÈ¢ÌÅ㫵ܹñ: %s"
msgid "Skipping undo file write, nothing to undo"
-msgstr "Î۪ȢÌÅAhDt@CÌ«ÝðXLbvµÜ·"
+msgstr "Î۪ȢÌÅAhDt@CÌÝðXLbvµÜ·"
#, c-format
msgid "Writing undo file: %s"
-msgstr "AhDt@C«Ý: %s"
-
-#, c-format
-msgid "E829: write error in undo file: %s"
-msgstr "E829: AhDt@CÌ«ÝG[Å·: %s"
+msgstr "AhDt@CÝ: %s"
#, c-format
msgid "Not reading undo file, owner differs: %s"
-msgstr "I[i[ªÙÈéÌÅAhDt@CðÇÝÝܹñ: %s"
+msgstr "I[i[ªÙÈéÌÅAhDt@CðÇÝܹñ: %s"
#, c-format
msgid "Reading undo file: %s"
-msgstr "AhDt@CÇ: %s"
-
-#, c-format
-msgid "E822: Cannot open undo file for reading: %s"
-msgstr "E822: AhDt@CðÇpƵÄJ¯Ü¹ñ: %s"
-
-#, c-format
-msgid "E823: Not an undo file: %s"
-msgstr "E823: AhDt@CÅÍ èܹñ: %s"
-
-#, c-format
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: ñût@CªÃ»³ê½AhDt@CðgÁÄÜ·: %s"
-
-#, c-format
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: û³ê½AhDt@CÌðÇɸsµÜµ½: %s"
-
-#, c-format
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: AhDt@CªÃ»³êĢܷ: %s"
-
-#, c-format
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: Ý·«Ì³¢AhDt@CÅ·: %s"
+msgstr "AhDt@CÇÝ: %s"
msgid "File contents changed, cannot use undo info"
msgstr "t@CÌàeªÏíÁÄ¢é½ßAAhDîñðpūܹñ"
#, c-format
msgid "Finished reading undo file %s"
-msgstr "AhDt@C %s Ìæð®¹"
+msgstr "AhDt@C %s ÌæÝð®¹"
msgid "Already at oldest change"
msgstr "ùÉêÔâÏXÅ·"
@@ -5826,13 +3305,6 @@
msgid "Already at newest change"
msgstr "ùÉêÔVµ¢ÏXÅ·"
-#, c-format
-msgid "E830: Undo number %ld not found"
-msgstr "E830: AhDÔ %ld ͩ©èܹñ"
-
-msgid "E438: u_undo: line numbers wrong"
-msgstr "E438: u_undo: sÔªÔáÁĢܷ"
-
msgid "more line"
msgstr "s ÇÁµÜµ½"
@@ -5867,15 +3339,6 @@
msgid "number changes when saved"
msgstr "ÊÔ ÏX ÏXú Û¶Ï"
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undo ̼ãÉ undojoin Íūܹñ"
-
-msgid "E439: undo list corrupt"
-msgstr "E439: AhDXgªóêĢܷ"
-
-msgid "E440: undo line missing"
-msgstr "E440: AhDsª èܹñ"
-
msgid ""
"\n"
" Name Args Address Complete Definition"
@@ -5887,89 +3350,8 @@
msgstr "[U[è`R}hª©Â©èܹñŵ½"
#, c-format
-msgid "E180: Invalid address type value: %s"
-msgstr "E180: ³øÈAhX^CvlÅ·: %s"
-
-#, c-format
-msgid "E180: Invalid complete value: %s"
-msgstr "E180: ³øÈâ®wèÅ·: %s"
-
-msgid "E468: Completion argument only allowed for custom completion"
-msgstr "E468: â®øÍJX^â®Åµ©gpūܹñ"
-
-msgid "E467: Custom completion requires a function argument"
-msgstr "E467: JX^â®ÉÍøÆµÄÖªKvÅ·"
-
-msgid "E175: No attribute specified"
-msgstr "E175: ®«Íè`³êĢܹñ"
-
-msgid "E176: Invalid number of arguments"
-msgstr "E176: øÌª³øÅ·"
-
-msgid "E177: Count cannot be specified twice"
-msgstr "E177: JEgð2dwè·é±ÆÍūܹñ"
-
-msgid "E178: Invalid default value for count"
-msgstr "E178: JEgÌȪlª³øÅ·"
-
-msgid "E179: argument required for -complete"
-msgstr "E179: -complete ÉÍøªKvÅ·"
-
-msgid "E179: argument required for -addr"
-msgstr "E179: -addr ÉÍøªKvÅ·"
-
-#, c-format
-msgid "E174: Command already exists: add ! to replace it: %s"
-msgstr "E174: R}hªùÉ èÜ·: Äè`·éÉÍ ! ðÇÁµÄ¾³¢: %s"
-
-msgid "E182: Invalid command name"
-msgstr "E182: ³øÈR}h¼Å·"
-
-msgid "E183: User defined commands must start with an uppercase letter"
-msgstr "E183: [U[è`R}hÍpå¶ÅnÜçȯêÎÈèܹñ"
-
-msgid "E841: Reserved name, cannot be used for user defined command"
-msgstr "E841: \\ñ¼ÈÌÅA[U[è`R}hÉpūܹñ"
-
-#, c-format
-msgid "E184: No such user-defined command: %s"
-msgstr "E184: »Ì[U[è`R}hÍ èܹñ: %s"
-
-#, c-format
-msgid "E122: Function %s already exists, add ! to replace it"
-msgstr "E122: Ö %s Íè`ÏÅ·AÄè`·éÉÍ ! ðÇÁµÄ¾³¢"
-
-msgid "E717: Dictionary entry already exists"
-msgstr "E717: «^àÉGgªùɶݵܷ"
-
-msgid "E718: Funcref required"
-msgstr "E718: ÖQÆ^ªv³êÜ·"
-
-#, c-format
-msgid "E130: Unknown function: %s"
-msgstr "E130: ¢mÌÖÅ·: %s"
-
-#, c-format
-msgid "E125: Illegal argument: %s"
-msgstr "E125: s³ÈøÅ·: %s"
-
-#, c-format
-msgid "E853: Duplicate argument name: %s"
-msgstr "E853: ø¼ªd¡µÄ¢Ü·: %s"
-
-msgid "E989: Non-default argument follows default argument"
-msgstr "E989: ñftHgøªftHgøÌãÉ èÜ·"
-
-#, c-format
-msgid "E740: Too many arguments for function %s"
-msgstr "E740: ÖÌøª½ß¬Ü·: %s"
-
-#, c-format
-msgid "E116: Invalid arguments for function %s"
-msgstr "E116: Ö̳øÈøÅ·: %s"
-
-msgid "E132: Function call depth is higher than 'maxfuncdepth'"
-msgstr "E132: ÖÄoÌüêqª 'maxfuncdepth' ð´¦Üµ½"
+msgid "W22: Text found after :endfunction: %s"
+msgstr "W22: :endfunction Ìãɶª èÜ·: %s"
#, c-format
msgid "calling %s"
@@ -5987,85 +3369,6 @@
msgid "%s returning %s"
msgstr "%s ª %s ðԵܵ½"
-msgid "E699: Too many arguments"
-msgstr "E699: øª½ß¬Ü·"
-
-#, c-format
-msgid "E117: Unknown function: %s"
-msgstr "E117: ¢mÌÖÅ·: %s"
-
-#, c-format
-msgid "E276: Cannot use function as a method: %s"
-msgstr "E276: Öð\\bhƵÄgpūܹñ: %s"
-
-#, c-format
-msgid "E933: Function was deleted: %s"
-msgstr "E933: ÖÍí³êܵ½: %s"
-
-#, c-format
-msgid "E119: Not enough arguments for function: %s"
-msgstr "E119: ÖÌøª«èܹñ: %s"
-
-#, c-format
-msgid "E120: Using <SID> not in a script context: %s"
-msgstr "E120: XNvgÈOÅ<SID>ªgíêܵ½: %s"
-
-#, c-format
-msgid "E725: Calling dict function without Dictionary: %s"
-msgstr "E725: «pÖªÄÎêܵ½ª«ª èܹñ: %s"
-
-msgid "E129: Function name required"
-msgstr "E129: Ö¼ªv³êÜ·"
-
-#, c-format
-msgid "E128: Function name must start with a capital or \"s:\": %s"
-msgstr "E128: Ö¼Íå¶© \"s:\" ÅnÜçȯêÎÈèܹñ: %s"
-
-#, c-format
-msgid "E884: Function name cannot contain a colon: %s"
-msgstr "E884: Ö¼ÉÍRÍÜßçêܹñ: %s"
-
-#, c-format
-msgid "E123: Undefined function: %s"
-msgstr "E123: ¢è`ÌÖÅ·: %s"
-
-#, c-format
-msgid "E124: Missing '(': %s"
-msgstr "E124: '(' ª èܹñ: %s"
-
-msgid "E862: Cannot use g: here"
-msgstr "E862: ±±ÅÍ g: Íg¦Ü¹ñ"
-
-#, c-format
-msgid "E932: Closure function should not be at top level: %s"
-msgstr "E932: N[W[ÖÍgbvxÉLqūܹñ: %s"
-
-msgid "E126: Missing :endfunction"
-msgstr "E126: :endfunction ª èܹñ"
-
-#, c-format
-msgid "W22: Text found after :endfunction: %s"
-msgstr "W22: :endfunction Ìãɶª èÜ·: %s"
-
-#, c-format
-msgid "E707: Function name conflicts with variable: %s"
-msgstr "E707: Ö¼ªÏ¼ÆÕ˵ܷ: %s"
-
-#, c-format
-msgid "E127: Cannot redefine function %s: It is in use"
-msgstr "E127: Ö %s ðÄè`ūܹñ: gpÅ·"
-
-#, c-format
-msgid "E746: Function name does not match script file name: %s"
-msgstr "E746: Ö¼ªXNvgÌt@C¼ÆêvµÜ¹ñ: %s"
-
-#, c-format
-msgid "E131: Cannot delete function %s: It is in use"
-msgstr "E131: Ö %s ðíūܹñ: gpÅ·"
-
-msgid "E133: :return not inside a function"
-msgstr "E133: ÖOÉ :return ª èܵ½"
-
#, c-format
msgid "%s (%s, compiled %s)"
msgstr "%s (%s, compiled %s)"
@@ -6219,18 +3522,15 @@
msgid "with X11-Athena GUI."
msgstr "with X11-Athena GUI."
+msgid "with Haiku GUI."
+msgstr "with Haiku GUI."
+
msgid "with Photon GUI."
msgstr "with Photon GUI."
msgid "with GUI."
msgstr "with GUI."
-msgid "with Carbon GUI."
-msgstr "with Carbon GUI."
-
-msgid "with Cocoa GUI."
-msgstr "with Cocoa GUI."
-
msgid " Features included (+) or not (-):\n"
msgstr " @\\Ìê Lø(+)/³ø(-)\n"
@@ -6357,6 +3657,21 @@
msgid "menu Help->Sponsor/Register for information "
msgstr "Ú×Íj
[Ì wv->X|T[/o^ ðQƵĺ³¢"
+msgid "global"
+msgstr "O[o"
+
+msgid "buffer"
+msgstr "obt@"
+
+msgid "window"
+msgstr "EBhE"
+
+msgid "tab"
+msgstr "^u"
+
+msgid "[end of lines]"
+msgstr "[ÅIs]"
+
msgid ""
"\n"
"# Buffer list:\n"
@@ -6398,9 +3713,6 @@
msgid "%sviminfo: %s in line: "
msgstr "%sviminfo: %s sÚ: "
-msgid "E136: viminfo: Too many errors, skipping rest of file"
-msgstr "E136: viminfo: G[ª½ß¬éÌÅAÈ~ÍXLbvµÜ·"
-
msgid ""
"\n"
"# global variables:\n"
@@ -6430,9 +3742,6 @@
msgid "Substitute "
msgstr "Substitute "
-msgid "Illegal register name"
-msgstr "s³ÈWX^¼"
-
msgid ""
"\n"
"# Registers:\n"
@@ -6440,10 +3749,6 @@
"\n"
"# WX^:\n"
-#, c-format
-msgid "E574: Unknown register type %d"
-msgstr "E574: ¢mÌWX^^ %d Å·"
-
msgid ""
"\n"
"# History of marks within files (newest to oldest):\n"
@@ -6465,12 +3770,6 @@
"\n"
"# WvXg (Vµ¢à̪æ):\n"
-msgid "Missing '>'"
-msgstr "'>' ª©Â©èܹñ"
-
-msgid "Illegal starting char"
-msgstr "s³È檶ŷ"
-
#, c-format
msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# ±Ì viminfo t@CÍ Vim %s ÉæÁͬ³êܵ½.\n"
@@ -6486,8 +3785,8 @@
msgstr "# ±Ìt@Cª©ê½Ì 'encoding' Ìl\n"
#, c-format
-msgid "Reading viminfo file \"%s\"%s%s%s"
-msgstr "viminfot@C \"%s\"%s%s%s ðÇÝ"
+msgid "Reading viminfo file \"%s\"%s%s%s%s"
+msgstr "viminfot@C \"%s\"%s%s%s%s ðÇÝ"
msgid " info"
msgstr " îñ"
@@ -6502,60 +3801,13 @@
msgstr " ¸s"
#, c-format
-msgid "E137: Viminfo file is not writable: %s"
-msgstr "E137: viminfot@CªÝūܹñ: %s"
-
-#, c-format
-msgid "E929: Too many viminfo temp files, like %s!"
-msgstr "E929: êviminfot@Cª½ß¬Ü·! á: %s"
-
-#, c-format
-msgid "E138: Can't write viminfo file %s!"
-msgstr "E138: viminfot@C %s ð۶ūܹñ!"
-
-#, c-format
msgid "Writing viminfo file \"%s\""
msgstr "viminfot@C \"%s\" ðÝ"
-#, c-format
-msgid "E886: Can't rename viminfo file to %s!"
-msgstr "E886: viminfot@Cð %s Ö¼OÏXūܹñ!"
-
-msgid "E195: Cannot open viminfo file for reading"
-msgstr "E195: viminfot@CðÇpƵÄJ¯Ü¹ñ"
-
msgid "Already only one window"
msgstr "ùÉEBhEÍ1µ© èܹñ"
#, c-format
-msgid "E92: Buffer %ld not found"
-msgstr "E92: obt@ %ld ª©Â©èܹñ"
-
-msgid "E441: There is no preview window"
-msgstr "E441: vr
[EBhEª èܹñ"
-
-msgid "E242: Can't split a window while closing another"
-msgstr "E242: ÊÌEBhEð¶ĢéÔɪ·é±ÆÍūܹñ"
-
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: ¶ãÆEºð¯Éª·é±ÆÍūܹñ"
-
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: ¼ÌEBhEªª³êÄ¢éÉÍñūܹñ"
-
-msgid "E444: Cannot close last window"
-msgstr "E444: ÅãÌEBhEðÂ¶é±ÆÍūܹñ"
-
-msgid "E813: Cannot close autocmd or popup window"
-msgstr "E813: autocmdEBhEܽÍ|bvAbvEBhEͶçêܹñ"
-
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr "E814: autocmdEBhEµ©cçÈ¢½ßAEBhEͶçêܹñ"
-
-msgid "E445: Other window contains changes"
-msgstr "E445: ¼ÌEBhEÉÍÏXª èÜ·"
-
-#, c-format
msgid "E370: Could not load library %s"
msgstr "E370: Cu %s ð[hūܹñŵ½"
@@ -6569,11 +3821,11 @@
"E299: Th{bNXÅÍ Safe W
[ðgpµÈ¢PerlXNvgÍÖ¶çê"
"Ģܷ"
-msgid "Edit with &multiple Vims"
-msgstr "¡ÌVimÅÒW·é (&M)"
+msgid "Edit with Vim using &tabpages"
+msgstr "VimÅ^uy[WðgÁÄÒW·é (&T)"
msgid "Edit with single &Vim"
-msgstr "1ÂÌVimÅÒW·é (&V)"
+msgstr "PêÌVimÅÒW·é (&V)"
msgid "Diff with Vim"
msgstr "VimÅ·ªð\\¦·é"
@@ -6596,117 +3848,38 @@
msgid "gvimext.dll error"
msgstr "gvimext.dll G["
-msgid "Path length too long!"
-msgstr "pXª·ß¬Ü·!"
-
-msgid "--No lines in buffer--"
-msgstr "--obt@Ésª èܹñ--"
-
-msgid "E470: Command aborted"
-msgstr "E470: R}hªf³êܵ½"
-
-msgid "E471: Argument required"
-msgstr "E471: øªKvÅ·"
+msgid "Interrupted"
+msgstr "Üêܵ½"
msgid "E10: \\ should be followed by /, ? or &"
msgstr "E10: \\ ÌãÍ / © ? © & ÅȯêÎÈèܹñ"
msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
-msgstr "E11: R}hCÅͳøÅ·; <CR>ÅÀs, CTRL-CÅâßé"
+msgstr "E11: R}hCEBhEÅͳøÅ·; <CR>ÅÀs, CTRL-CÅâßé"
msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
msgstr ""
"E12: »ÝÌfBNgâ^OõÅÍexrc/vimrcÌR}hͳêܹñ"
-msgid "E171: Missing :endif"
-msgstr "E171: :endif ª èܹñ"
-
-msgid "E600: Missing :endtry"
-msgstr "E600: :endtry ª èܹñ"
-
-msgid "E170: Missing :endwhile"
-msgstr "E170: :endwhile ª èܹñ"
-
-msgid "E170: Missing :endfor"
-msgstr "E170: :endfor ª èܹñ"
-
-msgid "E588: :endwhile without :while"
-msgstr "E588: :while ÌÈ¢ :endwhile ª èÜ·"
-
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor ÌÈ¢ :for ª èÜ·"
-
msgid "E13: File exists (add ! to override)"
msgstr "E13: t@Cª¶ÝµÜ· (! ðÇÁÅã)"
-msgid "E472: Command failed"
-msgstr "E472: R}hª¸sµÜµ½"
-
#, c-format
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: ¢mÌtHgZbg: %s"
-
-#, c-format
-msgid "E235: Unknown font: %s"
-msgstr "E235: ¢mÌtHg: %s"
-
-#, c-format
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: tHg \"%s\" ÍÅèÅÍ èܹñ"
-
-msgid "E473: Internal error"
-msgstr "E473: àG[Å·"
-
-#, c-format
-msgid "E685: Internal error: %s"
-msgstr "E685: àG[Å·: %s"
-
-msgid "Interrupted"
-msgstr "Üêܵ½"
-
-msgid "E474: Invalid argument"
-msgstr "E474: ³øÈøÅ·"
-
-#, c-format
-msgid "E475: Invalid argument: %s"
-msgstr "E475: ³øÈøÅ·: %s"
-
-#, c-format
-msgid "E983: Duplicate argument: %s"
-msgstr "E983: øªd¡µÄ¢Ü·: %s"
-
-#, c-format
-msgid "E475: Invalid value for argument %s"
-msgstr "E475: ø %s ÉεijøÈlÅ·"
-
-#, c-format
-msgid "E475: Invalid value for argument %s: %s"
-msgstr "E475: ø %s ÉεijøÈlÅ·: %s"
-
-#, c-format
-msgid "E15: Invalid expression: %s"
-msgstr "E15: ³øÈ®Å·: %s"
+msgid "E15: Invalid expression: \"%s\""
+msgstr "E15: ³øÈ®Å·: \"%s\""
msgid "E16: Invalid range"
msgstr "E16: ³øÈÍÍÅ·"
-msgid "E476: Invalid command"
-msgstr "E476: ³øÈR}hÅ·"
-
#, c-format
msgid "E17: \"%s\" is a directory"
msgstr "E17: \"%s\" ÍfBNgÅ·"
-#, c-format
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: \"%s\"() ÌCuÄoɸsµÜµ½"
+msgid "E18: Unexpected characters in :let"
+msgstr "E18: \\ú¹Ê¶ª :let É èܵ½"
-msgid "E667: Fsync failed"
-msgstr "E667: fsync ɸsµÜµ½"
-
-#, c-format
-msgid "E448: Could not load library function %s"
-msgstr "E448: CuÌÖ %s ð[hūܹñŵ½"
+msgid "E18: Unexpected characters in assignment"
+msgstr "E18: \\ú¹Ê¶ªãüÉ èܵ½"
msgid "E19: Mark has invalid line number"
msgstr "E19: }[NɳøÈsÔªwè³êĢܵ½"
@@ -6726,9 +3899,6 @@
msgid "E24: No such abbreviation"
msgstr "E24: »Ìæ¤ÈZküÍÍ èܹñ"
-msgid "E477: No ! allowed"
-msgstr "E477: ! ͳêĢܹñ"
-
msgid "E25: GUI cannot be used: Not enabled at compile time"
msgstr "E25: GUIÍgpsÂ\\Å·: RpCɳøÉ³êĢܷ"
@@ -6738,9 +3908,6 @@
msgid "E27: Farsi support has been removed\n"
msgstr "E27: yVAêT|[gÍí³êܵ½\n"
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: ArAêÍgpsÂ\\Å·: RpCɳøÉ³êĢܷ\n"
-
#, c-format
msgid "E28: No such highlight group name: %s"
msgstr "E28: »Ìæ¤È¼ÌnCCgO[vÍ èܹñ: %s"
@@ -6754,13 +3921,6 @@
msgid "E31: No such mapping"
msgstr "E31: »Ìæ¤È}bsOÍ èܹñ"
-msgid "E479: No match"
-msgstr "E479: YÍ èܹñ"
-
-#, c-format
-msgid "E480: No match: %s"
-msgstr "E480: YÍ èܹñ: %s"
-
msgid "E32: No file name"
msgstr "E32: t@C¼ª èܹñ"
@@ -6773,30 +3933,14 @@
msgid "E35: No previous regular expression"
msgstr "E35: ³K\\»ªÜ¾Às³êĢܹñ"
-msgid "E481: No range allowed"
-msgstr "E481: ÍÍwèͳêĢܹñ"
-
msgid "E36: Not enough room"
msgstr "E36: EBhEÉ\\ªÈ³àµÍª èܹñ"
-#, c-format
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: %s Æ¢¤¼OÌo^³ê½T[o[Í èܹñ"
+msgid "E37: No write since last change"
+msgstr "E37: ÅãÌÏXªÛ¶³êĢܹñ"
-#, c-format
-msgid "E482: Can't create file %s"
-msgstr "E482: t@C %s ðì¬Å«Ü¹ñ"
-
-msgid "E483: Can't get temp file name"
-msgstr "E483: êt@C̼Oðæ¾Å«Ü¹ñ"
-
-#, c-format
-msgid "E484: Can't open file %s"
-msgstr "E484: t@C \"%s\" ðJ¯Ü¹ñ"
-
-#, c-format
-msgid "E485: Can't read file %s"
-msgstr "E485: t@C %s ðÇßܹñ"
+msgid "E37: No write since last change (add ! to override)"
+msgstr "E37: ÅãÌÏXªÛ¶³êĢܹñ (! ðÇÁÅÏXðjü)"
msgid "E38: Null argument"
msgstr "E38: øªóÅ·"
@@ -6808,31 +3952,12 @@
msgid "E40: Can't open errorfile %s"
msgstr "E40: G[t@C %s ðJ¯Ü¹ñ"
-msgid "E233: cannot open display"
-msgstr "E233: fBXvCðJ¯Ü¹ñ"
-
msgid "E41: Out of memory!"
msgstr "E41: ªs«ÊÄܵ½!"
-msgid "Pattern not found"
-msgstr "p^[ͩ©èܹñŵ½"
-
-#, c-format
-msgid "E486: Pattern not found: %s"
-msgstr "E486: p^[ͩ©èܹñŵ½: %s"
-
-msgid "E487: Argument must be positive"
-msgstr "E487: øÍ³ÌlÅȯêÎÈèܹñ"
-
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: OÌfBNgÉßêܹñ"
-
msgid "E42: No Errors"
msgstr "E42: G[Í èܹñ"
-msgid "E776: No location list"
-msgstr "E776: P[VXgÍ èܹñ"
-
msgid "E43: Damaged match string"
msgstr "E43: Y¶ñªj¹µÄ¢Ü·"
@@ -6842,91 +3967,90 @@
msgid "E45: 'readonly' option is set (add ! to override)"
msgstr "E45: 'readonly' IvVªÝè³êĢܷ (! ðÇÁÅã«)"
-#, c-format
-msgid "E121: Undefined variable: %s"
-msgstr "E121: ¢è`ÌÏÅ·: %s"
-
-#, c-format
-msgid "E734: Wrong variable type for %s="
-msgstr "E734: ÙÈÁ½^ÌÏÅ· %s="
-
-#, c-format
-msgid "E461: Illegal variable name: %s"
-msgstr "E461: s³Èϼŷ: %s"
-
-msgid "E995: Cannot modify existing variable"
-msgstr "E995: ù¶ÌÏðÏXūܹñ"
+msgid "E46: Cannot change read-only variable"
+msgstr "E46: ÇæêpÏÉÍlðÝèūܹñ"
#, c-format
msgid "E46: Cannot change read-only variable \"%s\""
msgstr "E46: ÇæêpÏ \"%s\" ÉÍlðÝèūܹñ"
-#, c-format
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr "E794: Th{bNXÅÍÏ \"%s\" ÉlðÝèūܹñ"
-
-msgid "E928: String required"
-msgstr "E928: ¶ñªKvÅ·"
-
-msgid "E713: Cannot use empty key for Dictionary"
-msgstr "E713: «^ÉóÌL[ðg¤±ÆÍūܹñ"
-
-msgid "E715: Dictionary required"
-msgstr "E715: «^ªKvÅ·"
-
-#, c-format
-msgid "E684: list index out of range: %ld"
-msgstr "E684: XgÌCfbNXªÍÍOÅ·: %ld"
-
-#, c-format
-msgid "E979: Blob index out of range: %ld"
-msgstr "E979: BlobÌCfbNXªÍÍOÅ·: %ld"
-
-msgid "E978: Invalid operation for Blob"
-msgstr "E978: Blob^ÉͳøÈìÅ·"
-
-#, c-format
-msgid "E118: Too many arguments for function: %s"
-msgstr "E118: ÖÌøª½ß¬Ü·: %s"
-
-#, c-format
-msgid "E716: Key not present in Dictionary: %s"
-msgstr "E716: «^ÉL[ª¶ÝµÜ¹ñ: %s"
-
-msgid "E714: List required"
-msgstr "E714: Xg^ªKvÅ·"
-
-msgid "E897: List or Blob required"
-msgstr "E897: Xg^ܽÍBlob^ªKvÅ·"
-
-#, c-format
-msgid "E712: Argument of %s must be a List or Dictionary"
-msgstr "E712: %s ÌøÍXg^ܽͫ^ÅȯêÎÈèܹñ"
-
-#, c-format
-msgid "E896: Argument of %s must be a List, Dictionary or Blob"
-msgstr "E896: %s ÌøÍXg^A«^ܽÍBlob^ÅȯêÎÈèܹñ"
-
msgid "E47: Error while reading errorfile"
-msgstr "E47: G[t@CÌÇÉG[ª¶µÜµ½"
+msgstr "E47: G[t@CÌÇÝÉG[ª¶µÜµ½"
msgid "E48: Not allowed in sandbox"
msgstr "E48: Th{bNXÅͳêܹñ"
-msgid "E523: Not allowed here"
-msgstr "E523: ±±Åͳêܹñ"
-
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: XN[[hÌÝèÉÍεĢܹñ"
-
msgid "E49: Invalid scroll size"
msgstr "E49: ³øÈXN[ÊÅ·"
-msgid "E91: 'shell' option is empty"
-msgstr "E91: 'shell' IvVªóÅ·"
+msgid "E50: Too many \\z("
+msgstr "E50: \\z( ª½ß¬Ü·"
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: sign Ìf[^ðÇßܹñŵ½"
+#, c-format
+msgid "E51: Too many %s("
+msgstr "E51: %s( ª½ß¬Ü·"
+
+msgid "E52: Unmatched \\z("
+msgstr "E52: \\z( ªÞèÁĢܹñ"
+
+#, c-format
+msgid "E53: Unmatched %s%%("
+msgstr "E53: %s%%( ªÞèÁĢܹñ"
+
+#, c-format
+msgid "E54: Unmatched %s("
+msgstr "E54: %s( ªÞèÁĢܹñ"
+
+#, c-format
+msgid "E55: Unmatched %s)"
+msgstr "E55: %s) ªÞèÁĢܹñ"
+
+#, c-format
+msgid "E59: invalid character after %s@"
+msgstr "E59: %s@ ÌãÉs³È¶ª èܵ½"
+
+#, c-format
+msgid "E60: Too many complex %s{...}s"
+msgstr "E60: ¡GÈ %s{...} ª½ß¬Ü·"
+
+#, c-format
+msgid "E61: Nested %s*"
+msgstr "E61:%s* ªüêqÉÈÁĢܷ"
+
+#, c-format
+msgid "E62: Nested %s%c"
+msgstr "E62:%s%c ªüêqÉÈÁĢܷ"
+
+msgid "E63: invalid use of \\_"
+msgstr "E63: \\_ ̳øÈgpû@Å·"
+
+#, c-format
+msgid "E64: %s%c follows nothing"
+msgstr "E64:%s%c ÌãÉÈÉà èܹñ"
+
+msgid "E65: Illegal back reference"
+msgstr "E65: s³ÈãûQÆÅ·"
+
+msgid "E66: \\z( not allowed here"
+msgstr "E66: \\z( ÍRRÅͳêĢܹñ"
+
+msgid "E67: \\z1 - \\z9 not allowed here"
+msgstr "E67: \\z1 - \\z9 ÍRRÅͳêĢܹñ"
+
+msgid "E68: Invalid character after \\z"
+msgstr "E68: \\z ÌãÉs³È¶ª èܵ½"
+
+#, c-format
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: %s%%[ ÌãÉ ] ª èܹñ"
+
+#, c-format
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] ªóÅ·"
+
+#, c-format
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: %s%% ÌãÉs³È¶ª èܵ½"
msgid "E72: Close error on swap file"
msgstr "E72: Xbvt@CÌN[YG[Å·"
@@ -6946,82 +4070,4061 @@
msgid "E77: Too many file names"
msgstr "E77: t@C¼ª½ß¬Ü·"
-msgid "E488: Trailing characters"
-msgstr "E488: ]ªÈ¶ªãëÉ èÜ·"
-
msgid "E78: Unknown mark"
msgstr "E78: ¢mÌ}[N"
msgid "E79: Cannot expand wildcards"
msgstr "E79: ChJ[hðWJūܹñ"
+msgid "E80: Error while writing"
+msgstr "E80: ÝÌG["
+
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: XNvgÈOÅ<SID>ªgíêܵ½"
+
+msgid "E82: Cannot allocate any buffer, exiting..."
+msgstr "E82: obt@ð1Âàì¬Å«È¢ÌÅAI¹µÜ·..."
+
+msgid "E83: Cannot allocate buffer, using other one..."
+msgstr "E83: obt@ðì¬Å«È¢ÌÅA¼ÌðgpµÜ·..."
+
+msgid "E84: No modified buffer found"
+msgstr "E84: ÏX³ê½obt@Í èܹñ"
+
+msgid "E85: There is no listed buffer"
+msgstr "E85: Xg\\¦³êéobt@Í èܹñ"
+
+#, c-format
+msgid "E86: Buffer %ld does not exist"
+msgstr "E86: obt@ %ld Í èܹñ"
+
+msgid "E87: Cannot go beyond last buffer"
+msgstr "E87: ÅãÌobt@ðz¦ÄÚ®Íūܹñ"
+
+msgid "E88: Cannot go before first buffer"
+msgstr "E88: ÅÌobt@æèOÖÍڮūܹñ"
+
+#, c-format
+msgid "E89: No write since last change for buffer %d (add ! to override)"
+msgstr "E89: obt@ %d ÌÏXÍÛ¶³êĢܹñ (! ÅÏXðjü)"
+
+msgid "E90: Cannot unload last buffer"
+msgstr "E90: ÅãÌobt@Íðúūܹñ"
+
+msgid "E91: 'shell' option is empty"
+msgstr "E91: 'shell' IvVªóÅ·"
+
+#, c-format
+msgid "E92: Buffer %d not found"
+msgstr "E92: obt@ %d ª©Â©èܹñ"
+
+#, c-format
+msgid "E93: More than one match for %s"
+msgstr "E93: %s É¡ÌYª èܵ½"
+
+#, c-format
+msgid "E94: No matching buffer for %s"
+msgstr "E94: %s ÉY·éobt@Í èܹñŵ½"
+
+msgid "E95: Buffer with this name already exists"
+msgstr "E95: ±Ì¼OÌobt@ÍùÉ èÜ·"
+
+#, c-format
+msgid "E96: Cannot diff more than %d buffers"
+msgstr "E96: %d ÈãÌobt@Ídiffūܹñ"
+
+msgid "E97: Cannot create diffs"
+msgstr "E97: ·ªðì¬Å«Ü¹ñ"
+
+msgid "E98: Cannot read diff output"
+msgstr "E98: diffÌoÍðÇßܹñ"
+
+msgid "E99: Current buffer is not in diff mode"
+msgstr "E99: »ÝÌobt@Í·ª[hÅÍ èܹñ"
+
+msgid "E100: No other buffer in diff mode"
+msgstr "E100: ·ª[hÅ é¼Ìobt@Í èܹñ"
+
+msgid "E101: More than two buffers in diff mode, don't know which one to use"
+msgstr ""
+"E101: ·ª[hÌobt@ª2ÂÈã éÌÅAÇêðg¤©Áèūܹñ"
+
+#, c-format
+msgid "E102: Can't find buffer \"%s\""
+msgstr "E102: obt@ \"%s\" ª©Â©èܹñ"
+
+#, c-format
+msgid "E103: Buffer \"%s\" is not in diff mode"
+msgstr "E103: obt@ \"%s\" Í·ª[hÅÍ èܹñ"
+
+msgid "E104: Escape not allowed in digraph"
+msgstr "E104: ÉEscapeÍgpūܹñ"
+
+msgid "E105: Using :loadkeymap not in a sourced file"
+msgstr "E105: :source ÅæÞt@CÈOÅÍ :loadkeymap ðg¦Ü¹ñ"
+
+#, c-format
+msgid "E107: Missing parentheses: %s"
+msgstr "E107: JbR '(' ª èܹñ: %s"
+
+#, c-format
+msgid "E108: No such variable: \"%s\""
+msgstr "E108: »ÌÏÍ èܹñ: \"%s\""
+
+msgid "E109: Missing ':' after '?'"
+msgstr "E109: '?' ÌãÉ ':' ª èܹñ"
+
+msgid "E110: Missing ')'"
+msgstr "E110: ')' ª©Â©èܹñ"
+
+msgid "E111: Missing ']'"
+msgstr "E111: ']' ª©Â©èܹñ"
+
+#, c-format
+msgid "E112: Option name missing: %s"
+msgstr "E112: IvV¼ª èܹñ: %s"
+
+#, c-format
+msgid "E113: Unknown option: %s"
+msgstr "E113: ¢mÌIvVÅ·: %s"
+
+#, c-format
+msgid "E114: Missing double quote: %s"
+msgstr "E114: _uNH[gª èܹñ: %s"
+
+#, c-format
+msgid "E115: Missing single quote: %s"
+msgstr "E115: VONH[gª èܹñ: %s"
+
+#, c-format
+msgid "E116: Invalid arguments for function %s"
+msgstr "E116: Ö̳øÈøÅ·: %s"
+
+#, c-format
+msgid "E117: Unknown function: %s"
+msgstr "E117: ¢mÌÖÅ·: %s"
+
+#, c-format
+msgid "E118: Too many arguments for function: %s"
+msgstr "E118: ÖÌøª½ß¬Ü·: %s"
+
+#, c-format
+msgid "E119: Not enough arguments for function: %s"
+msgstr "E119: ÖÌøª«èܹñ: %s"
+
+#, c-format
+msgid "E120: Using <SID> not in a script context: %s"
+msgstr "E120: XNvgÈOÅ<SID>ªgíêܵ½: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %s"
+msgstr "E121: ¢è`ÌÏÅ·: %s"
+
+#, c-format
+msgid "E121: Undefined variable: %c:%s"
+msgstr "E121: ¢è`ÌÏÅ·: %c:%s"
+
+#, c-format
+msgid "E122: Function %s already exists, add ! to replace it"
+msgstr "E122: Ö %s Íè`ÏÅ·AÄè`·éÉÍ ! ðÇÁµÄ¾³¢"
+
+#, c-format
+msgid "E123: Undefined function: %s"
+msgstr "E123: ¢è`ÌÖÅ·: %s"
+
+#, c-format
+msgid "E124: Missing '(': %s"
+msgstr "E124: '(' ª èܹñ: %s"
+
+#, c-format
+msgid "E125: Illegal argument: %s"
+msgstr "E125: s³ÈøÅ·: %s"
+
+msgid "E126: Missing :endfunction"
+msgstr "E126: :endfunction ª èܹñ"
+
+#, c-format
+msgid "E127: Cannot redefine function %s: It is in use"
+msgstr "E127: Ö %s ðÄè`ūܹñ: gpÅ·"
+
+#, c-format
+msgid "E128: Function name must start with a capital or \"s:\": %s"
+msgstr "E128: Ö¼Íå¶© \"s:\" ÅnÜçȯêÎÈèܹñ: %s"
+
+msgid "E129: Function name required"
+msgstr "E129: Ö¼ªv³êÜ·"
+
+#, c-format
+msgid "E131: Cannot delete function %s: It is in use"
+msgstr "E131: Ö %s ðíūܹñ: gpÅ·"
+
+msgid "E132: Function call depth is higher than 'maxfuncdepth'"
+msgstr "E132: ÖÄoµÌüêqª 'maxfuncdepth' ð´¦Üµ½"
+
+msgid "E133: :return not inside a function"
+msgstr "E133: ÖOÉ :return ª èܵ½"
+
+msgid "E134: Cannot move a range of lines into itself"
+msgstr "E134: sÌÍÍð»ê©gÉÍڮūܹñ"
+
+msgid "E135: *Filter* Autocommands must not change current buffer"
+msgstr "E135: *Filter* ©®R}hÍ»ÝÌobt@ðÏXµÄÍ¢¯Ü¹ñ"
+
+msgid "E136: viminfo: Too many errors, skipping rest of file"
+msgstr "E136: viminfo: G[ª½ß¬éÌÅAÈ~ÍXLbvµÜ·"
+
+#, c-format
+msgid "E137: Viminfo file is not writable: %s"
+msgstr "E137: viminfot@CªÝūܹñ: %s"
+
+#, c-format
+msgid "E138: Can't write viminfo file %s!"
+msgstr "E138: viminfot@C %s ð۶ūܹñ!"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: ¯¶¼OÌt@Cª¼Ìobt@ÅÇÜêĢܷ"
+
+msgid "E140: Use ! to write partial buffer"
+msgstr "E140: obt@ðªIÉÛ¶·éÉÍ ! ðgÁľ³¢"
+
+#, c-format
+msgid "E141: No file name for buffer %ld"
+msgstr "E141: obt@ %ld ÉͼOª èܹñ"
+
+msgid "E142: File not written: Writing is disabled by 'write' option"
+msgstr "E142: t@CÍÛ¶³êܹñŵ½: 'write' IvVÉæè³øÅ·"
+
+#, c-format
+msgid "E143: Autocommands unexpectedly deleted new buffer %s"
+msgstr "E143: ©®R}hª\\ú¹¸Vµ¢obt@ %s ðíµÜµ½"
+
+msgid "E144: non-numeric argument to :z"
+msgstr "E144: ÅÍÈ¢øª :z Én³êܵ½"
+
+msgid "E145: Shell commands and some functionality not allowed in rvim"
+msgstr "E145: rvimÅÍVFR}hÆêÌ@\\ðg¦Ü¹ñ"
+
+msgid "E146: Regular expressions can't be delimited by letters"
+msgstr "E146: ³K\\»Í¶ÅæØé±ÆªÅ«Ü¹ñ"
+
+msgid "E147: Cannot do :global recursive with a range"
+msgstr "E147: :global ðÍÍt«ÅÄAIÉÍg¦Ü¹ñ"
+
+msgid "E148: Regular expression missing from :global"
+msgstr "E148: :global ɳK\\»ªwè³êĢܹñ"
+
+#, c-format
+msgid "E149: Sorry, no help for %s"
+msgstr "E149: cOÅ·ª %s ÉÍwvª èܹñ"
+
+#, c-format
+msgid "E150: Not a directory: %s"
+msgstr "E150: fBNgÅÍ èܹñ: %s"
+
+#, c-format
+msgid "E151: No match: %s"
+msgstr "E151: }b`Í èܹñ: %s"
+
+#, c-format
+msgid "E152: Cannot open %s for writing"
+msgstr "E152: ÝpÉ %s ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E153: Unable to open %s for reading"
+msgstr "E153: ÇÝpÉ %s ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E154: Duplicate tag \"%s\" in file %s/%s"
+msgstr "E154: ^O \"%s\" ªt@C %s/%s Éd¡µÄ¢Ü·"
+
+#, c-format
+msgid "E155: Unknown sign: %s"
+msgstr "E155: ¢mÌsignÅ·: %s"
+
+msgid "E156: Missing sign name"
+msgstr "E156: sign¼ª èܹñ"
+
+#, c-format
+msgid "E157: Invalid sign ID: %d"
+msgstr "E157: ³øÈsign¯ÊqÅ·: %d"
+
+#, c-format
+msgid "E158: Invalid buffer name: %s"
+msgstr "E158: ³øÈobt@¼Å·: %s"
+
+msgid "E159: Missing sign number"
+msgstr "E159: signÌÔª èܹñ"
+
+#, c-format
+msgid "E160: Unknown sign command: %s"
+msgstr "E160: ¢mÌsignR}hÅ·: %s"
+
+#, c-format
+msgid "E161: Breakpoint not found: %s"
+msgstr "E161: u[N|Cgª©Â©èܹñ: %s"
+
+#, c-format
+msgid "E162: No write since last change for buffer \"%s\""
+msgstr "E162: obt@ \"%s\" ÌÏXÍÛ¶³êĢܹñ"
+
+msgid "E163: There is only one file to edit"
+msgstr "E163: ÒW·ét@CÍ1µ© èܹñ"
+
+msgid "E164: Cannot go before first file"
+msgstr "E164: ÅÌt@CæèOÉÍs¯Ü¹ñ"
+
+msgid "E165: Cannot go beyond last file"
+msgstr "E165: ÅãÌt@Cðz¦ÄãÉÍs¯Ü¹ñ"
+
+msgid "E166: Can't open linked file for writing"
+msgstr "E166: N³ê½t@CÉßܹñ"
+
+msgid "E167: :scriptencoding used outside of a sourced file"
+msgstr "E167: :scriptencoding ªæÝXNvgÈOÅgp³êܵ½"
+
+msgid "E168: :finish used outside of a sourced file"
+msgstr "E168: :finish ªæÝXNvgÈOÅgp³êܵ½"
+
+msgid "E169: Command too recursive"
+msgstr "E169: R}hªÄAIܷ߬"
+
+msgid "E170: Missing :endwhile"
+msgstr "E170: :endwhile ª èܹñ"
+
+msgid "E170: Missing :endfor"
+msgstr "E170: :endfor ª èܹñ"
+
+msgid "E171: Missing :endif"
+msgstr "E171: :endif ª èܹñ"
+
+msgid "E172: Missing marker"
+msgstr "E172: }[J[ª èܹñ"
+
+#, c-format
+msgid "E173: %d more file to edit"
+msgstr "E173: ÒW·×«t@Cª Æ %d  èÜ·"
+
+#, c-format
+msgid "E173: %d more files to edit"
+msgstr "E173: ÒW·×«t@Cª Æ %d  èÜ·"
+
+#, c-format
+msgid "E174: Command already exists: add ! to replace it: %s"
+msgstr "E174: R}hªùÉ èÜ·: Äè`·éÉÍ ! ðÇÁµÄ¾³¢: %s"
+
+msgid "E175: No attribute specified"
+msgstr "E175: ®«Íè`³êĢܹñ"
+
+msgid "E176: Invalid number of arguments"
+msgstr "E176: øÌª³øÅ·"
+
+msgid "E177: Count cannot be specified twice"
+msgstr "E177: JEgð2dwè·é±ÆÍūܹñ"
+
+msgid "E178: Invalid default value for count"
+msgstr "E178: JEgÌȪlª³øÅ·"
+
+#, c-format
+msgid "E179: argument required for %s"
+msgstr "E179: %s ÉÍøªKvÅ·"
+
+#, c-format
+msgid "E180: Invalid complete value: %s"
+msgstr "E180: ³øÈâ®wèÅ·: %s"
+
+#, c-format
+msgid "E180: Invalid address type value: %s"
+msgstr "E180: ³øÈAhX^CvlÅ·: %s"
+
+#, c-format
+msgid "E181: Invalid attribute: %s"
+msgstr "E181: ³øÈ®«Å·: %s"
+
+msgid "E182: Invalid command name"
+msgstr "E182: ³øÈR}h¼Å·"
+
+msgid "E183: User defined commands must start with an uppercase letter"
+msgstr "E183: [U[è`R}hÍpå¶ÅnÜçȯêÎÈèܹñ"
+
+#, c-format
+msgid "E184: No such user-defined command: %s"
+msgstr "E184: »Ì[U[è`R}hÍ èܹñ: %s"
+
+#, c-format
+msgid "E185: Cannot find color scheme '%s'"
+msgstr "E185: J[XL[ '%s' ª©Â©èܹñ"
+
+msgid "E186: No previous directory"
+msgstr "E186: OÌfBNgÍ èܹñ"
+
+msgid "E187: Directory unknown"
+msgstr "E187: ¢mÌfBNg"
+
+msgid "E188: Obtaining window position not implemented for this platform"
+msgstr ""
+"E188: ±Ìvbgz[ÉÍEBhEÊuÌæ¾@\\ÍÀ³êĢܹñ"
+
+#, c-format
+msgid "E189: \"%s\" exists (add ! to override)"
+msgstr "E189: \"%s\" ª¶ÝµÜ· (ã·éÉÍ ! ðÇÁµÄ¾³¢)"
+
+#, c-format
+msgid "E190: Cannot open \"%s\" for writing"
+msgstr "E190: \"%s\" ðÝpƵÄJ¯Ü¹ñ"
+
+msgid "E191: Argument must be a letter or forward/backward quote"
+msgstr "E191: øÍ1¶Ìp©øp (' © `) Åȯê΢¯Ü¹ñ"
+
+msgid "E192: Recursive use of :normal too deep"
+msgstr "E192: :normal ÌÄApª[Èè߬ܵ½"
+
+#, c-format
+msgid "E193: %s not inside a function"
+msgstr "E193: ÖÌOÉ %s ª èܵ½"
+
+msgid "E194: No alternate file name to substitute for '#'"
+msgstr "E194: '#'ðu«·¦ét@C̼Oª èܹñ"
+
+msgid "E195: Cannot open viminfo file for reading"
+msgstr "E195: viminfot@CðÇÝpƵÄJ¯Ü¹ñ"
+
+msgid "E196: No digraphs in this version"
+msgstr "E196: ±Ìo[WÉÍ èܹñ"
+
+#, c-format
+msgid "E197: Cannot set language to \"%s\""
+msgstr "E197: ¾êð \"%s\" ÉÝèūܹñ"
+
+msgid "E199: Active window or buffer deleted"
+msgstr "E199: ANeBuÈEBhE©obt@ªí³êܵ½"
+
+msgid "E200: *ReadPre autocommands made the file unreadable"
+msgstr "E200: *ReadPre ©®R}h ªt@CðÇsÂɵܵ½"
+
+msgid "E201: *ReadPre autocommands must not change current buffer"
+msgstr "E201: *ReadPre ©®R}h Í»ÝÌobt@ðϦçêܹñ"
+
+msgid "E202: Conversion made file unreadable!"
+msgstr "E202: Ï·ªt@CðÇsÂɵܵ½"
+
+msgid "E203: Autocommands deleted or unloaded buffer to be written"
+msgstr "E203: Û¶·éobt@ð©®R}hªí©ðúµÜµ½"
+
+msgid "E204: Autocommand changed number of lines in unexpected way"
+msgstr "E204: ©®R}hª\\ú¹Êû@ÅsðÏXµÜµ½"
+
+msgid "E205: Patchmode: can't save original file"
+msgstr "E205: patchmode: ´{t@Cð۶ūܹñ"
+
+msgid "E206: patchmode: can't touch empty original file"
+msgstr "E206: patchmode: óÌ´{t@Cðtouchūܹñ"
+
+msgid "E207: Can't delete backup file"
+msgstr "E207: obNAbvt@CðÁ¹Ü¹ñ"
+
+#, c-format
+msgid "E208: Error writing to \"%s\""
+msgstr "E208: \"%s\" ðÝÌG[Å·"
+
+#, c-format
+msgid "E209: Error closing \"%s\""
+msgstr "E209: \"%s\" ð¶éÉG[Å·"
+
+#, c-format
+msgid "E210: Error reading \"%s\""
+msgstr "E210: \"%s\" ðÇÝÌG[Å·"
+
+#, c-format
+msgid "E211: File \"%s\" no longer available"
+msgstr "E211: t@C \"%s\" Íùɶݵܹñ"
+
+msgid "E212: Can't open file for writing"
+msgstr "E212: ÝpÉt@CðJ¯Ü¹ñ"
+
+msgid "E213: Cannot convert (add ! to write without conversion)"
+msgstr "E213: Ϸūܹñ (! ðÇÁÅÏ·¹¸ÉÛ¶)"
+
+msgid "E214: Can't find temp file for writing"
+msgstr "E214: Û¶pêt@Cª©Â©èܹñ"
+
+#, c-format
+msgid "E215: Illegal character after *: %s"
+msgstr "E215: * ÌãÉs³È¶ª èܵ½: %s"
+
+#, c-format
+msgid "E216: No such event: %s"
+msgstr "E216: »Ìæ¤ÈCxgÍ èܹñ: %s"
+
+#, c-format
+msgid "E216: No such group or event: %s"
+msgstr "E216: »Ìæ¤ÈO[vàµÍCxgÍ èܹñ: %s"
+
+msgid "E217: Can't execute autocommands for ALL events"
+msgstr "E217: SÄÌCxgÉεÄÌ©®R}hÍÀsūܹñ"
+
+msgid "E218: autocommand nesting too deep"
+msgstr "E218: ©®R}hÌüêqª[ܷ߬"
+
+msgid "E219: Missing {."
+msgstr "E219: { ª èܹñB"
+
+msgid "E220: Missing }."
+msgstr "E220: } ª èܹñB"
+
+msgid "E221: Marker cannot start with lower case letter"
+msgstr "E221: }[J[Íp¬¶ÅnÜÁÄÍ¢¯Ü¹ñ"
+
+msgid "E222: Add to internal buffer that was already read from"
+msgstr "E222: ùÉÇñ¾àobt@ÉÇÁµÄ¢Ü·"
+
+msgid "E223: recursive mapping"
+msgstr "E223: ÄAI}bsO"
+
+#, c-format
+msgid "E224: global abbreviation already exists for %s"
+msgstr "E224: %s Æ¢¤O[oZküÍÍùɶݵܷ"
+
+#, c-format
+msgid "E225: global mapping already exists for %s"
+msgstr "E225: %s Æ¢¤O[o}bsOÍùɶݵܷ"
+
+#, c-format
+msgid "E226: abbreviation already exists for %s"
+msgstr "E226: %s Æ¢¤ZküÍÍùɶݵܷ"
+
+#, c-format
+msgid "E227: mapping already exists for %s"
+msgstr "E227: %s Æ¢¤}bsOÍùɶݵܷ"
+
+msgid "E228: makemap: Illegal mode"
+msgstr "E228: makemap: s³È[h"
+
+msgid "E229: Cannot start the GUI"
+msgstr "E229: GUIðJnūܹñ"
+
+#, c-format
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: \"%s\"©çÇޱƪūܹñ"
+
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' ª³øÅ·"
+
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: bZ[WÆR[obNÌ é BalloonEval ðì¬Å«Ü¹ñ"
+
+msgid "E233: cannot open display"
+msgstr "E233: fBXvCðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: ¢mÌtHgZbg: %s"
+
+#, c-format
+msgid "E235: Unknown font: %s"
+msgstr "E235: ¢mÌtHg: %s"
+
+#, c-format
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: tHg \"%s\" ÍÅèÅÍ èܹñ"
+
+msgid "E237: Printer selection failed"
+msgstr "E237: v^ÌIðɸsµÜµ½"
+
+#, c-format
+msgid "E238: Print error: %s"
+msgstr "E238: óüG[: %s"
+
+#, c-format
+msgid "E239: Invalid sign text: %s"
+msgstr "E239: ³øÈsignÌeLXgÅ·: %s"
+
+msgid "E240: No connection to the X server"
+msgstr "E240: X T[o[ÖÌÚ±ª èܹñ"
+
+#, c-format
+msgid "E241: Unable to send to %s"
+msgstr "E241: %s Ö鱯ªÅ«Ü¹ñ"
+
+msgid "E242: Can't split a window while closing another"
+msgstr "E242: ÊÌEBhEð¶ĢéÔɪ·é±ÆÍūܹñ"
+
+#, c-format
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: øÍT|[g³êܹñ: \"-%s\"; OLEÅðgpµÄ¾³¢B"
+
+#, c-format
+msgid "E244: Illegal %s name \"%s\" in font name \"%s\""
+msgstr "E244: s³È%s¼ \"%s\" Å· (tHg¼ \"%s\")"
+
+#, c-format
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: '%c' Ís³È¶Å· (tHg¼ \"%s\")"
+
+msgid "E246: FileChangedShell autocommand deleted buffer"
+msgstr "E246: FileChangedShell ©®R}hªobt@ðíµÜµ½"
+
+#, c-format
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: \"%s\" Æ¢¤¼OÌo^³ê½T[o[Í èܹñ"
+
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: ÚIÌvOÖÌR}hMɸsµÜµ½"
+
+msgid "E249: window layout changed unexpectedly"
+msgstr "E249: \\ú¹¸EBhEÌzuªÏíèܵ½"
+
+#, c-format
+msgid "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: Ⱥ̶ZbgÌtHgª èܹñ %s:"
+
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: VIM ÀÌÌo^vpeBªs³Å·BÁµÜµ½!"
+
+#, c-format
+msgid "E252: Fontset name: %s - Font '%s' is not fixed-width"
+msgstr "E252: tHgZbg¼: %s - tHg '%s' ÍÅèÅÍ èܹñ"
+
+#, c-format
+msgid "E253: Fontset name: %s"
+msgstr "E253: tHgZbg¼: %s"
+
+#, c-format
+msgid "E254: Cannot allocate color %s"
+msgstr "E254: %s ÌFðèÄçêܹñ"
+
+msgid "E255: Couldn't read in sign data"
+msgstr "E255: sign Ìf[^ðÇßܹñŵ½"
+
+msgid "E257: cstag: tag not found"
+msgstr "E257: cstag: ^Oª©Â©èܹñ"
+
+msgid "E258: Unable to send to client"
+msgstr "E258: NCAgÖ鱯ªÅ«Ü¹ñ"
+
+#, c-format
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: cscopeNG[ %s of %s ÉYª èܹñŵ½"
+
+msgid "E260: Missing name after ->"
+msgstr "E260: -> ÌãɼOª èܹñ"
+
+#, c-format
+msgid "E261: cscope connection %s not found"
+msgstr "E261: cscopeÚ± %s ª©Â©èܹñŵ½"
+
+#, c-format
+msgid "E262: error reading cscope connection %d"
+msgstr "E262: cscopeÌÚ± %d ðÇÝÌG[Å·"
+
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: ±ÌR}hͳøÅ·A²ßñȳ¢: PythonCuð[hūܹ"
+"ñŵ½B"
+
+msgid "E264: Python: Error initialising I/O objects"
+msgstr "E264: Python: I/OIuWFNgÌú»G["
+
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ ͶñÌCX^XÅȯêÎÈèܹñ"
+
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: ±ÌR}hͳøÅ·A²ßñȳ¢: RubyCuð[hūܹñ"
+"ŵ½B"
+
+msgid "E267: unexpected return"
+msgstr "E267: \\ú¹Ê return Å·"
+
+msgid "E268: unexpected next"
+msgstr "E268: \\ú¹Ê next Å·"
+
+msgid "E269: unexpected break"
+msgstr "E269: \\ú¹Ê break Å·"
+
+msgid "E270: unexpected redo"
+msgstr "E270: \\ú¹Ê redo Å·"
+
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: rescue ÌOÌ retry Å·"
+
+msgid "E272: unhandled exception"
+msgstr "E272: æèµíêÈ©Á½áOª èÜ·"
+
+#, c-format
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: ¢mÌlongjmpóÔ: %d"
+
+msgid "E274: No white space allowed before parenthesis"
+msgstr "E274: ÛÊÌOÉXy[Xͳêܹñ"
+
+msgid "E275: Cannot add text property to unloaded buffer"
+msgstr "E275: ðú³ê½obt@ÉÍeLXgvpeBðÇÁūܹñ"
+
+#, c-format
+msgid "E276: Cannot use function as a method: %s"
+msgstr "E276: Öð\\bhƵÄgpūܹñ: %s"
+
+msgid "E277: Unable to read a server reply"
+msgstr "E277: T[o[̪ èܹñ"
+
+msgid "E279: Sorry, ++shell is not supported on this system"
+msgstr "E279: ²ßñȳ¢A++shell ͱÌVXeÅÍT|[g³êĢܹñ"
+
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: TCL v½IG[: reflist õ!? vim-dev@vim.org ÉñµÄ¾³¢"
+
+#, c-format
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: \"%s\"©çÇޱƪūܹñ"
+
+#, c-format
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: \"%s\" ÉY·é}[Nª èܹñ"
+
+msgid "E284: Cannot set IC values"
+msgstr "E284: ICÌlðÝèūܹñ"
+
+msgid "E285: Failed to create input context"
+msgstr "E285: CvbgReLXgÌì¬É¸sµÜµ½"
+
+msgid "E286: Failed to open input method"
+msgstr "E286: Cvbg\\bhÌI[vɸsµÜµ½"
+
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: x: IMÌjóR[obNðÝèūܹñŵ½"
+
+msgid "E288: input method doesn't support any style"
+msgstr "E288: Cvbg\\bhÍÇñÈX^CàT|[gµÜ¹ñ"
+
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: Cvbg\\bhÍ my preedit type ðT|[gµÜ¹ñ"
+
+msgid "E290: List or number required"
+msgstr "E290: Xg©lªKvÅ·"
+
+#, c-format
+msgid "E292: Invalid count for del_bytes(): %ld"
+msgstr "E292: del_bytes() ƵijøÈlÅ·: %ld"
+
+msgid "E293: block was not locked"
+msgstr "E293: ubNªbN³êĢܹñ"
+
+msgid "E294: Seek error in swap file read"
+msgstr "E294: Xbvt@CÇÝÉV[NG[Å·"
+
+msgid "E295: Read error in swap file"
+msgstr "E295: Xbvt@CÌÇÝG[Å·"
+
+msgid "E296: Seek error in swap file write"
+msgstr "E296: Xbvt@CÝÉV[NG[Å·"
+
+msgid "E297: Write error in swap file"
+msgstr "E297: Xbvt@CÌÝG[Å·"
+
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: ubN 0 ðæ¾Å«Ü¹ñ?"
+
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: ubN 1 ðæ¾Å«Ü¹ñ?"
+
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: ubN 2 ðæ¾Å«Ü¹ñ?"
+
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: Xbvt@Cªùɶݵܷ (symlinkÉæéU?)"
+
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: ¨ÁÆAXbvt@Cª¸íêܵ½!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: Xbvt@C̼OðϦçêܹñ"
+
+#, c-format
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr "E303: \"%s\" ÌXbvt@CðJ¯È¢ÌÅJoÍsÂ\\Å·"
+
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): ubN 0 ðæ¾Å«Ü¹ñŵ½??"
+
+#, c-format
+msgid "E305: No swap file found for %s"
+msgstr "E305: %s ÉÍXbvt@Cª©Â©èܹñ"
+
+#, c-format
+msgid "E306: Cannot open %s"
+msgstr "E306: %s ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s ÍVimÌXbvt@CÅÍÈ¢æ¤Å·"
+
+msgid "E308: Warning: Original file may have been changed"
+msgstr "E308: x: ´{t@CªÏX³êĢܷ"
+
+#, c-format
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: %s ©çubN 1 ðÇßܹñ"
+
+#, c-format
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: ubN 1 ÌIDªÔáÁĢܷ(%s ª.swpt@CÅÈ¢?)"
+
+msgid "E311: Recovery Interrupted"
+msgstr "E311: JoªÜêܵ½"
+
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: JoÌÅÉG[ªo³êܵ½; ???ÅnÜésðQƵľ³¢"
+
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: Xbvt@Cª³¢ÌÅÛūܹñ"
+
+msgid "E314: Preserve failed"
+msgstr "E314: ÛɸsµÜµ½"
+
+#, c-format
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: ³øÈlnumÅ·: %ld"
+
+#, c-format
+msgid "E316: ml_get: cannot find line %ld in buffer %d %s"
+msgstr "E316: ml_get: s %ld ðobt@ %d %s àɩ¯çêܹñ"
+
+msgid "E317: pointer block id wrong"
+msgstr "E317: |C^ubNÌIDªÔáÁĢܷ"
+
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 2"
+
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 3"
+
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: |C^ubNÌIDªÔáÁĢܷ 4"
+
+msgid "E318: Updated too many blocks?"
+msgstr "E318: XV³ê½ubNª½ß¬é©à?"
+
+msgid "E319: Sorry, the command is not available in this version"
+msgstr "E319: ±Ìo[WÅͱÌR}hÍpūܹñA²ßñȳ¢"
+
+#, c-format
+msgid "E320: Cannot find line %ld"
+msgstr "E320: s %ld ª©Â©èܹñ"
+
+#, c-format
+msgid "E321: Could not reload \"%s\""
+msgstr "E321: \"%s\" Í[hūܹñŵ½"
+
+#, c-format
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: sÔªÍÍOÅ·: %ld ´¦Ä¢Ü·"
+
+#, c-format
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: ubN %ld ÌsJEgªÔáÁĢܷ"
+
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: PostScriptoÍpÌt@CðJ¯Ü¹ñ"
+
+msgid "E325: ATTENTION"
+msgstr "E325: Ó"
+
+msgid "E326: Too many swap files found"
+msgstr "E326: Xbvt@Cª½©Â©èܵ½"
+
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr "E327: j
[ACeÌpX̪ªTuj
[ÅÍ èܹñ"
+
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: j
[ͼÌ[hɾ¯ èÜ·"
+
+#, c-format
+msgid "E329: No menu \"%s\""
+msgstr "E329: \"%s\" Æ¢¤j
[Í èܹñ"
+
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: j
[pXÍTuj
[ð¶¶é׫ÅÍ èܹñ"
+
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr "E331: j
[o[ÉͼÚj
[ACeðÇÁūܹñ"
+
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: æØèÍj
[pXÌêÅÍ èܹñ"
+
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: j
[pXÍj
[ACeð¶¶È¯ê΢¯Ü¹ñ"
+
+#, c-format
+msgid "E334: Menu not found: %s"
+msgstr "E334: j
[ª©Â©èܹñ: %s"
+
+#, c-format
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: %s ÉÍj
[ªè`³êĢܹñ"
+
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: j
[pXÍTuj
[ð¶¶È¯ê΢¯Ü¹ñ"
+
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: j
[ª©Â©èܹñ - j
[¼ðmFµÄ¾³¢"
+
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: R\\[[hÅÍt@CuEUðg¦Ü¹ñA²ßñȳ¢"
+
+msgid "E339: Pattern too long"
+msgstr "E339: p^[ª·ß¬Ü·"
+
+msgid "E341: Internal error: lalloc(0, )"
+msgstr "E341: àG[: lalloc(0, )"
+
+#, c-format
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: ª«èܹñ! (%lu oCgðv)"
+
+#, c-format
+msgid ""
+"E343: Invalid path: '**[number]' must be at the end of the path or be "
+"followed by '%s'."
+msgstr ""
+"E343: ³øÈpXÅ·: '**[l]' ÍpathÌÅã© '%s' ª±¢ÄȢƢ¯Ü¹"
+"ñB"
+
+#, c-format
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: cdpathÉÍ \"%s\" Æ¢¤fBNgª èܹñ"
+
+#, c-format
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: pathÉÍ \"%s\" Æ¢¤t@Cª èܹñ"
+
+#, c-format
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: cdpathÉͱêÈã \"%s\" Æ¢¤fBNgª èܹñ"
+
+#, c-format
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: pXÉͱêÈã \"%s\" Æ¢¤t@Cª èܹñ"
+
+msgid "E348: No string under cursor"
+msgstr "E348: J[\\ÌÊuÉͶñª èܹñ"
+
+msgid "E349: No identifier under cursor"
+msgstr "E349: J[\\ÌÊuÉͯÊqª èܹñ"
+
+msgid "E350: Cannot create fold with current 'foldmethod'"
+msgstr "E350: »ÝÌ 'foldmethod' ÅÍÜôÝðì¬Å«Ü¹ñ"
+
+msgid "E351: Cannot delete fold with current 'foldmethod'"
+msgstr "E351: »ÝÌ 'foldmethod' ÅÍÜôÝðíūܹñ"
+
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: »ÝÌ 'foldmethod' ÅÍÜôÝðÁūܹñ"
+
+#, c-format
+msgid "E353: Nothing in register %s"
+msgstr "E353: WX^ %s Éͽà èܹñ"
+
+#, c-format
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: ³øÈWX^¼: '%s'"
+
+#, c-format
+msgid "E355: Unknown option: %s"
+msgstr "E355: ¢mÌIvVÅ·: %s"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: get_varp G["
+
+#, c-format
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': %s Éη鶪 èܹñ"
+
+#, c-format
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': Z~RÌãÉ]ªÈ¶ª èÜ·: %s"
+
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: XN[[hÌÝèÉÍεĢܹñ"
+
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: -f IvVÅVFðÀsūܹñ"
+
+msgid "E362: Using a boolean value as a Float"
+msgstr "E362: u[lð®¬_ƵĵÁĢܷ"
+
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: p^[ª 'maxmempattern' ÈãÌðgpµÜ·"
+
+#, c-format
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: \"%s()\" ÌCuÄoµÉ¸sµÜµ½"
+
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: PostScriptt@CÌóüɸsµÜµ½"
+
+msgid "E366: Not allowed to enter a popup window"
+msgstr "E366: |bvAbvEBhEÉüé±ÆÍ³êܹñ"
+
+#, c-format
+msgid "E367: No such group: \"%s\""
+msgstr "E367: »ÌO[vÍ èܹñ: \"%s\""
+
+#, c-format
+msgid "E368: got SIG%s in libcall()"
+msgstr "E368: libcall() Å@SIG%s ðó¯æèܵ½"
+
+#, c-format
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: ³øÈÚÅ·: %s%%[]"
+
+#, c-format
+msgid "E370: Could not load library %s: %s"
+msgstr "E370: Cu %s ð[hūܹñŵ½: %s"
+
+msgid "E371: Command not found"
+msgstr "E371: R}hª èܹñ"
+
+#, c-format
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: tH[}bg¶ñÉ %%%c ª½ß¬Ü·"
+
+#, c-format
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: tH[}bg¶ñÉ\\ú¹Ê %%%c ª èܵ½"
+
+msgid "E374: Missing ] in format string"
+msgstr "E374: tH[}bg¶ñÉ ] ª èܹñ"
+
+#, c-format
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: tH[}bg¶ñÅÍ %%%c ÍT|[g³êܹñ"
+
+#, c-format
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: tH[}bg¶ñÌOuɳøÈ %%%c ª èÜ·"
+
+#, c-format
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: tH[}bg¶ñɳøÈ %%%c ª èÜ·"
+
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' Ép^[ªwè³êĢܹñ"
+
+msgid "E379: Missing or empty directory name"
+msgstr "E379: fBNg¼ª³¢©óÅ·"
+
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: quickfix X^bNÌöÅ·"
+
+msgid "E381: At top of quickfix stack"
+msgstr "E381: quickfix X^bNÌæªÅ·"
+
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: 'buftype' IvVªÝè³êÄ¢éÌÅßܹñ"
+
+#, c-format
+msgid "E383: Invalid search string: %s"
+msgstr "E383: ³øÈõ¶ñÅ·: %s"
+
+#, c-format
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: ãÜÅõµÜµ½ªYÓÍ èܹñ: %s"
+
+#, c-format
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: ºÜÅõµÜµ½ªYÓÍ èܹñ: %s"
+
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: ';' Ì ÆÉÍ '?' © '/' ªúÒ³êÄ¢é"
+
+msgid "E387: Match is on current line"
+msgstr "E387: »ÝsÉYª èÜ·"
+
+msgid "E388: Couldn't find definition"
+msgstr "E388: è`ð©Â¯çêܹñ"
+
+msgid "E389: Couldn't find pattern"
+msgstr "E389: p^[ð©Â¯çêܹñ"
+
+#, c-format
+msgid "E390: Illegal argument: %s"
+msgstr "E390: s³ÈøÅ·: %s"
+
+#, c-format
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: »Ìæ¤È\\¶NX^Í èܹñ: %s"
+
+#, c-format
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: »Ìæ¤È\\¶NX^Í èܹñ: %s"
+
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: ±±ÅÍO[vͳêܹñ"
+
+#, c-format
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: %s ÌÍÍvfª©Â©èܹñ"
+
+msgid "E395: contains argument not accepted here"
+msgstr "E395: ±ÌêÅÍøcontainsͳêĢܹñ"
+
+msgid "E397: Filename required"
+msgstr "E397: t@C¼ªKvÅ·"
+
+#, c-format
+msgid "E398: Missing '=': %s"
+msgstr "E398: '=' ª èܹñ: %s"
+
+#, c-format
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: øª«èܹñ: \\¶ÍÍ %s"
+
+msgid "E400: No cluster specified"
+msgstr "E400: NX^ªwè³êĢܹñ"
+
+#, c-format
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: p^[æØèª©Â©èܹñ: %s"
+
+#, c-format
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: p^[Ì ÆÉS~ª èÜ·: %s"
+
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr "E403: \\¶¯ú: A±sp^[ª2xwè³êܵ½"
+
+#, c-format
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: s³ÈøÅ·: %s"
+
+#, c-format
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: ª èܹñ: %s"
+
+#, c-format
+msgid "E406: Empty argument: %s"
+msgstr "E406: óÌø: %s"
+
+#, c-format
+msgid "E407: %s not allowed here"
+msgstr "E407: %s ÍRRÅͳêĢܹñ"
+
+#, c-format
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s ÍàeXgÌæªÅȯêÎÈçÈ¢"
+
+#, c-format
+msgid "E409: Unknown group name: %s"
+msgstr "E409: ¢mÌO[v¼: %s"
+
+#, c-format
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: ³øÈ :syntax ÌTuR}hÅ·: %s"
+
+#, c-format
+msgid "E411: highlight group not found: %s"
+msgstr "E411: nCCgO[vª©Â©èܹñ: %s"
+
+#, c-format
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: øª[ªÅÍÈ¢: \":highlight link %s\""
+
+#, c-format
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: øª½ß¬Ü·: \":highlight link %s\""
+
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: O[vªÝè³êÄ¢éÌÅnCCgNͳ³êÜ·"
+
+#, c-format
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: \\ú¹ÊÅ·: %s"
+
+#, c-format
+msgid "E416: missing equal sign: %s"
+msgstr "E416: ª èܹñ: %s"
+
+#, c-format
+msgid "E417: missing argument: %s"
+msgstr "E417: øª èܹñ: %s"
+
+#, c-format
+msgid "E418: Illegal value: %s"
+msgstr "E418: s³ÈlÅ·: %s"
+
+msgid "E419: FG color unknown"
+msgstr "E419: ¢mÌOiFÅ·"
+
+msgid "E420: BG color unknown"
+msgstr "E420: ¢mÌwiFÅ·"
+
+#, c-format
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: J[¼âÔðF¯Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E422: terminal code too long: %s"
+msgstr "E422: I[R[hª·ß¬Ü·: %s"
+
+#, c-format
+msgid "E423: Illegal argument: %s"
+msgstr "E423: s³ÈøÅ·: %s"
+
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: ½ÌÙÈénCCg®«ªgíê߬Ģܷ"
+
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: ÅÌY^Oðz¦Äß鱯Íūܹñ"
+
+#, c-format
+msgid "E426: tag not found: %s"
+msgstr "E426: ^Oª©Â©èܹñ: %s"
+
+msgid "E427: There is only one matching tag"
+msgstr "E427: Y^Oª1¾¯µ© èܹñ"
+
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: ÅãÌY^Oðz¦ÄiÞ±ÆÍūܹñ"
+
+#, c-format
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: t@C \"%s\" ª èܹñ"
+
+#, c-format
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: ^Ot@CÌpXª %s ÉØèÌÄçêܵ½\n"
+
+#, c-format
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: ^Ot@C \"%s\" ÌtH[}bgÉG[ª èÜ·"
+
+#, c-format
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: ^Ot@Cª\\[g³êĢܹñ: %s"
+
+msgid "E433: No tags file"
+msgstr "E433: ^Ot@Cª èܹñ"
+
+msgid "E434: Can't find tag pattern"
+msgstr "E434: ^Op^[ð©Â¯çêܹñ"
+
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: ^Oð©Â¯çêÈ¢ÌÅPɪµÜ·!"
+
+#, c-format
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: termcapÉ \"%s\" ÌGgª èܹñ"
+
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: [É \"cm\" @\\ªKvÅ·"
+
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: sÔªÔáÁĢܷ"
+
+msgid "E439: undo list corrupt"
+msgstr "E439: AhDXgªóêĢܷ"
+
+msgid "E440: undo line missing"
+msgstr "E440: AhDsª èܹñ"
+
+msgid "E441: There is no preview window"
+msgstr "E441: vr
[EBhEª èܹñ"
+
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: ¶ãÆEºð¯Éª·é±ÆÍūܹñ"
+
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: ¼ÌEBhEªª³êÄ¢éÉÍñūܹñ"
+
+msgid "E444: Cannot close last window"
+msgstr "E444: ÅãÌEBhEðÂ¶é±ÆÍūܹñ"
+
+msgid "E445: Other window contains changes"
+msgstr "E445: ¼ÌEBhEÉÍÏXª èÜ·"
+
+msgid "E446: No file name under cursor"
+msgstr "E446: J[\\̺Ét@C¼ª èܹñ"
+
+#, c-format
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: pathÉÍ \"%s\" Æ¢¤t@Cª èܹñ"
+
+#, c-format
+msgid "E448: Could not load library function %s"
+msgstr "E448: CuÌÖ %s ð[hūܹñŵ½"
+
+msgid "E449: Invalid expression received"
+msgstr "E449: ³øÈ®ðó¯æèܵ½"
+
+msgid "E450: buffer number, text or a list required"
+msgstr "E450: obt@ÔAeLXgܽÍXgªKvÅ·"
+
+#, c-format
+msgid "E451: Expected }: %s"
+msgstr "E451: } ªKvÅ·: %s"
+
+msgid "E452: Double ; in list of variables"
+msgstr "E452: Xg^ÌlÉ2ÂÈãÌ ; ªo³êܵ½"
+
+msgid "E453: UL color unknown"
+msgstr "E453: ¢m̺üFÅ·"
+
+msgid "E454: function list was modified"
+msgstr "E454: ÖXgªÏX³êܵ½"
+
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: PostScriptoÍt@CÌÝG[Å·"
+
+#, c-format
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: t@C \"%s\" ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: PostScriptÌ\\[Xt@C \"%s.ps\" ª©Â©èܹñ"
+
+#, c-format
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: PostScriptÌ\\[Xt@C \"%s\" ðÇßܹñ"
+
+msgid "E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr "E458: Fw誳µÈ¢ÌÅJ[}bvÌGgðèÄçêܹñ"
+
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: OÌfBNgÉßêܹñ"
+
+msgid "E460: entries missing in mapset() dict argument"
+msgstr "E460: mapset() Ì«øÌvfª«èܹñ"
+
+#, c-format
+msgid "E461: Illegal variable name: %s"
+msgstr "E461: s³Èϼŷ: %s"
+
+#, c-format
+msgid "E462: Could not prepare for reloading \"%s\""
+msgstr "E462: \"%s\" ð[h·éõªÅ«Ü¹ñŵ½"
+
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: ÌæªÛì³êÄ¢éÌÅAÏXūܹñ"
+
+msgid "E464: Ambiguous use of user-defined command"
+msgstr "E464: [U[è`R}hÌ ¢Ü¢ÈgpÅ·"
+
+msgid "E465: :winsize requires two number arguments"
+msgstr "E465: :winsize ÉÍ2ÂÌlÌøªKvÅ·"
+
+msgid "E466: :winpos requires two number arguments"
+msgstr "E466: :winpos ÉÍ2ÂÌlÌøªKvÅ·"
+
+msgid "E467: Custom completion requires a function argument"
+msgstr "E467: JX^â®ÉÍøÆµÄÖªKvÅ·"
+
+msgid "E468: Completion argument only allowed for custom completion"
+msgstr "E468: â®øÍJX^â®Åµ©gpūܹñ"
+
+#, c-format
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: ³øÈ cscopequickfix tO %c Ì %c Å·"
+
+msgid "E470: Command aborted"
+msgstr "E470: R}hªf³êܵ½"
+
+msgid "E471: Argument required"
+msgstr "E471: øªKvÅ·"
+
+msgid "E472: Command failed"
+msgstr "E472: R}hª¸sµÜµ½"
+
+msgid "E473: Internal error in regexp"
+msgstr "E473: ³K\\»ÌàG[Å·"
+
+msgid "E474: Invalid argument"
+msgstr "E474: ³øÈøÅ·"
+
+#, c-format
+msgid "E475: Invalid argument: %s"
+msgstr "E475: ³øÈøÅ·: %s"
+
+#, c-format
+msgid "E475: Invalid value for argument %s"
+msgstr "E475: ø %s ÉεijøÈlÅ·"
+
+#, c-format
+msgid "E475: Invalid value for argument %s: %s"
+msgstr "E475: ø %s ÉεijøÈlÅ·: %s"
+
+msgid "E476: Invalid command"
+msgstr "E476: ³øÈR}hÅ·"
+
+#, c-format
+msgid "E476: Invalid command: %s"
+msgstr "E476: ³øÈR}hÅ·: %s"
+
+msgid "E477: No ! allowed"
+msgstr "E477: ! ͳêĢܹñ"
+
+msgid "E478: Don't panic!"
+msgstr "E478: QÄȢž³¢"
+
+msgid "E479: No match"
+msgstr "E479: YÍ èܹñ"
+
+#, c-format
+msgid "E480: No match: %s"
+msgstr "E480: YÍ èܹñ: %s"
+
+msgid "E481: No range allowed"
+msgstr "E481: ÍÍwèͳêĢܹñ"
+
+#, c-format
+msgid "E482: Can't create file %s"
+msgstr "E482: t@C %s ðì¬Å«Ü¹ñ"
+
+msgid "E483: Can't get temp file name"
+msgstr "E483: êt@C̼Oðæ¾Å«Ü¹ñ"
+
+#, c-format
+msgid "E484: Can't open file %s"
+msgstr "E484: t@C %s ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E485: Can't read file %s"
+msgstr "E485: t@C %s ðÇßܹñ"
+
+msgid "E486: Pattern not found"
+msgstr "E486: p^[ͩ©èܹñŵ½"
+
+#, c-format
+msgid "E486: Pattern not found: %s"
+msgstr "E486: p^[ͩ©èܹñŵ½: %s"
+
+msgid "E487: Argument must be positive"
+msgstr "E487: øÍ³ÌlÅȯêÎÈèܹñ"
+
+msgid "E488: Trailing characters"
+msgstr "E488: ]ªÈ¶ªãëÉ èÜ·"
+
+#, c-format
+msgid "E488: Trailing characters: %s"
+msgstr "E488: ]ªÈ¶ªãëÉ èÜ·: %s"
+
+msgid "E489: no call stack to substitute for \"<stack>\""
+msgstr "E489: \"<stack>\"ðu«·¦éR[X^bNª èܹñ"
+
+msgid "E490: No fold found"
+msgstr "E490: Üôݪ èܹñ"
+
+#, c-format
+msgid "E491: json decode error at '%s'"
+msgstr "E491: '%s' ÅjsonfR[hG["
+
+msgid "E492: Not an editor command"
+msgstr "E492: GfB^ÌR}hÅÍ èܹñ"
+
+msgid "E493: Backwards range given"
+msgstr "E493: t³ÜÌÍͪwè³êܵ½"
+
+msgid "E494: Use w or w>>"
+msgstr "E494: w àµÍ w>> ðgpµÄ¾³¢"
+
+msgid "E495: no autocommand file name to substitute for \"<afile>\""
+msgstr "E495: \"<afile>\"ðu«·¦é©®R}hÌt@C¼ª èܹñ"
+
+msgid "E496: no autocommand buffer number to substitute for \"<abuf>\""
+msgstr "E496: \"<abuf>\"ðu«·¦é©®R}hobt@Ôª èܹñ"
+
+msgid "E497: no autocommand match name to substitute for \"<amatch>\""
+msgstr "E497: \"<amatch>\"ðu«·¦é©®R}hÌY¼ª èܹñ"
+
+msgid "E498: no :source file name to substitute for \"<sfile>\""
+msgstr "E498: \"<sfile>\"ðu«·¦é :source ÎÛt@C¼ª èܹñ"
+
+#, no-c-format
+msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
+msgstr ""
+"E499: '%' â '#' ª³¼t@CÈÌÅ \":p:h\" ðºíÈ¢g¢ûÍūܹñ"
+
+msgid "E500: Evaluates to an empty string"
+msgstr "E500: ó¶ñƵÄ]¿³êܵ½"
+
+msgid "E501: At end-of-file"
+msgstr "E501: t@CÌI¹Êu"
+
+msgid "is not a file or writable device"
+msgstr "Ít@CÅàÝÂ\\foCXÅà èܹñ"
+
+#, c-format
+msgid "E503: \"%s\" is not a file or writable device"
+msgstr "E503: \"%s\" Ít@CÅàÝÂ\\foCXÅà èܹñ"
+
+msgid "is read-only (cannot override: \"W\" in 'cpoptions')"
+msgstr "ÍÇêpÅ· (\"W\" ª 'cpoptions' É é½ßA§Å«Ü¹ñ)"
+
+msgid "is read-only (add ! to override)"
+msgstr "ÍÇêpÅ· (§ÉÍ ! ðÇÁ)"
+
+#, c-format
+msgid "E505: \"%s\" is read-only (add ! to override)"
+msgstr "E505: \"%s\" ÍÇêpÅ· (§ÉÍ ! ðÇÁ)"
+
+msgid "E506: Can't write to backup file (add ! to override)"
+msgstr "E506: obNAbvt@Cð۶ūܹñ (! ðÇÁŧ)"
+
+msgid "E507: Close error for backup file (add ! to write anyway)"
+msgstr ""
+"E507: obNAbvt@Cð¶éÛÉG[ª¶µÜµ½ (! ðÇÁÅ\\í¸"
+")"
+
+msgid "E508: Can't read file for backup (add ! to write anyway)"
+msgstr "E508: obNAbvpt@CðÇßܹñ (! ðÇÁÅ\\í¸)"
+
+msgid "E509: Cannot create backup file (add ! to override)"
+msgstr "E509: obNAbvt@Cðìêܹñ (! ðÇÁŧ)"
+
+msgid "E510: Can't make backup file (add ! to write anyway)"
+msgstr "E510: obNAbvt@Cðìêܹñ (! ðÇÁÅ\\í¸)"
+
+msgid "E511: netbeans already connected"
+msgstr "E511: NetBeansÍùÉÚ±µÄ¢Ü·"
+
+msgid "E512: Close failed"
+msgstr "E512: Â¶é±ÆÉ¸s"
+
+msgid "E513: write error, conversion failed (make 'fenc' empty to override)"
+msgstr "E513: ÝG[AÏ·¸s (ã·éÉÍ 'fenc' ðóɵľ³¢)"
+
+#, c-format
+msgid ""
+"E513: write error, conversion failed in line %ld (make 'fenc' empty to "
+"override)"
+msgstr ""
+"E513: ÝG[AÏ·¸sAs %ld (ã·éÉÍ 'fenc' ðóɵľ³"
+"¢)"
+
+msgid "E514: write error (file system full?)"
+msgstr "E514: ÝG[ (t@CVXeªt?)"
+
+msgid "E515: No buffers were unloaded"
+msgstr "E515: ðú³ê½obt@Í èܹñ"
+
+msgid "E516: No buffers were deleted"
+msgstr "E516: í³ê½obt@Í èܹñ"
+
+msgid "E517: No buffers were wiped out"
+msgstr "E517: jü³ê½obt@Í èܹñ"
+
+msgid "E518: Unknown option"
+msgstr "E518: ¢mÌIvVÅ·"
+
+msgid "E519: Option not supported"
+msgstr "E519: IvVÍT|[g³êĢܹñ"
+
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: modeline Åͳêܹñ"
+
+msgid "E521: Number required after ="
+msgstr "E521: = ÌãÉͪKvÅ·"
+
+#, c-format
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: ªKvÅ·: &%s = '%s'"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: termcap àɩ©èܹñ"
+
+msgid "E523: Not allowed here"
+msgstr "E523: ±±Åͳêܹñ"
+
+msgid "E524: Missing colon"
+msgstr "E524: Rª èܹñ"
+
+msgid "E525: Zero length string"
+msgstr "E525: ¶ñÌ·³ª[Å·"
+
+#, c-format
+msgid "E526: Missing number after <%s>"
+msgstr "E526: <%s> Ìãɪ èܹñ"
+
+msgid "E527: Missing comma"
+msgstr "E527: R}ª èܹñ"
+
+msgid "E528: Must specify a ' value"
+msgstr "E528: ' ÌlðwèµÈ¯êÎÈèܹñ"
+
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: 'term' ÉÍó¶ñðÝèūܹñ"
+
+msgid "E530: Cannot change 'term' in the GUI"
+msgstr "E530: GUIÅÍ 'term' ðÏXūܹñ"
+
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: GUIðX^[g·éÉÍ \":gui\" ðgpµÄ¾³¢"
+
+msgid "E532: highlighting color name too long in defineAnnoType"
+msgstr "E532: defineAnnoTypeàÌnCCgF¼ª··¬Ü·"
+
+msgid "E533: can't select wide font"
+msgstr "E533: ChtHgðIðūܹñ"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: ³øÈChtHgÅ·"
+
+#, c-format
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: <%c> ÌãÉs³È¶ª èÜ·"
+
+msgid "E536: comma required"
+msgstr "E536: R}ªKvÅ·"
+
+#, c-format
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' ÍóÅ é© %s ðÜÞKvª èÜ·"
+
+#, c-format
+msgid "E539: Illegal character <%s>"
+msgstr "E539: s³È¶Å· <%s>"
+
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: ®ªI¹µÄ¢Ü¹ñ"
+
+msgid "E542: unbalanced groups"
+msgstr "E542: O[vªÞ¢Ü¹ñ"
+
+msgid "E543: Not a valid codepage"
+msgstr "E543: ³øÈR[hy[WÅ·"
+
+msgid "E544: Keymap file not found"
+msgstr "E544: L[}bvt@Cª©Â©èܹñ"
+
+msgid "E545: Missing colon"
+msgstr "E545: Rª èܹñ"
+
+msgid "E546: Illegal mode"
+msgstr "E546: s³È[hÅ·"
+
+msgid "E547: Illegal mouseshape"
+msgstr "E547: s³È 'mouseshape' Å·"
+
+msgid "E548: digit expected"
+msgstr "E548: lªKvÅ·"
+
+msgid "E549: Illegal percentage"
+msgstr "E549: s³Èp[Ze[WÅ·"
+
+msgid "E550: Missing colon"
+msgstr "E550: Rª èܹñ"
+
+msgid "E551: Illegal component"
+msgstr "E551: s³È\\¶vfÅ·"
+
+msgid "E552: digit expected"
+msgstr "E552: lªKvÅ·"
+
+msgid "E553: No more items"
+msgstr "E553: vfªà¤ èܹñ"
+
+#, c-format
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: %s{...} àɶ@G[ª èÜ·"
+
+msgid "E555: at bottom of tag stack"
+msgstr "E555: ^OX^bNÌöÅ·"
+
+msgid "E556: at top of tag stack"
+msgstr "E556: ^OX^bNÌæªÅ·"
+
+msgid "E557: Cannot open termcap file"
+msgstr "E557: termcapt@CðJ¯Ü¹ñ"
+
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: terminfoÉ[Ggð©Â¯çêܹñ"
+
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: termcapÉ[Ggð©Â¯çêܹñ"
+
+#, c-format
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: gpû@: cs[cope] %s"
+
+msgid "E561: unknown cscope search type"
+msgstr "E561: ¢mÌcscopeõ^Å·"
+
+msgid "E562: Usage: cstag <ident>"
+msgstr "E562: gp@: cstag <ident>"
+
+#, c-format
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: stat(%s) G[: %d"
+
+#, c-format
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s ÍfBNgyÑLøÈcscopeÌf[^x[XÅÍ èܹñ"
+
+msgid "E565: Not allowed to change text or change window"
+msgstr "E565: eLXgðÏXµ½èEBhEðÏX·é±ÆÍ³êܹñ"
+
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: cscopepCvðì¬Å«Ü¹ñŵ½"
+
+msgid "E567: no cscope connections"
+msgstr "E567: cscopeڱɸsµÜµ½"
+
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: d¡·écscopef[^x[XÍÇÁ³êܹñŵ½"
+
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: cs_manage_matches Åv½IÈG[Å·"
+
+msgid ""
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
+msgstr ""
+"E571: ±ÌR}hͳøÅ·A²ßñȳ¢: TclCuð[hūܹñÅ"
+"µ½B"
+
+#, c-format
+msgid "E572: exit code %d"
+msgstr "E572: I¹R[h %d"
+
+#, c-format
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: ³øÈT[o[IDªgíêܵ½: %s"
+
+#, c-format
+msgid "E574: Unknown register type %d"
+msgstr "E574: ¢mÌWX^^ %d Å·"
+
+msgid "Illegal starting char"
+msgstr "s³È檶ŷ"
+
+msgid "Missing '>'"
+msgstr "'>' ª©Â©èܹñ"
+
+msgid "Illegal register name"
+msgstr "s³ÈWX^¼"
+
+msgid "E578: Not allowed to change text here"
+msgstr "E578: ±±ÅeLXgðÏX·é±ÆÍ³êܹñ"
+
+msgid "E579: :if nesting too deep"
+msgstr "E579: :if Ìüêqª[ܷ߬"
+
+msgid "E579: block nesting too deep"
+msgstr "E579: ubNÌüêqª[ܷ߬"
+
+msgid "E580: :endif without :if"
+msgstr "E580: :if ÌÈ¢ :endif ª èÜ·"
+
+msgid "E581: :else without :if"
+msgstr "E581: :if ÌÈ¢ :else ª èÜ·"
+
+msgid "E582: :elseif without :if"
+msgstr "E582: :if ÌÈ¢ :elseif ª èÜ·"
+
+msgid "E583: multiple :else"
+msgstr "E583: ¡Ì :else ª èÜ·"
+
+msgid "E584: :elseif after :else"
+msgstr "E584: :else ÌãÉ :elseif ª èÜ·"
+
+msgid "E585: :while/:for nesting too deep"
+msgstr "E585: :while â :for Ìüêqª[ܷ߬"
+
+msgid "E586: :continue without :while or :for"
+msgstr "E586: :while â :for ÌÈ¢ :continue ª èÜ·"
+
+msgid "E587: :break without :while or :for"
+msgstr "E587: :while â :for ÌÈ¢ :break ª èÜ·"
+
+msgid "E588: :endwhile without :while"
+msgstr "E588: :while ÌÈ¢ :endwhile ª èÜ·"
+
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor ÌÈ¢ :for ª èÜ·"
+
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' Æ 'patchmode' ª¯¶Å·"
+
+msgid "E590: A preview window already exists"
+msgstr "E590: vr
[EBhEªùɶݵܷ"
+
msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
msgstr "E591: 'winheight' Í 'winminheight' æè¬³Å«Ü¹ñ"
msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
msgstr "E592: 'winwidth' Í 'winminwidth' æè¬³Å«Ü¹ñ"
-msgid "E80: Error while writing"
-msgstr "E80: ÝÌG["
-
-msgid "E939: Positive count required"
-msgstr "E939: ³ÌJEgªKvÅ·"
-
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: XNvgÈOÅ<SID>ªgíêܵ½"
+#, c-format
+msgid "E593: Need at least %d lines"
+msgstr "E593: Åá %d ÌsªKvÅ·"
#, c-format
-msgid "E107: Missing parentheses: %s"
-msgstr "E107: JbR '(' ª èܹñ: %s"
+msgid "E594: Need at least %d columns"
+msgstr "E594: Åá %d ÌJªKvÅ·"
-msgid "E449: Invalid expression received"
-msgstr "E449: ³øÈ®ðó¯æèܵ½"
+msgid "E595: 'showbreak' contains unprintable or wide character"
+msgstr "E595: 'showbreak' Í\\¦Å«È¢¶©Ch¶ðÜñŢܷ"
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: ÌæªÛì³êÄ¢éÌÅAÏXūܹñ"
+msgid "E596: Invalid font(s)"
+msgstr "E596: ³øÈtHgÅ·"
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans ÍÇêpt@CðÏX·é±ÆðµÜ¹ñ"
+msgid "E597: can't select fontset"
+msgstr "E597: tHgZbgðIðūܹñ"
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: p^[ª 'maxmempattern' ÈãÌðgpµÜ·"
+msgid "E598: Invalid fontset"
+msgstr "E598: ³øÈtHgZbgÅ·"
-msgid "E749: empty buffer"
-msgstr "E749: obt@ªóÅ·"
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: 'imactivatekey' ÉÝè³ê½lª³øÅ·"
+
+msgid "E600: Missing :endtry"
+msgstr "E600: :endtry ª èܹñ"
+
+msgid "E601: :try nesting too deep"
+msgstr "E601: :try Ìüêqª[ܷ߬"
+
+msgid "E602: :endtry without :try"
+msgstr "E602: :try ÌÈ¢ :endtry Å·"
+
+msgid "E603: :catch without :try"
+msgstr "E603: :try ÌÈ¢ :catch ª èÜ·"
+
+msgid "E604: :catch after :finally"
+msgstr "E604: :finally ÌãÉ :catch ª èÜ·"
#, c-format
-msgid "E86: Buffer %ld does not exist"
-msgstr "E86: obt@ %ld Í èܹñ"
+msgid "E605: Exception not caught: %s"
+msgstr "E605: áOªß¨³êܹñŵ½: %s"
+
+msgid "E606: :finally without :try"
+msgstr "E606: :try ÌÈ¢ :finally ª èÜ·"
+
+msgid "E607: multiple :finally"
+msgstr "E607: ¡Ì :finally ª èÜ·"
+
+msgid "E608: Cannot :throw exceptions with 'Vim' prefix"
+msgstr "E608: 'Vim' ÅnÜéáOÍ :throw ūܹñ"
+
+#, c-format
+msgid "E609: Cscope error: %s"
+msgstr "E609: cscopeG[: %s"
+
+msgid "E610: No argument to delete"
+msgstr "E610: í·éøª èܹñ"
+
+msgid "E611: Using a Special as a Number"
+msgstr "E611: Áêl^ðlƵĵÁĢܷ"
+
+msgid "E612: Too many signs defined"
+msgstr "E612: signÌè`ª½ß¬Ü·"
+
+#, c-format
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: ¢mÌv^IvVÅ·: %s"
+
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: »ÝÌfBNgÉßêܹñ"
+
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: »ÝÌfBNgðæ¾Å«Ü¹ñ"
+
+#, c-format
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: tHg %s ðæ¾Å«Ü¹ñ"
+
+msgid "E617: Cannot be changed in the GTK GUI"
+msgstr "E617: GTK GUIÅÍÏXūܹñ"
+
+#, c-format
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: t@C \"%s\" Í PostScript \\[Xt@CÅÍ èܹñ"
+
+#, c-format
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: t@C \"%s\" ÍεĢȢ PostScript \\[Xt@CÅ·"
+
+#, c-format
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: óüGR[h \"%s\" ÖϷūܹñ"
+
+#, c-format
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: \\[Xt@C \"%s\" Ío[WªÙÈèÜ·"
+
+msgid "E622: Could not fork for cscope"
+msgstr "E622: cscopeÌN®õ(fork)ɸsµÜµ½"
+
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: cscopevZXðN®Å«Ü¹ñŵ½"
+
+#, c-format
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: t@C \"%s\" ðJ¯Ü¹ñ"
+
+#, c-format
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: cscopef[^x[X: %s ðJ±ÆªÅ«Ü¹ñ"
+
+msgid "E626: cannot get cscope database information"
+msgstr "E626: cscopef[^x[XÌîñðæ¾Å«Ü¹ñ"
+
+#, c-format
+msgid "E630: %s(): write while not connected"
+msgstr "E630: %s(): ñÚ±óÔÅÝܵ½"
+
+#, c-format
+msgid "E631: %s(): write failed"
+msgstr "E631: %s(): ÝɸsµÜµ½"
+
+#, c-format
+msgid "E654: missing delimiter after search pattern: %s"
+msgstr "E654: õp^[Ì ÆÉæØèª èܹñ: %s"
+
+msgid "E655: Too many symbolic links (cycle?)"
+msgstr "E655: V{bNNª½ß¬Ü· (zµĢéÂ\\«ª èÜ·)"
+
+msgid "NetBeans disallows writes of unmodified buffers"
+msgstr "NetBeansÍ¢ÏXÌobt@ðã·é±ÆÍµĢܹñ"
+
+msgid "Partial writes disallowed for NetBeans buffers"
+msgstr "NetBeansobt@Ìêð«o·±ÆÍūܹñ"
+
+#, c-format
+msgid "E658: NetBeans connection lost for buffer %d"
+msgstr "E658: obt@ %d Ì NetBeans Ú±ª¸íêܵ½"
+
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python ðÄAIÉÀs·é±ÆÍūܹñ"
+
+#, c-format
+msgid "E661: Sorry, no '%s' help for %s"
+msgstr "E661: cOÅ·ª '%s' Ìwvª %s ÉÍ èܹñ"
+
+msgid "E662: At start of changelist"
+msgstr "E662: ÏXXgÌæª"
+
+msgid "E663: At end of changelist"
+msgstr "E663: ÏXXgÌö"
+
+msgid "E664: changelist is empty"
+msgstr "E664: ÏXXgªóÅ·"
+
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: LøÈtHgª©Â©çÈ¢ÌÅAGUIðJnūܹñ"
+
+#, c-format
+msgid "E666: compiler not supported: %s"
+msgstr "E666: »ÌRpCÉÍεĢܹñ: %s"
+
+msgid "E667: Fsync failed"
+msgstr "E667: fsync ɸsµÜµ½"
+
+#, c-format
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: NetBeansÌÚ±îñt@CÌANZX[hÉâèª èÜ·: \"%s\""
+
+msgid "E669: Unprintable character in group name"
+msgstr "E669: O[v¼ÉóüsÂ\\ȶª èÜ·"
+
+#, c-format
+msgid "E670: Mix of help file encodings within a language: %s"
+msgstr "E670: 1Â̾êÌwvt@CÉ¡ÌGR[hª¬ÝµÄ¢Ü·: %s"
+
+#, c-format
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: ^Cgª \"%s\" ÌEBhEͩ©èܹñ"
+
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: MDIAvÌÅÍEBhEðJ¯Ü¹ñ"
+
+msgid "E673: Incompatible multi-byte encoding and character set"
+msgstr "E673: Ý·«Ì³¢}`oCgGR[fBOƶZbgÅ·"
+
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr ""
+"E674: }`oCgGR[fBOÅÍ printmbcharset ðóÉūܹñB"
+
+msgid "E675: No default font specified for multi-byte printing."
+msgstr ""
+"E675: }`oCg¶ðóü·é½ßÌftHgtHgªwè³êĢܹ"
+"ñB"
+
+msgid "E676: No matching autocommands for acwrite buffer"
+msgstr "E676: acwriteobt@ÌY·é©®R}hͶݵܹñ"
+
+msgid "E677: Error writing temp file"
+msgstr "E677: êt@CÝÉG[ª¶µÜµ½"
+
+#, c-format
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: %s%%[dxouU] ÌãÉs³È¶ª èܵ½"
+
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: syncolor.vim ÌÄAÄoµðoµÜµ½"
+
+#, c-format
+msgid "E680: <buffer=%d>: invalid buffer number"
+msgstr "E680: <obt@=%d>: ³øÈobt@ÔÅ·"
+
+msgid "E681: Buffer is not loaded"
+msgstr "E681: obt@ÍÇÜêܹñŵ½"
msgid "E682: Invalid search pattern or delimiter"
msgstr "E682: õp^[©æØèLªs³Å·"
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: ¯¶¼OÌt@Cª¼Ìobt@ÅÇÜêĢܷ"
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: t@C¼ª³¢©³øÈp^[Å·"
+
+#, c-format
+msgid "E684: list index out of range: %ld"
+msgstr "E684: XgÌCfbNXªÍÍOÅ·: %ld"
+
+#, c-format
+msgid "E685: Internal error: %s"
+msgstr "E685: àG[Å·: %s"
+
+#, c-format
+msgid "E686: Argument of %s must be a List"
+msgstr "E686: %s ÌøÍXg^ÅȯêÎÈèܹñ"
+
+msgid "E687: Less targets than List items"
+msgstr "E687: ^[QbgªXg^àÌvfæèàȢŷ"
+
+msgid "E688: More targets than List items"
+msgstr "E688: ^[QbgªXg^àÌvfæèརŷ"
+
+msgid "E689: Can only index a List, Dictionary or Blob"
+msgstr "E689: Xg^A«^ABlob^ÈOÍCfbNXwèūܹñ"
+
+msgid "E690: Missing \"in\" after :for"
+msgstr "E690: :for ÌãÉ \"in\" ª èܹñ"
+
+msgid "E691: Can only compare List with List"
+msgstr "E691: Xg^ÍXg^Ƶ©ärūܹñ"
+
+msgid "E692: Invalid operation for List"
+msgstr "E692: Xg^ÉͳøÈìÅ·"
+
+msgid "E694: Invalid operation for Funcrefs"
+msgstr "E694: ÖQÆ^ÉͳøÈìÅ·"
+
+msgid "E695: Cannot index a Funcref"
+msgstr "E695: ÖQÆ^ÍCfbNXūܹñ"
+
+#, c-format
+msgid "E696: Missing comma in List: %s"
+msgstr "E696: Xg^ÉR}ª èܹñ: %s"
+
+#, c-format
+msgid "E697: Missing end of List ']': %s"
+msgstr "E697: Xg^ÌÅãÉ ']' ª èܹñ: %s"
+
+msgid "E698: variable nested too deep for making a copy"
+msgstr "E698: Rs[ðæéÉÍÏÌüêqª[ܷ߬"
+
+msgid "E699: Too many arguments"
+msgstr "E699: øª½ß¬Ü·"
+
+#, c-format
+msgid "E700: Unknown function: %s"
+msgstr "E700: ¢mÌÖÅ·: %s"
+
+msgid "E701: Invalid type for len()"
+msgstr "E701: len() ÉͳøÈ^Å·"
+
+msgid "E702: Sort compare function failed"
+msgstr "E702: \\[gÌärÖª¸sµÜµ½"
+
+msgid "E703: Using a Funcref as a Number"
+msgstr "E703: ÖQÆ^ðlƵĵÁĢܷ"
+
+#, c-format
+msgid "E704: Funcref variable name must start with a capital: %s"
+msgstr "E704: ÖQÆ^ϼÍå¶ÅnÜçȯêÎÈèܹñ: %s"
+
+#, c-format
+msgid "E705: Variable name conflicts with existing function: %s"
+msgstr "E705: ϼªù¶ÌÖ¼ÆÕ˵ܷ: %s"
+
+#, c-format
+msgid "E707: Function name conflicts with variable: %s"
+msgstr "E707: Ö¼ªÏ¼ÆÕ˵ܷ: %s"
+
+msgid "E708: [:] must come last"
+msgstr "E708: [:] ÍÅãÅȯê΢¯Ü¹ñ"
+
+msgid "E709: [:] requires a List or Blob value"
+msgstr "E709: [:] ÉÍXg^©Blob^ÌlªKvÅ·"
+
+msgid "E710: List value has more items than targets"
+msgstr "E710: Xg^ÏÉ^[Qbgæèརvfª èÜ·"
+
+msgid "E711: List value does not have enough items"
+msgstr "E711: Xg^ÏÉ\\ªÈÌvfª èܹñ"
+
+#, c-format
+msgid "E712: Argument of %s must be a List or Dictionary"
+msgstr "E712: %s ÌøÍXg^ܽͫ^ÅȯêÎÈèܹñ"
+
+msgid "E713: Cannot use empty key for Dictionary"
+msgstr "E713: «^ÉóÌL[ðg¤±ÆÍūܹñ"
+
+msgid "E714: List required"
+msgstr "E714: Xg^ªKvÅ·"
+
+msgid "E715: Dictionary required"
+msgstr "E715: «^ªKvÅ·"
+
+#, c-format
+msgid "E716: Key not present in Dictionary: \"%s\""
+msgstr "E716: «^ÉL[ª¶ÝµÜ¹ñ: \"%s\""
+
+msgid "E717: Dictionary entry already exists"
+msgstr "E717: «^àÉGgªùɶݵܷ"
+
+msgid "E718: Funcref required"
+msgstr "E718: ÖQÆ^ªv³êÜ·"
+
+msgid "E719: Cannot slice a Dictionary"
+msgstr "E719: «^ÍXCXūܹñ"
+
+#, c-format
+msgid "E720: Missing colon in Dictionary: %s"
+msgstr "E720: «^ÉRª èܹñ: %s"
+
+#, c-format
+msgid "E721: Duplicate key in Dictionary: \"%s\""
+msgstr "E721: «^Éd¡L[ª èÜ·: \"%s\""
+
+#, c-format
+msgid "E722: Missing comma in Dictionary: %s"
+msgstr "E722: «^ÉR}ª èܹñ: %s"
+
+#, c-format
+msgid "E723: Missing end of Dictionary '}': %s"
+msgstr "E723: «^ÌÅãÉ '}' ª èܹñ: %s"
+
+msgid "E724: variable nested too deep for displaying"
+msgstr "E724: \\¦·éÉÍÏÌüêqª[ܷ߬"
+
+#, c-format
+msgid "E725: Calling dict function without Dictionary: %s"
+msgstr "E725: «pÖªÄÎêܵ½ª«ª èܹñ: %s"
+
+msgid "E726: Stride is zero"
+msgstr "E726: XgCh(OiÊ)ª 0 Å·"
+
+msgid "E727: Start past end"
+msgstr "E727: JnÊuªI¹Êuðz¦Üµ½"
+
+msgid "E728: Using a Dictionary as a Number"
+msgstr "E728: «^ðlƵĵÁĢܷ"
+
+msgid "E729: Using a Funcref as a String"
+msgstr "E729: ÖQÆ^ð¶ñƵĵÁĢܷ"
+
+msgid "E730: Using a List as a String"
+msgstr "E730: Xg^ð¶ñƵĵÁĢܷ"
+
+msgid "E731: Using a Dictionary as a String"
+msgstr "E731: «^ð¶ñƵĵÁĢܷ"
+
+msgid "E732: Using :endfor with :while"
+msgstr "E732: :endfor ð :while ÆgÝí¹Ä¢Ü·"
+
+msgid "E733: Using :endwhile with :for"
+msgstr "E733: :endwhile ð :for ÆgÝí¹Ä¢Ü·"
+
+#, c-format
+msgid "E734: Wrong variable type for %s="
+msgstr "E734: ÙÈÁ½^ÌÏÅ· %s="
+
+msgid "E735: Can only compare Dictionary with Dictionary"
+msgstr "E735: «^Í«^Ƶ©ärūܹñ"
+
+msgid "E736: Invalid operation for Dictionary"
+msgstr "E736: «^ÉͳøÈìÅ·"
+
+#, c-format
+msgid "E737: Key already exists: %s"
+msgstr "E737: L[Íùɶݵܷ: %s"
+
+#, c-format
+msgid "E738: Can't list variables for %s"
+msgstr "E738: %s Ìlðê\\¦Å«Ü¹ñ"
+
+#, c-format
+msgid "E739: Cannot create directory: %s"
+msgstr "E739: fBNgðì¬Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E740: Too many arguments for function %s"
+msgstr "E740: ÖÌøª½ß¬Ü·: %s"
+
+msgid "E741: Value is locked"
+msgstr "E741: lªbN³êĢܷ"
+
+#, c-format
+msgid "E741: Value is locked: %s"
+msgstr "E741: lªbN³êĢܷ: %s"
+
+msgid "E742: Cannot change value"
+msgstr "E742: lðÏXūܹñ"
+
+#, c-format
+msgid "E742: Cannot change value of %s"
+msgstr "E742: %s ÌlðÏXūܹñ"
+
+msgid "E743: variable nested too deep for (un)lock"
+msgstr "E743: (A)bN·éÉÍÏÌüêqª[ܷ߬"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans ÍÇêpt@CðÏX·é±ÆðµÜ¹ñ"
+
+msgid "E745: Using a List as a Number"
+msgstr "E745: Xg^ðlƵĵÁĢܷ"
+
+#, c-format
+msgid "E746: Function name does not match script file name: %s"
+msgstr "E746: Ö¼ªXNvgÌt@C¼ÆêvµÜ¹ñ: %s"
+
+msgid "E747: Cannot change directory, buffer is modified (add ! to override)"
+msgstr ""
+"E747: obt@ªC³³êÄ¢éÌÅAfBNgðÏXūܹñ (! ðÇÁÅ"
+"ã)"
+
+msgid "E748: No previously used register"
+msgstr "E748: ܾWX^ðgpµÄ¢Ü¹ñ"
+
+msgid "E749: empty buffer"
+msgstr "E749: obt@ªóÅ·"
+
+msgid "E750: First use \":profile start {fname}\""
+msgstr "E750: ßÉ \":profile start {fname}\" ðÀsµÄ¾³¢"
+
+msgid "E751: Output file name must not have region name"
+msgstr "E751: oÍt@C¼ÉÍÍͼðÜßçêܹñ"
+
+msgid "E752: No previous spell replacement"
+msgstr "E752: Xyu·ªÜ¾Às³êĢܹñ"
+
+#, c-format
+msgid "E753: Not found: %s"
+msgstr "E753: ©Â©èܹñ: %s"
+
+#, c-format
+msgid "E754: Only up to %d regions supported"
+msgstr "E754: ÍÍÍ %d ÂÜŵ©T|[g³êĢܹñ"
+
+#, c-format
+msgid "E755: Invalid region in %s"
+msgstr "E755: ³øÈÍÍÅ·: %s"
+
+msgid "E756: Spell checking is not possible"
+msgstr "E756: Xy`FbNÍgpūܹñ"
+
+msgid "E757: This does not look like a spell file"
+msgstr "E757: Xyt@CÅÍÈ¢æ¤Å·"
+
+msgid "E758: Truncated spell file"
+msgstr "E758: Xyt@CªØæçêĢ鿤ŷ"
+
+msgid "E759: Format error in spell file"
+msgstr "E759: Xyt@CÌtH[}bgG[Å·"
+
+#, c-format
+msgid "E760: No word count in %s"
+msgstr "E760: %s ÉÍPêª èܹñ"
+
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr ""
+"E761: affixt@CÌ FOL, LOW àµÍ UPP ÌtH[}bgÉG[ª èÜ·"
+
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: FOL, LOW àµÍ UPP ̶ªÍÍOÅ·"
+
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: Pê̶ªXyt@CÆÙÈèÜ·"
#, c-format
msgid "E764: Option '%s' is not set"
msgstr "E764: IvV '%s' ÍÝè³êĢܹñ"
+#, c-format
+msgid "E765: 'spellfile' does not have %d entries"
+msgstr "E765: 'spellfile' ÉÍ %d ÂÌGgÍ èܹñ"
+
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: printf() Ìøªs\\ªÅ·"
+
+msgid "E767: Too many arguments for printf()"
+msgstr "E767: printf() Ìøª½ß¬Ü·"
+
+#, c-format
+msgid "E768: Swap file exists: %s (:silent! overrides)"
+msgstr "E768: Xbvt@Cª¶ÝµÜ·: %s (:silent! ðÇÁÅã)"
+
+#, c-format
+msgid "E769: Missing ] after %s["
+msgstr "E769: %s[ ÌãÉ ] ª èܹñ"
+
+msgid "E770: Unsupported section in spell file"
+msgstr "E770: Xyt@CÉT|[gµÄ¢È¢ZNVª èÜ·"
+
+msgid "E771: Old spell file, needs to be updated"
+msgstr "E771: âXyt@CÈÌÅAAbvf[gµÄ¾³¢"
+
+msgid "E772: Spell file is for newer version of Vim"
+msgstr "E772: æèVµ¢o[WÌ Vim pÌXyt@CÅ·"
+
+#, c-format
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: \"%s\" ÌV{bNNª[vÉÈÁĢܷ"
+
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: 'operatorfunc' IvVªóÅ·"
+
+msgid "E775: Eval feature not available"
+msgstr "E775: ®]¿@\\ª³øÉÈÁĢܷ"
+
+msgid "E776: No location list"
+msgstr "E776: P[VXgÍ èܹñ"
+
+msgid "E777: String or List expected"
+msgstr "E777: ¶ñ©XgªKvÅ·"
+
+#, c-format
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: .sug t@CÅÍÈ¢æ¤Å·: %s"
+
+#, c-format
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: â .sug t@CÈÌÅAAbvf[gµÄ¾³¢: %s"
+
+#, c-format
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: æèVµ¢o[WÌ Vim pÌ .sug t@CÅ·: %s"
+
+#, c-format
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: .sug t@Cª .spl t@CÆêvµÜ¹ñ: %s"
+
+#, c-format
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: .sug t@CÌÇÝÉG[ª¶µÜµ½: %s"
+
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: MAP GgÉd¡¶ª¶ÝµÜ·"
+
+msgid "E784: Cannot close last tab page"
+msgstr "E784: ÅãÌ^uy[WðÂ¶é±ÆÍūܹñ"
+
+msgid "E785: complete() can only be used in Insert mode"
+msgstr "E785: complete() Í}ü[hŵ©pūܹñ"
+
+msgid "E786: Range not allowed"
+msgstr "E786: ÍÍwèͳêĢܹñ"
+
+msgid "E787: Buffer changed unexpectedly"
+msgstr "E787: \\ú¹¸obt@ªÏX³êܵ½"
+
+msgid "E788: Not allowed to edit another buffer now"
+msgstr "E788: »ÝͼÌobt@ðÒW·é±ÆÍ³êܹñ"
+
+#, c-format
+msgid "E789: Missing ']': %s"
+msgstr "E789: ']' ª èܹñ: %s"
+
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undo ̼ãÉ undojoin Íūܹñ"
+
+msgid "E791: Empty keymap entry"
+msgstr "E791: óÌL[}bvGg"
+
+msgid "E792: Empty menu name"
+msgstr "E792: j
[¼ªóÅ·"
+
+msgid "E793: No other buffer in diff mode is modifiable"
+msgstr "E793: ·ª[hÅ é¼Ìobt@ÍÏXūܹñ"
+
+msgid "E794: Cannot set variable in the sandbox"
+msgstr "E794: Th{bNXÅÍÏÉlðÝèūܹñ"
+
+#, c-format
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr "E794: Th{bNXÅÍÏ \"%s\" ÉlðÝèūܹñ"
+
+msgid "E795: Cannot delete variable"
+msgstr "E795: Ïðíūܹñ"
+
+#, c-format
+msgid "E795: Cannot delete variable %s"
+msgstr "E795: Ï %s ðíūܹñ"
+
+msgid "writing to device disabled with 'opendevice' option"
+msgstr "'opendevice' IvVÉæèfoCXÖÌÝÍūܹñ"
+
+msgid "E797: SpellFileMissing autocommand deleted buffer"
+msgstr "E797: SpellFileMissing ©®R}hªobt@ðíµÜµ½"
+
+#, c-format
+msgid "E798: ID is reserved for \":match\": %d"
+msgstr "E798: ID Í \":match\" ̽ßÉ\\ñ³êĢܷ: %d"
+
+#, c-format
+msgid "E799: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E799: ³øÈ ID: %d (1 ÈãÅȯêÎÈèܹñ)"
+
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: ArAêÍgpsÂ\\Å·: RpCɳøÉ³êĢܷ\n"
+
+#, c-format
+msgid "E801: ID already taken: %d"
+msgstr "E801: ID ÍùÉpÅ·: %d"
+
+#, c-format
+msgid "E802: Invalid ID: %d (must be greater than or equal to 1)"
+msgstr "E802: ³øÈ ID: %d (1 ÈãÅȯêÎÈèܹñ)"
+
+#, c-format
+msgid "E803: ID not found: %d"
+msgstr "E803: ID Í èܹñ: %d"
+
+msgid "E804: Cannot use '%' with Float"
+msgstr "E804: '%' ð®¬_ÆgÝí¹ÄÍg¦Ü¹ñ"
+
+msgid "E805: Using a Float as a Number"
+msgstr "E805: ®¬_ðlƵĵÁĢܷ"
+
+msgid "E806: using Float as a String"
+msgstr "E806: ®¬_ð¶ñƵĵÁĢܷ"
+
+msgid "E807: Expected Float argument for printf()"
+msgstr "E807: printf() ÌøÉÍ®¬_ªúÒ³êĢܷ"
+
+msgid "E808: Number or Float required"
+msgstr "E808: l©®¬_ªKvÅ·"
+
+msgid "E809: #< is not available without the +eval feature"
+msgstr "E809: #< Í +eval @\\ª³¢Æpūܹñ"
+
+msgid "E810: Cannot read or write temp files"
+msgstr "E810: êt@CÌÇÝàµÍݪūܹñ"
+
+msgid "E811: Not allowed to change buffer information now"
+msgstr "E811: »ÝÍobt@îñðÏX·é±ÆÍ³êܹñ"
+
+msgid "E812: Autocommands changed buffer or buffer name"
+msgstr "E812: ©®R}hªobt@©obt@¼ðÏXµÜµ½"
+
+msgid "E813: Cannot close autocmd or popup window"
+msgstr "E813: autocmdEBhEܽÍ|bvAbvEBhEͶçêܹñ"
+
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr "E814: autocmdEBhEµ©cçÈ¢½ßAEBhEͶçêܹñ"
+
+msgid ""
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr "E815: ±ÌR}hͳøÅ·BMzScheme Cuð[hūܹñB"
+
+msgid "E816: Cannot read patch output"
+msgstr "E816: patchÌoÍðÇßܹñ"
+
+msgid "E817: Blowfish big/little endian use wrong"
+msgstr "E817: BlowfishÃÌrbO/gGfBAªÔáÁĢܷ"
+
+msgid "E818: sha256 test failed"
+msgstr "E818: sha256ÌeXgɸsµÜµ½"
+
+msgid "E819: Blowfish test failed"
+msgstr "E819: BlowfishÃÌeXgɸsµÜµ½"
+
+msgid "E820: sizeof(uint32_t) != 4"
+msgstr "E820: sizeof(uint32_t) != 4"
+
+msgid "E821: File is encrypted with unknown method"
+msgstr "E821: t@Cª¢mÌû@Åû³êĢܷ"
+
+#, c-format
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: AhDt@CðÇÝpƵÄJ¯Ü¹ñ: %s"
+
+#, c-format
+msgid "E823: Not an undo file: %s"
+msgstr "E823: AhDt@CÅÍ èܹñ: %s"
+
+#, c-format
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: Ý·«Ì³¢AhDt@CÅ·: %s"
+
+#, c-format
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: AhDt@CªóêĢܷ (%s): %s"
+
+#, c-format
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: û³ê½AhDt@CÌðÇɸsµÜµ½: %s"
+
+#, c-format
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: AhDt@CªÃ»³êĢܷ: %s"
+
+#, c-format
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: ÝpÉAhDt@CðJ¯Ü¹ñ: %s"
+
+#, c-format
+msgid "E829: write error in undo file: %s"
+msgstr "E829: AhDt@CÌÝG[Å·: %s"
+
+#, c-format
+msgid "E830: Undo number %ld not found"
+msgstr "E830: AhDÔ %ld ͩ©èܹñ"
+
+msgid "E831: bf_key_init() called with empty password"
+msgstr "E831: bf_key_init() ªópX[hÅÄo³êܵ½"
+
+#, c-format
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: ñût@CªÃ»³ê½AhDt@CðgÁÄÜ·: %s"
+
+#, c-format
+msgid ""
+"E833: %s is encrypted and this version of Vim does not support encryption"
+msgstr ""
+"E833: %s ͱÌo[WÌVimÅT|[gµÄ¢È¢`®Åû³êĢܷ"
+
+msgid "E834: Conflicts with value of 'listchars'"
+msgstr "E834: 'listchars'Ìlɵª èÜ·"
+
+msgid "E835: Conflicts with value of 'fillchars'"
+msgstr "E835: 'fillchars'Ìlɵª èÜ·"
+
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: ±ÌVimÅÍ :py3 ðgÁ½ãÉ :python ðg¦Ü¹ñ"
+
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: ±ÌVimÅÍ :python ðgÁ½ãÉ :py3 ðg¦Ü¹ñ"
+
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: NetBeansͱÌGUIÉÍεĢܹñ"
+
+msgid "E840: Completion function deleted text"
+msgstr "E840: â®ÖªeLXgðíµÜµ½"
+
+msgid "E841: Reserved name, cannot be used for user defined command"
+msgstr "E841: \\ñ¼ÈÌÅA[U[è`R}hÉpūܹñ"
+
+msgid "E842: no line number to use for \"<slnum>\""
+msgstr "E842: \"<slnum>\"ðu«·¦ésÔª èܹñ"
+
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: Xbvt@CÌÃðXVÉG[ª¶µÜµ½"
+
+msgid "E844: invalid cchar value"
+msgstr "E844: ³øÈccharÌlÅ·"
+
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: ª«èÈ¢ÌÅAPêXgÍs®SÅ·"
+
+msgid "E846: Key code not set"
+msgstr "E846: L[R[hªÝè³êĢܹñ"
+
+msgid "E847: Too many syntax includes"
+msgstr "E847: \\¶ÌæÝ(include)ª½ß¬Ü·"
+
+msgid "E848: Too many syntax clusters"
+msgstr "E848: \\¶NX^ª½ß¬Ü·"
+
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: nCCgÆ\\¶O[vª½ß¬Ü·"
+
msgid "E850: Invalid register name"
msgstr "E850: ³øÈWX^¼Å·"
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: GUIpÌvZXÌN®É¸sµÜµ½"
+
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: qvZXªGUIÌN®É¸sµÜµ½"
+
+#, c-format
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: ø¼ªd¡µÄ¢Ü·: %s"
+
+msgid "E854: path too long for completion"
+msgstr "E854: pXª·ß¬Äâ®Å«Ü¹ñ"
+
+msgid "E855: Autocommands caused command to abort"
+msgstr "E855: ©®R}hªR}hÌâ~ðø«N±µÜµ½"
+
+msgid ""
+"E856: \"assert_fails()\" second argument must be a string or a list with one "
+"or two strings"
+msgstr ""
+"E856: \"assert_fails()\" Ìæ2øÍ¶ñܽÍ1©2Â̶ñÌXgÅÈ"
+"¯êÎÈèܹñ"
+
+#, c-format
+msgid "E857: Dictionary key \"%s\" required"
+msgstr "E857: «ÌL[ \"%s\" ªKvÅ·"
+
+msgid "E858: Eval did not return a valid python object"
+msgstr "E858: ®]¿ÍLøÈpythonIuWFNgðԵܹñŵ½"
+
+msgid "E859: Failed to convert returned python object to a Vim value"
+msgstr "E859: Ô³ê½pythonIuWFNgðVimÌlÉϷūܹñŵ½"
+
+msgid "E860: Need 'id' and 'type' with 'both'"
+msgstr "E860: 'both' ÉÍ 'id' Æ 'type' ̼ûªKvÅ·"
+
+msgid "E861: Cannot open a second popup with a terminal"
+msgstr "E861: 2ÂÚÌ[t«|bvAbvðJ±ÆÍūܹñ"
+
+msgid "E862: Cannot use g: here"
+msgstr "E862: ±±ÅÍ g: Íg¦Ü¹ñ"
+
+msgid "E863: Not allowed for a terminal in a popup window"
+msgstr "E863: [Í|bvAbvEBhEÅͳêܹñ"
+
+msgid ""
+"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be "
+"used"
+msgstr ""
+"E864: \\%#= ÉÍ 0, 1 àµÍ 2 Ìݪ±¯çêÜ·B³K\\»GWÍ©®I"
+"ð³êÜ·"
+
+msgid "E865: (NFA) Regexp end encountered prematurely"
+msgstr "E865: (NFA) úÒæè³K\\»ÌI[ÉBµÜµ½"
+
+#, c-format
+msgid "E866: (NFA regexp) Misplaced %c"
+msgstr "E866: (NFA ³K\\») ÊuªëÁĢܷ: %c"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\z%c'"
+msgstr "E867: (NFA ³K\\») ¢mÌIy[^Å·: '\\z%c'"
+
+#, c-format
+msgid "E867: (NFA regexp) Unknown operator '\\%%%c'"
+msgstr "E867: (NFA ³K\\») ¢mÌIy[^Å·: '\\%%%c'"
+
+msgid "E868: Error building NFA with equivalence class!"
+msgstr "E868: ¿NXðÜÞNFA\\zɸsµÜµ½!"
+
+#, c-format
+msgid "E869: (NFA regexp) Unknown operator '\\@%c'"
+msgstr "E869: (NFA ³K\\») ¢mÌIy[^Å·: '\\@%c'"
+
+msgid "E870: (NFA regexp) Error reading repetition limits"
+msgstr "E870: (NFA ³K\\») JèԵ̧ÀñðÇÝÉG["
+
+msgid "E871: (NFA regexp) Can't have a multi follow a multi"
+msgstr "E871: (NFA ³K\\») JèÔµ ÌãÉ JèÔµ Íūܹñ"
+
+msgid "E872: (NFA regexp) Too many '('"
+msgstr "E872: (NFA ³K\\») '(' ª½ß¬Ü·"
+
+msgid "E873: (NFA regexp) proper termination error"
+msgstr "E873: (NFA ³K\\») I[Lª èܹñ"
+
+msgid "E874: (NFA regexp) Could not pop the stack!"
+msgstr "E874: (NFA ³K\\») X^bNð|bvūܹñ!"
+
+msgid ""
+"E875: (NFA regexp) (While converting from postfix to NFA), too many states "
+"left on stack"
+msgstr ""
+"E875: (NFA ³K\\») (ãu¶ñðNFAÉÏ·É) X^bNÉc³ê½Xe[gª"
+"½ß¬Ü·"
+
+msgid "E876: (NFA regexp) Not enough space to store the whole NFA"
+msgstr "E876: (NFA ³K\\») NFASÌðÛ¶·éÉÍó«Xy[Xª«èܹñ"
+
+#, c-format
+msgid "E877: (NFA regexp) Invalid character class: %d"
+msgstr "E877: (NFA ³K\\») ³øÈ¶NXÅ·: %d"
+
+msgid "E878: (NFA regexp) Could not allocate memory for branch traversal!"
+msgstr ""
+"E878: (NFA ³K\\») »Ý¡fÌu`É\\ªÈðèÄçêܹñ!"
+
+msgid "E879: (NFA regexp) Too many \\z("
+msgstr "E879: (NFA ³K\\») \\z( ª½ß¬Ü·"
+
+msgid "E880: Can't handle SystemExit of python exception in vim"
+msgstr "E880: vimÅpythonÌSystemExitáO𵤱ƪūܹñ"
+
+msgid "E881: Line count changed unexpectedly"
+msgstr "E881: \\ú¹¸sJEgªÏíèܵ½"
+
+msgid "E882: Uniq compare function failed"
+msgstr "E882: Uniq ÌärÖª¸sµÜµ½"
+
+msgid ""
+"E883: search pattern and expression register may not contain two or more "
+"lines"
+msgstr "E883: õp^[Æ®WX^ÉÍ2sÈãðÜßçêܹñ"
+
+#, c-format
+msgid "E884: Function name cannot contain a colon: %s"
+msgstr "E884: Ö¼ÉÍRÍÜßçêܹñ: %s"
+
+#, c-format
+msgid "E885: Not possible to change sign %s"
+msgstr "E885: ÏXūȢ sign Å·: %s"
+
+#, c-format
+msgid "E886: Can't rename viminfo file to %s!"
+msgstr "E886: viminfot@Cð %s Ö¼OÏXūܹñ!"
+
+msgid ""
+"E887: Sorry, this command is disabled, the Python's site module could not be "
+"loaded."
+msgstr ""
+"E887: ±ÌR}hͳøÅ·A²ßñȳ¢BPython Ì site W
[ð[h"
+"ūܹñŵ½B"
+
+#, c-format
+msgid "E888: (NFA regexp) cannot repeat %s"
+msgstr "E888: (NFA ³K\\») JèԹܹñ %s"
+
+msgid "E889: Number required"
+msgstr "E889: lªKvÅ·"
+
+#, c-format
+msgid "E890: trailing char after ']': %s]%s"
+msgstr "E890: ']' ÌãëÉ]ªÈ¶ª èÜ·: %s]%s"
+
+msgid "E891: Using a Funcref as a Float"
+msgstr "E891: ÖQÆ^ð®¬_ƵĵÁĢܷ"
+
+msgid "E892: Using a String as a Float"
+msgstr "E892: ¶ñð®¬_ƵĵÁĢܷ"
+
+msgid "E893: Using a List as a Float"
+msgstr "E893: Xg^ð®¬_ƵĵÁĢܷ"
+
+msgid "E894: Using a Dictionary as a Float"
+msgstr "E894: «^ð®¬_ƵĵÁĢܷ"
+
+msgid ""
+"E895: Sorry, this command is disabled, the MzScheme's racket/base module "
+"could not be loaded."
+msgstr ""
+"E895: ±ÌR}hͳøÅ·A²ßñȳ¢BMzScheme Ì racket/base W
["
+"ª[hūܹñŵ½B"
+
+#, c-format
+msgid "E896: Argument of %s must be a List, Dictionary or Blob"
+msgstr "E896: %s ÌøÍXg^A«^ܽÍBlob^ÅȯêÎÈèܹñ"
+
+msgid "E897: List or Blob required"
+msgstr "E897: Xg^ܽÍBlob^ªKvÅ·"
+
+msgid "E898: socket() in channel_connect()"
+msgstr "E898: channel_connect() àÌ socket() ª¸sµÜµ½"
+
+#, c-format
+msgid "E899: Argument of %s must be a List or Blob"
+msgstr "E899: %s ÌøÍXg^ܽÍBlob^ÅȯêÎÈèܹñ"
+
+msgid "E900: maxdepth must be non-negative number"
+msgstr "E900: maxdepth ÍñÅȯêÎÈèܹñ"
+
+#, c-format
+msgid "E901: getaddrinfo() in channel_open(): %s"
+msgstr "E901: channel_open() àÌ getaddrinfo(): %s"
+
+msgid "E901: gethostbyname() in channel_open()"
+msgstr "E901: channel_open() àÌ gethostbyname() ª¸sµÜµ½"
+
+msgid "E902: Cannot connect to port"
+msgstr "E902: |[gÉڱūܹñ"
+
+msgid "E903: received command with non-string argument"
+msgstr "E903: ñ¶ñÌøÌR}hðóMµÜµ½"
+
+msgid "E904: last argument for expr/call must be a number"
+msgstr "E904: expr/call ÌÅãÌøÍÅȯêÎÈèܹñ"
+
+msgid "E904: third argument for call must be a list"
+msgstr "E904: call Ì3ÔÚÌøÍXg^ÅȯêÎÈèܹñ"
+
+#, c-format
+msgid "E905: received unknown command: %s"
+msgstr "E905: ¢mÌR}hðóMµÜµ½: %s"
+
+msgid "E906: not an open channel"
+msgstr "E906: J¢Ä¢È¢`lÅ·"
+
+msgid "E907: Using a special value as a Float"
+msgstr "E907: Áêlð®¬_ƵĵÁĢܷ"
+
+#, c-format
+msgid "E908: using an invalid value as a String: %s"
+msgstr "E908: ³øÈlð¶ñƵĵÁĢܷ: %s"
+
+msgid "E909: Cannot index a special variable"
+msgstr "E909: ÁêÏÍCfbNXūܹñ"
+
+msgid "E910: Using a Job as a Number"
+msgstr "E910: WuðlƵĵÁĢܷ"
+
+msgid "E911: Using a Job as a Float"
+msgstr "E911: Wuð®¬_ƵĵÁĢܷ"
+
+msgid "E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"
+msgstr ""
+"E912: raw â nl [hÌ`lÉ ch_evalexpr()/ch_sendexpr() Íg¦Ü¹ñ"
+
+msgid "E913: Using a Channel as a Number"
+msgstr "E913: `lðlƵĵÁĢܷ"
+
+msgid "E914: Using a Channel as a Float"
+msgstr "E914: `lð®¬_ƵĵÁĢܷ"
+
+msgid "E915: in_io buffer requires in_buf or in_name to be set"
+msgstr "E915: in_io obt@Í in_buf © in_name ÌÝèªKvÅ·"
+
+msgid "E916: not a valid job"
+msgstr "E916: LøÈWuÅÍ èܹñ"
+
+#, c-format
+msgid "E917: Cannot use a callback with %s()"
+msgstr "E917: %s() ÉR[obNÍg¦Ü¹ñ"
+
+#, c-format
+msgid "E918: buffer must be loaded: %s"
+msgstr "E918: obt@ª[h³êÄȯêÎÈèܹñ: %s"
+
#, c-format
msgid "E919: Directory not found in '%s': \"%s\""
msgstr "E919: fBNgª '%s' ÌÉ èܹñ: \"%s\""
-msgid "E952: Autocommand caused recursive behavior"
-msgstr "E952: AutocommandªÄAðø«N±µÜµ½"
+msgid "E920: _io file requires _name to be set"
+msgstr "E920: _io t@CÍ _name ÌÝèªKvÅ·"
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: j
[ͼÌ[hɾ¯ èÜ·"
+msgid "E921: Invalid callback argument"
+msgstr "E921: ³øÈR[obNøÅ·"
+
+msgid "E922: expected a dict"
+msgstr "E922: «ªúÒ³êĢܷ"
+
+msgid "E923: Second argument of function() must be a list or a dict"
+msgstr "E923: function() Ìæ 2 øÍXg^ܽͫ^ÅȯêÎÈèܹñ"
+
+msgid "E924: Current window was closed"
+msgstr "E924: »ÝÌEBhEªÂ¶çêܵ½"
+
+msgid "E925: Current quickfix list was changed"
+msgstr "E925: »ÝÌ quickfix XgªÏX³êܵ½"
+
+msgid "E926: Current location list was changed"
+msgstr "E926: »ÝÌP[VXgªÏX³êܵ½"
+
+#, c-format
+msgid "E927: Invalid action: '%s'"
+msgstr "E927: ³øÈìÅ·: '%s'"
+
+msgid "E928: String required"
+msgstr "E928: ¶ñªKvÅ·"
+
+#, c-format
+msgid "E929: Too many viminfo temp files, like %s!"
+msgstr "E929: êviminfot@Cª½ß¬Ü·! á: %s"
+
+msgid "E930: Cannot use :redir inside execute()"
+msgstr "E930: execute() ÌÅÍ :redir Íg¦Ü¹ñ"
+
+msgid "E931: Buffer cannot be registered"
+msgstr "E931: obt@ðo^ūܹñ"
+
+#, c-format
+msgid "E932: Closure function should not be at top level: %s"
+msgstr "E932: N[W[ÖÍgbvxÉLqūܹñ: %s"
+
+#, c-format
+msgid "E933: Function was deleted: %s"
+msgstr "E933: ÖÍí³êܵ½: %s"
+
+msgid "E934: Cannot jump to a buffer that does not have a name"
+msgstr "E934: ¼O̳¢obt@ÖÍWvūܹñ"
+
+#, c-format
+msgid "E935: invalid submatch number: %d"
+msgstr "E935: ³øÈTu}b`ÔÅ·: %d"
+
+msgid "E936: Cannot delete the current group"
+msgstr "E936: »ÝÌO[vÍíūܹñ"
+
+#, c-format
+msgid "E937: Attempt to delete a buffer that is in use: %s"
+msgstr "E937: gpÌobt@ðíµæ¤ÆÝܵ½: %s"
+
+#, c-format
+msgid "E938: Duplicate key in JSON: \"%s\""
+msgstr "E938: JSONÉd¡L[ª èÜ·: \"%s\""
+
+msgid "E939: Positive count required"
+msgstr "E939: ³ÌJEgªKvÅ·"
+
+#, c-format
+msgid "E940: Cannot lock or unlock variable %s"
+msgstr "E940: Ï %s ÍbNܽÍAbNūܹñ"
+
+msgid "E941: already started a server"
+msgstr "E941: T[o[ÍùÉJnµÄ¢Ü·"
+
+msgid "E942: +clientserver feature not available"
+msgstr "E942: +clientserver @\\ª³øÉÈÁĢܷ"
+
+msgid "E943: Command table needs to be updated, run 'make cmdidxs'"
+msgstr ""
+"E943: R}he[uðXV·éKvª èÜ·A'make cmdidxs' ðÀsµÄ¾"
+"³¢"
+
+msgid "E944: Reverse range in character class"
+msgstr "E944: ¶NXÌÍͪtÅ·"
+
+msgid "E945: Range too large in character class"
+msgstr "E945: ¶NXÌÍͪ嫷¬Ü·"
+
+msgid "E946: Cannot make a terminal with running job modifiable"
+msgstr "E946: ÀsÌWuª é[ÍÏXÂ\\Éūܹñ"
+
+#, c-format
+msgid "E947: Job still running in buffer \"%s\""
+msgstr "E947: WuÍobt@ \"%s\" ÅܾÀsÅ·"
+
+msgid "E948: Job still running"
+msgstr "E948: WuÍܾÀsÅ·"
+
+msgid "E948: Job still running (add ! to end the job)"
+msgstr "E948: WuÍܾÀsÅ· (! ðÇÁÅWuðI¹)"
+
+msgid "E949: File changed while writing"
+msgstr "E949: ÝÉt@CªÏX³êܵ½"
+
+#, c-format
+msgid "E950: Cannot convert between %s and %s"
+msgstr "E950: %s Æ %s ÌÔÅϷūܹñ"
+
+msgid "E951: \\% value too large"
+msgstr "E951: \\% lªå«ß¬Ü·"
+
+msgid "E952: Autocommand caused recursive behavior"
+msgstr "E952: ©®R}hªÄAðø«N±µÜµ½"
+
+#, c-format
+msgid "E953: File exists: %s"
+msgstr "E953: t@CÍùɶݵܷ: %s"
+
+msgid "E954: 24-bit colors are not supported on this environment"
+msgstr "E954: 24bitFͱÌ«ÅÍT|[g³êĢܹñ"
+
+msgid "E955: Not a terminal buffer"
+msgstr "E955: [obt@ÅÍ èܹñ"
+
+msgid "E956: Cannot use pattern recursively"
+msgstr "E956: p^[ðÄAIÉg¤±ÆÍūܹñ"
msgid "E957: Invalid window number"
msgstr "E957: ³øÈEBhEÔÅ·"
+msgid "E958: Job already finished"
+msgstr "E958: WuÍùÉI¹µÄ¢Ü·"
+
+msgid "E959: Invalid diff format."
+msgstr "E959: ³øÈdiff`®Å·"
+
+msgid "E960: Problem creating the internal diff"
+msgstr "E960: àdiffì¬Éâ誶µÜµ½"
+
+msgid "E961: no line number to use for \"<sflnum>\""
+msgstr "E961: \"<sflnum>\"ðu«·¦ésÔª èܹñ"
+
#, c-format
-msgid "E686: Argument of %s must be a List"
-msgstr "E686: %s ÌøÍXg^ÅȯêÎÈèܹñ"
+msgid "E962: Invalid action: '%s'"
+msgstr "E962: ³øÈìÅ·: '%s'"
+
+#, c-format
+msgid "E963: setting %s to value with wrong type"
+msgstr "E963: %s ðÔáÁ½^ÌlÅÝèµÄ¢Ü·"
+
+#, c-format
+msgid "E964: Invalid column number: %ld"
+msgstr "E964: ³øÈñÔÅ·: %ld"
+
+msgid "E965: missing property type name"
+msgstr "E965: vpeB^Cv¼ª èܹñ"
+
+#, c-format
+msgid "E966: Invalid line number: %ld"
+msgstr "E966: ³øÈsÔÅ·: %ld"
+
+msgid "E967: text property info corrupted"
+msgstr "E967: eLXgvpeBîñªóêĢܷ"
+
+msgid "E968: Need at least one of 'id' or 'type'"
+msgstr "E968: Åá 1 ÂÌ 'id' Ü½Í 'type' ªKvÅ·"
+
+#, c-format
+msgid "E969: Property type %s already defined"
+msgstr "E969: vpeB^Cv %s ÍùÉè`³êĢܷ"
+
+#, c-format
+msgid "E970: Unknown highlight group name: '%s'"
+msgstr "E970: ¢mÌnCCgO[v¼: '%s'"
+
+#, c-format
+msgid "E971: Property type %s does not exist"
+msgstr "E971: vpeB^Cv %s ª èܹñ"
+
+msgid "E972: Blob value does not have the right number of bytes"
+msgstr "E972: BloblÌoCgª³µ èܹñ"
+
+msgid "E973: Blob literal should have an even number of hex characters"
+msgstr "E973: BlobeÍôÂÌ16i¶ÅȯêÎÈèܹñ"
+
+msgid "E974: Using a Blob as a Number"
+msgstr "E974: Blob^ðlƵĵÁĢܷ"
+
+msgid "E975: Using a Blob as a Float"
+msgstr "E975: Blob^ð®¬_ƵĵÁĢܷ"
+
+msgid "E976: Using a Blob as a String"
+msgstr "E976: Blob^ð¶ñƵĵÁĢܷ"
+
+msgid "E977: Can only compare Blob with Blob"
+msgstr "E977: Blob^ÍBlob^Ƶ©ärūܹñ"
+
+msgid "E978: Invalid operation for Blob"
+msgstr "E978: Blob^ÉͳøÈìÅ·"
+
+#, c-format
+msgid "E979: Blob index out of range: %ld"
+msgstr "E979: BlobÌCfbNXªÍÍOÅ·: %ld"
+
+msgid "E980: lowlevel input not supported"
+msgstr "E980: áxüÍÍT|[g³êĢܹñ"
+
+msgid "E981: Command not allowed in rvim"
+msgstr "E981: rvimÅͱÌR}hðg¦Ü¹ñ"
+
+msgid "E982: ConPTY is not available"
+msgstr "E982: ConPTY ª³øÅ·"
+
+#, c-format
+msgid "E983: Duplicate argument: %s"
+msgstr "E983: øªd¡µÄ¢Ü·: %s"
+
+msgid "E984: :scriptversion used outside of a sourced file"
+msgstr "E984: :scriptversion ªæÝXNvgÈOÅgp³êܵ½"
+
+msgid "E985: .= is not supported with script version >= 2"
+msgstr "E985: .= ÍXNvgo[W 2 ÈãÅÍεĢܹñ"
+
+msgid "E986: cannot modify the tag stack within tagfunc"
+msgstr "E986: tagfuncàÌ^OX^bNðÏXūܹñ"
+
+msgid "E987: invalid return value from tagfunc"
+msgstr "E987: tagfunc©çÌßèlª³øÅ·"
+
+msgid "E988: GUI cannot be used. Cannot execute gvim.exe."
+msgstr "E988: GUIÍgpsÂ\\Å·Bgvim.exeðN®Å«Ü¹ñB"
+
+msgid "E989: Non-default argument follows default argument"
+msgstr "E989: ñftHgøªftHgøÌãÉ èÜ·"
+
+#, c-format
+msgid "E990: Missing end marker '%s'"
+msgstr "E990: I[}[J[ª èܹñ '%s'"
+
+msgid "E991: cannot use =<< here"
+msgstr "E991: ±±ÅÍ =<< Íg¦Ü¹ñ"
+
+msgid "E992: Not allowed in a modeline when 'modelineexpr' is off"
+msgstr "E992: 'modelineexpr' ªItÌ modeline Åͳêܹñ"
+
+#, c-format
+msgid "E993: window %d is not a popup window"
+msgstr "E993: EBhE %d Í|bvAbvEBhEÅÍ èܹñ"
+
+msgid "E994: Not allowed in a popup window"
+msgstr "E994: |bvAbvEBhEÅͳêܹñ"
+
+msgid "E995: Cannot modify existing variable"
+msgstr "E995: ù¶ÌÏðÏXūܹñ"
+
+msgid "E996: Cannot lock a range"
+msgstr "E996: ÍÍÍbNūܹñ"
+
+msgid "E996: Cannot lock an option"
+msgstr "E996: IvVÍbNūܹñ"
+
+msgid "E996: Cannot lock a list or dict"
+msgstr "E996: Xg é¢Í«ÍbNūܹñ"
+
+msgid "E996: Cannot lock an environment variable"
+msgstr "E996: «ÏÍbNūܹñ"
+
+msgid "E996: Cannot lock a register"
+msgstr "E996: WX^ÍbNūܹñ"
+
+#, c-format
+msgid "E997: Tabpage not found: %d"
+msgstr "E997: ^uy[Wª©Â©èܹñ: %d"
+
+#, c-format
+msgid "E998: Reduce of an empty %s with no initial value"
+msgstr "E998: reduce ªúl³µÅóÌ %s ÅÄÎêܵ½"
+
+#, c-format
+msgid "E999: scriptversion not supported: %d"
+msgstr "E999: scriptversion ÍT|[g³êĢܹñ: %d"
+
+#, c-format
+msgid "E1001: Variable not found: %s"
+msgstr "E1001: Ϫ©Â©èܹñ: %s"
+
+#, c-format
+msgid "E1002: Syntax error at %s"
+msgstr "E1002: %s ɶ@G[ª èÜ·"
+
+msgid "E1003: Missing return value"
+msgstr "E1003: ßèlª èܹñ"
+
+#, c-format
+msgid "E1004: White space required before and after '%s' at \"%s\""
+msgstr "E1004: '%s' ÌOãÉXy[XªKvÅ· (\"%s\")"
+
+msgid "E1005: Too many argument types"
+msgstr "E1005: øÌ^ª½ß¬Ü·"
+
+#, c-format
+msgid "E1006: %s is used as an argument"
+msgstr "E1006: %s ªøÆµÄgíêĢܷ"
+
+msgid "E1007: Mandatory argument after optional argument"
+msgstr "E1007: IvVøÌãÉK{øª èÜ·"
+
+msgid "E1008: Missing <type>"
+msgstr "E1008: <type> ª èܹñ"
+
+msgid "E1009: Missing > after type"
+msgstr "E1009: ^ÌãÉ > ª èܹñ"
+
+#, c-format
+msgid "E1010: Type not recognized: %s"
+msgstr "E1010: ^ðF¯Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1011: Name too long: %s"
+msgstr "E1011: ¼Oª·ß¬Ü·: %s"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s"
+msgstr "E1012: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½"
+
+#, c-format
+msgid "E1012: Type mismatch; expected %s but got %s in %s"
+msgstr "E1012: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½ (%s à)"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s"
+msgstr "E1013: ø %d: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½"
+
+#, c-format
+msgid "E1013: Argument %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1013: ø %d: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½ (%s à)"
+
+#, c-format
+msgid "E1014: Invalid key: %s"
+msgstr "E1014: ³øÈL[Å·: %s"
+
+#, c-format
+msgid "E1015: Name expected: %s"
+msgstr "E1015: ¼Oªv³êĢܷ: %s"
+
+#, c-format
+msgid "E1016: Cannot declare a %s variable: %s"
+msgstr "E1016: %sÏÍé¾Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1016: Cannot declare an environment variable: %s"
+msgstr "E1016: «ÏÍé¾Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1017: Variable already declared: %s"
+msgstr "E1017: ÏÍùÉé¾³êĢܷ: %s"
+
+#, c-format
+msgid "E1018: Cannot assign to a constant: %s"
+msgstr "E1018: èÉÍãüūܹñ: %s"
+
+msgid "E1019: Can only concatenate to string"
+msgstr "E1019: ¶ñƵ©Å«Ü¹ñ"
+
+#, c-format
+msgid "E1020: Cannot use an operator on a new variable: %s"
+msgstr "E1020: VKÌÏÉεÄZqðgpūܹñ: %s"
+
+msgid "E1021: Const requires a value"
+msgstr "E1021: const ÉÍlªKvÅ·"
+
+msgid "E1022: Type or initialization required"
+msgstr "E1022: ^©ú»ªKvÅ·"
+
+#, c-format
+msgid "E1023: Using a Number as a Bool: %lld"
+msgstr "E1023: lðBoolƵĵÁĢܷ: %lld"
+
+msgid "E1024: Using a Number as a String"
+msgstr "E1024: lð¶ñƵĵÁĢܷ"
+
+msgid "E1025: Using } outside of a block scope"
+msgstr "E1025: ubNXR[vÌO¤Å } ªgp³êܵ½"
+
+msgid "E1026: Missing }"
+msgstr "E1026: } ª èܹñ"
+
+msgid "E1027: Missing return statement"
+msgstr "E1027: return ¶ª èܹñ"
+
+msgid "E1028: Compiling :def function failed"
+msgstr "E1028: :def ÖÌRpCɸsµÜµ½"
+
+#, c-format
+msgid "E1029: Expected %s but got %s"
+msgstr "E1029: %s ªúÒ³êĢܷª %s ŵ½"
+
+#, c-format
+msgid "E1030: Using a String as a Number: \"%s\""
+msgstr "E1030: ¶ñðlƵĵÁĢܷ: \"%s\""
+
+msgid "E1031: Cannot use void value"
+msgstr "E1031: void lÍgpūܹñ"
+
+msgid "E1032: Missing :catch or :finally"
+msgstr "E1032: :catch Ü½Í :finally ª èܹñ"
+
+msgid "E1033: Catch unreachable after catch-all"
+msgstr "E1033: SÄðcatchµ½ãÌcatchÉÍBµÜ¹ñ"
+
+#, c-format
+msgid "E1034: Cannot use reserved name %s"
+msgstr "E1034: \\ñ¼ %s Ígpūܹñ"
+
+msgid "E1035: % requires number arguments"
+msgstr "E1035: % ÉÍlÌøªKvÅ·"
+
+#, c-format
+msgid "E1036: %c requires number or float arguments"
+msgstr "E1036: %c ÉÍlܽͮ¬_ÌøªKvÅ·"
+
+#, c-format
+msgid "E1037: Cannot use \"%s\" with %s"
+msgstr "E1037: \"%s\" ð %s ÆgÝí¹ÄÍg¦Ü¹ñ"
+
+msgid "E1038: \"vim9script\" can only be used in a script"
+msgstr "E1038: \"vim9script\" ÍXNvgÌÅÌÝgpūܷ"
+
+msgid "E1039: \"vim9script\" must be the first command in a script"
+msgstr ""
+"E1039: \"vim9script\" ÍXNvgÌÌÅÌR}hÅȯêÎÈèܹñ"
+
+msgid "E1040: Cannot use :scriptversion after :vim9script"
+msgstr "E1040: :vim9script ÌãÉ :scriptversion Ígpūܹñ"
+
+#, c-format
+msgid "E1041: Redefining script item %s"
+msgstr "E1041: XNvgvf %s ðÄè`µÄ¢Ü·"
+
+msgid "E1042: Export can only be used in vim9script"
+msgstr "E1042: export Í vim9script ÌÅÌÝgpūܷ"
+
+msgid "E1043: Invalid command after :export"
+msgstr "E1043: :export ÌãɳøÈR}hª èÜ·"
+
+msgid "E1044: Export with invalid argument"
+msgstr "E1044: export ɳøÈøªn³êܵ½"
+
+#, c-format
+msgid "E1047: Syntax error in import: %s"
+msgstr "E1047: import àɶ@G[ª èÜ·: %s"
+
+#, c-format
+msgid "E1048: Item not found in script: %s"
+msgstr "E1048: vfªXNvgàũ©èܹñ: %s"
+
+#, c-format
+msgid "E1049: Item not exported in script: %s"
+msgstr "E1049: vfªXNvgàÅGNX|[g³êĢܹñ: %s"
+
+#, c-format
+msgid "E1050: Colon required before a range: %s"
+msgstr "E1050: ÍÍÌOÉÍRªKvÅ·: %s"
+
+msgid "E1051: Wrong argument type for +"
+msgstr "E1051: + ÌøÌ^ªá¢Ü·"
+
+#, c-format
+msgid "E1052: Cannot declare an option: %s"
+msgstr "E1052: IvVÍé¾Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1053: Could not import \"%s\""
+msgstr "E1053: \"%s\" ðC|[gūܹñŵ½"
+
+#, c-format
+msgid "E1054: Variable already declared in the script: %s"
+msgstr "E1054: ÏÍùÉXNvgàÅé¾³êĢܷ: %s"
+
+msgid "E1055: Missing name after ..."
+msgstr "E1055: ... ÌãɼOª èܹñ"
+
+#, c-format
+msgid "E1056: Expected a type: %s"
+msgstr "E1056: ȺÌ^ªKvÅ·: %s"
+
+msgid "E1057: Missing :enddef"
+msgstr "E1057: :enddef ª èܹñ"
+
+msgid "E1058: Function nesting too deep"
+msgstr "E1058: ÖÌüêqª[ܷ߬"
+
+#, c-format
+msgid "E1059: No white space allowed before colon: %s"
+msgstr "E1059: RÌOÉXy[Xͳêܹñ: %s"
+
+#, c-format
+msgid "E1060: Expected dot after name: %s"
+msgstr "E1060: ¼OÌãÉhbgªKvÅ·: %s"
+
+#, c-format
+msgid "E1061: Cannot find function %s"
+msgstr "E1061: Ö %s ª©Â©èܹñ"
+
+msgid "E1062: Cannot index a Number"
+msgstr "E1062: lÍCfbNXūܹñ"
+
+msgid "E1063: Type mismatch for v: variable"
+msgstr "E1063: v: ÏÌ^ªêvµÜ¹ñ"
+
+msgid "E1064: Yank register changed while using it"
+msgstr "E1064: NWX^ªgpÉÏX³êܵ½"
+
+#, c-format
+msgid "E1066: Cannot declare a register: %s"
+msgstr "E1066: WX^Íé¾Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1067: Separator mismatch: %s"
+msgstr "E1067: æØèªêvµÜ¹ñ: %s"
+
+#, c-format
+msgid "E1068: No white space allowed before '%s': %s"
+msgstr "E1068: '%s' ÌOÉXy[Xͳêܹñ: %s"
+
+#, c-format
+msgid "E1069: White space required after '%s': %s"
+msgstr "E1069: '%s' ÌãÉXy[XªKvÅ·: %s"
+
+#, c-format
+msgid "E1071: Invalid string for :import: %s"
+msgstr "E1071: :import És³È¶ñª èÜ·: %s"
+
+#, c-format
+msgid "E1072: Cannot compare %s with %s"
+msgstr "E1072: %s Æ %s ðärūܹñ"
+
+#, c-format
+msgid "E1073: Name already defined: %s"
+msgstr "E1073: ¼OÍùÉè`³êĢܷ: %s"
+
+msgid "E1074: No white space allowed after dot"
+msgstr "E1074: hbgÌãÉXy[Xͳêܹñ"
+
+#, c-format
+msgid "E1075: Namespace not supported: %s"
+msgstr "E1075: l[Xy[XÉÍεĢܹñ: %s"
+
+msgid "E1076: This Vim is not compiled with float support"
+msgstr "E1076: ±ÌVimÍ®¬_T|[gt«ÅRpC³êĢܹñ"
+
+#, c-format
+msgid "E1077: Missing argument type for %s"
+msgstr "E1077: %s ÌøÌ^ª èܹñ"
+
+#, c-format
+msgid "E1081: Cannot unlet %s"
+msgstr "E1081: %s ð unlet ūܹñ"
+
+msgid "E1083: Missing backtick"
+msgstr "E1083: obNNH[gª èܹñ"
+
+#, c-format
+msgid "E1084: Cannot delete Vim9 script function %s"
+msgstr "E1084: Vim9 XNvgÖÍíūܹñ: %s"
+
+#, c-format
+msgid "E1085: Not a callable type: %s"
+msgstr "E1085: ÄoµÂ\\È^ÅÍ èܹñ: %s"
+
+msgid "E1086: Function reference invalid"
+msgstr "E1086: ÖQƪs³Å·"
+
+msgid "E1087: Cannot use an index when declaring a variable"
+msgstr "E1087: Ïðé¾·éÛÉCfbNXÍgpūܹñ"
+
+#, c-format
+msgid "E1089: Unknown variable: %s"
+msgstr "E1089: s¾ÈÏ: %s"
+
+#, c-format
+msgid "E1090: Cannot assign to argument %s"
+msgstr "E1090: ø %s ÉεÄãüūܹñ"
+
+#, c-format
+msgid "E1091: Function is not compiled: %s"
+msgstr "E1091: ÖÍRpC³êĢܹñ: %s"
+
+#, c-format
+msgid "E1093: Expected %d items but got %d"
+msgstr "E1093: %d ÂÌvfªúÒ³êĢܷª %d Âŵ½"
+
+msgid "E1094: Import can only be used in a script"
+msgstr "E1094: import ÍXNvgÌÅÌÝgpūܷ"
+
+msgid "E1095: Unreachable code after :return"
+msgstr "E1095: :return ÌãÉBs\\ÈR[hª èÜ·"
+
+msgid "E1096: Returning a value in a function without a return type"
+msgstr "E1096: ßèlÌ^ªÈ¢ÖÅlðԵĢܷ"
+
+msgid "E1097: Line incomplete"
+msgstr "E1097: sªs®SÅ·"
+
+msgid "E1098: String, List or Blob required"
+msgstr "E1098: ¶ñ^AXg^ܽÍBlob^ªKvÅ·"
+
+#, c-format
+msgid "E1099: Unknown error while executing %s"
+msgstr "E1099: %s ðÀsÉ¢mÌG[Å·"
+
+#, c-format
+msgid "E1100: Command not supported in Vim9 script (missing :var?): %s"
+msgstr ""
+"E1100: R}hª Vim9 XNvgÅT|[g³êĢܹñ (:var ªÈ¢?): %s"
+
+#, c-format
+msgid "E1101: Cannot declare a script variable in a function: %s"
+msgstr "E1101: ÖàÅXNvgÏÍé¾Å«Ü¹ñ: %s"
+
+#, c-format
+msgid "E1102: Lambda function not found: %s"
+msgstr "E1102: _Öª©Â©èܹñ: %s"
+
+msgid "E1103: Dictionary not set"
+msgstr "E1103: «ÍÝè³êĢܹñ"
+
+msgid "E1104: Missing >"
+msgstr "E1104: > ª©Â©èܹñ"
+
+#, c-format
+msgid "E1105: Cannot convert %s to string"
+msgstr "E1105: %s ð¶ñÉϷūܹñ"
+
+msgid "E1106: One argument too many"
+msgstr "E1106: øª 1 ½¢Å·"
+
+#, c-format
+msgid "E1106: %d arguments too many"
+msgstr "E1106: øª %d ½¢Å·"
+
+msgid "E1107: String, List, Dict or Blob required"
+msgstr "E1107: ¶ñ^AXg^A«^ܽÍBlob^ªKvÅ·"
+
+#, c-format
+msgid "E1108: Item not found: %s"
+msgstr "E1108: vfª©Â©èܹñ: %s"
+
+#, c-format
+msgid "E1109: List item %d is not a List"
+msgstr "E1109: XgÌvf %d ÍXgÅÍ èܹñ"
+
+#, c-format
+msgid "E1110: List item %d does not contain 3 numbers"
+msgstr "E1110: XgÌvf %d Ílð 3 ÂÜñŢܹñ"
+
+#, c-format
+msgid "E1111: List item %d range invalid"
+msgstr "E1111: XgÌvf %d ÌÍͪs³Å·"
+
+#, c-format
+msgid "E1112: List item %d cell width invalid"
+msgstr "E1112: XgÌvf %d ÌZªs³Å·"
+
+#, c-format
+msgid "E1113: Overlapping ranges for 0x%lx"
+msgstr "E1113: 0x%lx ÌÍͪd¡µÄ¢Ü·"
+
+msgid "E1114: Only values of 0x100 and higher supported"
+msgstr "E1114: 0x100 ÈãÌlµ©T|[g³êĢܹñ"
+
+msgid "E1115: \"assert_fails()\" fourth argument must be a number"
+msgstr "E1115: \"assert_fails()\" Ìæ4øÍÅȯêÎÈèܹñ"
+
+msgid "E1116: \"assert_fails()\" fifth argument must be a string"
+msgstr "E1116: \"assert_fails()\" Ìæ5øÍ¶ñÅȯêÎÈèܹñ"
+
+msgid "E1117: Cannot use ! with nested :def"
+msgstr "E1117: ! ðüêqÉÈÁ½ :def ÆgÝí¹ÄÍg¦Ü¹ñ"
+
+msgid "E1118: Cannot change list"
+msgstr "E1118: XgðÏXūܹñ"
+
+msgid "E1119: Cannot change list item"
+msgstr "E1119: XgÌvfðÏXūܹñ"
+
+msgid "E1120: Cannot change dict"
+msgstr "E1120: «ðÏXūܹñ"
+
+msgid "E1121: Cannot change dict item"
+msgstr "E1121: «ÌvfðÏXūܹñ"
+
+#, c-format
+msgid "E1122: Variable is locked: %s"
+msgstr "E1122: ϪbN³êĢܷ: %s"
+
+#, c-format
+msgid "E1123: Missing comma before argument: %s"
+msgstr "E1123: øÌOÉR}ª èܹñ: %s"
+
+#, c-format
+msgid "E1124: \"%s\" cannot be used in legacy Vim script"
+msgstr "E1124: \"%s\" ÍÌ Vim XNvgÌÅÍgpūܹñ"
+
+msgid "E1125: Final requires a value"
+msgstr "E1125: final ÉÍlªKvÅ·"
+
+msgid "E1126: Cannot use :let in Vim9 script"
+msgstr "E1126: Vim9 XNvgÅÍ :let Ígpūܹñ"
+
+msgid "E1127: Missing name after dot"
+msgstr "E1127: hbgÌãɼOª èܹñ"
+
+msgid "E1128: } without {"
+msgstr "E1128: { ÌÈ¢ } ª èÜ·"
+
+msgid "E1129: Throw with empty string"
+msgstr "E1129: ó¶ñª throw ³êĢܷ"
+
+msgid "E1130: Cannot add to null list"
+msgstr "E1130: null XgÉÍÇÁūܹñ"
+
+msgid "E1131: Cannot add to null blob"
+msgstr "E1131: null blob ÉÍÇÁūܹñ"
+
+msgid "E1132: Missing function argument"
+msgstr "E1132: øÉÖª èܹñ"
+
+msgid "E1133: Cannot extend a null dict"
+msgstr "E1133: null «Íg£Å«Ü¹ñ"
+
+msgid "E1134: Cannot extend a null list"
+msgstr "E1134: null XgÍg£Å«Ü¹ñ"
+
+#, c-format
+msgid "E1135: Using a String as a Bool: \"%s\""
+msgstr "E1135: ¶ñðBoolƵĵÁĢܷ: \"%s\""
+
+msgid "E1136: <Cmd> mapping must end with <CR> before second <Cmd>"
+msgstr ""
+"E1136: <Cmd> }bsOÍÌ <Cmd> ÌOÉ <CR> ÅIíçȯêÎÈèܹñ"
+
+#, c-format
+msgid "E1137: <Cmd> mapping must not include %s key"
+msgstr "E1137: <Cmd> }bsOÍ %s L[ðÜñÅÍ¢¯Ü¹ñ"
+
+msgid "E1138: Using a Bool as a Number"
+msgstr "E1138: BoolðlƵĵÁĢܷ"
+
+msgid "E1139: Missing matching bracket after dict key"
+msgstr "E1139: «ÌL[ÌãÉêv·épʪ èܹñ"
+
+msgid "E1140: :for argument must be a sequence of lists"
+msgstr "E1140: :for ÌøÍXgÌV[PXÅȯêÎÈèܹñ"
+
+msgid "E1141: Indexable type required"
+msgstr "E1141: CfbNXÂ\\È^ªKvÅ·"
+
+#, c-format
+msgid "E1143: Empty expression: \"%s\""
+msgstr "E1143: ó̮ŷ: \"%s\""
+
+#, c-format
+msgid "E1144: Command \"%s\" is not followed by white space: %s"
+msgstr "E1144: R}h \"%s\" ÌãÉóª èܹñ: %s"
+
+#, c-format
+msgid "E1145: Missing heredoc end marker: %s"
+msgstr "E1145: heredocÌI[}[J[ª èܹñ '%s'"
+
+#, c-format
+msgid "E1146: Command not recognized: %s"
+msgstr "E1146: R}hðF¯Å«Ü¹ñ: %s"
+
+msgid "E1147: List not set"
+msgstr "E1147: XgÍÝè³êĢܹñ"
+
+#, c-format
+msgid "E1148: Cannot index a %s"
+msgstr "E1148: %s ðCfbNXūܹñ"
+
+#, c-format
+msgid "E1149: Script variable is invalid after reload in function %s"
+msgstr "E1149: Ö %s àÅ[hãÌXNvgÏͳøÅ·"
+
+msgid "E1150: Script variable type changed"
+msgstr "E1150: XNvgÏÌ^ªÏX³êܵ½"
+
+msgid "E1151: Mismatched endfunction"
+msgstr "E1151: endfunction ªêvµÜ¹ñ"
+
+msgid "E1152: Mismatched enddef"
+msgstr "E1152: enddef ªêvµÜ¹ñ"
+
+#, c-format
+msgid "E1153: Invalid operation for %s"
+msgstr "E1153: %s ÉͳøÈìÅ·"
+
+msgid "E1154: Divide by zero"
+msgstr "E1154: [Z"
+
+msgid "E1155: Cannot define autocommands for ALL events"
+msgstr "E1155: SÄÌCxgÉεÄÌ©®R}hÍè`ūܹñ"
+
+msgid "E1156: Cannot change the argument list recursively"
+msgstr "E1156: øXgðÄAIÉÏX·é±ÆÍūܹñ"
+
+msgid "E1157: Missing return type"
+msgstr "E1157: ßèlÌ^ª èܹñ"
+
+msgid "E1158: Cannot use flatten() in Vim9 script"
+msgstr "E1158: Vim9 XNvgÅÍ flatten() Ígpūܹñ"
+
+msgid "E1159: Cannot split a window when closing the buffer"
+msgstr "E1159: obt@ð¶ĢéÔÉEBhEðª·é±ÆÍūܹñ"
+
+msgid "E1160: Cannot use a default for variable arguments"
+msgstr "E1160: ÂÏøÉεÄftHgðgpūܹñ"
+
+#, c-format
+msgid "E1161: Cannot json encode a %s"
+msgstr "E1161: %s ð json GR[hūܹñ"
+
+#, c-format
+msgid "E1162: Register name must be one character: %s"
+msgstr "E1162: WX^¼Í1¶ÅȯêÎÈèܹñ: %s"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s"
+msgstr "E1163: Ï %d: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½"
+
+#, c-format
+msgid "E1163: Variable %d: type mismatch, expected %s but got %s in %s"
+msgstr "E1163: Ï %d: ^ªsêvÅ·B%s ªKvÅ·ª %s ŵ½ (%s à)"
+
+msgid "E1164: vim9cmd must be followed by a command"
+msgstr "E1164: vim9cmd ÍãëÉR}hªKvÅ·"
+
+#, c-format
+msgid "E1165: Cannot use a range with an assignment: %s"
+msgstr "E1165: ãüÅÍÍÍgpūܹñ: %s"
+
+msgid "E1166: Cannot use a range with a dictionary"
+msgstr "E1166: «ÅÍÍÍgpūܹñ"
+
+#, c-format
+msgid "E1167: Argument name shadows existing variable: %s"
+msgstr "E1167: ø¼ªù¶ÌÏðBµÄ¢Ü·: %s"
+
+#, c-format
+msgid "E1168: Argument already declared in the script: %s"
+msgstr "E1168: øÍùÉXNvgàÅé¾³êĢܷ: %s"
+
+msgid "E1169: 'import * as {name}' not supported here"
+msgstr "E1169: 'import * as {name}' ͱ±ÅÍT|[g³êĢܹñ"
+
+msgid "E1170: Cannot use #{ to start a comment"
+msgstr "E1170: RgÌJnÉ #{ Ígpūܹñ"
+
+msgid "E1171: Missing } after inline function"
+msgstr "E1171: CCÖÌãÉ } ª èܹñ"
+
+msgid "E1172: Cannot use default values in a lambda"
+msgstr "E1172: _ÅÍftHglðgpūܹñ"
+
+#, c-format
+msgid "E1173: Text found after %s: %s"
+msgstr "E1173: %s Ìãɶª èÜ·: %s"
+
+#, c-format
+msgid "E1174: String required for argument %d"
+msgstr "E1174: ø %d ÉͶñªKvÅ·"
+
+#, c-format
+msgid "E1175: Non-empty string required for argument %d"
+msgstr "E1175: ø %d ÉÍóÅÍÈ¢¶ñªKvÅ·"
+
+msgid "E1176: Misplaced command modifier"
+msgstr "E1176: ÔáÁ½R}hCüqÅ·"
+
+#, c-format
+msgid "E1177: For loop on %s not supported"
+msgstr "E1177: %s Éηé for [vÍT|[g³êĢܹñ"
+
+msgid "E1178: Cannot lock or unlock a local variable"
+msgstr "E1178: [JÏÍbNܽÍAbNūܹñ"
+
+#, c-format
+msgid ""
+"E1179: Failed to extract PWD from %s, check your shell's config related to "
+"OSC 7"
+msgstr ""
+"E1179: %s ©ç PWD ðo·éÌɸsµÜµ½BOSC 7 ÖAÌVFÌÝèðmF"
+"µÄ¾³¢"
+
+#, c-format
+msgid "E1180: Variable arguments type must be a list: %s"
+msgstr "E1180: ÂÏøÌ^ÍXgÅȯêÎÈèܹñ: %s"
+
+msgid "E1181: Cannot use an underscore here"
+msgstr "E1181: ±±ÅÍA_[XRAÍg¦Ü¹ñ"
+
+msgid "E1182: Blob required"
+msgstr "E1182: Blob^ªKvÅ·"
+
+#, c-format
+msgid "E1183: Cannot use a range with an assignment operator: %s"
+msgstr "E1183: ãüZqÅÍÍÍgpūܹñ: %s"
+
+msgid "E1184: Blob not set"
+msgstr "E1184: Blob ÍÝè³êĢܹñ"
+
+msgid "E1185: Cannot nest :redir"
+msgstr "E1185: :redir ÍüêqÉūܹñ"
+
+msgid "E1185: Missing :redir END"
+msgstr "E1185: :redir END ª èܹñ"
+
+#, c-format
+msgid "E1186: Expression does not result in a value: %s"
+msgstr "E1186: ®ªlðԵܹñŵ½: %s"
+
+msgid "E1187: Failed to source defaults.vim"
+msgstr "E1187: defaults.vim ÌÇÝɸsµÜµ½"
+
+msgid "E1188: Cannot open a terminal from the command line window"
+msgstr "E1188: R}hCEBhE©ç[ðJ±ÆÍūܹñ"
+
+#, c-format
+msgid "E1189: Cannot use :legacy with this command: %s"
+msgstr "E1189: ±ÌR}hÉÍ :legacy ðgpūܹñ: %s"
+
+msgid "E1190: One argument too few"
+msgstr "E1190: øª 1 ÂȢŷ"
+
+#, c-format
+msgid "E1190: %d arguments too few"
+msgstr "E1190: øª %d ÂȢŷ"
+
+#, c-format
+msgid "E1191: Call to function that failed to compile: %s"
+msgstr "E1191: RpCɸsµ½ÖðÄo»¤ÆµÄ¢Ü·: %s"
+
+msgid "E1192: Empty function name"
+msgstr "E1192: Ö¼ªóÅ·"
+
+msgid "E1193: cryptmethod xchacha20 not built into this Vim"
+msgstr "E1193: ±Ì Vim ÉÍû\\bh xchacha20 ªgÜêĢܹñ"
+
+msgid "E1194: Cannot encrypt header, not enough space"
+msgstr "E1194: wb_ðûūܹñAXy[Xª«èܹñ"
+
+msgid "E1195: Cannot encrypt buffer, not enough space"
+msgstr "E1195: obt@ðûūܹñAXy[Xª«èܹñ"
+
+msgid "E1196: Cannot decrypt header, not enough space"
+msgstr "E1196: wb_ðūܹñAXy[Xª«èܹñ"
+
+msgid "E1197: Cannot allocate_buffer for encryption"
+msgstr "E1197: ûpÌobt@ðmÛūܹñ"
+
+msgid "E1198: Decryption failed: Header incomplete!"
+msgstr "E1198: ɸs: wb_ªs®SÅ·!"
+
+msgid "E1199: Cannot decrypt buffer, not enough space"
+msgstr "E1199: obt@ðūܹñAXy[Xª«èܹñ"
+
+msgid "E1200: Decryption failed!"
+msgstr "E1200: ɸs!"
+
+msgid "E1201: Decryption failed: pre-mature end of file!"
+msgstr "E1201: ɸs: \\ú¹Êt@CÌIíèÅ·!"
+
+#, c-format
+msgid "E1202: No white space allowed after '%s': %s"
+msgstr "E1202: '%s' ÌãÉXy[Xͳêܹñ: %s"
+
+#, c-format
+msgid "E1203: Dot can only be used on a dictionary: %s"
+msgstr "E1203: hbgÍ«ÌÅÌÝgpūܷ: %s"
+
+#, c-format
+msgid "E1204: No Number allowed after .: '\\%%%c'"
+msgstr "E1204: . ÌãÉͳêܹñ: '\\%%%c'"
+
+msgid "E1205: No white space allowed between option and"
+msgstr "E1205: IvVÆÌÔÉXy[Xͳêܹñ"
+
+#, c-format
+msgid "E1206: Dictionary required for argument %d"
+msgstr "E1206: ø %d ÉÍ«ªKvÅ·"
+
+#, c-format
+msgid "E1207: Expression without an effect: %s"
+msgstr "E1207: øÊÌÈ¢®Å·: %s"
+
+msgid "E1208: -complete used without allowing arguments"
+msgstr "E1208: -complete ªøð³ê¸ÉgíêĢܷ"
+
+#, c-format
+msgid "E1209: Invalid value for a line number: \"%s\""
+msgstr "E1209: sÔÆµÄ³øÈlÅ·: \"%s\""
+
+#, c-format
+msgid "E1210: Number required for argument %d"
+msgstr "E1210: ø %d ÉÍlªKvÅ·"
+
+#, c-format
+msgid "E1211: List required for argument %d"
+msgstr "E1211: ø %d ÉÍXgªKvÅ·"
+
+#, c-format
+msgid "E1212: Bool required for argument %d"
+msgstr "E1212: ø %d ÉÍBoolªKvÅ·"
+
+#, c-format
+msgid "E1213: Redefining imported item \"%s\""
+msgstr "E1213: C|[g³ê½vf \"%s\" ðÄè`µÄ¢Ü·"
+
+#, c-format
+msgid "E1214: Digraph must be just two characters: %s"
+msgstr "E1214: _COtÍ¿å¤Ç2¶ÅȯêÎÈèܹñ: %s"
+
+#, c-format
+msgid "E1215: Digraph must be one character: %s"
+msgstr "E1215: _COtÍ1¶ÅȯêÎÈèܹñ: %s"
+
+msgid ""
+"E1216: digraph_setlist() argument must be a list of lists with two items"
+msgstr ""
+"E1216: digraph_setlist() ÌøÍ2vfÌXgÌXgÅȯêÎÈèܹñ"
+
+#, c-format
+msgid "E1217: Channel or Job required for argument %d"
+msgstr "E1217: ø %d ÉÍ`lܽÍWuªKvÅ·"
+
+#, c-format
+msgid "E1218: Job required for argument %d"
+msgstr "E1218: ø %d ÉÍWuªKvÅ·"
+
+#, c-format
+msgid "E1219: Float or Number required for argument %d"
+msgstr "E1219: ø %d ÉÍ®¬_ܽÍlªKvÅ·"
+
+#, c-format
+msgid "E1220: String or Number required for argument %d"
+msgstr "E1220: ø %d ÉͶñܽÍlªKvÅ·"
+
+#, c-format
+msgid "E1221: String or Blob required for argument %d"
+msgstr "E1221: ø %d ÉͶñܽÍBlobªKvÅ·"
+
+#, c-format
+msgid "E1222: String or List required for argument %d"
+msgstr "E1222: ø %d ÉͶñܽÍXgªKvÅ·"
+
+#, c-format
+msgid "E1223: String or Dictionary required for argument %d"
+msgstr "E1223: ø %d ÉͶñܽͫªKvÅ·"
+
+#, c-format
+msgid "E1224: String, Number or List required for argument %d"
+msgstr "E1224: ø %d ÉͶñAlܽÍXgªKvÅ·"
+
+#, c-format
+msgid "E1225: String, List or Dictionary required for argument %d"
+msgstr "E1225: ø %d ÉͶñAXgܽͫªKvÅ·"
+
+#, c-format
+msgid "E1226: List or Blob required for argument %d"
+msgstr "E1226: ø %d ÉÍXgܽÍBlobªKvÅ·"
+
+#, c-format
+msgid "E1227: List or Dictionary required for argument %d"
+msgstr "E1227: ø %d ÉÍXgܽͫªKvÅ·"
+
+#, c-format
+msgid "E1228: List, Dictionary or Blob required for argument %d"
+msgstr "E1228: ø %d ÉÍXgA«Ü½ÍBlobªKvÅ·"
+
+#, c-format
+msgid "E1229: Expected dictionary for using key \"%s\", but got %s"
+msgstr "E1229: «ÌL[É \"%s\" ªúÒ³êĢܷª %s ŵ½"
+
+msgid "E1230: Encryption: sodium_mlock() failed"
+msgstr "E1230: û: sodium_mlock() ɸs"
+
+#, c-format
+msgid "E1231: Cannot use a bar to separate commands here: %s"
+msgstr "E1231: ±±ÅR}hðæØé½ßÉ '|' ðgpūܹñ: %s"
+
+msgid "E1232: Argument of exists_compiled() must be a literal string"
+msgstr "E1232: exists_compiled() ÌøÍe¶ñÅȯêÎÈèܹñ"
+
+msgid "E1233: exists_compiled() can only be used in a :def function"
+msgstr "E1233: exists_compiled() Í :def ÖÌÅÌÝgpūܷ"
+
+msgid "E1234: legacy must be followed by a command"
+msgstr "E1234: legacy ÍãëÉR}hªKvÅ·"
+
+msgid "E1235: Function reference is not set"
+msgstr "E1235: ÖQƪÝè³êĢܹñ"
+
+#, c-format
+msgid "E1236: Cannot use %s itself, it is imported"
+msgstr "E1236: %s ©gðg¤±ÆÍūܹñAC|[g³êĢܷ"
+
+#, c-format
+msgid "E1237: No such user-defined command in current buffer: %s"
+msgstr "E1237: »ÝÌobt@É»Ì[U[è`R}hÍ èܹñ: %s"
+
+#, c-format
+msgid "E1238: Blob required for argument %d"
+msgstr "E1238: ø %d ÉÍBlobªKvÅ·"
+
+#, c-format
+msgid "E1239: Invalid value for blob: %d"
+msgstr "E1239: blobƵijøÈlÅ·: %d"
+
+msgid "E1240: Resulting text too long"
+msgstr "E1240: eLXgª·È跬ܵ½"
+
+#, c-format
+msgid "E1241: Separator not supported: %s"
+msgstr "E1241: »ÌZp[^ÉÍεĢܹñ: %s"
+
+#, c-format
+msgid "E1242: No white space allowed before separator: %s"
+msgstr "E1242: Zp[^ÌOÉXy[Xͳêܹñ: %s"
+
+msgid "E1243: ASCII code not in 32-127 range"
+msgstr "E1243: ASCIIR[hª32-127ÌÍÍÉ èܹñ"
+
+#, c-format
+msgid "E1244: Bad color string: %s"
+msgstr "E1244: ³øÈJ[¼¶ñÅ·: %s"
+
+msgid "E1245: Cannot expand <sfile> in a Vim9 function"
+msgstr "E1245: Vim9 ÖÅÍ <sfile> ÍWJūܹñ"
+
+#, c-format
+msgid "E1246: Cannot find variable to (un)lock: %s"
+msgstr "E1246: (A)bN·éϪ©Â©èܹñ: %s"
+
+msgid "E1247: Line number out of range"
+msgstr "E1247: ÍÍOÌsÔÅ·"
+
+msgid "E1248: Closure called from invalid context"
+msgstr "E1248: s³È¶¬ÅN[WªÄÎêܵ½"
+
+msgid "E1249: Highlight group name too long"
+msgstr "E1249: nCCgO[v¼ª··¬Ü·"
+
+#, c-format
+msgid "E1250: Argument of %s must be a List, String, Dictionary or Blob"
+msgstr "E1250: %s ÌøÍXgA¶ñA«Ü½ÍBlobÅȯêÎÈèܹñ"
+
+#, c-format
+msgid "E1251: List, Dictionary, Blob or String required for argument %d"
+msgstr "E1251: ø %d ÉÍXgA«ABlobܽͶñªKvÅ·"
+
+#, c-format
+msgid "E1252: String, List or Blob required for argument %d"
+msgstr "E1252: ø %d ÉͶñAXgܽÍBlobªKvÅ·"
+
+#, c-format
+msgid "E1253: String expected for argument %d"
+msgstr "E1253: ø %d ÉͶñªKvÅ·"
+
+msgid "E1254: Cannot use script variable in for loop"
+msgstr "E1254: for[vàÅXNvgÏÍgpūܹñ"
+
+msgid "E1255: <Cmd> mapping must end with <CR>"
+msgstr "E1255: <Cmd> }bsOÍ <CR> ÅIíçȯêÎÈèܹñ"
+
+#, c-format
+msgid "E1256: String or function required for argument %d"
+msgstr "E1256: ø %d ÉͶñܽÍÖªKvÅ·"
+
+#, c-format
+msgid "E1257: Imported script must use \"as\" or end in .vim: %s"
+msgstr ""
+"E1257: C|[g³ê½XNvgÍ \"as\" ðg¤© .vim ÅIíçȯêÎÈè"
+"ܹñ: %s"
+
+#, c-format
+msgid "E1258: No '.' after imported name: %s"
+msgstr "E1258: C|[g¼ÌãÉ '.' ª èܹñ: %s"
+
+#, c-format
+msgid "E1259: Missing name after imported name: %s"
+msgstr "E1259: C|[g¼ÌãɼOª èܹñ: %s"
+
+#, c-format
+msgid "E1260: Cannot unlet an imported item: %s"
+msgstr "E1260: C|[g³ê½vfÍunletūܹñ: %s"
+
+msgid "E1261: Cannot import .vim without using \"as\""
+msgstr "E1261: \"as\" ðgí¸É .vim ðC|[g·é±ÆÍūܹñ"
+
+#, c-format
+msgid "E1262: Cannot import the same script twice: %s"
+msgstr "E1262: ¯¶XNvgð2ñC|[g·é±ÆÍūܹñ: %s"
+
+msgid "E1263: Using autoload in a script not under an autoload directory"
+msgstr "E1263: autoloadfBNgɳ¢XNvgÅautoloadðgÁĢܷ"
+
+#, c-format
+msgid "E1264: Autoload import cannot use absolute or relative path: %s"
+msgstr ""
+"E1264: autoloadC|[gÅâÎܽÍÎpXðg¤±ÆÍūܹñ: %s"
+
+msgid "--No lines in buffer--"
+msgstr "--obt@Ésª èܹñ--"
msgid "search hit TOP, continuing at BOTTOM"
msgstr "ãÜÅõµ½ÌźÉßèÜ·"
@@ -7029,6 +8132,9 @@
msgid "search hit BOTTOM, continuing at TOP"
msgstr "ºÜÅõµ½ÌÅãÉßèÜ·"
+msgid " line "
+msgstr " s "
+
#, c-format
msgid "Need encryption key for \"%s\""
msgstr "ÃL[ªKvÅ·: \"%s\""
@@ -7061,7 +8167,7 @@
#, c-format
msgid ""
"expected int(), long() or something supporting coercing to long(), but got %s"
-msgstr "long() ©»êÖÏ·Â\\Èà̪úÒ³êÄ¢éÌÉ %s ŵ½"
+msgstr "int(), long() ©»êÖÏ·Â\\Èà̪úÒ³êÄ¢éÌÉ %s ŵ½"
#, c-format
msgid "expected int() or something supporting coercing to int(), but got %s"
@@ -7086,9 +8192,6 @@
msgid "invalid attribute: %s"
msgstr "³øÈ®«Å·: %s"
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: I/OIuWFNgÌú»G["
-
msgid "failed to change directory"
msgstr "«ÌÏXɸsµÜµ½"
@@ -7128,7 +8231,7 @@
#, c-format
msgid "internal error: failed to get Vim list item %d"
-msgstr "àG[: vimÌXgvf %d Ìæ¾É¸sµÜµ½"
+msgstr "àG[: VimÌXgvf %d Ìæ¾É¸sµÜµ½"
msgid "slice step cannot be zero"
msgstr "XCXÌXebvÉ 0 Íwèūܹñ"
@@ -7139,7 +8242,7 @@
#, c-format
msgid "internal error: no Vim list item %d"
-msgstr "àG[: vimÌXgvf %d Í èܹñ"
+msgstr "àG[: VimÌXgvf %d Í èܹñ"
msgid "internal error: not enough list items"
msgstr "àG[: XgÉ\\ªÈvfª èܹñ"
@@ -7199,7 +8302,7 @@
msgstr "í³ê½EBhEðQÆµæ¤ÆµÜµ½"
msgid "readonly attribute: buffer"
-msgstr "Çêp®«: obt@["
+msgstr "Çêp®«: obt@"
msgid "cursor position outside buffer"
msgstr "J[\\Êuªobt@ÌO¤Å·"
@@ -7244,23 +8347,17 @@
msgid "failed to run the code"
msgstr "R[hÌÀsɸsµÜµ½"
-msgid "E858: Eval did not return a valid python object"
-msgstr "E858: ®]¿ÍLøÈpythonIuWFNgðԵܹñŵ½"
-
-msgid "E859: Failed to convert returned python object to a Vim value"
-msgstr "E859: Ô³ê½pythonIuWFNgðvimÌlÉϷūܹñŵ½"
-
#, c-format
msgid "unable to convert %s to a Vim dictionary"
-msgstr "%s vimÌ«^ÉϷūܹñ"
+msgstr "%s ðVimÌ«ÉϷūܹñ"
#, c-format
msgid "unable to convert %s to a Vim list"
-msgstr "%s ðvimÌXgÉϷūܹñ"
+msgstr "%s ðVimÌXgÉϷūܹñ"
#, c-format
msgid "unable to convert %s to a Vim structure"
-msgstr "%s ðvimÌ\\¢ÌÉϷūܹñ"
+msgstr "%s ðVimÌ\\¢ÌÉϷūܹñ"
msgid "internal error: NULL reference passed"
msgstr "àG[: NULLQƪn³êܵ½"
@@ -7330,6 +8427,7 @@
"C++\\[X (*.cpp, *.hpp)\t*.cpp;*.hpp\n"
"Vimt@C (*.vim, _vimrc, _gvimrc)\t*.vim;_vimrc;_gvimrc\n"
+# No need to translate this.
#~ msgid "GVim"
#~ msgstr ""
@@ -7342,8 +8440,1396 @@
msgid "Text;editor;"
msgstr "eLXg;GfB^;"
-#~ msgid "gvim"
-#~ msgstr ""
-
+# No need to translate this.
#~ msgid "Vim"
#~ msgstr ""
+
+msgid "(local to window)"
+msgstr "(EBhEÉ¢Ä[J)"
+
+msgid "(local to buffer)"
+msgstr "(obt@É¢Ä[J)"
+
+msgid "(global or local to buffer)"
+msgstr "(O[o^obt@É¢Ä[J)"
+
+msgid ""
+"\" Each \"set\" line shows the current value of an option (on the left)."
+msgstr "\" »ê¼êÌ \"set\" sÍIvVÌ»ÝÌlð(¶¤É)¦µÄ¢Ü·B"
+
+msgid "\" Hit <Enter> on a \"set\" line to execute it."
+msgstr "\" \"set\" sÅ <Enter> ðÅÂÆ»êªÀs³êÜ·B"
+
+msgid "\" A boolean option will be toggled."
+msgstr "\" ØÖIvVÍØèÖ¦çêÜ·B"
+
+msgid ""
+"\" For other options you can edit the value before hitting "
+"<Enter>."
+msgstr ""
+"\" »Ì¼ÌIvVÍ <Enter> ðÅÂOÉlðÒW·é±ÆªÅ«Ü"
+"·B"
+
+msgid "\" Hit <Enter> on a help line to open a help window on this option."
+msgstr ""
+"\" wvsÅ <Enter> ðÅÂÆA±ÌIvVÌÖvEBhEªJ«Ü·B"
+
+msgid "\" Hit <Enter> on an index line to jump there."
+msgstr "\" CfbNXsÅ <Enter> ðÅÂÆA»±ÉWvµÜ·B"
+
+msgid "\" Hit <Space> on a \"set\" line to refresh it."
+msgstr "\" \"set\" sÅ <Spece> ðÅÂÆAÅVÌlªÇÜêÜ·B"
+
+msgid "important"
+msgstr "dv"
+
+msgid "behave very Vi compatible (not advisable)"
+msgstr "Vi ÆÌÝ·«ðñíÉ·é (]ܵȢ)"
+
+msgid "list of flags to specify Vi compatibility"
+msgstr "Vi ÆÌÝ·«ðwè·étOÌXg"
+
+msgid "use Insert mode as the default mode"
+msgstr "}ü[hðùèÌ[hƵÄg¤"
+
+msgid "paste mode, insert typed text literally"
+msgstr "paste [hA^Cv³ê½eLXgð»ÌÜÜ}ü·é"
+
+msgid "key sequence to toggle paste mode"
+msgstr "paste [hðØèÖ¦é½ßÌL[ñ"
+
+msgid "list of directories used for runtime files and plugins"
+msgstr "^Ct@CÆvOCÉgíêéfBNgÌXg"
+
+msgid "list of directories used for plugin packages"
+msgstr "vOCpbP[WÉgíêéfBNgÌXg"
+
+msgid "name of the main help file"
+msgstr "CÌwvt@C̼O"
+
+msgid "moving around, searching and patterns"
+msgstr "Ú®AõÆp^["
+
+msgid "list of flags specifying which commands wrap to another line"
+msgstr "ÇÌR}hªsðܽ®©ðwè·étOÌXg"
+
+msgid ""
+"many jump commands move the cursor to the first non-blank\n"
+"character of a line"
+msgstr "½ÌWv½ßÅAJ[\\ªsàÌÅÌñó¶ÉÚ®·é"
+
+msgid "nroff macro names that separate paragraphs"
+msgstr "iðª¯é½ßÌ nroff }N̼O"
+
+msgid "nroff macro names that separate sections"
+msgstr "Íðª¯é½ßÌ nroff }N̼O"
+
+msgid "list of directory names used for file searching"
+msgstr "t@CÌõÉp¢çêéfBNg¼ÌXg"
+
+msgid ":cd without argument goes to the home directory"
+msgstr "ø³µÌ :cd Åz[fBNgÉÚ®·é"
+
+msgid "list of directory names used for :cd"
+msgstr ":cd Ép¢çêéfBNg¼ÌXg"
+
+msgid "change to directory of file in buffer"
+msgstr "obt@àÌt@CÌfBNgÉÏX·é"
+
+msgid "change to pwd of shell in terminal buffer"
+msgstr "[obt@àÌVFÌ pwd ÉÏX·é"
+
+msgid "search commands wrap around the end of the buffer"
+msgstr "õR}hªobt@Ìö/æªðܽ®"
+
+msgid "show match for partly typed search command"
+msgstr "ªIÉüͳê½õR}hÌ}b`ð\\¦·é"
+
+msgid "change the way backslashes are used in search patterns"
+msgstr "õp^[àÌobNXbV
̵¢ðÏX·é"
+
+msgid "select the default regexp engine used"
+msgstr "ùèÅgíêé³K\\»GWðIð·é"
+
+msgid "ignore case when using a search pattern"
+msgstr "õp^[ɨ¢Äå¶Æ¬¶ðæÊµÈ¢"
+
+msgid "override 'ignorecase' when pattern has upper case characters"
+msgstr "õp^[ªå¶ðÜñÅ¢½ç 'ignorecase' ðã«·é"
+
+msgid "what method to use for changing case of letters"
+msgstr "å¶E¬¶ðÏX·éÛÉÇÌû@ðg¤©"
+
+msgid "maximum amount of memory in Kbyte used for pattern matching"
+msgstr "p^[}b`OÉg¤ÅåÊ (Kbyte)"
+
+msgid "pattern for a macro definition line"
+msgstr "}Nè`s̽ßÌp^["
+
+msgid "pattern for an include-file line"
+msgstr "include s̽ßÌp^["
+
+msgid "expression used to transform an include line to a file name"
+msgstr "include sðt@C¼ÉÏ··é½ßÉgíêé®"
+
+msgid "tags"
+msgstr "^O"
+
+msgid "use binary searching in tags files"
+msgstr "tags t@CàÅñªTõðg¤"
+
+msgid "number of significant characters in a tag name or zero"
+msgstr "^O¼ÅLøÉÈé¶A é¢Í["
+
+msgid "list of file names to search for tags"
+msgstr "tags ðõ·ét@C¼ÌXg"
+
+msgid ""
+"how to handle case when searching in tags files:\n"
+"\"followic\" to follow 'ignorecase', \"ignore\" or \"match\""
+msgstr ""
+"^Ot@Càðõ·éÆ«É嶬¶ðǤµ¤©:\n"
+"'ignorecase' É]¤Èç \"followic\"A é¢Í \"ignore\" © \"match\""
+
+msgid "file names in a tags file are relative to the tags file"
+msgstr "tags t@CàÌt@C¼Í tags t@C©çÌÎpX"
+
+msgid "a :tag command will use the tagstack"
+msgstr ":tag R}hÍ^OX^bNðg¤"
+
+msgid "when completing tags in Insert mode show more info"
+msgstr "}ü[hÅ^Oðâ®·éÆ«Éæè½Ìîñð\\¦·é"
+
+msgid "a function to be used to perform tag searches"
+msgstr "^OÌõðÀs·éÛÉgíêéÖ"
+
+msgid "command for executing cscope"
+msgstr "cscope ðÀs·éR}h"
+
+msgid "use cscope for tag commands"
+msgstr "tag R}hÉ cscope ðg¤"
+
+msgid "0 or 1; the order in which \":cstag\" performs a search"
+msgstr "0 © 1; \":cstag\" ªõðÀs·éÛÌ"
+
+msgid "give messages when adding a cscope database"
+msgstr "cscope Ìf[^x[XÉÇÁ·éÛÉbZ[Wð\\¦"
+
+msgid "how many components of the path to show"
+msgstr "pXÌvfð½ÂÜÅ\\¦·é©"
+
+msgid "when to open a quickfix window for cscope"
+msgstr "cscope ̽ßÉ quickfix EBhEð¢ÂJ©"
+
+msgid "file names in a cscope file are relative to that file"
+msgstr "cscope t@CàÌt@C¼Í»Ìt@C©çÌÎpX"
+
+msgid "displaying text"
+msgstr "eLXgÌ\\¦"
+
+msgid "number of lines to scroll for CTRL-U and CTRL-D"
+msgstr "CTRL-U Æ CTRL-D ÅXN[·és"
+
+msgid "number of screen lines to show around the cursor"
+msgstr "J[\\ÌãºÉ\\¦³êéXN[s"
+
+msgid "long lines wrap"
+msgstr "·¢sðÜèÔµÄ\\¦·é"
+
+msgid "wrap long lines at a character in 'breakat'"
+msgstr "'breakat' ̶ŷ¢sðÜèÔ·"
+
+msgid "preserve indentation in wrapped text"
+msgstr "ÜèÔ³ê½eLXgÅCfgðÛ·é"
+
+msgid "adjust breakindent behaviour"
+msgstr "breakindent ̮𲮷é"
+
+msgid "which characters might cause a line break"
+msgstr "ÇÌ¶ÌÆ±ëÅsªÜèÔ³êé©"
+
+msgid "string to put before wrapped screen lines"
+msgstr "ÜèÔ³ê½XN[sÌOÉ\\¦³êé¶ñ"
+
+msgid "minimal number of columns to scroll horizontally"
+msgstr "
½XN[ÌŬ
"
+
+msgid "minimal number of columns to keep left and right of the cursor"
+msgstr "J[\\̶EÉ\\¦·éŬ
"
+
+msgid ""
+"include \"lastline\" to show the last line even if it doesn't fit\n"
+"include \"uhex\" to show unprintable characters as a hex number"
+msgstr ""
+"ÅãÌsªûÜçÈ¢êÅà\\¦·éÉÍ \"lastline\" ðÜß鱯\n"
+"\\¦Å«È¢¶ð 16 iÅ\\¦·éÉÍ \"uhex\" ðÜß鱯"
+
+msgid "characters to use for the status line, folds and filler lines"
+msgstr "Xe[^XsAÜôÝAtB[sÉgíêé¶"
+
+msgid "number of lines used for the command-line"
+msgstr "R}hCÉgíêés"
+
+msgid "width of the display"
+msgstr "æÊÌ"
+
+msgid "number of lines in the display"
+msgstr "æÊÌs"
+
+msgid "number of lines to scroll for CTRL-F and CTRL-B"
+msgstr "CTRL-F Æ CTRL-B ÅXN[·és"
+
+msgid "don't redraw while executing macros"
+msgstr "}NðÀsÉÄ`æµÈ¢"
+
+msgid "timeout for 'hlsearch' and :match highlighting in msec"
+msgstr "'hlsearch' Æ :match ÌnCCgÌ^CAEg (~b)"
+
+msgid ""
+"delay in msec for each char written to the display\n"
+"(for debugging)"
+msgstr ""
+"»ê¼ê̶ªæÊÉ`©êéÜÅÌxÔ (~b)\n"
+"(fobOp)"
+
+msgid "show <Tab> as ^I and end-of-line as $"
+msgstr "<Tab> ð ^I ƵÄ\\¦µAüsð $ ƵÄ\\¦·é"
+
+msgid "list of strings used for list mode"
+msgstr "Xg[hÅgíêé¶ñÌXg"
+
+msgid "show the line number for each line"
+msgstr "»ê¼êÌsÉsÔð\\¦·é"
+
+msgid "show the relative line number for each line"
+msgstr "»ê¼êÌsÉÎsÔð\\¦·é"
+
+msgid "number of columns to use for the line number"
+msgstr "sÔÉgíêé
"
+
+msgid "controls whether concealable text is hidden"
+msgstr "conceal Â\\ÈeLXgðB·©Ç¤©ð§ä·é"
+
+msgid "modes in which text in the cursor line can be concealed"
+msgstr "J[\\sÌeLXgð conceal \\¦·é[h"
+
+msgid "syntax, highlighting and spelling"
+msgstr "\\¶nCCgÆXy`FbN"
+
+msgid "\"dark\" or \"light\"; the background color brightness"
+msgstr "\"dark\" © \"light\"; wiF̾é³"
+
+msgid "type of file; triggers the FileType event when set"
+msgstr "t@CÌ^Cv; Zbg³êéÆ FileType Cxgª¶·é"
+
+msgid "name of syntax highlighting used"
+msgstr "gp³êé\\¶nCCg̼O"
+
+msgid "maximum column to look for syntax items"
+msgstr "\\¶ACeðõ·éÅå
"
+
+msgid "which highlighting to use for various occasions"
+msgstr "lXÈÎÛÉεÄÇÌnCCg\\¦ðg¤©"
+
+msgid "highlight all matches for the last used search pattern"
+msgstr "ÅãÌõp^[ÉηéSÄÌ}b`ðnCCg\\¦·é"
+
+msgid "highlight group to use for the window"
+msgstr "±ÌEBhEÉg¤nCCgO[v"
+
+msgid "use GUI colors for the terminal"
+msgstr "[Å GUI J[ðg¤"
+
+msgid "highlight the screen column of the cursor"
+msgstr "J[\\Ì éæÊãÌ
ðnCCg\\¦·é"
+
+msgid "highlight the screen line of the cursor"
+msgstr "J[\\Ì éæÊãÌsðnCCg\\¦·é"
+
+msgid "specifies which area 'cursorline' highlights"
+msgstr "'cursorline' ªÇÌÌæðnCCg\\¦·é©wè·é"
+
+msgid "columns to highlight"
+msgstr "nCCg\\¦·é
"
+
+msgid "highlight spelling mistakes"
+msgstr "Xy~XðnCCg\\¦·é"
+
+msgid "list of accepted languages"
+msgstr "ó¯t¯é¾êÌXg"
+
+msgid "file that \"zg\" adds good words to"
+msgstr "\"zg\" ųµ¢PêðÇÁ·ét@C"
+
+msgid "pattern to locate the end of a sentence"
+msgstr "¶Ìöð©Â¯éÌÉg¤p^["
+
+msgid "flags to change how spell checking works"
+msgstr "ÇÌæ¤ÉXy`FbNª®ì·é©ðÏX·étO"
+
+msgid "methods used to suggest corrections"
+msgstr "C³ðñÄ·éÛÉgíêéû@"
+
+msgid "amount of memory used by :mkspell before compressing"
+msgstr "³kÌOÉ :mkspell ÅgíêéÊ"
+
+msgid "multiple windows"
+msgstr "¡EBhE"
+
+msgid "0, 1 or 2; when to use a status line for the last window"
+msgstr "0, 1 Ü½Í 2; ÅãÌEBhEÌXe[^Xsª¢Âgíêé©"
+
+msgid "alternate format to be used for a status line"
+msgstr "Xe[^XsÉgíêé®"
+
+msgid "make all windows the same size when adding/removing windows"
+msgstr "EBhEðÇÁ/í·éÆ«ÉSEBhEÌTCYðµ·é"
+
+msgid "in which direction 'equalalways' works: \"ver\", \"hor\" or \"both\""
+msgstr "ÇÌûüÉ 'equalalways' ª©: \"ver\", \"hor\" Ü½Í \"both\""
+
+msgid "minimal number of lines used for the current window"
+msgstr "»ÝÌEBhEÉgíêéŬs"
+
+msgid "minimal number of lines used for any window"
+msgstr "CÓÌEBhEÉgíêéŬs"
+
+msgid "keep the height of the window"
+msgstr "EBhE̳ðÛÂ"
+
+msgid "keep the width of the window"
+msgstr "EBhEÌðÛÂ"
+
+msgid "minimal number of columns used for the current window"
+msgstr "»ÝÌEBhEÉgíêéŬ
"
+
+msgid "minimal number of columns used for any window"
+msgstr "CÓÌEBhEÉgíêéŬ
"
+
+msgid "initial height of the help window"
+msgstr "wvEBhEÌJn̳"
+
+msgid "use a popup window for preview"
+msgstr "vr
[É|bvAbvEBhEðgp·é"
+
+msgid "default height for the preview window"
+msgstr "vr
[EBhEÌùè̳"
+
+msgid "identifies the preview window"
+msgstr "vr
[EBhEð¯Ê·é"
+
+msgid "don't unload a buffer when no longer shown in a window"
+msgstr "obt@ªEBhEÉ\\¦³êĢȢƫÉA[hµÈ¢"
+
+msgid ""
+"\"useopen\" and/or \"split\"; which window to use when jumping\n"
+"to a buffer"
+msgstr ""
+"\"useopen\" ©Â/Ü½Í \"split\"; obt@ÉWv·éÆ«É\n"
+"ÇÌEBhEðg¤©"
+
+msgid "a new window is put below the current one"
+msgstr "Vµ¢EBhEÍ»ÝÌàÌ̺Éu©êé"
+
+msgid "a new window is put right of the current one"
+msgstr "Vµ¢EBhEÍ»ÝÌàÌÌEÉu©êé"
+
+msgid "this window scrolls together with other bound windows"
+msgstr "±ÌEBhEͼ̯²EBhEÆêÉXN[·é"
+
+msgid "\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'"
+msgstr ""
+"\"ver\", \"hor\" ©Â/Ü½Í \"jump\"; 'scrollbind' ÌIvVÌ\n"
+"Xg"
+
+msgid "this window's cursor moves together with other bound windows"
+msgstr "±ÌEBhEÌJ[\\ͼ̯²EBhEÆêÉ®"
+
+msgid "size of a terminal window"
+msgstr "[EBhEÌTCY"
+
+msgid "key that precedes Vim commands in a terminal window"
+msgstr "[EBhEÅ Vim ÌR}hÌOÉüÍ·éL["
+
+msgid "max number of lines to keep for scrollback in a terminal window"
+msgstr "[EBhEÅXN[obN̽ßÉÛ·éÅås"
+
+msgid "type of pty to use for a terminal window"
+msgstr "[EBhEÅg¤ pty ÌíÞ"
+
+msgid "name of the winpty dynamic library"
+msgstr "winpty ®ICu̼O"
+
+msgid "multiple tab pages"
+msgstr "¡^uy[W"
+
+msgid "0, 1 or 2; when to use a tab pages line"
+msgstr "0, 1 Ü½Í 2; ^uy[Wsð¢Âg¤©"
+
+msgid "maximum number of tab pages to open for -p and \"tab all\""
+msgstr "-p Æ \"tab all\" ÅJ©êé^uy[WÌÅå"
+
+msgid "custom tab pages line"
+msgstr "JX^Ì^uy[Ws"
+
+msgid "custom tab page label for the GUI"
+msgstr "JX^Ì GUI Ì^uy[Wx"
+
+msgid "custom tab page tooltip for the GUI"
+msgstr "JX^Ì GUI Ì^uy[Wc[`bv"
+
+msgid "terminal"
+msgstr "["
+
+msgid "name of the used terminal"
+msgstr "gp³êÄ¢é[̼O"
+
+msgid "alias for 'term'"
+msgstr "'term' Ìʼ"
+
+msgid "check built-in termcaps first"
+msgstr "gÝÌ termcap ðÅÉ`FbN·é"
+
+msgid "terminal connection is fast"
+msgstr "[ÌÚ±ª¬Å é"
+
+msgid "request terminal key codes when an xterm is detected"
+msgstr "xtermðoµ½Æ«É[ÌL[R[hðv·é"
+
+msgid "terminal that requires extra redrawing"
+msgstr "ÇÁÌÄ`æªKvÈ["
+
+msgid "recognize keys that start with <Esc> in Insert mode"
+msgstr "}ü[hÅ <Esc> ÅnÜéL[ðF¯·é"
+
+msgid "minimal number of lines to scroll at a time"
+msgstr "êxÉXN[·éŬs"
+
+msgid "maximum number of lines to use scrolling instead of redrawing"
+msgstr "Ä`æÅÍÈXN[ðg¤Åås"
+
+msgid "specifies what the cursor looks like in different modes"
+msgstr "»ê¼êÌ[hàÅÌJ[\\ÌOÏðwè"
+
+msgid "show info in the window title"
+msgstr "EBhE^CgÉîñð\\¦"
+
+msgid "percentage of 'columns' used for the window title"
+msgstr "EBhE^CgÉgíêé 'columns' Ì (p[ZgPÊ)"
+
+msgid "when not empty, string to be used for the window title"
+msgstr "óÅȢƫAEBhE^CgÉgíêé¶ñ"
+
+msgid "string to restore the title to when exiting Vim"
+msgstr "Vim ÌI¹É^Cgɳ·é¶ñ"
+
+msgid "set the text of the icon for this window"
+msgstr "±ÌEBhEÌACRÌeLXgðÝè"
+
+msgid "when not empty, text for the icon of this window"
+msgstr "óÅȢƫA±ÌEBhEÌACRÉgíêéeLXg"
+
+msgid "restore the screen contents when exiting Vim"
+msgstr "Vim ÌI¹ÉæÊÌàeð³·é"
+
+msgid "using the mouse"
+msgstr "}EXÌgp"
+
+msgid "list of flags for using the mouse"
+msgstr "}EXðg¤½ßÌtOÌXg"
+
+msgid "the window with the mouse pointer becomes the current one"
+msgstr "}EX|C^Ì éEBhEªANeBuÉÈé"
+
+msgid "the window with the mouse pointer scrolls with the mouse wheel"
+msgstr "}EX|C^Ì éEBhEª}EXzC[ÅXN[·é"
+
+msgid "hide the mouse pointer while typing"
+msgstr "¶ÌüÍÉ}EX|C^ðB·"
+
+msgid ""
+"\"extend\", \"popup\" or \"popup_setpos\"; what the right\n"
+"mouse button is used for"
+msgstr ""
+"\"extend\", \"popup\" é¢Í \"popup_setpos\"; }EXÌE{^ð\n"
+"½Ég¤©"
+
+msgid "maximum time in msec to recognize a double-click"
+msgstr "_uNbNƵÄF¯·éÅåÔ (~b)"
+
+msgid "\"xterm\", \"xterm2\", \"sgr\", etc.; type of mouse"
+msgstr "\"xterm\", \"xterm2\", \"sgr\" ÈÇ; }EXÌíÞ"
+
+msgid "what the mouse pointer looks like in different modes"
+msgstr "»ê¼êÌ[hàÅÌ}EX|C^ÌOÏðwè"
+
+msgid "GUI"
+msgstr "GUI"
+
+msgid "list of font names to be used in the GUI"
+msgstr "GUI ÅgíêétHg¼ÌXg"
+
+msgid "pair of fonts to be used, for multibyte editing"
+msgstr "}`oCgÌÒWÅgíêétHgÌyA"
+
+msgid "list of font names to be used for double-wide characters"
+msgstr "Sp¶ÉgíêétHg¼ÌXg"
+
+msgid "use smooth, antialiased fonts"
+msgstr "Èßç©ÅA`GCAX³ê½tHgðg¤"
+
+msgid "list of flags that specify how the GUI works"
+msgstr "GUI ªÇ¤®©ðwè·étOÌXg"
+
+msgid "\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar"
+msgstr ""
+"\"icons\", \"text\" ©Â/ é¢Í \"tooltips\"; ÇÌæ¤É\n"
+"c[o[ð\\¦·é©"
+
+msgid "size of toolbar icons"
+msgstr "c[o[ACRÌTCY"
+
+msgid "room (in pixels) left above/below the window"
+msgstr "EBhEÌãºÌ] (sNZPÊ)"
+
+msgid "list of ASCII characters that can be combined into complex shapes"
+msgstr "¡`óɳêéASCII¶ÌXg"
+
+msgid "options for text rendering"
+msgstr "eLXg_O̽ßÌIvV"
+
+msgid "use a pseudo-tty for I/O to external commands"
+msgstr "OR}hÌ I/O É^ tty ðg¤"
+
+msgid ""
+"\"last\", \"buffer\" or \"current\": which directory used for the file "
+"browser"
+msgstr ""
+"\"last\", \"buffer\" é¢Í \"current\": t@CuEUÅÇÌ\n"
+"fBNgðg¤©"
+
+msgid "language to be used for the menus"
+msgstr "j
[Ågíêé¾ê"
+
+msgid "maximum number of items in one menu"
+msgstr "1 ÂÌj
[ÌÅåÚ"
+
+msgid "\"no\", \"yes\" or \"menu\"; how to use the ALT key"
+msgstr "\"no\", \"yes\" Ü½Í \"menu\"; ALT L[ðǤg¤©"
+
+msgid "number of pixel lines to use between characters"
+msgstr "sÔÌÌsNZ"
+
+msgid "delay in milliseconds before a balloon may pop up"
+msgstr "o[\\¦ªoéÜÅÌÔ (~b)"
+
+msgid "use balloon evaluation in the GUI"
+msgstr "GUI Åo[]¿ðg¤"
+
+msgid "use balloon evaluation in the terminal"
+msgstr "[Åo[]¿ðg¤"
+
+msgid "expression to show in balloon eval"
+msgstr "o[]¿É\\¦·é®"
+
+msgid "printing"
+msgstr "óü"
+
+msgid "list of items that control the format of :hardcopy output"
+msgstr ":hardcopy oÍÌ®ð§ä·évfÌXg"
+
+msgid "name of the printer to be used for :hardcopy"
+msgstr ":hardcopy Ågíêév^̼O"
+
+msgid "expression used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy Å PostScript t@CÌóüÉgíêé®"
+
+msgid "name of the font to be used for :hardcopy"
+msgstr ":hardcopy ÅgíêétHg̼O"
+
+msgid "format of the header used for :hardcopy"
+msgstr ":hardcopy Ìwb_Ågíêé®"
+
+msgid "encoding used to print the PostScript file for :hardcopy"
+msgstr ":hardcopy Å PostScript t@CÌóüÉgíêéGR[fBO"
+
+msgid "the CJK character set to be used for CJK output from :hardcopy"
+msgstr ":hardcopy ÌoÍÌÌ CJK ¶Égíêé¶W"
+
+msgid "list of font names to be used for CJK output from :hardcopy"
+msgstr ":hardcopy ÌoÍÌÌ CJK ¶ÉgíêétHg¼ÌXg"
+
+msgid "messages and info"
+msgstr "bZ[WÆîñ"
+
+msgid "add 's' flag in 'shortmess' (don't show search message)"
+msgstr "'s' tOð 'shortmess' ÉÇÁ (õbZ[Wð\\¦µÈ¢)"
+
+msgid "list of flags to make messages shorter"
+msgstr "bZ[WðZ·é½ßÌtOÌXg"
+
+msgid "show (partial) command keys in the status line"
+msgstr "R}h (Ìê) ðXe[^XsÉ\\¦"
+
+msgid "display the current mode in the status line"
+msgstr "»ÝÌ[hðXe[^XsÉ\\¦"
+
+msgid "show cursor position below each window"
+msgstr "J[\\Êuð»ê¼êÌEBhE̺É\\¦"
+
+msgid "alternate format to be used for the ruler"
+msgstr "[[ÉgíêéãÖ®"
+
+msgid "threshold for reporting number of changed lines"
+msgstr "ÏX³ê½sÌÌñªoéèl"
+
+msgid "the higher the more messages are given"
+msgstr "lªå«¢ÙÇÚ×ÈbZ[Wª\\¦³êé"
+
+msgid "file to write messages in"
+msgstr "bZ[WðÞt@C"
+
+msgid "pause listings when the screen is full"
+msgstr "æÊªêtÉÈÁ½Æ«ê\\¦ðêâ~"
+
+msgid "start a dialog when a command fails"
+msgstr "R}hª¸sµ½Æ«É_CAOðJ"
+
+msgid "ring the bell for error messages"
+msgstr "G[bZ[WÅxðÂç·"
+
+msgid "use a visual bell instead of beeping"
+msgstr "r[v¹ÌãíèÉrW
Axðg¤"
+
+msgid "do not ring the bell for these reasons"
+msgstr "±êçÌRÉÍxðÂç³È¢"
+
+msgid "list of preferred languages for finding help"
+msgstr "wvð©Â¯éÛÌ]ܵ¢¾êÌXg"
+
+msgid "selecting text"
+msgstr "eLXgIð"
+
+msgid "\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves"
+msgstr ""
+"\"old\", \"inclusive\" Ü½Í \"exclusive\"; eLXgIðªÇ¤\n"
+"U¤©"
+
+msgid ""
+"\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode\n"
+"instead of Visual mode"
+msgstr ""
+"\"mouse\", \"key\" ©Â/Ü½Í \"cmd\"; ¢ÂrW
A[hÅÍ\n"
+"ÈIð[hðJn·é©"
+
+msgid ""
+"\"unnamed\" to use the * register like unnamed register\n"
+"\"autoselect\" to always put selected text on the clipboard"
+msgstr ""
+"\"unnamed\"; * WX^ð³¼WX^Ư¶æ¤Ég¤\n"
+"\"autoselect\"; íÉIð³ê½eLXgðNbv{[hÉRs["
+
+msgid "\"startsel\" and/or \"stopsel\"; what special keys can do"
+msgstr "\"startsel\" ©Â/Ü½Í \"stopsel\"; ÁÊÈL[ª½ð·é©"
+
+msgid "editing text"
+msgstr "eLXgÒW"
+
+msgid "maximum number of changes that can be undone"
+msgstr "AhDÂ\\ÈÏXÌÅål"
+
+msgid "automatically save and restore undo history"
+msgstr "AhDðð©®ÅÛ¶E³"
+
+msgid "list of directories for undo files"
+msgstr "AhDt@CpÌfBNgÌXg"
+
+msgid "maximum number lines to save for undo on a buffer reload"
+msgstr "obt@Ì[hÉAhD̽ßÉÛ¶·éÅås"
+
+msgid "changes have been made and not written to a file"
+msgstr "ÏXªsí꽪t@CÉÜêĢȢ"
+
+msgid "buffer is not to be written"
+msgstr "obt@ÍÜêÈ¢"
+
+msgid "changes to the text are possible"
+msgstr "eLXgÌÏXªÂ\\"
+
+msgid "line length above which to break a line"
+msgstr "±êæè·¢sÍüs³êé"
+
+msgid "margin from the right in which to break a line"
+msgstr "üs·éÛÌE©çÌ}[W"
+
+msgid "specifies what <BS>, CTRL-W, etc. can do in Insert mode"
+msgstr "}ü[hÅ <BS>, CTRL-W ª½ðÅ«é©ðwè"
+
+msgid "definition of what comment lines look like"
+msgstr "RgsªÇ¤ÈÁÄ¢é©Ìè`"
+
+msgid "list of flags that tell how automatic formatting works"
+msgstr "©®®`ªÇÌæ¤É®ì·é©ðßétOÌXg"
+
+msgid "pattern to recognize a numbered list"
+msgstr "t«ÌÓð«ðF¯·ép^["
+
+msgid "expression used for \"gq\" to format lines"
+msgstr "\"gq\" Åsð®`·éÆ«Égíêé®"
+
+msgid "specifies how Insert mode completion works for CTRL-N and CTRL-P"
+msgstr "}ü[h⮪ CTRL-N Æ CTRL-P ÅǤ®ì·é©ðwè"
+
+msgid "whether to use a popup menu for Insert mode completion"
+msgstr "}ü[hâ®Å|bvAbvj
[ðg¤©Ç¤©"
+
+msgid "options for the Insert mode completion info popup"
+msgstr "}ü[hâ®Ìîñ|bvAbvpÌIvV"
+
+msgid "maximum height of the popup menu"
+msgstr "|bvAbvj
[ÌÅå"
+
+msgid "minimum width of the popup menu"
+msgstr "|bvAbvj
[ÌÅå"
+
+msgid "user defined function for Insert mode completion"
+msgstr "}ü[hâ®pÌ[U[è`Ö"
+
+msgid "function for filetype-specific Insert mode completion"
+msgstr "t@C^CvÅLÌ}ü[hâ®pÖ"
+
+msgid "list of dictionary files for keyword completion"
+msgstr "L[[hâ®pÌ«t@CÌXg"
+
+msgid "list of thesaurus files for keyword completion"
+msgstr "L[[hâ®p̯`êt@CÌXg"
+
+msgid "function used for thesaurus completion"
+msgstr "¯`êâ®ÅgíêéÖ"
+
+msgid "adjust case of a keyword completion match"
+msgstr "L[[hâ®Ì}b`Å嶬¶ð²®"
+
+msgid "enable entering digraphs with c1 <BS> c2"
+msgstr "c1 <BS> c2 Å_COtðüÍÂ\\É·é"
+
+msgid "the \"~\" command behaves like an operator"
+msgstr "\"~\" R}hªIy[^Ìæ¤ÉÓéܤ"
+
+msgid "function called for the \"g@\" operator"
+msgstr "\"g@\" Iy[^ÅÄÎêéÖ"
+
+msgid "when inserting a bracket, briefly jump to its match"
+msgstr "Êðü͵½Æ«ÉAηéÊÉí¸©ÌÔWv"
+
+msgid "tenth of a second to show a match for 'showmatch'"
+msgstr "'showmatch' ÅÎð\\¦·éÔ (0.1bPÊ)"
+
+msgid "list of pairs that match for the \"%\" command"
+msgstr "\"%\" R}hÅ}b`·éyAÌXg"
+
+msgid "use two spaces after '.' when joining a line"
+msgstr "sðA·éÆ«É '.' ÌãÉóð 2 Âüêé"
+
+msgid ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" and/or \"unsigned\"; number formats\n"
+"recognized for CTRL-A and CTRL-X commands"
+msgstr ""
+"\"alpha\", \"octal\", \"hex\", \"bin\" ©Â/Ü½Í \"unsigned\";\n"
+"CTRL-A Æ CTRL-X R}hÅF¯·éÌ®"
+
+msgid "tabs and indenting"
+msgstr "^uÆCfg"
+
+msgid "number of spaces a <Tab> in the text stands for"
+msgstr "1 ÂÌ <Tab> ÉηéóÌ"
+
+msgid "number of spaces used for each step of (auto)indent"
+msgstr "(©®)CfgÌeiKÉgíêéóÌ"
+
+msgid "list of number of spaces a tab counts for"
+msgstr "1 ÂÌ^uª·éóÌÌXg"
+
+msgid "list of number of spaces a soft tabsstop counts for"
+msgstr "1 ÂÌ\\tg^uXgbvÉ·éóÌÌXg"
+
+msgid "a <Tab> in an indent inserts 'shiftwidth' spaces"
+msgstr "CfgàÅÌ <Tab> Í 'shiftwidth' ÂÌóð}ü"
+
+msgid "if non-zero, number of spaces to insert for a <Tab>"
+msgstr "0 ÅȢƫA1 ÂÌ <Tab> Å}ü³êéóÌ"
+
+msgid "round to 'shiftwidth' for \"<<\" and \">>\""
+msgstr "\"<<\" Æ \">>\" Å 'shiftwidth' ÉÛßé"
+
+msgid "expand <Tab> to spaces in Insert mode"
+msgstr "}ü[hÅ <Tab> ðóÉWJ"
+
+msgid "automatically set the indent of a new line"
+msgstr "Vµ¢sÌCfgð©®IÉÝè"
+
+msgid "do clever autoindenting"
+msgstr "«¢©®Cfgðs¤"
+
+msgid "enable specific indenting for C code"
+msgstr "C R[hÉÁLÌCfgðLøÉ·é"
+
+msgid "options for C-indenting"
+msgstr "C CfgpÌIvV"
+
+msgid "keys that trigger C-indenting in Insert mode"
+msgstr "}ü[hÅ C Cfgðø«N±·L["
+
+msgid "list of words that cause more C-indent"
+msgstr "³çÈé C Cfgð¶³¹éPêÌXg"
+
+msgid "expression used to obtain the indent of a line"
+msgstr "sÌCfgð¾é½ßÉgíêé®"
+
+msgid "keys that trigger indenting with 'indentexpr' in Insert mode"
+msgstr "}ü[hÅ 'indentexpr' ÉæéCfgðø«N±·L["
+
+msgid "copy whitespace for indenting from previous line"
+msgstr "OÌs©çCfgÌóðRs["
+
+msgid "preserve kind of whitespace when changing indent"
+msgstr "CfgðÏX·éÆ«ÉóÌíÞðÛ"
+
+msgid "enable lisp mode"
+msgstr "lisp [hðLø»"
+
+msgid "words that change how lisp indenting works"
+msgstr "lisp CfgÌ®ìðÏX·éPêÌXg"
+
+msgid "folding"
+msgstr "ÜôÝ"
+
+msgid "unset to display all folds open"
+msgstr "SÄÌÜôÝðJ¢Ä\\¦·éÉÍItÉ·é"
+
+msgid "folds with a level higher than this number will be closed"
+msgstr "±ÌlæèàxÌ¢ÜôÝͶçêé"
+
+msgid "value for 'foldlevel' when starting to edit a file"
+msgstr "t@CðÒWJn·éÛÌ 'foldlevel' Ìl"
+
+msgid "width of the column used to indicate folds"
+msgstr "ÜôÝð\\¦·éÌÉgíêéñ"
+
+msgid "expression used to display the text of a closed fold"
+msgstr "¶çê½ÜôÝÌeLXgð\\¦·éÌÉgíêé®"
+
+msgid "set to \"all\" to close a fold when the cursor leaves it"
+msgstr "J[\\ªÜôÝð£ê½Æ«É¶éÉÍ \"all\" ÉÝè"
+
+msgid "specifies for which commands a fold will be opened"
+msgstr "ÇÌR}hªÜôÝðJ©ðwè"
+
+msgid "minimum number of screen lines for a fold to be closed"
+msgstr "Üôݪ¶çêéæÊãÌŬs"
+
+msgid "template for comments; used to put the marker in"
+msgstr "RgpÌev[g; }[J[ðÉu½ßÉgíêé"
+
+msgid ""
+"folding type: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" or \"diff\""
+msgstr ""
+"ÜôÝÌíÞ: \"manual\", \"indent\", \"expr\", \"marker\",\n"
+"\"syntax\" Ü½Í \"diff\""
+
+msgid "expression used when 'foldmethod' is \"expr\""
+msgstr "'foldmethod' ª \"expr\" ÌÛÉgíêé®"
+
+msgid "used to ignore lines when 'foldmethod' is \"indent\""
+msgstr "'foldmethod' ª \"indent\" ÌÛÉsð³·é½ßÉgíêé"
+
+msgid "markers used when 'foldmethod' is \"marker\""
+msgstr "'foldmethod' ª \"marker\" ÌÛÉgíêé}[J["
+
+msgid "maximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\""
+msgstr ""
+"'foldmethod' ª \"indent\" Ü½Í \"syntax\" ÌÛÌÜôÝÌ\n"
+"ÅåÌ[³"
+
+msgid "diff mode"
+msgstr "·ª[h"
+
+msgid "use diff mode for the current window"
+msgstr "»ÝÌEBhEÅ·ª[hðg¤"
+
+msgid "options for using diff mode"
+msgstr "·ª[hðg¤½ßÌIvV"
+
+msgid "expression used to obtain a diff file"
+msgstr "·ªt@Cðæ¾·é½ßÉgíêé®"
+
+msgid "expression used to patch a file"
+msgstr "t@CÉpb`ðÄé½ßÉgíêé®"
+
+msgid "mapping"
+msgstr "}bsO"
+
+msgid "maximum depth of mapping"
+msgstr "}bsOÌÅåÌ[³"
+
+msgid "recognize mappings in mapped keys"
+msgstr "}bv³ê½L[Éηé}bsOðF¯·é"
+
+msgid "allow timing out halfway into a mapping"
+msgstr "}bsOÌrÅÌ^CAEgðÂ"
+
+msgid "allow timing out halfway into a key code"
+msgstr "L[R[hÌrÅÌ^CAEgðÂ"
+
+msgid "time in msec for 'timeout'"
+msgstr "'timeout' ÌÔ (~b)"
+
+msgid "time in msec for 'ttimeout'"
+msgstr "'ttimeout' ÌÔ (~b)"
+
+msgid "reading and writing files"
+msgstr "t@CÌÇÝ«"
+
+msgid "enable using settings from modelines when reading a file"
+msgstr "t@CÇÝÉ[hC©çÌÝèÌgpðLøÉ·é"
+
+msgid "allow setting expression options from a modeline"
+msgstr "[hC©ç®Å éIvVðÝè·é±Æð·é"
+
+msgid "number of lines to check for modelines"
+msgstr "[hCpÉ`FbN·és"
+
+msgid "binary file editing"
+msgstr "oCit@CÌÒW"
+
+msgid "last line in the file has an end-of-line"
+msgstr "t@CÌöÌsÉüsª é"
+
+msgid "fixes missing end-of-line at end of text file"
+msgstr "eLXgt@CÌöÉüsªÈ¢êÉC³·é"
+
+msgid "prepend a Byte Order Mark to the file"
+msgstr "oCg}[N (BOM) ðt@CæªÉ¯é"
+
+msgid "end-of-line format: \"dos\", \"unix\" or \"mac\""
+msgstr "üsÌ`®: \"dos\", \"unix\" Ü½Í \"mac\""
+
+msgid "list of file formats to look for when editing a file"
+msgstr "t@CÒWɲ×éüs`®ÌXg"
+
+msgid "obsolete, use 'fileformat'"
+msgstr "p~A'fileformat' ðg¤±Æ"
+
+msgid "obsolete, use 'fileformats'"
+msgstr "p~A'fileformats' ðg¤±Æ"
+
+msgid "writing files is allowed"
+msgstr "t@CÌݪ³êÄ¢é"
+
+msgid "write a backup file before overwriting a file"
+msgstr "t@Cðã«·éOÉobNAbvÉÞ"
+
+msgid "keep a backup after overwriting a file"
+msgstr "t@CÌã«ãÉobNAbvðÛ"
+
+msgid "patterns that specify for which files a backup is not made"
+msgstr "ÇÌt@CÅobNAbNªìçêÈ¢©ðwè·ép^["
+
+msgid "whether to make the backup as a copy or rename the existing file"
+msgstr "obNAbvðù¶Ìt@CÌRs[Æ·é©l[·é©"
+
+msgid "list of directories to put backup files in"
+msgstr "obNAbvt@CðufBNgÌXg"
+
+msgid "file name extension for the backup file"
+msgstr "obNAbvt@CÌg£q"
+
+msgid "automatically write a file when leaving a modified buffer"
+msgstr "ÏX³ê½obt@ð£êéÛÉ©®IÉt@CÉÞ"
+
+msgid "as 'autowrite', but works with more commands"
+msgstr "'autowrite' Ưl¾ªAæè½ÌR}hÅ®ì·é"
+
+msgid "always write without asking for confirmation"
+msgstr "íÉmF³µÉÞ"
+
+msgid "automatically read a file when it was modified outside of Vim"
+msgstr "Vim ÌOÅt@CªÏX³ê½ÛÉ©®IÉÇÞ"
+
+msgid "keep oldest version of a file; specifies file name extension"
+msgstr "t@CÌÅÃÌo[WðÛ; t@CÌg£qðwè"
+
+msgid "forcibly sync the file to disk after writing it"
+msgstr "t@Cðñ¾ãɧIÉfBXNɯú³¹é"
+
+msgid "use 8.3 file names"
+msgstr "8.3 `®Ìt@C¼ðg¤"
+
+msgid "encryption method for file writing: zip, blowfish or blowfish2"
+msgstr "t@CÝ̽ßÌûû®: zip, blowfish Ü½Í blowfish2"
+
+msgid "the swap file"
+msgstr "Xbvt@C"
+
+msgid "list of directories for the swap file"
+msgstr "Xbvt@CpÌfBNgÌXg"
+
+msgid "use a swap file for this buffer"
+msgstr "±Ìobt@ÅXbvt@Cðg¤"
+
+msgid "\"sync\", \"fsync\" or empty; how to flush a swap file to disk"
+msgstr ""
+"\"sync\", \"fsync\" ܽÍó; ÇÌæ¤ÉXbvt@Cð\n"
+"fBXNÉ|«o·©"
+
+msgid "number of characters typed to cause a swap file update"
+msgstr "½¶ü͵½çXbvt@CðXV·é©"
+
+msgid "time in msec after which the swap file will be updated"
+msgstr "Xbvt@CðXV·éÜÅÌÔ (~b)"
+
+msgid "maximum amount of memory in Kbyte used for one buffer"
+msgstr "1 ÂÌobt@½èÌÅåÊ (Kbyte)"
+
+msgid "maximum amount of memory in Kbyte used for all buffers"
+msgstr "SÄÌobt@ÅgíêéÅåÊ (Kbyte)"
+
+msgid "command line editing"
+msgstr "R}hCÒW"
+
+msgid "how many command lines are remembered"
+msgstr "R}hCð½ÂÜÅL¯·é©"
+
+msgid "key that triggers command-line expansion"
+msgstr "R}hCWJðø«N±·L["
+
+msgid "like 'wildchar' but can also be used in a mapping"
+msgstr "'wildchar' Ưl¾ª}bsOàÅàgpÅ«é"
+
+msgid "specifies how command line completion works"
+msgstr "ÇÌæ¤ÉR}hC⮪®ì·é©ðwè"
+
+msgid "empty or \"tagfile\" to list file name of matching tags"
+msgstr "óAܽÍ}b`µ½t@C¼ðê\\¦·éÈç \"tagfile\""
+
+msgid "list of file name extensions that have a lower priority"
+msgstr "á¢DæxðÂg£qÌXg"
+
+msgid "list of file name extensions added when searching for a file"
+msgstr "t@CõÉÇÁ³êég£qÌXg"
+
+msgid "list of patterns to ignore files for file name completion"
+msgstr "t@C¼â®ÌÛɳ·ét@Cp^[ÌXg"
+
+msgid "ignore case when using file names"
+msgstr "t@C¼ðg¤ÛÉ嶬¶Ìá¢ð³"
+
+msgid "ignore case when completing file names"
+msgstr "t@C¼â®ÌÛÉ嶬¶Ìá¢ð³"
+
+msgid "command-line completion shows a list of matches"
+msgstr "R}hCâ®Í}b`Ìêð\\¦·é"
+
+msgid "key used to open the command-line window"
+msgstr "R}hCEBhEðJ½ßÌL["
+
+msgid "height of the command-line window"
+msgstr "R}hCEBhE̳"
+
+msgid "executing external commands"
+msgstr "OR}hÌÀs"
+
+msgid "name of the shell program used for external commands"
+msgstr "OR}hÉgíêéVFvO̼O"
+
+msgid "when to use the shell or directly execute a command"
+msgstr "¢ÂVFðg¤©»êÆà¼ÚOR}hðÀs·é©"
+
+msgid "character(s) to enclose a shell command in"
+msgstr "VFR}hðÍÞøp"
+
+msgid "like 'shellquote' but include the redirection"
+msgstr "'shellquote' Ưl¾ª_CNgðÜÞ"
+
+msgid "characters to escape when 'shellxquote' is ("
+msgstr "'shellxquote' ª ( ÌÉGXP[v³êé¶"
+
+msgid "argument for 'shell' to execute a command"
+msgstr "R}hðÀs·éÛÌ 'shell' Ìø"
+
+msgid "used to redirect command output to a file"
+msgstr "R}hÌoÍðt@CÉ_CNg·éÛÉgíêé"
+
+msgid "use a temp file for shell commands instead of using a pipe"
+msgstr "VFR}hÉpCvðgí¸Éêt@Cðg¤"
+
+msgid "program used for \"=\" command"
+msgstr "\"=\" R}hÉgíêévO"
+
+msgid "program used to format lines with \"gq\" command"
+msgstr "\"gq\" R}hÅsð®`·éÛÉgíêévO"
+
+msgid "program used for the \"K\" command"
+msgstr "\"K\" R}hÉgíêévO"
+
+msgid "warn when using a shell command and a buffer has changes"
+msgstr "obt@ÉÏXª èVFR}hªÀs³ê½ÛÉx·é"
+
+msgid "running make and jumping to errors (quickfix)"
+msgstr "make ÌÀsÆG[ÖÌWv (quickfix)"
+
+msgid "name of the file that contains error messages"
+msgstr "G[bZ[WªüÁÄ¢ét@C̼O"
+
+msgid "list of formats for error messages"
+msgstr "G[bZ[WÌ®ÌXg"
+
+msgid "program used for the \":make\" command"
+msgstr "\":make\" R}hÉgíêévO"
+
+msgid "string used to put the output of \":make\" in the error file"
+msgstr "\":make\" ÌoÍðG[t@CÉÞ½ßÉgíêé¶ñ"
+
+msgid "name of the errorfile for the 'makeprg' command"
+msgstr "'makeprg' R}hpÌG[t@C̼O"
+
+msgid "program used for the \":grep\" command"
+msgstr "\":grep\" R}hÉgíêévO"
+
+msgid "list of formats for output of 'grepprg'"
+msgstr "'grepprg' ÌoÍpÌ®ÌXg"
+
+msgid "encoding of the \":make\" and \":grep\" output"
+msgstr "\":make\" Æ \":grep\" ÌoÍÌGR[fBO"
+
+msgid "function to display text in the quickfix window"
+msgstr "quickfix EBhEÉeLXgð\\¦·é½ßÌÖ"
+
+msgid "system specific"
+msgstr "VXeÅL"
+
+msgid "use forward slashes in file names; for Unix-like shells"
+msgstr "t@C¼ÅXbV
ðg¤; Unix CNÈVFp"
+
+msgid "specifies slash/backslash used for completion"
+msgstr "â®É salsh/backslash ÌÇ¿çðg¤©wè"
+
+msgid "language specific"
+msgstr "¾êÅL"
+
+msgid "specifies the characters in a file name"
+msgstr "t@C¼Égíêé¶ðwè"
+
+msgid "specifies the characters in an identifier"
+msgstr "¯ÊqÉgíêé¶ðwè"
+
+msgid "specifies the characters in a keyword"
+msgstr "L[[hÉgíêé¶ðwè"
+
+msgid "specifies printable characters"
+msgstr "\\¦Â\\ȶðwè"
+
+msgid "specifies escape characters in a string"
+msgstr "¶ñàÌGXP[v¶ðwè"
+
+msgid "display the buffer right-to-left"
+msgstr "obt@ðE©ç¶É\\¦"
+
+msgid "when to edit the command-line right-to-left"
+msgstr "¢ÂR}hCðE©ç¶ÉÒW·é©"
+
+msgid "insert characters backwards"
+msgstr "¶ðtûüÉ}ü"
+
+msgid "allow CTRL-_ in Insert and Command-line mode to toggle 'revins'"
+msgstr "}üER}hC[hÅ CTRL-_ Å 'revins' ÌØèÖ¦ðÂ"
+
+msgid "the ASCII code for the first letter of the Hebrew alphabet"
+msgstr "wuCêAt@xbgÌÅ̶ð\\· ASCII R[h"
+
+msgid "use Hebrew keyboard mapping"
+msgstr "wuCL[{[hÌ}bsOðgp"
+
+msgid "use phonetic Hebrew keyboard mapping"
+msgstr "¹ºwuCL[{[hÌ}bsOðgp"
+
+msgid "prepare for editing Arabic text"
+msgstr "ArAêÌeLXgðÒW·éõ"
+
+msgid "perform shaping of Arabic characters"
+msgstr "ArA¶Ì`ðs¤"
+
+msgid "terminal will perform bidi handling"
+msgstr "[ªoûü (bidi) Ìðs¤"
+
+msgid "name of a keyboard mapping"
+msgstr "L[{[h}bsO̼O"
+
+msgid "list of characters that are translated in Normal mode"
+msgstr "m[}[hÅÏ·³êé¶ÌXg"
+
+msgid "apply 'langmap' to mapped characters"
+msgstr "'langmap' ð}bv³ê½¶ÉKp"
+
+msgid "when set never use IM; overrules following IM options"
+msgstr "IÌÆ« IM ðSgíÈ¢; ÈºÌ IM ÖAIvVÉDæ·é"
+
+msgid "in Insert mode: 1: use :lmap; 2: use IM; 0: neither"
+msgstr "}ü[h: 1: :lmap ðgp; 2: IM ðgp; 0: Ç¿çàsgp"
+
+msgid "input method style, 0: on-the-spot, 1: over-the-spot"
+msgstr "IM ÌX^CA0: on-the-spot, 1: over-the-spot"
+
+msgid "entering a search pattern: 1: use :lmap; 2: use IM; 0: neither"
+msgstr ""
+"õp^[üÍ: 1: :lmap ðgp; 2: IM ðgp;\n"
+"0: Ç¿çàsgp"
+
+msgid "when set always use IM when starting to edit a command line"
+msgstr "IÌÆ«ÍR}hCÒWJnÉíÉ IM ðgp"
+
+msgid "function to obtain IME status"
+msgstr "IME ÌóÔðæ¾·é½ßÌÖ"
+
+msgid "function to enable/disable IME"
+msgstr "IME ðLø»/³ø»·é½ßÌÖ"
+
+msgid "multi-byte characters"
+msgstr "}`oCg¶"
+
+msgid ""
+"character encoding used in Vim: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\", etc."
+msgstr ""
+"Vim Ågp·é¶GR[fBO: \"latin1\", \"utf-8\",\n"
+"\"euc-jp\", \"big5\" ÈÇ"
+
+msgid "character encoding for the current file"
+msgstr "»ÝÌt@C̶GR[fBO"
+
+msgid "automatically detected character encodings"
+msgstr "¶GR[fBOð©®o"
+
+msgid "character encoding used by the terminal"
+msgstr "[Ågíêé¶GR[fBO"
+
+msgid "expression used for character encoding conversion"
+msgstr "¶GR[fBOÏ·Égíêé®"
+
+msgid "delete combining (composing) characters on their own"
+msgstr "¶»ÌàÌðí"
+
+msgid "maximum number of combining (composing) characters displayed"
+msgstr "\\¦ÌÛ̶ÌÅå"
+
+msgid "key that activates the X input method"
+msgstr "X Cvbg\\bhðN®·é½ßÌL["
+
+msgid "width of ambiguous width characters"
+msgstr " ¢Ü¢¶Ì"
+
+msgid "emoji characters are full width"
+msgstr "G¶ÌÍSp"
+
+msgid "various"
+msgstr "»Ì¼"
+
+msgid ""
+"when to use virtual editing: \"block\", \"insert\", \"all\"\n"
+"and/or \"onemore\""
+msgstr ""
+"¢Â¼zÒWðg¤©: \"block\", \"insert\", \"all\"\n"
+"©Â/Ü½Í \"onemore\""
+
+msgid "list of autocommand events which are to be ignored"
+msgstr "©®R}hCxgų·éàÌÌXg"
+
+msgid "load plugin scripts when starting up"
+msgstr "N®ÉvOCXNvgðÇÞ"
+
+msgid "enable reading .vimrc/.exrc/.gvimrc in the current directory"
+msgstr ""
+"JgfBNgÉ é .vimrc/.exrc/.gvimrc ÌÇÝð\n"
+"Lø»"
+
+msgid "safer working with script files in the current directory"
+msgstr "JgfBNgÌXNvgt@CðÀSɵ¤"
+
+msgid "use the 'g' flag for \":substitute\""
+msgstr "\":substitute\" É 'g' tOðg¤"
+
+msgid "'g' and 'c' flags of \":substitute\" toggle"
+msgstr "\":substitute\" Ì 'g' Æ 'c' tOðØèÖ¦é"
+
+msgid "allow reading/writing devices"
+msgstr "foCX©çÌÇÝ«ð·é"
+
+msgid "maximum depth of function calls"
+msgstr "ÖÄoµÌÅåÌ[³"
+
+msgid "list of words that specifies what to put in a session file"
+msgstr "ZbVt@CɽðÛ¶·é©ðwè·éPêÌXg"
+
+msgid "list of words that specifies what to save for :mkview"
+msgstr ":mkview ŽðÛ¶·é©ðwè·éPêÌXg"
+
+msgid "directory where to store files with :mkview"
+msgstr ":mkview Åt@CðÛ¶·éfBNg"
+
+msgid "list that specifies what to write in the viminfo file"
+msgstr "viminfo t@Cɽð©ðwè·éXg"
+
+msgid "file name used for the viminfo file"
+msgstr "viminfo t@CÉgíêét@C¼"
+
+msgid "what happens with a buffer when it's no longer in a window"
+msgstr "obt@ªEBhEÉ\\¦³êÈÈÁ½Ì®"
+
+msgid "empty, \"nofile\", \"nowrite\", \"quickfix\", etc.: type of buffer"
+msgstr "ó, \"nofile\", \"nowrite\", \"quickfix\" ÈÇ: obt@ÌíÊ"
+
+msgid "whether the buffer shows up in the buffer list"
+msgstr "obt@ðobt@êÉ\\¦·é©Ç¤©"
+
+msgid "set to \"msg\" to see all error messages"
+msgstr "SÄÌG[bZ[Wð©éÉÍ \"msg\" ÉÝè"
+
+msgid "whether to show the signcolumn"
+msgstr "Úó
ð\\¦·é©Ç¤©"
+
+msgid "interval in milliseconds between polls for MzScheme threads"
+msgstr "MzScheme ÌXbhðØèÖ¦éÔu (~b)"
+
+msgid "name of the Lua dynamic library"
+msgstr "Lua ®ICu̼O"
+
+msgid "name of the Perl dynamic library"
+msgstr "Perl ®ICu̼O"
+
+msgid "whether to use Python 2 or 3"
+msgstr "Python 2 Æ 3 ÌÇ¿çðg¤©"
+
+msgid "name of the Python 2 dynamic library"
+msgstr "Python 2 ®ICu̼O"
+
+msgid "name of the Python 2 home directory"
+msgstr "Python 2 z[fBNg̼O"
+
+msgid "name of the Python 3 dynamic library"
+msgstr "Python 3 ®ICu̼O"
+
+msgid "name of the Python 3 home directory"
+msgstr "Python 3 z[fBNg̼O"
+
+msgid "name of the Ruby dynamic library"
+msgstr "Ruby ®ICu̼O"
+
+msgid "name of the Tcl dynamic library"
+msgstr "Tcl ®ICu̼O"
+
+msgid "name of the MzScheme dynamic library"
+msgstr "MzScheme ®ICu̼O"
+
+msgid "name of the MzScheme GC dynamic library"
+msgstr "MzScheme GC ®ICu̼O"