" Vim completion script
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2011 Dec 30
+" Last Change: 2012 Jun 20
let s:cpo_save = &cpo
set cpo&vim
endif
if !cached
while 1
- exe 'silent! ' . n . 'vimgrep /\t' . typename . '\(\t\|$\)/j ' . fnames
+ exe 'silent! keepj noautocmd ' . n . 'vimgrep /\t' . typename . '\(\t\|$\)/j ' . fnames
let qflist = getqflist()
if len(qflist) > 0 || match(typename, "::") < 0
-*autocmd.txt* For Vim version 7.3. Last change: 2012 Feb 22
+*autocmd.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Bram Moolenaar
This does NOT work for ":r file". Not used
when the file doesn't exist. Also used after
successfully recovering a file.
+ Also triggered for the filetypedetect group
+ when executing ":filetype detect" and when
+ writing an unnamed buffer in a way that the
+ buffer gets a name.
*BufReadCmd*
BufReadCmd Before starting to edit a new buffer. Should
read the file into the buffer. |Cmd-event|
*ColorScheme*
ColorScheme After loading a color scheme. |:colorscheme|
+ *CompleteDone*
+CompleteDone After Insert mode completion is done. Either
+ when something was completed or abandoning
+ completion. |ins-completion|
+
*CursorHold*
CursorHold When the user doesn't press a key for the time
specified with 'updatetime'. Not re-triggered
it is run after error file is read and before
moving to the first error.
See |QuickFixCmdPost-example|.
+ *QuitPre*
+QuitPre When using `:quit`, before deciding whether it
+ closes the current window or quits Vim. Can
+ be used to close any non-essential window if
+ the current window is the last ordinary
+ window.
*RemoteReply*
RemoteReply When a reply from a Vim that functions as
server was received |server2client()|. The
-*change.txt* For Vim version 7.3. Last change: 2012 Apr 30
+*change.txt* For Vim version 7.3. Last change: 2012 Jun 13
VIM REFERENCE MANUAL by Bram Moolenaar
first line of a paragraph
second line of the same paragraph
third line.
+< This also works inside comments, ignoring the comment leader.
v Vi-compatible auto-wrapping in insert mode: Only break a line at a
blank that you have entered during the current insert command. (Note:
this is not 100% Vi compatible. Vi has some "unexpected features" or
-*cmdline.txt* For Vim version 7.3. Last change: 2012 Feb 05
+*cmdline.txt* For Vim version 7.3. Last change: 2012 Jun 20
VIM REFERENCE MANUAL by Bram Moolenaar
the home directory. If the name is a directory a path
separator is added at the end. For a file name that does not
exist and does not have an absolute path the result is
- unpredictable.
+ unpredictable. On MS-Windows an 8.3 filename is expanded to
+ the long name.
:8 Converts the path to 8.3 short format (currently only on
- win32). Will act on as much of a path that is an existing
- path.
+ MS-Windows). Will act on as much of a path that is an
+ existing path.
:~ Reduce file name to be relative to the home directory, if
possible. File name is unmodified if it is not below the home
directory.
-*editing.txt* For Vim version 7.3. Last change: 2012 Apr 03
+*editing.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Bram Moolenaar
embedded spaces must be escaped with a backslash.
*wildcard* *wildcards*
-Wildcards in {file} are expanded. Which wildcards are supported depends on
-the system. These are the common ones:
+Wildcards in {file} are expanded, but as with file completion, 'wildignore'
+and 'suffixes' apply. Which wildcards are supported depends on the system.
+These are the common ones:
? matches one character
* matches anything, including nothing
** matches anything, including nothing, recurses into directories
external command, by using the syntax `={expr}` e.g.: >
:e `=tempname()`
The expression can contain just about anything, thus this can also be used to
-avoid the special meaning of '"', '|', '%' and '#'. Names are to be separated
-with line breaks. When the result is a |List| then each item is used as a
-name. Line breaks also separate names.
+avoid the special meaning of '"', '|', '%' and '#'. However, 'wildignore'
+does apply like to other wildcars.
+If the expression returns a string then names are to be separated with line
+breaks. When the result is a |List| then each item is used as a name. Line
+breaks also separate names.
*++opt* *[++opt]*
The [++opt] argument can be used to force the value of 'fileformat',
If there are other tab pages and quitting the last
window in the current tab page the current tab page is
closed |tab-page|.
+ Triggers the |QuitPre| autocommand event.
:conf[irm] q[uit] Quit, but give prompt when changes have been made, or
the last file in the argument list has not been
unmodified.
*browsefilter*
-For MS Windows, you can modify the filters that are used in the browse dialog.
-By setting the g:browsefilter or b:browsefilter variables, you can change the
-filters globally or locally to the buffer. The variable is set to a string in
-the format "{filter label}\t{pattern};{pattern}\n" where {filter label} is the
-text that appears in the "Files of Type" comboBox, and {pattern} is the
-pattern which filters the filenames. Several patterns can be given, separated
-by ';'.
+For MS Windows and GTK, you can modify the filters that are used in the browse
+dialog. By setting the g:browsefilter or b:browsefilter variables, you can
+change the filters globally or locally to the buffer. The variable is set to
+a string in the format "{filter label}\t{pattern};{pattern}\n" where {filter
+label} is the text that appears in the "Files of Type" comboBox, and {pattern}
+is the pattern which filters the filenames. Several patterns can be given,
+separated by ';'.
For Motif the same format is used, but only the very first pattern is actually
used (Motif only offers one pattern, but you can edit it).
For example, to have only Vim files in the dialog, you could use the following
command: >
- let g:browsefilter="Vim Scripts\t*.vim\nVim Startup Files\t*vimrc\n"
+ let g:browsefilter = "Vim Scripts\t*.vim\nVim Startup Files\t*vimrc\n"
You can override the filter setting on a per-buffer basis by setting the
b:browsefilter variable. You would most likely set b:browsefilter in a
may want to add "All Files\t*.*\n" as the final filter, so that the user can
still access any desired file.
+To avoid setting browsefilter when Vim does not actually support it, you can
+use has("browsefilter"): >
+
+ if has("browsefilter")
+ let g:browsefilter = "whatever"
+ endif
+
==============================================================================
7. The current directory *current-directory*
-*eval.txt* For Vim version 7.3. Last change: 2012 May 18
+*eval.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Bram Moolenaar
prevnonblank( {lnum}) Number line nr of non-blank line <= {lnum}
printf( {fmt}, {expr1}...) String format text
pumvisible() Number whether popup menu is visible
+pyeval( {expr}) any evaluate |Python| expression
+py3eval( {expr}) any evaluate |python3| expression
range( {expr} [, {max} [, {stride}]])
List items from {expr} to {max}
readfile( {fname} [, {binary} [, {max}]])
"search" or "/" search pattern history
"expr" or "=" typed expression history
"input" or "@" input line history
+ "debug" or ">" debug command history
+ The {history} string does not need to be the whole name, one
+ character is sufficient.
If {item} does already exist in the history, it will be
shifted to become the newest entry.
The result is a Number: 1 if the operation was successful,
The operation is done in-place. If you want a |List| or
|Dictionary| to remain unmodified make a copy first: >
- :let tlist = map(copy(mylist), ' & . "\t"')
+ :let tlist = map(copy(mylist), ' v:val . "\t"')
< Returns {expr}, the |List| or |Dictionary| that was filtered.
When an error is encountered while evaluating {string} no
This can be used to avoid some things that would remove the
popup menu.
+ *E860* *E861*
+py3eval({expr}) *py3eval()*
+ Evaluate Python expression {expr} and return its result
+ converted to Vim data structures.
+ Numbers and strings are returned as they are (strings are
+ copied though, unicode strings are additionally converted to
+ 'encoding').
+ Lists are represented as Vim |List| type.
+ Dictionaries are represented as Vim |Dictionary| type with
+ keys converted to strings.
+ {only available when compiled with the |+python3| feature}
+
+ *E858* *E859*
+pyeval({expr}) *pyeval()*
+ Evaluate Python expression {expr} and return its result
+ converted to Vim data structures.
+ Numbers and strings are returned as they are (strings are
+ copied though).
+ Lists are represented as Vim |List| type.
+ Dictionaries are represented as Vim |Dictionary| type with
+ keys converted to strings.
+ {only available when compiled with the |+python| feature}
+
*E726* *E727*
range({expr} [, {max} [, {stride}]]) *range()*
Returns a |List| with Numbers:
beos BeOS version of Vim.
browse Compiled with |:browse| support, and browse() will
work.
+browsefilter Compiled with support for |browsefilter|.
builtin_terms Compiled with some builtin terminals.
byte_offset Compiled with support for 'o' in 'statusline'
cindent Compiled with 'cindent' support.
-*if_lua.txt* For Vim version 7.3. Last change: 2012 Jan 16
+*if_lua.txt* For Vim version 7.3. Last change: 2012 Jun 29
VIM REFERENCE MANUAL by Luis Carvalho
<
==============================================================================
-7. The luaeval function *lua-luaeval*
+7. The luaeval function *lua-luaeval* *lua-eval*
The (dual) equivalent of "vim.eval" for passing Lua values to Vim is
"luaeval". "luaeval" takes an expression string and an optional argument and
The Python Interface to Vim *python* *Python*
-1. Commands |python-commands|
-2. The vim module |python-vim|
-3. Buffer objects |python-buffer|
-4. Range objects |python-range|
-5. Window objects |python-window|
-6. Dynamic loading |python-dynamic|
-7. Python 3 |python3|
+1. Commands |python-commands|
+2. The vim module |python-vim|
+3. Buffer objects |python-buffer|
+4. Range objects |python-range|
+5. Window objects |python-window|
+6. pyeval(), py3eval() Vim functions |python-pyeval|
+7. Dynamic loading |python-dynamic|
+8. Python 3 |python3|
{Vi does not have any of these commands}
[{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name':
'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}]
+vim.bindeval(str) *python-bindeval*
+ Like |python-eval|, but
+ 1. if expression evaluates to |List| or |Dictionary| it is returned as
+ vimlist or vimdictionary python type that are connected to original
+ list or dictionary. Thus modifications to these objects imply
+ modifications of the original.
+ 2. if expression evaluates to a function reference, then it returns
+ callable vimfunction object. Use self keyword argument to assign
+ |self| object for dictionary functions.
+
+ Note: this function has the same behavior as |lua-eval| (except that
+ lua does not support running vim functions), |python-eval| is
+ kept for backwards compatibility in order not to make scripts
+ relying on outputs of vim.eval() being a copy of original or
+ vim.eval("1") returning a string.
+
Error object of the "vim" module
The width attribute is writable only if the screen is split vertically.
==============================================================================
-6. Dynamic loading *python-dynamic*
+6. pyeval() and py3eval() Vim functions *python-pyeval*
+
+To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
+functions to evaluate Python expressions and pass their values to VimL.
+
+==============================================================================
+7. Dynamic loading *python-dynamic*
On MS-Windows the Python library can be loaded dynamically. The |:version|
output then includes |+python/dyn|.
sure edit "gvim.exe" and search for "python\d*.dll\c".
==============================================================================
-7. Python 3 *python3*
+8. Python 3 *python3*
*:py3* *:python3*
The |:py3| and |:python3| commands work similar to |:python|.
*:py3file*
The |:py3file| command works similar to |:pyfile|.
+
Vim can be built in four ways (:version output):
1. No Python support (-python, -python3)
2. Python 2 support only (+python or +python/dyn, -python3)
-*insert.txt* For Vim version 7.3. Last change: 2012 May 18
+*insert.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Bram Moolenaar
*ins-smarttab*
When the 'smarttab' option is on, a <Tab> inserts 'shiftwidth' positions at
the beginning of a line and 'tabstop' positions in other places. This means
-that often spaces instead of a <Tab> character are inserted. When 'smarttab
+that often spaces instead of a <Tab> character are inserted. When 'smarttab'
is off, a <Tab> always inserts 'tabstop' positions, and 'shiftwidth' is only
used for ">>" and the like. {not in Vi}
leading text is changed.
Other items are ignored.
+For acting upon end of completion, see the |CompleteDone| autocommand event.
+
For example, the function can contain this: >
let matches = ... list of words ...
return {'words': matches, 'refresh': 'always'}
-*mbyte.txt* For Vim version 7.3. Last change: 2012 Feb 29
+*mbyte.txt* For Vim version 7.3. Last change: 2012 Jun 06
VIM REFERENCE MANUAL by Bram Moolenaar et al.
|charset| converter. Supported |charset|: ISO-2022-CN, ISO-2022-JP,
ISO-2022-KR, EUC-CN, EUC-JP, EUC-KR, EUC-TW, UTF-7, UTF-8, ISO-8859
series, Shift_JIS, Big5 and HZ. Lv can be found at:
- http://www.ff.iij4u.or.jp/~nrt/freeware/lv4495.tar.gz
+ http://www.ff.iij4u.or.jp/~nrt/lv/index.html
*mbyte-conversion*
charsets, such as JIS X 0208, if this field is 0, code points has
the same value as GL, and GR if 1.
-For example, in case of a 14 dots font corresponding to JIS X 0208, it is
+For example, in case of a 16 dots font corresponding to JIS X 0208, it is
written like:
-misc-fixed-medium-r-normal--16-110-100-100-c-160-jisx0208.1990-0
-*motion.txt* For Vim version 7.3. Last change: 2011 Jul 19
+*motion.txt* For Vim version 7.3. Last change: 2012 Jul 06
VIM REFERENCE MANUAL by Bram Moolenaar
to be simulated by multiple commands. (does not move
the cursor, this is not a motion command).
+ *m<* *m>*
+m< or m> Set the |'<| or |'>| mark. Useful to change what the
+ `gv` command selects. (does not move the cursor, this
+ is not a motion command).
+ Note that the Visual mode cannot be set, only the
+ start and end position.
+
*:ma* *:mark* *E191*
:[range]ma[rk] {a-zA-Z'}
Set mark {a-zA-Z'} at last line number in [range],
-*options.txt* For Vim version 7.3. Last change: 2012 May 16
+*options.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Bram Moolenaar
Vim does not try to send a message to an external debugger (Netbeans
or Sun Workshop).
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The expression will be evaluated in the |sandbox| when set from a
+ modeline, see |sandbox-option|.
It is not allowed to change text or jump to another window while
evaluating 'balloonexpr' |textlock|.
explicitly accessed using the "* notation. Also see
|gui-clipboard|.
+ *clipboard-unnamedplus*
unnamedplus A variant of "unnamed" flag which uses the clipboard
register '+' (|quoteplus|) instead of register '*' for
all operations except yank. Yank shall copy the text
Availability can be checked with: >
if has('unnamedplus')
<
+ *clipboard-autoselect*
autoselect Works like the 'a' flag in 'guioptions': If present,
then whenever Visual mode is started, or the Visual
area extended, Vim tries to become the owner of the
The expression used for when 'foldmethod' is "expr". It is evaluated
for each line to obtain its fold level. See |fold-expr|.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The expression will be evaluated in the |sandbox| if set from a
+ modeline, see |sandbox-option|.
This option can't be set from a |modeline| when the 'diff' option is
on.
An expression which is used to specify the text displayed for a closed
fold. See |fold-foldtext|.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The expression will be evaluated in the |sandbox| if set from a
+ modeline, see |sandbox-option|.
It is not allowed to change text or jump to another window while
evaluating 'foldtext' |textlock|.
format function will be used |C-indenting|.
Environment variables are expanded |:set_env|. See |option-backslash|
about including spaces and backslashes.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ This option cannot be set from a |modeline| or in the |sandbox|, for
+ security reasons.
*'formatexpr'* *'fex'*
'formatexpr' 'fex' string (default "")
When the expression evaluates to non-zero Vim will fall back to using
the internal format mechanism.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|. That stops the option from working, since changing
- the buffer text is not allowed.
+ The expression will be evaluated in the |sandbox| when set from a
+ modeline, see |sandbox-option|. That stops the option from working,
+ since changing the buffer text is not allowed.
*'fsync'* *'fs'*
'fsync' 'fs' boolean (default on)
found. Allows doing "gf" on the name after an 'include' statement.
Also used for |<cfile>|.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The expression will be evaluated in the |sandbox| when set from a
+ modeline, see |sandbox-option|.
It is not allowed to change text or jump to another window while
evaluating 'includeexpr' |textlock|.
See |indent-expression|.
NOTE: This option is made empty when 'compatible' is set.
- The expression may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The expression will be evaluated in the |sandbox| when set from a
+ modeline, see |sandbox-option|.
It is not allowed to change text or jump to another window while
evaluating 'indentexpr' |textlock|.
{not in Vi}
Strings to use in 'list' mode and for the |:list| command. It is a
comma separated list of string settings.
+ *lcs-eol*
eol:c Character to show at the end of each line. When
omitted, there is no extra character at the end of the
line.
+ *lcs-tab*
tab:xy Two characters to be used to show a tab. The first
char is used once. The second char is repeated to
fill the space that the tab normally occupies.
"tab:>-" will show a tab that takes four spaces as
">---". When omitted, a tab is show as ^I.
+ *lcs-trail*
trail:c Character to show for trailing spaces. When omitted,
trailing spaces are blank.
+ *lcs-extends*
extends:c Character to show in the last column, when 'wrap' is
off and the line continues beyond the right of the
screen.
+ *lcs-precedes*
precedes:c Character to show in the first column, when 'wrap'
is off and there is text preceding the character
visible in the first column.
+ *lcs-conceal*
conceal:c Character to show in place of concealed text, when
'conceallevel' is set to 1.
+ *lcs-nbsp*
nbsp:c Character to show for a non-breakable space (character
0xA0, 160). Left blank when omitted.
invoked and what it should return.
This option is usually set by a filetype plugin:
|:filetype-plugin-on|
+ This option cannot be set from a |modeline| or in the |sandbox|, for
+ security reasons.
*'opendevice'* *'odev'* *'noopendevice'* *'noodev'*
The variable "actual_curbuf" is set to the 'bufnr()' number of the
real current buffer.
- The 'statusline' option may be evaluated in the |sandbox|, see
- |sandbox-option|.
+ The 'statusline' option will be evaluated in the |sandbox| if set from
+ a modeline, see |sandbox-option|.
It is not allowed to change text or jump to another window while
evaluating 'statusline' |textlock|.
{not available when compiled without the |+wildignore|
feature}
A list of file patterns. A file that matches with one of these
- patterns is ignored when completing file or directory names, and
- influences the result of |expand()|, |glob()| and |globpath()| unless
- a flag is passed to disable this.
+ patterns is ignored when expanding |wildcards|, completing file or
+ directory names, and influences the result of |expand()|, |glob()| and
+ |globpath()| unless a flag is passed to disable this.
The pattern is used like with |:autocmd|, see |autocmd-patterns|.
Also see 'suffixes'.
Example: >
*:vim* *:vimgrep* *E682* *E683*
:vim[grep][!] /{pattern}/[g][j] {file} ...
Search for {pattern} in the files {file} ... and set
- the error list to the matches.
+ the error list to the matches. Files matching
+ 'wildignore' are ignored; files in 'suffixes' are
+ searched last.
Without the 'g' flag each line is added only once.
With 'g' every match is added.
-*sign.txt* For Vim version 7.3. Last change: 2012 Jan 04
+*sign.txt* For Vim version 7.3. Last change: 2012 Jul 10
VIM REFERENCE MANUAL by Gordon Prieur
-*syntax.txt* For Vim version 7.3. Last change: 2012 Apr 06
+*syntax.txt* For Vim version 7.3. Last change: 2012 Jun 13
VIM REFERENCE MANUAL by Bram Moolenaar
asmsyntax=nasm
Replace "nasm" with the name of the real assembly syntax. This line must be
one of the first five lines in the file. No non-white text must be
-immediately before or after this text.
+immediately before or after this text. Note that specifying asmsyntax=foo is
+equivalent to setting ft=foo in a |modeline|, and that in case of a conflict
+between the two settings the one from the modeline will take precedence (in
+particular, if you have ft=asm in the modeline, you will get the GNU syntax
+highlighting regardless of what is specified as asmsyntax).
The syntax type can always be overruled for a specific buffer by setting the
b:asmsyntax variable: >
g:vimsyn_folding =~ 'P' : fold python script
g:vimsyn_folding =~ 'r' : fold ruby script
g:vimsyn_folding =~ 't' : fold tcl script
-
+<
*g:vimsyn_noerror*
Not all error highlighting that syntax/vim.vim does may be correct; VimL is a
difficult language to highlight correctly. A way to suppress error
'go-F' options.txt /*'go-F'*
'go-L' options.txt /*'go-L'*
'go-M' options.txt /*'go-M'*
+'go-P' options.txt /*'go-P'*
'go-R' options.txt /*'go-R'*
'go-T' options.txt /*'go-T'*
'go-a' options.txt /*'go-a'*
ColorScheme autocmd.txt /*ColorScheme*
Command-line cmdline.txt /*Command-line*
Command-line-mode cmdline.txt /*Command-line-mode*
+CompleteDone autocmd.txt /*CompleteDone*
Contents quickref.txt /*Contents*
Cscope if_cscop.txt /*Cscope*
CursorHold autocmd.txt /*CursorHold*
E853 eval.txt /*E853*
E854 options.txt /*E854*
E855 autocmd.txt /*E855*
+E858 eval.txt /*E858*
+E859 eval.txt /*E859*
E86 windows.txt /*E86*
+E860 eval.txt /*E860*
+E861 eval.txt /*E861*
E87 windows.txt /*E87*
E88 windows.txt /*E88*
E89 message.txt /*E89*
QuickFixCmdPost-example quickfix.txt /*QuickFixCmdPost-example*
QuickFixCmdPre autocmd.txt /*QuickFixCmdPre*
Quickfix quickfix.txt /*Quickfix*
+QuitPre autocmd.txt /*QuitPre*
R change.txt /*R*
RISC-OS os_risc.txt /*RISC-OS*
RISCOS os_risc.txt /*RISCOS*
client-server remote.txt /*client-server*
clientserver remote.txt /*clientserver*
clipboard gui.txt /*clipboard*
+clipboard-autoselect options.txt /*clipboard-autoselect*
+clipboard-autoselectml options.txt /*clipboard-autoselectml*
+clipboard-autoselectplus options.txt /*clipboard-autoselectplus*
+clipboard-exclude options.txt /*clipboard-exclude*
+clipboard-html options.txt /*clipboard-html*
+clipboard-unnamed options.txt /*clipboard-unnamed*
+clipboard-unnamedplus options.txt /*clipboard-unnamedplus*
cmdarg-variable eval.txt /*cmdarg-variable*
cmdbang-variable eval.txt /*cmdbang-variable*
cmdline-arguments vi_diff.txt /*cmdline-arguments*
last-position-jump eval.txt /*last-position-jump*
last_buffer_nr() eval.txt /*last_buffer_nr()*
lc_time-variable eval.txt /*lc_time-variable*
+lcs-conceal options.txt /*lcs-conceal*
+lcs-eol options.txt /*lcs-eol*
+lcs-extends options.txt /*lcs-extends*
+lcs-nbsp options.txt /*lcs-nbsp*
+lcs-precedes options.txt /*lcs-precedes*
+lcs-tab options.txt /*lcs-tab*
+lcs-trail options.txt /*lcs-trail*
left-right-motions motion.txt /*left-right-motions*
len() eval.txt /*len()*
less various.txt /*less*
lua-buffer if_lua.txt /*lua-buffer*
lua-commands if_lua.txt /*lua-commands*
lua-dict if_lua.txt /*lua-dict*
+lua-eval if_lua.txt /*lua-eval*
lua-list if_lua.txt /*lua-list*
lua-luaeval if_lua.txt /*lua-luaeval*
lua-vim if_lua.txt /*lua-vim*
luaeval() eval.txt /*luaeval()*
m motion.txt /*m*
m' motion.txt /*m'*
+m< motion.txt /*m<*
+m> motion.txt /*m>*
m[ motion.txt /*m[*
m] motion.txt /*m]*
m` motion.txt /*m`*
pumvisible() eval.txt /*pumvisible()*
put change.txt /*put*
put-Visual-mode change.txt /*put-Visual-mode*
+py3eval() eval.txt /*py3eval()*
+pyeval() eval.txt /*pyeval()*
python if_pyth.txt /*python*
+python-bindeval if_pyth.txt /*python-bindeval*
python-buffer if_pyth.txt /*python-buffer*
python-buffers if_pyth.txt /*python-buffers*
python-command if_pyth.txt /*python-command*
python-examples if_pyth.txt /*python-examples*
python-input if_pyth.txt /*python-input*
python-output if_pyth.txt /*python-output*
+python-pyeval if_pyth.txt /*python-pyeval*
python-range if_pyth.txt /*python-range*
python-vim if_pyth.txt /*python-vim*
python-window if_pyth.txt /*python-window*
-*todo.txt* For Vim version 7.3. Last change: 2012 Jun 01
+*todo.txt* For Vim version 7.3. Last change: 2012 Jul 11
VIM REFERENCE MANUAL by Bram Moolenaar
GTK: problem with 'L' in 'guioptions' changing the window width.
(Aaron Cornelius, 2012 Feb 6)
-Patch: home_replace() does not work whtn 8.3 filename. (Yasuhiro
-Matsumoto, 2012 Apr 18) Asked for another version of the patch.
-Again May 18. Update May 29 on github. Does not handle multi-byte chars.
+Checking runtime scripts: Thilo Six, 2012 Jun 6.
+
+List of broken mirrors. (Chris Pentago, 2012 Jun 15)
+/tmp/broken-mirrors.csv
Javascript file where indent gets stuck on: GalaxyMaster, 2012 May 3.
+Patch to fix black on black for terminal with 8 colors.
+(James McCoy, 2012 Jul 10)
+
+Patch to make winrestview() work better. (Lech Lorens, 2012 Jul 10)
+
+The CompleteDone autocommand needs some info passed to it:
+- The word that was selected (empty if abandoned complete)
+- Type of completion: tag, omnifunc, user func.
+
+Completefunc gets number passed instead of string.
+Patch from Yakuhiro Matsumoto, 2012 Jul 10
+
+User command complete can't handle spaces. Patch by Yasuhiro Matsumoto, 2012
+Jul 11.
+
Win32: When a directory name contains an exclamation mark, completion doesn't
complete the contents of the directory. No escaping for the "!"? (Jan
Stocker, 2012 Jan 5)
-Patch for this request: (Lech Lorens, 2012 May 26)
-7 Add 'j' flag to 'formatoptions': Remove comment leader when joining lines.
+Help for v/V is not quite right. (Ben Fritz, 2012 Jun 4)
+Change [count]v to select last visual area [count] times?
Issue 54: document behavior of -complete, also expands arg.
-Cursor on wrong line after ":copen". (John Beckett, 2012 Apr 30)
-Fix by Christian Brabandt, 2012 May 2. But calling changed_window_setting()
-would be a simpler solution.
+Issue 72: 'autochdir' causes problems for :vimgrep.
+
+MS-Windows: Crash opening very long file name starting with "\\".
+(Christian Brock, 2012 Jun 29)
Syntax update problem in one buffer opened in two windows, bottom window is
not correctly updated. (Paul Harris, 2012 Feb 27)
Patch to add getsid(). (Tyru, 2011 Oct 2) Do we want this? Update Oct 4.
Or use expand('<sid>')?
-Win32: When the taskbar is at the top of the screen creating the tabbar causes
-the window to move unnecessarily. (William E. Skeith III, 2012 Jan 12)
-Patch: 2012 Jan 13 Needs more work (2012 Feb 2)
+MS-Windows resizing problems:
+- Windows window on screen positioning: Patch by Yukihiro Nakadaira, 2012 Jun
+ 20. Uses getWindowRect() instead of GetWindowPlacement()
+- Win32: When the taskbar is at the top of the screen creating the tabbar
+ causes the window to move unnecessarily. (William E. Skeith III, 2012 Jan
+ 12) Patch: 2012 Jan 13 Needs more work (2012 Feb 2)
-ml_get error when using syntastic plugin. (Alex Efros, 2012 May 24)
-Probably caused by recursive use of :lclose.
-May also crash Vim (May 25)
-Patch by Christian Brabandt, May 26. Is this right?
+'iminsert' global value set when using ":setlocal iminsert"? (Wu, 2012 Jun 23)
Help for b:undo_indent'. (Thilo Six, 2012 May 28)
Also question if examples are correct.
-Docs patch for BufRead/BufReadPost. (Gary Johnson, 2012 May 28)
+The input map for CTRL-O in mswin.vim causes problems after CTRL-X CTRL-O.
+Suggestion for another map. (Philip Mat, 2012 Jun 18)
+But use "gi" instead of "a". Or use CTRL-\ CTRL-O.
URXVT:
- will get stuck if byte sequence does not containe expected semicolon.
- Use urxvt mouse support also in xterm. Explanations:
http://www.midnight-commander.org/ticket/2662
-Patch for IBM z/OS makefile. (Stephen Bovy, 2012 Apr 26)
-Patch for configure (Stephen Bovy, 2012 Apr 28)
-Updates later. Context diff May 7.
-
-Patch to support browserfilter for GTK. (Christian Brabandt, 2012 May 22)
+Patch to add tests for if_xcmdsrv.c., Jul 8, need some more work. (Brian Burns)
When running Vim in silent ex mode, an existing swapfile causes Vim to wait
for a user action without a prompt. (Maarten Billemont, 2012 Feb 3)
Do give the prompt? Quit with an error?
-Patch for: (Christian Brabandt, 2011 Aug 24, updated patch)
-8 ":sign unplace * file={filename}" should work. Also: ":sign unplace *
- buffer={bufnr}". So one can remove all signs for one file/buffer.
-
-Patch for auto copy selecting to + register. (by Christian Brabant, in email
-from Sergey Vakulenko, 2012 Apr 27)
-
-Patch to add "onselected" callback for completion. (Taro Muraoka, 2011 Sep 24)
-Another for CompleteFuncOk. (Florian Klein, 2012 Jan 31)
-Name it "CompleteFuncDone".
-
Patch for Make_mvc.mak and Make_ming.mak for Ruby support. (Yasuhiro
Matsumoto, 2012 Jan 30)
Patch for has('unnamedplus') docs. (Tony Mechelynck, 2011 Sep 27)
And one for gui_x11.txt.
-Patch for Python: add pyeval() and vim.bindeval() (zyx, 2012 Apr 15, update
-Apr 16) Also changes for Lua. Update Apr 19. Update Apr 22.
+- Patch for 'breakindent' option: repeat indent for wrapped line. (Vaclav
+ Smilauer, 2004 Sep 13, fix Oct 31, update 2007 May 30)
+ Version for latest MacVim: Tobia Conforto, 2009 Nov 23
+ More recent version: https://retracile.net/wiki/VimBreakIndent
+ Posted to vim-dev by Taylor Hedberg, 2011 Nov 25
+
+Problem with starting Visual block mode with :norm when 'virtualedit' is set.
+(David glts, 2012 Jun 5)
+
+When 'guioptions' contains 'c' (use console dialog) then inputdialog() returns
+a different value when the dialog is cancelled. (David Fishburn, 2012 Jul 10)
":cd" doesn't work when current directory path contains "**".
finddir() has the same problem. (Yukihiro Nakadaira, 2012 Jan 10)
Problem with l: dictionary being locked in a function. (ZyX, 2011 Jul 21)
+Should use has("browsefilter") in ftplugins. Requires patch 7.3.593.
+
Issue 48: foldopen error can't be caught by try/catch
+"dg_" deletes including the last character, "d:normal! g_" doesn't.
+(Nomen Nescio, 2012 Jun 27)
+
Patch to sort functions starting with '<' after others. Omit dict functions,
they can't be called. (Yasuhiro Matsumoto, 2011 Oct 11)
Nov 20)
Patch to improve GUI find/replace dialog. (Christian Brabandt, 2012 May 26)
+Update Jun 2.
Patch to add ":py3do". (Lilydjwg, 2012 Apr 7)
Issue 64: when 'incsearch' is on can't paste LF on command line.
+On MS-Windows a temp dir with a & init causes system() to fail. (Ben Fritz,
+2012 Jun 19)
+
'cursorline' is displayed too short when there are concealed characters and
'list' is set. (Dennis Preiser)
Patch 7.3.116 was the wrong solution.
7 Completion of network shares, patch by Yasuhiro Matsumoto.
Update 2004 Sep 6.
How does this work? Missing comments.
-- Patch for 'breakindent' option: repeat indent for wrapped line. (Vaclav
- Smilauer, 2004 Sep 13, fix Oct 31, update 2007 May 30)
- Version for latest MacVim: Tobia Conforto, 2009 Nov 23
- More recent version: https://retracile.net/wiki/VimBreakIndent
- Posted to vim-dev by Taylor Hedberg, 2011 Nov 25
8 Add a few more command names to the menus. Patch from Jiri Brezina
(28 feb 2002). Will mess the translations...
7 ATTENTION dialog choices are more logical when "Delete it' appears
font, etc.)
8 Make GUI menu in tab pages line configurable. Like the popup menu.
8 balloons for the tab page labels that are shortened to show the full path.
-8 :tabmove +N move tab page N pages forward
-8 :tabmove -N move tab page N pages backward
7 :tabdup duplicate the tab with all its windows.
7 Option to put tab line at the left or right? Need an option to specify
its width. It's like a separate window with ":tabs" output.
this isn't reset. Add a special keyword definition for the syntax rules?
When this is done, use vim.vim syntax highlighting for help file examples,
but without ":" in 'iskeyword' for syntax.
+ Also need a separate 'iskeyword' for the command line, e.g., in a help
+ window ":e /asdf/asdf/" CTRL-W works different.
8 Add specific syntax item to match with parens/braces that don't have a
"%" match. :syntax nomatch cMatchError (,{,[,),},] [contained]
8 Highlight the text between two matching parens (e.g., with a grey
- Make it possible for the 'showbreak' to be displayed at the end of the
line. Use a comma to separate the part at the end and the start of the
line? Highlight the linebreak characters, add flag in 'highlight'.
+ Make 'showbreak' local to a window.
- Some string options should be expanded if they have wildcards, e.g.
'dictionary' when it is "*.h".
- Use a specific type for number and boolean options, making it possible to
--- /dev/null
+.\"*******************************************************************
+.\"
+.\" This file was generated with po4a. Translate the source file.
+.\"
+.\"*******************************************************************
+.\" Translated by bw1 (2008) and Florian Rehnisch <fm-r@gmx.de> (2012)
+.\" Kudos to the folks on vim-dev and debian-l10n-german
+.TH VIM 1 "2006 Apr 11"
+.SH BEZEICHNUNG
+vim \- Vi IMproved, ein Text\-Editor für Programmierer
+.SH ÜBERSICHT
+.br
+\fBvim\fP [Optionen] [Datei ...]
+.br
+\fBvim\fP [Optionen] \-
+.br
+\fBvim\fP [Optionen] \-t Tag
+.br
+\fBvim\fP [Optionen] \-q [Fehlerdatei]
+.PP
+.br
+\fBex\fP
+.br
+\fBview\fP
+.br
+\fBgvim\fP \fBgview\fP \fBevim\fP \fBeview\fP
+.br
+\fBrvim\fP \fBrview\fP \fBrgvim\fP \fBrgview\fP
+.SH BESCHREIBUNG
+\fBVim\fP ist ein Text\-Editor, der aufwärtskompatibel zu Vi ist. Er kann
+verwendet werden, um alle Arten von Klartext zu bearbeiten. Er ist besonders
+nützlich, um Programme zu bearbeiten.
+.PP
+Vim hat einige Erweiterungen gegenüber Vi, z.B.: Rückgängigmachen in
+mehreren Schritten, mehrere Fenster und Puffer, Syntax\-Hervorhebung,
+Bearbeiten der Befehlszeile, Dateinamenergänzung, eingebaute Hilfe, visuelle
+Auswahl, usw. ... Siehe »:help vi_diff.txt« für eine Übersicht der
+Unterschiede zwischen \fBVim\fP und Vi.
+.PP
+Im laufenden \fBVim\fP kann mit dem Befehl »:help« viel Hilfe durch das
+eingebaute Hilfesystem erlangt werden. Siehe den Abschnitt EINGEBAUTE HILFE
+weiter unten.
+.PP
+Meistens wird \fBVim\fP zum Editieren einer einzigen Datei mit dem folgende
+Befehl gestartet:
+.PP
+ vim Datei
+.PP
+Allgemeiner betrachtet, wird \fBVim\fP folgendermaßen gestartet:
+.PP
+ vim [Optionen] [Dateiliste]
+.PP
+Bei einer fehlenden Dateiliste startet der Editor mit einem leeren
+Puffer. Andernfalls werden nach den folgenden vier Möglichkeiten eine oder
+mehrere Dateien bearbeitet:
+.TP 12
+Datei ...
+Eine Liste von Dateinamen. Die erste Datei wird in den Puffer geladen und
+zur aktuellen. Der Cursor wird auf der ersten Zeile des Puffers
+platziert. Zu den anderen Dateien kann mit dem Befehl »:next« gelangt
+werden. Falls einer der Dateinamen mit einem Bindestrich beginnt, stellen
+Sie der Dateiliste »\-\-« voran.
+.TP
+\-
+Die zu bearbeitende Datei wird von der Standardeingabe gelesen. Befehle
+werden von der Standardfehlerausgabe gelesen, die ein Text\-Terminal sein
+sollte.
+.TP
+\-t {Tag}
+Die zu editierende Datei und die anfängliche Cursor\-Position hängen von
+einem »Tag« ab, einer Art Sprungmarke. {Tag} wird in der Tag\-Datei
+nachgeschlagen, die zugehörige Datei wird zur aktuellen und der zugehörige
+Befehl wird ausgeführt. Dies wird meistens für Programme in der Sprache »C«
+benutzt, wobei {Tag} ein Funktionsname sein könnte. Die Wirkung dieses
+Befehls ist, dass die Datei, die die Funktion enthält, als aktuelle im
+Editor geöffnet und angezeigt wird und der Cursor auf dem Beginn der
+Funktion positioniert wird. Siehe »:help tag\-commands«.
+.TP
+\-q [Fehlerdatei]
+Startet im QuickFix\-Modus. Die Datei [Fehlerdatei] wird gelesen und der
+erste Fehler wird angezeigt. Falls [Fehlerdatei] ausgelassen wird, wird der
+Dateiname aus der Option 'errorfile' verwendet (bei AmigaOS ist dies
+vorgabemäßig »AztecC.Err«, sowie "errors.err« bei anderen). Weitere Fehler
+können mit dem »:cn«\-Befehl angesprungen werden. Siehe ":help quickfix«.
+.PP
+\fBVim\fP reagiert unterschiedlich auf den Namen, der verwendet wird, um Vim zu
+starten (die ausführbare Datei kann dieselbe sein).
+.TP 10
+vim
+der »normale« Weg, alles ist standardmäßig
+.TP
+ex
+Startet im Ex\-Modus. Mit dem Befehl »:vi« gelangt man in den normalen
+Modus. Funktioniert auch mit dem Argument »\-e«.
+.TP
+view
+Startet im Nur\-Lesen\-Modus. Die Datei wird vor dem Überschreiben
+geschützt. Dasselbe wird mit dem Parameter »\-R« erreicht.
+.TP
+gvim gview
+Die grafische Version: Öffnet ein neues Fenster. Dasselbe wird mit dem
+Parameter »\-g« erreicht.
+.TP
+evim eview
+Die grafische Version im einfachen Modus: Öffnet ein neues Fenster. Dasselbe
+wird mit dem Parameter »\-y« erreicht.
+.TP
+rvim rview rgvim rgview
+Wie die obigen, aber mit Beschränkungen: Es ist nicht möglich, Shell\-Befehle
+aufzurufen oder mit Unterbrechung in eine Shell zurückzuspringen. Dasselbe
+wird mit dem Parameter »\-Z« erreicht.
+.SH OPTIONEN
+Die Optionen können in beliebiger Reihenfolge vor oder nach den Dateinamen
+angegeben werden. Optionen ohne Parameter können hinter einem einzigen
+Bindestrich gruppiert werden.
+.TP 12
++[Nummer]
+In der ersten Datei wird der Cursor auf die Zeile [Nummer] gesetzt. Falls
+[Nummer] nicht angegeben wird, wird der Cursor in die letzte Zeile der Datei
+gesetzt.
+.TP
++/{Suchmuster}
+In der ersten Datei wird der Cursor auf das erste Auftreten von {Suchmuster}
+gesetzt. Siehe »:help search\-pattern«.
+.TP
++{Befehl}
+.TP
+\-c {Befehl}
+{Befehl} wird nach dem Lesen der ersten Datei ausgeführt. Als {Befehl} wird
+ein Ex\-Befehl erwartet. Sind in {Befehl} Leerzeichen vorhanden, muss alles
+in Anführungszeichen gesetzt werden (hängt von der verwendeten Shell
+ab). Beispiel: vim "+set si" main.c
+.br
+Anmerkung: Sie können bis zu 10 »+«\- oder "\-c«\-Befehle verwenden.
+.TP
+\-S {Datei}
+{Datei} wird nach dem Lesen der ersten Datei ausgeführt. Dies entspricht »\-c
+"source {Datei}"«. {Datei} darf nicht mit einem Bindestrich (\-)
+anfangen. Wenn kein Dateiname angegeben wird, wird »Session.vim« verwendet
+(Funktioniert nur, wenn »\-S« als letzter Parameter steht).
+.TP
+\-\-cmd {Befehl}
+Wie »\-c«, aber dieser Befehl wird vor allen VimRC\-Dateien ausgeführt. Sie
+können unabhängig von den »\-c«\-Befehlen bis zu 10 dieser Befehle verwenden.
+.TP
+\-A
+Falls \fBVim\fP mit Unterstützung für das Schreiben von rechts nach links und
+arabischer Tastaturbelegung compiliert wurde (ARABIC), startet dieser
+Parameter den Modus fürs Arabische (:set arabic). Anderenfalls beendet sich
+\fBVim\fP mit einer Fehlermeldung.
+.TP
+b
+Binärer Modus: Es werden einige Variablen gesetzt, sodass es möglich ist,
+eine binäre oder ausführbare Datei zu bearbeiten.
+.TP
+\-C
+Kompatibel: Setzt die Option 'compatible'. Das macht \fBVim\fP im Verhalten
+sehr ähnlich zu Vi, selbst wenn eine VimRC\-Datei existiert.
+.TP
+\-d
+Startet im diff\-Modus. Es sollten zwei, drei oder vier Dateinamen als
+Parameter übergeben werden. \fBVim\fP öffnet sie alle und zeigt die
+Unterschiede an. Arbeitet wie vimdiff(1).
+.TP
+\-d {Gerät}
+Öffnet das {Gerät}, um es als Terminal zu nutzen. Nur für AmigaOS. Beispiel:
+"\-d con:20/30/600/150".
+.TP
+D
+Debug\-Modus: \fBVim\fP geht in den Debug\-Modus, wenn der erste Befehl in einem
+Skript ausgeführt wird.
+.TP
+\-e
+Startet \fBVim\fP im Ex\-Modus, als würde als ausführbare Datei »ex« aufgerufen.
+.TP
+\-E
+Startet \fBVim\fP im erweiterten Ex\-Modus, als würde die ausführbare Datei als
+»exim« aufgerufen.
+.TP
+\-f
+Vordergrund: Bei der GUI\-Version erzeugt \fBVim\fP keinen neuen Prozess und
+löst sich nicht von der Shell, in der er aufgerufen wurde. Bei AmigaOS wird
+kein neues Fenster geöffnet. Dieser Parameter wird benutzt, damit das
+aufrufende Programm auf das Beenden des Bearbeitungssitzung wartet (z.B.:
+mail). Bei AmigaOS funktionieren die Befehle »:sh« und ":!« nicht.
+.TP
+\-\-nofork
+Vordergrund: Bei der GUI\-Version erzeugt \fBVim\fP keinen neuen Prozess und
+löst sich nicht von der Shell, in der er aufgerufen wurde.
+.TP
+\-F
+Wenn \fBVim\fP mit FKMAP\-Unterstützung für das Schreiben von rechts nach links
+und Farsi\-Tastatur\-Belegung kompiliert wurde, startet Vim im Farsi\-Modus,
+d.h. die Optionen 'fkmap' und 'rightleft' werden gesetzt. Andernfalls bricht
+\fBVim\fP mit einer Fehlermeldung ab.
+.TP
+\-g
+Falls \fBVim\fP mit GUI\-Unterstützung kompiliert wurde, wird die GUI
+aktiviert. Falls keine GUI\-Unterstützung einkompiliert wurde, wird mit einer
+Fehlermeldung abgebrochen.
+.TP
+\-h
+Gibt eine kleine Hilfe für die Befehlszeilenparameter aus. Danach beendet
+sich \fBVim.\fP
+.TP
+\-H
+Hebräisch\-Modus, falls \fBVim\fP mit RIGHTLEFT\-Unterstützung für das Schreiben
+von rechts nach links und hebräischer Tastaturbelegung kompiliert wurde,
+werden die Optionen 'hkmap' und 'rightleft' gesetzt. Andernfalls beendet
+sich \fBVim\fP mit einer Fehlermeldung.
+.TP
+\-i {VimInfo}
+Wenn eine VimInfo\-Datei verwendet wird: Verwendet statt »~/.viminfo« die
+angegebene Datei. Es ist auch möglich die Verwendung einer VimInfo\-Datei
+durch Angabe des Dateinamen »NONE« zu verhindern,
+.TP
+\-L
+dasselbe wie »\-r«
+.TP
+\-l
+Lisp\-Modus. Aktiviert die Optionen 'lisp' und 'showmatch'.
+.TP
+\-m
+Deaktiviert das Verändern von Dateien, indem die Option 'write' gelöscht
+wird. Der Puffer kann verändert werden, nur das Schreiben einer Datei ist
+nicht möglich.
+.TP
+\-M
+Keine Veränderungen erlaubt: Die Optionen 'modifiable' und 'write' werden
+gelöscht, so dass Änderungen nicht erlaubt sind und Dateien nicht
+geschrieben werden können. Man beachte, dass diese Optionen ('modifiable',
+\&'write') dennnoch nachträglich zum Erlauben von Änderungen gesetzt werden
+können.
+.TP
+\-N
+Nicht\-kompatibler Modus: Löscht die Option 'compatible'. Dies veranlasst
+\fBVim\fP, sich ein wenig besser, aber weniger Vi\-kompatibel zu verhalten,
+selbst wenn es keine VimRC\-Datei gibt.
+.TP
+\-n
+Verwendet keine Auslagerungsdatei: Eine Wiederherstellung nach einem Absturz
+ist nicht möglich. Auf einem langsamen Medium (Diskette) kann diese
+Einstellung nützlich sein. Kann auch mit »set uc=0« erreicht werden; kann
+mit »set uc=200« aufgehoben werden.
+.TP
+\-nb
+\fBVim\fP fungiert als Server für NetBeans. Details siehe Dokumentation.
+.TP
+\-o[N]
+Öffnet [N] Fenster übereinander. Wenn keine Zahl angegeben wird, öffne ein
+Fenster pro Datei.
+.TP
+\-O[N]
+Öffnet [N] Fenster nebeneinander. Wenn keine Zahl angegeben wird, öffne ein
+Fenster pro Datei.
+.TP
+\-p[N]
+Öffnet [N] Reiterseiten. Wenn keine Zahl angegeben wird, öffne eine
+Reiterseite pro Datei.
+.TP
+\-R
+Nur\-Lesen\-Modus: Die Option 'readonly' wird gesetzt. Der Puffer kann noch
+bearbeitet werden, aber es wird verhindert, eine Datei aus Versehen zu
+überschreiben. Wenn Sie wirklich eine Datei überschreiben wollen, fügen Sie
+dem Ex\-Befehl ein Ausrufezeichen hinzu (wie in »:w!«). Die Option "\-R«
+bedingt die Option »\-n« (siehe oben). Die Option 'readonly' kann durch ":set
+noro« gelöscht werden. Siehe »:help 'readonly'«.
+.TP
+\-r
+Listet die Auslagerungsdateien und gibt Informationen zu ihrer
+Verwendbarkeit zur Wiederherstellung.
+.TP
+\-r {Datei}
+Wiederherstellungsmodus: Die Auslagerungsdatei wird zur Wiederherstellung
+verwendet und hat denselben Dateinamen wie die Text\-Datei + ».swp«. Siehe
+":help recovery«.
+.TP
+\-s
+Der stille Modus: Nur wenn die ausführbare Datei als »ex« aufgerufen wird
+oder vor »\-s« die Option "\-e« gegeben wird.
+.TP
+\-s {Eingabeskript}
+Die Datei {Eingabeskript} wird gelesen und ausgeführt, als würden Sie die
+Zeichen in ihr tippen. Dasselbe kann mit dem Befehl »:source!
+{Eingabeskript}« erreicht werden. Wird das Ende der Datei vor dem Beenden
+des Editors erreicht, werden weitere Zeichen von der Tastatur gelesen.
+.TP
+\-T {Terminal}
+Setzt den Namen des benutzten Terminals. Nur erforderlich, wenn die
+Automatik nicht funktioniert. Sollte ein \fBVim\fP bekanntes Terminal sein:
+(builtin) oder in einer termcap\- oder terminfo\-Datei definiert.
+.TP
+\-u {VimRC}
+Verwendet zur Initialisierung die Befehle in der Datei {VimRC}. Alle anderen
+Initialisierungen werden übersprungen. Benutzen Sie dies, um eine besondere
+Art von Dateien zu bearbeiten. Dies kann auch benutzt werden, um alle
+Initialisierungen zu überspringen, indem der Name »NONE« angegeben wird. Für
+weitere Einzelheiten siehe »:help initialisation« innerhalb von Vim.
+.TP
+\-U {GvimRC}
+Benutzt die Befehle in der Datei {GvimRC} für die Initialisierung der
+grafischen Oberfläche. Alle anderen Initialisierungen werden
+übersprungen. Dies kann ebenfalls benutzt werden, um alle
+GUI\-Initialisierungen zu überspringen, indem der Name »NONE« angegeben
+wird. Siehe »:help gui\-init« innerhalb von Vim für weitere Einzelheiten.
+.TP
+\-V[N]
+Ausführlich (verbose): Gibt Meldungen darüber, welche Befehlsdateien
+eingelesen werden, und über das Lesen und Schreiben einer VimInfo\-Datei. Die
+optionale Zahl N ist der Wert für 'verbose'. Vorgabe ist 10.
+.TP
+\-v
+Startet \fBVim\fP im Vi\-Modus, so als würde die ausführbare Datei mit »vi«
+aufgerufen. Dies wirkt sich nur aus, wenn die ausführbare Datei als »ex«
+aufgerufen wird.
+.TP
+\-w {Ausgabeskript}
+Alle Zeichen, die eingetippt werden, werden in der Datei {Ausgabeskript}
+aufgezeichnet, solange bis Sie \fBVim\fP beenden. Dies ist nützlich, falls Sie
+eine Skript\-Datei zum Benutzen mit »vim \-s« oder ":source!« erzeugen
+wollen. Falls die Datei {Ausgabeskript} vorhanden ist, werden die Zeichen
+angehängt.
+.TP
+\-W {Ausgabeskript}
+Wie \-w, aber eine bereits vorhandene Datei wird überschrieben.
+.TP
+\-x
+Benutzt beim Schreiben von Dateien eine Verschlüsselung. Fragt nach dem
+Schlüssel.
+.TP
+\-X
+Führt keine Verbindung zum X\-Server durch. Dadurch verkürzt sich die
+Startzeit, aber der Fenstertitel und die Zwischenablage werden nicht
+verwendet.
+.TP
+\-y
+Startet \fBVim\fP im einfachen Modus, als würde die ausführbare Datei mit
+»evim« oder »eview« aufgerufen. \fBVim\fP verhält sich dann wie ein Editor zum
+Klicken und Tippen.
+.TP
+\-Z
+Eingeschränkter Modus: Funktioniert, als würde der Name der ausführbaren
+Datei mit »r« beginnen.
+.TP
+\-\-
+Markiert das Ende der Optionen. Argumente, die folgen, werden als Dateinamen
+behandelt. Dies kann benutzt werden, um einen Dateinamen mit »\-« am Anfang
+zu verwenden.
+.TP
+\-\-echo\-wid
+Nur GTK\-GUI: Schreibe die Fenster\-ID auf die Standardausgabe.
+.TP
+\-\-help
+Gibt eine Hilfe\-Nachricht aus und beendet, wie »\-h«.
+.TP
+\-\-literal
+Nimmt die Dateinamen so wie sie sind und vervollständigt sie nicht nach
+Metazeichen (*,?). Dies wirkt sich nicht unter Unix aus, wo die Shell die
+Metazeichen expandiert.
+.TP
+\-\-noplugin
+Lade keine Plugins. Impliziert durch »\-u NONE«.
+.TP
+\-\-remote
+Verbindet mit einem Vim\-Server und lässt ihn die in den restlichen
+Argumenten angegeben Dateien editieren. Wenn kein Server gefunden wird,
+führt dies zu einer Warnmeldung und die Dateien werden im gegenwärtigen Vim
+zum Bearbeiten geöffnet.
+.TP
+\-\-remote\-expr {Ausdruck}
+Verbindet mit einem Vim\-Server, führt {Ausdruck} aus und zeigt das Ergebnis
+auf der Standardausgabe an.
+.TP
+\-\-remote\-send {Zeichen}
+Verbindet mit einem Vim\-Server und sendet ihm {Zeichen}.
+.TP
+\-\-remote\-silent
+Wie »\-\-remote«, aber ohne Warnung, wenn kein Server gefunden wird.
+.TP
+\-\-remote\-wait
+Wie »\-\-remote«, aber Vim beendet sich nicht, bis die Dateien bearbeitet
+wurden.
+.TP
+\-\-remote\-wait\-silent
+Wie »\-\-remote\-wait«, aber ohne Warnung, wenn kein Server gefunden wird.
+.TP
+\-\-serverlist
+Listet die Namen aller gefundenen Vim\-Server auf.
+.TP
+\-\-servername {Name}
+Benutzt {Name} als Server\-Namen. Wird für den gegenwärtigen Vim benutzt,
+außer es wird mit dem Argument »\-\-remote« benutzt, dann ist es der Name des
+zu kontaktierenden Servers.
+.TP
+\-\-socketid {id}
+Nur GTK\-GUI: Benutzt den GtkPlug\-Mechanismus, um GVim in einem anderen
+Fenster laufen zu lassen.
+.TP
+\-\-version
+Versionsinformation anzeigen und beenden
+.SH "EINGEBAUTE HILFE"
+Tippen Sie in \fBVim\fP »:help«, um zu beginnen. Geben Sie ":help begriff« ein,
+um Hilfe über ein bestimmtes Thema zu bekommen. Zum Beispiel »:help ZZ« für
+Hilfe über den Befehl »ZZ«. Benutzen Sie <Tab> und CTRL\-D, um
+Begriffe zu vervollständigen (»:help cmdline\-completion«). Tags sind
+vorhanden, um von einem Ort zum anderen zu springen (eine Art
+Hypertext\-Verknüpfungen, siehe »:help«). Auf diese Weise können alle
+Dokumentations\-Dateien aufgerufen werden, zum Beispiel »:help syntax.txt«.
+.SH DATEIEN
+.TP 15
+/usr/local/lib/vim/doc/*.txt
+Dokumentations\-Dateien für \fBVim\fP. Verwenden Sie »:help doc\-file\-list«, um
+die gesamte Liste zu bekommen.
+.TP
+/usr/local/lib/vim/doc/tags
+Die »Tag«\-Datei, die verwendet wird, um Informationen in der Dokumentation
+zu finden.
+.TP
+/usr/local/lib/vim/syntax/syntax.vim
+Die systemweite Einrichtung der Syntaxhervorhebung.
+.TP
+/usr/local/lib/vim/syntax/*.vim
+Syntaxdateien für die verschiedenen Sprachen.
+.TP
+/usr/local/lib/vim/vimrc
+Systemweite Einstellungsdatei für \fBVim\fP
+.TP
+~/.vimrc
+Persönliche Einstellungsdatei für \fBVim\fP
+.TP
+/usr/local/lib/vim/gvimrc
+Systemweite Einstellungsdatei für GVim
+.TP
+~/.gvimrc
+Persönliche Einstellungsdatei für GVim
+.TP
+/usr/local/lib/vim/optwin.vim
+Das Script, das von dem Befehl »:options« verwendet wird, eine schöne
+Möglichkeit, um Optionen zu betrachten und zu setzen.
+.TP
+/usr/local/lib/vim/menu.vim
+Systemweite Einstellungsdatei für das Menü von GVim
+.TP
+/usr/local/lib/vim/bugreport.vim
+Das Script zum Generieren eines Fehlerberichts. Siehe »:help bugs«.
+.TP
+/usr/local/lib/vim/filetype.vim
+Mit diesem Script erkennt Vim den Typ einer Datei anhand ihres
+Dateinamens. Siehe »:help 'filetype'«.
+.TP
+/usr/local/lib/vim/scripts.vim
+Mit diesem Script erkennt Vim den Typ einer Datei anhand ihres
+Inhaltes. Siehe »:help 'filetype'«.
+.TP
+/usr/local/lib/vim/print/*.ps
+Diese Dateien werden zum Drucken von PostScript verwendet.
+.PP
+Für die neuesten Informationen lesen Sie die Vim\-Homepage:
+.br
+<URL:http://www.vim.org/>
+.SH "SIEHE AUCH"
+vimtutor(1)
+.SH AUTOR
+\fBVim\fP wurde größtenteils von Bram Moolenaar erstellt, mit viel Hilfe von
+anderen Leuten. Siehe »:help credits« in \fBVim.\fP
+.br
+\fBVim\fP basiert auf Stevie, der von Tim Thompson, Tony Andrews und
+G.R. (Fred) Walter geschrieben wurde. Es ist jedoch kaum etwas vom
+ursprünglichen Code übrig geblieben.
+.SH FEHLER
+Die sind möglich. Siehe »:help todo« für eine Liste bekannter Probleme.
+.PP
+Beachten Sie, dass gewisse Dinge, die manche Leute als Fehler betrachten
+mögen, in Wirklichkeit durch zu getreue Nachbildung des Vi\-Verhaltens
+verursacht werden. Und falls Sie denken, dass andere Dinge Fehler sind,
+»weil Vi es anders tut«, sollten Sie einen genaueren Blick auf die Datei
+vi_diff.txt werfen (oder in Vim »:help vi_diff.txt« tippen). Sehen Sie sich
+auch die Optionen 'compatible' und 'cpoptions' an.
--- /dev/null
+.\"*******************************************************************
+.\"
+.\" This file was generated with po4a. Translate the source file.
+.\"
+.\"*******************************************************************
+.\" Translated by bw1 (2008) and Florian Rehnisch <fm-r@gmx.de> (2012)
+.\" Kudos to the folks on vim-dev and debian-l10n-german
+.TH VIM 1 "2006 Apr 11"
+.SH BEZEICHNUNG
+vim \- Vi IMproved, ein Text\-Editor für Programmierer
+.SH ÜBERSICHT
+.br
+\fBvim\fP [Optionen] [Datei …]
+.br
+\fBvim\fP [Optionen] \-
+.br
+\fBvim\fP [Optionen] \-t Tag
+.br
+\fBvim\fP [Optionen] \-q [Fehlerdatei]
+.PP
+.br
+\fBex\fP
+.br
+\fBview\fP
+.br
+\fBgvim\fP \fBgview\fP \fBevim\fP \fBeview\fP
+.br
+\fBrvim\fP \fBrview\fP \fBrgvim\fP \fBrgview\fP
+.SH BESCHREIBUNG
+\fBVim\fP ist ein Text\-Editor, der aufwärtskompatibel zu Vi ist. Er kann
+verwendet werden, um alle Arten von Klartext zu bearbeiten. Er ist besonders
+nützlich, um Programme zu bearbeiten.
+.PP
+Vim hat einige Erweiterungen gegenüber Vi, z.B.: Rückgängigmachen in
+mehreren Schritten, mehrere Fenster und Puffer, Syntax\-Hervorhebung,
+Bearbeiten der Befehlszeile, Dateinamenergänzung, eingebaute Hilfe, visuelle
+Auswahl, usw. … Siehe »:help vi_diff.txt« für eine Übersicht der
+Unterschiede zwischen \fBVim\fP und Vi.
+.PP
+Im laufenden \fBVim\fP kann mit dem Befehl »:help« viel Hilfe durch das
+eingebaute Hilfesystem erlangt werden. Siehe den Abschnitt EINGEBAUTE HILFE
+weiter unten.
+.PP
+Meistens wird \fBVim\fP zum Editieren einer einzigen Datei mit dem folgende
+Befehl gestartet:
+.PP
+ vim Datei
+.PP
+Allgemeiner betrachtet, wird \fBVim\fP folgendermaßen gestartet:
+.PP
+ vim [Optionen] [Dateiliste]
+.PP
+Bei einer fehlenden Dateiliste startet der Editor mit einem leeren
+Puffer. Andernfalls werden nach den folgenden vier Möglichkeiten eine oder
+mehrere Dateien bearbeitet:
+.TP 12
+Datei …
+Eine Liste von Dateinamen. Die erste Datei wird in den Puffer geladen und
+zur aktuellen. Der Cursor wird auf der ersten Zeile des Puffers
+platziert. Zu den anderen Dateien kann mit dem Befehl »:next« gelangt
+werden. Falls einer der Dateinamen mit einem Bindestrich beginnt, stellen
+Sie der Dateiliste »\-\-« voran.
+.TP
+\-
+Die zu bearbeitende Datei wird von der Standardeingabe gelesen. Befehle
+werden von der Standardfehlerausgabe gelesen, die ein Text\-Terminal sein
+sollte.
+.TP
+\-t {Tag}
+Die zu editierende Datei und die anfängliche Cursor\-Position hängen von
+einem »Tag« ab, einer Art Sprungmarke. {Tag} wird in der Tag\-Datei
+nachgeschlagen, die zugehörige Datei wird zur aktuellen und der zugehörige
+Befehl wird ausgeführt. Dies wird meistens für Programme in der Sprache »C«
+benutzt, wobei {Tag} ein Funktionsname sein könnte. Die Wirkung dieses
+Befehls ist, dass die Datei, die die Funktion enthält, als aktuelle im
+Editor geöffnet und angezeigt wird und der Cursor auf dem Beginn der
+Funktion positioniert wird. Siehe »:help tag\-commands«.
+.TP
+\-q [Fehlerdatei]
+Startet im QuickFix\-Modus. Die Datei [Fehlerdatei] wird gelesen und der
+erste Fehler wird angezeigt. Falls [Fehlerdatei] ausgelassen wird, wird der
+Dateiname aus der Option 'errorfile' verwendet (bei AmigaOS ist dies
+vorgabemäßig »AztecC.Err«, sowie „errors.err« bei anderen). Weitere Fehler
+können mit dem »:cn«\-Befehl angesprungen werden. Siehe „:help quickfix«.
+.PP
+\fBVim\fP reagiert unterschiedlich auf den Namen, der verwendet wird, um Vim zu
+starten (die ausführbare Datei kann dieselbe sein).
+.TP 10
+vim
+der »normale« Weg, alles ist standardmäßig
+.TP
+ex
+Startet im Ex\-Modus. Mit dem Befehl »:vi« gelangt man in den normalen
+Modus. Funktioniert auch mit dem Argument »\-e«.
+.TP
+view
+Startet im Nur\-Lesen\-Modus. Die Datei wird vor dem Überschreiben
+geschützt. Dasselbe wird mit dem Parameter »\-R« erreicht.
+.TP
+gvim gview
+Die grafische Version: Öffnet ein neues Fenster. Dasselbe wird mit dem
+Parameter »\-g« erreicht.
+.TP
+evim eview
+Die grafische Version im einfachen Modus: Öffnet ein neues Fenster. Dasselbe
+wird mit dem Parameter »\-y« erreicht.
+.TP
+rvim rview rgvim rgview
+Wie die obigen, aber mit Beschränkungen: Es ist nicht möglich, Shell\-Befehle
+aufzurufen oder mit Unterbrechung in eine Shell zurückzuspringen. Dasselbe
+wird mit dem Parameter »\-Z« erreicht.
+.SH OPTIONEN
+Die Optionen können in beliebiger Reihenfolge vor oder nach den Dateinamen
+angegeben werden. Optionen ohne Parameter können hinter einem einzigen
+Bindestrich gruppiert werden.
+.TP 12
++[Nummer]
+In der ersten Datei wird der Cursor auf die Zeile [Nummer] gesetzt. Falls
+[Nummer] nicht angegeben wird, wird der Cursor in die letzte Zeile der Datei
+gesetzt.
+.TP
++/{Suchmuster}
+In der ersten Datei wird der Cursor auf das erste Auftreten von {Suchmuster}
+gesetzt. Siehe »:help search\-pattern«.
+.TP
++{Befehl}
+.TP
+\-c {Befehl}
+{Befehl} wird nach dem Lesen der ersten Datei ausgeführt. Als {Befehl} wird
+ein Ex\-Befehl erwartet. Sind in {Befehl} Leerzeichen vorhanden, muss alles
+in Anführungszeichen gesetzt werden (hängt von der verwendeten Shell
+ab). Beispiel: vim "+set si" main.c
+.br
+Anmerkung: Sie können bis zu 10 »+«\- oder „\-c«\-Befehle verwenden.
+.TP
+\-S {Datei}
+{Datei} wird nach dem Lesen der ersten Datei ausgeführt. Dies entspricht »\-c
+"source {Datei}"«. {Datei} darf nicht mit einem Bindestrich (\-)
+anfangen. Wenn kein Dateiname angegeben wird, wird »Session.vim« verwendet
+(Funktioniert nur, wenn »\-S« als letzter Parameter steht).
+.TP
+\-\-cmd {Befehl}
+Wie »\-c«, aber dieser Befehl wird vor allen VimRC\-Dateien ausgeführt. Sie
+können unabhängig von den »\-c«\-Befehlen bis zu 10 dieser Befehle verwenden.
+.TP
+\-A
+Falls \fBVim\fP mit Unterstützung für das Schreiben von rechts nach links und
+arabischer Tastaturbelegung compiliert wurde (ARABIC), startet dieser
+Parameter den Modus fürs Arabische (:set arabic). Anderenfalls beendet sich
+\fBVim\fP mit einer Fehlermeldung.
+.TP
+b
+Binärer Modus: Es werden einige Variablen gesetzt, sodass es möglich ist,
+eine binäre oder ausführbare Datei zu bearbeiten.
+.TP
+\-C
+Kompatibel: Setzt die Option 'compatible'. Das macht \fBVim\fP im Verhalten
+sehr ähnlich zu Vi, selbst wenn eine VimRC\-Datei existiert.
+.TP
+\-d
+Startet im diff\-Modus. Es sollten zwei, drei oder vier Dateinamen als
+Parameter übergeben werden. \fBVim\fP öffnet sie alle und zeigt die
+Unterschiede an. Arbeitet wie vimdiff(1).
+.TP
+\-d {Gerät}
+Öffnet das {Gerät}, um es als Terminal zu nutzen. Nur für AmigaOS. Beispiel:
+"\-d con:20/30/600/150".
+.TP
+D
+Debug\-Modus: \fBVim\fP geht in den Debug\-Modus, wenn der erste Befehl in einem
+Skript ausgeführt wird.
+.TP
+\-e
+Startet \fBVim\fP im Ex\-Modus, als würde als ausführbare Datei »ex« aufgerufen.
+.TP
+\-E
+Startet \fBVim\fP im erweiterten Ex\-Modus, als würde die ausführbare Datei als
+»exim« aufgerufen.
+.TP
+\-f
+Vordergrund: Bei der GUI\-Version erzeugt \fBVim\fP keinen neuen Prozess und
+löst sich nicht von der Shell, in der er aufgerufen wurde. Bei AmigaOS wird
+kein neues Fenster geöffnet. Dieser Parameter wird benutzt, damit das
+aufrufende Programm auf das Beenden des Bearbeitungssitzung wartet (z.B.:
+mail). Bei AmigaOS funktionieren die Befehle »:sh« und „:!« nicht.
+.TP
+\-\-nofork
+Vordergrund: Bei der GUI\-Version erzeugt \fBVim\fP keinen neuen Prozess und
+löst sich nicht von der Shell, in der er aufgerufen wurde.
+.TP
+\-F
+Wenn \fBVim\fP mit FKMAP\-Unterstützung für das Schreiben von rechts nach links
+und Farsi\-Tastatur\-Belegung kompiliert wurde, startet Vim im Farsi\-Modus,
+d.h. die Optionen 'fkmap' und 'rightleft' werden gesetzt. Andernfalls bricht
+\fBVim\fP mit einer Fehlermeldung ab.
+.TP
+\-g
+Falls \fBVim\fP mit GUI\-Unterstützung kompiliert wurde, wird die GUI
+aktiviert. Falls keine GUI\-Unterstützung einkompiliert wurde, wird mit einer
+Fehlermeldung abgebrochen.
+.TP
+\-h
+Gibt eine kleine Hilfe für die Befehlszeilenparameter aus. Danach beendet
+sich \fBVim.\fP
+.TP
+\-H
+Hebräisch\-Modus, falls \fBVim\fP mit RIGHTLEFT\-Unterstützung für das Schreiben
+von rechts nach links und hebräischer Tastaturbelegung kompiliert wurde,
+werden die Optionen 'hkmap' und 'rightleft' gesetzt. Andernfalls beendet
+sich \fBVim\fP mit einer Fehlermeldung.
+.TP
+\-i {VimInfo}
+Wenn eine VimInfo\-Datei verwendet wird: Verwendet statt »~/.viminfo« die
+angegebene Datei. Es ist auch möglich die Verwendung einer VimInfo\-Datei
+durch Angabe des Dateinamen »NONE« zu verhindern,
+.TP
+\-L
+dasselbe wie »\-r«
+.TP
+\-l
+Lisp\-Modus. Aktiviert die Optionen 'lisp' und 'showmatch'.
+.TP
+\-m
+Deaktiviert das Verändern von Dateien, indem die Option 'write' gelöscht
+wird. Der Puffer kann verändert werden, nur das Schreiben einer Datei ist
+nicht möglich.
+.TP
+\-M
+Keine Veränderungen erlaubt: Die Optionen 'modifiable' und 'write' werden
+gelöscht, so dass Änderungen nicht erlaubt sind und Dateien nicht
+geschrieben werden können. Man beachte, dass diese Optionen ('modifiable',
+\&'write') dennnoch nachträglich zum Erlauben von Änderungen gesetzt werden
+können.
+.TP
+\-N
+Nicht\-kompatibler Modus: Löscht die Option 'compatible'. Dies veranlasst
+\fBVim\fP, sich ein wenig besser, aber weniger Vi\-kompatibel zu verhalten,
+selbst wenn es keine VimRC\-Datei gibt.
+.TP
+\-n
+Verwendet keine Auslagerungsdatei: Eine Wiederherstellung nach einem Absturz
+ist nicht möglich. Auf einem langsamen Medium (Diskette) kann diese
+Einstellung nützlich sein. Kann auch mit »set uc=0« erreicht werden; kann
+mit »set uc=200« aufgehoben werden.
+.TP
+\-nb
+\fBVim\fP fungiert als Server für NetBeans. Details siehe Dokumentation.
+.TP
+\-o[N]
+Öffnet [N] Fenster übereinander. Wenn keine Zahl angegeben wird, öffne ein
+Fenster pro Datei.
+.TP
+\-O[N]
+Öffnet [N] Fenster nebeneinander. Wenn keine Zahl angegeben wird, öffne ein
+Fenster pro Datei.
+.TP
+\-p[N]
+Öffnet [N] Reiterseiten. Wenn keine Zahl angegeben wird, öffne eine
+Reiterseite pro Datei.
+.TP
+\-R
+Nur\-Lesen\-Modus: Die Option 'readonly' wird gesetzt. Der Puffer kann noch
+bearbeitet werden, aber es wird verhindert, eine Datei aus Versehen zu
+überschreiben. Wenn Sie wirklich eine Datei überschreiben wollen, fügen Sie
+dem Ex\-Befehl ein Ausrufezeichen hinzu (wie in »:w!«). Die Option „\-R«
+bedingt die Option »\-n« (siehe oben). Die Option 'readonly' kann durch „:set
+noro« gelöscht werden. Siehe »:help 'readonly'«.
+.TP
+\-r
+Listet die Auslagerungsdateien und gibt Informationen zu ihrer
+Verwendbarkeit zur Wiederherstellung.
+.TP
+\-r {Datei}
+Wiederherstellungsmodus: Die Auslagerungsdatei wird zur Wiederherstellung
+verwendet und hat denselben Dateinamen wie die Text\-Datei + ».swp«. Siehe
+„:help recovery«.
+.TP
+\-s
+Der stille Modus: Nur wenn die ausführbare Datei als »ex« aufgerufen wird
+oder vor »\-s« die Option „\-e« gegeben wird.
+.TP
+\-s {Eingabeskript}
+Die Datei {Eingabeskript} wird gelesen und ausgeführt, als würden Sie die
+Zeichen in ihr tippen. Dasselbe kann mit dem Befehl »:source!
+{Eingabeskript}« erreicht werden. Wird das Ende der Datei vor dem Beenden
+des Editors erreicht, werden weitere Zeichen von der Tastatur gelesen.
+.TP
+\-T {Terminal}
+Setzt den Namen des benutzten Terminals. Nur erforderlich, wenn die
+Automatik nicht funktioniert. Sollte ein \fBVim\fP bekanntes Terminal sein:
+(builtin) oder in einer termcap\- oder terminfo\-Datei definiert.
+.TP
+\-u {VimRC}
+Verwendet zur Initialisierung die Befehle in der Datei {VimRC}. Alle anderen
+Initialisierungen werden übersprungen. Benutzen Sie dies, um eine besondere
+Art von Dateien zu bearbeiten. Dies kann auch benutzt werden, um alle
+Initialisierungen zu überspringen, indem der Name »NONE« angegeben wird. Für
+weitere Einzelheiten siehe »:help initialisation« innerhalb von Vim.
+.TP
+\-U {GvimRC}
+Benutzt die Befehle in der Datei {GvimRC} für die Initialisierung der
+grafischen Oberfläche. Alle anderen Initialisierungen werden
+übersprungen. Dies kann ebenfalls benutzt werden, um alle
+GUI\-Initialisierungen zu überspringen, indem der Name »NONE« angegeben
+wird. Siehe »:help gui\-init« innerhalb von Vim für weitere Einzelheiten.
+.TP
+\-V[N]
+Ausführlich (verbose): Gibt Meldungen darüber, welche Befehlsdateien
+eingelesen werden, und über das Lesen und Schreiben einer VimInfo\-Datei. Die
+optionale Zahl N ist der Wert für 'verbose'. Vorgabe ist 10.
+.TP
+\-v
+Startet \fBVim\fP im Vi\-Modus, so als würde die ausführbare Datei mit »vi«
+aufgerufen. Dies wirkt sich nur aus, wenn die ausführbare Datei als »ex«
+aufgerufen wird.
+.TP
+\-w {Ausgabeskript}
+Alle Zeichen, die eingetippt werden, werden in der Datei {Ausgabeskript}
+aufgezeichnet, solange bis Sie \fBVim\fP beenden. Dies ist nützlich, falls Sie
+eine Skript\-Datei zum Benutzen mit »vim \-s« oder „:source!« erzeugen
+wollen. Falls die Datei {Ausgabeskript} vorhanden ist, werden die Zeichen
+angehängt.
+.TP
+\-W {Ausgabeskript}
+Wie \-w, aber eine bereits vorhandene Datei wird überschrieben.
+.TP
+\-x
+Benutzt beim Schreiben von Dateien eine Verschlüsselung. Fragt nach dem
+Schlüssel.
+.TP
+\-X
+Führt keine Verbindung zum X\-Server durch. Dadurch verkürzt sich die
+Startzeit, aber der Fenstertitel und die Zwischenablage werden nicht
+verwendet.
+.TP
+\-y
+Startet \fBVim\fP im einfachen Modus, als würde die ausführbare Datei mit
+»evim« oder »eview« aufgerufen. \fBVim\fP verhält sich dann wie ein Editor zum
+Klicken und Tippen.
+.TP
+\-Z
+Eingeschränkter Modus: Funktioniert, als würde der Name der ausführbaren
+Datei mit »r« beginnen.
+.TP
+\-\-
+Markiert das Ende der Optionen. Argumente, die folgen, werden als Dateinamen
+behandelt. Dies kann benutzt werden, um einen Dateinamen mit »\-« am Anfang
+zu verwenden.
+.TP
+\-\-echo\-wid
+Nur GTK\-GUI: Schreibe die Fenster\-ID auf die Standardausgabe.
+.TP
+\-\-help
+Gibt eine Hilfe\-Nachricht aus und beendet, wie »\-h«.
+.TP
+\-\-literal
+Nimmt die Dateinamen so wie sie sind und vervollständigt sie nicht nach
+Metazeichen (*,?). Dies wirkt sich nicht unter Unix aus, wo die Shell die
+Metazeichen expandiert.
+.TP
+\-\-noplugin
+Lade keine Plugins. Impliziert durch »\-u NONE«.
+.TP
+\-\-remote
+Verbindet mit einem Vim\-Server und lässt ihn die in den restlichen
+Argumenten angegeben Dateien editieren. Wenn kein Server gefunden wird,
+führt dies zu einer Warnmeldung und die Dateien werden im gegenwärtigen Vim
+zum Bearbeiten geöffnet.
+.TP
+\-\-remote\-expr {Ausdruck}
+Verbindet mit einem Vim\-Server, führt {Ausdruck} aus und zeigt das Ergebnis
+auf der Standardausgabe an.
+.TP
+\-\-remote\-send {Zeichen}
+Verbindet mit einem Vim\-Server und sendet ihm {Zeichen}.
+.TP
+\-\-remote\-silent
+Wie »\-\-remote«, aber ohne Warnung, wenn kein Server gefunden wird.
+.TP
+\-\-remote\-wait
+Wie »\-\-remote«, aber Vim beendet sich nicht, bis die Dateien bearbeitet
+wurden.
+.TP
+\-\-remote\-wait\-silent
+Wie »\-\-remote\-wait«, aber ohne Warnung, wenn kein Server gefunden wird.
+.TP
+\-\-serverlist
+Listet die Namen aller gefundenen Vim\-Server auf.
+.TP
+\-\-servername {Name}
+Benutzt {Name} als Server\-Namen. Wird für den gegenwärtigen Vim benutzt,
+außer es wird mit dem Argument »\-\-remote« benutzt, dann ist es der Name des
+zu kontaktierenden Servers.
+.TP
+\-\-socketid {id}
+Nur GTK\-GUI: Benutzt den GtkPlug\-Mechanismus, um GVim in einem anderen
+Fenster laufen zu lassen.
+.TP
+\-\-version
+Versionsinformation anzeigen und beenden
+.SH "EINGEBAUTE HILFE"
+Tippen Sie in \fBVim\fP »:help«, um zu beginnen. Geben Sie „:help begriff« ein,
+um Hilfe über ein bestimmtes Thema zu bekommen. Zum Beispiel »:help ZZ« für
+Hilfe über den Befehl »ZZ«. Benutzen Sie <Tab> und CTRL\-D, um
+Begriffe zu vervollständigen (»:help cmdline\-completion«). Tags sind
+vorhanden, um von einem Ort zum anderen zu springen (eine Art
+Hypertext\-Verknüpfungen, siehe »:help«). Auf diese Weise können alle
+Dokumentations\-Dateien aufgerufen werden, zum Beispiel »:help syntax.txt«.
+.SH DATEIEN
+.TP 15
+/usr/local/lib/vim/doc/*.txt
+Dokumentations\-Dateien für \fBVim\fP. Verwenden Sie »:help doc\-file\-list«, um
+die gesamte Liste zu bekommen.
+.TP
+/usr/local/lib/vim/doc/tags
+Die »Tag«\-Datei, die verwendet wird, um Informationen in der Dokumentation
+zu finden.
+.TP
+/usr/local/lib/vim/syntax/syntax.vim
+Die systemweite Einrichtung der Syntaxhervorhebung.
+.TP
+/usr/local/lib/vim/syntax/*.vim
+Syntaxdateien für die verschiedenen Sprachen.
+.TP
+/usr/local/lib/vim/vimrc
+Systemweite Einstellungsdatei für \fBVim\fP
+.TP
+~/.vimrc
+Persönliche Einstellungsdatei für \fBVim\fP
+.TP
+/usr/local/lib/vim/gvimrc
+Systemweite Einstellungsdatei für GVim
+.TP
+~/.gvimrc
+Persönliche Einstellungsdatei für GVim
+.TP
+/usr/local/lib/vim/optwin.vim
+Das Script, das von dem Befehl »:options« verwendet wird, eine schöne
+Möglichkeit, um Optionen zu betrachten und zu setzen.
+.TP
+/usr/local/lib/vim/menu.vim
+Systemweite Einstellungsdatei für das Menü von GVim
+.TP
+/usr/local/lib/vim/bugreport.vim
+Das Script zum Generieren eines Fehlerberichts. Siehe »:help bugs«.
+.TP
+/usr/local/lib/vim/filetype.vim
+Mit diesem Script erkennt Vim den Typ einer Datei anhand ihres
+Dateinamens. Siehe »:help 'filetype'«.
+.TP
+/usr/local/lib/vim/scripts.vim
+Mit diesem Script erkennt Vim den Typ einer Datei anhand ihres
+Inhaltes. Siehe »:help 'filetype'«.
+.TP
+/usr/local/lib/vim/print/*.ps
+Diese Dateien werden zum Drucken von PostScript verwendet.
+.PP
+Für die neuesten Informationen lesen Sie die Vim\-Homepage:
+.br
+<URL:http://www.vim.org/>
+.SH "SIEHE AUCH"
+vimtutor(1)
+.SH AUTOR
+\fBVim\fP wurde größtenteils von Bram Moolenaar erstellt, mit viel Hilfe von
+anderen Leuten. Siehe »:help credits« in \fBVim.\fP
+.br
+\fBVim\fP basiert auf Stevie, der von Tim Thompson, Tony Andrews und
+G.R. (Fred) Walter geschrieben wurde. Es ist jedoch kaum etwas vom
+ursprünglichen Code übrig geblieben.
+.SH FEHLER
+Die sind möglich. Siehe »:help todo« für eine Liste bekannter Probleme.
+.PP
+Beachten Sie, dass gewisse Dinge, die manche Leute als Fehler betrachten
+mögen, in Wirklichkeit durch zu getreue Nachbildung des Vi\-Verhaltens
+verursacht werden. Und falls Sie denken, dass andere Dinge Fehler sind,
+»weil Vi es anders tut«, sollten Sie einen genaueren Blick auf die Datei
+vi_diff.txt werfen (oder in Vim »:help vi_diff.txt« tippen). Sehen Sie sich
+auch die Optionen 'compatible' und 'cpoptions' an.
-*visual.txt* For Vim version 7.3. Last change: 2012 May 25
+*visual.txt* For Vim version 7.3. Last change: 2012 Jun 14
VIM REFERENCE MANUAL by Bram Moolenaar
Another way to operate on the Visual area is using the |/\%V| item in a
pattern. For example, to replace all '(' in the Visual area with '#': >
- :%s/\%V(/X/g
+ :'<,'>s/\%V(/#/g
+
+Note that the "'<,'>" will appear automatically when you press ":" in Visual
+mode.
==============================================================================
5. Blockwise operators *blockwise-operators*
" Vim support file to detect file types
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2012 May 18
+" Last Change: 2012 Jun 20
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
au BufNewFile,BufRead */etc/Muttrc.d/* call s:StarSetf('muttrc')
" M$ Resource files
-au BufNewFile,BufRead *.rc setf rc
+au BufNewFile,BufRead *.rc,*.rch setf rc
" MuPAD source
au BufRead,BufNewFile *.mu setf mupad
" Vim filetype plugin file
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2011 Aug 04
+" Last Change: 2012 Jul 10
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
let b:match_skip = 's:comment\|string\|character'
" Win32 can filter files in the browse dialog
-if has("gui_win32") && !exists("b:browsefilter")
+if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
if &ft == "cpp"
let b:browsefilter = "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" .
\ "C Header Files (*.h)\t*.h\n" .
" Menu Translations: Japanese (for Windows)
-" Translated By: MURAOKA Taro <koron@tka.att.ne.jp>
-" Last Change: 29-Apr-2004.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
source <sfile>:p:h/menu_japanese_japan.932.vim
" Menu Translations: Japanese (for UNIX)
-" Translated By: Muraoka Taro <koron@tka.att.ne.jp>
-" Last Change: 08:50:47 25-Mar-2001.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" eucjp is the same as euc-jp. Source the other one from here.
source <sfile>:p:h/menu_ja_jp.euc-jp.vim
" Menu Translations: Japanese (for UNIX)
-" Translated By: Muraoka Taro <koron@tka.att.ne.jp>
-" Last Change: 08:50:47 25-Mar-2001.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" eucjp is the same as euc-jp. Source the other one from here.
source <sfile>:p:h/menu_ja_jp.euc-jp.vim
" Menu Translations: Japanese (for UNIX)
-" Translated By: Muraoka Taro <koron@tka.att.ne.jp>
-" Last Change: 08:50:47 25-Mar-2001.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" ujis is the same as euc-jp. Source the other one from here.
source <sfile>:p:h/menu_ja_jp.euc-jp.vim
" Menu Translations: Japanese (for Windows)
-" Translated By: MURAOKA Taro <koron@tka.att.ne.jp>
-" Last Change: 29-Apr-2004.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
source <sfile>:p:h/menu_japanese_japan.932.vim
"
" Menu Translations: Japanese (EUC-JP)
" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
-" Last Change: 21-Mar-2011.
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2001-12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" Quit when menu translations have already been done.
if exists("did_menu_trans")
" Menu Translations: Japanese (for UNIX)
-" Translated By: Muraoka Taro <koron@tka.att.ne.jp>
-" Last Change: 08:50:47 25-Mar-2001.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" eucjp is the same as euc-jp. Source the other one from here.
source <sfile>:p:h/menu_ja_jp.euc-jp.vim
" Menu Translations: Japanese (for UNIX)
-" Translated By: Muraoka Taro <koron@tka.att.ne.jp>
-" Last Change: 08:50:47 25-Mar-2001.
+" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2004,12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" ujis is the same as euc-jp. Source the other one from here.
source <sfile>:p:h/menu_ja_jp.euc-jp.vim
"
" Menu Translations: Japanese (UTF-8)
" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
-" Last Change: 21-Mar-2011.
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2001-12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" Quit when menu translations have already been done.
if exists("did_menu_trans")
"
" Menu Translations: Japanese (CP932)
" Translated By: MURAOKA Taro <koron.kaoriya@gmail.com>
-" Last Change: 21-Mar-2011.
+" Last Change: 15-Jun-2012.
+"
+" Copyright (C) 2001-12 MURAOKA Taro <koron.kaoriya@gmail.com>
+" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
" Quit when menu translations have already been done.
if exists("did_menu_trans")
" Set options and add mapping such that Vim behaves a lot like MS-Windows
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2006 Apr 02
+" Last change: 2012 Jun 13
" bail out if this isn't wanted (mrsvim.vim uses this).
if exists("g:skip_loading_mswin") && g:skip_loading_mswin
" Visual mode without the +virtualedit feature. They are pasted as if they
" were characterwise instead.
" Uses the paste.vim autoload script.
+" Use CTRL-G u to have CTRL-Z only undo the paste.
-exe 'inoremap <script> <C-V>' paste#paste_cmd['i']
-exe 'vnoremap <script> <C-V>' paste#paste_cmd['v']
+exe 'inoremap <script> <C-V> <C-G>u' . paste#paste_cmd['i']
+exe 'vnoremap <script> <C-V>' . paste#paste_cmd['v']
imap <S-Insert> <C-V>
vmap <S-Insert> <C-V>
:progsearch VIM vim
SPELLDIR = ..
+VIMRC = ../spell.vim
FILES = hu_HU.aff hu_HU.dic
all: $SPELLDIR/hu.iso-8859-2.spl $SPELLDIR/hu.utf-8.spl \
$SPELLDIR/hu.cp1250.spl ../README_hu.txt
$SPELLDIR/hu.iso-8859-2.spl : $FILES
- :sys env LANG=hu_HU.ISO8859-2 $VIM -u NONE -e -c "mkspell! $SPELLDIR/hu hu_HU" -c q
+ :sys env LANG=hu_HU.ISO8859-2 $VIM -u $VIMRC -e -c "mkspell! $SPELLDIR/hu hu_HU" -c q
$SPELLDIR/hu.utf-8.spl : $FILES
- :sys env LANG=hu_HU.UTF-8 $VIM -u NONE -e -c "mkspell! $SPELLDIR/hu hu_HU" -c q
+ :sys env LANG=hu_HU.UTF-8 $VIM -u $VIMRC -e -c "mkspell! $SPELLDIR/hu hu_HU" -c q
$SPELLDIR/hu.cp1250.spl : $FILES
- :sys $VIM -u NONE -e -c "set enc=cp1250" -c "mkspell! $SPELLDIR/hu hu_HU" -c q
+ :sys $VIM -u $VIMRC -e -c "set enc=cp1250" -c "mkspell! $SPELLDIR/hu hu_HU" -c q
../README_hu.txt: README_hu_HU.txt
:copy $source $target
--- /dev/null
+" Settings for when generating spellfiles.
+"
+" Assume we have 2 Gbyte RAM available.
+set mkspellmem=1800000,6000,1600
" Vim syntax file
" Language: Fortran 2008 (and earlier versions: 2003, 95, 90, and 77)
-" Version: 0.93
-" Last Change: 2012 Jan. 18
+" Version: 0.94
+" Last Change: 2012 June 18
" Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
" Usage: For instructions, do :help fortran-syntax from Vim
" Credits:
syn match fortranType "\<end\s*type"
syn match fortranType "\<in\s*out"
-syn keyword fortranType procedure
+syn keyword fortranType procedure
+syn match fortranType "\<module\ze\s\+procedure\>"
syn keyword fortranIOR namelist
syn keyword fortranConditionalR while
syn keyword fortranIntrinsicR achar iachar transfer
" ninja build file syntax.
" Language: ninja build file as described at
" http://martine.github.com/ninja/manual.html
-" Version: 1.1
-" Last Change: 2012/05/13
+" Version: 1.2
+" Last Change: 2012/06/01
" Maintainer: Nicolas Weber <nicolasweber@gmx.de>
" ninja lexer and parser are at
syn case match
-syn match ninjaComment /#.*/
+syn match ninjaComment /#.*/ contains=@Spell
" Toplevel statements are the ones listed here and
" toplevel variable assignments (ident '=' value).
" Function Names {{{2
syn keyword vimFuncName contained abs append argv atan2 bufexists bufname byte2line ceil cindent complete confirm cosh cursor did_filetype empty eventhandler exp extend filewritable findfile fmod foldclosed foldtext function getbufline getcharmod getcmdtype getfperm getftype getmatches getqflist gettabvar getwinposy globpath haslocaldir histdel hlexists iconv input inputrestore insert items len line localtime map match matchdelete matchstr min mode nextnonblank pathshorten prevnonblank pumvisible readfile reltimestr remote_foreground remote_read remove repeat reverse search searchpair searchpos serverlist setcmdpos setloclist setpos setreg settabwinvar shellescape sin sort spellbadword split str2float strchars strftime string strpart strtrans submatch synconcealed synIDattr synstack tabpagebuflist tabpagewinnr taglist tanh tolower tr type undotree virtcol winbufnr winheight winnr winrestview winwidth
syn keyword vimFuncName contained acos argc asin browse buflisted bufnr byteidx changenr clearmatches complete_add copy count deepcopy diff_filler escape executable expand feedkeys filter float2nr fnameescape foldclosedend foldtextresult garbagecollect getbufvar getcmdline getcwd getfsize getline getpid getreg gettabwinvar getwinvar has hasmapto histget hlID indent inputdialog inputsave isdirectory join libcall line2byte log maparg matchadd matchend max mkdir mzeval nr2char pow printf range reltime remote_expr remote_peek remote_send rename resolve round searchdecl searchpairpos server2client setbufvar setline setmatches setqflist settabvar setwinvar simplify sinh soundfold spellsuggest sqrt str2nr strdisplaywidth stridx strlen strridx strwidth substitute synID synIDtrans system tabpagenr tagfiles tan tempname toupper trunc undofile values visualmode wincol winline winrestcmd winsaveview writefile
-syn keyword vimFuncName contained add argidx atan browsedir bufloaded bufwinnr call char2nr col complete_check cos cscope_connection delete diff_hlID eval exists expr8 filereadable finddir floor fnamemodify foldlevel foreground get getchar getcmdpos getfontname getftime getloclist getpos getregtype getwinposx glob has_key histadd histnr hostname index inputlist inputsecret islocked keys libcallnr lispindent log10 mapcheck matcharg matchlist
+syn keyword vimFuncName contained add argidx atan browsedir bufloaded bufwinnr call char2nr col complete_check cos cscope_connection delete diff_hlID eval exists expr8 filereadable finddir floor fnamemodify foldlevel foreground get getchar getcmdpos getfontname getftime getloclist getpos getregtype getwinposx glob has_key histadd histnr hostname index inputlist inputsecret islocked keys libcallnr lispindent log10 mapcheck matcharg matchlist pyeval py3eval luaeval
"--- syntax above generated by mkvimvim ---
" Special Vim Highlighting (not automatic) {{{1
# Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed.
#
-# MURAOKA Taro <koron.kaoriya@gmail.com>, 2001-11.
-# Last Change: 23-Mar-2011.
+# Last Change: 15-Jun-2012.
+#
+# Copyright (C) 2001-12 MURAOKA Taro <koron.kaoriya@gmail.com>
+# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
#
msgid ""
msgstr ""
"Project-Id-Version: Vim 7.3\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-23 20:58+0900\n"
-"PO-Revision-Date: 2011-03-23 21:20+0900\n"
+"POT-Creation-Date: 2012-06-15 08:50+0900\n"
+"PO-Revision-Date: 2012-06-15 09:45+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"MIME-Version: 1.0\n"
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¤Ä¤âºîÀ®¤Ç¤¤Ê¤¤¤Î¤Ç, ½ªÎ»¤·¤Þ¤¹..."
msgstr "E108: ¤½¤ÎÊÑ¿ô¤Ï¤¢¤ê¤Þ¤»¤ó: \"%s\""
msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: (¥¢¥ó¥Á)¥í¥Ã¥¯¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+msgstr "E743: (¥¢¥ó)¥í¥Ã¥¯¤¹¤ë¤Ë¤ÏÊÑ¿ô¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
msgid "E109: Missing ':' after '?'"
msgstr "E109: '?' ¤Î¸å¤Ë ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
msgid "E808: Number or Float required"
msgstr "E808: ¿ôÃͤ«ÉâÆ°¾®¿ôÅÀ¿ô¤¬É¬ÍפǤ¹"
+msgid "add() argument"
+msgstr "add() ¤Î°ú¿ô"
+
msgid "E699: Too many arguments"
msgstr "E699: ¤¬Â¿²á¤®¤Þ¤¹"
msgid "&Ok"
msgstr "&Ok"
+msgid "extend() argument"
+msgstr "extend() ¤Î°ú¿ô"
+
#, c-format
msgid "E737: Key already exists: %s"
msgstr "E737: ¥¡¼¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s"
+msgid "map() argument"
+msgstr "map() ¤Î°ú¿ô"
+
+msgid "filter() argument"
+msgstr "filter() ¤Î°ú¿ô"
+
#, c-format
msgid "+-%s%3ld lines: "
msgstr "+-%s%3ld ¹Ô:"
msgid "called inputrestore() more often than inputsave()"
msgstr "inputrestore() ¤¬ inputsave() ¤è¤ê¤â¿¤¯¸Æ¤Ð¤ì¤Þ¤·¤¿"
+msgid "insert() argument"
+msgstr "insert() ¤Î°ú¿ô"
+
msgid "E786: Range not allowed"
msgstr "E786: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
msgid "E277: Unable to read a server reply"
msgstr "E277: ¥µ¡¼¥Ð¤Î±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "remove() argument"
+msgstr "remove() ¤Î°ú¿ô"
+
# Added at 10-Mar-2004.
msgid "E655: Too many symbolic links (cycle?)"
msgstr "E655: ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬Â¿²á¤®¤Þ¤¹ (½Û´Ä¤·¤Æ¤¤¤ë²ÄǽÀ¤¬¤¢¤ê¤Þ¤¹)"
+msgid "reverse() argument"
+msgstr "reverse() ¤Î°ú¿ô"
+
msgid "E258: Unable to send to client"
msgstr "E258: ¥¯¥é¥¤¥¢¥ó¥È¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+msgid "sort() argument"
+msgstr "sort() ¤Î°ú¿ô"
+
msgid "E702: Sort compare function failed"
msgstr "E702: ¥½¡¼¥È¤ÎÈæ³Ó´Ø¿ô¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
msgid "E806: using Float as a String"
msgstr "E806: ÉâÆ°¾®¿ôÅÀ¿ô¤òʸ»úÎó¤È¤·¤Æ°·¤Ã¤Æ¤¤¤Þ¤¹"
-#, 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 "E706: Variable type mismatch for: %s"
msgstr "E706: ÊÑ¿ô¤Î·¿¤¬°ìÃפ·¤Þ¤»¤ó: %s"
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 "E125: Illegal argument: %s"
msgstr "E125: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: °ú¿ô̾¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹: %s"
+
msgid "E126: Missing :endfunction"
msgstr "E126: :endfunction ¤¬¤¢¤ê¤Þ¤»¤ó"
msgstr "E187: ̤ÃÎ"
msgid "E465: :winsize requires two number arguments"
-msgstr "E465: "
+msgstr "E465: :winsize ¤Ë¤Ï2¤Ä¤Î¿ôÃͤΰú¿ô¤¬É¬ÍפǤ¹"
#, c-format
msgid "Window position: X %d, Y %d"
#. set mark
msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr "E191: °ú¿ô¤Ïʸ»ú¤«Á°¿Ê/¸åÂ९¥©¡¼¥È¤Ç¤·¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+msgstr "E191: °ú¿ô¤Ï1ʸ»ú¤Î±Ñ»ú¤«°úÍÑÉä (' ¤« `) ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
msgid "E192: Recursive use of :normal too deep"
msgstr "E192: :normal ¤ÎºÆµ¢ÍøÍѤ¬¿¼¤¯¤Ê¤ê²á¤®¤Þ¤·¤¿"
#. Give up for a multiple ":finally" and ignore it.
msgid "E607: multiple :finally"
-msgstr "E607: Ê£¿ô¤Î :finalyy ¤¬¤¢¤ê¤Þ¤¹"
+msgstr "E607: Ê£¿ô¤Î :finally ¤¬¤¢¤ê¤Þ¤¹"
msgid "E602: :endtry without :try"
msgstr "E602: :try ¤Î¤Ê¤¤ :endtry ¤Ç¤¹"
msgid "E228: makemap: Illegal mode"
msgstr "E228: makemap: ÉÔÀµ¤Ê¥â¡¼¥É"
-msgid "E229: Cannot start the GUI"
-msgstr "E229: GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
+msgid "--No lines in buffer--"
+msgstr "--¥Ð¥Ã¥Õ¥¡¤Ë¹Ô¤¬¤¢¤ê¤Þ¤»¤ó--"
-#, c-format
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+#.
+#. * The error messages that can be shared are included here.
+#. * Excluded are errors that are only used once and debugging messages.
+#.
+msgid "E470: Command aborted"
+msgstr "E470: ¥³¥Þ¥ó¥É¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿"
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: ͸ú¤Ê¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤¤¤Î¤Ç, GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
+msgid "E471: Argument required"
+msgstr "E471: °ú¿ô¤¬É¬ÍפǤ¹"
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' ¤¬Ìµ¸ú¤Ç¤¹"
+msgid "E10: \\ should be followed by /, ? or &"
+msgstr "E10: \\ ¤Î¸å¤Ï / ¤« ? ¤« & ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: 'imactivatekey' ¤ËÀßÄꤵ¤ì¤¿Ãͤ¬Ìµ¸ú¤Ç¤¹"
+msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
+msgstr "E11: ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Ï̵¸ú¤Ç¤¹; <CR>¤Ç¼Â¹Ô, CTRL-C¤Ç¤ä¤á¤ë"
-#, c-format
-msgid "E254: Cannot allocate color %s"
-msgstr "E254: %s ¤Î¿§¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
+msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
+msgstr ""
+"E12: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ä¥¿¥°¸¡º÷¤Ç¤Ïexrc/vimrc¤Î¥³¥Þ¥ó¥É¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-msgid "No match at cursor, finding next"
-msgstr "¥«¡¼¥½¥ë¤Î°ÌÃ֤˥ޥåÁ¤Ï¤¢¤ê¤Þ¤»¤ó, ¼¡¤ò¸¡º÷¤·¤Æ¤¤¤Þ¤¹"
+msgid "E171: Missing :endif"
+msgstr "E171: :endif ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "<cannot open> "
-msgstr "<³«¤±¤Þ¤»¤ó>"
+msgid "E600: Missing :endtry"
+msgstr "E600: :endtry ¤¬¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: ¥Õ¥©¥ó¥È %s ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+msgid "E170: Missing :endwhile"
+msgstr "E170: :endwhile ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
+msgid "E170: Missing :endfor"
+msgstr "E170: :endfor ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Pathname:"
-msgstr "¥Ñ¥¹Ì¾:"
+msgid "E588: :endwhile without :while"
+msgstr "E588: :while ¤Î¤Ê¤¤ :endwhile ¤¬¤¢¤ê¤Þ¤¹"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor ¤Î¤Ê¤¤ :for ¤¬¤¢¤ê¤Þ¤¹"
-msgid "OK"
-msgstr "OK"
+msgid "E13: File exists (add ! to override)"
+msgstr "E13: ¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹ (! ¤òÄɲäǾå½ñ)"
-msgid "Cancel"
-msgstr "¥¥ã¥ó¥»¥ë"
+msgid "E472: Command failed"
+msgstr "E472: ¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Scrollbar Widget: Could not get geometry of thumb pixmap."
-msgstr "¥¹¥¯¥í¡¼¥ë¥Ð¡¼: ²èÁü¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿."
+#, c-format
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: ̤ÃΤΥե©¥ó¥È¥»¥Ã¥È: %s"
-msgid "Vim dialog"
-msgstr "Vim ¥À¥¤¥¢¥í¥°"
+#, c-format
+msgid "E235: Unknown font: %s"
+msgstr "E235: ̤ÃΤΥե©¥ó¥È: %s"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: ¥á¥Ã¥»¡¼¥¸¤È¥³¡¼¥ë¥Ð¥Ã¥¯¤Î¤¢¤ë BalloonEval ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: ¥Õ¥©¥ó¥È \"%s\" ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid ""
-"&Yes\n"
-"&No\n"
-"&Cancel"
-msgstr ""
-"¤Ï¤¤(&Y)\n"
-"¤¤¤¤¤¨(&N)\n"
-"¥¥ã¥ó¥»¥ë(&C)"
+msgid "E473: Internal error"
+msgstr "E473: ÆâÉô¥¨¥é¡¼¤Ç¤¹"
-msgid "Input _Methods"
-msgstr "¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É"
+msgid "Interrupted"
+msgstr "³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
-msgid "VIM - Search and Replace..."
-msgstr "VIM - ¸¡º÷¤ÈÃÖ´¹..."
+msgid "E14: Invalid address"
+msgstr "E14: ̵¸ú¤Ê¥¢¥É¥ì¥¹¤Ç¤¹"
-msgid "VIM - Search..."
-msgstr "VIM - ¸¡º÷..."
+msgid "E474: Invalid argument"
+msgstr "E474: ̵¸ú¤Ê°ú¿ô¤Ç¤¹"
-msgid "Find what:"
-msgstr "¸¡º÷ʸ»úÎó:"
+#, c-format
+msgid "E475: Invalid argument: %s"
+msgstr "E475: ̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
-msgid "Replace with:"
-msgstr "ÃÖ´¹Ê¸»úÎó:"
+#, c-format
+msgid "E15: Invalid expression: %s"
+msgstr "E15: ̵¸ú¤Ê¼°¤Ç¤¹: %s"
-#. whole word only button
-msgid "Match whole word only"
-msgstr "Àµ³Î¤Ë³ºÅö¤¹¤ë¤â¤Î¤À¤±"
+msgid "E16: Invalid range"
+msgstr "E16: ̵¸ú¤ÊÈϰϤǤ¹"
-#. match case button
-msgid "Match case"
-msgstr "Âçʸ»ú/¾®Ê¸»ú¤ò¶èÊ̤¹¤ë"
+msgid "E476: Invalid command"
+msgstr "E476: ̵¸ú¤Ê¥³¥Þ¥ó¥É¤Ç¤¹"
-msgid "Direction"
-msgstr "Êý¸þ"
+#, c-format
+msgid "E17: \"%s\" is a directory"
+msgstr "E17: \"%s\" ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
-#. 'Up' and 'Down' buttons
-msgid "Up"
-msgstr "¾å"
+#, c-format
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: \"%s\"() ¤Î¥é¥¤¥Ö¥é¥ê¸Æ½Ð¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Down"
-msgstr "²¼"
+#, c-format
+msgid "E370: Could not load library %s"
+msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-#. 'Find Next' button
-msgid "Find Next"
-msgstr "¼¡¤ò¸¡º÷"
+#, c-format
+msgid "E448: Could not load library function %s"
+msgstr "E448: ¥é¥¤¥Ö¥é¥ê¤Î´Ø¿ô %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-#. 'Replace' button
-msgid "Replace"
-msgstr "ÃÖ´¹"
+msgid "E19: Mark has invalid line number"
+msgstr "E19: ¥Þ¡¼¥¯¤Ë̵¸ú¤Ê¹ÔÈֹ椬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤·¤¿"
-#. 'Replace All' button
-msgid "Replace All"
-msgstr "Á´¤ÆÃÖ´¹"
+msgid "E20: Mark not set"
+msgstr "E20: ¥Þ¡¼¥¯¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "Vim: Received \"die\" request from session manager\n"
-msgstr "Vim: ¥»¥Ã¥·¥ç¥ó¥Þ¥Í¡¼¥¸¥ã¤«¤é \"die\" Í×µá¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿\n"
+msgid "E21: Cannot make changes, 'modifiable' is off"
+msgstr "E21: 'modifiable' ¤¬¥ª¥Õ¤Ê¤Î¤Ç, Êѹ¹¤Ç¤¤Þ¤»¤ó"
-msgid "Close"
-msgstr "ÊĤ¸¤ë"
+msgid "E22: Scripts nested too deep"
+msgstr "E22: ¥¹¥¯¥ê¥×¥È¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
-msgid "New tab"
-msgstr "¿·µ¬¥¿¥Ö¥Ú¡¼¥¸"
+msgid "E23: No alternate file"
+msgstr "E23: Éû¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "Open Tab..."
-msgstr "¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯..."
+msgid "E24: No such abbreviation"
+msgstr "E24: ¤½¤Î¤è¤¦¤Êû½ÌÆþÎϤϤ¢¤ê¤Þ¤»¤ó"
-msgid "Vim: Main window unexpectedly destroyed\n"
-msgstr "Vim: ¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤¬ÉÔ°Õ¤ËÇ˲õ¤µ¤ì¤Þ¤·¤¿\n"
+msgid "E477: No ! allowed"
+msgstr "E477: ! ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "&Filter"
-msgstr "¥Õ¥£¥ë¥¿(&F)"
+msgid "E25: GUI cannot be used: Not enabled at compile time"
+msgstr "E25: GUI¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "&Cancel"
-msgstr "¥¥ã¥ó¥»¥ë(&C)"
+msgid "E26: Hebrew cannot be used: Not enabled at compile time\n"
+msgstr "E26: ¥Ø¥Ö¥é¥¤¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
-msgid "Directories"
-msgstr "¥Ç¥£¥ì¥¯¥È¥ê"
+msgid "E27: Farsi cannot be used: Not enabled at compile time\n"
+msgstr "E27: ¥Ú¥ë¥·¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
-msgid "Filter"
-msgstr "¥Õ¥£¥ë¥¿"
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: ¥¢¥é¥Ó¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
-msgid "&Help"
-msgstr "¥Ø¥ë¥×(&H)"
+#, c-format
+msgid "E28: No such highlight group name: %s"
+msgstr "E28: ¤½¤Î¤è¤¦¤Ê̾¤Î¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-msgid "Files"
-msgstr "¥Õ¥¡¥¤¥ë"
+msgid "E29: No inserted text yet"
+msgstr "E29: ¤Þ¤À¥Æ¥¥¹¥È¤¬ÁÞÆþ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "&OK"
-msgstr "&OK"
+msgid "E30: No previous command line"
+msgstr "E30: °ÊÁ°¤Ë¥³¥Þ¥ó¥É¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Selection"
-msgstr "ÁªÂò"
+msgid "E31: No such mapping"
+msgstr "E31: ¤½¤Î¤è¤¦¤Ê¥Þ¥Ã¥Ô¥ó¥°¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "Find &Next"
-msgstr "¼¡¤ò¸¡º÷(&N)"
+msgid "E479: No match"
+msgstr "E479: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "&Replace"
-msgstr "ÃÖ´¹(&R)"
+#, c-format
+msgid "E480: No match: %s"
+msgstr "E480: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-msgid "Replace &All"
-msgstr "Á´¤ÆÃÖ´¹(&A)"
+msgid "E32: No file name"
+msgstr "E32: ¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "&Undo"
-msgstr "¥¢¥ó¥É¥¥(&U)"
+msgid "E33: No previous substitute regular expression"
+msgstr "E33: Àµµ¬É½¸½ÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: ¥¿¥¤¥È¥ë¤¬ \"%s\" ¤Î¥¦¥£¥ó¥É¥¦¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E34: No previous command"
+msgstr "E34: ¥³¥Þ¥ó¥É¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: °ú¿ô¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó: \"-%s\"; OLEÈǤò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤."
+msgid "E35: No previous regular expression"
+msgstr "E35: Àµµ¬É½¸½¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: MDI¥¢¥×¥ê¤ÎÃæ¤Ç¤Ï¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó"
+msgid "E481: No range allowed"
+msgstr "E481: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "Close tab"
-msgstr "¥¿¥Ö¥Ú¡¼¥¸¤òÊĤ¸¤ë"
+msgid "E36: Not enough room"
+msgstr "E36: ½¼Ê¬¤ÊÍÆÎ̤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Open tab..."
-msgstr "¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯"
+#, c-format
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: %s ¤È¤¤¤¦Ì¾Á°¤ÎÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "Find string (use '\\\\' to find a '\\')"
-msgstr "¸¡º÷ʸ»úÎó ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')"
+#, c-format
+msgid "E482: Can't create file %s"
+msgstr "E482: ¥Õ¥¡¥¤¥ë %s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-msgid "Find & Replace (use '\\\\' to find a '\\')"
-msgstr "¸¡º÷¡¦ÃÖ´¹ ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')"
+msgid "E483: Can't get temp file name"
+msgstr "E483: °ì»þ¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-#. We fake this: Use a filter that doesn't select anything and a default
-#. * file name that won't be used.
-msgid "Not Used"
-msgstr "»È¤ï¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "E484: Can't open file %s"
+msgstr "E484: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-msgid "Directory\t*.nothing\n"
-msgstr "¥Ç¥£¥ì¥¯¥È¥ê\t*.nothing\n"
+#, c-format
+msgid "E485: Can't read file %s"
+msgstr "E485: ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr "Vim E458: ¿§»ØÄ꤬Àµ¤·¤¯¤Ê¤¤¤Î¤Ç¥¨¥ó¥È¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
+msgid "E37: No write since last change (add ! to override)"
+msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤òÄɲäÇÊѹ¹¤òÇË´þ)"
-#, c-format
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: °Ê²¼¤Îʸ»ú¥»¥Ã¥È¤Î¥Õ¥©¥ó¥È¤¬¤¢¤ê¤Þ¤»¤ó %s:"
+msgid "E38: Null argument"
+msgstr "E38: °ú¿ô¤¬¶õ¤Ç¤¹"
-#, c-format
-msgid "E252: Fontset name: %s"
-msgstr "E252: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s"
+msgid "E39: Number expected"
+msgstr "E39: ¿ôÃͤ¬Í׵ᤵ¤ì¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "Font '%s' is not fixed-width"
-msgstr "¥Õ¥©¥ó¥È '%s' ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E40: Can't open errorfile %s"
+msgstr "E40: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó"
-#, c-format
-msgid "E253: Fontset name: %s\n"
-msgstr "E253: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s\n"
+msgid "E233: cannot open display"
+msgstr "E233: ¥Ç¥£¥¹¥×¥ì¥¤¤ò³«¤±¤Þ¤»¤ó"
-#, c-format
-msgid "Font0: %s\n"
-msgstr "¥Õ¥©¥ó¥È0: %s\n"
+msgid "E41: Out of memory!"
+msgstr "E41: ¥á¥â¥ê¤¬¿Ô¤²Ì¤Æ¤Þ¤·¤¿!"
-#, c-format
-msgid "Font1: %s\n"
-msgstr "¥Õ¥©¥ó¥È1: %s\n"
+msgid "Pattern not found"
+msgstr "¥Ñ¥¿¡¼¥ó¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
#, c-format
-msgid "Font%ld width is not twice that of font0\n"
-msgstr "¥Õ¥©¥ó¥È%ld ¤ÎÉý¤¬¥Õ¥©¥ó¥È0¤Î2ÇܤǤϤ¢¤ê¤Þ¤»¤ó\n"
+msgid "E486: Pattern not found: %s"
+msgstr "E486: ¥Ñ¥¿¡¼¥ó¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#, c-format
-msgid "Font0 width: %ld\n"
-msgstr "¥Õ¥©¥ó¥È0¤ÎÉý: %ld\n"
+msgid "E487: Argument must be positive"
+msgstr "E487: °ú¿ô¤ÏÀµ¤ÎÃͤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#, c-format
-msgid ""
-"Font1 width: %ld\n"
-"\n"
-msgstr ""
-"¥Õ¥©¥ó¥È1¤ÎÉý: %ld\n"
-"\n"
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
-msgid "Invalid font specification"
-msgstr "̵¸ú¤Ê¥Õ¥©¥ó¥È»ØÄê¤Ç¤¹"
+msgid "E42: No Errors"
+msgstr "E42: ¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "&Dismiss"
-msgstr "µÑ²¼¤¹¤ë(&D)"
+msgid "E776: No location list"
+msgstr "E776: ¾ì½ê¥ê¥¹¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "no specific match"
-msgstr "¥Þ¥Ã¥Á¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E43: Damaged match string"
+msgstr "E43: ³ºÅöʸ»úÎó¤¬ÇË»¤·¤Æ¤¤¤Þ¤¹"
-msgid "Vim - Font Selector"
-msgstr "Vim - ¥Õ¥©¥ó¥ÈÁªÂò"
+msgid "E44: Corrupted regexp program"
+msgstr "E44: ÉÔÀµ¤ÊÀµµ¬É½¸½¥×¥í¥°¥é¥à¤Ç¤¹"
-msgid "Name:"
-msgstr "̾Á°:"
+msgid "E45: 'readonly' option is set (add ! to override)"
+msgstr "E45: 'readonly' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹ (! ¤òÄɲäǾå½ñ¤)"
-#. create toggle button
-msgid "Show size in Points"
-msgstr "¥µ¥¤¥º¤ò¥Ý¥¤¥ó¥È¤Çɽ¼¨¤¹¤ë"
+#, c-format
+msgid "E46: Cannot change read-only variable \"%s\""
+msgstr "E46: ÆÉ¼èÀìÍÑÊÑ¿ô \"%s\" ¤Ë¤ÏÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-msgid "Encoding:"
-msgstr "¥¨¥ó¥³¡¼¥É:"
+#, c-format
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr "E794: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤ÏÊÑ¿ô \"%s\" ¤ËÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-msgid "Font:"
-msgstr "¥Õ¥©¥ó¥È:"
+msgid "E47: Error while reading errorfile"
+msgstr "E47: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
-msgid "Style:"
-msgstr "¥¹¥¿¥¤¥ë:"
+msgid "E48: Not allowed in sandbox"
+msgstr "E48: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-msgid "Size:"
-msgstr "¥µ¥¤¥º:"
+msgid "E523: Not allowed here"
+msgstr "E523: ¤³¤³¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-msgid "E256: Hangul automata ERROR"
-msgstr "E256: ¥Ï¥ó¥°¥ë¥ª¡¼¥È¥Þ¥È¥ó¥¨¥é¡¼"
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: ¥¹¥¯¥ê¡¼¥ó¥â¡¼¥É¤ÎÀßÄê¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
-msgid "E550: Missing colon"
-msgstr "E550: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E49: Invalid scroll size"
+msgstr "E49: ̵¸ú¤Ê¥¹¥¯¥í¡¼¥ëÎ̤Ǥ¹"
-msgid "E551: Illegal component"
-msgstr "E551: ÉÔÀµ¤Ê¹½Ê¸Í×ÁǤǤ¹"
+msgid "E91: 'shell' option is empty"
+msgstr "E91: 'shell' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
-msgid "E552: digit expected"
-msgstr "E552: ¿ôÃͤ¬É¬ÍפǤ¹"
+msgid "E255: Couldn't read in sign data!"
+msgstr "E255: sign ¤Î¥Ç¡¼¥¿¤òÆÉ¹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿"
-#, c-format
-msgid "Page %d"
-msgstr "%d ¥Ú¡¼¥¸"
+msgid "E72: Close error on swap file"
+msgstr "E72: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î¥¯¥í¡¼¥º»þ¥¨¥é¡¼¤Ç¤¹"
-msgid "No text to be printed"
-msgstr "°õºþ¤¹¤ë¥Æ¥¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E73: tag stack empty"
+msgstr "E73: ¥¿¥°¥¹¥¿¥Ã¥¯¤¬¶õ¤Ç¤¹"
-#, c-format
-msgid "Printing page %d (%d%%)"
-msgstr "°õºþÃæ: ¥Ú¡¼¥¸ %d (%d%%)"
+msgid "E74: Command too complex"
+msgstr "E74: ¥³¥Þ¥ó¥É¤¬Ê£»¨²á¤®¤Þ¤¹"
-#, c-format
-msgid " Copy %d of %d"
-msgstr " ¥³¥Ô¡¼ %d (Á´ %d Ãæ)"
+msgid "E75: Name too long"
+msgstr "E75: ̾Á°¤¬Ä¹²á¤®¤Þ¤¹"
-#, c-format
-msgid "Printed: %s"
-msgstr "°õºþ¤·¤Þ¤·¤¿: %s"
+msgid "E76: Too many ["
+msgstr "E76: [ ¤¬Â¿²á¤®¤Þ¤¹"
-msgid "Printing aborted"
-msgstr "°õºþ¤¬Ãæ»ß¤µ¤ì¤Þ¤·¤¿"
+msgid "E77: Too many file names"
+msgstr "E77: ¥Õ¥¡¥¤¥ë̾¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: PostScript½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+msgid "E488: Trailing characters"
+msgstr "E488: ;ʬ¤Êʸ»ú¤¬¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
-#, c-format
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+msgid "E78: Unknown mark"
+msgstr "E78: ̤ÃΤΥޡ¼¥¯"
-#, c-format
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+msgid "E79: Cannot expand wildcards"
+msgstr "E79: ¥ï¥¤¥ë¥É¥«¡¼¥É¤òŸ³«¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
+msgstr "E591: 'winheight' ¤Ï 'winminheight' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: ¥Õ¥¡¥¤¥ë \"%s\" ¤ÏÂбþ¤·¤Æ¤¤¤Ê¤¤ PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤¹"
+msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
+msgstr "E592: 'winwidth' ¤Ï 'winminwidth' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤Ï¥Ð¡¼¥¸¥ç¥ó¤¬°Û¤Ê¤ê¤Þ¤¹"
+msgid "E80: Error while writing"
+msgstr "E80: ½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼"
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: ¸ß´¹À¤Î̵¤¤¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Èʸ»ú¥»¥Ã¥È¤Ç¤¹"
+msgid "Zero count"
+msgstr "¥¼¥í¥«¥¦¥ó¥È"
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr "E674: ¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤Ï printmbcharset ¤ò¶õ¤Ë¤Ç¤¤Þ¤»¤ó"
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿"
-msgid "E675: No default font specified for multi-byte printing."
-msgstr ""
-"E675: ¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú¤ò°õºþ¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E449: Invalid expression received"
+msgstr "E449: ̵¸ú¤Ê¼°¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: PostScript½ÐÎÏÍѤΥե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: Îΰ褬Êݸ¤ì¤Æ¤¤¤ë¤Î¤Ç, Êѹ¹¤Ç¤¤Þ¤»¤ó"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans ¤ÏÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤¹¤ë¤³¤È¤òµö¤·¤Þ¤»¤ó"
#, c-format
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+msgid "E685: Internal error: %s"
+msgstr "E685: ÆâÉô¥¨¥é¡¼¤Ç¤¹: %s"
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"prolog.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: ¥Ñ¥¿¡¼¥ó¤¬ 'maxmempattern' °Ê¾å¤Î¥á¥â¥ê¤ò»ÈÍѤ·¤Þ¤¹"
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"cidfont.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E749: empty buffer"
+msgstr "E749: ¥Ð¥Ã¥Õ¥¡¤¬¶õ¤Ç¤¹"
-#, c-format
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E682: Invalid search pattern or delimiter"
+msgstr "E682: ¸¡º÷¥Ñ¥¿¡¼¥ó¤«¶èÀڤ굹椬ÉÔÀµ¤Ç¤¹"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: Ʊ¤¸Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬Â¾¤Î¥Ð¥Ã¥Õ¥¡¤ÇÆÉ¹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: °õºþ¥¨¥ó¥³¡¼¥É \"%s\" ¤ØÊÑ´¹¤Ç¤¤Þ¤»¤ó"
+msgid "E764: Option '%s' is not set"
+msgstr "E764: ¥ª¥×¥·¥ç¥ó '%s' ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "Sending to printer..."
-msgstr "¥×¥ê¥ó¥¿¤ËÁ÷¿®Ãæ..."
+msgid "E850: Invalid register name"
+msgstr "E850: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾¤Ç¤¹"
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: PostScript¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "search hit TOP, continuing at BOTTOM"
+msgstr "¾å¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç²¼¤ËÌá¤ê¤Þ¤¹"
-msgid "Print job sent."
-msgstr "°õºþ¥¸¥ç¥Ö¤òÁ÷¿®¤·¤Þ¤·¤¿."
-
-msgid "Add a new database"
-msgstr "¿·¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÄɲÃ"
-
-msgid "Query for a pattern"
-msgstr "¥Ñ¥¿¡¼¥ó¤Î¥¯¥¨¥ê¡¼¤òÄɲÃ"
-
-msgid "Show this message"
-msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë"
-
-msgid "Kill a connection"
-msgstr "Àܳ¤ò½ªÎ»¤¹¤ë"
-
-msgid "Reinit all connections"
-msgstr "Á´¤Æ¤ÎÀܳ¤òºÆ½é´ü²½¤¹¤ë"
-
-msgid "Show connections"
-msgstr "Àܳ¤òɽ¼¨¤¹¤ë"
+msgid "search hit BOTTOM, continuing at TOP"
+msgstr "²¼¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç¾å¤ËÌá¤ê¤Þ¤¹"
#, c-format
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: »ÈÍÑÊýË¡: cs[cope] %s"
+msgid "Need encryption key for \"%s\""
+msgstr "°Å¹æ¥¡¼¤¬É¬ÍפǤ¹: \"%s\""
-msgid "This cscope command does not support splitting the window.\n"
-msgstr "¤³¤Îcscope¥³¥Þ¥ó¥É¤Ïʬ³ä¥¦¥£¥ó¥É¥¦¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó.\n"
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: GUIÍÑ¤Î¥×¥í¥»¥¹¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: »ÈÍÑË¡: cstag <ident>"
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: »Ò¥×¥í¥»¥¹¤¬GUI¤Îµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: ¥¿¥°¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E229: Cannot start the GUI"
+msgstr "E229: GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
#, c-format
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: stat(%s) ¥¨¥é¡¼: %d"
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-msgid "E563: stat error"
-msgstr "E563: stat ¥¨¥é¡¼"
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: ͸ú¤Ê¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤¤¤Î¤Ç, GUI¤ò³«»Ï¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s ¤Ï¥Ç¥£¥ì¥¯¥È¥êµÚ¤Ó͸ú¤Êcscope¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' ¤¬Ìµ¸ú¤Ç¤¹"
-#, c-format
-msgid "Added cscope database %s"
-msgstr "cscope¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤òÄɲÃ"
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: 'imactivatekey' ¤ËÀßÄꤵ¤ì¤¿Ãͤ¬Ìµ¸ú¤Ç¤¹"
#, c-format
-msgid "E262: error reading cscope connection %ld"
-msgstr "E262: cscope¤ÎÀܳ %ld ¤òÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: ̤ÃΤÎcscope¸¡º÷·¿¤Ç¤¹"
+msgid "E254: Cannot allocate color %s"
+msgstr "E254: %s ¤Î¿§¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: cscope¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "No match at cursor, finding next"
+msgstr "¥«¡¼¥½¥ë¤Î°ÌÃ֤˥ޥåÁ¤Ï¤¢¤ê¤Þ¤»¤ó, ¼¡¤ò¸¡º÷¤·¤Æ¤¤¤Þ¤¹"
-msgid "E622: Could not fork for cscope"
-msgstr "E622: cscope¤Îµ¯Æ°½àÈ÷(fork)¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "<cannot open> "
+msgstr "<³«¤±¤Þ¤»¤ó>"
-msgid "cs_create_connection exec failed"
-msgstr "cs_create_connection ¤Î¼Â¹Ô¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+#, c-format
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: ¥Õ¥©¥ó¥È %s ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-msgid "cs_create_connection: fdopen for to_fp failed"
-msgstr "cs_create_connection: to_fp ¤Î fdopen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
-msgid "cs_create_connection: fdopen for fr_fp failed"
-msgstr "cs_create_connection: fr_fp ¤Î fdopen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "Pathname:"
+msgstr "¥Ñ¥¹Ì¾:"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: cscope¥×¥í¥»¥¹¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-msgid "E567: no cscope connections"
-msgstr "E567: cscopeÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "OK"
+msgstr "OK"
-#, c-format
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: ̵¸ú¤Ê cscopequickfix ¥Õ¥é¥° %c ¤Î %c ¤Ç¤¹"
+msgid "Cancel"
+msgstr "¥¥ã¥ó¥»¥ë"
-#, c-format
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: cscope¥¯¥¨¥ê¡¼ %s of %s ¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "Scrollbar Widget: Could not get geometry of thumb pixmap."
+msgstr "¥¹¥¯¥í¡¼¥ë¥Ð¡¼: ²èÁü¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿."
-msgid "cscope commands:\n"
-msgstr "cscope¥³¥Þ¥ó¥É:\n"
+msgid "Vim dialog"
+msgstr "Vim ¥À¥¤¥¢¥í¥°"
-#, c-format
-msgid "%-5s: %s%*s (Usage: %s)"
-msgstr "%-5s: %s%*s (»ÈÍÑË¡: %s)"
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: ¥á¥Ã¥»¡¼¥¸¤È¥³¡¼¥ë¥Ð¥Ã¥¯¤Î¤¢¤ë BalloonEval ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
msgid ""
-"\n"
-" c: Find functions calling this function\n"
-" d: Find functions called by this function\n"
-" e: Find this egrep pattern\n"
-" f: Find this file\n"
-" g: Find this definition\n"
-" i: Find files #including this file\n"
-" s: Find this C symbol\n"
-" t: Find this text string\n"
+"&Yes\n"
+"&No\n"
+"&Cancel"
msgstr ""
-"\n"
-" c: ¤³¤Î´Ø¿ô¤ò¸Æ¤ó¤Ç¤¤¤ë´Ø¿ô¤òõ¤¹\n"
-" d: ¤³¤Î´Ø¿ô¤«¤é¸Æ¤ó¤Ç¤¤¤ë´Ø¿ô¤òõ¤¹\n"
-" e: ¤³¤Îegrep¥Ñ¥¿¡¼¥ó¤òõ¤¹\n"
-" f: ¤³¤Î¥Õ¥¡¥¤¥ë¤òõ¤¹\n"
-" g: ¤³¤ÎÄêµÁ¤òõ¤¹\n"
-" i: ¤³¤Î¥Õ¥¡¥¤¥ë¤ò#include¤·¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¤òõ¤¹\n"
-" s: ¤³¤ÎC¥·¥ó¥Ü¥ë¤òõ¤¹\n"
-" t: ¤³¤Î¥Æ¥¥¹¥Èʸ»úÎó¤òõ¤¹\n"
+"¤Ï¤¤(&Y)\n"
+"¤¤¤¤¤¨(&N)\n"
+"¥¥ã¥ó¥»¥ë(&C)"
-#, c-format
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹: %s ¤ò³«¤¯¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+msgid "Input _Methods"
+msgstr "¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É"
-msgid "E626: cannot get cscope database information"
-msgstr "E626: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ðÊó¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+msgid "VIM - Search and Replace..."
+msgstr "VIM - ¸¡º÷¤ÈÃÖ´¹..."
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: ½ÅÊ£¤¹¤ëcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÏÄɲ䵤ì¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "VIM - Search..."
+msgstr "VIM - ¸¡º÷..."
-#, c-format
-msgid "E261: cscope connection %s not found"
-msgstr "E261: cscopeÀܳ %s ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "Find what:"
+msgstr "¸¡º÷ʸ»úÎó:"
-#, c-format
-msgid "cscope connection %s closed"
-msgstr "cscopeÀܳ %s ¤¬ÊĤ¸¤é¤ì¤Þ¤·¤¿"
+msgid "Replace with:"
+msgstr "ÃÖ´¹Ê¸»úÎó:"
-#. should not reach here
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: cs_manage_matches ¤ÇÃ×̿Ū¤Ê¥¨¥é¡¼¤Ç¤¹"
+#. whole word only button
+msgid "Match whole word only"
+msgstr "Àµ³Î¤Ë³ºÅö¤¹¤ë¤â¤Î¤À¤±"
-#, c-format
-msgid "Cscope tag: %s"
-msgstr "Cscope ¥¿¥°: %s"
+#. match case button
+msgid "Match case"
+msgstr "Âçʸ»ú/¾®Ê¸»ú¤ò¶èÊ̤¹¤ë"
-msgid ""
-"\n"
-" # line"
-msgstr ""
-"\n"
-" # ¹ÔÈÖ¹æ"
+msgid "Direction"
+msgstr "Êý¸þ"
-msgid "filename / context / line\n"
-msgstr "¥Õ¥¡¥¤¥ë̾ / ʸ̮ / ¹Ô\n"
+#. 'Up' and 'Down' buttons
+msgid "Up"
+msgstr "¾å"
-#, c-format
-msgid "E609: Cscope error: %s"
-msgstr "E609: cscope¥¨¥é¡¼: %s"
+msgid "Down"
+msgstr "²¼"
-msgid "All cscope databases reset"
-msgstr "Á´¤Æ¤Îcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¥ê¥»¥Ã¥È¤·¤Þ¤¹"
+#. 'Find Next' button
+msgid "Find Next"
+msgstr "¼¡¤ò¸¡º÷"
-msgid "no cscope connections\n"
-msgstr "cscopeÀܳ¤¬¤¢¤ê¤Þ¤»¤ó\n"
+#. 'Replace' button
+msgid "Replace"
+msgstr "ÃÖ´¹"
-msgid " # pid database name prepend path\n"
-msgstr " # pid ¥Ç¡¼¥¿¥Ù¡¼¥¹Ì¾ prepend ¥Ñ¥¹\n"
+#. 'Replace All' button
+msgid "Replace All"
+msgstr "Á´¤ÆÃÖ´¹"
-msgid "Lua library cannot be loaded."
-msgstr "Lua¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó."
+msgid "Vim: Received \"die\" request from session manager\n"
+msgstr "Vim: ¥»¥Ã¥·¥ç¥ó¥Þ¥Í¡¼¥¸¥ã¤«¤é \"die\" Í×µá¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿\n"
-msgid "cannot save undo information"
-msgstr "¥¢¥ó¥É¥¥¾ðÊó¤¬Êݸ¤Ç¤¤Þ¤»¤ó"
+msgid "Close"
+msgstr "ÊĤ¸¤ë"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr "E815: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹. MzScheme ¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó."
+msgid "New tab"
+msgstr "¿·µ¬¥¿¥Ö¥Ú¡¼¥¸"
-msgid "invalid expression"
-msgstr "̵¸ú¤Ê¼°¤Ç¤¹"
+msgid "Open Tab..."
+msgstr "¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯..."
-msgid "expressions disabled at compile time"
-msgstr "¼°¤Ï¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "Vim: Main window unexpectedly destroyed\n"
+msgstr "Vim: ¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤¬ÉÔ°Õ¤ËÇ˲õ¤µ¤ì¤Þ¤·¤¿\n"
-msgid "hidden option"
-msgstr "±£¤·¥ª¥×¥·¥ç¥ó"
+msgid "&Filter"
+msgstr "¥Õ¥£¥ë¥¿(&F)"
-msgid "unknown option"
-msgstr "̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
+msgid "&Cancel"
+msgstr "¥¥ã¥ó¥»¥ë(&C)"
-msgid "window index is out of range"
-msgstr "Èϰϳ°¤Î¥¦¥£¥ó¥É¥¦ÈÖ¹æ¤Ç¤¹"
+msgid "Directories"
+msgstr "¥Ç¥£¥ì¥¯¥È¥ê"
-msgid "couldn't open buffer"
-msgstr "¥Ð¥Ã¥Õ¥¡¤ò³«¤±¤Þ¤»¤ó"
+msgid "Filter"
+msgstr "¥Õ¥£¥ë¥¿"
-msgid "cannot delete line"
-msgstr "¹Ô¤ò¾Ã¤»¤Þ¤»¤ó"
+msgid "&Help"
+msgstr "¥Ø¥ë¥×(&H)"
-msgid "cannot replace line"
-msgstr "¹Ô¤òÃÖ´¹¤Ç¤¤Þ¤»¤ó"
+msgid "Files"
+msgstr "¥Õ¥¡¥¤¥ë"
-msgid "cannot insert line"
-msgstr "¹Ô¤òÁÞÆþ¤Ç¤¤Þ¤»¤ó"
+msgid "&OK"
+msgstr "&OK"
-msgid "string cannot contain newlines"
-msgstr "ʸ»úÎó¤Ë¤Ï²þ¹Ôʸ»ú¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
+msgid "Selection"
+msgstr "ÁªÂò"
-msgid "Vim error: ~a"
-msgstr "Vim ¥¨¥é¡¼: ~a"
+msgid "Find &Next"
+msgstr "¼¡¤ò¸¡º÷(&N)"
-msgid "Vim error"
-msgstr "Vim ¥¨¥é¡¼"
-
-msgid "buffer is invalid"
-msgstr "¥Ð¥Ã¥Õ¥¡¤Ï̵¸ú¤Ç¤¹"
+msgid "&Replace"
+msgstr "ÃÖ´¹(&R)"
-msgid "window is invalid"
-msgstr "¥¦¥£¥ó¥É¥¦¤Ï̵¸ú¤Ç¤¹"
+msgid "Replace &All"
+msgstr "Á´¤ÆÃÖ´¹(&A)"
-msgid "linenr out of range"
-msgstr "Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹"
+msgid "&Undo"
+msgstr "¥¢¥ó¥É¥¥(&U)"
-msgid "not allowed in the Vim sandbox"
-msgstr "¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: ¥¿¥¤¥È¥ë¤¬ \"%s\" ¤Î¥¦¥£¥ó¥É¥¦¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E370: Could not load library %s"
-msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: °ú¿ô¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó: \"-%s\"; OLEÈǤò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤."
-msgid "Sorry, this command is disabled: the Perl library could not be loaded."
-msgstr ""
-"¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹, ¤´¤á¤ó¤Ê¤µ¤¤: Perl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿."
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: MDI¥¢¥×¥ê¤ÎÃæ¤Ç¤Ï¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó"
-msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
-msgstr ""
-"E299: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ï Safe ¥â¥¸¥å¡¼¥ë¤ò»ÈÍѤ·¤Ê¤¤Perl¥¹¥¯¥ê¥×¥È¤Ï¶Ø¤¸¤é¤ì"
-"¤Æ¤¤¤Þ¤¹"
+msgid "Close tab"
+msgstr "¥¿¥Ö¥Ú¡¼¥¸¤òÊĤ¸¤ë"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: ¤³¤ÎVim¤Ç¤Ï :py3 ¤ò»È¤Ã¤¿¸å¤Ë :python ¤ò»È¤¨¤Þ¤»¤ó"
+msgid "Open tab..."
+msgstr "¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯"
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Python¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó"
-"¤Ç¤·¤¿."
+msgid "Find string (use '\\\\' to find a '\\')"
+msgstr "¸¡º÷ʸ»úÎó ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')"
-# Added at 07-Feb-2004.
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python ¤òºÆµ¢Åª¤Ë¼Â¹Ô¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+msgid "Find & Replace (use '\\\\' to find a '\\')"
+msgstr "¸¡º÷¡¦ÃÖ´¹ ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')"
-msgid "can't delete OutputObject attributes"
-msgstr "OutputObject°À¤ò¾Ã¤»¤Þ¤»¤ó"
+#. We fake this: Use a filter that doesn't select anything and a default
+#. * file name that won't be used.
+msgid "Not Used"
+msgstr "»È¤ï¤ì¤Þ¤»¤ó"
-msgid "softspace must be an integer"
-msgstr "softspace ¤Ï integer ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+msgid "Directory\t*.nothing\n"
+msgstr "¥Ç¥£¥ì¥¯¥È¥ê\t*.nothing\n"
-msgid "invalid attribute"
-msgstr "̵¸ú¤Ê°À¤Ç¤¹"
+msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr "Vim E458: ¿§»ØÄ꤬Àµ¤·¤¯¤Ê¤¤¤Î¤Ç¥¨¥ó¥È¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó"
#, c-format
-msgid "<buffer object (deleted) at %p>"
-msgstr "<¥Ð¥Ã¥Õ¥¡¥ª¥Ö¥¸¥§¥¯¥È (¾ÃµîºÑ¤ß) %p>"
-
-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 "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: °Ê²¼¤Îʸ»ú¥»¥Ã¥È¤Î¥Õ¥©¥ó¥È¤¬¤¢¤ê¤Þ¤»¤ó %s:"
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Ruby¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
-"¤·¤¿."
+#, c-format
+msgid "E252: Fontset name: %s"
+msgstr "E252: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s"
-msgid "E267: unexpected return"
-msgstr "E267: ͽ´ü¤»¤Ì return ¤Ç¤¹"
+#, c-format
+msgid "Font '%s' is not fixed-width"
+msgstr "¥Õ¥©¥ó¥È '%s' ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E268: unexpected next"
-msgstr "E268: ͽ´ü¤»¤Ì next ¤Ç¤¹"
+#, c-format
+msgid "E253: Fontset name: %s\n"
+msgstr "E253: ¥Õ¥©¥ó¥È¥»¥Ã¥È̾: %s\n"
-msgid "E269: unexpected break"
-msgstr "E269: ͽ´ü¤»¤Ì break ¤Ç¤¹"
+#, c-format
+msgid "Font0: %s\n"
+msgstr "¥Õ¥©¥ó¥È0: %s\n"
-msgid "E270: unexpected redo"
-msgstr "E270: ͽ´ü¤»¤Ì redo ¤Ç¤¹"
+#, c-format
+msgid "Font1: %s\n"
+msgstr "¥Õ¥©¥ó¥È1: %s\n"
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: rescue ¤Î³°¤Î retry ¤Ç¤¹"
+#, c-format
+msgid "Font%ld width is not twice that of font0\n"
+msgstr "¥Õ¥©¥ó¥È%ld ¤ÎÉý¤¬¥Õ¥©¥ó¥È0¤Î2ÇܤǤϤ¢¤ê¤Þ¤»¤ó\n"
-msgid "E272: unhandled exception"
-msgstr "E272: ¼è¤ê°·¤ï¤ì¤Ê¤«¤Ã¤¿Îã³°¤¬¤¢¤ê¤Þ¤¹"
+#, c-format
+msgid "Font0 width: %ld\n"
+msgstr "¥Õ¥©¥ó¥È0¤ÎÉý: %ld\n"
#, c-format
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: ̤ÃΤÎlongjmp¾õÂÖ: %d"
+msgid ""
+"Font1 width: %ld\n"
+"\n"
+msgstr ""
+"¥Õ¥©¥ó¥È1¤ÎÉý: %ld\n"
+"\n"
-msgid "Toggle implementation/definition"
-msgstr "¼ÂÁõ¤ÈÄêµÁ¤òÀÚ¤êÂØ¤¨¤ë"
+msgid "Invalid font specification"
+msgstr "̵¸ú¤Ê¥Õ¥©¥ó¥È»ØÄê¤Ç¤¹"
-msgid "Show base class of"
-msgstr "¼¡¤Î¥¯¥é¥¹¤Î´ðÄì¤òɽ¼¨"
+msgid "&Dismiss"
+msgstr "µÑ²¼¤¹¤ë(&D)"
-msgid "Show overridden member function"
-msgstr "¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤¿¥á¥ó¥Ð´Ø¿ô¤òɽ¼¨"
+msgid "no specific match"
+msgstr "¥Þ¥Ã¥Á¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Retrieve from file"
-msgstr "¥Õ¥¡¥¤¥ë¤«¤é²óÉü¤¹¤ë"
+msgid "Vim - Font Selector"
+msgstr "Vim - ¥Õ¥©¥ó¥ÈÁªÂò"
-msgid "Retrieve from project"
-msgstr "¥×¥í¥¸¥§¥¯¥È¤«¤é²óÉü¤¹¤ë"
+msgid "Name:"
+msgstr "̾Á°:"
-msgid "Retrieve from all projects"
-msgstr "Á´¤Æ¤Î¥×¥í¥¸¥§¥¯¥È¤«¤é²óÉü¤¹¤ë"
+#. create toggle button
+msgid "Show size in Points"
+msgstr "¥µ¥¤¥º¤ò¥Ý¥¤¥ó¥È¤Çɽ¼¨¤¹¤ë"
-msgid "Retrieve"
-msgstr "²óÉü"
+msgid "Encoding:"
+msgstr "¥¨¥ó¥³¡¼¥É:"
-msgid "Show source of"
-msgstr "¼¡¤Î¥½¡¼¥¹¤òɽ¼¨¤¹¤ë"
+msgid "Font:"
+msgstr "¥Õ¥©¥ó¥È:"
-msgid "Find symbol"
-msgstr "¤ß¤Ä¤±¤¿¥·¥ó¥Ü¥ë"
+msgid "Style:"
+msgstr "¥¹¥¿¥¤¥ë:"
-msgid "Browse class"
-msgstr "¥¯¥é¥¹¤ò»²¾È"
+msgid "Size:"
+msgstr "¥µ¥¤¥º:"
-msgid "Show class in hierarchy"
-msgstr "³¬Áؤǥ¯¥é¥¹¤òɽ¼¨"
+msgid "E256: Hangul automata ERROR"
+msgstr "E256: ¥Ï¥ó¥°¥ë¥ª¡¼¥È¥Þ¥È¥ó¥¨¥é¡¼"
-msgid "Show class in restricted hierarchy"
-msgstr "¸ÂÄꤵ¤ì¤¿³¬Áؤǥ¯¥é¥¹¤òɽ¼¨"
+msgid "E550: Missing colon"
+msgstr "E550: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Xref refers to"
-msgstr "Xref ¤Î»²¾ÈÀè"
+msgid "E551: Illegal component"
+msgstr "E551: ÉÔÀµ¤Ê¹½Ê¸Í×ÁǤǤ¹"
-msgid "Xref referred by"
-msgstr "Xref ¤¬»²¾È¤µ¤ì¤ë"
+msgid "E552: digit expected"
+msgstr "E552: ¿ôÃͤ¬É¬ÍפǤ¹"
-msgid "Xref has a"
-msgstr "Xref ¤¬¼¡¤Î¤â¤Î¤ò¤â¤Ã¤Æ¤¤¤Þ¤¹"
+#, c-format
+msgid "Page %d"
+msgstr "%d ¥Ú¡¼¥¸"
-msgid "Xref used by"
-msgstr "Xref ¤¬»ÈÍѤµ¤ì¤ë"
+msgid "No text to be printed"
+msgstr "°õºþ¤¹¤ë¥Æ¥¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Show docu of"
-msgstr "¼¡¤Îʸ¾Ï¤òɽ¼¨"
+#, c-format
+msgid "Printing page %d (%d%%)"
+msgstr "°õºþÃæ: ¥Ú¡¼¥¸ %d (%d%%)"
-msgid "Generate docu for"
-msgstr "¼¡¤Îʸ¾Ï¤òÀ¸À®"
+#, c-format
+msgid " Copy %d of %d"
+msgstr " ¥³¥Ô¡¼ %d (Á´ %d Ãæ)"
-msgid ""
-"Cannot connect to SNiFF+. Check environment (sniffemacs must be found in "
-"$PATH).\n"
-msgstr ""
-"SNiFF+¤ËÀܳ¤Ç¤¤Þ¤»¤ó. ´Ä¶¤ò¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤(sniffemacs ¤¬ $PATH ¤Ë¤Ê¤±"
-"¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó).\n"
+#, c-format
+msgid "Printed: %s"
+msgstr "°õºþ¤·¤Þ¤·¤¿: %s"
-msgid "E274: Sniff: Error during read. Disconnected"
-msgstr "E274: Sniff: ÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿. ÀÚÃǤ·¤Þ¤·¤¿"
+msgid "Printing aborted"
+msgstr "°õºþ¤¬Ãæ»ß¤µ¤ì¤Þ¤·¤¿"
-msgid "SNiFF+ is currently "
-msgstr "¸½ºßSNiFF+ ¤Î¾õÂ֤ϡÖ"
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: PostScript½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-msgid "not "
-msgstr "̤"
+#, c-format
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-msgid "connected"
-msgstr "Àܳ¡×¤Ç¤¹"
+#, c-format
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
#, c-format
-msgid "E275: Unknown SNiFF+ request: %s"
-msgstr "E275: ̤ÃΤΠSNiFF+ ¥ê¥¯¥¨¥¹¥È¤Ç¤¹: %s"
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: ¥Õ¥¡¥¤¥ë \"%s\" ¤Ï PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E276: Error connecting to SNiFF+"
-msgstr "E276: SNiFF+ ¤Ø¤ÎÀÜÂ³Ãæ¤Î¥¨¥é¡¼¤Ç¤¹"
+#, c-format
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: ¥Õ¥¡¥¤¥ë \"%s\" ¤ÏÂбþ¤·¤Æ¤¤¤Ê¤¤ PostScript ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç¤¹"
-msgid "E278: SNiFF+ not connected"
-msgstr "E278: SNiFF+ ¤ËÀܳ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+#, c-format
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: ¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s\" ¤Ï¥Ð¡¼¥¸¥ç¥ó¤¬°Û¤Ê¤ê¤Þ¤¹"
-msgid "E279: Not a SNiFF+ buffer"
-msgstr "E279: SNiFF+ ¥Ð¥Ã¥Õ¥¡¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E673: Incompatible multi-byte encoding and character set."
+msgstr "E673: ¸ß´¹À¤Î̵¤¤¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Èʸ»ú¥»¥Ã¥È¤Ç¤¹"
-msgid "Sniff: Error during write. Disconnected"
-msgstr "Sniff: ½ñ¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤¿¤Î¤ÇÀÚÃǤ·¤Þ¤·¤¿"
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr "E674: ¥Þ¥ë¥Á¥Ð¥¤¥È¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤Ï printmbcharset ¤ò¶õ¤Ë¤Ç¤¤Þ¤»¤ó"
-msgid "invalid buffer number"
-msgstr "̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡ÈÖ¹æ¤Ç¤¹"
+msgid "E675: No default font specified for multi-byte printing."
+msgstr ""
+"E675: ¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú¤ò°õºþ¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "not implemented yet"
-msgstr "¤Þ¤À¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: PostScript½ÐÎÏÍѤΥե¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
-#. ???
-msgid "cannot set line(s)"
-msgstr "¹Ô¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-msgid "invalid mark name"
-msgstr "̵¸ú¤Ê¥Þ¡¼¥¯Ì¾¤Ç¤¹"
+msgid "E456: Can't find PostScript resource file \"prolog.ps\""
+msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"prolog.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "mark not set"
-msgstr "¥Þ¡¼¥¯¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
+msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"cidfont.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "row %d column %d"
-msgstr "¹Ô %d Îó %d"
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: PostScript¤Î¥ê¥½¡¼¥¹¥Õ¥¡¥¤¥ë \"%s.ps\" ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "cannot insert/append line"
-msgstr "¹Ô¤ÎÁÞÆþ/Äɲäò¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: °õºþ¥¨¥ó¥³¡¼¥É \"%s\" ¤ØÊÑ´¹¤Ç¤¤Þ¤»¤ó"
-msgid "line number out of range"
-msgstr "Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹"
+msgid "Sending to printer..."
+msgstr "¥×¥ê¥ó¥¿¤ËÁ÷¿®Ãæ..."
-msgid "unknown flag: "
-msgstr "̤ÃΤΥե饰:"
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: PostScript¥Õ¥¡¥¤¥ë¤Î°õºþ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "unknown vimOption"
-msgstr "̤ÃΤΠvimOption ¤Ç¤¹"
+msgid "Print job sent."
+msgstr "°õºþ¥¸¥ç¥Ö¤òÁ÷¿®¤·¤Þ¤·¤¿."
-msgid "keyboard interrupt"
-msgstr "¥¡¼¥Ü¡¼¥É³ä¹þ¤ß"
+msgid "Add a new database"
+msgstr "¿·¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÄɲÃ"
-msgid "vim error"
-msgstr "vim ¥¨¥é¡¼"
+msgid "Query for a pattern"
+msgstr "¥Ñ¥¿¡¼¥ó¤Î¥¯¥¨¥ê¡¼¤òÄɲÃ"
-msgid "cannot create buffer/window command: object is being deleted"
-msgstr ""
-"¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦ºîÀ®¥³¥Þ¥ó¥É¤òºîÀ®¤Ç¤¤Þ¤»¤ó: ¥ª¥Ö¥¸¥§¥¯¥È¤¬¾Ãµî¤µ¤ì¤Æ¤¤¤Þ"
-"¤·¤¿"
+msgid "Show this message"
+msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë"
-msgid ""
-"cannot register callback command: buffer/window is already being deleted"
-msgstr ""
-"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¾Ãµî¤µ¤ì¤Þ¤·¤¿"
+msgid "Kill a connection"
+msgstr "Àܳ¤ò½ªÎ»¤¹¤ë"
-#. This should never happen. Famous last word?
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: TCL Ã×̿Ū¥¨¥é¡¼: reflist ±øÀ÷!? vim-dev@vim.org ¤ËÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "Reinit all connections"
+msgstr "Á´¤Æ¤ÎÀܳ¤òºÆ½é´ü²½¤¹¤ë"
-msgid "cannot register callback command: buffer/window reference not found"
-msgstr ""
-"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤Î»²¾È¤¬¤ß¤Ä¤«¤ê¤Þ¤»"
-"¤ó"
+msgid "Show connections"
+msgstr "Àܳ¤òɽ¼¨¤¹¤ë"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Tcl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
-"¤·¤¿."
+#, c-format
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: »ÈÍÑÊýË¡: cs[cope] %s"
-msgid ""
-"E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim.org"
-msgstr ""
-"E281: TCL ¥¨¥é¡¼: ½ªÎ»¥³¡¼¥É¤¬À°¿ôÃͤǤϤ¢¤ê¤Þ¤»¤ó!? vim-dev@vim.org ¤ËÊó¹ð¤·"
-"¤Æ¤¯¤À¤µ¤¤"
+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 "E572: exit code %d"
-msgstr "E572: ½ªÎ»¥³¡¼¥É %d"
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: stat(%s) ¥¨¥é¡¼: %d"
-msgid "cannot get line"
-msgstr "¹Ô¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+msgid "E563: stat error"
+msgstr "E563: stat ¥¨¥é¡¼"
-msgid "Unable to register a command server name"
-msgstr "Ì¿Î᥵¡¼¥Ð¤Î̾Á°¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s ¤Ï¥Ç¥£¥ì¥¯¥È¥êµÚ¤Ó͸ú¤Êcscope¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: ÌÜŪ¤Î¥×¥í¥°¥é¥à¤Ø¤Î¥³¥Þ¥ó¥ÉÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+#, c-format
+msgid "Added cscope database %s"
+msgstr "cscope¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤òÄɲÃ"
#, c-format
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: ̵¸ú¤Ê¥µ¡¼¥ÐID¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
+msgid "E262: error reading cscope connection %ld"
+msgstr "E262: cscope¤ÎÀܳ %ld ¤òÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ç¤¹"
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: VIM ¼ÂÂΤÎÅÐÏ¿¥×¥í¥Ñ¥Æ¥£¤¬ÉÔÀµ¤Ç¤¹. ¾Ãµî¤·¤Þ¤·¤¿!"
+msgid "E561: unknown cscope search type"
+msgstr "E561: ̤ÃΤÎcscope¸¡º÷·¿¤Ç¤¹"
-msgid "Unknown option argument"
-msgstr "̤ÃΤΥª¥×¥·¥ç¥ó°ú¿ô¤Ç¤¹"
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: cscope¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "Too many edit arguments"
-msgstr "ÊÔ½¸°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+msgid "E622: Could not fork for cscope"
+msgstr "E622: cscope¤Îµ¯Æ°½àÈ÷(fork)¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Argument missing after"
-msgstr "°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "cs_create_connection exec failed"
+msgstr "cs_create_connection ¤Î¼Â¹Ô¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Garbage after option argument"
-msgstr "¥ª¥×¥·¥ç¥ó°ú¿ô¤Î¸å¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹"
+msgid "cs_create_connection: fdopen for to_fp failed"
+msgstr "cs_create_connection: to_fp ¤Î fdopen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"
-msgstr "\"+command\", \"-c command\", \"--cmd command\" ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+msgid "cs_create_connection: fdopen for fr_fp failed"
+msgstr "cs_create_connection: fr_fp ¤Î fdopen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "Invalid argument for"
-msgstr "̵¸ú¤Ê°ú¿ô¤Ç¤¹: "
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: cscope¥×¥í¥»¥¹¤òµ¯Æ°¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+
+msgid "E567: no cscope connections"
+msgstr "E567: cscopeÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
#, c-format
-msgid "%d files to edit\n"
-msgstr "%d ¸Ä¤Î¥Õ¥¡¥¤¥ë¤¬ÊÔ½¸¤ò¹µ¤¨¤Æ¤¤¤Þ¤¹\n"
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: ̵¸ú¤Ê cscopequickfix ¥Õ¥é¥° %c ¤Î %c ¤Ç¤¹"
-msgid "netbeans is not supported with this GUI\n"
-msgstr "netbeans ¤Ï¤³¤ÎGUI¤Ç¤ÏÍøÍѤǤ¤Þ¤»¤ó\n"
+#, c-format
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: cscope¥¯¥¨¥ê¡¼ %s of %s ¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "This Vim was not compiled with the diff feature."
-msgstr "¤³¤ÎVim¤Ë¤Ïdiffµ¡Ç½¤¬¤¢¤ê¤Þ¤»¤ó(¥³¥ó¥Ñ¥¤¥ë»þÀßÄê)."
+msgid "cscope commands:\n"
+msgstr "cscope¥³¥Þ¥ó¥É:\n"
-msgid "'-nb' cannot be used: not enabled at compile time\n"
-msgstr "'-nb' »ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+#, c-format
+msgid "%-5s: %s%*s (Usage: %s)"
+msgstr "%-5s: %s%*s (»ÈÍÑË¡: %s)"
-msgid "Attempt to open script file again: \""
-msgstr "¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤òºÆ¤Ó³«¤¤¤Æ¤ß¤Þ¤¹: \""
+msgid ""
+"\n"
+" c: Find functions calling this function\n"
+" d: Find functions called by this function\n"
+" e: Find this egrep pattern\n"
+" f: Find this file\n"
+" g: Find this definition\n"
+" i: Find files #including this file\n"
+" s: Find this C symbol\n"
+" t: Find this text string\n"
+msgstr ""
+"\n"
+" c: ¤³¤Î´Ø¿ô¤ò¸Æ¤ó¤Ç¤¤¤ë´Ø¿ô¤òõ¤¹\n"
+" d: ¤³¤Î´Ø¿ô¤«¤é¸Æ¤ó¤Ç¤¤¤ë´Ø¿ô¤òõ¤¹\n"
+" e: ¤³¤Îegrep¥Ñ¥¿¡¼¥ó¤òõ¤¹\n"
+" f: ¤³¤Î¥Õ¥¡¥¤¥ë¤òõ¤¹\n"
+" g: ¤³¤ÎÄêµÁ¤òõ¤¹\n"
+" i: ¤³¤Î¥Õ¥¡¥¤¥ë¤ò#include¤·¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¤òõ¤¹\n"
+" s: ¤³¤ÎC¥·¥ó¥Ü¥ë¤òõ¤¹\n"
+" t: ¤³¤Î¥Æ¥¥¹¥Èʸ»úÎó¤òõ¤¹\n"
-msgid "Cannot open for reading: \""
-msgstr "ÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
+#, c-format
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹: %s ¤ò³«¤¯¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-msgid "Cannot open for script output: \""
-msgstr "¥¹¥¯¥ê¥×¥È½ÐÎÏÍѤò³«¤±¤Þ¤»¤ó"
+msgid "E626: cannot get cscope database information"
+msgstr "E626: cscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ðÊó¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-msgid "Vim: Error: Failure to start gvim from NetBeans\n"
-msgstr "Vim: ¥¨¥é¡¼: NetBeans¤«¤égvim¤ò¥¹¥¿¡¼¥È¤Ç¤¤Þ¤»¤ó\n"
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: ½ÅÊ£¤¹¤ëcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÏÄɲ䵤ì¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "Vim: Warning: Output is not to a terminal\n"
-msgstr "Vim: ·Ù¹ð: üËö¤Ø¤Î½ÐÎϤǤϤ¢¤ê¤Þ¤»¤ó\n"
+#, c-format
+msgid "E261: cscope connection %s not found"
+msgstr "E261: cscopeÀܳ %s ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "Vim: Warning: Input is not from a terminal\n"
-msgstr "Vim: ·Ù¹ð: üËö¤«¤é¤ÎÆþÎϤǤϤ¢¤ê¤Þ¤»¤ó\n"
+#, c-format
+msgid "cscope connection %s closed"
+msgstr "cscopeÀܳ %s ¤¬ÊĤ¸¤é¤ì¤Þ¤·¤¿"
-#. just in case..
-msgid "pre-vimrc command line"
-msgstr "vimrcÁ°¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó"
+#. should not reach here
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: cs_manage_matches ¤ÇÃ×̿Ū¤Ê¥¨¥é¡¼¤Ç¤¹"
#, c-format
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
+msgid "Cscope tag: %s"
+msgstr "Cscope ¥¿¥°: %s"
msgid ""
"\n"
-"More info with: \"vim -h\"\n"
+" # line"
msgstr ""
"\n"
-"¤è¤ê¾ÜºÙ¤Ê¾ðÊó¤Ï: \"vim -h\"\n"
+" # ¹ÔÈÖ¹æ"
-msgid "[file ..] edit specified file(s)"
-msgstr "[¥Õ¥¡¥¤¥ë..] ¤¢¤ë¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
+msgid "filename / context / line\n"
+msgstr "¥Õ¥¡¥¤¥ë̾ / ʸ̮ / ¹Ô\n"
-msgid "- read text from stdin"
-msgstr "- ɸ½àÆþÎϤ«¤é¥Æ¥¥¹¥È¤òÆÉ¹þ¤à"
+#, c-format
+msgid "E609: Cscope error: %s"
+msgstr "E609: cscope¥¨¥é¡¼: %s"
-msgid "-t tag edit file where tag is defined"
-msgstr "-t ¥¿¥° ¥¿¥°¤¬ÄêµÁ¤µ¤ì¤¿¤È¤³¤í¤«¤éÊÔ½¸¤¹¤ë"
+msgid "All cscope databases reset"
+msgstr "Á´¤Æ¤Îcscope¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¥ê¥»¥Ã¥È¤·¤Þ¤¹"
-msgid "-q [errorfile] edit file with first error"
-msgstr "-q [errorfile] ºÇ½é¤Î¥¨¥é¡¼¤ÇÊÔ½¸¤¹¤ë"
+msgid "no cscope connections\n"
+msgstr "cscopeÀܳ¤¬¤¢¤ê¤Þ¤»¤ó\n"
-msgid ""
-"\n"
-"\n"
-"usage:"
-msgstr ""
-"\n"
-"\n"
-"»ÈÍÑË¡:"
+msgid " # pid database name prepend path\n"
+msgstr " # pid ¥Ç¡¼¥¿¥Ù¡¼¥¹Ì¾ prepend ¥Ñ¥¹\n"
-msgid " vim [arguments] "
-msgstr " vim [°ú¿ô]"
+msgid "Lua library cannot be loaded."
+msgstr "Lua¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó."
-msgid ""
-"\n"
-" or:"
-msgstr ""
-"\n"
-" ¤â¤·¤¯¤Ï:"
+msgid "cannot save undo information"
+msgstr "¥¢¥ó¥É¥¥¾ðÊó¤¬Êݸ¤Ç¤¤Þ¤»¤ó"
msgid ""
-"\n"
-"Where case is ignored prepend / to make flag upper case"
-msgstr ""
-"\n"
-"Â羮ʸ»ú¤¬Ìµ»ë¤µ¤ì¤ë¾ì¹ç¤ÏÂçʸ»ú¤Ë¤¹¤ë¤¿¤á¤Ë / ¤òÁ°ÃÖ¤·¤Æ¤¯¤À¤µ¤¤"
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr "E815: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹. MzScheme ¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó."
-msgid ""
-"\n"
-"\n"
-"Arguments:\n"
-msgstr ""
-"\n"
-"\n"
-"°ú¿ô:\n"
+msgid "invalid expression"
+msgstr "̵¸ú¤Ê¼°¤Ç¤¹"
-msgid "--\t\t\tOnly file names after this"
-msgstr "--\t\t\t¤³¤Î¤¢¤È¤Ë¤Ï¥Õ¥¡¥¤¥ë̾¤À¤±"
+msgid "expressions disabled at compile time"
+msgstr "¼°¤Ï¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "--literal\t\tDon't expand wildcards"
-msgstr "--literal\t\t¥ï¥¤¥ë¥É¥«¡¼¥É¤òŸ³«¤·¤Ê¤¤"
+msgid "hidden option"
+msgstr "±£¤·¥ª¥×¥·¥ç¥ó"
-msgid "-register\t\tRegister this gvim for OLE"
-msgstr "-register\t\t¤³¤Îgvim¤òOLE¤È¤·¤ÆÅÐÏ¿¤¹¤ë"
+msgid "unknown option"
+msgstr "̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
-msgid "-unregister\t\tUnregister gvim for OLE"
-msgstr "-unregister\t\tgvim¤ÎOLEÅÐÏ¿¤ò²ò½ü¤¹¤ë"
+msgid "window index is out of range"
+msgstr "Èϰϳ°¤Î¥¦¥£¥ó¥É¥¦ÈÖ¹æ¤Ç¤¹"
-msgid "-g\t\t\tRun using GUI (like \"gvim\")"
-msgstr "-g\t\t\tGUI¤Çµ¯Æ°¤¹¤ë (\"gvim\" ¤ÈƱ¤¸)"
+msgid "couldn't open buffer"
+msgstr "¥Ð¥Ã¥Õ¥¡¤ò³«¤±¤Þ¤»¤ó"
-msgid "-f or --nofork\tForeground: Don't fork when starting GUI"
-msgstr "-f or --nofork\t¥Õ¥©¥¢¥°¥é¥¦¥ó¥É: GUI¤ò»Ï¤á¤ë¤È¤¤Ëfork¤·¤Ê¤¤"
+msgid "cannot delete line"
+msgstr "¹Ô¤ò¾Ã¤»¤Þ¤»¤ó"
-msgid "-v\t\t\tVi mode (like \"vi\")"
-msgstr "-v\t\t\tVi¥â¡¼¥É (\"vi\" ¤ÈƱ¤¸)"
+msgid "cannot replace line"
+msgstr "¹Ô¤òÃÖ´¹¤Ç¤¤Þ¤»¤ó"
-msgid "-e\t\t\tEx mode (like \"ex\")"
-msgstr "-e\t\t\tEx¥â¡¼¥É (\"ex\" ¤ÈƱ¤¸)"
+msgid "cannot insert line"
+msgstr "¹Ô¤òÁÞÆþ¤Ç¤¤Þ¤»¤ó"
-msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")"
-msgstr "-s\t\t\t¥µ¥¤¥ì¥ó¥È(¥Ð¥Ã¥Á)¥â¡¼¥É (\"ex\" ÀìÍÑ)"
+msgid "string cannot contain newlines"
+msgstr "ʸ»úÎó¤Ë¤Ï²þ¹Ôʸ»ú¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
-msgid "-d\t\t\tDiff mode (like \"vimdiff\")"
-msgstr "-d\t\t\tº¹Ê¬¥â¡¼¥É (\"vidiff\" ¤ÈƱ¤¸)"
+msgid "Vim error: ~a"
+msgstr "Vim ¥¨¥é¡¼: ~a"
-msgid "-y\t\t\tEasy mode (like \"evim\", modeless)"
-msgstr "-y\t\t\t¥¤¡¼¥¸¡¼¥â¡¼¥É (\"evim\" ¤ÈƱ¤¸, ¥â¡¼¥É̵)"
+msgid "Vim error"
+msgstr "Vim ¥¨¥é¡¼"
-msgid "-R\t\t\tReadonly mode (like \"view\")"
-msgstr "-R\t\t\tÆÉ¹þÀìÍѥ⡼¥É (\"view\" ¤ÈƱ¤¸)"
+msgid "buffer is invalid"
+msgstr "¥Ð¥Ã¥Õ¥¡¤Ï̵¸ú¤Ç¤¹"
-msgid "-Z\t\t\tRestricted mode (like \"rvim\")"
-msgstr "-Z\t\t\tÀ©¸Â¥â¡¼¥É (\"rvim\" ¤ÈƱ¤¸)"
+msgid "window is invalid"
+msgstr "¥¦¥£¥ó¥É¥¦¤Ï̵¸ú¤Ç¤¹"
-msgid "-m\t\t\tModifications (writing files) not allowed"
-msgstr "-m\t\t\tÊѹ¹ (¥Õ¥¡¥¤¥ëÊݸ»þ) ¤ò¤Ç¤¤Ê¤¤¤è¤¦¤Ë¤¹¤ë"
+msgid "linenr out of range"
+msgstr "Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹"
-msgid "-M\t\t\tModifications in text not allowed"
-msgstr "-M\t\t\t¥Æ¥¥¹¥È¤ÎÊÔ½¸¤ò¹Ô¤Ê¤¨¤Ê¤¤¤è¤¦¤Ë¤¹¤ë"
+msgid "not allowed in the Vim sandbox"
+msgstr "¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-msgid "-b\t\t\tBinary mode"
-msgstr "-b\t\t\t¥Ð¥¤¥Ê¥ê¥â¡¼¥É"
+msgid "Sorry, this command is disabled: the Perl library could not be loaded."
+msgstr ""
+"¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹, ¤´¤á¤ó¤Ê¤µ¤¤: Perl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿."
-msgid "-l\t\t\tLisp mode"
-msgstr "-l\t\t\tLisp¥â¡¼¥É"
+msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
+msgstr ""
+"E299: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ï Safe ¥â¥¸¥å¡¼¥ë¤ò»ÈÍѤ·¤Ê¤¤Perl¥¹¥¯¥ê¥×¥È¤Ï¶Ø¤¸¤é¤ì"
+"¤Æ¤¤¤Þ¤¹"
-msgid "-C\t\t\tCompatible with Vi: 'compatible'"
-msgstr "-C\t\t\tVi¸ß´¹¥â¡¼¥É: 'compatible'"
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: ¤³¤ÎVim¤Ç¤Ï :py3 ¤ò»È¤Ã¤¿¸å¤Ë :python ¤ò»È¤¨¤Þ¤»¤ó"
-msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'"
-msgstr "-N\t\t\tViÈó¸ß´¹¥â¡¼¥É: 'nocompatible"
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Python¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó"
+"¤Ç¤·¤¿."
-msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"
-msgstr "-V[N][fname]\t\t¥í¥°½ÐÎÏÀßÄê [¥ì¥Ù¥ë N] [¥í¥°¥Õ¥¡¥¤¥ë̾ fname]"
+# Added at 07-Feb-2004.
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python ¤òºÆµ¢Åª¤Ë¼Â¹Ô¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-msgid "-D\t\t\tDebugging mode"
-msgstr "-D\t\t\t¥Ç¥Ð¥Ã¥°¥â¡¼¥É"
+msgid "can't delete OutputObject attributes"
+msgstr "OutputObject°À¤ò¾Ã¤»¤Þ¤»¤ó"
-msgid "-n\t\t\tNo swap file, use memory only"
-msgstr "-n\t\t\t¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ»¤º¥á¥â¥ê¤À¤±"
+msgid "softspace must be an integer"
+msgstr "softspace ¤Ï integer ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-msgid "-r\t\t\tList swap files and exit"
-msgstr "-r\t\t\t¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤òÎóµó¤·½ªÎ»"
+msgid "invalid attribute"
+msgstr "̵¸ú¤Ê°À¤Ç¤¹"
-msgid "-r (with file name)\tRecover crashed session"
-msgstr "-r (¥Õ¥¡¥¤¥ë̾)\t¥¯¥é¥Ã¥·¥å¤·¤¿¥»¥Ã¥·¥ç¥ó¤òÉüµ¢"
+#, c-format
+msgid "<buffer object (deleted) at %p>"
+msgstr "<¥Ð¥Ã¥Õ¥¡¥ª¥Ö¥¸¥§¥¯¥È (¾ÃµîºÑ¤ß) %p>"
-msgid "-L\t\t\tSame as -r"
-msgstr "-L\t\t\t-r¤ÈƱ¤¸"
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: ¤³¤ÎVim¤Ç¤Ï :python ¤ò»È¤Ã¤¿¸å¤Ë :py3 ¤ò»È¤¨¤Þ¤»¤ó"
-msgid "-f\t\t\tDon't use newcli to open window"
-msgstr "-f\t\t\t¥¦¥£¥ó¥É¥¦¤ò³«¤¯¤Î¤Ë newcli ¤ò»ÈÍѤ·¤Ê¤¤"
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ ¤Ïʸ»úÎó¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-msgid "-dev <device>\t\tUse <device> for I/O"
-msgstr "-dev <device>\t\tI/O¤Ë <device> ¤ò»ÈÍѤ¹¤ë"
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Ruby¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
+"¤·¤¿."
-msgid "-A\t\t\tstart in Arabic mode"
-msgstr "-A\t\t\t¥¢¥é¥Ó¥¢¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
+msgid "E267: unexpected return"
+msgstr "E267: ͽ´ü¤»¤Ì return ¤Ç¤¹"
-msgid "-H\t\t\tStart in Hebrew mode"
-msgstr "-H\t\t\t¥Ø¥Ö¥é¥¤¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
+msgid "E268: unexpected next"
+msgstr "E268: ͽ´ü¤»¤Ì next ¤Ç¤¹"
-msgid "-F\t\t\tStart in Farsi mode"
-msgstr "-F\t\t\t¥Ú¥ë¥·¥¢¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
+msgid "E269: unexpected break"
+msgstr "E269: ͽ´ü¤»¤Ì break ¤Ç¤¹"
-msgid "-T <terminal>\tSet terminal type to <terminal>"
-msgstr "-T <terminal>\tüËö¤ò <terminal> ¤ËÀßÄꤹ¤ë"
+msgid "E270: unexpected redo"
+msgstr "E270: ͽ´ü¤»¤Ì redo ¤Ç¤¹"
-msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"
-msgstr "-u <vimrc>\t\t.vimrc¤ÎÂå¤ï¤ê¤Ë <vimrc> ¤ò»È¤¦"
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: rescue ¤Î³°¤Î retry ¤Ç¤¹"
-msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"
-msgstr "-U <gvimrc>\t\t.gvimrc¤ÎÂå¤ï¤ê¤Ë <gvimrc> ¤ò»È¤¦"
+msgid "E272: unhandled exception"
+msgstr "E272: ¼è¤ê°·¤ï¤ì¤Ê¤«¤Ã¤¿Îã³°¤¬¤¢¤ê¤Þ¤¹"
-msgid "--noplugin\t\tDon't load plugin scripts"
-msgstr "--noplugin\t\t¥×¥é¥°¥¤¥ó¥¹¥¯¥ê¥×¥È¤ò¥í¡¼¥É¤·¤Ê¤¤"
+#, c-format
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: ̤ÃΤÎlongjmp¾õÂÖ: %d"
-msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
-msgstr "-p[N]\t\tN ¸Ä¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯(¾ÊάÃÍ: ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤1¸Ä)"
+msgid "Toggle implementation/definition"
+msgstr "¼ÂÁõ¤ÈÄêµÁ¤òÀÚ¤êÂØ¤¨¤ë"
-msgid "-o[N]\t\tOpen N windows (default: one for each file)"
-msgstr "-o[N]\t\tN ¸Ä¥¦¥£¥ó¥É¥¦¤ò³«¤¯(¾ÊάÃÍ: ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤1¸Ä)"
+msgid "Show base class of"
+msgstr "¼¡¤Î¥¯¥é¥¹¤Î´ðÄì¤òɽ¼¨"
-msgid "-O[N]\t\tLike -o but split vertically"
-msgstr "-O[N]\t\t-o¤ÈƱ¤¸¤À¤¬¿âľʬ³ä"
+msgid "Show overridden member function"
+msgstr "¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤¿¥á¥ó¥Ð´Ø¿ô¤òɽ¼¨"
-msgid "+\t\t\tStart at end of file"
-msgstr "+\t\t\t¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤«¤é¤Ï¤¸¤á¤ë"
+msgid "Retrieve from file"
+msgstr "¥Õ¥¡¥¤¥ë¤«¤é²óÉü¤¹¤ë"
-msgid "+<lnum>\t\tStart at line <lnum>"
-msgstr "+<lnum>\t\t<lnum> ¹Ô¤«¤é¤Ï¤¸¤á¤ë"
+msgid "Retrieve from project"
+msgstr "¥×¥í¥¸¥§¥¯¥È¤«¤é²óÉü¤¹¤ë"
-msgid "--cmd <command>\tExecute <command> before loading any vimrc file"
-msgstr "--cmd <command>\tvimrc¤ò¥í¡¼¥É¤¹¤ëÁ°¤Ë <command> ¤ò¼Â¹Ô¤¹¤ë"
+msgid "Retrieve from all projects"
+msgstr "Á´¤Æ¤Î¥×¥í¥¸¥§¥¯¥È¤«¤é²óÉü¤¹¤ë"
-msgid "-c <command>\t\tExecute <command> after loading the first file"
-msgstr "-c <command>\t\tºÇ½é¤Î¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥É¸å <command> ¤ò¼Â¹Ô¤¹¤ë"
+msgid "Retrieve"
+msgstr "²óÉü"
-msgid "-S <session>\t\tSource file <session> after loading the first file"
-msgstr "-S <session>\t\tºÇ½é¤Î¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥É¸å¥Õ¥¡¥¤¥ë <session> ¤ò¼è¹þ¤à"
+msgid "Show source of"
+msgstr "¼¡¤Î¥½¡¼¥¹¤òɽ¼¨¤¹¤ë"
-msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>"
-msgstr "-s <scriptin>\t¥Õ¥¡¥¤¥ë <scriptin> ¤«¤é¥Î¡¼¥Þ¥ë¥³¥Þ¥ó¥É¤òÆÉ¹þ¤à"
+msgid "Find symbol"
+msgstr "¤ß¤Ä¤±¤¿¥·¥ó¥Ü¥ë"
-msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>"
-msgstr "-w <scriptout>\tÆþÎϤ·¤¿Á´¥³¥Þ¥ó¥É¤ò¥Õ¥¡¥¤¥ë <scriptout> ¤ËÄɲ乤ë"
+msgid "Browse class"
+msgstr "¥¯¥é¥¹¤ò»²¾È"
-msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>"
-msgstr "-W <scriptout>\tÆþÎϤ·¤¿Á´¥³¥Þ¥ó¥É¤ò¥Õ¥¡¥¤¥ë <scriptout> ¤ËÊݸ¤¹¤ë"
+msgid "Show class in hierarchy"
+msgstr "³¬Áؤǥ¯¥é¥¹¤òɽ¼¨"
-msgid "-x\t\t\tEdit encrypted files"
-msgstr "-x\t\t\t°Å¹æ²½¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
+msgid "Show class in restricted hierarchy"
+msgstr "¸ÂÄꤵ¤ì¤¿³¬Áؤǥ¯¥é¥¹¤òɽ¼¨"
-msgid "-display <display>\tConnect vim to this particular X-server"
-msgstr "-display <display>\tvim¤ò»ØÄꤷ¤¿ X ¥µ¡¼¥Ð¤ËÀܳ¤¹¤ë"
+msgid "Xref refers to"
+msgstr "Xref ¤Î»²¾ÈÀè"
-msgid "-X\t\t\tDo not connect to X server"
-msgstr "-X\t\t\tX¥µ¡¼¥Ð¤ËÀܳ¤·¤Ê¤¤"
+msgid "Xref referred by"
+msgstr "Xref ¤¬»²¾È¤µ¤ì¤ë"
-msgid "--remote <files>\tEdit <files> in a Vim server if possible"
-msgstr "--remote <files>\t²Äǽ¤Ê¤é¤ÐVim¥µ¡¼¥Ð¤Ç <files> ¤òÊÔ½¸¤¹¤ë"
+msgid "Xref has a"
+msgstr "Xref ¤¬¼¡¤Î¤â¤Î¤ò¤â¤Ã¤Æ¤¤¤Þ¤¹"
-msgid "--remote-silent <files> Same, don't complain if there is no server"
-msgstr "--remote-silent <files> Ʊ¾å, ¥µ¡¼¥Ð¤¬Ìµ¤¯¤Æ¤â·Ù¹ðʸ¤ò½ÐÎϤ·¤Ê¤¤"
+msgid "Xref used by"
+msgstr "Xref ¤¬»ÈÍѤµ¤ì¤ë"
-msgid ""
-"--remote-wait <files> As --remote but wait for files to have been edited"
-msgstr "--remote-wait <files>\t--remote¸å ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤¬½ª¤ï¤ë¤Î¤òÂÔ¤Ä"
+msgid "Show docu of"
+msgstr "¼¡¤Îʸ¾Ï¤òɽ¼¨"
-msgid ""
-"--remote-wait-silent <files> Same, don't complain if there is no server"
-msgstr "--remote-wait-silent <files> Ʊ¾å, ¥µ¡¼¥Ð¤¬Ìµ¤¯¤Æ¤â·Ù¹ðʸ¤ò½ÐÎϤ·¤Ê¤¤"
+msgid "Generate docu for"
+msgstr "¼¡¤Îʸ¾Ï¤òÀ¸À®"
msgid ""
-"--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"
+"Cannot connect to SNiFF+. Check environment (sniffemacs must be found in "
+"$PATH).\n"
msgstr ""
-"--remote-tab[-wait][-silent] <files> --remote¤Ç¥Õ¥¡¥¤¥ë1¤Ä¤Ë¤Ä¤1¤Ä¤Î¥¿¥Ö"
-"¥Ú¡¼¥¸¤ò³«¤¯"
+"SNiFF+¤ËÀܳ¤Ç¤¤Þ¤»¤ó. ´Ä¶¤ò¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤(sniffemacs ¤¬ $PATH ¤Ë¤Ê¤±"
+"¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó).\n"
-msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
-msgstr "--remote-send <keys>\tVim¥µ¡¼¥Ð¤Ë <keys> ¤òÁ÷¿®¤·¤Æ½ªÎ»¤¹¤ë"
+msgid "E274: Sniff: Error during read. Disconnected"
+msgstr "E274: Sniff: ÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿. ÀÚÃǤ·¤Þ¤·¤¿"
-msgid "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"
-msgstr "--remote-expr <expr>\t¥µ¡¼¥Ð¤Ç <expr> ¤ò¼Â¹Ô¤·¤Æ·ë²Ì¤òɽ¼¨¤¹¤ë"
+msgid "SNiFF+ is currently "
+msgstr "¸½ºßSNiFF+ ¤Î¾õÂ֤ϡÖ"
-msgid "--serverlist\t\tList available Vim server names and exit"
-msgstr "--serverlist\t\tVim¥µ¡¼¥Ð̾¤Î°ìÍ÷¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë"
+msgid "not "
+msgstr "̤"
-msgid "--servername <name>\tSend to/become the Vim server <name>"
-msgstr "--servename <name>\t\tVim¥µ¡¼¥Ð <name> ¤ËÁ÷¿®/̾Á°ÀßÄꤹ¤ë"
+msgid "connected"
+msgstr "Àܳ¡×¤Ç¤¹"
-msgid "--startuptime <file>\tWrite startup timing messages to <file>"
-msgstr "--startuptime <file>\tµ¯Æ°¤Ë¤«¤«¤Ã¤¿»þ´Ö¤Î¾ÜºÙ¤ò <file> ¤Ø½ÐÎϤ¹¤ë"
+#, c-format
+msgid "E275: Unknown SNiFF+ request: %s"
+msgstr "E275: ̤ÃΤΠSNiFF+ ¥ê¥¯¥¨¥¹¥È¤Ç¤¹: %s"
-msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo"
-msgstr "-i <viminfo>\t\t.viminfo¤ÎÂå¤ï¤ê¤Ë <viminfo> ¤ò»È¤¦"
+msgid "E276: Error connecting to SNiFF+"
+msgstr "E276: SNiFF+ ¤Ø¤ÎÀÜÂ³Ãæ¤Î¥¨¥é¡¼¤Ç¤¹"
-msgid "-h or --help\tPrint Help (this message) and exit"
-msgstr "-h or --help\t¥Ø¥ë¥×(¤³¤Î¥á¥Ã¥»¡¼¥¸)¤òɽ¼¨¤·½ªÎ»¤¹¤ë"
+msgid "E278: SNiFF+ not connected"
+msgstr "E278: SNiFF+ ¤ËÀܳ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "--version\t\tPrint version information and exit"
-msgstr "--version\t\t¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·½ªÎ»¤¹¤ë"
+msgid "E279: Not a SNiFF+ buffer"
+msgstr "E279: SNiFF+ ¥Ð¥Ã¥Õ¥¡¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid ""
-"\n"
-"Arguments recognised by gvim (Motif version):\n"
-msgstr ""
-"\n"
-"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(Motif¥Ð¡¼¥¸¥ç¥ó):\n"
+msgid "Sniff: Error during write. Disconnected"
+msgstr "Sniff: ½ñ¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤¿¤Î¤ÇÀÚÃǤ·¤Þ¤·¤¿"
-msgid ""
-"\n"
-"Arguments recognised by gvim (neXtaw version):\n"
-msgstr ""
-"\n"
-"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(neXtaw¥Ð¡¼¥¸¥ç¥ó):\n"
+msgid "invalid buffer number"
+msgstr "̵¸ú¤Ê¥Ð¥Ã¥Õ¥¡ÈÖ¹æ¤Ç¤¹"
-msgid ""
-"\n"
-"Arguments recognised by gvim (Athena version):\n"
-msgstr ""
-"\n"
-"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(Athena¥Ð¡¼¥¸¥ç¥ó):\n"
+msgid "not implemented yet"
+msgstr "¤Þ¤À¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "-display <display>\tRun vim on <display>"
-msgstr "-display <display>\t<display> ¤Çvim¤ò¼Â¹Ô¤¹¤ë"
+#. ???
+msgid "cannot set line(s)"
+msgstr "¹Ô¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
-msgid "-iconic\t\tStart vim iconified"
-msgstr "-iconic\t\tºÇ¾®²½¤·¤¿¾õÂÖ¤Çvim¤òµ¯Æ°¤¹¤ë"
+msgid "invalid mark name"
+msgstr "̵¸ú¤Ê¥Þ¡¼¥¯Ì¾¤Ç¤¹"
-msgid "-background <color>\tUse <color> for the background (also: -bg)"
-msgstr "-background <color>\tÇØ·Ê¿§¤Ë <color> ¤ò»È¤¦(ƱµÁ: -bg)"
+msgid "mark not set"
+msgstr "¥Þ¡¼¥¯¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "-foreground <color>\tUse <color> for normal text (also: -fg)"
-msgstr "-foreground <color>\tÁ°·Ê¿§¤Ë <color> ¤ò»È¤¦(ƱµÁ: -fg)"
+#, c-format
+msgid "row %d column %d"
+msgstr "¹Ô %d Îó %d"
-msgid "-font <font>\t\tUse <font> for normal text (also: -fn)"
-msgstr "-font <font>\t\t¥Æ¥¥¹¥Èɽ¼¨¤Ë <font> ¤ò»È¤¦(ƱµÁ: -fn)"
+msgid "cannot insert/append line"
+msgstr "¹Ô¤ÎÁÞÆþ/Äɲäò¤Ç¤¤Þ¤»¤ó"
-msgid "-boldfont <font>\tUse <font> for bold text"
-msgstr "-boldfont <font>\tÂÀ»ú¤Ë <font> ¤ò»È¤¦"
+msgid "line number out of range"
+msgstr "Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹"
-msgid "-italicfont <font>\tUse <font> for italic text"
-msgstr "-italicfont <for>\t¼ÐÂλú¤Ë <font> ¤ò»È¤¦"
+msgid "unknown flag: "
+msgstr "̤ÃΤΥե饰:"
-msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"
-msgstr "-geometry <geom>\t½é´üÇÛÃÖ¤Ë <geom> ¤ò»È¤¦(ƱµÁ: -geom)"
+msgid "unknown vimOption"
+msgstr "̤ÃΤΠvimOption ¤Ç¤¹"
-msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)"
-msgstr "-borderwidth <width>\t¶³¦¤ÎÉý¤ò <width> ¤Ë¤¹¤ë(ƱµÁ: -bw)"
+msgid "keyboard interrupt"
+msgstr "¥¡¼¥Ü¡¼¥É³ä¹þ¤ß"
-msgid "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"
-msgstr ""
-"-scrollbarwidth <width> ¥¹¥¯¥í¡¼¥ë¥Ð¡¼¤ÎÉý¤ò <width> ¤Ë¤¹¤ë(ƱµÁ: -sw)"
+msgid "vim error"
+msgstr "vim ¥¨¥é¡¼"
-msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"
-msgstr "-menuheight <height>\t¥á¥Ë¥å¡¼¥Ð¡¼¤Î¹â¤µ¤ò <height> ¤Ë¤¹¤ë(ƱµÁ: -mh)"
+msgid "cannot create buffer/window command: object is being deleted"
+msgstr ""
+"¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦ºîÀ®¥³¥Þ¥ó¥É¤òºîÀ®¤Ç¤¤Þ¤»¤ó: ¥ª¥Ö¥¸¥§¥¯¥È¤¬¾Ãµî¤µ¤ì¤Æ¤¤¤Þ"
+"¤·¤¿"
-msgid "-reverse\t\tUse reverse video (also: -rv)"
-msgstr "-reverse\t\tȿž±ÇÁü¤ò»ÈÍѤ¹¤ë(ƱµÁ: -rv)"
+msgid ""
+"cannot register callback command: buffer/window is already being deleted"
+msgstr ""
+"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¾Ãµî¤µ¤ì¤Þ¤·¤¿"
-msgid "+reverse\t\tDon't use reverse video (also: +rv)"
-msgstr "+reverse\t\tȿž±ÇÁü¤ò»ÈÍѤ·¤Ê¤¤(ƱµÁ: +rv)"
+#. This should never happen. Famous last word?
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: TCL Ã×̿Ū¥¨¥é¡¼: reflist ±øÀ÷!? vim-dev@vim.org ¤ËÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤"
-msgid "-xrm <resource>\tSet the specified resource"
-msgstr "-xrm <resource>\tÆÃÄê¤Î¥ê¥½¡¼¥¹¤ò»ÈÍѤ¹¤ë"
+msgid "cannot register callback command: buffer/window reference not found"
+msgstr ""
+"¥³¡¼¥ë¥Ð¥Ã¥¯¥³¥Þ¥ó¥É¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó: ¥Ð¥Ã¥Õ¥¡/¥¦¥£¥ó¥É¥¦¤Î»²¾È¤¬¤ß¤Ä¤«¤ê¤Þ¤»"
+"¤ó"
msgid ""
-"\n"
-"Arguments recognised by gvim (RISC OS version):\n"
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
msgstr ""
-"\n"
-"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(RISC OS¥Ð¡¼¥¸¥ç¥ó):\n"
+"E571: ¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹,¤´¤á¤ó¤Ê¤µ¤¤: Tcl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç"
+"¤·¤¿."
-msgid "--columns <number>\tInitial width of window in columns"
-msgstr "--columns <number>\t½é´ü¤Î¥¦¥£¥ó¥É¥¦¤Î¥³¥é¥àñ°Ì¤ÎÉý"
+#, c-format
+msgid "E572: exit code %d"
+msgstr "E572: ½ªÎ»¥³¡¼¥É %d"
-msgid "--rows <number>\tInitial height of window in rows"
-msgstr "--rows <number>\t½é´ü¤Î¥¦¥£¥ó¥É¥¦¤Î¹Ôñ°Ì¤Î¹â¤µ"
+msgid "cannot get line"
+msgstr "¹Ô¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
-msgid ""
-"\n"
-"Arguments recognised by gvim (GTK+ version):\n"
-msgstr ""
-"\n"
-"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(GTK+¥Ð¡¼¥¸¥ç¥ó):\n"
+msgid "Unable to register a command server name"
+msgstr "Ì¿Î᥵¡¼¥Ð¤Î̾Á°¤òÅÐÏ¿¤Ç¤¤Þ¤»¤ó"
-msgid "-display <display>\tRun vim on <display> (also: --display)"
-msgstr "-display <display>\t<display> ¤Çvim¤ò¼Â¹Ô¤¹¤ë(ƱµÁ: --display)"
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: ÌÜŪ¤Î¥×¥í¥°¥é¥à¤Ø¤Î¥³¥Þ¥ó¥ÉÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "--role <role>\tSet a unique role to identify the main window"
-msgstr "--role <role>\t¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ò¼±Ê̤¹¤ë°ì°Õ¤ÊÌò³ä(role)¤òÀßÄꤹ¤ë"
+#, c-format
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: ̵¸ú¤Ê¥µ¡¼¥ÐID¤¬»È¤ï¤ì¤Þ¤·¤¿: %s"
-msgid "--socketid <xid>\tOpen Vim inside another GTK widget"
-msgstr "--socketid <xid>\t°Û¤Ê¤ëGTK widget¤ÇVim¤ò³«¤¯"
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: VIM ¼ÂÂΤÎÅÐÏ¿¥×¥í¥Ñ¥Æ¥£¤¬ÉÔÀµ¤Ç¤¹. ¾Ãµî¤·¤Þ¤·¤¿!"
-msgid "-P <parent title>\tOpen Vim inside parent application"
-msgstr "-P <¿Æ¤Î¥¿¥¤¥È¥ë>\tVim¤ò¿Æ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÎÃæ¤Çµ¯Æ°¤¹¤ë"
+msgid "Unknown option argument"
+msgstr "̤ÃΤΥª¥×¥·¥ç¥ó°ú¿ô¤Ç¤¹"
-msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
-msgstr "--windowid <HWND>\t°Û¤Ê¤ëWin32 widget¤ÎÆâÉô¤ËVim¤ò³«¤¯"
+msgid "Too many edit arguments"
+msgstr "ÊÔ½¸°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
-msgid "No display"
-msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "Argument missing after"
+msgstr "°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
-#. Failed to send, abort.
-msgid ": Send failed.\n"
-msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
+msgid "Garbage after option argument"
+msgstr "¥ª¥×¥·¥ç¥ó°ú¿ô¤Î¸å¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹"
-#. Let vim start normally.
-msgid ": Send failed. Trying to execute locally\n"
-msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿. ¥í¡¼¥«¥ë¤Ç¤Î¼Â¹Ô¤ò»î¤ß¤Æ¤¤¤Þ¤¹\n"
+msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"
+msgstr "\"+command\", \"-c command\", \"--cmd command\" ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+
+msgid "Invalid argument for"
+msgstr "̵¸ú¤Ê°ú¿ô¤Ç¤¹: "
#, c-format
-msgid "%d of %d edited"
-msgstr "%d ¸Ä (%d ¸ÄÃæ) ¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Þ¤·¤¿"
+msgid "%d files to edit\n"
+msgstr "%d ¸Ä¤Î¥Õ¥¡¥¤¥ë¤¬ÊÔ½¸¤ò¹µ¤¨¤Æ¤¤¤Þ¤¹\n"
-msgid "No display: Send expression failed.\n"
-msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¤¢¤ê¤Þ¤»¤ó: ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
+msgid "netbeans is not supported with this GUI\n"
+msgstr "netbeans ¤Ï¤³¤ÎGUI¤Ç¤ÏÍøÍѤǤ¤Þ¤»¤ó\n"
-msgid ": Send expression failed.\n"
-msgstr ": ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
+msgid "This Vim was not compiled with the diff feature."
+msgstr "¤³¤ÎVim¤Ë¤Ïdiffµ¡Ç½¤¬¤¢¤ê¤Þ¤»¤ó(¥³¥ó¥Ñ¥¤¥ë»þÀßÄê)."
-msgid "No marks set"
-msgstr "¥Þ¡¼¥¯¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "'-nb' cannot be used: not enabled at compile time\n"
+msgstr "'-nb' »ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+
+msgid "Attempt to open script file again: \""
+msgstr "¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤òºÆ¤Ó³«¤¤¤Æ¤ß¤Þ¤¹: \""
+
+msgid "Cannot open for reading: \""
+msgstr "ÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó"
+
+msgid "Cannot open for script output: \""
+msgstr "¥¹¥¯¥ê¥×¥È½ÐÎÏÍѤò³«¤±¤Þ¤»¤ó"
+
+msgid "Vim: Error: Failure to start gvim from NetBeans\n"
+msgstr "Vim: ¥¨¥é¡¼: NetBeans¤«¤égvim¤ò¥¹¥¿¡¼¥È¤Ç¤¤Þ¤»¤ó\n"
+
+msgid "Vim: Warning: Output is not to a terminal\n"
+msgstr "Vim: ·Ù¹ð: üËö¤Ø¤Î½ÐÎϤǤϤ¢¤ê¤Þ¤»¤ó\n"
+
+msgid "Vim: Warning: Input is not from a terminal\n"
+msgstr "Vim: ·Ù¹ð: üËö¤«¤é¤ÎÆþÎϤǤϤ¢¤ê¤Þ¤»¤ó\n"
+
+#. just in case..
+msgid "pre-vimrc command line"
+msgstr "vimrcÁ°¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó"
#, c-format
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: \"%s\" ¤Ë³ºÅö¤¹¤ë¥Þ¡¼¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: \"%s\"¤«¤éÆÉ¹þ¤à¤³¤È¤¬¤Ç¤¤Þ¤»¤ó"
-#. Highlight title
msgid ""
"\n"
-"mark line col file/text"
+"More info with: \"vim -h\"\n"
msgstr ""
"\n"
-"mark ¹Ô Îó ¥Õ¥¡¥¤¥ë/¥Æ¥¥¹¥È"
+"¤è¤ê¾ÜºÙ¤Ê¾ðÊó¤Ï: \"vim -h\"\n"
+
+msgid "[file ..] edit specified file(s)"
+msgstr "[¥Õ¥¡¥¤¥ë..] ¤¢¤ë¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
+
+msgid "- read text from stdin"
+msgstr "- ɸ½àÆþÎϤ«¤é¥Æ¥¥¹¥È¤òÆÉ¹þ¤à"
+
+msgid "-t tag edit file where tag is defined"
+msgstr "-t ¥¿¥° ¥¿¥°¤¬ÄêµÁ¤µ¤ì¤¿¤È¤³¤í¤«¤éÊÔ½¸¤¹¤ë"
+
+msgid "-q [errorfile] edit file with first error"
+msgstr "-q [errorfile] ºÇ½é¤Î¥¨¥é¡¼¤ÇÊÔ½¸¤¹¤ë"
-#. Highlight title
msgid ""
"\n"
-" jump line col file/text"
+"\n"
+"usage:"
msgstr ""
"\n"
-" jump ¹Ô Îó ¥Õ¥¡¥¤¥ë/¥Æ¥¥¹¥È"
+"\n"
+"»ÈÍÑË¡:"
+
+msgid " vim [arguments] "
+msgstr " vim [°ú¿ô]"
-#. Highlight title
msgid ""
"\n"
-"change line col text"
+" or:"
msgstr ""
"\n"
-"Êѹ¹ ¹Ô Îó ¥Æ¥¥¹¥È"
+" ¤â¤·¤¯¤Ï:"
msgid ""
"\n"
-"# File marks:\n"
+"Where case is ignored prepend / to make flag upper case"
msgstr ""
"\n"
-"# ¥Õ¥¡¥¤¥ë¥Þ¡¼¥¯:\n"
+"Â羮ʸ»ú¤¬Ìµ»ë¤µ¤ì¤ë¾ì¹ç¤ÏÂçʸ»ú¤Ë¤¹¤ë¤¿¤á¤Ë / ¤òÁ°ÃÖ¤·¤Æ¤¯¤À¤µ¤¤"
-#. Write the jumplist with -'
msgid ""
"\n"
-"# Jumplist (newest first):\n"
+"\n"
+"Arguments:\n"
msgstr ""
"\n"
-"# ¥¸¥ã¥ó¥×¥ê¥¹¥È (¿·¤·¤¤¤â¤Î¤¬Àè):\n"
-
-msgid ""
-"\n"
-"# History of marks within files (newest to oldest):\n"
-msgstr ""
"\n"
-"# ¥Õ¥¡¥¤¥ëÆâ¥Þ¡¼¥¯¤ÎÍúÎò (¿·¤·¤¤¤â¤Î¤«¤é¸Å¤¤¤â¤Î):\n"
+"°ú¿ô:\n"
-msgid "Missing '>'"
-msgstr "'>' ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "--\t\t\tOnly file names after this"
+msgstr "--\t\t\t¤³¤Î¤¢¤È¤Ë¤Ï¥Õ¥¡¥¤¥ë̾¤À¤±"
-msgid "E543: Not a valid codepage"
-msgstr "E543: ̵¸ú¤Ê¥³¡¼¥É¥Ú¡¼¥¸¤Ç¤¹"
+msgid "--literal\t\tDon't expand wildcards"
+msgstr "--literal\t\t¥ï¥¤¥ë¥É¥«¡¼¥É¤òŸ³«¤·¤Ê¤¤"
-msgid "E284: Cannot set IC values"
-msgstr "E284: IC¤ÎÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+msgid "-register\t\tRegister this gvim for OLE"
+msgstr "-register\t\t¤³¤Îgvim¤òOLE¤È¤·¤ÆÅÐÏ¿¤¹¤ë"
-msgid "E285: Failed to create input context"
-msgstr "E285: ¥¤¥ó¥×¥Ã¥È¥³¥ó¥Æ¥¥¹¥È¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "-unregister\t\tUnregister gvim for OLE"
+msgstr "-unregister\t\tgvim¤ÎOLEÅÐÏ¿¤ò²ò½ü¤¹¤ë"
-msgid "E286: Failed to open input method"
-msgstr "E286: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "-g\t\t\tRun using GUI (like \"gvim\")"
+msgstr "-g\t\t\tGUI¤Çµ¯Æ°¤¹¤ë (\"gvim\" ¤ÈƱ¤¸)"
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: ·Ù¹ð: IM¤ÎÇ˲õ¥³¡¼¥ë¥Ð¥Ã¥¯¤òÀßÄê¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "-f or --nofork\tForeground: Don't fork when starting GUI"
+msgstr "-f or --nofork\t¥Õ¥©¥¢¥°¥é¥¦¥ó¥É: GUI¤ò»Ï¤á¤ë¤È¤¤Ëfork¤·¤Ê¤¤"
-msgid "E288: input method doesn't support any style"
-msgstr "E288: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï¤É¤ó¤Ê¥¹¥¿¥¤¥ë¤â¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
+msgid "-v\t\t\tVi mode (like \"vi\")"
+msgstr "-v\t\t\tVi¥â¡¼¥É (\"vi\" ¤ÈƱ¤¸)"
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï my preedit type ¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
+msgid "-e\t\t\tEx mode (like \"ex\")"
+msgstr "-e\t\t\tEx¥â¡¼¥É (\"ex\" ¤ÈƱ¤¸)"
-msgid "E293: block was not locked"
-msgstr "E293: ¥Ö¥í¥Ã¥¯¤¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "-E\t\t\tImproved Ex mode"
+msgstr "-E\t\t\t²þÎÉEx¥â¡¼¥É"
-msgid "E294: Seek error in swap file read"
-msgstr "E294: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ëÆÉ¹þ»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
+msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")"
+msgstr "-s\t\t\t¥µ¥¤¥ì¥ó¥È(¥Ð¥Ã¥Á)¥â¡¼¥É (\"ex\" ÀìÍÑ)"
-msgid "E295: Read error in swap file"
-msgstr "E295: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+msgid "-d\t\t\tDiff mode (like \"vimdiff\")"
+msgstr "-d\t\t\tº¹Ê¬¥â¡¼¥É (\"vidiff\" ¤ÈƱ¤¸)"
-msgid "E296: Seek error in swap file write"
-msgstr "E296: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë½ñ¹þ¤ß»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
+msgid "-y\t\t\tEasy mode (like \"evim\", modeless)"
+msgstr "-y\t\t\t¥¤¡¼¥¸¡¼¥â¡¼¥É (\"evim\" ¤ÈƱ¤¸, ¥â¡¼¥É̵)"
-msgid "E297: Write error in swap file"
-msgstr "E297: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
+msgid "-R\t\t\tReadonly mode (like \"view\")"
+msgstr "-R\t\t\tÆÉ¹þÀìÍѥ⡼¥É (\"view\" ¤ÈƱ¤¸)"
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹ (symlink¤Ë¤è¤ë¹¶·â?)"
+msgid "-Z\t\t\tRestricted mode (like \"rvim\")"
+msgstr "-Z\t\t\tÀ©¸Â¥â¡¼¥É (\"rvim\" ¤ÈƱ¤¸)"
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+msgid "-m\t\t\tModifications (writing files) not allowed"
+msgstr "-m\t\t\tÊѹ¹ (¥Õ¥¡¥¤¥ëÊݸ»þ) ¤ò¤Ç¤¤Ê¤¤¤è¤¦¤Ë¤¹¤ë"
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 1 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+msgid "-M\t\t\tModifications in text not allowed"
+msgstr "-M\t\t\t¥Æ¥¥¹¥È¤ÎÊÔ½¸¤ò¹Ô¤Ê¤¨¤Ê¤¤¤è¤¦¤Ë¤¹¤ë"
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: ¥Ö¥í¥Ã¥¯ 2 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
+msgid "-b\t\t\tBinary mode"
+msgstr "-b\t\t\t¥Ð¥¤¥Ê¥ê¥â¡¼¥É"
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°Å¹æ¤ò¹¹¿·Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
+msgid "-l\t\t\tLisp mode"
+msgstr "-l\t\t\tLisp¥â¡¼¥É"
-#. could not (re)open the swap file, what can we do????
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: ¤ª¤Ã¤È, ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¼º¤ï¤ì¤Þ¤·¤¿!!!"
+msgid "-C\t\t\tCompatible with Vi: 'compatible'"
+msgstr "-C\t\t\tVi¸ß´¹¥â¡¼¥É: 'compatible'"
-msgid "E302: Could not rename swap file"
-msgstr "E302: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
+msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'"
+msgstr "-N\t\t\tViÈó¸ß´¹¥â¡¼¥É: 'nocompatible"
-#, c-format
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr "E303: \"%s\" ¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò³«¤±¤Ê¤¤¤Î¤Ç¥ê¥«¥Ð¥ê¤ÏÉÔ²Äǽ¤Ç¤¹"
+msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"
+msgstr "-V[N][fname]\t\t¥í¥°½ÐÎÏÀßÄê [¥ì¥Ù¥ë N] [¥í¥°¥Õ¥¡¥¤¥ë̾ fname]"
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿??"
+msgid "-D\t\t\tDebugging mode"
+msgstr "-D\t\t\t¥Ç¥Ð¥Ã¥°¥â¡¼¥É"
-#, c-format
-msgid "E305: No swap file found for %s"
-msgstr "E305: %s ¤Ë¤Ï¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "-n\t\t\tNo swap file, use memory only"
+msgstr "-n\t\t\t¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ»¤º¥á¥â¥ê¤À¤±"
-msgid "Enter number of swap file to use (0 to quit): "
-msgstr "»ÈÍѤ¹¤ë¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÈÖ¹æ¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤(0 ¤Ç½ªÎ»): "
+msgid "-r\t\t\tList swap files and exit"
+msgstr "-r\t\t\t¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤òÎóµó¤·½ªÎ»"
-#, c-format
-msgid "E306: Cannot open %s"
-msgstr "E306: %s ¤ò³«¤±¤Þ¤»¤ó"
+msgid "-r (with file name)\tRecover crashed session"
+msgstr "-r (¥Õ¥¡¥¤¥ë̾)\t¥¯¥é¥Ã¥·¥å¤·¤¿¥»¥Ã¥·¥ç¥ó¤òÉüµ¢"
-msgid "Unable to read block 0 from "
-msgstr "¥Ö¥í¥Ã¥¯ 0 ¤òÆÉ¹þ¤á¤Þ¤»¤ó "
+msgid "-L\t\t\tSame as -r"
+msgstr "-L\t\t\t-r¤ÈƱ¤¸"
-msgid ""
-"\n"
-"Maybe no changes were made or Vim did not update the swap file."
-msgstr ""
-"\n"
-"¶²¤é¤¯Êѹ¹¤¬¤µ¤ì¤Æ¤¤¤Ê¤¤¤«Vim¤¬¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¹¹¿·¤·¤Æ¤¤¤Þ¤»¤ó."
+msgid "-f\t\t\tDon't use newcli to open window"
+msgstr "-f\t\t\t¥¦¥£¥ó¥É¥¦¤ò³«¤¯¤Î¤Ë newcli ¤ò»ÈÍѤ·¤Ê¤¤"
-msgid " cannot be used with this version of Vim.\n"
-msgstr " Vim¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó.\n"
+msgid "-dev <device>\t\tUse <device> for I/O"
+msgstr "-dev <device>\t\tI/O¤Ë <device> ¤ò»ÈÍѤ¹¤ë"
-msgid "Use Vim version 3.0.\n"
-msgstr "Vim¤Î¥Ð¡¼¥¸¥ç¥ó3.0¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤.\n"
+msgid "-A\t\t\tstart in Arabic mode"
+msgstr "-A\t\t\t¥¢¥é¥Ó¥¢¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
-#, c-format
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s ¤ÏVim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
+msgid "-H\t\t\tStart in Hebrew mode"
+msgstr "-H\t\t\t¥Ø¥Ö¥é¥¤¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
-msgid " cannot be used on this computer.\n"
-msgstr " ¤³¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó.\n"
+msgid "-F\t\t\tStart in Farsi mode"
+msgstr "-F\t\t\t¥Ú¥ë¥·¥¢¸ì¥â¡¼¥É¤Çµ¯Æ°¤¹¤ë"
-msgid "The file was created on "
-msgstr "¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¼¡¤Î¾ì½ê¤Çºî¤é¤ì¤Þ¤·¤¿ "
+msgid "-T <terminal>\tSet terminal type to <terminal>"
+msgstr "-T <terminal>\tüËö¤ò <terminal> ¤ËÀßÄꤹ¤ë"
+
+msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"
+msgstr "-u <vimrc>\t\t.vimrc¤ÎÂå¤ï¤ê¤Ë <vimrc> ¤ò»È¤¦"
+
+msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"
+msgstr "-U <gvimrc>\t\t.gvimrc¤ÎÂå¤ï¤ê¤Ë <gvimrc> ¤ò»È¤¦"
+
+msgid "--noplugin\t\tDon't load plugin scripts"
+msgstr "--noplugin\t\t¥×¥é¥°¥¤¥ó¥¹¥¯¥ê¥×¥È¤ò¥í¡¼¥É¤·¤Ê¤¤"
+
+msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
+msgstr "-p[N]\t\tN ¸Ä¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯(¾ÊάÃÍ: ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤1¸Ä)"
+
+msgid "-o[N]\t\tOpen N windows (default: one for each file)"
+msgstr "-o[N]\t\tN ¸Ä¥¦¥£¥ó¥É¥¦¤ò³«¤¯(¾ÊάÃÍ: ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤1¸Ä)"
+
+msgid "-O[N]\t\tLike -o but split vertically"
+msgstr "-O[N]\t\t-o¤ÈƱ¤¸¤À¤¬¿âľʬ³ä"
+
+msgid "+\t\t\tStart at end of file"
+msgstr "+\t\t\t¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤«¤é¤Ï¤¸¤á¤ë"
+
+msgid "+<lnum>\t\tStart at line <lnum>"
+msgstr "+<lnum>\t\t<lnum> ¹Ô¤«¤é¤Ï¤¸¤á¤ë"
+
+msgid "--cmd <command>\tExecute <command> before loading any vimrc file"
+msgstr "--cmd <command>\tvimrc¤ò¥í¡¼¥É¤¹¤ëÁ°¤Ë <command> ¤ò¼Â¹Ô¤¹¤ë"
+
+msgid "-c <command>\t\tExecute <command> after loading the first file"
+msgstr "-c <command>\t\tºÇ½é¤Î¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥É¸å <command> ¤ò¼Â¹Ô¤¹¤ë"
+
+msgid "-S <session>\t\tSource file <session> after loading the first file"
+msgstr "-S <session>\t\tºÇ½é¤Î¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥É¸å¥Õ¥¡¥¤¥ë <session> ¤ò¼è¹þ¤à"
+
+msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>"
+msgstr "-s <scriptin>\t¥Õ¥¡¥¤¥ë <scriptin> ¤«¤é¥Î¡¼¥Þ¥ë¥³¥Þ¥ó¥É¤òÆÉ¹þ¤à"
+
+msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>"
+msgstr "-w <scriptout>\tÆþÎϤ·¤¿Á´¥³¥Þ¥ó¥É¤ò¥Õ¥¡¥¤¥ë <scriptout> ¤ËÄɲ乤ë"
+
+msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>"
+msgstr "-W <scriptout>\tÆþÎϤ·¤¿Á´¥³¥Þ¥ó¥É¤ò¥Õ¥¡¥¤¥ë <scriptout> ¤ËÊݸ¤¹¤ë"
+
+msgid "-x\t\t\tEdit encrypted files"
+msgstr "-x\t\t\t°Å¹æ²½¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë"
+
+msgid "-display <display>\tConnect vim to this particular X-server"
+msgstr "-display <display>\tvim¤ò»ØÄꤷ¤¿ X ¥µ¡¼¥Ð¤ËÀܳ¤¹¤ë"
+
+msgid "-X\t\t\tDo not connect to X server"
+msgstr "-X\t\t\tX¥µ¡¼¥Ð¤ËÀܳ¤·¤Ê¤¤"
+
+msgid "--remote <files>\tEdit <files> in a Vim server if possible"
+msgstr "--remote <files>\t²Äǽ¤Ê¤é¤ÐVim¥µ¡¼¥Ð¤Ç <files> ¤òÊÔ½¸¤¹¤ë"
+
+msgid "--remote-silent <files> Same, don't complain if there is no server"
+msgstr "--remote-silent <files> Ʊ¾å, ¥µ¡¼¥Ð¤¬Ìµ¤¯¤Æ¤â·Ù¹ðʸ¤ò½ÐÎϤ·¤Ê¤¤"
msgid ""
-",\n"
-"or the file has been damaged."
-msgstr ""
-",\n"
-"¤â¤·¤¯¤Ï¥Õ¥¡¥¤¥ë¤¬Â»½ý¤·¤Æ¤¤¤Þ¤¹."
+"--remote-wait <files> As --remote but wait for files to have been edited"
+msgstr "--remote-wait <files>\t--remote¸å ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤¬½ª¤ï¤ë¤Î¤òÂÔ¤Ä"
-#, c-format
msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
+"--remote-wait-silent <files> Same, don't complain if there is no server"
+msgstr "--remote-wait-silent <files> Ʊ¾å, ¥µ¡¼¥Ð¤¬Ìµ¤¯¤Æ¤â·Ù¹ðʸ¤ò½ÐÎϤ·¤Ê¤¤"
+
+msgid ""
+"--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"
msgstr ""
-"E833: %s ¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVim¤Ç¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤·Á¼°¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
+"--remote-tab[-wait][-silent] <files> --remote¤Ç¥Õ¥¡¥¤¥ë1¤Ä¤Ë¤Ä¤1¤Ä¤Î¥¿¥Ö"
+"¥Ú¡¼¥¸¤ò³«¤¯"
-msgid " has been damaged (page size is smaller than minimum value).\n"
-msgstr " ¤Ï»½ý¤·¤Æ¤¤¤Þ¤¹ (¥Ú¡¼¥¸¥µ¥¤¥º¤¬ºÇ¾®Ãͤò²¼²ó¤Ã¤Æ¤¤¤Þ¤¹).\n"
+msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
+msgstr "--remote-send <keys>\tVim¥µ¡¼¥Ð¤Ë <keys> ¤òÁ÷¿®¤·¤Æ½ªÎ»¤¹¤ë"
-#, c-format
-msgid "Using swap file \"%s\""
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \"%s\" ¤ò»ÈÍÑÃæ"
+msgid "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"
+msgstr "--remote-expr <expr>\t¥µ¡¼¥Ð¤Ç <expr> ¤ò¼Â¹Ô¤·¤Æ·ë²Ì¤òɽ¼¨¤¹¤ë"
-#, c-format
-msgid "Original file \"%s\""
-msgstr "¸¶ËÜ¥Õ¥¡¥¤¥ë \"%s\""
+msgid "--serverlist\t\tList available Vim server names and exit"
+msgstr "--serverlist\t\tVim¥µ¡¼¥Ð̾¤Î°ìÍ÷¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë"
-msgid "E308: Warning: Original file may have been changed"
-msgstr "E308: ·Ù¹ð: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "--servername <name>\tSend to/become the Vim server <name>"
+msgstr "--servername <name>\tVim¥µ¡¼¥Ð <name> ¤ËÁ÷¿®/̾Á°ÀßÄꤹ¤ë"
-#, c-format
-msgid "Swap file is encrypted: \"%s\""
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ï°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: \"%s\""
+msgid "--startuptime <file>\tWrite startup timing messages to <file>"
+msgstr "--startuptime <file>\tµ¯Æ°¤Ë¤«¤«¤Ã¤¿»þ´Ö¤Î¾ÜºÙ¤ò <file> ¤Ø½ÐÎϤ¹¤ë"
+
+msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo"
+msgstr "-i <viminfo>\t\t.viminfo¤ÎÂå¤ï¤ê¤Ë <viminfo> ¤ò»È¤¦"
+
+msgid "-h or --help\tPrint Help (this message) and exit"
+msgstr "-h or --help\t¥Ø¥ë¥×(¤³¤Î¥á¥Ã¥»¡¼¥¸)¤òɽ¼¨¤·½ªÎ»¤¹¤ë"
+
+msgid "--version\t\tPrint version information and exit"
+msgstr "--version\t\t¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·½ªÎ»¤¹¤ë"
msgid ""
"\n"
-"If you entered a new crypt key but did not write the text file,"
+"Arguments recognised by gvim (Motif version):\n"
msgstr ""
"\n"
-"¿·¤·¤¤°Å¹æ¥¡¼¤òÆþÎϤ·¤¿¤¢¤È¤Ë¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï,"
+"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(Motif¥Ð¡¼¥¸¥ç¥ó):\n"
msgid ""
"\n"
-"enter the new crypt key."
+"Arguments recognised by gvim (neXtaw version):\n"
msgstr ""
"\n"
-"¿·¤·¤¤°Å¹æ¥¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤."
+"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(neXtaw¥Ð¡¼¥¸¥ç¥ó):\n"
msgid ""
"\n"
-"If you wrote the text file after changing the crypt key press enter"
-msgstr ""
-"\n"
-"°Å¹æ¥¡¼¤òÊѤ¨¤¿¤¢¤È¤Ë¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤¿¾ì¹ç¤Ï, ¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤È"
-
-msgid ""
-"\n"
-"to use the same key for text file and swap file"
+"Arguments recognised by gvim (Athena version):\n"
msgstr ""
"\n"
-"¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ËƱ¤¸°Å¹æ¥¡¼¤ò»È¤¦¤¿¤á¤Ëenter¤À¤±¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤."
+"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(Athena¥Ð¡¼¥¸¥ç¥ó):\n"
-#, c-format
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: %s ¤«¤é¥Ö¥í¥Ã¥¯ 1 ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+msgid "-display <display>\tRun vim on <display>"
+msgstr "-display <display>\t<display> ¤Çvim¤ò¼Â¹Ô¤¹¤ë"
-msgid "???MANY LINES MISSING"
-msgstr "???¿¤¯¤Î¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
+msgid "-iconic\t\tStart vim iconified"
+msgstr "-iconic\t\tºÇ¾®²½¤·¤¿¾õÂÖ¤Çvim¤òµ¯Æ°¤¹¤ë"
-msgid "???LINE COUNT WRONG"
-msgstr "???¹Ô¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "-background <color>\tUse <color> for the background (also: -bg)"
+msgstr "-background <color>\tÇØ·Ê¿§¤Ë <color> ¤ò»È¤¦(ƱµÁ: -bg)"
-msgid "???EMPTY BLOCK"
-msgstr "???¥Ö¥í¥Ã¥¯¤¬¶õ¤Ç¤¹"
+msgid "-foreground <color>\tUse <color> for normal text (also: -fg)"
+msgstr "-foreground <color>\tÁ°·Ê¿§¤Ë <color> ¤ò»È¤¦(ƱµÁ: -fg)"
-msgid "???LINES MISSING"
-msgstr "???¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
+msgid "-font <font>\t\tUse <font> for normal text (also: -fn)"
+msgstr "-font <font>\t\t¥Æ¥¥¹¥Èɽ¼¨¤Ë <font> ¤ò»È¤¦(ƱµÁ: -fn)"
-#, c-format
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: ¥Ö¥í¥Ã¥¯ 1 ¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹(%s ¤¬.swp¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤?)"
+msgid "-boldfont <font>\tUse <font> for bold text"
+msgstr "-boldfont <font>\tÂÀ»ú¤Ë <font> ¤ò»È¤¦"
-msgid "???BLOCK MISSING"
-msgstr "???¥Ö¥í¥Ã¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "-italicfont <font>\tUse <font> for italic text"
+msgstr "-italicfont <for>\t¼ÐÂλú¤Ë <font> ¤ò»È¤¦"
-msgid "??? from here until ???END lines may be messed up"
-msgstr "??? ¤³¤³¤«¤é???END¤Þ¤Ç¤Î¹Ô¤¬Ç˲õ¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
+msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"
+msgstr "-geometry <geom>\t½é´üÇÛÃÖ¤Ë <geom> ¤ò»È¤¦(ƱµÁ: -geom)"
-msgid "??? from here until ???END lines may have been inserted/deleted"
-msgstr "??? ¤³¤³¤«¤é??END¤Þ¤Ç¤Î¹Ô¤¬ÁÞÆþ¤«ºï½ü¤µ¤ì¤¿¤è¤¦¤Ç¤¹"
+msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)"
+msgstr "-borderwidth <width>\t¶³¦¤ÎÉý¤ò <width> ¤Ë¤¹¤ë(ƱµÁ: -bw)"
-msgid "???END"
-msgstr "???END"
+msgid "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"
+msgstr ""
+"-scrollbarwidth <width> ¥¹¥¯¥í¡¼¥ë¥Ð¡¼¤ÎÉý¤ò <width> ¤Ë¤¹¤ë(ƱµÁ: -sw)"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: ¥ê¥«¥Ð¥ê¤¬³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
+msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"
+msgstr "-menuheight <height>\t¥á¥Ë¥å¡¼¥Ð¡¼¤Î¹â¤µ¤ò <height> ¤Ë¤¹¤ë(ƱµÁ: -mh)"
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: ¥ê¥«¥Ð¥ê¤ÎºÇÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿; ???¤Ç»Ï¤Þ¤ë¹Ô¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "-reverse\t\tUse reverse video (also: -rv)"
+msgstr "-reverse\t\tȿž±ÇÁü¤ò»ÈÍѤ¹¤ë(ƱµÁ: -rv)"
-msgid "See \":help E312\" for more information."
-msgstr "¾ÜºÙ¤Ï \":help E312\" ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "+reverse\t\tDon't use reverse video (also: +rv)"
+msgstr "+reverse\t\tȿž±ÇÁü¤ò»ÈÍѤ·¤Ê¤¤(ƱµÁ: +rv)"
-msgid "Recovery completed. You should check if everything is OK."
-msgstr "¥ê¥«¥Ð¥ê¤¬½ªÎ»¤·¤Þ¤·¤¿. Á´¤Æ¤¬Àµ¤·¤¤¤«¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤."
+msgid "-xrm <resource>\tSet the specified resource"
+msgstr "-xrm <resource>\tÆÃÄê¤Î¥ê¥½¡¼¥¹¤ò»ÈÍѤ¹¤ë"
msgid ""
"\n"
-"(You might want to write out this file under another name\n"
+"Arguments recognised by gvim (GTK+ version):\n"
msgstr ""
"\n"
-"(Êѹ¹¤ò¥Á¥§¥Ã¥¯¤¹¤ë¤¿¤á¤Ë, ¤³¤Î¥Õ¥¡¥¤¥ë¤òÊ̤Î̾Á°¤ÇÊݸ¤·¤¿¾å¤Ç\n"
-
-msgid "and run diff with the original file to check for changes)"
-msgstr "¸¶ËÜ¥Õ¥¡¥¤¥ë¤È¤Î diff ¤ò¼Â¹Ô¤¹¤ë¤ÈÎɤ¤¤Ç¤·¤ç¤¦)"
+"gvim¤Ë¤è¤Ã¤Æ²ò¼á¤µ¤ì¤ë°ú¿ô(GTK+¥Ð¡¼¥¸¥ç¥ó):\n"
-msgid "Recovery completed. Buffer contents equals file contents."
-msgstr "Éü¸µ´°Î». ¥Ð¥Ã¥Õ¥¡¤ÎÆâÍÆ¤Ï¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤Ë¤Ê¤ê¤Þ¤·¤¿."
+msgid "-display <display>\tRun vim on <display> (also: --display)"
+msgstr "-display <display>\t<display> ¤Çvim¤ò¼Â¹Ô¤¹¤ë(ƱµÁ: --display)"
-msgid ""
-"\n"
-"You may want to delete the .swp file now.\n"
-"\n"
-msgstr ""
-"\n"
-"¤½¤ì¤«¤é.swp¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤¯¤À¤µ¤¤\n"
-"\n"
+msgid "--role <role>\tSet a unique role to identify the main window"
+msgstr "--role <role>\t¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ò¼±Ê̤¹¤ë°ì°Õ¤ÊÌò³ä(role)¤òÀßÄꤹ¤ë"
-msgid "Using crypt key from swap file for the text file.\n"
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤«¤é¼èÆÀ¤·¤¿°Å¹æ¥¡¼¤ò¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤Ë»È¤¤¤Þ¤¹.\n"
+msgid "--socketid <xid>\tOpen Vim inside another GTK widget"
+msgstr "--socketid <xid>\t°Û¤Ê¤ëGTK widget¤ÇVim¤ò³«¤¯"
-#. use msg() to start the scrolling properly
-msgid "Swap files found:"
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ê£¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿:"
+msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout"
+msgstr "--echo-wid\t\t¥¦¥£¥ó¥É¥¦ID¤òɸ½à½ÐÎϤ˽ÐÎϤ¹¤ë"
-msgid " In current directory:\n"
-msgstr " ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê:\n"
+msgid "-P <parent title>\tOpen Vim inside parent application"
+msgstr "-P <¿Æ¤Î¥¿¥¤¥È¥ë>\tVim¤ò¿Æ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÎÃæ¤Çµ¯Æ°¤¹¤ë"
-msgid " Using specified name:\n"
-msgstr " ¤¢¤ë̾Á°¤ò»ÈÍÑÃæ:\n"
+msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
+msgstr "--windowid <HWND>\t°Û¤Ê¤ëWin32 widget¤ÎÆâÉô¤ËVim¤ò³«¤¯"
-msgid " In directory "
-msgstr " ¥Ç¥£¥ì¥¯¥È¥ê "
+msgid "No display"
+msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid " -- none --\n"
-msgstr " -- ¤Ê¤· --\n"
+#. Failed to send, abort.
+msgid ": Send failed.\n"
+msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-msgid " owned by: "
-msgstr " ½êͼÔ: "
+#. Let vim start normally.
+msgid ": Send failed. Trying to execute locally\n"
+msgstr ": Á÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿. ¥í¡¼¥«¥ë¤Ç¤Î¼Â¹Ô¤ò»î¤ß¤Æ¤¤¤Þ¤¹\n"
-msgid " dated: "
-msgstr " ÆüÉÕ: "
+#, c-format
+msgid "%d of %d edited"
+msgstr "%d ¸Ä (%d ¸ÄÃæ) ¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Þ¤·¤¿"
-msgid " dated: "
-msgstr " ÆüÉÕ: "
+msgid "No display: Send expression failed.\n"
+msgstr "¥Ç¥£¥¹¥×¥ì¥¤¤¬¤¢¤ê¤Þ¤»¤ó: ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-msgid " [from Vim version 3.0]"
-msgstr " [from Vim version 3.0]"
+msgid ": Send expression failed.\n"
+msgstr ": ¼°¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n"
-msgid " [does not look like a Vim swap file]"
-msgstr " [Vim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹]"
+msgid "No marks set"
+msgstr "¥Þ¡¼¥¯¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid " file name: "
-msgstr " ¥Õ¥¡¥¤¥ë̾: "
+#, c-format
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: \"%s\" ¤Ë³ºÅö¤¹¤ë¥Þ¡¼¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
+#. Highlight title
msgid ""
"\n"
-" modified: "
+"mark line col file/text"
msgstr ""
"\n"
-" Êѹ¹¾õÂÖ: "
-
-msgid "YES"
-msgstr "¤¢¤ê"
-
-msgid "no"
-msgstr "¤Ê¤·"
+"mark ¹Ô Îó ¥Õ¥¡¥¤¥ë/¥Æ¥¥¹¥È"
+#. Highlight title
msgid ""
"\n"
-" user name: "
+" jump line col file/text"
msgstr ""
"\n"
-" ¥æ¡¼¥¶Ì¾: "
-
-msgid " host name: "
-msgstr " ¥Û¥¹¥È̾: "
+" jump ¹Ô Îó ¥Õ¥¡¥¤¥ë/¥Æ¥¥¹¥È"
+#. Highlight title
msgid ""
"\n"
-" host name: "
+"change line col text"
msgstr ""
"\n"
-" ¥Û¥¹¥È̾: "
+"Êѹ¹ ¹Ô Îó ¥Æ¥¥¹¥È"
msgid ""
"\n"
-" process ID: "
+"# File marks:\n"
msgstr ""
"\n"
-" ¥×¥í¥»¥¹ID: "
-
-msgid " (still running)"
-msgstr " (¤Þ¤À¼Â¹ÔÃæ)"
+"# ¥Õ¥¡¥¤¥ë¥Þ¡¼¥¯:\n"
+#. Write the jumplist with -'
msgid ""
"\n"
-" [not usable with this version of Vim]"
+"# Jumplist (newest first):\n"
msgstr ""
"\n"
-" [¤³¤ÎVim¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó]"
+"# ¥¸¥ã¥ó¥×¥ê¥¹¥È (¿·¤·¤¤¤â¤Î¤¬Àè):\n"
msgid ""
"\n"
-" [not usable on this computer]"
+"# History of marks within files (newest to oldest):\n"
msgstr ""
"\n"
-" [¤³¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó]"
+"# ¥Õ¥¡¥¤¥ëÆâ¥Þ¡¼¥¯¤ÎÍúÎò (¿·¤·¤¤¤â¤Î¤«¤é¸Å¤¤¤â¤Î):\n"
-msgid " [cannot be read]"
-msgstr " [ÆÉ¹þ¤á¤Þ¤»¤ó]"
+msgid "Missing '>'"
+msgstr "'>' ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid " [cannot be opened]"
-msgstr " [³«¤±¤Þ¤»¤ó]"
+msgid "E543: Not a valid codepage"
+msgstr "E543: ̵¸ú¤Ê¥³¡¼¥É¥Ú¡¼¥¸¤Ç¤¹"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¤Î¤Ç°Ý»ý¤Ç¤¤Þ¤»¤ó"
+msgid "E284: Cannot set IC values"
+msgstr "E284: IC¤ÎÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
-msgid "File preserved"
-msgstr "¥Õ¥¡¥¤¥ë¤¬°Ý»ý¤µ¤ì¤Þ¤¹"
+msgid "E285: Failed to create input context"
+msgstr "E285: ¥¤¥ó¥×¥Ã¥È¥³¥ó¥Æ¥¥¹¥È¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E314: Preserve failed"
-msgstr "E314: °Ý»ý¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E286: Failed to open input method"
+msgstr "E286: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#, c-format
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: ̵¸ú¤Êlnum¤Ç¤¹: %ld"
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: ·Ù¹ð: IM¤ÎÇ˲õ¥³¡¼¥ë¥Ð¥Ã¥¯¤òÀßÄê¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-#, c-format
-msgid "E316: ml_get: cannot find line %ld"
-msgstr "E316: ml_get: ¹Ô %ld ¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+msgid "E288: input method doesn't support any style"
+msgstr "E288: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï¤É¤ó¤Ê¥¹¥¿¥¤¥ë¤â¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 3"
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: ¥¤¥ó¥×¥Ã¥È¥á¥½¥Ã¥É¤Ï my preedit type ¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó"
-msgid "stack_idx should be 0"
-msgstr "stack_idx ¤Ï 0 ¤Ç¤¢¤ë¤Ù¤¤Ç¤¹"
+msgid "E293: block was not locked"
+msgstr "E293: ¥Ö¥í¥Ã¥¯¤¬¥í¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: ¹¹¿·¤µ¤ì¤¿¥Ö¥í¥Ã¥¯¤¬Â¿²á¤®¤ë¤«¤â?"
+msgid "E294: Seek error in swap file read"
+msgstr "E294: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ëÆÉ¹þ»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 4"
+msgid "E295: Read error in swap file"
+msgstr "E295: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-msgid "deleted block 1?"
-msgstr "¥Ö¥í¥Ã¥¯ 1 ¤Ï¾Ã¤µ¤ì¤¿?"
+msgid "E296: Seek error in swap file write"
+msgstr "E296: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë½ñ¹þ¤ß»þ¤Ë¥·¡¼¥¯¥¨¥é¡¼¤Ç¤¹"
-#, c-format
-msgid "E320: Cannot find line %ld"
-msgstr "E320: ¹Ô %ld ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "E297: Write error in swap file"
+msgstr "E297: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î½ñ¹þ¤ß¥¨¥é¡¼¤Ç¤¹"
-msgid "E317: pointer block id wrong"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹ (symlink¤Ë¤è¤ë¹¶·â?)"
-msgid "pe_line_count is zero"
-msgstr "pe_line_count ¤¬¥¼¥í¤Ç¤¹"
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-#, c-format
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: ¹ÔÈֹ椬Èϰϳ°¤Ç¤¹: %ld ͤ¨¤Æ¤¤¤Þ¤¹"
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 1 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-#, c-format
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: ¥Ö¥í¥Ã¥¯ %ld ¤Î¹Ô¥«¥¦¥ó¥È¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: ¥Ö¥í¥Ã¥¯ 2 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó?"
-msgid "Stack size increases"
-msgstr "¥¹¥¿¥Ã¥¯¥µ¥¤¥º¤¬Áý¤¨¤Þ¤¹"
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°Å¹æ¤ò¹¹¿·Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 2"
+#. could not (re)open the swap file, what can we do????
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: ¤ª¤Ã¤È, ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¼º¤ï¤ì¤Þ¤·¤¿!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÊѤ¨¤é¤ì¤Þ¤»¤ó"
#, c-format
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: \"%s\" ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬¥ë¡¼¥×¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr "E303: \"%s\" ¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò³«¤±¤Ê¤¤¤Î¤Ç¥ê¥«¥Ð¥ê¤ÏÉÔ²Äǽ¤Ç¤¹"
-msgid "E325: ATTENTION"
-msgstr "E325: Ãí°Õ"
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): ¥Ö¥í¥Ã¥¯ 0 ¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿??"
-msgid ""
-"\n"
-"Found a swap file by the name \""
-msgstr ""
-"\n"
-"¼¡¤Î̾Á°¤Ç¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¸«¤Ä¤±¤Þ¤·¤¿ \""
+#, c-format
+msgid "E305: No swap file found for %s"
+msgstr "E305: %s ¤Ë¤Ï¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "While opening file \""
-msgstr "¼¡¤Î¥Õ¥¡¥¤¥ë¤ò³«¤¤¤Æ¤¤¤ëºÇÃæ \""
+msgid "Enter number of swap file to use (0 to quit): "
+msgstr "»ÈÍѤ¹¤ë¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÈÖ¹æ¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤(0 ¤Ç½ªÎ»): "
-msgid " NEWER than swap file!\n"
-msgstr " ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤è¤ê¤â¿·¤·¤¤¤Ç¤¹!\n"
+#, c-format
+msgid "E306: Cannot open %s"
+msgstr "E306: %s ¤ò³«¤±¤Þ¤»¤ó"
+
+msgid "Unable to read block 0 from "
+msgstr "¥Ö¥í¥Ã¥¯ 0 ¤òÆÉ¹þ¤á¤Þ¤»¤ó "
-#. Some of these messages are long to allow translation to
-#. * other languages.
msgid ""
"\n"
-"(1) Another program may be editing the same file. If this is the case,\n"
-" be careful not to end up with two different instances of the same\n"
-" file when making changes."
+"Maybe no changes were made or Vim did not update the swap file."
msgstr ""
"\n"
-"(1) ÊÌ¤Î¥×¥í¥°¥é¥à¤¬Æ±¤¸¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Æ¤¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó.\n"
-" ¤³¤Î¾ì¹ç¤Ë¤Ï, Êѹ¹¤ò¤·¤¿ºÝ¤ËºÇ½ªÅª¤Ë, Ʊ¤¸¥Õ¥¡¥¤¥ë¤Î°Û¤Ê¤ë\n"
-" 2¤Ä¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤¬¤Ç¤¤Æ¤·¤Þ¤¦¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤."
-
-msgid " Quit, or continue with caution.\n"
-msgstr " ½ªÎ»¤¹¤ë¤«, Ãí°Õ¤·¤Ê¤¬¤é³¤±¤Æ¤¯¤À¤µ¤¤.\n"
-
-msgid "(2) An edit session for this file crashed.\n"
-msgstr "(2) ¤³¤Î¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¥»¥Ã¥·¥ç¥ó¤¬¥¯¥é¥Ã¥·¥å¤·¤¿.\n"
-
-msgid " If this is the case, use \":recover\" or \"vim -r "
-msgstr " ¤³¤Î¾ì¹ç¤Ë¤Ï \":recover\" ¤« \"vim -r "
-
-msgid ""
-"\"\n"
-" to recover the changes (see \":help recovery\").\n"
-msgstr ""
-"\"\n"
-" ¤ò»ÈÍѤ·¤ÆÊѹ¹¤ò¥ê¥«¥Ð¡¼¤·¤Þ¤¹(\":help recover\" ¤ò»²¾È).\n"
-
-msgid " If you did this already, delete the swap file \""
-msgstr " ´û¤Ë¤³¤ì¤ò¹Ô¤Ê¤Ã¤¿¤Î¤Ê¤é¤Ð, ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \""
+"¶²¤é¤¯Êѹ¹¤¬¤µ¤ì¤Æ¤¤¤Ê¤¤¤«Vim¤¬¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¹¹¿·¤·¤Æ¤¤¤Þ¤»¤ó."
-msgid ""
-"\"\n"
-" to avoid this message.\n"
-msgstr ""
-"\"\n"
-" ¤ò¾Ã¤»¤Ð¤³¤Î¥á¥Ã¥»¡¼¥¸¤ò²óÈò¤Ç¤¤Þ¤¹.\n"
+msgid " cannot be used with this version of Vim.\n"
+msgstr " Vim¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó.\n"
-msgid "Swap file \""
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \""
+msgid "Use Vim version 3.0.\n"
+msgstr "Vim¤Î¥Ð¡¼¥¸¥ç¥ó3.0¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤.\n"
-msgid "\" already exists!"
-msgstr "\" ¤¬´û¤Ë¤¢¤ê¤Þ¤¹!"
+#, c-format
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s ¤ÏVim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
-msgid "VIM - ATTENTION"
-msgstr "VIM - Ãí°Õ"
+msgid " cannot be used on this computer.\n"
+msgstr " ¤³¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó.\n"
-msgid "Swap file already exists!"
-msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹!"
+msgid "The file was created on "
+msgstr "¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¼¡¤Î¾ì½ê¤Çºî¤é¤ì¤Þ¤·¤¿ "
msgid ""
-"&Open Read-Only\n"
-"&Edit anyway\n"
-"&Recover\n"
-"&Quit\n"
-"&Abort"
+",\n"
+"or the file has been damaged."
msgstr ""
-"ÆÉ¹þÀìÍѤdz«¤¯(&O)\n"
-"¤È¤Ë¤«¤¯ÊÔ½¸¤¹¤ë(&E)\n"
-"Éü³è¤µ¤»¤ë(&R)\n"
-"½ªÎ»¤¹¤ë(&Q)\n"
-"Ãæ»ß¤¹¤ë(&A)"
+",\n"
+"¤â¤·¤¯¤Ï¥Õ¥¡¥¤¥ë¤¬Â»½ý¤·¤Æ¤¤¤Þ¤¹."
+#, c-format
msgid ""
-"&Open Read-Only\n"
-"&Edit anyway\n"
-"&Recover\n"
-"&Delete it\n"
-"&Quit\n"
-"&Abort"
+"E833: %s is encrypted and this version of Vim does not support encryption"
msgstr ""
-"ÆÉ¹þÀìÍѤdz«¤¯(&O)\n"
-"¤È¤Ë¤«¤¯ÊÔ½¸¤¹¤ë(&E)\n"
-"Éü³è¤µ¤»¤ë(&R)\n"
-"ºï½ü¤¹¤ë(&D)\n"
-"½ªÎ»¤¹¤ë(&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: ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤Î¥Ñ¥¹¤ÎÉôʬ¤¬¥µ¥Ö¥á¥Ë¥å¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+"E833: %s ¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVim¤Ç¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤·Á¼°¤Ç°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: ¥á¥Ë¥å¡¼¤Ï¾¤Î¥â¡¼¥É¤Ë¤À¤±¤¢¤ê¤Þ¤¹"
+msgid " has been damaged (page size is smaller than minimum value).\n"
+msgstr " ¤Ï»½ý¤·¤Æ¤¤¤Þ¤¹ (¥Ú¡¼¥¸¥µ¥¤¥º¤¬ºÇ¾®Ãͤò²¼²ó¤Ã¤Æ¤¤¤Þ¤¹).\n"
#, c-format
-msgid "E329: No menu \"%s\""
-msgstr "E329: \"%s\" ¤È¤¤¤¦¥á¥Ë¥å¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "Using swap file \"%s\""
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \"%s\" ¤ò»ÈÍÑÃæ"
-#. Only a mnemonic or accelerator is not valid.
-msgid "E792: Empty menu name"
-msgstr "E792: ¥á¥Ë¥å¡¼Ì¾¤¬¶õ¤Ç¤¹"
+#, c-format
+msgid "Original file \"%s\""
+msgstr "¸¶ËÜ¥Õ¥¡¥¤¥ë \"%s\""
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤ë¤Ù¤¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E308: Warning: Original file may have been changed"
+msgstr "E308: ·Ù¹ð: ¸¶ËÜ¥Õ¥¡¥¤¥ë¤¬Êѹ¹¤µ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr "E331: ¥á¥Ë¥å¡¼¥Ð¡¼¤Ë¤ÏľÀÜ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÄɲäǤ¤Þ¤»¤ó"
+#, c-format
+msgid "Swap file is encrypted: \"%s\""
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ï°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: \"%s\""
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: ¶èÀÚ¤ê¤Ï¥á¥Ë¥å¡¼¥Ñ¥¹¤Î°ìÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"If you entered a new crypt key but did not write the text file,"
+msgstr ""
+"\n"
+"¿·¤·¤¤°Å¹æ¥¡¼¤òÆþÎϤ·¤¿¤¢¤È¤Ë¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï,"
-#. Now we have found the matching menu, and we list the mappings
-#. Highlight title
msgid ""
"\n"
-"--- Menus ---"
+"enter the new crypt key."
msgstr ""
"\n"
-"--- ¥á¥Ë¥å¡¼ ---"
+"¿·¤·¤¤°Å¹æ¥¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤."
-msgid "Tear off this menu"
-msgstr "¤³¤Î¥á¥Ë¥å¡¼¤òÀÚ¤ê¼è¤ë"
+msgid ""
+"\n"
+"If you wrote the text file after changing the crypt key press enter"
+msgstr ""
+"\n"
+"°Å¹æ¥¡¼¤òÊѤ¨¤¿¤¢¤È¤Ë¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤òÊݸ¤·¤¿¾ì¹ç¤Ï, ¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤È"
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+msgid ""
+"\n"
+"to use the same key for text file and swap file"
+msgstr ""
+"\n"
+"¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ËƱ¤¸°Å¹æ¥¡¼¤ò»È¤¦¤¿¤á¤Ëenter¤À¤±¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤."
#, c-format
-msgid "E334: Menu not found: %s"
-msgstr "E334: ¥á¥Ë¥å¡¼¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: %s ¤«¤é¥Ö¥í¥Ã¥¯ 1 ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
-#, c-format
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: %s ¤Ë¤Ï¥á¥Ë¥å¡¼¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "???MANY LINES MISSING"
+msgstr "???¿¤¯¤Î¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
+msgid "???LINE COUNT WRONG"
+msgstr "???¹Ô¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: ¥á¥Ë¥å¡¼¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó - ¥á¥Ë¥å¡¼Ì¾¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "???EMPTY BLOCK"
+msgstr "???¥Ö¥í¥Ã¥¯¤¬¶õ¤Ç¤¹"
-#, c-format
-msgid "Error detected while processing %s:"
-msgstr "%s ¤Î½èÍýÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿:"
+msgid "???LINES MISSING"
+msgstr "???¹Ô¤¬¼º¤ï¤ì¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "line %4ld:"
-msgstr "¹Ô %4ld:"
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: ¥Ö¥í¥Ã¥¯ 1 ¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹(%s ¤¬.swp¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤?)"
-#, c-format
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾: '%s'"
+msgid "???BLOCK MISSING"
+msgstr "???¥Ö¥í¥Ã¥¯¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
-msgstr "ÆüËܸì¥á¥Ã¥»¡¼¥¸ËÝÌõ/´Æ½¤: ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>"
+msgid "??? from here until ???END lines may be messed up"
+msgstr "??? ¤³¤³¤«¤é ???END ¤Þ¤Ç¤Î¹Ô¤¬Ç˲õ¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
-msgid "Interrupt: "
-msgstr "³ä¹þ¤ß: "
+msgid "??? from here until ???END lines may have been inserted/deleted"
+msgstr "??? ¤³¤³¤«¤é ???END ¤Þ¤Ç¤Î¹Ô¤¬ÁÞÆþ¤«ºï½ü¤µ¤ì¤¿¤è¤¦¤Ç¤¹"
-msgid "Press ENTER or type command to continue"
-msgstr "³¤±¤ë¤Ë¤ÏENTER¤ò²¡¤¹¤«¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"
+msgid "???END"
+msgstr "???END"
-#, c-format
-msgid "%s line %ld"
-msgstr "%s ¹Ô %ld"
+msgid "E311: Recovery Interrupted"
+msgstr "E311: ¥ê¥«¥Ð¥ê¤¬³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
-msgid "-- More --"
-msgstr "-- ·Ñ³ --"
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: ¥ê¥«¥Ð¥ê¤ÎºÇÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿; ???¤Ç»Ï¤Þ¤ë¹Ô¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
-msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "
-msgstr " SPACE/d/j: ²èÌÌ/¥Ú¡¼¥¸/¹Ô ²¼, b/uk: ¾å, q: ½ªÎ» "
+msgid "See \":help E312\" for more information."
+msgstr "¾ÜºÙ¤Ï \":help E312\" ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤"
-msgid "Question"
-msgstr "¼ÁÌä"
+msgid "Recovery completed. You should check if everything is OK."
+msgstr "¥ê¥«¥Ð¥ê¤¬½ªÎ»¤·¤Þ¤·¤¿. Á´¤Æ¤¬Àµ¤·¤¤¤«¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤."
msgid ""
-"&Yes\n"
-"&No"
+"\n"
+"(You might want to write out this file under another name\n"
msgstr ""
-"¤Ï¤¤(&Y)\n"
-"¤¤¤¤¤¨(&N)"
+"\n"
+"(Êѹ¹¤ò¥Á¥§¥Ã¥¯¤¹¤ë¤¿¤á¤Ë, ¤³¤Î¥Õ¥¡¥¤¥ë¤òÊ̤Î̾Á°¤ÇÊݸ¤·¤¿¾å¤Ç\n"
+
+msgid "and run diff with the original file to check for changes)"
+msgstr "¸¶ËÜ¥Õ¥¡¥¤¥ë¤È¤Î diff ¤ò¼Â¹Ô¤¹¤ë¤ÈÎɤ¤¤Ç¤·¤ç¤¦)"
+
+msgid "Recovery completed. Buffer contents equals file contents."
+msgstr "Éü¸µ´°Î». ¥Ð¥Ã¥Õ¥¡¤ÎÆâÍÆ¤Ï¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤Ë¤Ê¤ê¤Þ¤·¤¿."
msgid ""
-"&Yes\n"
-"&No\n"
-"Save &All\n"
-"&Discard All\n"
-"&Cancel"
+"\n"
+"You may want to delete the .swp file now.\n"
+"\n"
msgstr ""
-"¤Ï¤¤(&Y)\n"
-"¤¤¤¤¤¨(&N)\n"
-"Á´¤ÆÊݸ(&A)\n"
-"Á´¤ÆÊü´þ(&D)\n"
-"¥¥ã¥ó¥»¥ë(&C)"
+"\n"
+"¤½¤ì¤«¤é.swp¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤¯¤À¤µ¤¤\n"
+"\n"
-msgid "Select Directory dialog"
-msgstr "¥Ç¥£¥ì¥¯¥È¥êÁªÂò¥À¥¤¥¢¥í¥°"
+msgid "Using crypt key from swap file for the text file.\n"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤«¤é¼èÆÀ¤·¤¿°Å¹æ¥¡¼¤ò¥Æ¥¥¹¥È¥Õ¥¡¥¤¥ë¤Ë»È¤¤¤Þ¤¹.\n"
-msgid "Save File dialog"
-msgstr "¥Õ¥¡¥¤¥ëÊݸ¥À¥¤¥¢¥í¥°"
+#. use msg() to start the scrolling properly
+msgid "Swap files found:"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ê£¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿:"
-msgid "Open File dialog"
-msgstr "¥Õ¥¡¥¤¥ëÆÉ¹þ¥À¥¤¥¢¥í¥°"
+msgid " In current directory:\n"
+msgstr " ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê:\n"
-#. TODO: non-GUI file selector here
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: ¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤Ç¤Ï¥Õ¥¡¥¤¥ë¥Ö¥é¥¦¥¶¤ò»È¤¨¤Þ¤»¤ó, ¤´¤á¤ó¤Ê¤µ¤¤"
+msgid " Using specified name:\n"
+msgstr " ¤¢¤ë̾Á°¤ò»ÈÍÑÃæ:\n"
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: printf() ¤Î°ú¿ô¤¬ÉÔ½½Ê¬¤Ç¤¹"
+msgid " In directory "
+msgstr " ¥Ç¥£¥ì¥¯¥È¥ê "
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: printf() ¤Î°ú¿ô¤Ë¤ÏÉâÆ°¾¯¿ô¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
+msgid " -- none --\n"
+msgstr " -- ¤Ê¤· --\n"
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: pirntf() ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
+msgid " owned by: "
+msgstr " ½êͼÔ: "
-msgid "W10: Warning: Changing a readonly file"
-msgstr "W10: ·Ù¹ð: ÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤·¤Þ¤¹"
+msgid " dated: "
+msgstr " ÆüÉÕ: "
-msgid "Type number and <Enter> or click with mouse (empty cancels): "
-msgstr ""
-"ÈÖ¹æ¤È<Enter>¤òÆþÎϤ¹¤ë¤«¥Þ¥¦¥¹¤Ç¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
+msgid " dated: "
+msgstr " ÆüÉÕ: "
-msgid "Type number and <Enter> (empty cancels): "
-msgstr "ÈÖ¹æ¤È<Enter>¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
+msgid " [from Vim version 3.0]"
+msgstr " [from Vim version 3.0]"
-msgid "1 more line"
-msgstr "1 ¹Ô Äɲä·¤Þ¤·¤¿"
+msgid " [does not look like a Vim swap file]"
+msgstr " [Vim¤Î¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹]"
-msgid "1 line less"
-msgstr "1 ¹Ô ºï½ü¤·¤Þ¤·¤¿"
+msgid " file name: "
+msgstr " ¥Õ¥¡¥¤¥ë̾: "
-#, c-format
-msgid "%ld more lines"
-msgstr "%ld ¹Ô Äɲä·¤Þ¤·¤¿"
+msgid ""
+"\n"
+" modified: "
+msgstr ""
+"\n"
+" Êѹ¹¾õÂÖ: "
-#, c-format
-msgid "%ld fewer lines"
-msgstr "%ld ¹Ô ºï½ü¤·¤Þ¤·¤¿"
+msgid "YES"
+msgstr "¤¢¤ê"
-msgid " (Interrupted)"
-msgstr " (³ä¹þ¤Þ¤ì¤Þ¤·¤¿)"
+msgid "no"
+msgstr "¤Ê¤·"
-msgid "Beep!"
-msgstr "¥Ó¡¼¥Ã!"
+msgid ""
+"\n"
+" user name: "
+msgstr ""
+"\n"
+" ¥æ¡¼¥¶Ì¾: "
-msgid "Vim: preserving files...\n"
-msgstr "Vim: ¥Õ¥¡¥¤¥ë¤òÊÝÂ¸Ãæ...\n"
+msgid " host name: "
+msgstr " ¥Û¥¹¥È̾: "
-#. close all memfiles, without deleting
-msgid "Vim: Finished.\n"
-msgstr "Vim: ½ªÎ»¤·¤Þ¤·¤¿.\n"
+msgid ""
+"\n"
+" host name: "
+msgstr ""
+"\n"
+" ¥Û¥¹¥È̾: "
-msgid "ERROR: "
-msgstr "¥¨¥é¡¼: "
+msgid ""
+"\n"
+" process ID: "
+msgstr ""
+"\n"
+" ¥×¥í¥»¥¹ID: "
+
+msgid " (still running)"
+msgstr " (¤Þ¤À¼Â¹ÔÃæ)"
-#, c-format
msgid ""
"\n"
-"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
+" [not usable with this version of Vim]"
msgstr ""
"\n"
-"[¥á¥â¥ê(¥Ð¥¤¥È)] Áí³äÅö-²òÊüÎÌ %lu-%lu, »ÈÍÑÎÌ %lu, ¥Ô¡¼¥¯»þ %lu\n"
+" [¤³¤ÎVim¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó]"
-#, c-format
msgid ""
-"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
"\n"
+" [not usable on this computer]"
msgstr ""
-"[¸Æ½Ð] Áí re/malloc() ²ó¿ô %lu, Áí free() ²ó¿ô %lu\n"
"\n"
+" [¤³¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ç¤Ï»ÈÍѤǤ¤Þ¤»¤ó]"
-msgid "E340: Line is becoming too long"
-msgstr "E340: ¹Ô¤¬Ä¹¤¯¤Ê¤ê²á¤®¤Þ¤·¤¿"
+msgid " [cannot be read]"
+msgstr " [ÆÉ¹þ¤á¤Þ¤»¤ó]"
-#, c-format
-msgid "E341: Internal error: lalloc(%ld, )"
-msgstr "E341: ÆâÉô¥¨¥é¡¼: lalloc(%ld,)"
+msgid " [cannot be opened]"
+msgstr " [³«¤±¤Þ¤»¤ó]"
-#, c-format
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: ¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó! (%lu ¥Ð¥¤¥È¤ò³äÅöÍ×µá)"
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¤Î¤Ç°Ý»ý¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "Calling shell to execute: \"%s\""
-msgstr "¼Â¹Ô¤Î¤¿¤á¤Ë¥·¥§¥ë¤ò¸Æ½Ð¤·Ãæ: \"%s\""
+msgid "File preserved"
+msgstr "¥Õ¥¡¥¤¥ë¤¬°Ý»ý¤µ¤ì¤Þ¤¹"
-msgid "E545: Missing colon"
-msgstr "E545: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E314: Preserve failed"
+msgstr "E314: °Ý»ý¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E546: Illegal mode"
-msgstr "E546: ÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹"
+#, c-format
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: ̵¸ú¤Êlnum¤Ç¤¹: %ld"
-msgid "E547: Illegal mouseshape"
-msgstr "E547: ÉÔÀµ¤Ê 'mouseshape' ¤Ç¤¹"
+#, c-format
+msgid "E316: ml_get: cannot find line %ld"
+msgstr "E316: ml_get: ¹Ô %ld ¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid "E548: digit expected"
-msgstr "E548: ¿ôÃͤ¬É¬ÍפǤ¹"
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 3"
-msgid "E549: Illegal percentage"
-msgstr "E549: ÉÔÀµ¤Ê¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸¤Ç¤¹"
+msgid "stack_idx should be 0"
+msgstr "stack_idx ¤Ï 0 ¤Ç¤¢¤ë¤Ù¤¤Ç¤¹"
-msgid "Enter encryption key: "
-msgstr "°Å¹æ²½ÍѤΥ¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
+msgid "E318: Updated too many blocks?"
+msgstr "E318: ¹¹¿·¤µ¤ì¤¿¥Ö¥í¥Ã¥¯¤¬Â¿²á¤®¤ë¤«¤â?"
-msgid "Enter same key again: "
-msgstr "¤â¤¦°ìÅÙÆ±¤¸¥¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 4"
-msgid "Keys don't match!"
-msgstr "¥¡¼¤¬°ìÃפ·¤Þ¤»¤ó"
+msgid "deleted block 1?"
+msgstr "¥Ö¥í¥Ã¥¯ 1 ¤Ï¾Ã¤µ¤ì¤¿?"
#, c-format
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: ̵¸ú¤Ê¥Ñ¥¹¤Ç¤¹: '**[¿ôÃÍ]' ¤Ïpath¤ÎºÇ¸å¤« '%s' ¤¬Â³¤¤¤Æ¤Ê¤¤¤È¤¤¤±¤Þ¤»"
-"¤ó."
+msgid "E320: Cannot find line %ld"
+msgstr "E320: ¹Ô %ld ¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E317: pointer block id wrong"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "pe_line_count is zero"
+msgstr "pe_line_count ¤¬¥¼¥í¤Ç¤¹"
#, c-format
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: ¹ÔÈֹ椬Èϰϳ°¤Ç¤¹: %ld ͤ¨¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: ¥Ñ¥¹¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: ¥Ö¥í¥Ã¥¯ %ld ¤Î¹Ô¥«¥¦¥ó¥È¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-msgid "Cannot connect to Netbeans #2"
-msgstr "Netbeans #2 ¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
+msgid "Stack size increases"
+msgstr "¥¹¥¿¥Ã¥¯¥µ¥¤¥º¤¬Áý¤¨¤Þ¤¹"
-msgid "Cannot connect to Netbeans"
-msgstr "Netbeans ¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: ¥Ý¥¤¥ó¥¿¥Ö¥í¥Ã¥¯¤ÎID¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ 2"
#, c-format
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: NetBeans¤ÎÀܳ¾ðÊó¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¥â¡¼¥É¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹: \"%s\""
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: \"%s\" ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬¥ë¡¼¥×¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-msgid "read from Netbeans socket"
-msgstr "Netbeans ¤Î¥½¥±¥Ã¥È¤òÆÉ¹þ¤ß"
+msgid "E325: ATTENTION"
+msgstr "E325: Ãí°Õ"
-#, c-format
-msgid "E658: NetBeans connection lost for buffer %ld"
-msgstr "E658: ¥Ð¥Ã¥Õ¥¡ %ld ¤Î NetBeans Àܳ¤¬¼º¤ï¤ì¤Þ¤·¤¿"
+msgid ""
+"\n"
+"Found a swap file by the name \""
+msgstr ""
+"\n"
+"¼¡¤Î̾Á°¤Ç¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤ò¸«¤Ä¤±¤Þ¤·¤¿ \""
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: NetBeans¤Ï¤³¤ÎGUI¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
+msgid "While opening file \""
+msgstr "¼¡¤Î¥Õ¥¡¥¤¥ë¤ò³«¤¤¤Æ¤¤¤ëºÇÃæ \""
-msgid "E511: netbeans already connected"
-msgstr "E511: NetBeans¤Ï´û¤ËÀܳ¤·¤Æ¤¤¤Þ¤¹"
+msgid " NEWER than swap file!\n"
+msgstr " ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤è¤ê¤â¿·¤·¤¤¤Ç¤¹!\n"
-msgid "E505: "
-msgstr "E505: "
+#. Some of these messages are long to allow translation to
+#. * other languages.
+msgid ""
+"\n"
+"(1) Another program may be editing the same file. If this is the case,\n"
+" be careful not to end up with two different instances of the same\n"
+" file when making changes."
+msgstr ""
+"\n"
+"(1) ÊÌ¤Î¥×¥í¥°¥é¥à¤¬Æ±¤¸¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¤Æ¤¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó.\n"
+" ¤³¤Î¾ì¹ç¤Ë¤Ï, Êѹ¹¤ò¤·¤¿ºÝ¤ËºÇ½ªÅª¤Ë, Ʊ¤¸¥Õ¥¡¥¤¥ë¤Î°Û¤Ê¤ë\n"
+" 2¤Ä¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤¬¤Ç¤¤Æ¤·¤Þ¤¦¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤."
-msgid "E349: No identifier under cursor"
-msgstr "E349: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤϼ±Ê̻Ҥ¬¤¢¤ê¤Þ¤»¤ó"
+msgid " Quit, or continue with caution.\n"
+msgstr " ½ªÎ»¤¹¤ë¤«, Ãí°Õ¤·¤Ê¤¬¤é³¤±¤Æ¤¯¤À¤µ¤¤.\n"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: 'operatorfunc' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
+msgid "(2) An edit session for this file crashed.\n"
+msgstr "(2) ¤³¤Î¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¥»¥Ã¥·¥ç¥ó¤¬¥¯¥é¥Ã¥·¥å¤·¤¿.\n"
-msgid "E775: Eval feature not available"
-msgstr "E775: ¼°É¾²Áµ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-
-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 " If this is the case, use \":recover\" or \"vim -r "
+msgstr " ¤³¤Î¾ì¹ç¤Ë¤Ï \":recover\" ¤« \"vim -r "
-msgid "Type :quit<Enter> to exit Vim"
-msgstr "Vim¤ò½ªÎ»¤¹¤ë¤Ë¤Ï :quit<Enter> ¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"
+msgid ""
+"\"\n"
+" to recover the changes (see \":help recovery\").\n"
+msgstr ""
+"\"\n"
+" ¤ò»ÈÍѤ·¤ÆÊѹ¹¤ò¥ê¥«¥Ð¡¼¤·¤Þ¤¹(\":help recovery\" ¤ò»²¾È).\n"
-#, c-format
-msgid "1 line %sed 1 time"
-msgstr "1 ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
+msgid " If you did this already, delete the swap file \""
+msgstr " ´û¤Ë¤³¤ì¤ò¹Ô¤Ê¤Ã¤¿¤Î¤Ê¤é¤Ð, ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \""
-#, c-format
-msgid "1 line %sed %d times"
-msgstr "1 ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
+msgid ""
+"\"\n"
+" to avoid this message.\n"
+msgstr ""
+"\"\n"
+" ¤ò¾Ã¤»¤Ð¤³¤Î¥á¥Ã¥»¡¼¥¸¤ò²óÈò¤Ç¤¤Þ¤¹.\n"
-#, c-format
-msgid "%ld lines %sed 1 time"
-msgstr "%ld ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
+msgid "Swap file \""
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë \""
-#, c-format
-msgid "%ld lines %sed %d times"
-msgstr "%ld ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
+msgid "\" already exists!"
+msgstr "\" ¤¬´û¤Ë¤¢¤ê¤Þ¤¹!"
-#, c-format
-msgid "%ld lines to indent... "
-msgstr "%ld ¹Ô¤¬¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤Þ¤¹... "
+msgid "VIM - ATTENTION"
+msgstr "VIM - Ãí°Õ"
-msgid "1 line indented "
-msgstr "1 ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿"
+msgid "Swap file already exists!"
+msgstr "¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬´û¤Ë¸ºß¤·¤Þ¤¹!"
-#, c-format
-msgid "%ld lines indented "
-msgstr "%ld ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿"
+msgid ""
+"&Open Read-Only\n"
+"&Edit anyway\n"
+"&Recover\n"
+"&Quit\n"
+"&Abort"
+msgstr ""
+"ÆÉ¹þÀìÍѤdz«¤¯(&O)\n"
+"¤È¤Ë¤«¤¯ÊÔ½¸¤¹¤ë(&E)\n"
+"Éü³è¤µ¤»¤ë(&R)\n"
+"½ªÎ»¤¹¤ë(&Q)\n"
+"Ãæ»ß¤¹¤ë(&A)"
-msgid "E748: No previously used register"
-msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"&Open Read-Only\n"
+"&Edit anyway\n"
+"&Recover\n"
+"&Delete it\n"
+"&Quit\n"
+"&Abort"
+msgstr ""
+"ÆÉ¹þÀìÍѤdz«¤¯(&O)\n"
+"¤È¤Ë¤«¤¯ÊÔ½¸¤¹¤ë(&E)\n"
+"Éü³è¤µ¤»¤ë(&R)\n"
+"ºï½ü¤¹¤ë(&D)\n"
+"½ªÎ»¤¹¤ë(&Q)\n"
+"Ãæ»ß¤¹¤ë(&A)"
-#. must display the prompt
-msgid "cannot yank; delete anyway"
-msgstr "¥ä¥ó¥¯¤Ç¤¤Þ¤»¤ó; ¤È¤Ë¤«¤¯¾Ãµî"
+msgid "E326: Too many swap files found"
+msgstr "E326: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤¬Â¿¿ô¸«¤Ä¤«¤ê¤Þ¤·¤¿"
-msgid "1 line changed"
-msgstr "1 ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr "E327: ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤Î¥Ñ¥¹¤ÎÉôʬ¤¬¥µ¥Ö¥á¥Ë¥å¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "%ld lines changed"
-msgstr "%ld ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: ¥á¥Ë¥å¡¼¤Ï¾¤Î¥â¡¼¥É¤Ë¤À¤±¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "freeing %ld lines"
-msgstr "%ld ¹Ô¤ò³«ÊüÃæ"
-
-msgid "block of 1 line yanked"
-msgstr "1 ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
+msgid "E329: No menu \"%s\""
+msgstr "E329: \"%s\" ¤È¤¤¤¦¥á¥Ë¥å¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid "1 line yanked"
-msgstr "1 ¹Ô¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
+#. Only a mnemonic or accelerator is not valid.
+msgid "E792: Empty menu name"
+msgstr "E792: ¥á¥Ë¥å¡¼Ì¾¤¬¶õ¤Ç¤¹"
-#, c-format
-msgid "block of %ld lines yanked"
-msgstr "%ld ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤ë¤Ù¤¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "%ld lines yanked"
-msgstr "%ld ¹Ô¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr "E331: ¥á¥Ë¥å¡¼¥Ð¡¼¤Ë¤ÏľÀÜ¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÄɲäǤ¤Þ¤»¤ó"
-#, c-format
-msgid "E353: Nothing in register %s"
-msgstr "E353: ¥ì¥¸¥¹¥¿ %s ¤Ë¤Ï²¿¤â¤¢¤ê¤Þ¤»¤ó"
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: ¶èÀÚ¤ê¤Ï¥á¥Ë¥å¡¼¥Ñ¥¹¤Î°ìÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
+#. Now we have found the matching menu, and we list the mappings
#. Highlight title
msgid ""
"\n"
-"--- Registers ---"
+"--- Menus ---"
msgstr ""
"\n"
-"--- ¥ì¥¸¥¹¥¿ ---"
+"--- ¥á¥Ë¥å¡¼ ---"
-msgid "Illegal register name"
-msgstr "ÉÔÀµ¤Ê¥ì¥¸¥¹¥¿Ì¾"
+msgid "Tear off this menu"
+msgstr "¤³¤Î¥á¥Ë¥å¡¼¤òÀÚ¤ê¼è¤ë"
-msgid ""
-"\n"
-"# Registers:\n"
-msgstr ""
-"\n"
-"# ¥ì¥¸¥¹¥¿:\n"
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥á¥Ë¥å¡¼¥¢¥¤¥Æ¥à¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
#, c-format
-msgid "E574: Unknown register type %d"
-msgstr "E574: ̤ÃΤΥ쥸¥¹¥¿·¿ %d ¤Ç¤¹"
+msgid "E334: Menu not found: %s"
+msgstr "E334: ¥á¥Ë¥å¡¼¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
#, c-format
-msgid "%ld Cols; "
-msgstr "%ld Îó; "
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: %s ¤Ë¤Ï¥á¥Ë¥å¡¼¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid "Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"
-msgstr "ÁªÂò %s%ld / %ld ¹Ô; %ld / %ld ñ¸ì; %ld / %ld ¥Ð¥¤¥È"
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: ¥á¥Ë¥å¡¼¥Ñ¥¹¤Ï¥µ¥Ö¥á¥Ë¥å¡¼¤òÀ¸¤¸¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó"
-#, c-format
-msgid ""
-"Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld "
-"Bytes"
-msgstr "ÁªÂò %s%ld / %ld ¹Ô; %ld / %ld ñ¸ì; %ld / %ld ʸ»ú; %ld / %ld ¥Ð¥¤¥È"
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: ¥á¥Ë¥å¡¼¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó - ¥á¥Ë¥å¡¼Ì¾¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤"
#, c-format
-msgid "Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"
-msgstr "Îó %s / %s; ¹Ô %ld of %ld; ñ¸ì %ld / %ld; ¥Ð¥¤¥È %ld / %ld"
+msgid "Error detected while processing %s:"
+msgstr "%s ¤Î½èÍýÃæ¤Ë¥¨¥é¡¼¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿:"
#, c-format
-msgid ""
-"Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of "
-"%ld"
-msgstr ""
-"Îó %s / %s; ¹Ô %ld / %ld; ñ¸ì %ld / %ld; ʸ»ú %ld / %ld; ¥Ð¥¤¥È %ld of %ld"
+msgid "line %4ld:"
+msgstr "¹Ô %4ld:"
#, c-format
-msgid "(+%ld for BOM)"
-msgstr "(+%ld for BOM)"
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: ̵¸ú¤Ê¥ì¥¸¥¹¥¿Ì¾: '%s'"
-msgid "%<%f%h%m%=Page %N"
-msgstr "%<%f%h%m%=%N ¥Ú¡¼¥¸"
+msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgstr "ÆüËܸì¥á¥Ã¥»¡¼¥¸ËÝÌõ/´Æ½¤: ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>"
-msgid "Thanks for flying Vim"
-msgstr "Vim ¤ò»È¤Ã¤Æ¤¯¤ì¤Æ¤¢¤ê¤¬¤È¤¦"
+msgid "Interrupt: "
+msgstr "³ä¹þ¤ß: "
-msgid "E518: Unknown option"
-msgstr "E518: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
+msgid "Press ENTER or type command to continue"
+msgstr "³¤±¤ë¤Ë¤ÏENTER¤ò²¡¤¹¤«¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"
-msgid "E519: Option not supported"
-msgstr "E519: ¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+#, c-format
+msgid "%s line %ld"
+msgstr "%s ¹Ô %ld"
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+msgid "-- More --"
+msgstr "-- ·Ñ³ --"
-msgid "E846: Key code not set"
-msgstr "E846: ¥¡¼¥³¡¼¥É¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "
+msgstr " SPACE/d/j: ²èÌÌ/¥Ú¡¼¥¸/¹Ô ²¼, b/u/k: ¾å, q: ½ªÎ» "
-msgid "E521: Number required after ="
-msgstr "E521: = ¤Î¸å¤Ë¤Ï¿ô»ú¤¬É¬ÍפǤ¹"
+msgid "Question"
+msgstr "¼ÁÌä"
-msgid "E522: Not found in termcap"
-msgstr "E522: termcap Æâ¤Ë¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid ""
+"&Yes\n"
+"&No"
+msgstr ""
+"¤Ï¤¤(&Y)\n"
+"¤¤¤¤¤¨(&N)"
-#, c-format
-msgid "E539: Illegal character <%s>"
-msgstr "E539: ÉÔÀµ¤Êʸ»ú¤Ç¤¹ <%s>"
+msgid ""
+"&Yes\n"
+"&No\n"
+"Save &All\n"
+"&Discard All\n"
+"&Cancel"
+msgstr ""
+"¤Ï¤¤(&Y)\n"
+"¤¤¤¤¤¨(&N)\n"
+"Á´¤ÆÊݸ(&A)\n"
+"Á´¤ÆÊü´þ(&D)\n"
+"¥¥ã¥ó¥»¥ë(&C)"
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: 'term' ¤Ë¤Ï¶õʸ»úÎó¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
+msgid "Select Directory dialog"
+msgstr "¥Ç¥£¥ì¥¯¥È¥êÁªÂò¥À¥¤¥¢¥í¥°"
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: GUI¤Ç¤Ï 'term' ¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
+msgid "Save File dialog"
+msgstr "¥Õ¥¡¥¤¥ëÊݸ¥À¥¤¥¢¥í¥°"
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: GUI¤ò¥¹¥¿¡¼¥È¤¹¤ë¤Ë¤Ï \":gui\" ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
+msgid "Open File dialog"
+msgstr "¥Õ¥¡¥¤¥ëÆÉ¹þ¥À¥¤¥¢¥í¥°"
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' ¤È 'patchmode' ¤¬Æ±¤¸¤Ç¤¹"
+#. TODO: non-GUI file selector here
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: ¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤Ç¤Ï¥Õ¥¡¥¤¥ë¥Ö¥é¥¦¥¶¤ò»È¤¨¤Þ¤»¤ó, ¤´¤á¤ó¤Ê¤µ¤¤"
-msgid "E834: Conflicts with value of 'listchars'"
-msgstr "E834: 'listchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: printf() ¤Î°ú¿ô¤¬ÉÔ½½Ê¬¤Ç¤¹"
-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¤Ç¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
-
-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 "E807: Expected Float argument for printf()"
+msgstr "E807: printf() ¤Î°ú¿ô¤Ë¤ÏÉâÆ°¾¯¿ôÅÀ¿ô¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "E595: contains unprintable or wide character"
-msgstr "E595: ɽ¼¨¤Ç¤¤Ê¤¤Ê¸»ú¤«¥ï¥¤¥Éʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
+msgid "E767: Too many arguments to printf()"
+msgstr "E767: printf() ¤Î°ú¿ô¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E596: Invalid font(s)"
-msgstr "E596: ̵¸ú¤Ê¥Õ¥©¥ó¥È¤Ç¤¹"
+msgid "W10: Warning: Changing a readonly file"
+msgstr "W10: ·Ù¹ð: ÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤·¤Þ¤¹"
-msgid "E597: can't select fontset"
-msgstr "E597: ¥Õ¥©¥ó¥È¥»¥Ã¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
+msgid "Type number and <Enter> or click with mouse (empty cancels): "
+msgstr ""
+"ÈÖ¹æ¤È<Enter>¤òÆþÎϤ¹¤ë¤«¥Þ¥¦¥¹¤Ç¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
-msgid "E598: Invalid fontset"
-msgstr "E598: ̵¸ú¤Ê¥Õ¥©¥ó¥È¥»¥Ã¥È¤Ç¤¹"
+msgid "Type number and <Enter> (empty cancels): "
+msgstr "ÈÖ¹æ¤È<Enter>¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): "
-msgid "E533: can't select wide font"
-msgstr "E533: ¥ï¥¤¥É¥Õ¥©¥ó¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
+msgid "1 more line"
+msgstr "1 ¹Ô Äɲä·¤Þ¤·¤¿"
-msgid "E534: Invalid wide font"
-msgstr "E534: ̵¸ú¤Ê¥ï¥¤¥É¥Õ¥©¥ó¥È¤Ç¤¹"
+msgid "1 line less"
+msgstr "1 ¹Ô ºï½ü¤·¤Þ¤·¤¿"
#, c-format
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: <%c> ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-
-msgid "E536: comma required"
-msgstr "E536: ¥«¥ó¥Þ¤¬É¬ÍפǤ¹"
+msgid "%ld more lines"
+msgstr "%ld ¹Ô Äɲä·¤Þ¤·¤¿"
#, c-format
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' ¤Ï¶õ¤Ç¤¢¤ë¤« %s ¤ò´Þ¤àɬÍפ¬¤¢¤ê¤Þ¤¹"
-
-msgid "E538: No mouse support"
-msgstr "E538: ¥Þ¥¦¥¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
-
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: ¼°¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó"
-
-msgid "E541: too many items"
-msgstr "E541: Í×ÁǤ¬Â¿²á¤®¤Þ¤¹"
-
-msgid "E542: unbalanced groups"
-msgstr "E542: ¥°¥ë¡¼¥×¤¬Äà¹ç¤¤¤Þ¤»¤ó"
+msgid "%ld fewer lines"
+msgstr "%ld ¹Ô ºï½ü¤·¤Þ¤·¤¿"
-msgid "E590: A preview window already exists"
-msgstr "E590: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬´û¤Ë¸ºß¤·¤Þ¤¹"
+msgid " (Interrupted)"
+msgstr " (³ä¹þ¤Þ¤ì¤Þ¤·¤¿)"
-msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
-msgstr ""
-"W17: ¥¢¥é¥Ó¥¢Ê¸»ú¤Ë¤ÏUTF-8¤¬É¬ÍפʤΤÇ, ':set encoding=utf-8' ¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "Beep!"
+msgstr "¥Ó¡¼¥Ã!"
-#, c-format
-msgid "E593: Need at least %d lines"
-msgstr "E593: ºÇÄã %d ¤Î¹Ô¿ô¤¬É¬ÍפǤ¹"
+msgid "Vim: preserving files...\n"
+msgstr "Vim: ¥Õ¥¡¥¤¥ë¤òÊÝÂ¸Ãæ...\n"
-#, c-format
-msgid "E594: Need at least %d columns"
-msgstr "E594: ºÇÄã %d ¤Î¥«¥é¥àÉý¤¬É¬ÍפǤ¹"
+#. close all memfiles, without deleting
+msgid "Vim: Finished.\n"
+msgstr "Vim: ½ªÎ»¤·¤Þ¤·¤¿.\n"
-#, c-format
-msgid "E355: Unknown option: %s"
-msgstr "E355: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
+msgid "ERROR: "
+msgstr "¥¨¥é¡¼: "
-#. There's another character after zeros or the string
-#. * is empty. In both cases, we are trying to set a
-#. * num option using a string.
#, c-format
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: ¿ô»ú¤¬É¬ÍפǤ¹: &%s = '%s'"
-
-msgid ""
-"\n"
-"--- Terminal codes ---"
-msgstr ""
-"\n"
-"--- üËö¥³¡¼¥É ---"
-
-msgid ""
-"\n"
-"--- Global option values ---"
-msgstr ""
-"\n"
-"--- ¥°¥í¡¼¥Ð¥ë¥ª¥×¥·¥ç¥óÃÍ ---"
-
msgid ""
"\n"
-"--- Local option values ---"
+"[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"
-"--- Options ---"
msgstr ""
+"[¸Æ½Ð] Áí re/malloc() ²ó¿ô %lu, Áí free() ²ó¿ô %lu\n"
"\n"
-"--- ¥ª¥×¥·¥ç¥ó ---"
-
-msgid "E356: get_varp ERROR"
-msgstr "E356: get_varp ¥¨¥é¡¼"
-#, c-format
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': %s ¤ËÂбþ¤¹¤ëʸ»ú¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E340: Line is becoming too long"
+msgstr "E340: ¹Ô¤¬Ä¹¤¯¤Ê¤ê²á¤®¤Þ¤·¤¿"
#, c-format
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': ¥»¥ß¥³¥í¥ó¤Î¸å¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
-
-msgid "cannot open "
-msgstr "³«¤±¤Þ¤»¤ó "
-
-msgid "VIM: Can't open window!\n"
-msgstr "VIM: ¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó!\n"
-
-msgid "Need Amigados version 2.04 or later\n"
-msgstr "Amigados¤Î¥Ð¡¼¥¸¥ç¥ó 2.04¤«¤½¤ì°Ê¹ß¤¬É¬ÍפǤ¹\n"
+msgid "E341: Internal error: lalloc(%ld, )"
+msgstr "E341: ÆâÉô¥¨¥é¡¼: lalloc(%ld,)"
#, c-format
-msgid "Need %s version %ld\n"
-msgstr "%s ¤Î¥Ð¡¼¥¸¥ç¥ó %ld ¤¬É¬ÍפǤ¹\n"
-
-msgid "Cannot open NIL:\n"
-msgstr "NIL¤ò³«¤±¤Þ¤»¤ó:\n"
-
-msgid "Cannot create "
-msgstr "ºîÀ®¤Ç¤¤Þ¤»¤ó "
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: ¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó! (%lu ¥Ð¥¤¥È¤ò³äÅöÍ×µá)"
#, c-format
-msgid "Vim exiting with %d\n"
-msgstr "Vim¤Ï %d ¤Ç½ªÎ»¤·¤Þ¤¹\n"
-
-msgid "cannot change console mode ?!\n"
-msgstr "¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤òÊѹ¹¤Ç¤¤Þ¤»¤ó?!\n"
-
-msgid "mch_get_shellsize: not a console??\n"
-msgstr "mch_get_shellsize: ¥³¥ó¥½¡¼¥ë¤Ç¤Ï¤Ê¤¤??\n"
+msgid "Calling shell to execute: \"%s\""
+msgstr "¼Â¹Ô¤Î¤¿¤á¤Ë¥·¥§¥ë¤ò¸Æ½Ð¤·Ãæ: \"%s\""
-#. if Vim opened a window: Executing a shell may cause crashes
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: -f ¥ª¥×¥·¥ç¥ó¤Ç¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
+msgid "E545: Missing colon"
+msgstr "E545: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "Cannot execute "
-msgstr "¼Â¹Ô¤Ç¤¤Þ¤»¤ó "
+msgid "E546: Illegal mode"
+msgstr "E546: ÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹"
-msgid "shell "
-msgstr "¥·¥§¥ë "
+msgid "E547: Illegal mouseshape"
+msgstr "E547: ÉÔÀµ¤Ê 'mouseshape' ¤Ç¤¹"
-msgid " returned\n"
-msgstr " Ìá¤ê¤Þ¤·¤¿\n"
+msgid "E548: digit expected"
+msgstr "E548: ¿ôÃͤ¬É¬ÍפǤ¹"
-msgid "ANCHOR_BUF_SIZE too small."
-msgstr "ANCHOR_BUF_SIZE ¤¬¾®¤µ²á¤®¤Þ¤¹."
+msgid "E549: Illegal percentage"
+msgstr "E549: ÉÔÀµ¤Ê¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸¤Ç¤¹"
-msgid "I/O ERROR"
-msgstr "Æþ½ÐÎÏ¥¨¥é¡¼"
+msgid "Enter encryption key: "
+msgstr "°Å¹æ²½ÍѤΥ¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
-msgid "Message"
-msgstr "¥á¥Ã¥»¡¼¥¸"
+msgid "Enter same key again: "
+msgstr "¤â¤¦°ìÅÙÆ±¤¸¥¡¼¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
-msgid "'columns' is not 80, cannot execute external commands"
-msgstr "'columns' ¤¬80¤Ç¤Ï¤Ê¤¤¤¿¤á, ³°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
+msgid "Keys don't match!"
+msgstr "¥¡¼¤¬°ìÃפ·¤Þ¤»¤ó"
-msgid "E237: Printer selection failed"
-msgstr "E237: ¥×¥ê¥ó¥¿¤ÎÁªÂò¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E854: path too long for completion"
+msgstr "E854: ¥Ñ¥¹¤¬Ä¹²á¤®¤ÆÊä´°¤Ç¤¤Þ¤»¤ó"
#, c-format
-msgid "to %s on %s"
-msgstr "%s ¤Ø (%s ¾å¤Î)"
+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 "E613: Unknown printer font: %s"
-msgstr "E613: ̤ÃΤΥץê¥ó¥¿¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s"
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E238: Print error: %s"
-msgstr "E238: °õºþ¥¨¥é¡¼: %s"
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Printing '%s'"
-msgstr "°õºþ¤·¤Æ¤¤¤Þ¤¹: '%s'"
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr "E244: ʸ»ú¥»¥Ã¥È̾ \"%s\" ¤ÏÉÔÀµ¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: ¥Ñ¥¹¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: '%c' ¤ÏÉÔÀµ¤Êʸ»ú¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
+msgid "Cannot connect to Netbeans #2"
+msgstr "Netbeans #2 ¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
-msgid "Vim: Double signal, exiting\n"
-msgstr "Vim: 2½Å¤Î¥·¥°¥Ê¥ë¤Î¤¿¤á, ½ªÎ»¤·¤Þ¤¹\n"
+msgid "Cannot connect to Netbeans"
+msgstr "Netbeans ¤ËÀܳ¤Ç¤¤Þ¤»¤ó"
#, c-format
-msgid "Vim: Caught deadly signal %s\n"
-msgstr "Vim: Ã×̿Ū¥·¥°¥Ê¥ë %s ¤ò¸¡ÃΤ·¤Þ¤·¤¿\n"
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: NetBeans¤ÎÀܳ¾ðÊó¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¥â¡¼¥É¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹: \"%s\""
-#, c-format
-msgid "Vim: Caught deadly signal\n"
-msgstr "Vim: Ã×̿Ū¥·¥°¥Ê¥ë¤ò¸¡ÃΤ·¤Þ¤·¤¿\n"
+msgid "read from Netbeans socket"
+msgstr "Netbeans ¤Î¥½¥±¥Ã¥È¤òÆÉ¹þ¤ß"
#, c-format
-msgid "Opening the X display took %ld msec"
-msgstr "X¥µ¡¼¥Ð¤Ø¤ÎÀܳ¤Ë %ld ¥ß¥êÉ䫤«¤ê¤Þ¤·¤¿"
+msgid "E658: NetBeans connection lost for buffer %ld"
+msgstr "E658: ¥Ð¥Ã¥Õ¥¡ %ld ¤Î NetBeans Àܳ¤¬¼º¤ï¤ì¤Þ¤·¤¿"
-msgid ""
-"\n"
-"Vim: Got X error\n"
-msgstr ""
-"\n"
-"Vim: X ¤Î¥¨¥é¡¼¤ò¸¡½Ð¤·¤Þ¤·¤¿r\n"
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: NetBeans¤Ï¤³¤ÎGUI¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
-msgid "Testing the X display failed"
-msgstr "X display ¤Î¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E511: netbeans already connected"
+msgstr "E511: NetBeans¤Ï´û¤ËÀܳ¤·¤Æ¤¤¤Þ¤¹"
-msgid "Opening the X display timed out"
-msgstr "X display ¤Î open ¤¬¥¿¥¤¥à¥¢¥¦¥È¤·¤Þ¤·¤¿"
+msgid "E505: %s is read-only (add ! to override)"
+msgstr "E505: %s ¤ÏÆÉ¹þÀìÍѤǤ¹ (¶¯À©½ñ¹þ¤Ë¤Ï ! ¤òÄɲÃ)"
-msgid ""
-"\n"
-"Could not get security context for "
-msgstr ""
-"\n"
-"¥»¥¥å¥ê¥Æ¥£¥³¥ó¥Æ¥¥¹¥È¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó "
+msgid "E349: No identifier under cursor"
+msgstr "E349: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤϼ±Ê̻Ҥ¬¤¢¤ê¤Þ¤»¤ó"
-msgid ""
-"\n"
-"Could not set security context for "
-msgstr ""
-"\n"
-"¥»¥¥å¥ê¥Æ¥£¥³¥ó¥Æ¥¥¹¥È¤òÀßÄê¤Ç¤¤Þ¤»¤ó "
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: 'operatorfunc' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
-msgid ""
-"\n"
-"Cannot execute shell "
-msgstr ""
-"\n"
-"¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó "
+msgid "E775: Eval feature not available"
+msgstr "E775: ¼°É¾²Áµ¡Ç½¤¬Ìµ¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-msgid ""
-"\n"
-"Cannot execute shell sh\n"
-msgstr ""
-"\n"
-"sh ¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó\n"
+msgid "Warning: terminal cannot highlight"
+msgstr "·Ù¹ð: »ÈÍѤ·¤Æ¤¤¤ëüËö¤Ï¥Ï¥¤¥é¥¤¥È¤Ç¤¤Þ¤»¤ó"
-msgid ""
-"\n"
-"shell returned "
-msgstr ""
-"\n"
-"¥·¥§¥ë¤¬ÃͤòÊÖ¤·¤Þ¤·¤¿ "
+msgid "E348: No string under cursor"
+msgstr "E348: ¥«¡¼¥½¥ë¤Î°ÌÃ֤ˤÏʸ»úÎ󤬤¢¤ê¤Þ¤»¤ó"
-msgid ""
-"\n"
-"Cannot create pipes\n"
-msgstr ""
-"\n"
-"¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó\n"
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: ¸½ºß¤Î 'foldmethod' ¤Ç¤ÏÀÞ¾ö¤ß¤ò¾Ãµî¤Ç¤¤Þ¤»¤ó"
-msgid ""
-"\n"
-"Cannot fork\n"
-msgstr ""
-"\n"
-"fork ¤Ç¤¤Þ¤»¤ó\n"
+msgid "E664: changelist is empty"
+msgstr "E664: Êѹ¹¥ê¥¹¥È¤¬¶õ¤Ç¤¹"
-msgid ""
-"\n"
-"Command terminated\n"
-msgstr ""
-"\n"
-"¥³¥Þ¥ó¥É¤òÃæÃǤ·¤Þ¤·¤¿\n"
+msgid "E662: At start of changelist"
+msgstr "E662: Êѹ¹¥ê¥¹¥È¤ÎÀèÆ¬"
-msgid "XSMP lost ICE connection"
-msgstr "XSMP ¤¬ICEÀܳ¤ò¼º¤¤¤Þ¤·¤¿"
+msgid "E663: At end of changelist"
+msgstr "E663: Êѹ¹¥ê¥¹¥È¤ÎËöÈø"
+
+msgid "Type :quit<Enter> to exit Vim"
+msgstr "Vim¤ò½ªÎ»¤¹¤ë¤Ë¤Ï :quit<Enter> ¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"
#, c-format
-msgid "dlerror = \"%s\""
-msgstr "dlerror = \"%s\""
+msgid "1 line %sed 1 time"
+msgstr "1 ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
-msgid "Opening the X display failed"
-msgstr "X display ¤Î open ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+#, c-format
+msgid "1 line %sed %d times"
+msgstr "1 ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
-msgid "XSMP handling save-yourself request"
-msgstr "XSMP ¤¬save-yourselfÍ×µá¤ò½èÍý¤·¤Æ¤¤¤Þ¤¹"
+#, c-format
+msgid "%ld lines %sed 1 time"
+msgstr "%ld ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
-msgid "XSMP opening connection"
-msgstr "XSMP ¤¬Àܳ¤ò³«»Ï¤·¤Æ¤¤¤Þ¤¹"
+#, c-format
+msgid "%ld lines %sed %d times"
+msgstr "%ld ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿"
-msgid "XSMP ICE connection watch failed"
-msgstr "XSMP ICEÀܳ¤¬¼ºÇÔ¤·¤¿¤è¤¦¤Ç¤¹"
+#, c-format
+msgid "%ld lines to indent... "
+msgstr "%ld ¹Ô¤¬¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤Þ¤¹... "
+
+msgid "1 line indented "
+msgstr "1 ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿"
#, c-format
-msgid "XSMP SmcOpenConnection failed: %s"
-msgstr "XSMP SmcOpenConnection¤¬¼ºÇÔ¤·¤Þ¤·¤¿: %s"
+msgid "%ld lines indented "
+msgstr "%ld ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿"
-msgid "At line"
-msgstr "¹Ô"
+msgid "E748: No previously used register"
+msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó"
-msgid "Could not load vim32.dll!"
-msgstr "vim32.dll ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+#. must display the prompt
+msgid "cannot yank; delete anyway"
+msgstr "¥ä¥ó¥¯¤Ç¤¤Þ¤»¤ó; ¤È¤Ë¤«¤¯¾Ãµî"
-msgid "VIM Error"
-msgstr "VIM¥¨¥é¡¼"
+msgid "1 line changed"
+msgstr "1 ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-msgid "Could not fix up function pointers to the DLL!"
-msgstr "DLL¤«¤é´Ø¿ô¥Ý¥¤¥ó¥¿¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+#, c-format
+msgid "%ld lines changed"
+msgstr "%ld ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
#, c-format
-msgid "shell returned %d"
-msgstr "¥·¥§¥ë¤¬¥³¡¼¥É %d ¤Ç½ªÎ»¤·¤Þ¤·¤¿"
+msgid "freeing %ld lines"
+msgstr "%ld ¹Ô¤ò²òÊüÃæ"
+
+msgid "block of 1 line yanked"
+msgstr "1 ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
+
+msgid "1 line yanked"
+msgstr "1 ¹Ô¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
#, c-format
-msgid "Vim: Caught %s event\n"
-msgstr "Vim: ¥¤¥Ù¥ó¥È %s ¤ò¸¡ÃÎ\n"
+msgid "block of %ld lines yanked"
+msgstr "%ld ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
-msgid "close"
-msgstr "ÊĤ¸¤ë"
+#, c-format
+msgid "%ld lines yanked"
+msgstr "%ld ¹Ô¤¬¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿"
-msgid "logoff"
-msgstr "¥í¥°¥ª¥Õ"
+#, c-format
+msgid "E353: Nothing in register %s"
+msgstr "E353: ¥ì¥¸¥¹¥¿ %s ¤Ë¤Ï²¿¤â¤¢¤ê¤Þ¤»¤ó"
-msgid "shutdown"
-msgstr "¥·¥ã¥Ã¥È¥À¥¦¥ó"
+#. Highlight title
+msgid ""
+"\n"
+"--- Registers ---"
+msgstr ""
+"\n"
+"--- ¥ì¥¸¥¹¥¿ ---"
-msgid "E371: Command not found"
-msgstr "E371: ¥³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Illegal register name"
+msgstr "ÉÔÀµ¤Ê¥ì¥¸¥¹¥¿Ì¾"
msgid ""
-"VIMRUN.EXE not found in your $PATH.\n"
-"External commands will not pause after completion.\n"
-"See :help win32-vimrun for more information."
+"\n"
+"# Registers:\n"
msgstr ""
-"VIMRUN.EXE¤¬ $PATH ¤ÎÃæ¤Ë¤ß¤Ä¤«¤ê¤Þ¤»¤ó.\n"
-"³°Éô¥³¥Þ¥ó¥É¤Î½ªÎ»¸å¤Ë°ì»þÄä»ß¤ò¤·¤Þ¤»¤ó.\n"
-"¾ÜºÙ¤Ï :help win32-vimrun ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤."
+"\n"
+"# ¥ì¥¸¥¹¥¿:\n"
-msgid "Vim Warning"
-msgstr "Vim¤Î·Ù¹ð"
+#, c-format
+msgid "E574: Unknown register type %d"
+msgstr "E574: ̤ÃΤΥ쥸¥¹¥¿·¿ %d ¤Ç¤¹"
#, c-format
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë %%%c ¤¬Â¿²á¤®¤Þ¤¹"
+msgid "%ld Cols; "
+msgstr "%ld Îó; "
#, c-format
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ëͽ´ü¤»¤Ì %%%c ¤¬¤¢¤ê¤Þ¤·¤¿"
+msgid "Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"
+msgstr "ÁªÂò %s%ld / %ld ¹Ô; %ld / %ld ñ¸ì; %ld / %ld ¥Ð¥¤¥È"
-msgid "E374: Missing ] in format string"
-msgstr "E374: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+#, c-format
+msgid ""
+"Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld "
+"Bytes"
+msgstr "ÁªÂò %s%ld / %ld ¹Ô; %ld / %ld ñ¸ì; %ld / %ld ʸ»ú; %ld / %ld ¥Ð¥¤¥È"
#, c-format
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ï %%%c ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
+msgid "Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"
+msgstr "Îó %s / %s; ¹Ô %ld of %ld; ñ¸ì %ld / %ld; ¥Ð¥¤¥È %ld / %ld"
#, c-format
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ÎÁ°ÃÖ¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
+msgid ""
+"Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of "
+"%ld"
+msgstr ""
+"Îó %s / %s; ¹Ô %ld / %ld; ñ¸ì %ld / %ld; ʸ»ú %ld / %ld; ¥Ð¥¤¥È %ld of %ld"
#, c-format
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
+msgid "(+%ld for BOM)"
+msgstr "(+%ld for BOM)"
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' ¤Ë¥Ñ¥¿¡¼¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "%<%f%h%m%=Page %N"
+msgstr "%<%f%h%m%=%N ¥Ú¡¼¥¸"
-msgid "E379: Missing or empty directory name"
-msgstr "E379: ¥Ç¥£¥ì¥¯¥È¥ê̾¤¬Ìµ¤¤¤«¶õ¤Ç¤¹"
+msgid "Thanks for flying Vim"
+msgstr "Vim ¤ò»È¤Ã¤Æ¤¯¤ì¤Æ¤¢¤ê¤¬¤È¤¦"
-msgid "E553: No more items"
-msgstr "E553: Í×ÁǤ¬¤â¤¦¤¢¤ê¤Þ¤»¤ó"
+msgid "E518: Unknown option"
+msgstr "E518: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹"
-#, c-format
-msgid "(%d of %d)%s%s: "
-msgstr "(%d of %d)%s%s: "
+msgid "E519: Option not supported"
+msgstr "E519: ¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid " (line deleted)"
-msgstr " (¹Ô¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿)"
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: modeline ¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: quickfix ¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
+msgid "E846: Key code not set"
+msgstr "E846: ¥¡¼¥³¡¼¥É¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "E381: At top of quickfix stack"
-msgstr "E381: quickfix ¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
+msgid "E521: Number required after ="
+msgstr "E521: = ¤Î¸å¤Ë¤Ï¿ô»ú¤¬É¬ÍפǤ¹"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: termcap Æâ¤Ë¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "error list %d of %d; %d errors"
-msgstr "¥¨¥é¡¼°ìÍ÷ %d of %d; %d ¸Ä¥¨¥é¡¼"
+msgid "E539: Illegal character <%s>"
+msgstr "E539: ÉÔÀµ¤Êʸ»ú¤Ç¤¹ <%s>"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: 'buftype' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç½ñ¹þ¤ß¤Þ¤»¤ó"
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: 'term' ¤Ë¤Ï¶õʸ»úÎó¤òÀßÄê¤Ç¤¤Þ¤»¤ó"
-msgid "Error file"
-msgstr "¥¨¥é¡¼¥Õ¥¡¥¤¥ë"
+msgid "E530: Cannot change term in GUI"
+msgstr "E530: GUI¤Ç¤Ï 'term' ¤òÊѹ¹¤Ç¤¤Þ¤»¤ó"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: ¥Õ¥¡¥¤¥ë̾¤¬Ìµ¤¤¤«Ìµ¸ú¤Ê¥Ñ¥¿¡¼¥ó¤Ç¤¹"
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: GUI¤ò¥¹¥¿¡¼¥È¤¹¤ë¤Ë¤Ï \":gui\" ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤"
-#, c-format
-msgid "Cannot open file \"%s\""
-msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' ¤È 'patchmode' ¤¬Æ±¤¸¤Ç¤¹"
-msgid "E681: Buffer is not loaded"
-msgstr "E681: ¥Ð¥Ã¥Õ¥¡¤ÏÆÉ¤ß¹þ¤Þ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "E834: Conflicts with value of 'listchars'"
+msgstr "E834: 'listchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
-msgid "E777: String or List expected"
-msgstr "E777: ʸ»úÎ󤫥ꥹ¥È¤¬É¬ÍפǤ¹"
+msgid "E835: Conflicts with value of 'fillchars'"
+msgstr "E835: 'fillchars'¤ÎÃͤËÌ·½â¤¬¤¢¤ê¤Þ¤¹"
-#, c-format
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: ̵¸ú¤Ê¹àÌܤǤ¹: %s%%[]"
+msgid "E617: Cannot be changed in the GTK+ 2 GUI"
+msgstr "E617: GTK+2 GUI¤Ç¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó"
-msgid "E339: Pattern too long"
-msgstr "E339: ¥Ñ¥¿¡¼¥ó¤¬Ä¹²á¤®¤Þ¤¹"
+msgid "E524: Missing colon"
+msgstr "E524: ¥³¥í¥ó¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E50: Too many \\z("
-msgstr "E50: \\z( ¤¬Â¿²á¤®¤Þ¤¹"
+msgid "E525: Zero length string"
+msgstr "E525: ʸ»úÎó¤ÎŤµ¤¬¥¼¥í¤Ç¤¹"
#, c-format
-msgid "E51: Too many %s("
-msgstr "E51: %s( ¤¬Â¿²á¤®¤Þ¤¹"
+msgid "E526: Missing number after <%s>"
+msgstr "E526: <%s> ¤Î¸å¤Ë¿ô»ú¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E52: Unmatched \\z("
-msgstr "E52: \\z( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+msgid "E527: Missing comma"
+msgstr "E527: ¥«¥ó¥Þ¤¬¤¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E53: Unmatched %s%%("
-msgstr "E53: %s%%( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+msgid "E528: Must specify a ' value"
+msgstr "E528: ' ¤ÎÃͤò»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "E54: Unmatched %s("
-msgstr "E54: %s( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+msgid "E595: contains unprintable or wide character"
+msgstr "E595: ɽ¼¨¤Ç¤¤Ê¤¤Ê¸»ú¤«¥ï¥¤¥Éʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
-#, c-format
-msgid "E55: Unmatched %s)"
-msgstr "E55: %s) ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
+msgid "E596: Invalid font(s)"
+msgstr "E596: ̵¸ú¤Ê¥Õ¥©¥ó¥È¤Ç¤¹"
-#, c-format
-msgid "E59: invalid character after %s@"
-msgstr "E59: %s@ ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+msgid "E597: can't select fontset"
+msgstr "E597: ¥Õ¥©¥ó¥È¥»¥Ã¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E60: Too many complex %s{...}s"
-msgstr "E60: Ê£»¨¤Ê %s{...} ¤¬Â¿²á¤®¤Þ¤¹"
+msgid "E598: Invalid fontset"
+msgstr "E598: ̵¸ú¤Ê¥Õ¥©¥ó¥È¥»¥Ã¥È¤Ç¤¹"
-#, c-format
-msgid "E61: Nested %s*"
-msgstr "E61:%s* ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "E533: can't select wide font"
+msgstr "E533: ¥ï¥¤¥É¥Õ¥©¥ó¥È¤òÁªÂò¤Ç¤¤Þ¤»¤ó"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: ̵¸ú¤Ê¥ï¥¤¥É¥Õ¥©¥ó¥È¤Ç¤¹"
#, c-format
-msgid "E62: Nested %s%c"
-msgstr "E62:%s%c ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: <%c> ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-#
-msgid "E63: invalid use of \\_"
-msgstr "E63: \\_ ¤Î̵¸ú¤Ê»ÈÍÑÊýË¡¤Ç¤¹"
+msgid "E536: comma required"
+msgstr "E536: ¥«¥ó¥Þ¤¬É¬ÍפǤ¹"
#, c-format
-msgid "E64: %s%c follows nothing"
-msgstr "E64:%s%c ¤Î¸å¤Ë¤Ê¤Ë¤â¤¢¤ê¤Þ¤»¤ó"
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' ¤Ï¶õ¤Ç¤¢¤ë¤« %s ¤ò´Þ¤àɬÍפ¬¤¢¤ê¤Þ¤¹"
-#
-msgid "E65: Illegal back reference"
-msgstr "E65: ÉÔÀµ¤Ê¸åÊý»²¾È¤Ç¤¹"
+msgid "E538: No mouse support"
+msgstr "E538: ¥Þ¥¦¥¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
-#
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: ¼°¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó"
-#
-msgid "E67: \\z1 et al. not allowed here"
-msgstr "E67: \\z1 ¤½¤Î¾¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E541: too many items"
+msgstr "E541: Í×ÁǤ¬Â¿²á¤®¤Þ¤¹"
-#
-msgid "E68: Invalid character after \\z"
-msgstr "E68: \\z ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+msgid "E542: unbalanced groups"
+msgstr "E542: ¥°¥ë¡¼¥×¤¬Äà¹ç¤¤¤Þ¤»¤ó"
-#
-#, c-format
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: %s%%[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+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' ¤·¤Æ¤¯¤À¤µ¤¤"
#, c-format
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] ¤¬¶õ¤Ç¤¹"
+msgid "E593: Need at least %d lines"
+msgstr "E593: ºÇÄã %d ¤Î¹Ô¿ô¤¬É¬ÍפǤ¹"
-#
#, c-format
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: %s%%[dxouU] ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+msgid "E594: Need at least %d columns"
+msgstr "E594: ºÇÄã %d ¤Î¥«¥é¥àÉý¤¬É¬ÍפǤ¹"
-#
#, c-format
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: %s%% ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+msgid "E355: Unknown option: %s"
+msgstr "E355: ̤ÃΤΥª¥×¥·¥ç¥ó¤Ç¤¹: %s"
-#
+#. There's another character after zeros or the string
+#. * is empty. In both cases, we are trying to set a
+#. * num option using a string.
#, c-format
-msgid "E769: Missing ] after %s["
-msgstr "E769: %s[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: ¿ô»ú¤¬É¬ÍפǤ¹: &%s = '%s'"
+
+msgid ""
+"\n"
+"--- Terminal codes ---"
+msgstr ""
+"\n"
+"--- üËö¥³¡¼¥É ---"
+
+msgid ""
+"\n"
+"--- Global option values ---"
+msgstr ""
+"\n"
+"--- ¥°¥í¡¼¥Ð¥ë¥ª¥×¥·¥ç¥óÃÍ ---"
+
+msgid ""
+"\n"
+"--- Local option values ---"
+msgstr ""
+"\n"
+"--- ¥í¡¼¥«¥ë¥ª¥×¥·¥ç¥óÃÍ ---"
+
+msgid ""
+"\n"
+"--- Options ---"
+msgstr ""
+"\n"
+"--- ¥ª¥×¥·¥ç¥ó ---"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: get_varp ¥¨¥é¡¼"
#, c-format
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: %s{...} Æâ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': %s ¤ËÂбþ¤¹¤ëʸ»ú¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "External submatches:\n"
-msgstr "³°Éô¤ÎÉôʬ³ºÅö:\n"
+#, c-format
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': ¥»¥ß¥³¥í¥ó¤Î¸å¤Ë;ʬ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹: %s"
-msgid " VREPLACE"
-msgstr " ²¾ÁÛÃÖ´¹"
+msgid "cannot open "
+msgstr "³«¤±¤Þ¤»¤ó "
-msgid " REPLACE"
-msgstr " ÃÖ´¹"
+msgid "VIM: Can't open window!\n"
+msgstr "VIM: ¥¦¥£¥ó¥É¥¦¤ò³«¤±¤Þ¤»¤ó!\n"
-msgid " REVERSE"
-msgstr " ȿž"
+msgid "Need Amigados version 2.04 or later\n"
+msgstr "Amigados¤Î¥Ð¡¼¥¸¥ç¥ó 2.04¤«¤½¤ì°Ê¹ß¤¬É¬ÍפǤ¹\n"
-msgid " INSERT"
-msgstr " ÁÞÆþ"
+#, c-format
+msgid "Need %s version %ld\n"
+msgstr "%s ¤Î¥Ð¡¼¥¸¥ç¥ó %ld ¤¬É¬ÍפǤ¹\n"
-msgid " (insert)"
-msgstr " (ÁÞÆþ)"
+msgid "Cannot open NIL:\n"
+msgstr "NIL¤ò³«¤±¤Þ¤»¤ó:\n"
-msgid " (replace)"
-msgstr " (ÃÖ´¹)"
+msgid "Cannot create "
+msgstr "ºîÀ®¤Ç¤¤Þ¤»¤ó "
-msgid " (vreplace)"
-msgstr " (²¾ÁÛÃÖ´¹)"
+#, c-format
+msgid "Vim exiting with %d\n"
+msgstr "Vim¤Ï %d ¤Ç½ªÎ»¤·¤Þ¤¹\n"
-msgid " Hebrew"
-msgstr " ¥Ø¥Ö¥é¥¤"
+msgid "cannot change console mode ?!\n"
+msgstr "¥³¥ó¥½¡¼¥ë¥â¡¼¥É¤òÊѹ¹¤Ç¤¤Þ¤»¤ó?!\n"
-msgid " Arabic"
-msgstr " ¥¢¥é¥Ó¥¢"
+msgid "mch_get_shellsize: not a console??\n"
+msgstr "mch_get_shellsize: ¥³¥ó¥½¡¼¥ë¤Ç¤Ï¤Ê¤¤??\n"
-msgid " (lang)"
-msgstr " (¸À¸ì)"
+#. if Vim opened a window: Executing a shell may cause crashes
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: -f ¥ª¥×¥·¥ç¥ó¤Ç¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-msgid " (paste)"
-msgstr " (ޤêÉÕ¤±)"
+msgid "Cannot execute "
+msgstr "¼Â¹Ô¤Ç¤¤Þ¤»¤ó "
-msgid " VISUAL"
-msgstr " ¥Ó¥¸¥å¥¢¥ë"
+msgid "shell "
+msgstr "¥·¥§¥ë "
-msgid " VISUAL LINE"
-msgstr " ¥Ó¥¸¥å¥¢¥ë ¹Ô"
+msgid " returned\n"
+msgstr " Ìá¤ê¤Þ¤·¤¿\n"
-msgid " VISUAL BLOCK"
-msgstr " ¥Ó¥¸¥å¥¢¥ë ¶ë·Á"
+msgid "ANCHOR_BUF_SIZE too small."
+msgstr "ANCHOR_BUF_SIZE ¤¬¾®¤µ²á¤®¤Þ¤¹."
-msgid " SELECT"
-msgstr " ¥»¥ì¥¯¥È"
+msgid "I/O ERROR"
+msgstr "Æþ½ÐÎÏ¥¨¥é¡¼"
-msgid " SELECT LINE"
-msgstr " ¹Ô»Ø¸þÁªÂò"
+msgid "Message"
+msgstr "¥á¥Ã¥»¡¼¥¸"
-msgid " SELECT BLOCK"
-msgstr " ¶ë·ÁÁªÂò"
+msgid "'columns' is not 80, cannot execute external commands"
+msgstr "'columns' ¤¬80¤Ç¤Ï¤Ê¤¤¤¿¤á, ³°Éô¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-msgid "recording"
-msgstr "µÏ¿Ãæ"
+msgid "E237: Printer selection failed"
+msgstr "E237: ¥×¥ê¥ó¥¿¤ÎÁªÂò¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
#, c-format
-msgid "E383: Invalid search string: %s"
-msgstr "E383: ̵¸ú¤Ê¸¡º÷ʸ»úÎó¤Ç¤¹: %s"
+msgid "to %s on %s"
+msgstr "%s ¤Ø (%s ¾å¤Î)"
#, c-format
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: ¾å¤Þ¤Ç¸¡º÷¤·¤¿¤±¤ì¤É³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: ̤ÃΤΥץê¥ó¥¿¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s"
#, c-format
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: ²¼¤Þ¤Ç¸¡º÷¤·¤¿¤±¤ì¤É³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "E238: Print error: %s"
+msgstr "E238: °õºþ¥¨¥é¡¼: %s"
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: ';' ¤Î¤¢¤È¤Ë¤Ï '?' ¤« '/' ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë"
-
-msgid " (includes previously listed match)"
-msgstr " (Á°¤ËÎóµó¤·¤¿³ºÅö²Õ½ê¤ò´Þ¤à)"
-
-#. cursor at status line
-msgid "--- Included files "
-msgstr "--- ¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë"
-
-msgid "not found "
-msgstr "¤ß¤Ä¤«¤ê¤Þ¤»¤ó "
+#, c-format
+msgid "Printing '%s'"
+msgstr "°õºþ¤·¤Æ¤¤¤Þ¤¹: '%s'"
-msgid "in path ---\n"
-msgstr "¥Ñ¥¹¤Ë ----\n"
+#, c-format
+msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
+msgstr "E244: ʸ»ú¥»¥Ã¥È̾ \"%s\" ¤ÏÉÔÀµ¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
-msgid " (Already listed)"
-msgstr " (´û¤ËÎóµó)"
+#, c-format
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: '%c' ¤ÏÉÔÀµ¤Êʸ»ú¤Ç¤¹ (¥Õ¥©¥ó¥È̾ \"%s\")"
-msgid " NOT FOUND"
-msgstr " ¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "Vim: Double signal, exiting\n"
+msgstr "Vim: 2½Å¤Î¥·¥°¥Ê¥ë¤Î¤¿¤á, ½ªÎ»¤·¤Þ¤¹\n"
#, c-format
-msgid "Scanning included file: %s"
-msgstr "¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥¹¥¥ã¥óÃæ: %s"
+msgid "Vim: Caught deadly signal %s\n"
+msgstr "Vim: Ã×̿Ū¥·¥°¥Ê¥ë %s ¤ò¸¡ÃΤ·¤Þ¤·¤¿\n"
#, c-format
-msgid "Searching included file %s"
-msgstr "¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥¹¥¥ã¥óÃæ %s"
+msgid "Vim: Caught deadly signal\n"
+msgstr "Vim: Ã×̿Ū¥·¥°¥Ê¥ë¤ò¸¡ÃΤ·¤Þ¤·¤¿\n"
-msgid "E387: Match is on current line"
-msgstr "E387: ¸½ºß¹Ô¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤¹"
+#, c-format
+msgid "Opening the X display took %ld msec"
+msgstr "X¥µ¡¼¥Ð¤Ø¤ÎÀܳ¤Ë %ld ¥ß¥êÉ䫤«¤ê¤Þ¤·¤¿"
-msgid "All included files were found"
-msgstr "Á´¤Æ¤Î¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤¬¤ß¤Ä¤«¤ê¤Þ¤·¤¿"
+msgid ""
+"\n"
+"Vim: Got X error\n"
+msgstr ""
+"\n"
+"Vim: X ¤Î¥¨¥é¡¼¤ò¸¡½Ð¤·¤Þ¤·¤¿r\n"
-msgid "No included files"
-msgstr "¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "Testing the X display failed"
+msgstr "X display ¤Î¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-msgid "E388: Couldn't find definition"
-msgstr "E388: ÄêµÁ¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+msgid "Opening the X display timed out"
+msgstr "X display ¤Î open ¤¬¥¿¥¤¥à¥¢¥¦¥È¤·¤Þ¤·¤¿"
-msgid "E389: Couldn't find pattern"
-msgstr "E389: ¥Ñ¥¿¡¼¥ó¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Could not get security context for "
+msgstr ""
+"\n"
+"¥»¥¥å¥ê¥Æ¥£¥³¥ó¥Æ¥¥¹¥È¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó "
-msgid "Substitute "
-msgstr "Substitute "
+msgid ""
+"\n"
+"Could not set security context for "
+msgstr ""
+"\n"
+"¥»¥¥å¥ê¥Æ¥£¥³¥ó¥Æ¥¥¹¥È¤òÀßÄê¤Ç¤¤Þ¤»¤ó "
-#, c-format
msgid ""
"\n"
-"# Last %sSearch Pattern:\n"
-"~"
+"Cannot execute shell "
msgstr ""
"\n"
-"# ºÇ¸å¤Î %s¸¡º÷¥Ñ¥¿¡¼¥ó:\n"
-"~"
+"¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó "
-msgid "E759: Format error in spell file"
-msgstr "E759: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Î½ñ¼°¥¨¥é¡¼¤Ç¤¹"
+msgid ""
+"\n"
+"Cannot execute shell sh\n"
+msgstr ""
+"\n"
+"sh ¥·¥§¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó\n"
-msgid "E758: Truncated spell file"
-msgstr "E758: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤¬ÀÚ¼è¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
+msgid ""
+"\n"
+"shell returned "
+msgstr ""
+"\n"
+"¥·¥§¥ë¤¬ÃͤòÊÖ¤·¤Þ¤·¤¿ "
-#, c-format
-msgid "Trailing text in %s line %d: %s"
-msgstr "%s (%d ¹ÔÌÜ) ¤Ë³¤¯¥Æ¥¥¹¥È: %s"
+msgid ""
+"\n"
+"Cannot create pipes\n"
+msgstr ""
+"\n"
+"¥Ñ¥¤¥×¤òºîÀ®¤Ç¤¤Þ¤»¤ó\n"
-#, c-format
-msgid "Affix name too long in %s line %d: %s"
-msgstr "%s (%d ¹ÔÌÜ) ¤Î affix ̾¤¬Ä¹²á¤®¤Þ¤¹: %s"
+msgid ""
+"\n"
+"Cannot fork\n"
+msgstr ""
+"\n"
+"fork ¤Ç¤¤Þ¤»¤ó\n"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgid ""
+"\n"
+"Command terminated\n"
msgstr ""
-"E761: affix¥Õ¥¡¥¤¥ë¤Î FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+"\n"
+"¥³¥Þ¥ó¥É¤òÃæÃǤ·¤Þ¤·¤¿\n"
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Îʸ»ú¤¬Èϰϳ°¤Ç¤¹"
+msgid "XSMP lost ICE connection"
+msgstr "XSMP ¤¬ICEÀܳ¤ò¼º¤¤¤Þ¤·¤¿"
-msgid "Compressing word tree..."
-msgstr "ñ¸ì¥Ä¥ê¡¼¤ò°µ½Ì¤·¤Æ¤¤¤Þ¤¹..."
+#, c-format
+msgid "dlerror = \"%s\""
+msgstr "dlerror = \"%s\""
-msgid "E756: Spell checking is not enabled"
-msgstr "E756: ¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¤Ï̵¸ú²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "Opening the X display failed"
+msgstr "X display ¤Î open ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#, c-format
-msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
-msgstr ""
-"·Ù¹ð: ñ¸ì¥ê¥¹¥È \"%s_%s.spl\" ¤ª¤è¤Ó \"%s_ascii.spl\" ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "XSMP handling save-yourself request"
+msgstr "XSMP ¤¬save-yourselfÍ×µá¤ò½èÍý¤·¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""
-msgstr ""
-"·Ù¹ð: ñ¸ì¥ê¥¹¥È \"%s.%s.spl\" ¤ª¤è¤Ó \"%s.ascii.spl\" ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
+msgid "XSMP opening connection"
+msgstr "XSMP ¤¬Àܳ¤ò³«»Ï¤·¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "Reading spell file \"%s\""
-msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þÃæ"
+msgid "XSMP ICE connection watch failed"
+msgstr "XSMP ICEÀܳ¤¬¼ºÇÔ¤·¤¿¤è¤¦¤Ç¤¹"
-msgid "E757: This does not look like a spell file"
-msgstr "E757: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
+#, c-format
+msgid "XSMP SmcOpenConnection failed: %s"
+msgstr "XSMP SmcOpenConnection¤¬¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: ¸Å¤¤¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç, ¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤"
+msgid "At line"
+msgstr "¹Ô"
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΥ¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤¹"
+msgid "Could not load vim32.dll!"
+msgstr "vim32.dll ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ë¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹"
+msgid "VIM Error"
+msgstr "VIM¥¨¥é¡¼"
-#, c-format
-msgid "Warning: region %s not supported"
-msgstr "·Ù¹ð9: %s ¤È¤¤¤¦ÈϰϤϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "Could not fix up function pointers to the DLL!"
+msgstr "DLL¤«¤é´Ø¿ô¥Ý¥¤¥ó¥¿¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
#, c-format
-msgid "Reading affix file %s ..."
-msgstr "affix ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þÃæ..."
+msgid "shell returned %d"
+msgstr "¥·¥§¥ë¤¬¥³¡¼¥É %d ¤Ç½ªÎ»¤·¤Þ¤·¤¿"
#, c-format
-msgid "Conversion failure for word in %s line %d: %s"
-msgstr "%s (%d ¹ÔÌÜ) ¤Îñ¸ì¤òÊÑ´¹¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+msgid "Vim: Caught %s event\n"
+msgstr "Vim: ¥¤¥Ù¥ó¥È %s ¤ò¸¡ÃÎ\n"
-#, c-format
-msgid "Conversion in %s not supported: from %s to %s"
-msgstr "%s Æâ¤Î¼¡¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s ¤«¤é %s ¤Ø"
+msgid "close"
+msgstr "ÊĤ¸¤ë"
-#, c-format
-msgid "Conversion in %s not supported"
-msgstr "%s Æâ¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "logoff"
+msgstr "¥í¥°¥ª¥Õ"
-#, c-format
-msgid "Invalid value for FLAG in %s line %d: %s"
-msgstr "%s Æâ¤Î %d ¹ÔÌܤΠFLAG ¤Ë̵¸ú¤ÊÃͤ¬¤¢¤ê¤Þ¤¹: %s"
+msgid "shutdown"
+msgstr "¥·¥ã¥Ã¥È¥À¥¦¥ó"
-#, c-format
-msgid "FLAG after using flags in %s line %d: %s"
-msgstr "%s Æâ¤Î %d ¹ÔÌܤ˥ե饰¤ÎÆó½Å»ÈÍѤ¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E371: Command not found"
+msgstr "E371: ¥³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤»¤ó"
-#, c-format
msgid ""
-"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line "
-"%d"
+"VIMRUN.EXE not found in your $PATH.\n"
+"External commands will not pause after completion.\n"
+"See :help win32-vimrun for more information."
msgstr ""
-"%s ¤Î %d ¹ÔÌܤΠPFX ¹àÌܤθå¤Î COMPOUNDFORBIDFLAG ¤ÎÄêµÁ¤Ï¸í¤Ã¤¿·ë²Ì¤òÀ¸¤¸¤ë"
-"¤³¤È¤¬¤¢¤ê¤Þ¤¹"
+"VIMRUN.EXE¤¬ $PATH ¤ÎÃæ¤Ë¤ß¤Ä¤«¤ê¤Þ¤»¤ó.\n"
+"³°Éô¥³¥Þ¥ó¥É¤Î½ªÎ»¸å¤Ë°ì»þÄä»ß¤ò¤·¤Þ¤»¤ó.\n"
+"¾ÜºÙ¤Ï :help win32-vimrun ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤."
-#, c-format
-msgid ""
-"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line "
-"%d"
-msgstr ""
-"%s ¤Î %d ¹ÔÌܤΠPFX ¹àÌܤθå¤Î COMPOUNDPERMITFLAG ¤ÎÄêµÁ¤Ï¸í¤Ã¤¿·ë²Ì¤òÀ¸¤¸¤ë"
-"¤³¤È¤¬¤¢¤ê¤Þ¤¹"
+msgid "Vim Warning"
+msgstr "Vim¤Î·Ù¹ð"
#, c-format
-msgid "Wrong COMPOUNDRULES value in %s line %d: %s"
-msgstr "COMPOUNDRULES ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹. ¥Õ¥¡¥¤¥ë %s ¤Î %d ¹ÔÌÜ: %s"
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë %%%c ¤¬Â¿²á¤®¤Þ¤¹"
#, c-format
-msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDWORDMAX ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ëͽ´ü¤»¤Ì %%%c ¤¬¤¢¤ê¤Þ¤·¤¿"
-#, c-format
-msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDMIN ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E374: Missing ] in format string"
+msgstr "E374: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDSYLMAX ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ï %%%c ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó"
#, c-format
-msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠCHECKCOMPOUNDPATTERN ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ÎÁ°ÃÖ¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "Different combining flag in continued affix block in %s line %d: %s"
-msgstr ""
-"%s ¤Î %d ¹ÔÌܤΠϢ³ affix ¥Ö¥í¥Ã¥¯¤Î¥Õ¥é¥°¤ÎÁȹ礻¤Ë°ã¤¤¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ë̵¸ú¤Ê %%%c ¤¬¤¢¤ê¤Þ¤¹"
-#, c-format
-msgid "Duplicate affix in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë ½ÅÊ£¤·¤¿ affix ¤ò¸¡½Ð¤·¤Þ¤·¤¿: %s"
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' ¤Ë¥Ñ¥¿¡¼¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#, c-format
-msgid ""
-"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
-"line %d: %s"
-msgstr ""
-"%s ¤Î %d ¹ÔÌܤΠaffix ¤Ï BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
-"¤Ë»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤: %s"
+msgid "E379: Missing or empty directory name"
+msgstr "E379: ¥Ç¥£¥ì¥¯¥È¥ê̾¤¬Ìµ¤¤¤«¶õ¤Ç¤¹"
-#, c-format
-msgid "Expected Y or N in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ç¤Ï Y ¤« N ¤¬É¬ÍפǤ¹: %s"
+msgid "E553: No more items"
+msgstr "E553: Í×ÁǤ¬¤â¤¦¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Broken condition in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ¾ò·ï¤Ï²õ¤ì¤Æ¤¤¤Þ¤¹: %s"
+msgid "(%d of %d)%s%s: "
+msgstr "(%d of %d)%s%s: "
-#, c-format
-msgid "Expected REP(SAL) count in %s line %d"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë¤Ï REP(SAL) ¤Î²ó¿ô¤¬É¬ÍפǤ¹"
+msgid " (line deleted)"
+msgstr " (¹Ô¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿)"
-#, c-format
-msgid "Expected MAP count in %s line %d"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë¤Ï MAP ¤Î²ó¿ô¤¬É¬ÍפǤ¹"
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: quickfix ¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
-#, c-format
-msgid "Duplicate character in MAP in %s line %d"
-msgstr "%s ¤Î %d ¹ÔÌܤΠMAP ¤Ë½ÅÊ£¤·¤¿Ê¸»ú¤¬¤¢¤ê¤Þ¤¹"
+msgid "E381: At top of quickfix stack"
+msgstr "E381: quickfix ¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
#, c-format
-msgid "Unrecognized or duplicate item in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë Ç§¼±¤Ç¤¤Ê¤¤¤«½ÅÊ£¤·¤¿¹àÌܤ¬¤¢¤ê¤Þ¤¹: %s"
+msgid "error list %d of %d; %d errors"
+msgstr "¥¨¥é¡¼°ìÍ÷ %d of %d; %d ¸Ä¥¨¥é¡¼"
-#, c-format
-msgid "Missing FOL/LOW/UPP line in %s"
-msgstr "%s ¹ÔÌÜ¤Ë FOL/LOW/UPP ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: 'buftype' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç½ñ¹þ¤ß¤Þ¤»¤ó"
-msgid "COMPOUNDSYLMAX used without SYLLABLE"
-msgstr "SYLLABLE ¤¬»ØÄꤵ¤ì¤Ê¤¤ COMPOUNDSYLMAX"
+msgid "Error file"
+msgstr "¥¨¥é¡¼¥Õ¥¡¥¤¥ë"
-msgid "Too many postponed prefixes"
-msgstr "ÃÙ±ä¸åÃÖ»Ò¤¬Â¿¤¹¤®¤Þ¤¹"
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: ¥Õ¥¡¥¤¥ë̾¤¬Ìµ¤¤¤«Ìµ¸ú¤Ê¥Ñ¥¿¡¼¥ó¤Ç¤¹"
-msgid "Too many compound flags"
-msgstr "Ê£¹ç¥Õ¥é¥°¤¬Â¿²á¤®¤Þ¤¹"
+#, c-format
+msgid "Cannot open file \"%s\""
+msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
-msgid "Too many postponed prefixes and/or compound flags"
-msgstr "ÃÙ±ä¸åÃÖ»Ò ¤È/¤â¤·¤¯¤Ï Ê£¹ç¥Õ¥é¥°¤¬Â¿¤¹¤®¤Þ¤¹"
+msgid "E681: Buffer is not loaded"
+msgstr "E681: ¥Ð¥Ã¥Õ¥¡¤ÏÆÉ¤ß¹þ¤Þ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
-#, c-format
-msgid "Missing SOFO%s line in %s"
-msgstr "SOFO%s ¹Ô¤¬ %s ¤Ë¤¢¤ê¤Þ¤»¤ó"
+msgid "E777: String or List expected"
+msgstr "E777: ʸ»úÎ󤫥ꥹ¥È¤¬É¬ÍפǤ¹"
#, c-format
-msgid "Both SAL and SOFO lines in %s"
-msgstr "SAL¹Ô ¤È SOFO¹Ô ¤¬ %s ¤ÇξÊý»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: ̵¸ú¤Ê¹àÌܤǤ¹: %s%%[]"
-#, c-format
-msgid "Flag is not a number in %s line %d: %s"
-msgstr "%s ¤Î %d ¹Ô¤Î ¥Õ¥é¥°¤¬¿ôÃͤǤϤ¢¤ê¤Þ¤»¤ó: %s"
+msgid "E339: Pattern too long"
+msgstr "E339: ¥Ñ¥¿¡¼¥ó¤¬Ä¹²á¤®¤Þ¤¹"
-#, c-format
-msgid "Illegal flag in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ¥Õ¥é¥°¤¬ÉÔÀµ¤Ç¤¹: %s"
+msgid "E50: Too many \\z("
+msgstr "E50: \\z( ¤¬Â¿²á¤®¤Þ¤¹"
#, c-format
-msgid "%s value differs from what is used in another .aff file"
-msgstr "ÃÍ %s ¤Ï¾¤Î .aff ¥Õ¥¡¥¤¥ë¤Ç»ÈÍѤµ¤ì¤¿¤Î¤È°Û¤Ê¤ê¤Þ¤¹"
+msgid "E51: Too many %s("
+msgstr "E51: %s( ¤¬Â¿²á¤®¤Þ¤¹"
-#, c-format
-msgid "Reading dictionary file %s ..."
-msgstr "¼½ñ¥Õ¥¡¥¤¥ë %s ¤ò¥¹¥¥ã¥óÃæ..."
+msgid "E52: Unmatched \\z("
+msgstr "E52: \\z( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "E760: No word count in %s"
-msgstr "E760: %s ¤Ë¤Ïñ¸ì¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E53: Unmatched %s%%("
+msgstr "E53: %s%%( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "line %6d, word %6d - %s"
-msgstr "¹Ô %6d, ñ¸ì %6d - %s"
+msgid "E54: Unmatched %s("
+msgstr "E54: %s( ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "Duplicate word in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ¤Ç ½Åʣñ¸ì¤¬¤ß¤Ä¤«¤ê¤Þ¤·¤¿: %s"
+msgid "E55: Unmatched %s)"
+msgstr "E55: %s) ¤¬Äà¤ê¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "First duplicate word in %s line %d: %s"
-msgstr "½ÅÊ£¤Î¤¦¤ÁºÇ½é¤Îñ¸ì¤Ï %s ¤Î %d ¹ÔÌܤǤ¹: %s"
+msgid "E59: invalid character after %s@"
+msgstr "E59: %s@ ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
#, c-format
-msgid "%d duplicate word(s) in %s"
-msgstr "%d ¸Ä¤Îñ¸ì¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿ (%s Æâ)"
+msgid "E60: Too many complex %s{...}s"
+msgstr "E60: Ê£»¨¤Ê %s{...} ¤¬Â¿²á¤®¤Þ¤¹"
#, c-format
-msgid "Ignored %d word(s) with non-ASCII characters in %s"
-msgstr "ÈóASCIIʸ»ú¤ò´Þ¤à %d ¸Ä¤Îñ¸ì¤ò̵»ë¤·¤Þ¤·¤¿ (%s Æâ)"
+msgid "E61: Nested %s*"
+msgstr "E61:%s* ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "Reading word file %s ..."
-msgstr "ɸ½àÆþÎϤ«¤éÆÉ¹þ¤ßÃæ %s ..."
+msgid "E62: Nested %s%c"
+msgstr "E62:%s%c ¤¬Æþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "Duplicate /encoding= line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+#
+msgid "E63: invalid use of \\_"
+msgstr "E63: \\_ ¤Î̵¸ú¤Ê»ÈÍÑÊýË¡¤Ç¤¹"
#, c-format
-msgid "/encoding= line after word ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠñ¸ì¤Î¸å¤Î /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+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 et al. not allowed here"
+msgstr "E67: \\z1 ¤½¤Î¾¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+
+#
+msgid "E68: Invalid character after \\z"
+msgstr "E68: \\z ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+
+#
#, c-format
-msgid "Duplicate /regions= line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /regions= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: %s%%[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Too many regions in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ, ÈϰϻØÄ꤬¿¤¹¤®¤Þ¤¹: %s"
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] ¤¬¶õ¤Ç¤¹"
+#
#, c-format
-msgid "/ line ignored in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ / ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: %s%%[dxouU] ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+#
#, c-format
-msgid "Invalid region nr in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ Ìµ¸ú¤Ê nr Îΰè¤Ç¤¹: %s"
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: %s%% ¤Î¸å¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤·¤¿"
+#
#, c-format
-msgid "Unrecognized flags in %s line %d: %s"
-msgstr "%s ¤Î %d ¹ÔÌÜ Ç§¼±ÉÔǽ¤Ê¥Õ¥é¥°¤Ç¤¹: %s"
+msgid "E769: Missing ] after %s["
+msgstr "E769: %s[ ¤Î¸å¤Ë ] ¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Ignored %d words with non-ASCII characters"
-msgstr "ÈóASCIIʸ»ú¤ò´Þ¤à %d ¸Ä¤Îñ¸ì¤ò̵»ë¤·¤Þ¤·¤¿"
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: %s{...} Æâ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: ¥á¥â¥ê¤¬Â¤ê¤Ê¤¤¤Î¤Ç¡¢Ã±¸ì¥ê¥¹¥È¤ÏÉÔ´°Á´¤Ç¤¹"
+msgid "External submatches:\n"
+msgstr "³°Éô¤ÎÉôʬ³ºÅö:\n"
-#, c-format
-msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
-msgstr "¥Î¡¼¥É %d ¸Ä(Á´ %d ¸ÄÃæ) ¤ò°µ½Ì¤·¤Þ¤·¤¿; »Ä¤ê %d (%d%%)"
+msgid " VREPLACE"
+msgstr " ²¾ÁÛÃÖ´¹"
-msgid "Reading back spell file..."
-msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤òµÕÆÉ¹þÃæ"
+msgid " REPLACE"
+msgstr " ÃÖ´¹"
-#.
-#. * Go through the trie of good words, soundfold each word and add it to
-#. * the soundfold trie.
-#.
-msgid "Performing soundfolding..."
-msgstr "²»À¼¾ö¹þ¤ß¤ò¼Â¹ÔÃæ..."
+msgid " REVERSE"
+msgstr " ȿž"
-#, c-format
-msgid "Number of words after soundfolding: %ld"
-msgstr "²»À¼¾ö¹þ¤ß¸å¤ÎÁíñ¸ì¿ô: %ld"
+msgid " INSERT"
+msgstr " ÁÞÆþ"
-#, c-format
-msgid "Total number of words: %d"
-msgstr "Áíñ¸ì¿ô: %d"
+msgid " (insert)"
+msgstr " (ÁÞÆþ)"
-#, c-format
-msgid "Writing suggestion file %s ..."
-msgstr "½¤Àµ¸õÊä¥Õ¥¡¥¤¥ë \"%s\" ¤ò½ñ¹þ¤ßÃæ..."
+msgid " (replace)"
+msgstr " (ÃÖ´¹)"
-#, c-format
-msgid "Estimated runtime memory use: %d bytes"
-msgstr "¿äÄê¥á¥â¥ê»ÈÍÑÎÌ: %d ¥Ð¥¤¥È"
+msgid " (vreplace)"
+msgstr " (²¾ÁÛÃÖ´¹)"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤Ë¤ÏÈϰÏ̾¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
+msgid " Hebrew"
+msgstr " ¥Ø¥Ö¥é¥¤"
-msgid "E754: Only up to 8 regions supported"
-msgstr "E754: ÈÏ°Ï¤Ï 8 ¸Ä¤Þ¤Ç¤·¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid " Arabic"
+msgstr " ¥¢¥é¥Ó¥¢"
-#, c-format
-msgid "E755: Invalid region in %s"
-msgstr "E755: ̵¸ú¤ÊÈϰϤǤ¹: %s"
+msgid " (lang)"
+msgstr " (¸À¸ì)"
-msgid "Warning: both compounding and NOBREAK specified"
-msgstr "·Ù¹ð: Ê£¹ç¥Õ¥é¥°¤È NOBREAK ¤¬Î¾Êý¤È¤â»ØÄꤵ¤ì¤Þ¤·¤¿"
+msgid " (paste)"
+msgstr " (ޤêÉÕ¤±)"
-#, c-format
-msgid "Writing spell file %s ..."
-msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë %s ¤ò½ñ¹þ¤ßÃæ..."
+msgid " VISUAL"
+msgstr " ¥Ó¥¸¥å¥¢¥ë"
-msgid "Done!"
-msgstr "¼Â¹Ô¤·¤Þ¤·¤¿!"
+msgid " VISUAL LINE"
+msgstr " ¥Ó¥¸¥å¥¢¥ë ¹Ô"
-#, c-format
-msgid "E765: 'spellfile' does not have %ld entries"
-msgstr "E765: 'spellfile' ¤Ë¤Ï %ld ¸Ä¤Î¥¨¥ó¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid " VISUAL BLOCK"
+msgstr " ¥Ó¥¸¥å¥¢¥ë ¶ë·Á"
-#, c-format
-msgid "Word removed from %s"
-msgstr "%s ¤«¤éñ¸ì¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿"
+msgid " SELECT"
+msgstr " ¥»¥ì¥¯¥È"
-#, c-format
-msgid "Word added to %s"
-msgstr "%s ¤Ëñ¸ì¤¬Äɲ䵤ì¤Þ¤·¤¿"
+msgid " SELECT LINE"
+msgstr " ¹Ô»Ø¸þÁªÂò"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: ñ¸ì¤Îʸ»ú¤¬¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤È°Û¤Ê¤ê¤Þ¤¹"
+msgid " SELECT BLOCK"
+msgstr " ¶ë·ÁÁªÂò"
-msgid "Sorry, no suggestions"
-msgstr "»Äǰ¤Ç¤¹¤¬, ½¤Àµ¸õÊä¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "recording"
+msgstr "µÏ¿Ãæ"
#, c-format
-msgid "Sorry, only %ld suggestions"
-msgstr "»Äǰ¤Ç¤¹¤¬, ½¤Àµ¸õÊä¤Ï %ld ¸Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
-
-#. for when 'cmdheight' > 1
-#. avoid more prompt
-#, c-format
-msgid "Change \"%.*s\" to:"
-msgstr "\"%.*s\" ¤ò¼¡¤ØÊÑ´¹:"
+msgid "E383: Invalid search string: %s"
+msgstr "E383: ̵¸ú¤Ê¸¡º÷ʸ»úÎó¤Ç¤¹: %s"
#, c-format
-msgid " < \"%.*s\""
-msgstr " < \"%.*s\""
-
-msgid "E752: No previous spell replacement"
-msgstr "E752: ¥¹¥Ú¥ëÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: ¾å¤Þ¤Ç¸¡º÷¤·¤¿¤±¤ì¤É³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
#, c-format
-msgid "E753: Not found: %s"
-msgstr "E753: ¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: ²¼¤Þ¤Ç¸¡º÷¤·¤¿¤±¤ì¤É³ºÅö²Õ½ê¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-#, c-format
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: .sug ¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹: %s"
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: ';' ¤Î¤¢¤È¤Ë¤Ï '?' ¤« '/' ¤¬´üÂÔ¤µ¤ì¤Æ¤¤¤ë"
-#, c-format
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: ¸Å¤¤ .sug ¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç, ¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤: %s"
+msgid " (includes previously listed match)"
+msgstr " (Á°¤ËÎóµó¤·¤¿³ºÅö²Õ½ê¤ò´Þ¤à)"
-#, c-format
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΠ.sug ¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
+#. cursor at status line
+msgid "--- Included files "
+msgstr "--- ¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë"
-#, c-format
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: .sug ¥Õ¥¡¥¤¥ë¤¬ .spl ¥Õ¥¡¥¤¥ë¤È°ìÃפ·¤Þ¤»¤ó: %s"
+msgid "not found "
+msgstr "¤ß¤Ä¤«¤ê¤Þ¤»¤ó "
-#, c-format
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: .sug ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿: %s"
+msgid "in path ---\n"
+msgstr "¥Ñ¥¹¤Ë ----\n"
-#. This should have been checked when generating the .spl
-#. * file.
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: MAP ¥¨¥ó¥È¥ê¤Ë½Åʣʸ»ú¤¬Â¸ºß¤·¤Þ¤¹"
+msgid " (Already listed)"
+msgstr " (´û¤ËÎóµó)"
-#, c-format
-msgid "E390: Illegal argument: %s"
-msgstr "E390: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+msgid " NOT FOUND"
+msgstr " ¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "Scanning included file: %s"
+msgstr "¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥¹¥¥ã¥óÃæ: %s"
-msgid "No Syntax items defined for this buffer"
-msgstr "¤³¤Î¥Ð¥Ã¥Õ¥¡¤ËÄêµÁ¤µ¤ì¤¿¹½Ê¸Í×ÁǤϤ¢¤ê¤Þ¤»¤ó"
+#, c-format
+msgid "Searching included file %s"
+msgstr "¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥¹¥¥ã¥óÃæ %s"
-msgid "syncing on C-style comments"
-msgstr "C¸À¸ìÉ÷¥³¥á¥ó¥È¤«¤éƱ´üÃæ"
+msgid "E387: Match is on current line"
+msgstr "E387: ¸½ºß¹Ô¤Ë³ºÅö¤¬¤¢¤ê¤Þ¤¹"
-msgid "no syncing"
-msgstr "È󯱴ü"
+msgid "All included files were found"
+msgstr "Á´¤Æ¤Î¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤¬¤ß¤Ä¤«¤ê¤Þ¤·¤¿"
-msgid "syncing starts "
-msgstr "Ʊ´ü³«»Ï "
+msgid "No included files"
+msgstr "¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
-msgid " lines before top line"
-msgstr " ¹ÔÁ°(¥È¥Ã¥×¹Ô¤è¤ê¤â)"
+msgid "E388: Couldn't find definition"
+msgstr "E388: ÄêµÁ¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid ""
-"\n"
-"--- Syntax sync items ---"
-msgstr ""
-"\n"
-"--- ¹½Ê¸Æ±´üÍ×ÁÇ ---"
+msgid "E389: Couldn't find pattern"
+msgstr "E389: ¥Ñ¥¿¡¼¥ó¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid ""
-"\n"
-"syncing on items"
-msgstr ""
-"\n"
-"Í×ÁǾå¤ÇƱ´üÃæ"
+msgid "Substitute "
+msgstr "Substitute "
+#, c-format
msgid ""
"\n"
-"--- Syntax items ---"
+"# Last %sSearch Pattern:\n"
+"~"
msgstr ""
"\n"
-"--- ¹½Ê¸Í×ÁÇ ---"
+"# ºÇ¸å¤Î %s¸¡º÷¥Ñ¥¿¡¼¥ó:\n"
+"~"
-#, c-format
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "E759: Format error in spell file"
+msgstr "E759: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Î½ñ¼°¥¨¥é¡¼¤Ç¤¹"
-msgid "minimal "
-msgstr "minimal"
+msgid "E758: Truncated spell file"
+msgstr "E758: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤¬ÀÚ¼è¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
-msgid "maximal "
-msgstr "maximal"
+#, c-format
+msgid "Trailing text in %s line %d: %s"
+msgstr "%s (%d ¹ÔÌÜ) ¤Ë³¤¯¥Æ¥¥¹¥È: %s"
-msgid "; match "
-msgstr "; ³ºÅö "
+#, c-format
+msgid "Affix name too long in %s line %d: %s"
+msgstr "%s (%d ¹ÔÌÜ) ¤Î affix ̾¤¬Ä¹²á¤®¤Þ¤¹: %s"
-msgid " line breaks"
-msgstr " ¸Ä¤Î²þ¹Ô"
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr ""
+"E761: affix¥Õ¥¡¥¤¥ë¤Î FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: ¤³¤Î¾ì½ê¤Ç¤Ï°ú¿ôcontains¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: FOL, LOW ¤â¤·¤¯¤Ï UPP ¤Îʸ»ú¤¬Èϰϳ°¤Ç¤¹"
-msgid "E844: invalid cchar value"
-msgstr "E844: ̵¸ú¤Êcchar¤ÎÃͤǤ¹"
+msgid "Compressing word tree..."
+msgstr "ñ¸ì¥Ä¥ê¡¼¤ò°µ½Ì¤·¤Æ¤¤¤Þ¤¹..."
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: ¤³¤³¤Ç¤Ï¥°¥ë¡¼¥×¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+msgid "E756: Spell checking is not enabled"
+msgstr "E756: ¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¤Ï̵¸ú²½¤µ¤ì¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: %s ¤ÎÈϰÏÍ×ÁǤ¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-
-msgid "E397: Filename required"
-msgstr "E397: ¥Õ¥¡¥¤¥ë̾¤¬É¬ÍפǤ¹"
+msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
+msgstr ""
+"·Ù¹ð: ñ¸ì¥ê¥¹¥È \"%s_%s.spl\" ¤ª¤è¤Ó \"%s_ascii.spl\" ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E789: Missing ']': %s"
-msgstr "E789: ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""
+msgstr ""
+"·Ù¹ð: ñ¸ì¥ê¥¹¥È \"%s.%s.spl\" ¤ª¤è¤Ó \"%s.ascii.spl\" ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó"
#, c-format
-msgid "E398: Missing '=': %s"
-msgstr "E398: '=' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "Reading spell file \"%s\""
+msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤òÆÉ¹þÃæ"
-#, c-format
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: °ú¿ô¤¬Â¤ê¤Þ¤»¤ó: ¹½Ê¸ÈÏ°Ï %s"
+msgid "E757: This does not look like a spell file"
+msgstr "E757: ¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹"
-msgid "E400: No cluster specified"
-msgstr "E400: ¥¯¥é¥¹¥¿¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+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 "E401: Pattern delimiter not found: %s"
-msgstr "E401: ¥Ñ¥¿¡¼¥ó¶èÀڤ꤬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+msgid "Warning: region %s not supported"
+msgstr "·Ù¹ð9: %s ¤È¤¤¤¦ÈϰϤϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: ¥Ñ¥¿¡¼¥ó¤Î¤¢¤È¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹: %s"
+msgid "Reading affix file %s ..."
+msgstr "affix ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þÃæ..."
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr "E403: ¹½Ê¸Æ±´ü: Ϣ³¹Ô¥Ñ¥¿¡¼¥ó¤¬2ÅÙ»ØÄꤵ¤ì¤Þ¤·¤¿"
+#, c-format
+msgid "Conversion failure for word in %s line %d: %s"
+msgstr "%s (%d ¹ÔÌÜ) ¤Îñ¸ì¤òÊÑ´¹¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿: %s"
#, c-format
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+msgid "Conversion in %s not supported: from %s to %s"
+msgstr "%s Æâ¤Î¼¡¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s ¤«¤é %s ¤Ø"
#, c-format
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: Åù¤·¤¤ sign ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "Conversion in %s not supported"
+msgstr "%s Æâ¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "E406: Empty argument: %s"
-msgstr "E406: ¶õ¤Î°ú¿ô: %s"
+msgid "Invalid value for FLAG in %s line %d: %s"
+msgstr "%s Æâ¤Î %d ¹ÔÌܤΠFLAG ¤Ë̵¸ú¤ÊÃͤ¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E407: %s not allowed here"
-msgstr "E407: %s ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "FLAG after using flags in %s line %d: %s"
+msgstr "%s Æâ¤Î %d ¹ÔÌܤ˥ե饰¤ÎÆó½Å»ÈÍѤ¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s ¤ÏÆâÍÆ¥ê¥¹¥È¤ÎÀèÆ¬¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤"
+msgid ""
+"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line "
+"%d"
+msgstr ""
+"%s ¤Î %d ¹ÔÌܤΠPFX ¹àÌܤθå¤Î COMPOUNDFORBIDFLAG ¤ÎÄêµÁ¤Ï¸í¤Ã¤¿·ë²Ì¤òÀ¸¤¸¤ë"
+"¤³¤È¤¬¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "E409: Unknown group name: %s"
-msgstr "E409: ̤ÃΤΥ°¥ë¡¼¥×̾: %s"
+msgid ""
+"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line "
+"%d"
+msgstr ""
+"%s ¤Î %d ¹ÔÌܤΠPFX ¹àÌܤθå¤Î COMPOUNDPERMITFLAG ¤ÎÄêµÁ¤Ï¸í¤Ã¤¿·ë²Ì¤òÀ¸¤¸¤ë"
+"¤³¤È¤¬¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: ̵¸ú¤Ê :syntax ¤Î¥µ¥Ö¥³¥Þ¥ó¥É: %s"
+msgid "Wrong COMPOUNDRULES value in %s line %d: %s"
+msgstr "COMPOUNDRULES ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹. ¥Õ¥¡¥¤¥ë %s ¤Î %d ¹ÔÌÜ: %s"
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: syncolor.vim ¤ÎºÆµ¢¸Æ¤Ó½Ð¤·¤ò¸¡½Ð¤·¤Þ¤·¤¿"
+#, c-format
+msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDWORDMAX ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E411: highlight group not found: %s"
-msgstr "E411: ¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDMIN ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: °ú¿ô¤¬½¼Ê¬¤Ç¤Ï¤Ê¤¤: \":highlight link %s\""
+msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠCOMPOUNDSYLMAX ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹: \":highlight link %s\""
+msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠCHECKCOMPOUNDPATTERN ¤ÎÃͤ˸í¤ê¤¬¤¢¤ê¤Þ¤¹: %s"
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: ¥°¥ë¡¼¥×¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç¥Ï¥¤¥é¥¤¥È¥ê¥ó¥¯¤Ï̵»ë¤µ¤ì¤Þ¤¹"
+#, c-format
+msgid "Different combining flag in continued affix block in %s line %d: %s"
+msgstr ""
+"%s ¤Î %d ¹ÔÌܤΠϢ³ affix ¥Ö¥í¥Ã¥¯¤Î¥Õ¥é¥°¤ÎÁȹ礻¤Ë°ã¤¤¤¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: ͽ´ü¤»¤ÌƱ¤¸ sign ¤Ç¤¹: %s"
+msgid "Duplicate affix in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë ½ÅÊ£¤·¤¿ affix ¤ò¸¡½Ð¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "E416: missing equal sign: %s"
-msgstr "E416: Ʊ¤¸ sign ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid ""
+"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
+"line %d: %s"
+msgstr ""
+"%s ¤Î %d ¹ÔÌܤΠaffix ¤Ï BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
+"¤Ë»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤: %s"
#, c-format
-msgid "E417: missing argument: %s"
-msgstr "E417: °ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "Expected Y or N in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ç¤Ï Y ¤« N ¤¬É¬ÍפǤ¹: %s"
#, c-format
-msgid "E418: Illegal value: %s"
-msgstr "E418: ÉÔÀµ¤ÊÃͤǤ¹: %s"
+msgid "Broken condition in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠ¾ò·ï¤Ï²õ¤ì¤Æ¤¤¤Þ¤¹: %s"
-msgid "E419: FG color unknown"
-msgstr "E419: ̤ÃΤÎÁ°·Ê¿§¤Ç¤¹"
+#, c-format
+msgid "Expected REP(SAL) count in %s line %d"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë¤Ï REP(SAL) ¤Î²ó¿ô¤¬É¬ÍפǤ¹"
-msgid "E420: BG color unknown"
-msgstr "E420: ̤ÃΤÎÇØ·Ê¿§¤Ç¤¹"
+#, c-format
+msgid "Expected MAP count in %s line %d"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë¤Ï MAP ¤Î²ó¿ô¤¬É¬ÍפǤ¹"
#, c-format
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: ¥«¥é¡¼Ì¾¤äÈÖ¹æ¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
+msgid "Duplicate character in MAP in %s line %d"
+msgstr "%s ¤Î %d ¹ÔÌܤΠMAP ¤Ë½ÅÊ£¤·¤¿Ê¸»ú¤¬¤¢¤ê¤Þ¤¹"
#, c-format
-msgid "E422: terminal code too long: %s"
-msgstr "E422: ½ªÃ¼¥³¡¼¥É¤¬Ä¹²á¤®¤Þ¤¹: %s"
+msgid "Unrecognized or duplicate item in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ë Ç§¼±¤Ç¤¤Ê¤¤¤«½ÅÊ£¤·¤¿¹àÌܤ¬¤¢¤ê¤Þ¤¹: %s"
#, c-format
-msgid "E423: Illegal argument: %s"
-msgstr "E423: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
+msgid "Missing FOL/LOW/UPP line in %s"
+msgstr "%s ¹ÔÌÜ¤Ë FOL/LOW/UPP ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: ¿¤¯¤Î°Û¤Ê¤ë¥Ï¥¤¥é¥¤¥È°À¤¬»È¤ï¤ì²á¤®¤Æ¤¤¤Þ¤¹"
+msgid "COMPOUNDSYLMAX used without SYLLABLE"
+msgstr "SYLLABLE ¤¬»ØÄꤵ¤ì¤Ê¤¤ COMPOUNDSYLMAX"
-msgid "E669: Unprintable character in group name"
-msgstr "E669: ¥°¥ë¡¼¥×̾¤Ë°õºþÉÔ²Äǽ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
+msgid "Too many postponed prefixes"
+msgstr "ÃÙ±ä¸åÃÖ»Ò¤¬Â¿²á¤®¤Þ¤¹"
-msgid "W18: Invalid character in group name"
-msgstr "W18: ¥°¥ë¡¼¥×̾¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
+msgid "Too many compound flags"
+msgstr "Ê£¹ç¥Õ¥é¥°¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E555: at bottom of tag stack"
-msgstr "E555: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
+msgid "Too many postponed prefixes and/or compound flags"
+msgstr "ÃÙ±ä¸åÃÖ»Ò ¤È/¤â¤·¤¯¤Ï Ê£¹ç¥Õ¥é¥°¤¬Â¿²á¤®¤Þ¤¹"
-msgid "E556: at top of tag stack"
-msgstr "E556: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
+#, c-format
+msgid "Missing SOFO%s line in %s"
+msgstr "SOFO%s ¹Ô¤¬ %s ¤Ë¤¢¤ê¤Þ¤»¤ó"
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: ºÇ½é¤Î³ºÅö¥¿¥°¤òͤ¨¤ÆÌá¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "Both SAL and SOFO lines in %s"
+msgstr "SAL¹Ô ¤È SOFO¹Ô ¤¬ %s ¤ÇξÊý»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
#, c-format
-msgid "E426: tag not found: %s"
-msgstr "E426: ¥¿¥°¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
+msgid "Flag is not a number in %s line %d: %s"
+msgstr "%s ¤Î %d ¹Ô¤Î ¥Õ¥é¥°¤¬¿ôÃͤǤϤ¢¤ê¤Þ¤»¤ó: %s"
-msgid " # pri kind tag"
-msgstr " # pri kind tag"
+#, c-format
+msgid "Illegal flag in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠ¥Õ¥é¥°¤¬ÉÔÀµ¤Ç¤¹: %s"
-msgid "file\n"
-msgstr "¥Õ¥¡¥¤¥ë\n"
+#, c-format
+msgid "%s value differs from what is used in another .aff file"
+msgstr "ÃÍ %s ¤Ï¾¤Î .aff ¥Õ¥¡¥¤¥ë¤Ç»ÈÍѤµ¤ì¤¿¤Î¤È°Û¤Ê¤ê¤Þ¤¹"
-msgid "E427: There is only one matching tag"
-msgstr "E427: ³ºÅö¥¿¥°¤¬1¤Ä¤À¤±¤·¤«¤¢¤ê¤Þ¤»¤ó"
+#, c-format
+msgid "Reading dictionary file %s ..."
+msgstr "¼½ñ¥Õ¥¡¥¤¥ë %s ¤ò¥¹¥¥ã¥óÃæ..."
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: ºÇ¸å¤Ë³ºÅö¤¹¤ë¥¿¥°¤òͤ¨¤Æ¿Ê¤à¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+#, c-format
+msgid "E760: No word count in %s"
+msgstr "E760: %s ¤Ë¤Ïñ¸ì¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "File \"%s\" does not exist"
-msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "line %6d, word %6d - %s"
+msgstr "¹Ô %6d, ñ¸ì %6d - %s"
-#. Give an indication of the number of matching tags
#, c-format
-msgid "tag %d of %d%s"
-msgstr "¥¿¥° %d (Á´%d%s)"
+msgid "Duplicate word in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ¤Ç ½Åʣñ¸ì¤¬¤ß¤Ä¤«¤ê¤Þ¤·¤¿: %s"
-msgid " or more"
-msgstr " ¤«¤½¤ì°Ê¾å"
+#, c-format
+msgid "First duplicate word in %s line %d: %s"
+msgstr "½ÅÊ£¤Î¤¦¤ÁºÇ½é¤Îñ¸ì¤Ï %s ¤Î %d ¹ÔÌܤǤ¹: %s"
-msgid " Using tag with different case!"
-msgstr " ¥¿¥°¤ò°Û¤Ê¤ëcase¤Ç»ÈÍѤ·¤Þ¤¹!"
+#, c-format
+msgid "%d duplicate word(s) in %s"
+msgstr "%d ¸Ä¤Îñ¸ì¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿ (%s Æâ)"
#, c-format
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: ¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Ignored %d word(s) with non-ASCII characters in %s"
+msgstr "ÈóASCIIʸ»ú¤ò´Þ¤à %d ¸Ä¤Îñ¸ì¤ò̵»ë¤·¤Þ¤·¤¿ (%s Æâ)"
-#. Highlight title
-msgid ""
-"\n"
-" # TO tag FROM line in file/text"
-msgstr ""
-"\n"
-" # TO ¥¿¥° FROM ¹Ô in file/text"
+#, c-format
+msgid "Reading word file %s ..."
+msgstr "ɸ½àÆþÎϤ«¤éÆÉ¹þ¤ßÃæ %s ..."
#, c-format
-msgid "Searching tags file %s"
-msgstr "¥¿¥°¥Õ¥¡¥¤¥ë %s ¤ò¸¡º÷Ãæ"
+msgid "Duplicate /encoding= line ignored in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: ¥¿¥°¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤¬ %s ¤ËÀÚ¤ê¼Î¤Æ¤é¤ì¤Þ¤·¤¿\n"
+msgid "/encoding= line after word ignored in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠñ¸ì¤Î¸å¤Î /encoding= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: ¥¿¥°¥Õ¥¡¥¤¥ë \"%s\" ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
+msgid "Duplicate /regions= line ignored in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ /regions= ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
#, c-format
-msgid "Before byte %ld"
-msgstr "ľÁ°¤Î %ld ¥Ð¥¤¥È"
+msgid "Too many regions in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ, ÈϰϻØÄ꤬¿²á¤®¤Þ¤¹: %s"
#, c-format
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¥½¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
+msgid "/ line ignored in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌܤΠ½ÅÊ£¤·¤¿ / ¹Ô¤ò̵»ë¤·¤Þ¤·¤¿: %s"
-#. never opened any tags file
-msgid "E433: No tags file"
-msgstr "E433: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
+#, c-format
+msgid "Invalid region nr in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ Ìµ¸ú¤Ê nr Îΰè¤Ç¤¹: %s"
-msgid "Ignoring long line in tags file"
-msgstr "¥¿¥°¥Õ¥¡¥¤¥ëÆâ¤ÎŤ¤¹Ô¤ò̵»ë¤·¤Þ¤¹"
+#, c-format
+msgid "Unrecognized flags in %s line %d: %s"
+msgstr "%s ¤Î %d ¹ÔÌÜ Ç§¼±ÉÔǽ¤Ê¥Õ¥é¥°¤Ç¤¹: %s"
-msgid "E434: Can't find tag pattern"
-msgstr "E434: ¥¿¥°¥Ñ¥¿¡¼¥ó¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "Ignored %d words with non-ASCII characters"
+msgstr "ÈóASCIIʸ»ú¤ò´Þ¤à %d ¸Ä¤Îñ¸ì¤ò̵»ë¤·¤Þ¤·¤¿"
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: ¥¿¥°¤ò¤ß¤Ä¤±¤é¤ì¤Ê¤¤¤Î¤Çñ¤Ë¿ä¬¤·¤Þ¤¹!"
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: ¥á¥â¥ê¤¬Â¤ê¤Ê¤¤¤Î¤Ç¡¢Ã±¸ì¥ê¥¹¥È¤ÏÉÔ´°Á´¤Ç¤¹"
#, c-format
-msgid "Duplicate field name: %s"
-msgstr "½ÅÊ£¤·¤¿¥Õ¥£¡¼¥ë¥É̾: %s"
-
-msgid "' not known. Available builtin terminals are:"
-msgstr "' ¤Ï̤ÃΤǤ¹. ¸½¹Ô¤ÎÁȤ߹þ¤ßüËö¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹:"
+msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
+msgstr "¥Î¡¼¥É %d ¸Ä(Á´ %d ¸ÄÃæ) ¤ò°µ½Ì¤·¤Þ¤·¤¿; »Ä¤ê %d (%d%%)"
-msgid "defaulting to '"
-msgstr "¾ÊάÃͤò¼¡¤Î¤è¤¦¤ËÀßÄꤷ¤Þ¤¹ '"
+msgid "Reading back spell file..."
+msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤òµÕÆÉ¹þÃæ"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: termcap¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
+#.
+#. * Go through the trie of good words, soundfold each word and add it to
+#. * the soundfold trie.
+#.
+msgid "Performing soundfolding..."
+msgstr "²»À¼¾ö¹þ¤ß¤ò¼Â¹ÔÃæ..."
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: terminfo¤ËüËö¥¨¥ó¥È¥ê¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "Number of words after soundfolding: %ld"
+msgstr "²»À¼¾ö¹þ¤ß¸å¤ÎÁíñ¸ì¿ô: %ld"
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: termcap¤ËüËö¥¨¥ó¥È¥ê¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "Total number of words: %d"
+msgstr "Áíñ¸ì¿ô: %d"
#, c-format
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: termcap¤Ë \"%s\" ¤Î¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Writing suggestion file %s ..."
+msgstr "½¤Àµ¸õÊä¥Õ¥¡¥¤¥ë \"%s\" ¤ò½ñ¹þ¤ßÃæ..."
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: üËö¤Ë \"cm\" µ¡Ç½¤¬É¬ÍפǤ¹"
+#, c-format
+msgid "Estimated runtime memory use: %d bytes"
+msgstr "¿äÄê¥á¥â¥ê»ÈÍÑÎÌ: %d ¥Ð¥¤¥È"
-#. Highlight title
-msgid ""
-"\n"
-"--- Terminal keys ---"
-msgstr ""
-"\n"
-"--- üËö¥¡¼ ---"
+msgid "E751: Output file name must not have region name"
+msgstr "E751: ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤Ë¤ÏÈϰÏ̾¤ò´Þ¤á¤é¤ì¤Þ¤»¤ó"
-msgid "new shell started\n"
-msgstr "¿·¤·¤¤¥·¥§¥ë¤òµ¯Æ°¤·¤Þ¤¹\n"
+msgid "E754: Only up to 8 regions supported"
+msgstr "E754: ÈÏ°Ï¤Ï 8 ¸Ä¤Þ¤Ç¤·¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "Vim: Error reading input, exiting...\n"
-msgstr "Vim: ÆþÎϤòÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ë¤è¤ê½ªÎ»¤·¤Þ¤¹...\n"
+#, c-format
+msgid "E755: Invalid region in %s"
+msgstr "E755: ̵¸ú¤ÊÈϰϤǤ¹: %s"
-msgid "Used CUT_BUFFER0 instead of empty selection"
-msgstr "¶õ¤ÎÁªÂòÎΰè¤Î¤«¤ï¤ê¤ËCUT_BUFFER0¤¬»ÈÍѤµ¤ì¤Þ¤·¤¿"
+msgid "Warning: both compounding and NOBREAK specified"
+msgstr "·Ù¹ð: Ê£¹ç¥Õ¥é¥°¤È NOBREAK ¤¬Î¾Êý¤È¤â»ØÄꤵ¤ì¤Þ¤·¤¿"
-#. This happens when the FileChangedRO autocommand changes the
-#. * file in a way it becomes shorter.
-msgid "E834: Line count changed unexpectedly"
-msgstr "E834: ͽ´ü¤»¤º¹Ô¥«¥¦¥ó¥È¤¬ÊѤï¤ê¤Þ¤·¤¿"
+#, c-format
+msgid "Writing spell file %s ..."
+msgstr "¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë %s ¤ò½ñ¹þ¤ßÃæ..."
-#. must display the prompt
-msgid "No undo possible; continue anyway"
-msgstr "²Äǽ¤Ê¥¢¥ó¥É¥¥¤Ï¤¢¤ê¤Þ¤»¤ó: ¤È¤ê¤¢¤¨¤ºÂ³¤±¤Þ¤¹"
+msgid "Done!"
+msgstr "¼Â¹Ô¤·¤Þ¤·¤¿!"
#, c-format
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: ½ñ¹þ¤ßÍѤ˥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: %s"
+msgid "E765: 'spellfile' does not have %ld entries"
+msgstr "E765: 'spellfile' ¤Ë¤Ï %ld ¸Ä¤Î¥¨¥ó¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
#, 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'¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò½ñ¤¹þ¤á¤Þ¤»¤ó"
+msgid "Word removed from %s"
+msgstr "%s ¤«¤éñ¸ì¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿"
#, c-format
-msgid "Will not overwrite with undo file, cannot read: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤È¤·¤ÆÆÉ¤ß¹þ¤á¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
+msgid "Word added to %s"
+msgstr "%s ¤Ëñ¸ì¤¬Äɲ䵤ì¤Þ¤·¤¿"
-#, c-format
-msgid "Will not overwrite, this is not an undo file: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: ñ¸ì¤Îʸ»ú¤¬¥¹¥Ú¥ë¥Õ¥¡¥¤¥ë¤È°Û¤Ê¤ê¤Þ¤¹"
-msgid "Skipping undo file write, nothing to undo"
-msgstr "Âоݤ¬¤Ê¤¤¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
+msgid "Sorry, no suggestions"
+msgstr "»Äǰ¤Ç¤¹¤¬, ½¤Àµ¸õÊä¤Ï¤¢¤ê¤Þ¤»¤ó"
#, c-format
-msgid "Writing undo file: %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë½ñ¤¹þ¤ßÃæ: %s"
+msgid "Sorry, only %ld suggestions"
+msgstr "»Äǰ¤Ç¤¹¤¬, ½¤Àµ¸õÊä¤Ï %ld ¸Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
+#. for when 'cmdheight' > 1
+#. avoid more prompt
#, c-format
-msgid "E829: write error in undo file: %s"
-msgstr "E829: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¥¨¥é¡¼¤Ç¤¹: %s"
+msgid "Change \"%.*s\" to:"
+msgstr "\"%.*s\" ¤ò¼¡¤ØÊÑ´¹:"
#, c-format
-msgid "Not reading undo file, owner differs: %s"
-msgstr "¥ª¡¼¥Ê¡¼¤¬°Û¤Ê¤ë¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¤ß¹þ¤ß¤Þ¤»¤ó: %s"
+msgid " < \"%.*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"
+msgid "E752: No previous spell replacement"
+msgstr "E752: ¥¹¥Ú¥ëÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
#, c-format
-msgid "E823: Not an undo file: %s"
-msgstr "E823: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid "E753: Not found: %s"
+msgstr "E753: ¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
#, c-format
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: Èó°Å¹æ²½¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤Æ¤Þ¤¹: %s"
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: .sug ¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹: %s"
#, c-format
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: °Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î²òÆÉ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: ¸Å¤¤ .sug ¥Õ¥¡¥¤¥ë¤Ê¤Î¤Ç, ¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤: %s"
#, c-format
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: ¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î Vim ÍѤΠ.sug ¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
#, c-format
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: ¸ß´¹À¤Î̵¤¤¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
-
-msgid "File contents changed, cannot use undo info"
-msgstr "¥Õ¥¡¥¤¥ë¤ÎÆâÍÆ¤¬ÊѤï¤Ã¤Æ¤¤¤ë¤¿¤á¡¢¥¢¥ó¥É¥¥¾ðÊó¤òÍøÍѤǤ¤Þ¤»¤ó"
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: .sug ¥Õ¥¡¥¤¥ë¤¬ .spl ¥Õ¥¡¥¤¥ë¤È°ìÃפ·¤Þ¤»¤ó: %s"
#, c-format
-msgid "Finished reading undo file %s"
-msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë %s ¤Î¼è¹þ¤ò´°Î»"
-
-msgid "Already at oldest change"
-msgstr "´û¤Ë°ìÈָŤ¤Êѹ¹¤Ç¤¹"
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: .sug ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿: %s"
-msgid "Already at newest change"
-msgstr "´û¤Ë°ìÈÖ¿·¤·¤¤Êѹ¹¤Ç¤¹"
+#. This should have been checked when generating the .spl
+#. * file.
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: MAP ¥¨¥ó¥È¥ê¤Ë½Åʣʸ»ú¤¬Â¸ºß¤·¤Þ¤¹"
#, 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 "¹Ô Äɲä·¤Þ¤·¤¿"
-
-msgid "more lines"
-msgstr "¹Ô Äɲä·¤Þ¤·¤¿"
-
-msgid "line less"
-msgstr "¹Ô ºï½ü¤·¤Þ¤·¤¿"
-
-msgid "fewer lines"
-msgstr "¹Ô ºï½ü¤·¤Þ¤·¤¿"
-
-msgid "change"
-msgstr "²Õ½êÊѹ¹¤·¤Þ¤·¤¿"
-
-msgid "changes"
-msgstr "²Õ½êÊѹ¹¤·¤Þ¤·¤¿"
+msgid "E390: Illegal argument: %s"
+msgstr "E390: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
#, c-format
-msgid "%ld %s; %s #%ld %s"
-msgstr "%ld %s; %s #%ld %s"
-
-msgid "before"
-msgstr "Á°Êý"
-
-msgid "after"
-msgstr "¸åÊý"
-
-msgid "Nothing to undo"
-msgstr "¥¢¥ó¥É¥¥Âоݤ¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-msgid "number changes when saved"
-msgstr "ÄÌÈÖ Êѹ¹¿ô Êѹ¹»þ´ü ÊݸºÑ"
+msgid "No Syntax items defined for this buffer"
+msgstr "¤³¤Î¥Ð¥Ã¥Õ¥¡¤ËÄêµÁ¤µ¤ì¤¿¹½Ê¸Í×ÁǤϤ¢¤ê¤Þ¤»¤ó"
-#, c-format
-msgid "%ld seconds ago"
-msgstr "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹"
+msgid "syncing on C-style comments"
+msgstr "C¸À¸ìÉ÷¥³¥á¥ó¥È¤«¤éƱ´üÃæ"
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undo ¤Îľ¸å¤Ë undojoin ¤Ï¤Ç¤¤Þ¤»¤ó"
+msgid "no syncing"
+msgstr "È󯱴ü"
-msgid "E439: undo list corrupt"
-msgstr "E439: ¥¢¥ó¥É¥¥¥ê¥¹¥È¤¬²õ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "syncing starts "
+msgstr "Ʊ´ü³«»Ï "
-msgid "E440: undo line missing"
-msgstr "E440: ¥¢¥ó¥É¥¥¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid " lines before top line"
+msgstr " ¹ÔÁ°(¥È¥Ã¥×¹Ô¤è¤ê¤â)"
-#. Only MS VC 4.1 and earlier can do Win32s
msgid ""
"\n"
-"MS-Windows 16/32-bit GUI version"
+"--- Syntax sync items ---"
msgstr ""
"\n"
-"MS-Windows 16/32 ¥Ó¥Ã¥È GUI ÈÇ"
+"--- ¹½Ê¸Æ±´üÍ×ÁÇ ---"
msgid ""
"\n"
-"MS-Windows 64-bit GUI version"
+"syncing on items"
msgstr ""
"\n"
-"MS-Windows 64 ¥Ó¥Ã¥È GUI ÈÇ"
+"Í×ÁǾå¤ÇƱ´üÃæ"
msgid ""
"\n"
-"MS-Windows 32-bit GUI version"
+"--- Syntax items ---"
msgstr ""
"\n"
-"MS-Windows 32 ¥Ó¥Ã¥È GUI ÈÇ"
+"--- ¹½Ê¸Í×ÁÇ ---"
-msgid " in Win32s mode"
-msgstr " in Win32s ¥â¡¼¥É"
+#, c-format
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-msgid " with OLE support"
-msgstr " with OLE ¥µ¥Ý¡¼¥È"
+msgid "minimal "
+msgstr "minimal"
-msgid ""
-"\n"
-"MS-Windows 64-bit console version"
-msgstr ""
-"\n"
-"MS-Windows 64 ¥Ó¥Ã¥È ¥³¥ó¥½¡¼¥ë ÈÇ"
+msgid "maximal "
+msgstr "maximal"
-msgid ""
-"\n"
-"MS-Windows 32-bit console version"
-msgstr ""
-"\n"
-"MS-Windows 32 ¥Ó¥Ã¥È ¥³¥ó¥½¡¼¥ë ÈÇ"
+msgid "; match "
+msgstr "; ³ºÅö "
-msgid ""
-"\n"
-"MS-Windows 16-bit version"
-msgstr ""
-"\n"
-"MS-Windows 16 ¥Ó¥Ã¥È ÈÇ"
+msgid " line breaks"
+msgstr " ¸Ä¤Î²þ¹Ô"
-msgid ""
-"\n"
-"32-bit MS-DOS version"
-msgstr ""
-"\n"
-"32 ¥Ó¥Ã¥È MS-DOS ÈÇ"
+msgid "E395: contains argument not accepted here"
+msgstr "E395: ¤³¤Î¾ì½ê¤Ç¤Ï°ú¿ôcontains¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid ""
-"\n"
-"16-bit MS-DOS version"
-msgstr ""
-"\n"
-"16 ¥Ó¥Ã¥È MS-DOS ÈÇ"
+msgid "E844: invalid cchar value"
+msgstr "E844: ̵¸ú¤Êcchar¤ÎÃͤǤ¹"
-msgid ""
-"\n"
-"MacOS X (unix) version"
-msgstr ""
-"\n"
-"MacOS X (unix) ÈÇ"
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: ¤³¤³¤Ç¤Ï¥°¥ë¡¼¥×¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
-msgid ""
-"\n"
-"MacOS X version"
-msgstr ""
-"\n"
-"MacOS X ÈÇ"
+#, c-format
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: %s ¤ÎÈϰÏÍ×ÁǤ¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid ""
-"\n"
-"MacOS version"
-msgstr ""
-"\n"
-"MacOS ÈÇ"
+msgid "E397: Filename required"
+msgstr "E397: ¥Õ¥¡¥¤¥ë̾¤¬É¬ÍפǤ¹"
-msgid ""
-"\n"
-"RISC OS version"
-msgstr ""
-"\n"
-"RISC OS ÈÇ"
+msgid "E847: Too many syntax includes"
+msgstr "E847: ¹½Ê¸¤Î¼è¤ê¹þ¤ß(include)¤¬Â¿²á¤®¤Þ¤¹"
-msgid ""
-"\n"
-"OpenVMS version"
-msgstr ""
-"\n"
-"OpenVMS ÈÇ"
+#, c-format
+msgid "E789: Missing ']': %s"
+msgstr "E789: ']' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-msgid ""
-"\n"
-"Included patches: "
-msgstr ""
-"\n"
-"ŬÍѺѥѥåÁ: "
+#, c-format
+msgid "E398: Missing '=': %s"
+msgstr "E398: '=' ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-msgid ""
-"\n"
-"Extra patches: "
-msgstr ""
-"\n"
-"ÄɲóÈÄ¥¥Ñ¥Ã¥Á: "
+#, c-format
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: °ú¿ô¤¬Â¤ê¤Þ¤»¤ó: ¹½Ê¸ÈÏ°Ï %s"
-msgid "Modified by "
-msgstr "Modified by "
+msgid "E848: Too many syntax clusters"
+msgstr "E848: ¹½Ê¸¥¯¥é¥¹¥¿¤¬Â¿²á¤®¤Þ¤¹"
-msgid ""
-"\n"
-"Compiled "
-msgstr ""
-"\n"
-"Compiled "
+msgid "E400: No cluster specified"
+msgstr "E400: ¥¯¥é¥¹¥¿¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "by "
-msgstr "by "
+#, c-format
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: ¥Ñ¥¿¡¼¥ó¶èÀڤ꤬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-msgid ""
-"\n"
-"Huge version "
-msgstr ""
-"\n"
-"Huge ÈÇ "
+#, c-format
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: ¥Ñ¥¿¡¼¥ó¤Î¤¢¤È¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹: %s"
-msgid ""
-"\n"
-"Big version "
-msgstr ""
-"\n"
-"Big ÈÇ "
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr "E403: ¹½Ê¸Æ±´ü: Ϣ³¹Ô¥Ñ¥¿¡¼¥ó¤¬2ÅÙ»ØÄꤵ¤ì¤Þ¤·¤¿"
-msgid ""
-"\n"
-"Normal version "
-msgstr ""
-"\n"
-"Ä̾ï ÈÇ "
+#, c-format
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-msgid ""
-"\n"
-"Small version "
-msgstr ""
-"\n"
-"Small ÈÇ "
+#, c-format
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: Åù¹æ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-msgid ""
-"\n"
-"Tiny version "
-msgstr ""
-"\n"
-"Tiny ÈÇ "
+#, c-format
+msgid "E406: Empty argument: %s"
+msgstr "E406: ¶õ¤Î°ú¿ô: %s"
-msgid "without GUI."
-msgstr "without GUI."
+#, c-format
+msgid "E407: %s not allowed here"
+msgstr "E407: %s ¤Ï¥³¥³¤Ç¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-msgid "with GTK2-GNOME GUI."
-msgstr "with GTK2-GNOME GUI."
+#, c-format
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s ¤ÏÆâÍÆ¥ê¥¹¥È¤ÎÀèÆ¬¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤"
-msgid "with GTK2 GUI."
-msgstr "with GTK2 GUI."
+#, c-format
+msgid "E409: Unknown group name: %s"
+msgstr "E409: ̤ÃΤΥ°¥ë¡¼¥×̾: %s"
-msgid "with X11-Motif GUI."
-msgstr "with X11-Motif GUI."
+#, c-format
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: ̵¸ú¤Ê :syntax ¤Î¥µ¥Ö¥³¥Þ¥ó¥É: %s"
-msgid "with X11-neXtaw GUI."
-msgstr "with X11-neXtaw GUI."
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: syncolor.vim ¤ÎºÆµ¢¸Æ¤Ó½Ð¤·¤ò¸¡½Ð¤·¤Þ¤·¤¿"
-msgid "with X11-Athena GUI."
-msgstr "with X11-Athena GUI."
+#, c-format
+msgid "E411: highlight group not found: %s"
+msgstr "E411: ¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-msgid "with Photon GUI."
-msgstr "with Photon GUI."
+#, c-format
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: °ú¿ô¤¬½¼Ê¬¤Ç¤Ï¤Ê¤¤: \":highlight link %s\""
-msgid "with GUI."
-msgstr "with GUI."
+#, c-format
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: °ú¿ô¤¬Â¿²á¤®¤Þ¤¹: \":highlight link %s\""
-msgid "with Carbon GUI."
-msgstr "with Carbon GUI."
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: ¥°¥ë¡¼¥×¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¤Î¤Ç¥Ï¥¤¥é¥¤¥È¥ê¥ó¥¯¤Ï̵»ë¤µ¤ì¤Þ¤¹"
-msgid "with Cocoa GUI."
-msgstr "with Cocoa GUI."
+#, c-format
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: ͽ´ü¤»¤ÌÅù¹æ¤Ç¤¹: %s"
-msgid "with (classic) GUI."
-msgstr "with (¥¯¥é¥·¥Ã¥¯) GUI."
+#, c-format
+msgid "E416: missing equal sign: %s"
+msgstr "E416: Åù¹æ¤¬¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-msgid " Features included (+) or not (-):\n"
-msgstr " µ¡Ç½¤Î°ìÍ÷ ͸ú(+)/̵¸ú(-)\n"
+#, c-format
+msgid "E417: missing argument: %s"
+msgstr "E417: °ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-msgid " system vimrc file: \""
-msgstr " ¥·¥¹¥Æ¥à vimrc: \""
+#, c-format
+msgid "E418: Illegal value: %s"
+msgstr "E418: ÉÔÀµ¤ÊÃͤǤ¹: %s"
-msgid " user vimrc file: \""
-msgstr " ¥æ¡¼¥¶ vimrc: \""
+msgid "E419: FG color unknown"
+msgstr "E419: ̤ÃΤÎÁ°·Ê¿§¤Ç¤¹"
-msgid " 2nd user vimrc file: \""
-msgstr " Âè2¥æ¡¼¥¶ vimrc: \""
+msgid "E420: BG color unknown"
+msgstr "E420: ̤ÃΤÎÇØ·Ê¿§¤Ç¤¹"
-msgid " 3rd user vimrc file: \""
-msgstr " Âè3¥æ¡¼¥¶ vimrc: \""
+#, c-format
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: ¥«¥é¡¼Ì¾¤äÈÖ¹æ¤òǧ¼±¤Ç¤¤Þ¤»¤ó: %s"
-msgid " user exrc file: \""
-msgstr " ¥æ¡¼¥¶ exrc: \""
+#, c-format
+msgid "E422: terminal code too long: %s"
+msgstr "E422: ½ªÃ¼¥³¡¼¥É¤¬Ä¹²á¤®¤Þ¤¹: %s"
-msgid " 2nd user exrc file: \""
-msgstr " Âè2¥æ¡¼¥¶ exrc: \""
+#, c-format
+msgid "E423: Illegal argument: %s"
+msgstr "E423: ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹: %s"
-msgid " system gvimrc file: \""
-msgstr " ¥·¥¹¥Æ¥à gvimrc: \""
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: ¿¤¯¤Î°Û¤Ê¤ë¥Ï¥¤¥é¥¤¥È°À¤¬»È¤ï¤ì²á¤®¤Æ¤¤¤Þ¤¹"
-msgid " user gvimrc file: \""
-msgstr " ¥æ¡¼¥¶ gvimrc: \""
+msgid "E669: Unprintable character in group name"
+msgstr "E669: ¥°¥ë¡¼¥×̾¤Ë°õºþÉÔ²Äǽ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-msgid "2nd user gvimrc file: \""
-msgstr " Âè2¥æ¡¼¥¶ gvimrc: \""
+msgid "W18: Invalid character in group name"
+msgstr "W18: ¥°¥ë¡¼¥×̾¤ËÉÔÀµ¤Êʸ»ú¤¬¤¢¤ê¤Þ¤¹"
-msgid "3rd user gvimrc file: \""
-msgstr " Âè3¥æ¡¼¥¶ gvimrc: \""
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: ¥Ï¥¤¥é¥¤¥È¤È¹½Ê¸¥°¥ë¡¼¥×¤¬Â¿²á¤®¤Þ¤¹"
-msgid " system menu file: \""
-msgstr " ¥·¥¹¥Æ¥à¥á¥Ë¥å¡¼: \""
+msgid "E555: at bottom of tag stack"
+msgstr "E555: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎËöÈø¤Ç¤¹"
-msgid " fall-back for $VIM: \""
-msgstr " ¾Êά»þ¤Î $VIM: \""
+msgid "E556: at top of tag stack"
+msgstr "E556: ¥¿¥°¥¹¥¿¥Ã¥¯¤ÎÀèÆ¬¤Ç¤¹"
-msgid " f-b for $VIMRUNTIME: \""
-msgstr "¾Êά»þ¤Î $VIMRUNTIME: \""
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: ºÇ½é¤Î³ºÅö¥¿¥°¤òͤ¨¤ÆÌá¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-msgid "Compilation: "
-msgstr "¥³¥ó¥Ñ¥¤¥ë: "
+#, c-format
+msgid "E426: tag not found: %s"
+msgstr "E426: ¥¿¥°¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-msgid "Compiler: "
-msgstr "¥³¥ó¥Ñ¥¤¥é: "
+msgid " # pri kind tag"
+msgstr " # pri kind tag"
-msgid "Linking: "
-msgstr "¥ê¥ó¥¯: "
+msgid "file\n"
+msgstr "¥Õ¥¡¥¤¥ë\n"
-msgid " DEBUG BUILD"
-msgstr "¥Ç¥Ð¥Ã¥°¥Ó¥ë¥É"
+msgid "E427: There is only one matching tag"
+msgstr "E427: ³ºÅö¥¿¥°¤¬1¤Ä¤À¤±¤·¤«¤¢¤ê¤Þ¤»¤ó"
-msgid "VIM - Vi IMproved"
-msgstr "VIM - Vi IMproved"
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: ºÇ¸å¤Ë³ºÅö¤¹¤ë¥¿¥°¤òͤ¨¤Æ¿Ê¤à¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-msgid "version "
-msgstr "version "
+#, c-format
+msgid "File \"%s\" does not exist"
+msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "by Bram Moolenaar et al."
-msgstr "by Bram Moolenaar ¾."
+#. Give an indication of the number of matching tags
+#, c-format
+msgid "tag %d of %d%s"
+msgstr "¥¿¥° %d (Á´%d%s)"
-msgid "Vim is open source and freely distributable"
-msgstr "Vim ¤Ï¥ª¡¼¥×¥ó¥½¡¼¥¹¤Ç¤¢¤ê¼«Í³¤ËÇÛÉÛ²Äǽ¤Ç¤¹"
+msgid " or more"
+msgstr " ¤«¤½¤ì°Ê¾å"
-msgid "Help poor children in Uganda!"
-msgstr "¥¦¥¬¥ó¥À¤Î·Ã¤Þ¤ì¤Ê¤¤»Ò¶¡¤¿¤Á¤Ë±ç½õ¤ò!"
+msgid " Using tag with different case!"
+msgstr " ¥¿¥°¤ò°Û¤Ê¤ëcase¤Ç»ÈÍѤ·¤Þ¤¹!"
-msgid "type :help iccf<Enter> for information "
-msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help iccf<Enter> "
+#, c-format
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: ¥Õ¥¡¥¤¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "type :q<Enter> to exit "
-msgstr "½ªÎ»¤¹¤ë¤Ë¤Ï :q<Enter> "
+#. Highlight title
+msgid ""
+"\n"
+" # TO tag FROM line in file/text"
+msgstr ""
+"\n"
+" # TO ¥¿¥° FROM ¹Ô in file/text"
-msgid "type :help<Enter> or <F1> for on-line help"
-msgstr "¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤Ï :help<Enter> ¤« <F1> "
+#, c-format
+msgid "Searching tags file %s"
+msgstr "¥¿¥°¥Õ¥¡¥¤¥ë %s ¤ò¸¡º÷Ãæ"
-msgid "type :help version7<Enter> for version info"
-msgstr "¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Ï :help version7<Enter> "
+#, c-format
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: ¥¿¥°¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤¬ %s ¤ËÀÚ¤ê¼Î¤Æ¤é¤ì¤Þ¤·¤¿\n"
-msgid "Running in Vi compatible mode"
-msgstr "Vi¸ß´¹¥â¡¼¥É¤ÇưºîÃæ"
+msgid "Ignoring long line in tags file"
+msgstr "¥¿¥°¥Õ¥¡¥¤¥ëÆâ¤ÎŤ¤¹Ô¤ò̵»ë¤·¤Þ¤¹"
-msgid "type :set nocp<Enter> for Vim defaults"
-msgstr "Vim¿ä¾©Ãͤˤ¹¤ë¤Ë¤Ï :set nocp<Enter> "
+#, c-format
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: ¥¿¥°¥Õ¥¡¥¤¥ë \"%s\" ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹"
-msgid "type :help cp-default<Enter> for info on this"
-msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help cp-default<Enter>"
+#, c-format
+msgid "Before byte %ld"
+msgstr "ľÁ°¤Î %ld ¥Ð¥¤¥È"
-msgid "menu Help->Orphans for information "
-msgstr "¾ÜºÙ¤Ï¥á¥Ë¥å¡¼¤Î ¥Ø¥ë¥×¢ª¸É»ù ¤ò»²¾È¤·¤Æ²¼¤µ¤¤ "
+#, c-format
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¥½¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-msgid "Running modeless, typed text is inserted"
-msgstr "¥â¡¼¥É̵¤Ç¼Â¹ÔÃæ, ¥¿¥¤¥×¤·¤¿Ê¸»ú¤¬ÁÞÆþ¤µ¤ì¤Þ¤¹"
+#. never opened any tags file
+msgid "E433: No tags file"
+msgstr "E433: ¥¿¥°¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "menu Edit->Global Settings->Toggle Insert Mode "
-msgstr "¥á¥Ë¥å¡¼¤Î ÊÔ½¸¢ªÁ´ÂÎÀßÄꢪÁÞÆþ(½é¿´¼Ô)¥â¡¼¥ÉÀÚÂØ"
+msgid "E434: Can't find tag pattern"
+msgstr "E434: ¥¿¥°¥Ñ¥¿¡¼¥ó¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid " for two modes "
-msgstr " ¤Ç¥â¡¼¥ÉÍ¤Ë "
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: ¥¿¥°¤ò¤ß¤Ä¤±¤é¤ì¤Ê¤¤¤Î¤Çñ¤Ë¿ä¬¤·¤Þ¤¹!"
-msgid "menu Edit->Global Settings->Toggle Vi Compatible"
-msgstr "¥á¥Ë¥å¡¼¤Î ÊÔ½¸¢ªÁ´ÂÎÀßÄꢪVi¸ß´¹¥â¡¼¥ÉÀÚÂØ "
+#, c-format
+msgid "Duplicate field name: %s"
+msgstr "½ÅÊ£¤·¤¿¥Õ¥£¡¼¥ë¥É̾: %s"
-msgid " for Vim defaults "
-msgstr " ¤ÇVim¤È¤·¤ÆÆ°ºî "
+msgid "' not known. Available builtin terminals are:"
+msgstr "' ¤Ï̤ÃΤǤ¹. ¸½¹Ô¤ÎÁȤ߹þ¤ßüËö¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹:"
-msgid "Sponsor Vim development!"
-msgstr "Vim¤Î³«È¯¤ò±þ±ç¤·¤Æ¤¯¤À¤µ¤¤!"
+msgid "defaulting to '"
+msgstr "¾ÊάÃͤò¼¡¤Î¤è¤¦¤ËÀßÄꤷ¤Þ¤¹ '"
-msgid "Become a registered Vim user!"
-msgstr "Vim¤ÎÅÐÏ¿¥æ¡¼¥¶¤Ë¤Ê¤Ã¤Æ¤¯¤À¤µ¤¤!"
+msgid "E557: Cannot open termcap file"
+msgstr "E557: termcap¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó"
-msgid "type :help sponsor<Enter> for information "
-msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help sponsor<Enter> "
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: terminfo¤ËüËö¥¨¥ó¥È¥ê¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid "type :help register<Enter> for information "
-msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help register<Enter> "
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: termcap¤ËüËö¥¨¥ó¥È¥ê¤ò¤ß¤Ä¤±¤é¤ì¤Þ¤»¤ó"
-msgid "menu Help->Sponsor/Register for information "
-msgstr "¾ÜºÙ¤Ï¥á¥Ë¥å¡¼¤Î ¥Ø¥ë¥×¢ª¥¹¥Ý¥ó¥µ¡¼/ÅÐÏ¿ ¤ò»²¾È¤·¤Æ²¼¤µ¤¤ "
-
-msgid "WARNING: Windows 95/98/ME detected"
-msgstr " ·Ù¹ð: Windows 95/98/Me ¤ò¸¡½Ð "
+#, c-format
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: termcap¤Ë \"%s\" ¤Î¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "type :help windows95<Enter> for info on this"
-msgstr " ¾ÜºÙ¤Ê¾ðÊó¤Ï :help windows95<Enter> "
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: üËö¤Ë \"cm\" µ¡Ç½¤¬É¬ÍפǤ¹"
-msgid "Already only one window"
-msgstr "´û¤Ë¥¦¥£¥ó¥É¥¦¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
+#. Highlight title
+msgid ""
+"\n"
+"--- Terminal keys ---"
+msgstr ""
+"\n"
+"--- üËö¥¡¼ ---"
-msgid "E441: There is no preview window"
-msgstr "E441: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "new shell started\n"
+msgstr "¿·¤·¤¤¥·¥§¥ë¤òµ¯Æ°¤·¤Þ¤¹\n"
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: º¸¾å¤È±¦²¼¤òƱ»þ¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+msgid "Vim: Error reading input, exiting...\n"
+msgstr "Vim: ÆþÎϤòÆÉ¹þ¤ßÃæ¤Î¥¨¥é¡¼¤Ë¤è¤ê½ªÎ»¤·¤Þ¤¹...\n"
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: ¾¤Î¥¦¥£¥ó¥É¥¦¤¬Ê¬³ä¤µ¤ì¤Æ¤¤¤ë»þ¤Ë¤Ï½ç²ó¤Ç¤¤Þ¤»¤ó"
+msgid "Used CUT_BUFFER0 instead of empty selection"
+msgstr "¶õ¤ÎÁªÂòÎΰè¤Î¤«¤ï¤ê¤ËCUT_BUFFER0¤¬»ÈÍѤµ¤ì¤Þ¤·¤¿"
-msgid "E444: Cannot close last window"
-msgstr "E444: ºÇ¸å¤Î¥¦¥£¥ó¥É¥¦¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
+#. This happens when the FileChangedRO autocommand changes the
+#. * file in a way it becomes shorter.
+msgid "E834: Line count changed unexpectedly"
+msgstr "E834: ͽ´ü¤»¤º¹Ô¥«¥¦¥ó¥È¤¬ÊѤï¤ê¤Þ¤·¤¿"
-msgid "E813: Cannot close autocmd window"
-msgstr "E813: autocmd¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
+#. must display the prompt
+msgid "No undo possible; continue anyway"
+msgstr "²Äǽ¤Ê¥¢¥ó¥É¥¥¤Ï¤¢¤ê¤Þ¤»¤ó: ¤È¤ê¤¢¤¨¤ºÂ³¤±¤Þ¤¹"
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr "E814: autocmd¥¦¥£¥ó¥É¥¦¤·¤«»Ä¤é¤Ê¤¤¤¿¤á¡¢¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: ½ñ¹þ¤ßÍѤ˥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: %s"
-msgid "E445: Other window contains changes"
-msgstr "E445: ¾¤Î¥¦¥£¥ó¥É¥¦¤Ë¤ÏÊѹ¹¤¬¤¢¤ê¤Þ¤¹"
+#, c-format
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Æ¤¤¤Þ¤¹ (%s): %s"
-msgid "E446: No file name under cursor"
-msgstr "E446: ¥«¡¼¥½¥ë¤Î²¼¤Ë¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Cannot write undo file in any directory in 'undodir'"
+msgstr "'undodir'¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò½ñ¤¹þ¤á¤Þ¤»¤ó"
#, c-format
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-
-msgid "Edit with &multiple Vims"
-msgstr "Ê£¿ô¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&M)"
+msgid "Will not overwrite with undo file, cannot read: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤È¤·¤ÆÆÉ¤ß¹þ¤á¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
-msgid "Edit with single &Vim"
-msgstr "1¤Ä¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&V)"
+#, c-format
+msgid "Will not overwrite, this is not an undo file: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤Î¤Ç¾å½ñ¤¤·¤Þ¤»¤ó: %s"
-msgid "Diff with Vim"
-msgstr "Vim¤Çº¹Ê¬¤ò¸«¤ë"
+msgid "Skipping undo file write, nothing to undo"
+msgstr "Âоݤ¬¤Ê¤¤¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
-msgid "Edit with &Vim"
-msgstr "Vim¤ÇÊÔ½¸¤¹¤ë (&V)"
+#, c-format
+msgid "Writing undo file: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë½ñ¤¹þ¤ßÃæ: %s"
-#. Now concatenate
-msgid "Edit with existing Vim - "
-msgstr "´û¸¤ÎVim¤ÇÊÔ½¸¤¹¤ë - "
+#, c-format
+msgid "E829: write error in undo file: %s"
+msgstr "E829: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î½ñ¤¹þ¤ß¥¨¥é¡¼¤Ç¤¹: %s"
-msgid "Edits the selected file(s) with Vim"
-msgstr "ÁªÂò¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òVim¤ÇÊÔ½¸¤¹¤ë"
+#, c-format
+msgid "Not reading undo file, owner differs: %s"
+msgstr "¥ª¡¼¥Ê¡¼¤¬°Û¤Ê¤ë¤Î¤Ç¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¤ß¹þ¤ß¤Þ¤»¤ó: %s"
-msgid "Error creating process: Check if gvim is in your path!"
-msgstr ""
-"µ¯Æ°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: gvim ¤Ø¤Î¥Ñ¥¹¤¬Àµ¤·¤¯ÀßÄꤵ¤ì¤Æ¤¤¤ë¤«³Îǧ¤·¤Æ¤¯¤À¤µ¤¤!"
+#, c-format
+msgid "Reading undo file: %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ëÆÉ¹þÃæ: %s"
-msgid "gvimext.dll error"
-msgstr "gvimext.dll ¥¨¥é¡¼"
+#, c-format
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤òÆÉ¹þÍѤȤ·¤Æ³«¤±¤Þ¤»¤ó: %s"
-msgid "Path length too long!"
-msgstr "¥Ñ¥¹¤¬Ä¹²á¤®¤Þ¤¹!"
+#, c-format
+msgid "E823: Not an undo file: %s"
+msgstr "E823: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
-msgid "--No lines in buffer--"
-msgstr "--¥Ð¥Ã¥Õ¥¡¤Ë¹Ô¤¬¤¢¤ê¤Þ¤»¤ó--"
+#, c-format
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: Èó°Å¹æ²½¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤Æ¤Þ¤¹: %s"
-#.
-#. * The error messages that can be shared are included here.
-#. * Excluded are errors that are only used once and debugging messages.
-#.
-msgid "E470: Command aborted"
-msgstr "E470: ¥³¥Þ¥ó¥É¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿"
+#, c-format
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: °Å¹æ²½¤µ¤ì¤¿¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Î²òÆÉ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-msgid "E471: Argument required"
-msgstr "E471: °ú¿ô¤¬É¬ÍפǤ¹"
+#, c-format
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: ¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤¬°Å¹æ²½¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-msgid "E10: \\ should be followed by /, ? or &"
-msgstr "E10: \\ ¤Î¸å¤Ï / ¤« ? ¤« & ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+#, c-format
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: ¸ß´¹À¤Î̵¤¤¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë¤Ç¤¹: %s"
-msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
-msgstr "E11: ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Ï̵¸ú¤Ç¤¹; <CR>¤Ç¼Â¹Ô, CTRL-C¤Ç¤ä¤á¤ë"
+msgid "File contents changed, cannot use undo info"
+msgstr "¥Õ¥¡¥¤¥ë¤ÎÆâÍÆ¤¬ÊѤï¤Ã¤Æ¤¤¤ë¤¿¤á¡¢¥¢¥ó¥É¥¥¾ðÊó¤òÍøÍѤǤ¤Þ¤»¤ó"
-msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
-msgstr ""
-"E12: ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ä¥¿¥°¸¡º÷¤Ç¤Ïexrc/vimrc¤Î¥³¥Þ¥ó¥É¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+#, c-format
+msgid "Finished reading undo file %s"
+msgstr "¥¢¥ó¥É¥¥¥Õ¥¡¥¤¥ë %s ¤Î¼è¹þ¤ò´°Î»"
-msgid "E171: Missing :endif"
-msgstr "E171: :endif ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Already at oldest change"
+msgstr "´û¤Ë°ìÈָŤ¤Êѹ¹¤Ç¤¹"
-msgid "E600: Missing :endtry"
-msgstr "E600: :endtry ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Already at newest change"
+msgstr "´û¤Ë°ìÈÖ¿·¤·¤¤Êѹ¹¤Ç¤¹"
-msgid "E170: Missing :endwhile"
-msgstr "E170: :endwhile ¤¬¤¢¤ê¤Þ¤»¤ó"
+#, c-format
+msgid "E830: Undo number %ld not found"
+msgstr "E830: ¥¢¥ó¥É¥¥ÈÖ¹æ %ld ¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó"
-msgid "E170: Missing :endfor"
-msgstr "E170: :endfor ¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: ¹ÔÈֹ椬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
-msgid "E588: :endwhile without :while"
-msgstr "E588: :while ¤Î¤Ê¤¤ :endwhile ¤¬¤¢¤ê¤Þ¤¹"
+msgid "more line"
+msgstr "¹Ô Äɲä·¤Þ¤·¤¿"
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor ¤Î¤Ê¤¤ :for ¤¬¤¢¤ê¤Þ¤¹"
+msgid "more lines"
+msgstr "¹Ô Äɲä·¤Þ¤·¤¿"
-msgid "E13: File exists (add ! to override)"
-msgstr "E13: ¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹ (! ¤òÄɲäǾå½ñ)"
+msgid "line less"
+msgstr "¹Ô ºï½ü¤·¤Þ¤·¤¿"
-msgid "E472: Command failed"
-msgstr "E472: ¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "fewer lines"
+msgstr "¹Ô ºï½ü¤·¤Þ¤·¤¿"
-#, c-format
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: ̤ÃΤΥե©¥ó¥È¥»¥Ã¥È: %s"
+msgid "change"
+msgstr "²Õ½êÊѹ¹¤·¤Þ¤·¤¿"
-#, c-format
-msgid "E235: Unknown font: %s"
-msgstr "E235: ̤ÃΤΥե©¥ó¥È: %s"
+msgid "changes"
+msgstr "²Õ½êÊѹ¹¤·¤Þ¤·¤¿"
#, c-format
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: ¥Õ¥©¥ó¥È \"%s\" ¤Ï¸ÇÄêÉý¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-
-msgid "E473: Internal error"
-msgstr "E473: ÆâÉô¥¨¥é¡¼¤Ç¤¹"
-
-msgid "Interrupted"
-msgstr "³ä¹þ¤Þ¤ì¤Þ¤·¤¿"
-
-msgid "E14: Invalid address"
-msgstr "E14: ̵¸ú¤Ê¥¢¥É¥ì¥¹¤Ç¤¹"
-
-msgid "E474: Invalid argument"
-msgstr "E474: ̵¸ú¤Ê°ú¿ô¤Ç¤¹"
+msgid "%ld %s; %s #%ld %s"
+msgstr "%ld %s; %s #%ld %s"
-#, c-format
-msgid "E475: Invalid argument: %s"
-msgstr "E475: ̵¸ú¤Ê°ú¿ô¤Ç¤¹: %s"
+msgid "before"
+msgstr "Á°Êý"
-#, c-format
-msgid "E15: Invalid expression: %s"
-msgstr "E15: ̵¸ú¤Ê¼°¤Ç¤¹: %s"
+msgid "after"
+msgstr "¸åÊý"
-msgid "E16: Invalid range"
-msgstr "E16: ̵¸ú¤ÊÈϰϤǤ¹"
+msgid "Nothing to undo"
+msgstr "¥¢¥ó¥É¥¥Âоݤ¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E476: Invalid command"
-msgstr "E476: ̵¸ú¤Ê¥³¥Þ¥ó¥É¤Ç¤¹"
+msgid "number changes when saved"
+msgstr "ÄÌÈÖ Êѹ¹¿ô Êѹ¹»þ´ü ÊݸºÑ"
#, c-format
-msgid "E17: \"%s\" is a directory"
-msgstr "E17: \"%s\" ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
+msgid "%ld seconds ago"
+msgstr "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹"
-#, c-format
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: \"%s\"() ¤Î¥é¥¤¥Ö¥é¥ê¸Æ½Ð¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undo ¤Îľ¸å¤Ë undojoin ¤Ï¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "E448: Could not load library function %s"
-msgstr "E448: ¥é¥¤¥Ö¥é¥ê¤Î´Ø¿ô %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "E439: undo list corrupt"
+msgstr "E439: ¥¢¥ó¥É¥¥¥ê¥¹¥È¤¬²õ¤ì¤Æ¤¤¤Þ¤¹"
-msgid "E19: Mark has invalid line number"
-msgstr "E19: ¥Þ¡¼¥¯¤Ë̵¸ú¤Ê¹ÔÈֹ椬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤·¤¿"
+msgid "E440: undo line missing"
+msgstr "E440: ¥¢¥ó¥É¥¥¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "E20: Mark not set"
-msgstr "E20: ¥Þ¡¼¥¯¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+#. Only MS VC 4.1 and earlier can do Win32s
+msgid ""
+"\n"
+"MS-Windows 16/32-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 16/32 ¥Ó¥Ã¥È GUI ÈÇ"
-msgid "E21: Cannot make changes, 'modifiable' is off"
-msgstr "E21: 'modifiable' ¤¬¥ª¥Õ¤Ê¤Î¤Ç, Êѹ¹¤Ç¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"MS-Windows 64-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 64 ¥Ó¥Ã¥È GUI ÈÇ"
-msgid "E22: Scripts nested too deep"
-msgstr "E22: ¥¹¥¯¥ê¥×¥È¤ÎÆþ¤ì»Ò¤¬¿¼²á¤®¤Þ¤¹"
+msgid ""
+"\n"
+"MS-Windows 32-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 32 ¥Ó¥Ã¥È GUI ÈÇ"
-msgid "E23: No alternate file"
-msgstr "E23: Éû¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid " in Win32s mode"
+msgstr " in Win32s ¥â¡¼¥É"
-msgid "E24: No such abbreviation"
-msgstr "E24: ¤½¤Î¤è¤¦¤Êû½ÌÆþÎϤϤ¢¤ê¤Þ¤»¤ó"
+msgid " with OLE support"
+msgstr " with OLE ¥µ¥Ý¡¼¥È"
-msgid "E477: No ! allowed"
-msgstr "E477: ! ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"MS-Windows 64-bit console version"
+msgstr ""
+"\n"
+"MS-Windows 64 ¥Ó¥Ã¥È ¥³¥ó¥½¡¼¥ë ÈÇ"
-msgid "E25: GUI cannot be used: Not enabled at compile time"
-msgstr "E25: GUI¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
+msgid ""
+"\n"
+"MS-Windows 32-bit console version"
+msgstr ""
+"\n"
+"MS-Windows 32 ¥Ó¥Ã¥È ¥³¥ó¥½¡¼¥ë ÈÇ"
-msgid "E26: Hebrew cannot be used: Not enabled at compile time\n"
-msgstr "E26: ¥Ø¥Ö¥é¥¤¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+msgid ""
+"\n"
+"MS-Windows 16-bit version"
+msgstr ""
+"\n"
+"MS-Windows 16 ¥Ó¥Ã¥È ÈÇ"
-msgid "E27: Farsi cannot be used: Not enabled at compile time\n"
-msgstr "E27: ¥Ú¥ë¥·¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+msgid ""
+"\n"
+"32-bit MS-DOS version"
+msgstr ""
+"\n"
+"32 ¥Ó¥Ã¥È MS-DOS ÈÇ"
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: ¥¢¥é¥Ó¥¢¸ì¤Ï»ÈÍÑÉÔ²Äǽ¤Ç¤¹: ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë̵¸ú¤Ë¤µ¤ì¤Æ¤¤¤Þ¤¹\n"
+msgid ""
+"\n"
+"16-bit MS-DOS version"
+msgstr ""
+"\n"
+"16 ¥Ó¥Ã¥È MS-DOS ÈÇ"
-#, c-format
-msgid "E28: No such highlight group name: %s"
-msgstr "E28: ¤½¤Î¤è¤¦¤Ê̾¤Î¥Ï¥¤¥é¥¤¥È¥°¥ë¡¼¥×¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid ""
+"\n"
+"MacOS X (unix) version"
+msgstr ""
+"\n"
+"MacOS X (unix) ÈÇ"
-msgid "E29: No inserted text yet"
-msgstr "E29: ¤Þ¤À¥Æ¥¥¹¥È¤¬ÁÞÆþ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"MacOS X version"
+msgstr ""
+"\n"
+"MacOS X ÈÇ"
-msgid "E30: No previous command line"
-msgstr "E30: °ÊÁ°¤Ë¥³¥Þ¥ó¥É¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"MacOS version"
+msgstr ""
+"\n"
+"MacOS ÈÇ"
-msgid "E31: No such mapping"
-msgstr "E31: ¤½¤Î¤è¤¦¤Ê¥Þ¥Ã¥Ô¥ó¥°¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"OpenVMS version"
+msgstr ""
+"\n"
+"OpenVMS ÈÇ"
-msgid "E479: No match"
-msgstr "E479: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Included patches: "
+msgstr ""
+"\n"
+"ŬÍѺѥѥåÁ: "
-#, c-format
-msgid "E480: No match: %s"
-msgstr "E480: ³ºÅö¤Ï¤¢¤ê¤Þ¤»¤ó: %s"
+msgid ""
+"\n"
+"Extra patches: "
+msgstr ""
+"\n"
+"ÄɲóÈÄ¥¥Ñ¥Ã¥Á: "
-msgid "E32: No file name"
-msgstr "E32: ¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
+msgid "Modified by "
+msgstr "Modified by "
-msgid "E33: No previous substitute regular expression"
-msgstr "E33: Àµµ¬É½¸½ÃÖ´¹¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Compiled "
+msgstr ""
+"\n"
+"Compiled "
-msgid "E34: No previous command"
-msgstr "E34: ¥³¥Þ¥ó¥É¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "by "
+msgstr "by "
-msgid "E35: No previous regular expression"
-msgstr "E35: Àµµ¬É½¸½¤¬¤Þ¤À¼Â¹Ô¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Huge version "
+msgstr ""
+"\n"
+"Huge ÈÇ "
-msgid "E481: No range allowed"
-msgstr "E481: ÈϰϻØÄê¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Big version "
+msgstr ""
+"\n"
+"Big ÈÇ "
-msgid "E36: Not enough room"
-msgstr "E36: ½¼Ê¬¤ÊÍÆÎ̤¬¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Normal version "
+msgstr ""
+"\n"
+"Ä̾ï ÈÇ "
-#, c-format
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: %s ¤È¤¤¤¦Ì¾Á°¤ÎÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Small version "
+msgstr ""
+"\n"
+"Small ÈÇ "
-#, c-format
-msgid "E482: Can't create file %s"
-msgstr "E482: ¥Õ¥¡¥¤¥ë %s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
+msgid ""
+"\n"
+"Tiny version "
+msgstr ""
+"\n"
+"Tiny ÈÇ "
-msgid "E483: Can't get temp file name"
-msgstr "E483: °ì»þ¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò¼èÆÀ¤Ç¤¤Þ¤»¤ó"
+msgid "without GUI."
+msgstr "without GUI."
-#, c-format
-msgid "E484: Can't open file %s"
-msgstr "E484: ¥Õ¥¡¥¤¥ë \"%s\" ¤ò³«¤±¤Þ¤»¤ó"
+msgid "with GTK2-GNOME GUI."
+msgstr "with GTK2-GNOME GUI."
-#, c-format
-msgid "E485: Can't read file %s"
-msgstr "E485: ¥Õ¥¡¥¤¥ë %s ¤òÆÉ¹þ¤á¤Þ¤»¤ó"
+msgid "with GTK2 GUI."
+msgstr "with GTK2 GUI."
-msgid "E37: No write since last change (add ! to override)"
-msgstr "E37: ºÇ¸å¤ÎÊѹ¹¤¬Êݸ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (! ¤òÄɲäÇÊѹ¹¤òÇË´þ)"
+msgid "with X11-Motif GUI."
+msgstr "with X11-Motif GUI."
-msgid "E38: Null argument"
-msgstr "E38: °ú¿ô¤¬¶õ¤Ç¤¹"
+msgid "with X11-neXtaw GUI."
+msgstr "with X11-neXtaw GUI."
-msgid "E39: Number expected"
-msgstr "E39: ¿ôÃͤ¬Í׵ᤵ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "with X11-Athena GUI."
+msgstr "with X11-Athena GUI."
-#, c-format
-msgid "E40: Can't open errorfile %s"
-msgstr "E40: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó"
+msgid "with Photon GUI."
+msgstr "with Photon GUI."
-msgid "E233: cannot open display"
-msgstr "E233: ¥Ç¥£¥¹¥×¥ì¥¤¤ò³«¤±¤Þ¤»¤ó"
+msgid "with GUI."
+msgstr "with GUI."
-msgid "E41: Out of memory!"
-msgstr "E41: ¥á¥â¥ê¤¬¿Ô¤²Ì¤Æ¤Þ¤·¤¿!"
+msgid "with Carbon GUI."
+msgstr "with Carbon GUI."
-msgid "Pattern not found"
-msgstr "¥Ñ¥¿¡¼¥ó¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "with Cocoa GUI."
+msgstr "with Cocoa GUI."
-#, c-format
-msgid "E486: Pattern not found: %s"
-msgstr "E486: ¥Ñ¥¿¡¼¥ó¤Ï¤ß¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+msgid "with (classic) GUI."
+msgstr "with (¥¯¥é¥·¥Ã¥¯) GUI."
-msgid "E487: Argument must be positive"
-msgstr "E487: °ú¿ô¤ÏÀµ¤ÎÃͤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
+msgid " Features included (+) or not (-):\n"
+msgstr " µ¡Ç½¤Î°ìÍ÷ ͸ú(+)/̵¸ú(-)\n"
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤ì¤Þ¤»¤ó"
+msgid " system vimrc file: \""
+msgstr " ¥·¥¹¥Æ¥à vimrc: \""
-msgid "E42: No Errors"
-msgstr "E42: ¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid " user vimrc file: \""
+msgstr " ¥æ¡¼¥¶ vimrc: \""
-msgid "E776: No location list"
-msgstr "E776: ¾ì½ê¥ê¥¹¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid " 2nd user vimrc file: \""
+msgstr " Âè2¥æ¡¼¥¶ vimrc: \""
-msgid "E43: Damaged match string"
-msgstr "E43: ³ºÅöʸ»úÎó¤¬ÇË»¤·¤Æ¤¤¤Þ¤¹"
+msgid " 3rd user vimrc file: \""
+msgstr " Âè3¥æ¡¼¥¶ vimrc: \""
-msgid "E44: Corrupted regexp program"
-msgstr "E44: ÉÔÀµ¤ÊÀµµ¬É½¸½¥×¥í¥°¥é¥à¤Ç¤¹"
+msgid " user exrc file: \""
+msgstr " ¥æ¡¼¥¶ exrc: \""
-msgid "E45: 'readonly' option is set (add ! to override)"
-msgstr "E45: 'readonly' ¥ª¥×¥·¥ç¥ó¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹ (! ¤òÄɲäǾå½ñ¤)"
+msgid " 2nd user exrc file: \""
+msgstr " Âè2¥æ¡¼¥¶ exrc: \""
-#, c-format
-msgid "E46: Cannot change read-only variable \"%s\""
-msgstr "E46: ÆÉ¼èÀìÍÑÊÑ¿ô \"%s\" ¤Ë¤ÏÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+msgid " system gvimrc file: \""
+msgstr " ¥·¥¹¥Æ¥à gvimrc: \""
-#, c-format
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr "E794: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤ÏÊÑ¿ô \"%s\" ¤ËÃͤòÀßÄê¤Ç¤¤Þ¤»¤ó"
+msgid " user gvimrc file: \""
+msgstr " ¥æ¡¼¥¶ gvimrc: \""
-msgid "E47: Error while reading errorfile"
-msgstr "E47: ¥¨¥é¡¼¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
+msgid "2nd user gvimrc file: \""
+msgstr " Âè2¥æ¡¼¥¶ gvimrc: \""
-msgid "E48: Not allowed in sandbox"
-msgstr "E48: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
+msgid "3rd user gvimrc file: \""
+msgstr " Âè3¥æ¡¼¥¶ gvimrc: \""
-msgid "E523: Not allowed here"
-msgstr "E523: ¤³¤³¤Ç¤Ïµö²Ä¤µ¤ì¤Þ¤»¤ó"
+msgid " system menu file: \""
+msgstr " ¥·¥¹¥Æ¥à¥á¥Ë¥å¡¼: \""
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: ¥¹¥¯¥ê¡¼¥ó¥â¡¼¥É¤ÎÀßÄê¤Ë¤ÏÂбþ¤·¤Æ¤¤¤Þ¤»¤ó"
+msgid " fall-back for $VIM: \""
+msgstr " ¾Êά»þ¤Î $VIM: \""
-msgid "E49: Invalid scroll size"
-msgstr "E49: ̵¸ú¤Ê¥¹¥¯¥í¡¼¥ëÎ̤Ǥ¹"
+msgid " f-b for $VIMRUNTIME: \""
+msgstr "¾Êά»þ¤Î $VIMRUNTIME: \""
-msgid "E91: 'shell' option is empty"
-msgstr "E91: 'shell' ¥ª¥×¥·¥ç¥ó¤¬¶õ¤Ç¤¹"
+msgid "Compilation: "
+msgstr "¥³¥ó¥Ñ¥¤¥ë: "
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: sign ¤Î¥Ç¡¼¥¿¤òÆÉ¹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿"
+msgid "Compiler: "
+msgstr "¥³¥ó¥Ñ¥¤¥é: "
-msgid "E72: Close error on swap file"
-msgstr "E72: ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤Î¥¯¥í¡¼¥º»þ¥¨¥é¡¼¤Ç¤¹"
+msgid "Linking: "
+msgstr "¥ê¥ó¥¯: "
-msgid "E73: tag stack empty"
-msgstr "E73: ¥¿¥°¥¹¥¿¥Ã¥¯¤¬¶õ¤Ç¤¹"
+msgid " DEBUG BUILD"
+msgstr "¥Ç¥Ð¥Ã¥°¥Ó¥ë¥É"
-msgid "E74: Command too complex"
-msgstr "E74: ¥³¥Þ¥ó¥É¤¬Ê£»¨²á¤®¤Þ¤¹"
+msgid "VIM - Vi IMproved"
+msgstr "VIM - Vi IMproved"
-msgid "E75: Name too long"
-msgstr "E75: ̾Á°¤¬Ä¹²á¤®¤Þ¤¹"
+msgid "version "
+msgstr "version "
-msgid "E76: Too many ["
-msgstr "E76: [ ¤¬Â¿²á¤®¤Þ¤¹"
+msgid "by Bram Moolenaar et al."
+msgstr "by Bram Moolenaar ¾."
-msgid "E77: Too many file names"
-msgstr "E77: ¥Õ¥¡¥¤¥ë̾¤¬Â¿²á¤®¤Þ¤¹"
+msgid "Vim is open source and freely distributable"
+msgstr "Vim ¤Ï¥ª¡¼¥×¥ó¥½¡¼¥¹¤Ç¤¢¤ê¼«Í³¤ËÇÛÉÛ²Äǽ¤Ç¤¹"
-msgid "E488: Trailing characters"
-msgstr "E488: ;ʬ¤Êʸ»ú¤¬¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
+msgid "Help poor children in Uganda!"
+msgstr "¥¦¥¬¥ó¥À¤Î·Ã¤Þ¤ì¤Ê¤¤»Ò¶¡¤¿¤Á¤Ë±ç½õ¤ò!"
-msgid "E78: Unknown mark"
-msgstr "E78: ̤ÃΤΥޡ¼¥¯"
+msgid "type :help iccf<Enter> for information "
+msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help iccf<Enter> "
-msgid "E79: Cannot expand wildcards"
-msgstr "E79: ¥ï¥¤¥ë¥É¥«¡¼¥É¤òŸ³«¤Ç¤¤Þ¤»¤ó"
+msgid "type :q<Enter> to exit "
+msgstr "½ªÎ»¤¹¤ë¤Ë¤Ï :q<Enter> "
-msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
-msgstr "E591: 'winheight' ¤Ï 'winminheight' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
+msgid "type :help<Enter> or <F1> for on-line help"
+msgstr "¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤Ï :help<Enter> ¤« <F1> "
-msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
-msgstr "E592: 'winwidth' ¤Ï 'winminwidth' ¤è¤ê¾®¤µ¤¯¤Ç¤¤Þ¤»¤ó"
+msgid "type :help version7<Enter> for version info"
+msgstr "¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Ï :help version7<Enter> "
-msgid "E80: Error while writing"
-msgstr "E80: ½ñ¹þ¤ßÃæ¤Î¥¨¥é¡¼"
+msgid "Running in Vi compatible mode"
+msgstr "Vi¸ß´¹¥â¡¼¥É¤ÇưºîÃæ"
-msgid "Zero count"
-msgstr "¥¼¥í¥«¥¦¥ó¥È"
+msgid "type :set nocp<Enter> for Vim defaults"
+msgstr "Vim¿ä¾©Ãͤˤ¹¤ë¤Ë¤Ï :set nocp<Enter> "
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: ¥¹¥¯¥ê¥×¥È°Ê³°¤Ç<SID>¤¬»È¤ï¤ì¤Þ¤·¤¿"
+msgid "type :help cp-default<Enter> for info on this"
+msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help cp-default<Enter>"
-msgid "E449: Invalid expression received"
-msgstr "E449: ̵¸ú¤Ê¼°¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
+msgid "menu Help->Orphans for information "
+msgstr "¾ÜºÙ¤Ï¥á¥Ë¥å¡¼¤Î ¥Ø¥ë¥×¢ª¸É»ù ¤ò»²¾È¤·¤Æ²¼¤µ¤¤ "
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: Îΰ褬Êݸ¤ì¤Æ¤¤¤ë¤Î¤Ç, Êѹ¹¤Ç¤¤Þ¤»¤ó"
+msgid "Running modeless, typed text is inserted"
+msgstr "¥â¡¼¥É̵¤Ç¼Â¹ÔÃæ, ¥¿¥¤¥×¤·¤¿Ê¸»ú¤¬ÁÞÆþ¤µ¤ì¤Þ¤¹"
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans ¤ÏÆÉ¹þÀìÍÑ¥Õ¥¡¥¤¥ë¤òÊѹ¹¤¹¤ë¤³¤È¤òµö¤·¤Þ¤»¤ó"
+msgid "menu Edit->Global Settings->Toggle Insert Mode "
+msgstr "¥á¥Ë¥å¡¼¤Î ÊÔ½¸¢ªÁ´ÂÎÀßÄꢪÁÞÆþ(½é¿´¼Ô)¥â¡¼¥ÉÀÚÂØ"
-#, c-format
-msgid "E685: Internal error: %s"
-msgstr "E685: ÆâÉô¥¨¥é¡¼¤Ç¤¹: %s"
+msgid " for two modes "
+msgstr " ¤Ç¥â¡¼¥ÉÍ¤Ë "
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: ¥Ñ¥¿¡¼¥ó¤¬ 'maxmempattern' °Ê¾å¤Î¥á¥â¥ê¤ò»ÈÍѤ·¤Þ¤¹"
+msgid "menu Edit->Global Settings->Toggle Vi Compatible"
+msgstr "¥á¥Ë¥å¡¼¤Î ÊÔ½¸¢ªÁ´ÂÎÀßÄꢪVi¸ß´¹¥â¡¼¥ÉÀÚÂØ "
-msgid "E749: empty buffer"
-msgstr "E749: ¥Ð¥Ã¥Õ¥¡¤¬¶õ¤Ç¤¹"
+msgid " for Vim defaults "
+msgstr " ¤ÇVim¤È¤·¤ÆÆ°ºî "
-msgid "E682: Invalid search pattern or delimiter"
-msgstr "E682: ¸¡º÷¥Ñ¥¿¡¼¥ó¤«¶èÀڤ굹椬ÉÔÀµ¤Ç¤¹"
+msgid "Sponsor Vim development!"
+msgstr "Vim¤Î³«È¯¤ò±þ±ç¤·¤Æ¤¯¤À¤µ¤¤!"
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: Ʊ¤¸Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬Â¾¤Î¥Ð¥Ã¥Õ¥¡¤ÇÆÉ¹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹"
+msgid "Become a registered Vim user!"
+msgstr "Vim¤ÎÅÐÏ¿¥æ¡¼¥¶¤Ë¤Ê¤Ã¤Æ¤¯¤À¤µ¤¤!"
-#, c-format
-msgid "E764: Option '%s' is not set"
-msgstr "E764: ¥ª¥×¥·¥ç¥ó '%s' ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
+msgid "type :help sponsor<Enter> for information "
+msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help sponsor<Enter> "
-msgid "search hit TOP, continuing at BOTTOM"
-msgstr "¾å¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç²¼¤ËÌá¤ê¤Þ¤¹"
+msgid "type :help register<Enter> for information "
+msgstr "¾ÜºÙ¤Ê¾ðÊó¤Ï :help register<Enter> "
-msgid "search hit BOTTOM, continuing at TOP"
-msgstr "²¼¤Þ¤Ç¸¡º÷¤·¤¿¤Î¤Ç¾å¤ËÌá¤ê¤Þ¤¹"
+msgid "menu Help->Sponsor/Register for information "
+msgstr "¾ÜºÙ¤Ï¥á¥Ë¥å¡¼¤Î ¥Ø¥ë¥×¢ª¥¹¥Ý¥ó¥µ¡¼/ÅÐÏ¿ ¤ò»²¾È¤·¤Æ²¼¤µ¤¤ "
-#, c-format
-msgid "Need encryption key for \"%s\""
-msgstr "°Å¹æ¥¡¼¤¬É¬ÍפǤ¹: \"%s\""
+msgid "WARNING: Windows 95/98/ME detected"
+msgstr " ·Ù¹ð: Windows 95/98/Me ¤ò¸¡½Ð "
-msgid "writelines() requires list of strings"
-msgstr "writelines() ¤Ïʸ»úÎó¤ÎÇÛÎó¤òÍ׵ᤷ¤Þ¤¹"
+msgid "type :help windows95<Enter> for info on this"
+msgstr " ¾ÜºÙ¤Ê¾ðÊó¤Ï :help windows95<Enter> "
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: I/O¥ª¥Ö¥¸¥§¥¯¥È¤Î½é´ü²½¥¨¥é¡¼"
+msgid "Already only one window"
+msgstr "´û¤Ë¥¦¥£¥ó¥É¥¦¤Ï1¤Ä¤·¤«¤¢¤ê¤Þ¤»¤ó"
-msgid "no such buffer"
-msgstr "¤½¤Î¤è¤¦¤Ê¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E441: There is no preview window"
+msgstr "E441: ¥×¥ì¥Ó¥å¡¼¥¦¥£¥ó¥É¥¦¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "attempt to refer to deleted window"
-msgstr "ºï½ü¤µ¤ì¤¿¥¦¥£¥ó¥É¥¦¤ò»²¾È¤·¤è¤¦¤È¤·¤Þ¤·¤¿"
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: º¸¾å¤È±¦²¼¤òƱ»þ¤Ëʬ³ä¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-msgid "readonly attribute"
-msgstr "ÆÉ¹þÀìÍѰÀ"
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: ¾¤Î¥¦¥£¥ó¥É¥¦¤¬Ê¬³ä¤µ¤ì¤Æ¤¤¤ë»þ¤Ë¤Ï½ç²ó¤Ç¤¤Þ¤»¤ó"
-msgid "cursor position outside buffer"
-msgstr "¥«¡¼¥½¥ë¤¬¥Ð¥Ã¥Õ¥¡¤Î³°¤Ë¤¢¤ê¤Þ¤¹"
+msgid "E444: Cannot close last window"
+msgstr "E444: ºÇ¸å¤Î¥¦¥£¥ó¥É¥¦¤òÊĤ¸¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-#, c-format
-msgid "<window object (deleted) at %p>"
-msgstr "<¥¦¥£¥ó¥É¥¦¥ª¥Ö¥¸¥§¥¯¥È (¾ÃµîºÑ) %p>"
+msgid "E813: Cannot close autocmd window"
+msgstr "E813: autocmd¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
-#, c-format
-msgid "<window object (unknown) at %p>"
-msgstr "<¥¦¥£¥ó¥É¥¦¥ª¥Ö¥¸¥§¥¯¥È (̤ÃÎ) %p>"
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr "E814: autocmd¥¦¥£¥ó¥É¥¦¤·¤«»Ä¤é¤Ê¤¤¤¿¤á¡¢¥¦¥£¥ó¥É¥¦¤ÏÊĤ¸¤é¤ì¤Þ¤»¤ó"
-#, c-format
-msgid "<window %d>"
-msgstr "<¥¦¥£¥ó¥É¥¦ %d>"
+msgid "E445: Other window contains changes"
+msgstr "E445: ¾¤Î¥¦¥£¥ó¥É¥¦¤Ë¤ÏÊѹ¹¤¬¤¢¤ê¤Þ¤¹"
-msgid "no such window"
-msgstr "¤½¤Î¤è¤¦¤Ê¥¦¥£¥ó¥É¥¦¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgid "E446: No file name under cursor"
+msgstr "E446: ¥«¡¼¥½¥ë¤Î²¼¤Ë¥Õ¥¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó"
-msgid "attempt to refer to deleted buffer"
-msgstr "¾Ã¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤¬»²¾È¤µ¤ì¤Þ¤·¤¿"
+#, c-format
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
# Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed.
#
-# MURAOKA Taro <koron.kaoriya@gmail.com>, 2001-11.
-# Last Change: 23-Mar-2011.
+# Last Change: 15-Jun-2012.
+#
+# Copyright (C) 2001-12 MURAOKA Taro <koron.kaoriya@gmail.com>
+# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
#
msgid ""
msgstr ""
"Project-Id-Version: Vim 7.3\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-23 20:58+0900\n"
-"PO-Revision-Date: 2011-03-23 21:20+0900\n"
+"POT-Creation-Date: 2012-06-15 08:50+0900\n"
+"PO-Revision-Date: 2012-06-15 09:45+0900\n"
"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"Language-Team: MURAOKA Taro <koron.kaoriya@gmail.com>\n"
"MIME-Version: 1.0\n"
msgid "[Quickfix List]"
msgstr "[Quickfix\83\8a\83X\83g]"
+msgid "E855: Autocommands caused command to abort"
+msgstr "E855: autocommand\82ª\83R\83}\83\93\83h\82Ì\92â\8e~\82ð\88ø\82«\8bN\82±\82µ\82Ü\82µ\82½"
+
msgid "E82: Cannot allocate any buffer, exiting..."
msgstr "E82: \83o\83b\83t\83@\82ð1\82Â\82à\8dì\90¬\82Å\82«\82È\82¢\82Ì\82Å, \8fI\97¹\82µ\82Ü\82·..."
msgstr "E108: \82»\82Ì\95Ï\90\94\82Í\82 \82è\82Ü\82¹\82ñ: \"%s\""
msgid "E743: variable nested too deep for (un)lock"
-msgstr "E743: (\83A\83\93\83`)\83\8d\83b\83N\82·\82é\82É\82Í\95Ï\90\94\82Ì\93ü\82ê\8eq\82ª\90[\89ß\82¬\82Ü\82·"
+msgstr "E743: (\83A\83\93)\83\8d\83b\83N\82·\82é\82É\82Í\95Ï\90\94\82Ì\93ü\82ê\8eq\82ª\90[\89ß\82¬\82Ü\82·"
msgid "E109: Missing ':' after '?'"
msgstr "E109: '?' \82Ì\8cã\82É ':' \82ª\82 \82è\82Ü\82¹\82ñ"
msgid "E808: Number or Float required"
msgstr "E808: \90\94\92l\82©\95\82\93®\8f¬\90\94\93_\90\94\82ª\95K\97v\82Å\82·"
+msgid "add() argument"
+msgstr "add() \82Ì\88ø\90\94"
+
msgid "E699: Too many arguments"
msgstr "E699: \82ª\91½\89ß\82¬\82Ü\82·"
msgid "&Ok"
msgstr "&Ok"
+msgid "extend() argument"
+msgstr "extend() \82Ì\88ø\90\94"
+
#, c-format
msgid "E737: Key already exists: %s"
msgstr "E737: \83L\81[\82Í\8aù\82É\91¶\8dÝ\82µ\82Ü\82·: %s"
+msgid "map() argument"
+msgstr "map() \82Ì\88ø\90\94"
+
+msgid "filter() argument"
+msgstr "filter() \82Ì\88ø\90\94"
+
#, c-format
msgid "+-%s%3ld lines: "
msgstr "+-%s%3ld \8ds:"
msgid "called inputrestore() more often than inputsave()"
msgstr "inputrestore() \82ª inputsave() \82æ\82è\82à\91½\82\8cÄ\82Î\82ê\82Ü\82µ\82½"
+msgid "insert() argument"
+msgstr "insert() \82Ì\88ø\90\94"
+
msgid "E786: Range not allowed"
msgstr "E786: \94Í\88Í\8ew\92è\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
msgid "E277: Unable to read a server reply"
msgstr "E277: \83T\81[\83o\82Ì\89\9e\93\9a\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "remove() argument"
+msgstr "remove() \82Ì\88ø\90\94"
+
# Added at 10-Mar-2004.
msgid "E655: Too many symbolic links (cycle?)"
msgstr "E655: \83V\83\93\83{\83\8a\83b\83N\83\8a\83\93\83N\82ª\91½\89ß\82¬\82Ü\82· (\8fz\8aÂ\82µ\82Ä\82¢\82é\89Â\94\\\90«\82ª\82 \82è\82Ü\82·)"
+msgid "reverse() argument"
+msgstr "reverse() \82Ì\88ø\90\94"
+
msgid "E258: Unable to send to client"
msgstr "E258: \83N\83\89\83C\83A\83\93\83g\82Ö\91\97\82é\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
+msgid "sort() argument"
+msgstr "sort() \82Ì\88ø\90\94"
+
msgid "E702: Sort compare function failed"
msgstr "E702: \83\\\81[\83g\82Ì\94ä\8ar\8aÖ\90\94\82ª\8e¸\94s\82µ\82Ü\82µ\82½"
msgid "E806: using Float as a String"
msgstr "E806: \95\82\93®\8f¬\90\94\93_\90\94\82ð\95¶\8e\9a\97ñ\82Æ\82µ\82Ä\88µ\82Á\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "E704: Funcref variable name must start with a capital: %s"
-msgstr "E704: \8aÖ\90\94\8eQ\8fÆ\8c^\95Ï\90\94\96¼\82Í\91å\95¶\8e\9a\82Å\8en\82Ü\82ç\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ: %s"
-
-#, c-format
-msgid "E705: Variable name conflicts with existing function: %s"
-msgstr "E705: \95Ï\90\94\96¼\82ª\8aù\91¶\82Ì\8aÖ\90\94\96¼\82Æ\8fÕ\93Ë\82µ\82Ü\82·: %s"
-
#, c-format
msgid "E706: Variable type mismatch for: %s"
msgstr "E706: \95Ï\90\94\82Ì\8c^\82ª\88ê\92v\82µ\82Ü\82¹\82ñ: %s"
msgid "E795: Cannot delete variable %s"
msgstr "E795: \95Ï\90\94 %s \82ð\8dí\8f\9c\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E704: Funcref variable name must start with a capital: %s"
+msgstr "E704: \8aÖ\90\94\8eQ\8fÆ\8c^\95Ï\90\94\96¼\82Í\91å\95¶\8e\9a\82Å\8en\82Ü\82ç\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ: %s"
+
+#, c-format
+msgid "E705: Variable name conflicts with existing function: %s"
+msgstr "E705: \95Ï\90\94\96¼\82ª\8aù\91¶\82Ì\8aÖ\90\94\96¼\82Æ\8fÕ\93Ë\82µ\82Ü\82·: %s"
+
#, c-format
msgid "E741: Value is locked: %s"
msgstr "E741: \92l\82ª\83\8d\83b\83N\82³\82ê\82Ä\82¢\82Ü\82·: %s"
msgid "E125: Illegal argument: %s"
msgstr "E125: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
+msgid "E853: Duplicate argument name: %s"
+msgstr "E853: \88ø\90\94\96¼\82ª\8fd\95¡\82µ\82Ä\82¢\82Ü\82·: %s"
+
msgid "E126: Missing :endfunction"
msgstr "E126: :endfunction \82ª\82 \82è\82Ü\82¹\82ñ"
msgstr "E187: \96¢\92m"
msgid "E465: :winsize requires two number arguments"
-msgstr "E465: "
+msgstr "E465: :winsize \82É\82Í2\82Â\82Ì\90\94\92l\82Ì\88ø\90\94\82ª\95K\97v\82Å\82·"
#, c-format
msgid "Window position: X %d, Y %d"
#. set mark
msgid "E191: Argument must be a letter or forward/backward quote"
-msgstr "E191: \88ø\90\94\82Í\95¶\8e\9a\82©\91O\90i/\8cã\91Þ\83N\83H\81[\83g\82Å\82µ\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
+msgstr "E191: \88ø\90\94\82Í1\95¶\8e\9a\82Ì\89p\8e\9a\82©\88ø\97p\95\84 (' \82© `) \82Å\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
msgid "E192: Recursive use of :normal too deep"
msgstr "E192: :normal \82Ì\8dÄ\8bA\97\98\97p\82ª\90[\82\82È\82è\89ß\82¬\82Ü\82µ\82½"
#. Give up for a multiple ":finally" and ignore it.
msgid "E607: multiple :finally"
-msgstr "E607: \95¡\90\94\82Ì :finalyy \82ª\82 \82è\82Ü\82·"
+msgstr "E607: \95¡\90\94\82Ì :finally \82ª\82 \82è\82Ü\82·"
msgid "E602: :endtry without :try"
msgstr "E602: :try \82Ì\82È\82¢ :endtry \82Å\82·"
msgid "E228: makemap: Illegal mode"
msgstr "E228: makemap: \95s\90³\82È\83\82\81[\83h"
-msgid "E229: Cannot start the GUI"
-msgstr "E229: GUI\82ð\8aJ\8en\82Å\82«\82Ü\82¹\82ñ"
+msgid "--No lines in buffer--"
+msgstr "--\83o\83b\83t\83@\82É\8ds\82ª\82 \82è\82Ü\82¹\82ñ--"
-#, c-format
-msgid "E230: Cannot read from \"%s\""
-msgstr "E230: \"%s\"\82©\82ç\93Ç\8d\9e\82Þ\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
+#.
+#. * The error messages that can be shared are included here.
+#. * Excluded are errors that are only used once and debugging messages.
+#.
+msgid "E470: Command aborted"
+msgstr "E470: \83R\83}\83\93\83h\82ª\92\86\92f\82³\82ê\82Ü\82µ\82½"
-msgid "E665: Cannot start GUI, no valid font found"
-msgstr "E665: \97L\8cø\82È\83t\83H\83\93\83g\82ª\8c©\82Â\82©\82ç\82È\82¢\82Ì\82Å, GUI\82ð\8aJ\8en\82Å\82«\82Ü\82¹\82ñ"
+msgid "E471: Argument required"
+msgstr "E471: \88ø\90\94\82ª\95K\97v\82Å\82·"
-msgid "E231: 'guifontwide' invalid"
-msgstr "E231: 'guifontwide' \82ª\96³\8cø\82Å\82·"
+msgid "E10: \\ should be followed by /, ? or &"
+msgstr "E10: \\ \82Ì\8cã\82Í / \82© ? \82© & \82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
-msgid "E599: Value of 'imactivatekey' is invalid"
-msgstr "E599: 'imactivatekey' \82É\90Ý\92è\82³\82ê\82½\92l\82ª\96³\8cø\82Å\82·"
+msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
+msgstr "E11: \83R\83}\83\93\83h\83\89\83C\83\93\82Å\82Í\96³\8cø\82Å\82·; <CR>\82Å\8eÀ\8ds, CTRL-C\82Å\82â\82ß\82é"
-#, c-format
-msgid "E254: Cannot allocate color %s"
-msgstr "E254: %s \82Ì\90F\82ð\8a\84\82è\93\96\82Ä\82ç\82ê\82Ü\82¹\82ñ"
+msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
+msgstr ""
+"E12: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82â\83^\83O\8c\9f\8dõ\82Å\82Íexrc/vimrc\82Ì\83R\83}\83\93\83h\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
-msgid "No match at cursor, finding next"
-msgstr "\83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\83}\83b\83`\82Í\82 \82è\82Ü\82¹\82ñ, \8e\9f\82ð\8c\9f\8dõ\82µ\82Ä\82¢\82Ü\82·"
+msgid "E171: Missing :endif"
+msgstr "E171: :endif \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "<cannot open> "
-msgstr "<\8aJ\82¯\82Ü\82¹\82ñ>"
+msgid "E600: Missing :endtry"
+msgstr "E600: :endtry \82ª\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "E616: vim_SelFile: can't get font %s"
-msgstr "E616: vim_SelFile: \83t\83H\83\93\83g %s \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
+msgid "E170: Missing :endwhile"
+msgstr "E170: :endwhile \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E614: vim_SelFile: can't return to current directory"
-msgstr "E614: vim_SelFile: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\96ß\82ê\82Ü\82¹\82ñ"
+msgid "E170: Missing :endfor"
+msgstr "E170: :endfor \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Pathname:"
-msgstr "\83p\83X\96¼:"
+msgid "E588: :endwhile without :while"
+msgstr "E588: :while \82Ì\82È\82¢ :endwhile \82ª\82 \82è\82Ü\82·"
-msgid "E615: vim_SelFile: can't get current directory"
-msgstr "E615: vim_SelFile: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
+msgid "E588: :endfor without :for"
+msgstr "E588: :endfor \82Ì\82È\82¢ :for \82ª\82 \82è\82Ü\82·"
-msgid "OK"
-msgstr "OK"
+msgid "E13: File exists (add ! to override)"
+msgstr "E13: \83t\83@\83C\83\8b\82ª\91¶\8dÝ\82µ\82Ü\82· (! \82ð\92Ç\89Á\82Å\8fã\8f\91)"
-msgid "Cancel"
-msgstr "\83L\83\83\83\93\83Z\83\8b"
+msgid "E472: Command failed"
+msgstr "E472: \83R\83}\83\93\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Scrollbar Widget: Could not get geometry of thumb pixmap."
-msgstr "\83X\83N\83\8d\81[\83\8b\83o\81[: \89æ\91\9c\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½."
+#, c-format
+msgid "E234: Unknown fontset: %s"
+msgstr "E234: \96¢\92m\82Ì\83t\83H\83\93\83g\83Z\83b\83g: %s"
-msgid "Vim dialog"
-msgstr "Vim \83_\83C\83A\83\8d\83O"
+#, c-format
+msgid "E235: Unknown font: %s"
+msgstr "E235: \96¢\92m\82Ì\83t\83H\83\93\83g: %s"
-msgid "E232: Cannot create BalloonEval with both message and callback"
-msgstr "E232: \83\81\83b\83Z\81[\83W\82Æ\83R\81[\83\8b\83o\83b\83N\82Ì\82 \82é BalloonEval \82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E236: Font \"%s\" is not fixed-width"
+msgstr "E236: \83t\83H\83\93\83g \"%s\" \82Í\8cÅ\92è\95\9d\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid ""
-"&Yes\n"
-"&No\n"
-"&Cancel"
-msgstr ""
-"\82Í\82¢(&Y)\n"
-"\82¢\82¢\82¦(&N)\n"
-"\83L\83\83\83\93\83Z\83\8b(&C)"
+msgid "E473: Internal error"
+msgstr "E473: \93à\95\94\83G\83\89\81[\82Å\82·"
-msgid "Input _Methods"
-msgstr "\83C\83\93\83v\83b\83g\83\81\83\\\83b\83h"
+msgid "Interrupted"
+msgstr "\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½"
-msgid "VIM - Search and Replace..."
-msgstr "VIM - \8c\9f\8dõ\82Æ\92u\8a·..."
+msgid "E14: Invalid address"
+msgstr "E14: \96³\8cø\82È\83A\83h\83\8c\83X\82Å\82·"
-msgid "VIM - Search..."
-msgstr "VIM - \8c\9f\8dõ..."
+msgid "E474: Invalid argument"
+msgstr "E474: \96³\8cø\82È\88ø\90\94\82Å\82·"
-msgid "Find what:"
-msgstr "\8c\9f\8dõ\95¶\8e\9a\97ñ:"
+#, c-format
+msgid "E475: Invalid argument: %s"
+msgstr "E475: \96³\8cø\82È\88ø\90\94\82Å\82·: %s"
-msgid "Replace with:"
-msgstr "\92u\8a·\95¶\8e\9a\97ñ:"
+#, c-format
+msgid "E15: Invalid expression: %s"
+msgstr "E15: \96³\8cø\82È\8e®\82Å\82·: %s"
-#. whole word only button
-msgid "Match whole word only"
-msgstr "\90³\8am\82É\8aY\93\96\82·\82é\82à\82Ì\82¾\82¯"
+msgid "E16: Invalid range"
+msgstr "E16: \96³\8cø\82È\94Í\88Í\82Å\82·"
-#. match case button
-msgid "Match case"
-msgstr "\91å\95¶\8e\9a/\8f¬\95¶\8e\9a\82ð\8bæ\95Ê\82·\82é"
+msgid "E476: Invalid command"
+msgstr "E476: \96³\8cø\82È\83R\83}\83\93\83h\82Å\82·"
-msgid "Direction"
-msgstr "\95û\8cü"
+#, c-format
+msgid "E17: \"%s\" is a directory"
+msgstr "E17: \"%s\" \82Í\83f\83B\83\8c\83N\83g\83\8a\82Å\82·"
-#. 'Up' and 'Down' buttons
-msgid "Up"
-msgstr "\8fã"
+#, c-format
+msgid "E364: Library call failed for \"%s()\""
+msgstr "E364: \"%s\"() \82Ì\83\89\83C\83u\83\89\83\8a\8cÄ\8fo\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Down"
-msgstr "\89º"
+#, c-format
+msgid "E370: Could not load library %s"
+msgstr "E370: \83\89\83C\83u\83\89\83\8a %s \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
-#. 'Find Next' button
-msgid "Find Next"
-msgstr "\8e\9f\82ð\8c\9f\8dõ"
+#, c-format
+msgid "E448: Could not load library function %s"
+msgstr "E448: \83\89\83C\83u\83\89\83\8a\82Ì\8aÖ\90\94 %s \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
-#. 'Replace' button
-msgid "Replace"
-msgstr "\92u\8a·"
+msgid "E19: Mark has invalid line number"
+msgstr "E19: \83}\81[\83N\82É\96³\8cø\82È\8ds\94Ô\8d\86\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82µ\82½"
-#. 'Replace All' button
-msgid "Replace All"
-msgstr "\91S\82Ä\92u\8a·"
+msgid "E20: Mark not set"
+msgstr "E20: \83}\81[\83N\82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Vim: Received \"die\" request from session manager\n"
-msgstr "Vim: \83Z\83b\83V\83\87\83\93\83}\83l\81[\83W\83\83\82©\82ç \"die\" \97v\8b\81\82ð\8eó\82¯\8eæ\82è\82Ü\82µ\82½\n"
+msgid "E21: Cannot make changes, 'modifiable' is off"
+msgstr "E21: 'modifiable' \82ª\83I\83t\82È\82Ì\82Å, \95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
-msgid "Close"
-msgstr "\95Â\82¶\82é"
+msgid "E22: Scripts nested too deep"
+msgstr "E22: \83X\83N\83\8a\83v\83g\82Ì\93ü\82ê\8eq\82ª\90[\89ß\82¬\82Ü\82·"
-msgid "New tab"
-msgstr "\90V\8bK\83^\83u\83y\81[\83W"
+msgid "E23: No alternate file"
+msgstr "E23: \95\9b\83t\83@\83C\83\8b\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "Open Tab..."
-msgstr "\83^\83u\83y\81[\83W\82ð\8aJ\82..."
+msgid "E24: No such abbreviation"
+msgstr "E24: \82»\82Ì\82æ\82¤\82È\92Z\8fk\93ü\97Í\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "Vim: Main window unexpectedly destroyed\n"
-msgstr "Vim: \83\81\83C\83\93\83E\83B\83\93\83h\83E\82ª\95s\88Ó\82É\94j\89ó\82³\82ê\82Ü\82µ\82½\n"
+msgid "E477: No ! allowed"
+msgstr "E477: ! \82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "&Filter"
-msgstr "\83t\83B\83\8b\83^(&F)"
+msgid "E25: GUI cannot be used: Not enabled at compile time"
+msgstr "E25: GUI\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·"
-msgid "&Cancel"
-msgstr "\83L\83\83\83\93\83Z\83\8b(&C)"
+msgid "E26: Hebrew cannot be used: Not enabled at compile time\n"
+msgstr "E26: \83w\83u\83\89\83C\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
-msgid "Directories"
-msgstr "\83f\83B\83\8c\83N\83g\83\8a"
+msgid "E27: Farsi cannot be used: Not enabled at compile time\n"
+msgstr "E27: \83y\83\8b\83V\83A\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
-msgid "Filter"
-msgstr "\83t\83B\83\8b\83^"
+msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
+msgstr "E800: \83A\83\89\83r\83A\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
-msgid "&Help"
-msgstr "\83w\83\8b\83v(&H)"
+#, c-format
+msgid "E28: No such highlight group name: %s"
+msgstr "E28: \82»\82Ì\82æ\82¤\82È\96¼\82Ì\83n\83C\83\89\83C\83g\83O\83\8b\81[\83v\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid "Files"
-msgstr "\83t\83@\83C\83\8b"
+msgid "E29: No inserted text yet"
+msgstr "E29: \82Ü\82¾\83e\83L\83X\83g\82ª\91}\93ü\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "&OK"
-msgstr "&OK"
+msgid "E30: No previous command line"
+msgstr "E30: \88È\91O\82É\83R\83}\83\93\83h\8ds\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Selection"
-msgstr "\91I\91ð"
+msgid "E31: No such mapping"
+msgstr "E31: \82»\82Ì\82æ\82¤\82È\83}\83b\83s\83\93\83O\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "Find &Next"
-msgstr "\8e\9f\82ð\8c\9f\8dõ(&N)"
+msgid "E479: No match"
+msgstr "E479: \8aY\93\96\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "&Replace"
-msgstr "\92u\8a·(&R)"
+#, c-format
+msgid "E480: No match: %s"
+msgstr "E480: \8aY\93\96\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid "Replace &All"
-msgstr "\91S\82Ä\92u\8a·(&A)"
+msgid "E32: No file name"
+msgstr "E32: \83t\83@\83C\83\8b\96¼\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "&Undo"
-msgstr "\83A\83\93\83h\83D(&U)"
+msgid "E33: No previous substitute regular expression"
+msgstr "E33: \90³\8bK\95\\\8c»\92u\8a·\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-#, c-format
-msgid "E671: Cannot find window title \"%s\""
-msgstr "E671: \83^\83C\83g\83\8b\82ª \"%s\" \82Ì\83E\83B\83\93\83h\83E\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E34: No previous command"
+msgstr "E34: \83R\83}\83\93\83h\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-#, c-format
-msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
-msgstr "E243: \88ø\90\94\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ: \"-%s\"; OLE\94Å\82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢."
+msgid "E35: No previous regular expression"
+msgstr "E35: \90³\8bK\95\\\8c»\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "E672: Unable to open window inside MDI application"
-msgstr "E672: MDI\83A\83v\83\8a\82Ì\92\86\82Å\82Í\83E\83B\83\93\83h\83E\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E481: No range allowed"
+msgstr "E481: \94Í\88Í\8ew\92è\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Close tab"
-msgstr "\83^\83u\83y\81[\83W\82ð\95Â\82¶\82é"
+msgid "E36: Not enough room"
+msgstr "E36: \8f[\95ª\82È\97e\97Ê\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Open tab..."
-msgstr "\83^\83u\83y\81[\83W\82ð\8aJ\82"
+#, c-format
+msgid "E247: no registered server named \"%s\""
+msgstr "E247: %s \82Æ\82¢\82¤\96¼\91O\82Ì\93o\98^\82³\82ê\82½\83T\81[\83o\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "Find string (use '\\\\' to find a '\\')"
-msgstr "\8c\9f\8dõ\95¶\8e\9a\97ñ ('\\' \82ð\8c\9f\8dõ\82·\82é\82É\82Í '\\\\')"
+#, c-format
+msgid "E482: Can't create file %s"
+msgstr "E482: \83t\83@\83C\83\8b %s \82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ"
-msgid "Find & Replace (use '\\\\' to find a '\\')"
-msgstr "\8c\9f\8dõ\81E\92u\8a· ('\\' \82ð\8c\9f\8dõ\82·\82é\82É\82Í '\\\\')"
+msgid "E483: Can't get temp file name"
+msgstr "E483: \88ê\8e\9e\83t\83@\83C\83\8b\82Ì\96¼\91O\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
-#. We fake this: Use a filter that doesn't select anything and a default
-#. * file name that won't be used.
-msgid "Not Used"
-msgstr "\8eg\82í\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "E484: Can't open file %s"
+msgstr "E484: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "Directory\t*.nothing\n"
-msgstr "\83f\83B\83\8c\83N\83g\83\8a\t*.nothing\n"
+#, c-format
+msgid "E485: Can't read file %s"
+msgstr "E485: \83t\83@\83C\83\8b %s \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
-msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
-msgstr "Vim E458: \90F\8ew\92è\82ª\90³\82µ\82\82È\82¢\82Ì\82Å\83G\83\93\83g\83\8a\82ð\8a\84\82è\93\96\82Ä\82ç\82ê\82Ü\82¹\82ñ"
+msgid "E37: No write since last change (add ! to override)"
+msgstr "E37: \8dÅ\8cã\82Ì\95Ï\8dX\82ª\95Û\91¶\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ (! \82ð\92Ç\89Á\82Å\95Ï\8dX\82ð\94j\8aü)"
-#, c-format
-msgid "E250: Fonts for the following charsets are missing in fontset %s:"
-msgstr "E250: \88È\89º\82Ì\95¶\8e\9a\83Z\83b\83g\82Ì\83t\83H\83\93\83g\82ª\82 \82è\82Ü\82¹\82ñ %s:"
+msgid "E38: Null argument"
+msgstr "E38: \88ø\90\94\82ª\8bó\82Å\82·"
-#, c-format
-msgid "E252: Fontset name: %s"
-msgstr "E252: \83t\83H\83\93\83g\83Z\83b\83g\96¼: %s"
+msgid "E39: Number expected"
+msgstr "E39: \90\94\92l\82ª\97v\8b\81\82³\82ê\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "Font '%s' is not fixed-width"
-msgstr "\83t\83H\83\93\83g '%s' \82Í\8cÅ\92è\95\9d\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E40: Can't open errorfile %s"
+msgstr "E40: \83G\83\89\81[\83t\83@\83C\83\8b %s \82ð\8aJ\82¯\82Ü\82¹\82ñ"
-#, c-format
-msgid "E253: Fontset name: %s\n"
-msgstr "E253: \83t\83H\83\93\83g\83Z\83b\83g\96¼: %s\n"
+msgid "E233: cannot open display"
+msgstr "E233: \83f\83B\83X\83v\83\8c\83C\82ð\8aJ\82¯\82Ü\82¹\82ñ"
-#, c-format
-msgid "Font0: %s\n"
-msgstr "\83t\83H\83\93\83g0: %s\n"
+msgid "E41: Out of memory!"
+msgstr "E41: \83\81\83\82\83\8a\82ª\90s\82«\89Ê\82Ä\82Ü\82µ\82½!"
-#, c-format
-msgid "Font1: %s\n"
-msgstr "\83t\83H\83\93\83g1: %s\n"
+msgid "Pattern not found"
+msgstr "\83p\83^\81[\83\93\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½"
#, c-format
-msgid "Font%ld width is not twice that of font0\n"
-msgstr "\83t\83H\83\93\83g%ld \82Ì\95\9d\82ª\83t\83H\83\93\83g0\82Ì2\94{\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
+msgid "E486: Pattern not found: %s"
+msgstr "E486: \83p\83^\81[\83\93\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½: %s"
-#, c-format
-msgid "Font0 width: %ld\n"
-msgstr "\83t\83H\83\93\83g0\82Ì\95\9d: %ld\n"
+msgid "E487: Argument must be positive"
+msgstr "E487: \88ø\90\94\82Í\90³\82Ì\92l\82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
-#, c-format
-msgid ""
-"Font1 width: %ld\n"
-"\n"
-msgstr ""
-"\83t\83H\83\93\83g1\82Ì\95\9d: %ld\n"
-"\n"
+msgid "E459: Cannot go back to previous directory"
+msgstr "E459: \91O\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\96ß\82ê\82Ü\82¹\82ñ"
-msgid "Invalid font specification"
-msgstr "\96³\8cø\82È\83t\83H\83\93\83g\8ew\92è\82Å\82·"
+msgid "E42: No Errors"
+msgstr "E42: \83G\83\89\81[\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "&Dismiss"
-msgstr "\8bp\89º\82·\82é(&D)"
+msgid "E776: No location list"
+msgstr "E776: \8fê\8f\8a\83\8a\83X\83g\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "no specific match"
-msgstr "\83}\83b\83`\82·\82é\82à\82Ì\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E43: Damaged match string"
+msgstr "E43: \8aY\93\96\95¶\8e\9a\97ñ\82ª\94j\91¹\82µ\82Ä\82¢\82Ü\82·"
-msgid "Vim - Font Selector"
-msgstr "Vim - \83t\83H\83\93\83g\91I\91ð"
+msgid "E44: Corrupted regexp program"
+msgstr "E44: \95s\90³\82È\90³\8bK\95\\\8c»\83v\83\8d\83O\83\89\83\80\82Å\82·"
-msgid "Name:"
-msgstr "\96¼\91O:"
+msgid "E45: 'readonly' option is set (add ! to override)"
+msgstr "E45: 'readonly' \83I\83v\83V\83\87\83\93\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82· (! \82ð\92Ç\89Á\82Å\8fã\8f\91\82«)"
-#. create toggle button
-msgid "Show size in Points"
-msgstr "\83T\83C\83Y\82ð\83|\83C\83\93\83g\82Å\95\\\8e¦\82·\82é"
+#, c-format
+msgid "E46: Cannot change read-only variable \"%s\""
+msgstr "E46: \93Ç\8eæ\90ê\97p\95Ï\90\94 \"%s\" \82É\82Í\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
-msgid "Encoding:"
-msgstr "\83G\83\93\83R\81[\83h:"
+#, c-format
+msgid "E794: Cannot set variable in the sandbox: \"%s\""
+msgstr "E794: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\95Ï\90\94 \"%s\" \82É\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
-msgid "Font:"
-msgstr "\83t\83H\83\93\83g:"
+msgid "E47: Error while reading errorfile"
+msgstr "E47: \83G\83\89\81[\83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½"
-msgid "Style:"
-msgstr "\83X\83^\83C\83\8b:"
+msgid "E48: Not allowed in sandbox"
+msgstr "E48: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\8b\96\82³\82ê\82Ü\82¹\82ñ"
-msgid "Size:"
-msgstr "\83T\83C\83Y:"
+msgid "E523: Not allowed here"
+msgstr "E523: \82±\82±\82Å\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
-msgid "E256: Hangul automata ERROR"
-msgstr "E256: \83n\83\93\83O\83\8b\83I\81[\83g\83}\83g\83\93\83G\83\89\81["
+msgid "E359: Screen mode setting not supported"
+msgstr "E359: \83X\83N\83\8a\81[\83\93\83\82\81[\83h\82Ì\90Ý\92è\82É\82Í\91Î\89\9e\82µ\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "E550: Missing colon"
-msgstr "E550: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E49: Invalid scroll size"
+msgstr "E49: \96³\8cø\82È\83X\83N\83\8d\81[\83\8b\97Ê\82Å\82·"
-msgid "E551: Illegal component"
-msgstr "E551: \95s\90³\82È\8d\\\95¶\97v\91f\82Å\82·"
+msgid "E91: 'shell' option is empty"
+msgstr "E91: 'shell' \83I\83v\83V\83\87\83\93\82ª\8bó\82Å\82·"
-msgid "E552: digit expected"
-msgstr "E552: \90\94\92l\82ª\95K\97v\82Å\82·"
+msgid "E255: Couldn't read in sign data!"
+msgstr "E255: sign \82Ì\83f\81[\83^\82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ\82Å\82µ\82½"
-#, c-format
-msgid "Page %d"
-msgstr "%d \83y\81[\83W"
+msgid "E72: Close error on swap file"
+msgstr "E72: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\83N\83\8d\81[\83Y\8e\9e\83G\83\89\81[\82Å\82·"
-msgid "No text to be printed"
-msgstr "\88ó\8dü\82·\82é\83e\83L\83X\83g\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E73: tag stack empty"
+msgstr "E73: \83^\83O\83X\83^\83b\83N\82ª\8bó\82Å\82·"
-#, c-format
-msgid "Printing page %d (%d%%)"
-msgstr "\88ó\8dü\92\86: \83y\81[\83W %d (%d%%)"
+msgid "E74: Command too complex"
+msgstr "E74: \83R\83}\83\93\83h\82ª\95¡\8eG\89ß\82¬\82Ü\82·"
-#, c-format
-msgid " Copy %d of %d"
-msgstr " \83R\83s\81[ %d (\91S %d \92\86)"
+msgid "E75: Name too long"
+msgstr "E75: \96¼\91O\82ª\92·\89ß\82¬\82Ü\82·"
-#, c-format
-msgid "Printed: %s"
-msgstr "\88ó\8dü\82µ\82Ü\82µ\82½: %s"
+msgid "E76: Too many ["
+msgstr "E76: [ \82ª\91½\89ß\82¬\82Ü\82·"
-msgid "Printing aborted"
-msgstr "\88ó\8dü\82ª\92\86\8e~\82³\82ê\82Ü\82µ\82½"
+msgid "E77: Too many file names"
+msgstr "E77: \83t\83@\83C\83\8b\96¼\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "E455: Error writing to PostScript output file"
-msgstr "E455: PostScript\8fo\97Í\83t\83@\83C\83\8b\82Ì\8f\91\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
+msgid "E488: Trailing characters"
+msgstr "E488: \97]\95ª\82È\95¶\8e\9a\82ª\8cã\82ë\82É\82 \82è\82Ü\82·"
-#, c-format
-msgid "E624: Can't open file \"%s\""
-msgstr "E624: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E78: Unknown mark"
+msgstr "E78: \96¢\92m\82Ì\83}\81[\83N"
-#, c-format
-msgid "E457: Can't read PostScript resource file \"%s\""
-msgstr "E457: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s\" \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
+msgid "E79: Cannot expand wildcards"
+msgstr "E79: \83\8f\83C\83\8b\83h\83J\81[\83h\82ð\93W\8aJ\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E618: file \"%s\" is not a PostScript resource file"
-msgstr "E618: \83t\83@\83C\83\8b \"%s\" \82Í PostScript \83\8a\83\\\81[\83X\83t\83@\83C\83\8b\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
+msgstr "E591: 'winheight' \82Í 'winminheight' \82æ\82è\8f¬\82³\82\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E619: file \"%s\" is not a supported PostScript resource file"
-msgstr "E619: \83t\83@\83C\83\8b \"%s\" \82Í\91Î\89\9e\82µ\82Ä\82¢\82È\82¢ PostScript \83\8a\83\\\81[\83X\83t\83@\83C\83\8b\82Å\82·"
+msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
+msgstr "E592: 'winwidth' \82Í 'winminwidth' \82æ\82è\8f¬\82³\82\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E621: \"%s\" resource file has wrong version"
-msgstr "E621: \83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s\" \82Í\83o\81[\83W\83\87\83\93\82ª\88Ù\82È\82è\82Ü\82·"
+msgid "E80: Error while writing"
+msgstr "E80: \8f\91\8d\9e\82Ý\92\86\82Ì\83G\83\89\81["
-msgid "E673: Incompatible multi-byte encoding and character set."
-msgstr "E673: \8cÝ\8a·\90«\82Ì\96³\82¢\83}\83\8b\83`\83o\83C\83g\83G\83\93\83R\81[\83f\83B\83\93\83O\82Æ\95¶\8e\9a\83Z\83b\83g\82Å\82·"
+msgid "Zero count"
+msgstr "\83[\83\8d\83J\83E\83\93\83g"
-msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
-msgstr "E674: \83}\83\8b\83`\83o\83C\83g\83G\83\93\83R\81[\83f\83B\83\93\83O\82Å\82Í printmbcharset \82ð\8bó\82É\82Å\82«\82Ü\82¹\82ñ"
+msgid "E81: Using <SID> not in a script context"
+msgstr "E81: \83X\83N\83\8a\83v\83g\88È\8aO\82Å<SID>\82ª\8eg\82í\82ê\82Ü\82µ\82½"
-msgid "E675: No default font specified for multi-byte printing."
-msgstr ""
-"E675: \83}\83\8b\83`\83o\83C\83g\95¶\8e\9a\82ð\88ó\8dü\82·\82é\82½\82ß\82Ì\83f\83t\83H\83\8b\83g\83t\83H\83\93\83g\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E449: Invalid expression received"
+msgstr "E449: \96³\8cø\82È\8e®\82ð\8eó\82¯\8eæ\82è\82Ü\82µ\82½"
-msgid "E324: Can't open PostScript output file"
-msgstr "E324: PostScript\8fo\97Í\97p\82Ì\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E463: Region is guarded, cannot modify"
+msgstr "E463: \97Ì\88æ\82ª\95Û\8cì\82³\82ê\82Ä\82¢\82é\82Ì\82Å, \95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
+
+msgid "E744: NetBeans does not allow changes in read-only files"
+msgstr "E744: NetBeans \82Í\93Ç\8d\9e\90ê\97p\83t\83@\83C\83\8b\82ð\95Ï\8dX\82·\82é\82±\82Æ\82ð\8b\96\82µ\82Ü\82¹\82ñ"
#, c-format
-msgid "E456: Can't open file \"%s\""
-msgstr "E456: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E685: Internal error: %s"
+msgstr "E685: \93à\95\94\83G\83\89\81[\82Å\82·: %s"
-msgid "E456: Can't find PostScript resource file \"prolog.ps\""
-msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"prolog.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E363: pattern uses more memory than 'maxmempattern'"
+msgstr "E363: \83p\83^\81[\83\93\82ª 'maxmempattern' \88È\8fã\82Ì\83\81\83\82\83\8a\82ð\8eg\97p\82µ\82Ü\82·"
-msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
-msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"cidfont.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E749: empty buffer"
+msgstr "E749: \83o\83b\83t\83@\82ª\8bó\82Å\82·"
-#, c-format
-msgid "E456: Can't find PostScript resource file \"%s.ps\""
-msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E682: Invalid search pattern or delimiter"
+msgstr "E682: \8c\9f\8dõ\83p\83^\81[\83\93\82©\8bæ\90Ø\82è\8bL\8d\86\82ª\95s\90³\82Å\82·"
+
+msgid "E139: File is loaded in another buffer"
+msgstr "E139: \93¯\82¶\96¼\91O\82Ì\83t\83@\83C\83\8b\82ª\91¼\82Ì\83o\83b\83t\83@\82Å\93Ç\8d\9e\82Ü\82ê\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "E620: Unable to convert to print encoding \"%s\""
-msgstr "E620: \88ó\8dü\83G\83\93\83R\81[\83h \"%s\" \82Ö\95Ï\8a·\82Å\82«\82Ü\82¹\82ñ"
+msgid "E764: Option '%s' is not set"
+msgstr "E764: \83I\83v\83V\83\87\83\93 '%s' \82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Sending to printer..."
-msgstr "\83v\83\8a\83\93\83^\82É\91\97\90M\92\86..."
+msgid "E850: Invalid register name"
+msgstr "E850: \96³\8cø\82È\83\8c\83W\83X\83^\96¼\82Å\82·"
-msgid "E365: Failed to print PostScript file"
-msgstr "E365: PostScript\83t\83@\83C\83\8b\82Ì\88ó\8dü\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "search hit TOP, continuing at BOTTOM"
+msgstr "\8fã\82Ü\82Å\8c\9f\8dõ\82µ\82½\82Ì\82Å\89º\82É\96ß\82è\82Ü\82·"
-msgid "Print job sent."
-msgstr "\88ó\8dü\83W\83\87\83u\82ð\91\97\90M\82µ\82Ü\82µ\82½."
-
-msgid "Add a new database"
-msgstr "\90V\83f\81[\83^\83x\81[\83X\82ð\92Ç\89Á"
-
-msgid "Query for a pattern"
-msgstr "\83p\83^\81[\83\93\82Ì\83N\83G\83\8a\81[\82ð\92Ç\89Á"
-
-msgid "Show this message"
-msgstr "\82±\82Ì\83\81\83b\83Z\81[\83W\82ð\95\\\8e¦\82·\82é"
-
-msgid "Kill a connection"
-msgstr "\90Ú\91±\82ð\8fI\97¹\82·\82é"
-
-msgid "Reinit all connections"
-msgstr "\91S\82Ä\82Ì\90Ú\91±\82ð\8dÄ\8f\89\8aú\89»\82·\82é"
-
-msgid "Show connections"
-msgstr "\90Ú\91±\82ð\95\\\8e¦\82·\82é"
+msgid "search hit BOTTOM, continuing at TOP"
+msgstr "\89º\82Ü\82Å\8c\9f\8dõ\82µ\82½\82Ì\82Å\8fã\82É\96ß\82è\82Ü\82·"
#, c-format
-msgid "E560: Usage: cs[cope] %s"
-msgstr "E560: \8eg\97p\95û\96@: cs[cope] %s"
+msgid "Need encryption key for \"%s\""
+msgstr "\88Ã\8d\86\83L\81[\82ª\95K\97v\82Å\82·: \"%s\""
-msgid "This cscope command does not support splitting the window.\n"
-msgstr "\82±\82Ìcscope\83R\83}\83\93\83h\82Í\95ª\8a\84\83E\83B\83\93\83h\83E\82Å\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ.\n"
+msgid "E851: Failed to create a new process for the GUI"
+msgstr "E851: GUI\97p\82Ì\83v\83\8d\83Z\83X\82Ì\8bN\93®\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "E562: Usage: cstag <ident>"
-msgstr "E562: \8eg\97p\96@: cstag <ident>"
+msgid "E852: The child process failed to start the GUI"
+msgstr "E852: \8eq\83v\83\8d\83Z\83X\82ªGUI\82Ì\8bN\93®\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "E257: cstag: tag not found"
-msgstr "E257: cstag: \83^\83O\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E229: Cannot start the GUI"
+msgstr "E229: GUI\82ð\8aJ\8en\82Å\82«\82Ü\82¹\82ñ"
#, c-format
-msgid "E563: stat(%s) error: %d"
-msgstr "E563: stat(%s) \83G\83\89\81[: %d"
+msgid "E230: Cannot read from \"%s\""
+msgstr "E230: \"%s\"\82©\82ç\93Ç\8d\9e\82Þ\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
-msgid "E563: stat error"
-msgstr "E563: stat \83G\83\89\81["
+msgid "E665: Cannot start GUI, no valid font found"
+msgstr "E665: \97L\8cø\82È\83t\83H\83\93\83g\82ª\8c©\82Â\82©\82ç\82È\82¢\82Ì\82Å, GUI\82ð\8aJ\8en\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E564: %s is not a directory or a valid cscope database"
-msgstr "E564: %s \82Í\83f\83B\83\8c\83N\83g\83\8a\8by\82Ñ\97L\8cø\82Ècscope\82Ì\83f\81[\83^\83x\81[\83X\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E231: 'guifontwide' invalid"
+msgstr "E231: 'guifontwide' \82ª\96³\8cø\82Å\82·"
-#, c-format
-msgid "Added cscope database %s"
-msgstr "cscope\83f\81[\83^\83x\81[\83X %s \82ð\92Ç\89Á"
+msgid "E599: Value of 'imactivatekey' is invalid"
+msgstr "E599: 'imactivatekey' \82É\90Ý\92è\82³\82ê\82½\92l\82ª\96³\8cø\82Å\82·"
#, c-format
-msgid "E262: error reading cscope connection %ld"
-msgstr "E262: cscope\82Ì\90Ú\91± %ld \82ð\93Ç\8d\9e\82Ý\92\86\82Ì\83G\83\89\81[\82Å\82·"
-
-msgid "E561: unknown cscope search type"
-msgstr "E561: \96¢\92m\82Ìcscope\8c\9f\8dõ\8c^\82Å\82·"
+msgid "E254: Cannot allocate color %s"
+msgstr "E254: %s \82Ì\90F\82ð\8a\84\82è\93\96\82Ä\82ç\82ê\82Ü\82¹\82ñ"
-msgid "E566: Could not create cscope pipes"
-msgstr "E566: cscope\83p\83C\83v\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "No match at cursor, finding next"
+msgstr "\83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\83}\83b\83`\82Í\82 \82è\82Ü\82¹\82ñ, \8e\9f\82ð\8c\9f\8dõ\82µ\82Ä\82¢\82Ü\82·"
-msgid "E622: Could not fork for cscope"
-msgstr "E622: cscope\82Ì\8bN\93®\8f\80\94õ(fork)\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "<cannot open> "
+msgstr "<\8aJ\82¯\82Ü\82¹\82ñ>"
-msgid "cs_create_connection exec failed"
-msgstr "cs_create_connection \82Ì\8eÀ\8ds\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+#, c-format
+msgid "E616: vim_SelFile: can't get font %s"
+msgstr "E616: vim_SelFile: \83t\83H\83\93\83g %s \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
-msgid "cs_create_connection: fdopen for to_fp failed"
-msgstr "cs_create_connection: to_fp \82Ì fdopen \82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "E614: vim_SelFile: can't return to current directory"
+msgstr "E614: vim_SelFile: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\96ß\82ê\82Ü\82¹\82ñ"
-msgid "cs_create_connection: fdopen for fr_fp failed"
-msgstr "cs_create_connection: fr_fp \82Ì fdopen \82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "Pathname:"
+msgstr "\83p\83X\96¼:"
-msgid "E623: Could not spawn cscope process"
-msgstr "E623: cscope\83v\83\8d\83Z\83X\82ð\8bN\93®\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "E615: vim_SelFile: can't get current directory"
+msgstr "E615: vim_SelFile: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
-msgid "E567: no cscope connections"
-msgstr "E567: cscope\90Ú\91±\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "OK"
+msgstr "OK"
-#, c-format
-msgid "E469: invalid cscopequickfix flag %c for %c"
-msgstr "E469: \96³\8cø\82È cscopequickfix \83t\83\89\83O %c \82Ì %c \82Å\82·"
+msgid "Cancel"
+msgstr "\83L\83\83\83\93\83Z\83\8b"
-#, c-format
-msgid "E259: no matches found for cscope query %s of %s"
-msgstr "E259: cscope\83N\83G\83\8a\81[ %s of %s \82É\8aY\93\96\82ª\82 \82è\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "Scrollbar Widget: Could not get geometry of thumb pixmap."
+msgstr "\83X\83N\83\8d\81[\83\8b\83o\81[: \89æ\91\9c\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½."
-msgid "cscope commands:\n"
-msgstr "cscope\83R\83}\83\93\83h:\n"
+msgid "Vim dialog"
+msgstr "Vim \83_\83C\83A\83\8d\83O"
-#, c-format
-msgid "%-5s: %s%*s (Usage: %s)"
-msgstr "%-5s: %s%*s (\8eg\97p\96@: %s)"
+msgid "E232: Cannot create BalloonEval with both message and callback"
+msgstr "E232: \83\81\83b\83Z\81[\83W\82Æ\83R\81[\83\8b\83o\83b\83N\82Ì\82 \82é BalloonEval \82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ"
msgid ""
-"\n"
-" c: Find functions calling this function\n"
-" d: Find functions called by this function\n"
-" e: Find this egrep pattern\n"
-" f: Find this file\n"
-" g: Find this definition\n"
-" i: Find files #including this file\n"
-" s: Find this C symbol\n"
-" t: Find this text string\n"
+"&Yes\n"
+"&No\n"
+"&Cancel"
msgstr ""
-"\n"
-" c: \82±\82Ì\8aÖ\90\94\82ð\8cÄ\82ñ\82Å\82¢\82é\8aÖ\90\94\82ð\92T\82·\n"
-" d: \82±\82Ì\8aÖ\90\94\82©\82ç\8cÄ\82ñ\82Å\82¢\82é\8aÖ\90\94\82ð\92T\82·\n"
-" e: \82±\82Ìegrep\83p\83^\81[\83\93\82ð\92T\82·\n"
-" f: \82±\82Ì\83t\83@\83C\83\8b\82ð\92T\82·\n"
-" g: \82±\82Ì\92è\8b`\82ð\92T\82·\n"
-" i: \82±\82Ì\83t\83@\83C\83\8b\82ð#include\82µ\82Ä\82¢\82é\83t\83@\83C\83\8b\82ð\92T\82·\n"
-" s: \82±\82ÌC\83V\83\93\83{\83\8b\82ð\92T\82·\n"
-" t: \82±\82Ì\83e\83L\83X\83g\95¶\8e\9a\97ñ\82ð\92T\82·\n"
+"\82Í\82¢(&Y)\n"
+"\82¢\82¢\82¦(&N)\n"
+"\83L\83\83\83\93\83Z\83\8b(&C)"
-#, c-format
-msgid "E625: cannot open cscope database: %s"
-msgstr "E625: cscope\83f\81[\83^\83x\81[\83X: %s \82ð\8aJ\82\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
+msgid "Input _Methods"
+msgstr "\83C\83\93\83v\83b\83g\83\81\83\\\83b\83h"
-msgid "E626: cannot get cscope database information"
-msgstr "E626: cscope\83f\81[\83^\83x\81[\83X\82Ì\8fî\95ñ\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
+msgid "VIM - Search and Replace..."
+msgstr "VIM - \8c\9f\8dõ\82Æ\92u\8a·..."
-msgid "E568: duplicate cscope database not added"
-msgstr "E568: \8fd\95¡\82·\82écscope\83f\81[\83^\83x\81[\83X\82Í\92Ç\89Á\82³\82ê\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "VIM - Search..."
+msgstr "VIM - \8c\9f\8dõ..."
-#, c-format
-msgid "E261: cscope connection %s not found"
-msgstr "E261: cscope\90Ú\91± %s \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "Find what:"
+msgstr "\8c\9f\8dõ\95¶\8e\9a\97ñ:"
-#, c-format
-msgid "cscope connection %s closed"
-msgstr "cscope\90Ú\91± %s \82ª\95Â\82¶\82ç\82ê\82Ü\82µ\82½"
+msgid "Replace with:"
+msgstr "\92u\8a·\95¶\8e\9a\97ñ:"
-#. should not reach here
-msgid "E570: fatal error in cs_manage_matches"
-msgstr "E570: cs_manage_matches \82Å\92v\96½\93I\82È\83G\83\89\81[\82Å\82·"
+#. whole word only button
+msgid "Match whole word only"
+msgstr "\90³\8am\82É\8aY\93\96\82·\82é\82à\82Ì\82¾\82¯"
-#, c-format
-msgid "Cscope tag: %s"
-msgstr "Cscope \83^\83O: %s"
+#. match case button
+msgid "Match case"
+msgstr "\91å\95¶\8e\9a/\8f¬\95¶\8e\9a\82ð\8bæ\95Ê\82·\82é"
-msgid ""
-"\n"
-" # line"
-msgstr ""
-"\n"
-" # \8ds\94Ô\8d\86"
+msgid "Direction"
+msgstr "\95û\8cü"
-msgid "filename / context / line\n"
-msgstr "\83t\83@\83C\83\8b\96¼ / \95¶\96¬ / \8ds\n"
+#. 'Up' and 'Down' buttons
+msgid "Up"
+msgstr "\8fã"
-#, c-format
-msgid "E609: Cscope error: %s"
-msgstr "E609: cscope\83G\83\89\81[: %s"
+msgid "Down"
+msgstr "\89º"
-msgid "All cscope databases reset"
-msgstr "\91S\82Ä\82Ìcscope\83f\81[\83^\83x\81[\83X\82ð\83\8a\83Z\83b\83g\82µ\82Ü\82·"
+#. 'Find Next' button
+msgid "Find Next"
+msgstr "\8e\9f\82ð\8c\9f\8dõ"
-msgid "no cscope connections\n"
-msgstr "cscope\90Ú\91±\82ª\82 \82è\82Ü\82¹\82ñ\n"
+#. 'Replace' button
+msgid "Replace"
+msgstr "\92u\8a·"
-msgid " # pid database name prepend path\n"
-msgstr " # pid \83f\81[\83^\83x\81[\83X\96¼ prepend \83p\83X\n"
+#. 'Replace All' button
+msgid "Replace All"
+msgstr "\91S\82Ä\92u\8a·"
-msgid "Lua library cannot be loaded."
-msgstr "Lua\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ."
+msgid "Vim: Received \"die\" request from session manager\n"
+msgstr "Vim: \83Z\83b\83V\83\87\83\93\83}\83l\81[\83W\83\83\82©\82ç \"die\" \97v\8b\81\82ð\8eó\82¯\8eæ\82è\82Ü\82µ\82½\n"
-msgid "cannot save undo information"
-msgstr "\83A\83\93\83h\83D\8fî\95ñ\82ª\95Û\91¶\82Å\82«\82Ü\82¹\82ñ"
+msgid "Close"
+msgstr "\95Â\82¶\82é"
-msgid ""
-"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
-"loaded."
-msgstr "E815: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·. MzScheme \83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ."
+msgid "New tab"
+msgstr "\90V\8bK\83^\83u\83y\81[\83W"
-msgid "invalid expression"
-msgstr "\96³\8cø\82È\8e®\82Å\82·"
+msgid "Open Tab..."
+msgstr "\83^\83u\83y\81[\83W\82ð\8aJ\82..."
-msgid "expressions disabled at compile time"
-msgstr "\8e®\82Í\83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid "Vim: Main window unexpectedly destroyed\n"
+msgstr "Vim: \83\81\83C\83\93\83E\83B\83\93\83h\83E\82ª\95s\88Ó\82É\94j\89ó\82³\82ê\82Ü\82µ\82½\n"
-msgid "hidden option"
-msgstr "\89B\82µ\83I\83v\83V\83\87\83\93"
+msgid "&Filter"
+msgstr "\83t\83B\83\8b\83^(&F)"
-msgid "unknown option"
-msgstr "\96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·"
+msgid "&Cancel"
+msgstr "\83L\83\83\83\93\83Z\83\8b(&C)"
-msgid "window index is out of range"
-msgstr "\94Í\88Í\8aO\82Ì\83E\83B\83\93\83h\83E\94Ô\8d\86\82Å\82·"
+msgid "Directories"
+msgstr "\83f\83B\83\8c\83N\83g\83\8a"
-msgid "couldn't open buffer"
-msgstr "\83o\83b\83t\83@\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "Filter"
+msgstr "\83t\83B\83\8b\83^"
-msgid "cannot delete line"
-msgstr "\8ds\82ð\8fÁ\82¹\82Ü\82¹\82ñ"
+msgid "&Help"
+msgstr "\83w\83\8b\83v(&H)"
-msgid "cannot replace line"
-msgstr "\8ds\82ð\92u\8a·\82Å\82«\82Ü\82¹\82ñ"
+msgid "Files"
+msgstr "\83t\83@\83C\83\8b"
-msgid "cannot insert line"
-msgstr "\8ds\82ð\91}\93ü\82Å\82«\82Ü\82¹\82ñ"
+msgid "&OK"
+msgstr "&OK"
-msgid "string cannot contain newlines"
-msgstr "\95¶\8e\9a\97ñ\82É\82Í\89ü\8ds\95¶\8e\9a\82ð\8aÜ\82ß\82ç\82ê\82Ü\82¹\82ñ"
+msgid "Selection"
+msgstr "\91I\91ð"
-msgid "Vim error: ~a"
-msgstr "Vim \83G\83\89\81[: ~a"
+msgid "Find &Next"
+msgstr "\8e\9f\82ð\8c\9f\8dõ(&N)"
-msgid "Vim error"
-msgstr "Vim \83G\83\89\81["
-
-msgid "buffer is invalid"
-msgstr "\83o\83b\83t\83@\82Í\96³\8cø\82Å\82·"
+msgid "&Replace"
+msgstr "\92u\8a·(&R)"
-msgid "window is invalid"
-msgstr "\83E\83B\83\93\83h\83E\82Í\96³\8cø\82Å\82·"
+msgid "Replace &All"
+msgstr "\91S\82Ä\92u\8a·(&A)"
-msgid "linenr out of range"
-msgstr "\94Í\88Í\8aO\82Ì\8ds\94Ô\8d\86\82Å\82·"
+msgid "&Undo"
+msgstr "\83A\83\93\83h\83D(&U)"
-msgid "not allowed in the Vim sandbox"
-msgstr "\83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\8b\96\82³\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "E671: Cannot find window title \"%s\""
+msgstr "E671: \83^\83C\83g\83\8b\82ª \"%s\" \82Ì\83E\83B\83\93\83h\83E\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E370: Could not load library %s"
-msgstr "E370: \83\89\83C\83u\83\89\83\8a %s \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "E243: Argument not supported: \"-%s\"; Use the OLE version."
+msgstr "E243: \88ø\90\94\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ: \"-%s\"; OLE\94Å\82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢."
-msgid "Sorry, this command is disabled: the Perl library could not be loaded."
-msgstr ""
-"\82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·, \82²\82ß\82ñ\82È\82³\82¢: Perl\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½."
+msgid "E672: Unable to open window inside MDI application"
+msgstr "E672: MDI\83A\83v\83\8a\82Ì\92\86\82Å\82Í\83E\83B\83\93\83h\83E\82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
-msgstr ""
-"E299: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í Safe \83\82\83W\83\85\81[\83\8b\82ð\8eg\97p\82µ\82È\82¢Perl\83X\83N\83\8a\83v\83g\82Í\8bÖ\82¶\82ç\82ê"
-"\82Ä\82¢\82Ü\82·"
+msgid "Close tab"
+msgstr "\83^\83u\83y\81[\83W\82ð\95Â\82¶\82é"
-msgid "E836: This Vim cannot execute :python after using :py3"
-msgstr "E836: \82±\82ÌVim\82Å\82Í :py3 \82ð\8eg\82Á\82½\8cã\82É :python \82ð\8eg\82¦\82Ü\82¹\82ñ"
+msgid "Open tab..."
+msgstr "\83^\83u\83y\81[\83W\82ð\8aJ\82"
-msgid ""
-"E263: Sorry, this command is disabled, the Python library could not be "
-"loaded."
-msgstr ""
-"E263: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Python\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ"
-"\82Å\82µ\82½."
+msgid "Find string (use '\\\\' to find a '\\')"
+msgstr "\8c\9f\8dõ\95¶\8e\9a\97ñ ('\\' \82ð\8c\9f\8dõ\82·\82é\82É\82Í '\\\\')"
-# Added at 07-Feb-2004.
-msgid "E659: Cannot invoke Python recursively"
-msgstr "E659: Python \82ð\8dÄ\8bA\93I\82É\8eÀ\8ds\82·\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
+msgid "Find & Replace (use '\\\\' to find a '\\')"
+msgstr "\8c\9f\8dõ\81E\92u\8a· ('\\' \82ð\8c\9f\8dõ\82·\82é\82É\82Í '\\\\')"
-msgid "can't delete OutputObject attributes"
-msgstr "OutputObject\91®\90«\82ð\8fÁ\82¹\82Ü\82¹\82ñ"
+#. We fake this: Use a filter that doesn't select anything and a default
+#. * file name that won't be used.
+msgid "Not Used"
+msgstr "\8eg\82í\82ê\82Ü\82¹\82ñ"
-msgid "softspace must be an integer"
-msgstr "softspace \82Í integer \82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
+msgid "Directory\t*.nothing\n"
+msgstr "\83f\83B\83\8c\83N\83g\83\8a\t*.nothing\n"
-msgid "invalid attribute"
-msgstr "\96³\8cø\82È\91®\90«\82Å\82·"
+msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect"
+msgstr "Vim E458: \90F\8ew\92è\82ª\90³\82µ\82\82È\82¢\82Ì\82Å\83G\83\93\83g\83\8a\82ð\8a\84\82è\93\96\82Ä\82ç\82ê\82Ü\82¹\82ñ"
#, c-format
-msgid "<buffer object (deleted) at %p>"
-msgstr "<\83o\83b\83t\83@\83I\83u\83W\83F\83N\83g (\8fÁ\8b\8e\8dÏ\82Ý) %p>"
-
-msgid "E837: This Vim cannot execute :py3 after using :python"
-msgstr "E837: \82±\82ÌVim\82Å\82Í :python \82ð\8eg\82Á\82½\8cã\82É :py3 \82ð\8eg\82¦\82Ü\82¹\82ñ"
-
-msgid "E265: $_ must be an instance of String"
-msgstr "E265: $_ \82Í\95¶\8e\9a\97ñ\82Ì\83C\83\93\83X\83^\83\93\83X\82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
+msgid "E250: Fonts for the following charsets are missing in fontset %s:"
+msgstr "E250: \88È\89º\82Ì\95¶\8e\9a\83Z\83b\83g\82Ì\83t\83H\83\93\83g\82ª\82 \82è\82Ü\82¹\82ñ %s:"
-msgid ""
-"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
-msgstr ""
-"E266: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Ruby\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å"
-"\82µ\82½."
+#, c-format
+msgid "E252: Fontset name: %s"
+msgstr "E252: \83t\83H\83\93\83g\83Z\83b\83g\96¼: %s"
-msgid "E267: unexpected return"
-msgstr "E267: \97\\\8aú\82¹\82Ê return \82Å\82·"
+#, c-format
+msgid "Font '%s' is not fixed-width"
+msgstr "\83t\83H\83\93\83g '%s' \82Í\8cÅ\92è\95\9d\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "E268: unexpected next"
-msgstr "E268: \97\\\8aú\82¹\82Ê next \82Å\82·"
+#, c-format
+msgid "E253: Fontset name: %s\n"
+msgstr "E253: \83t\83H\83\93\83g\83Z\83b\83g\96¼: %s\n"
-msgid "E269: unexpected break"
-msgstr "E269: \97\\\8aú\82¹\82Ê break \82Å\82·"
+#, c-format
+msgid "Font0: %s\n"
+msgstr "\83t\83H\83\93\83g0: %s\n"
-msgid "E270: unexpected redo"
-msgstr "E270: \97\\\8aú\82¹\82Ê redo \82Å\82·"
+#, c-format
+msgid "Font1: %s\n"
+msgstr "\83t\83H\83\93\83g1: %s\n"
-msgid "E271: retry outside of rescue clause"
-msgstr "E271: rescue \82Ì\8aO\82Ì retry \82Å\82·"
+#, c-format
+msgid "Font%ld width is not twice that of font0\n"
+msgstr "\83t\83H\83\93\83g%ld \82Ì\95\9d\82ª\83t\83H\83\93\83g0\82Ì2\94{\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
-msgid "E272: unhandled exception"
-msgstr "E272: \8eæ\82è\88µ\82í\82ê\82È\82©\82Á\82½\97á\8aO\82ª\82 \82è\82Ü\82·"
+#, c-format
+msgid "Font0 width: %ld\n"
+msgstr "\83t\83H\83\93\83g0\82Ì\95\9d: %ld\n"
#, c-format
-msgid "E273: unknown longjmp status %d"
-msgstr "E273: \96¢\92m\82Ìlongjmp\8fó\91Ô: %d"
+msgid ""
+"Font1 width: %ld\n"
+"\n"
+msgstr ""
+"\83t\83H\83\93\83g1\82Ì\95\9d: %ld\n"
+"\n"
-msgid "Toggle implementation/definition"
-msgstr "\8eÀ\91\95\82Æ\92è\8b`\82ð\90Ø\82è\91Ö\82¦\82é"
+msgid "Invalid font specification"
+msgstr "\96³\8cø\82È\83t\83H\83\93\83g\8ew\92è\82Å\82·"
-msgid "Show base class of"
-msgstr "\8e\9f\82Ì\83N\83\89\83X\82Ì\8aî\92ê\82ð\95\\\8e¦"
+msgid "&Dismiss"
+msgstr "\8bp\89º\82·\82é(&D)"
-msgid "Show overridden member function"
-msgstr "\83I\81[\83o\81[\83\89\83C\83h\82³\82ê\82½\83\81\83\93\83o\8aÖ\90\94\82ð\95\\\8e¦"
+msgid "no specific match"
+msgstr "\83}\83b\83`\82·\82é\82à\82Ì\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Retrieve from file"
-msgstr "\83t\83@\83C\83\8b\82©\82ç\89ñ\95\9c\82·\82é"
+msgid "Vim - Font Selector"
+msgstr "Vim - \83t\83H\83\93\83g\91I\91ð"
-msgid "Retrieve from project"
-msgstr "\83v\83\8d\83W\83F\83N\83g\82©\82ç\89ñ\95\9c\82·\82é"
+msgid "Name:"
+msgstr "\96¼\91O:"
-msgid "Retrieve from all projects"
-msgstr "\91S\82Ä\82Ì\83v\83\8d\83W\83F\83N\83g\82©\82ç\89ñ\95\9c\82·\82é"
+#. create toggle button
+msgid "Show size in Points"
+msgstr "\83T\83C\83Y\82ð\83|\83C\83\93\83g\82Å\95\\\8e¦\82·\82é"
-msgid "Retrieve"
-msgstr "\89ñ\95\9c"
+msgid "Encoding:"
+msgstr "\83G\83\93\83R\81[\83h:"
-msgid "Show source of"
-msgstr "\8e\9f\82Ì\83\\\81[\83X\82ð\95\\\8e¦\82·\82é"
+msgid "Font:"
+msgstr "\83t\83H\83\93\83g:"
-msgid "Find symbol"
-msgstr "\82Ý\82Â\82¯\82½\83V\83\93\83{\83\8b"
+msgid "Style:"
+msgstr "\83X\83^\83C\83\8b:"
-msgid "Browse class"
-msgstr "\83N\83\89\83X\82ð\8eQ\8fÆ"
+msgid "Size:"
+msgstr "\83T\83C\83Y:"
-msgid "Show class in hierarchy"
-msgstr "\8aK\91w\82Å\83N\83\89\83X\82ð\95\\\8e¦"
+msgid "E256: Hangul automata ERROR"
+msgstr "E256: \83n\83\93\83O\83\8b\83I\81[\83g\83}\83g\83\93\83G\83\89\81["
-msgid "Show class in restricted hierarchy"
-msgstr "\8cÀ\92è\82³\82ê\82½\8aK\91w\82Å\83N\83\89\83X\82ð\95\\\8e¦"
+msgid "E550: Missing colon"
+msgstr "E550: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Xref refers to"
-msgstr "Xref \82Ì\8eQ\8fÆ\90æ"
+msgid "E551: Illegal component"
+msgstr "E551: \95s\90³\82È\8d\\\95¶\97v\91f\82Å\82·"
-msgid "Xref referred by"
-msgstr "Xref \82ª\8eQ\8fÆ\82³\82ê\82é"
+msgid "E552: digit expected"
+msgstr "E552: \90\94\92l\82ª\95K\97v\82Å\82·"
-msgid "Xref has a"
-msgstr "Xref \82ª\8e\9f\82Ì\82à\82Ì\82ð\82à\82Á\82Ä\82¢\82Ü\82·"
+#, c-format
+msgid "Page %d"
+msgstr "%d \83y\81[\83W"
-msgid "Xref used by"
-msgstr "Xref \82ª\8eg\97p\82³\82ê\82é"
+msgid "No text to be printed"
+msgstr "\88ó\8dü\82·\82é\83e\83L\83X\83g\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Show docu of"
-msgstr "\8e\9f\82Ì\95¶\8fÍ\82ð\95\\\8e¦"
+#, c-format
+msgid "Printing page %d (%d%%)"
+msgstr "\88ó\8dü\92\86: \83y\81[\83W %d (%d%%)"
-msgid "Generate docu for"
-msgstr "\8e\9f\82Ì\95¶\8fÍ\82ð\90¶\90¬"
+#, c-format
+msgid " Copy %d of %d"
+msgstr " \83R\83s\81[ %d (\91S %d \92\86)"
-msgid ""
-"Cannot connect to SNiFF+. Check environment (sniffemacs must be found in "
-"$PATH).\n"
-msgstr ""
-"SNiFF+\82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ. \8aÂ\8b«\82ð\83`\83F\83b\83N\82µ\82Ä\82\82¾\82³\82¢(sniffemacs \82ª $PATH \82É\82È\82¯"
-"\82ê\82Î\82È\82è\82Ü\82¹\82ñ).\n"
+#, c-format
+msgid "Printed: %s"
+msgstr "\88ó\8dü\82µ\82Ü\82µ\82½: %s"
-msgid "E274: Sniff: Error during read. Disconnected"
-msgstr "E274: Sniff: \93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½. \90Ø\92f\82µ\82Ü\82µ\82½"
+msgid "Printing aborted"
+msgstr "\88ó\8dü\82ª\92\86\8e~\82³\82ê\82Ü\82µ\82½"
-msgid "SNiFF+ is currently "
-msgstr "\8c»\8dÝSNiFF+ \82Ì\8fó\91Ô\82Í\81u"
+msgid "E455: Error writing to PostScript output file"
+msgstr "E455: PostScript\8fo\97Í\83t\83@\83C\83\8b\82Ì\8f\91\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
-msgid "not "
-msgstr "\96¢"
+#, c-format
+msgid "E624: Can't open file \"%s\""
+msgstr "E624: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "connected"
-msgstr "\90Ú\91±\81v\82Å\82·"
+#, c-format
+msgid "E457: Can't read PostScript resource file \"%s\""
+msgstr "E457: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s\" \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
#, c-format
-msgid "E275: Unknown SNiFF+ request: %s"
-msgstr "E275: \96¢\92m\82Ì SNiFF+ \83\8a\83N\83G\83X\83g\82Å\82·: %s"
+msgid "E618: file \"%s\" is not a PostScript resource file"
+msgstr "E618: \83t\83@\83C\83\8b \"%s\" \82Í PostScript \83\8a\83\\\81[\83X\83t\83@\83C\83\8b\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "E276: Error connecting to SNiFF+"
-msgstr "E276: SNiFF+ \82Ö\82Ì\90Ú\91±\92\86\82Ì\83G\83\89\81[\82Å\82·"
+#, c-format
+msgid "E619: file \"%s\" is not a supported PostScript resource file"
+msgstr "E619: \83t\83@\83C\83\8b \"%s\" \82Í\91Î\89\9e\82µ\82Ä\82¢\82È\82¢ PostScript \83\8a\83\\\81[\83X\83t\83@\83C\83\8b\82Å\82·"
-msgid "E278: SNiFF+ not connected"
-msgstr "E278: SNiFF+ \82É\90Ú\91±\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+#, c-format
+msgid "E621: \"%s\" resource file has wrong version"
+msgstr "E621: \83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s\" \82Í\83o\81[\83W\83\87\83\93\82ª\88Ù\82È\82è\82Ü\82·"
-msgid "E279: Not a SNiFF+ buffer"
-msgstr "E279: SNiFF+ \83o\83b\83t\83@\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E673: Incompatible multi-byte encoding and character set."
+msgstr "E673: \8cÝ\8a·\90«\82Ì\96³\82¢\83}\83\8b\83`\83o\83C\83g\83G\83\93\83R\81[\83f\83B\83\93\83O\82Æ\95¶\8e\9a\83Z\83b\83g\82Å\82·"
-msgid "Sniff: Error during write. Disconnected"
-msgstr "Sniff: \8f\91\8d\9e\82Ý\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82½\82Ì\82Å\90Ø\92f\82µ\82Ü\82µ\82½"
+msgid "E674: printmbcharset cannot be empty with multi-byte encoding."
+msgstr "E674: \83}\83\8b\83`\83o\83C\83g\83G\83\93\83R\81[\83f\83B\83\93\83O\82Å\82Í printmbcharset \82ð\8bó\82É\82Å\82«\82Ü\82¹\82ñ"
-msgid "invalid buffer number"
-msgstr "\96³\8cø\82È\83o\83b\83t\83@\94Ô\8d\86\82Å\82·"
+msgid "E675: No default font specified for multi-byte printing."
+msgstr ""
+"E675: \83}\83\8b\83`\83o\83C\83g\95¶\8e\9a\82ð\88ó\8dü\82·\82é\82½\82ß\82Ì\83f\83t\83H\83\8b\83g\83t\83H\83\93\83g\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "not implemented yet"
-msgstr "\82Ü\82¾\8eÀ\91\95\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E324: Can't open PostScript output file"
+msgstr "E324: PostScript\8fo\97Í\97p\82Ì\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ"
-#. ???
-msgid "cannot set line(s)"
-msgstr "\8ds\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E456: Can't open file \"%s\""
+msgstr "E456: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "invalid mark name"
-msgstr "\96³\8cø\82È\83}\81[\83N\96¼\82Å\82·"
+msgid "E456: Can't find PostScript resource file \"prolog.ps\""
+msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"prolog.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid "mark not set"
-msgstr "\83}\81[\83N\82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E456: Can't find PostScript resource file \"cidfont.ps\""
+msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"cidfont.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "row %d column %d"
-msgstr "\8ds %d \97ñ %d"
+msgid "E456: Can't find PostScript resource file \"%s.ps\""
+msgstr "E456: PostScript\82Ì\83\8a\83\\\81[\83X\83t\83@\83C\83\8b \"%s.ps\" \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid "cannot insert/append line"
-msgstr "\8ds\82Ì\91}\93ü/\92Ç\89Á\82ð\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E620: Unable to convert to print encoding \"%s\""
+msgstr "E620: \88ó\8dü\83G\83\93\83R\81[\83h \"%s\" \82Ö\95Ï\8a·\82Å\82«\82Ü\82¹\82ñ"
-msgid "line number out of range"
-msgstr "\94Í\88Í\8aO\82Ì\8ds\94Ô\8d\86\82Å\82·"
+msgid "Sending to printer..."
+msgstr "\83v\83\8a\83\93\83^\82É\91\97\90M\92\86..."
-msgid "unknown flag: "
-msgstr "\96¢\92m\82Ì\83t\83\89\83O:"
+msgid "E365: Failed to print PostScript file"
+msgstr "E365: PostScript\83t\83@\83C\83\8b\82Ì\88ó\8dü\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "unknown vimOption"
-msgstr "\96¢\92m\82Ì vimOption \82Å\82·"
+msgid "Print job sent."
+msgstr "\88ó\8dü\83W\83\87\83u\82ð\91\97\90M\82µ\82Ü\82µ\82½."
-msgid "keyboard interrupt"
-msgstr "\83L\81[\83{\81[\83h\8a\84\8d\9e\82Ý"
+msgid "Add a new database"
+msgstr "\90V\83f\81[\83^\83x\81[\83X\82ð\92Ç\89Á"
-msgid "vim error"
-msgstr "vim \83G\83\89\81["
+msgid "Query for a pattern"
+msgstr "\83p\83^\81[\83\93\82Ì\83N\83G\83\8a\81[\82ð\92Ç\89Á"
-msgid "cannot create buffer/window command: object is being deleted"
-msgstr ""
-"\83o\83b\83t\83@/\83E\83B\83\93\83h\83E\8dì\90¬\83R\83}\83\93\83h\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ: \83I\83u\83W\83F\83N\83g\82ª\8fÁ\8b\8e\82³\82ê\82Ä\82¢\82Ü"
-"\82µ\82½"
+msgid "Show this message"
+msgstr "\82±\82Ì\83\81\83b\83Z\81[\83W\82ð\95\\\8e¦\82·\82é"
-msgid ""
-"cannot register callback command: buffer/window is already being deleted"
-msgstr ""
-"\83R\81[\83\8b\83o\83b\83N\83R\83}\83\93\83h\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ: \83o\83b\83t\83@/\83E\83B\83\93\83h\83E\82ª\8aù\82É\8fÁ\8b\8e\82³\82ê\82Ü\82µ\82½"
+msgid "Kill a connection"
+msgstr "\90Ú\91±\82ð\8fI\97¹\82·\82é"
-#. This should never happen. Famous last word?
-msgid ""
-"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
-"org"
-msgstr ""
-"E280: TCL \92v\96½\93I\83G\83\89\81[: reflist \89\98\90õ!? vim-dev@vim.org \82É\95ñ\8d\90\82µ\82Ä\82\82¾\82³\82¢"
+msgid "Reinit all connections"
+msgstr "\91S\82Ä\82Ì\90Ú\91±\82ð\8dÄ\8f\89\8aú\89»\82·\82é"
-msgid "cannot register callback command: buffer/window reference not found"
-msgstr ""
-"\83R\81[\83\8b\83o\83b\83N\83R\83}\83\93\83h\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ: \83o\83b\83t\83@/\83E\83B\83\93\83h\83E\82Ì\8eQ\8fÆ\82ª\82Ý\82Â\82©\82è\82Ü\82¹"
-"\82ñ"
+msgid "Show connections"
+msgstr "\90Ú\91±\82ð\95\\\8e¦\82·\82é"
-msgid ""
-"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
-msgstr ""
-"E571: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Tcl\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å"
-"\82µ\82½."
+#, c-format
+msgid "E560: Usage: cs[cope] %s"
+msgstr "E560: \8eg\97p\95û\96@: cs[cope] %s"
-msgid ""
-"E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim.org"
-msgstr ""
-"E281: TCL \83G\83\89\81[: \8fI\97¹\83R\81[\83h\82ª\90®\90\94\92l\82Å\82Í\82 \82è\82Ü\82¹\82ñ!? vim-dev@vim.org \82É\95ñ\8d\90\82µ"
-"\82Ä\82\82¾\82³\82¢"
+msgid "This cscope command does not support splitting the window.\n"
+msgstr "\82±\82Ìcscope\83R\83}\83\93\83h\82Í\95ª\8a\84\83E\83B\83\93\83h\83E\82Å\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ.\n"
+
+msgid "E562: Usage: cstag <ident>"
+msgstr "E562: \8eg\97p\96@: cstag <ident>"
+
+msgid "E257: cstag: tag not found"
+msgstr "E257: cstag: \83^\83O\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E572: exit code %d"
-msgstr "E572: \8fI\97¹\83R\81[\83h %d"
+msgid "E563: stat(%s) error: %d"
+msgstr "E563: stat(%s) \83G\83\89\81[: %d"
-msgid "cannot get line"
-msgstr "\8ds\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
+msgid "E563: stat error"
+msgstr "E563: stat \83G\83\89\81["
-msgid "Unable to register a command server name"
-msgstr "\96½\97ß\83T\81[\83o\82Ì\96¼\91O\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E564: %s is not a directory or a valid cscope database"
+msgstr "E564: %s \82Í\83f\83B\83\8c\83N\83g\83\8a\8by\82Ñ\97L\8cø\82Ècscope\82Ì\83f\81[\83^\83x\81[\83X\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "E248: Failed to send command to the destination program"
-msgstr "E248: \96Ú\93I\82Ì\83v\83\8d\83O\83\89\83\80\82Ö\82Ì\83R\83}\83\93\83h\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+#, c-format
+msgid "Added cscope database %s"
+msgstr "cscope\83f\81[\83^\83x\81[\83X %s \82ð\92Ç\89Á"
#, c-format
-msgid "E573: Invalid server id used: %s"
-msgstr "E573: \96³\8cø\82È\83T\81[\83oID\82ª\8eg\82í\82ê\82Ü\82µ\82½: %s"
+msgid "E262: error reading cscope connection %ld"
+msgstr "E262: cscope\82Ì\90Ú\91± %ld \82ð\93Ç\8d\9e\82Ý\92\86\82Ì\83G\83\89\81[\82Å\82·"
-msgid "E251: VIM instance registry property is badly formed. Deleted!"
-msgstr "E251: VIM \8eÀ\91Ì\82Ì\93o\98^\83v\83\8d\83p\83e\83B\82ª\95s\90³\82Å\82·. \8fÁ\8b\8e\82µ\82Ü\82µ\82½!"
+msgid "E561: unknown cscope search type"
+msgstr "E561: \96¢\92m\82Ìcscope\8c\9f\8dõ\8c^\82Å\82·"
-msgid "Unknown option argument"
-msgstr "\96¢\92m\82Ì\83I\83v\83V\83\87\83\93\88ø\90\94\82Å\82·"
+msgid "E566: Could not create cscope pipes"
+msgstr "E566: cscope\83p\83C\83v\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
-msgid "Too many edit arguments"
-msgstr "\95Ò\8fW\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
+msgid "E622: Could not fork for cscope"
+msgstr "E622: cscope\82Ì\8bN\93®\8f\80\94õ(fork)\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Argument missing after"
-msgstr "\88ø\90\94\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "cs_create_connection exec failed"
+msgstr "cs_create_connection \82Ì\8eÀ\8ds\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Garbage after option argument"
-msgstr "\83I\83v\83V\83\87\83\93\88ø\90\94\82Ì\8cã\82É\83S\83~\82ª\82 \82è\82Ü\82·"
+msgid "cs_create_connection: fdopen for to_fp failed"
+msgstr "cs_create_connection: to_fp \82Ì fdopen \82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"
-msgstr "\"+command\", \"-c command\", \"--cmd command\" \82Ì\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
+msgid "cs_create_connection: fdopen for fr_fp failed"
+msgstr "cs_create_connection: fr_fp \82Ì fdopen \82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "Invalid argument for"
-msgstr "\96³\8cø\82È\88ø\90\94\82Å\82·: "
+msgid "E623: Could not spawn cscope process"
+msgstr "E623: cscope\83v\83\8d\83Z\83X\82ð\8bN\93®\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+
+msgid "E567: no cscope connections"
+msgstr "E567: cscope\90Ú\91±\82É\8e¸\94s\82µ\82Ü\82µ\82½"
#, c-format
-msgid "%d files to edit\n"
-msgstr "%d \8cÂ\82Ì\83t\83@\83C\83\8b\82ª\95Ò\8fW\82ð\8dT\82¦\82Ä\82¢\82Ü\82·\n"
+msgid "E469: invalid cscopequickfix flag %c for %c"
+msgstr "E469: \96³\8cø\82È cscopequickfix \83t\83\89\83O %c \82Ì %c \82Å\82·"
-msgid "netbeans is not supported with this GUI\n"
-msgstr "netbeans \82Í\82±\82ÌGUI\82Å\82Í\97\98\97p\82Å\82«\82Ü\82¹\82ñ\n"
+#, c-format
+msgid "E259: no matches found for cscope query %s of %s"
+msgstr "E259: cscope\83N\83G\83\8a\81[ %s of %s \82É\8aY\93\96\82ª\82 \82è\82Ü\82¹\82ñ\82Å\82µ\82½"
-msgid "This Vim was not compiled with the diff feature."
-msgstr "\82±\82ÌVim\82É\82Ídiff\8b@\94\\\82ª\82 \82è\82Ü\82¹\82ñ(\83R\83\93\83p\83C\83\8b\8e\9e\90Ý\92è)."
+msgid "cscope commands:\n"
+msgstr "cscope\83R\83}\83\93\83h:\n"
-msgid "'-nb' cannot be used: not enabled at compile time\n"
-msgstr "'-nb' \8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
+#, c-format
+msgid "%-5s: %s%*s (Usage: %s)"
+msgstr "%-5s: %s%*s (\8eg\97p\96@: %s)"
-msgid "Attempt to open script file again: \""
-msgstr "\83X\83N\83\8a\83v\83g\83t\83@\83C\83\8b\82ð\8dÄ\82Ñ\8aJ\82¢\82Ä\82Ý\82Ü\82·: \""
+msgid ""
+"\n"
+" c: Find functions calling this function\n"
+" d: Find functions called by this function\n"
+" e: Find this egrep pattern\n"
+" f: Find this file\n"
+" g: Find this definition\n"
+" i: Find files #including this file\n"
+" s: Find this C symbol\n"
+" t: Find this text string\n"
+msgstr ""
+"\n"
+" c: \82±\82Ì\8aÖ\90\94\82ð\8cÄ\82ñ\82Å\82¢\82é\8aÖ\90\94\82ð\92T\82·\n"
+" d: \82±\82Ì\8aÖ\90\94\82©\82ç\8cÄ\82ñ\82Å\82¢\82é\8aÖ\90\94\82ð\92T\82·\n"
+" e: \82±\82Ìegrep\83p\83^\81[\83\93\82ð\92T\82·\n"
+" f: \82±\82Ì\83t\83@\83C\83\8b\82ð\92T\82·\n"
+" g: \82±\82Ì\92è\8b`\82ð\92T\82·\n"
+" i: \82±\82Ì\83t\83@\83C\83\8b\82ð#include\82µ\82Ä\82¢\82é\83t\83@\83C\83\8b\82ð\92T\82·\n"
+" s: \82±\82ÌC\83V\83\93\83{\83\8b\82ð\92T\82·\n"
+" t: \82±\82Ì\83e\83L\83X\83g\95¶\8e\9a\97ñ\82ð\92T\82·\n"
-msgid "Cannot open for reading: \""
-msgstr "\93Ç\8d\9e\97p\82Æ\82µ\82Ä\8aJ\82¯\82Ü\82¹\82ñ"
+#, c-format
+msgid "E625: cannot open cscope database: %s"
+msgstr "E625: cscope\83f\81[\83^\83x\81[\83X: %s \82ð\8aJ\82\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
-msgid "Cannot open for script output: \""
-msgstr "\83X\83N\83\8a\83v\83g\8fo\97Í\97p\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E626: cannot get cscope database information"
+msgstr "E626: cscope\83f\81[\83^\83x\81[\83X\82Ì\8fî\95ñ\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
-msgid "Vim: Error: Failure to start gvim from NetBeans\n"
-msgstr "Vim: \83G\83\89\81[: NetBeans\82©\82çgvim\82ð\83X\83^\81[\83g\82Å\82«\82Ü\82¹\82ñ\n"
+msgid "E568: duplicate cscope database not added"
+msgstr "E568: \8fd\95¡\82·\82écscope\83f\81[\83^\83x\81[\83X\82Í\92Ç\89Á\82³\82ê\82Ü\82¹\82ñ\82Å\82µ\82½"
-msgid "Vim: Warning: Output is not to a terminal\n"
-msgstr "Vim: \8cx\8d\90: \92[\96\96\82Ö\82Ì\8fo\97Í\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
+#, c-format
+msgid "E261: cscope connection %s not found"
+msgstr "E261: cscope\90Ú\91± %s \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½"
-msgid "Vim: Warning: Input is not from a terminal\n"
-msgstr "Vim: \8cx\8d\90: \92[\96\96\82©\82ç\82Ì\93ü\97Í\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
+#, c-format
+msgid "cscope connection %s closed"
+msgstr "cscope\90Ú\91± %s \82ª\95Â\82¶\82ç\82ê\82Ü\82µ\82½"
-#. just in case..
-msgid "pre-vimrc command line"
-msgstr "vimrc\91O\82Ì\83R\83}\83\93\83h\83\89\83C\83\93"
+#. should not reach here
+msgid "E570: fatal error in cs_manage_matches"
+msgstr "E570: cs_manage_matches \82Å\92v\96½\93I\82È\83G\83\89\81[\82Å\82·"
#, c-format
-msgid "E282: Cannot read from \"%s\""
-msgstr "E282: \"%s\"\82©\82ç\93Ç\8d\9e\82Þ\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
+msgid "Cscope tag: %s"
+msgstr "Cscope \83^\83O: %s"
msgid ""
"\n"
-"More info with: \"vim -h\"\n"
+" # line"
msgstr ""
"\n"
-"\82æ\82è\8fÚ\8d×\82È\8fî\95ñ\82Í: \"vim -h\"\n"
+" # \8ds\94Ô\8d\86"
-msgid "[file ..] edit specified file(s)"
-msgstr "[\83t\83@\83C\83\8b..] \82 \82é\83t\83@\83C\83\8b\82ð\95Ò\8fW\82·\82é"
+msgid "filename / context / line\n"
+msgstr "\83t\83@\83C\83\8b\96¼ / \95¶\96¬ / \8ds\n"
-msgid "- read text from stdin"
-msgstr "- \95W\8f\80\93ü\97Í\82©\82ç\83e\83L\83X\83g\82ð\93Ç\8d\9e\82Þ"
+#, c-format
+msgid "E609: Cscope error: %s"
+msgstr "E609: cscope\83G\83\89\81[: %s"
-msgid "-t tag edit file where tag is defined"
-msgstr "-t \83^\83O \83^\83O\82ª\92è\8b`\82³\82ê\82½\82Æ\82±\82ë\82©\82ç\95Ò\8fW\82·\82é"
+msgid "All cscope databases reset"
+msgstr "\91S\82Ä\82Ìcscope\83f\81[\83^\83x\81[\83X\82ð\83\8a\83Z\83b\83g\82µ\82Ü\82·"
-msgid "-q [errorfile] edit file with first error"
-msgstr "-q [errorfile] \8dÅ\8f\89\82Ì\83G\83\89\81[\82Å\95Ò\8fW\82·\82é"
+msgid "no cscope connections\n"
+msgstr "cscope\90Ú\91±\82ª\82 \82è\82Ü\82¹\82ñ\n"
-msgid ""
-"\n"
-"\n"
-"usage:"
-msgstr ""
-"\n"
-"\n"
-"\8eg\97p\96@:"
+msgid " # pid database name prepend path\n"
+msgstr " # pid \83f\81[\83^\83x\81[\83X\96¼ prepend \83p\83X\n"
-msgid " vim [arguments] "
-msgstr " vim [\88ø\90\94]"
+msgid "Lua library cannot be loaded."
+msgstr "Lua\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ."
-msgid ""
-"\n"
-" or:"
-msgstr ""
-"\n"
-" \82à\82µ\82\82Í:"
+msgid "cannot save undo information"
+msgstr "\83A\83\93\83h\83D\8fî\95ñ\82ª\95Û\91¶\82Å\82«\82Ü\82¹\82ñ"
msgid ""
-"\n"
-"Where case is ignored prepend / to make flag upper case"
-msgstr ""
-"\n"
-"\91å\8f¬\95¶\8e\9a\82ª\96³\8e\8b\82³\82ê\82é\8fê\8d\87\82Í\91å\95¶\8e\9a\82É\82·\82é\82½\82ß\82É / \82ð\91O\92u\82µ\82Ä\82\82¾\82³\82¢"
+"E815: Sorry, this command is disabled, the MzScheme libraries could not be "
+"loaded."
+msgstr "E815: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·. MzScheme \83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ."
-msgid ""
-"\n"
-"\n"
-"Arguments:\n"
-msgstr ""
-"\n"
-"\n"
-"\88ø\90\94:\n"
+msgid "invalid expression"
+msgstr "\96³\8cø\82È\8e®\82Å\82·"
-msgid "--\t\t\tOnly file names after this"
-msgstr "--\t\t\t\82±\82Ì\82 \82Æ\82É\82Í\83t\83@\83C\83\8b\96¼\82¾\82¯"
+msgid "expressions disabled at compile time"
+msgstr "\8e®\82Í\83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·"
-msgid "--literal\t\tDon't expand wildcards"
-msgstr "--literal\t\t\83\8f\83C\83\8b\83h\83J\81[\83h\82ð\93W\8aJ\82µ\82È\82¢"
+msgid "hidden option"
+msgstr "\89B\82µ\83I\83v\83V\83\87\83\93"
-msgid "-register\t\tRegister this gvim for OLE"
-msgstr "-register\t\t\82±\82Ìgvim\82ðOLE\82Æ\82µ\82Ä\93o\98^\82·\82é"
+msgid "unknown option"
+msgstr "\96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·"
-msgid "-unregister\t\tUnregister gvim for OLE"
-msgstr "-unregister\t\tgvim\82ÌOLE\93o\98^\82ð\89ð\8f\9c\82·\82é"
+msgid "window index is out of range"
+msgstr "\94Í\88Í\8aO\82Ì\83E\83B\83\93\83h\83E\94Ô\8d\86\82Å\82·"
-msgid "-g\t\t\tRun using GUI (like \"gvim\")"
-msgstr "-g\t\t\tGUI\82Å\8bN\93®\82·\82é (\"gvim\" \82Æ\93¯\82¶)"
+msgid "couldn't open buffer"
+msgstr "\83o\83b\83t\83@\82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "-f or --nofork\tForeground: Don't fork when starting GUI"
-msgstr "-f or --nofork\t\83t\83H\83A\83O\83\89\83E\83\93\83h: GUI\82ð\8en\82ß\82é\82Æ\82«\82Éfork\82µ\82È\82¢"
+msgid "cannot delete line"
+msgstr "\8ds\82ð\8fÁ\82¹\82Ü\82¹\82ñ"
-msgid "-v\t\t\tVi mode (like \"vi\")"
-msgstr "-v\t\t\tVi\83\82\81[\83h (\"vi\" \82Æ\93¯\82¶)"
+msgid "cannot replace line"
+msgstr "\8ds\82ð\92u\8a·\82Å\82«\82Ü\82¹\82ñ"
-msgid "-e\t\t\tEx mode (like \"ex\")"
-msgstr "-e\t\t\tEx\83\82\81[\83h (\"ex\" \82Æ\93¯\82¶)"
+msgid "cannot insert line"
+msgstr "\8ds\82ð\91}\93ü\82Å\82«\82Ü\82¹\82ñ"
-msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")"
-msgstr "-s\t\t\t\83T\83C\83\8c\83\93\83g(\83o\83b\83`)\83\82\81[\83h (\"ex\" \90ê\97p)"
+msgid "string cannot contain newlines"
+msgstr "\95¶\8e\9a\97ñ\82É\82Í\89ü\8ds\95¶\8e\9a\82ð\8aÜ\82ß\82ç\82ê\82Ü\82¹\82ñ"
-msgid "-d\t\t\tDiff mode (like \"vimdiff\")"
-msgstr "-d\t\t\t\8d·\95ª\83\82\81[\83h (\"vidiff\" \82Æ\93¯\82¶)"
+msgid "Vim error: ~a"
+msgstr "Vim \83G\83\89\81[: ~a"
-msgid "-y\t\t\tEasy mode (like \"evim\", modeless)"
-msgstr "-y\t\t\t\83C\81[\83W\81[\83\82\81[\83h (\"evim\" \82Æ\93¯\82¶, \83\82\81[\83h\96³)"
+msgid "Vim error"
+msgstr "Vim \83G\83\89\81["
-msgid "-R\t\t\tReadonly mode (like \"view\")"
-msgstr "-R\t\t\t\93Ç\8d\9e\90ê\97p\83\82\81[\83h (\"view\" \82Æ\93¯\82¶)"
+msgid "buffer is invalid"
+msgstr "\83o\83b\83t\83@\82Í\96³\8cø\82Å\82·"
-msgid "-Z\t\t\tRestricted mode (like \"rvim\")"
-msgstr "-Z\t\t\t\90§\8cÀ\83\82\81[\83h (\"rvim\" \82Æ\93¯\82¶)"
+msgid "window is invalid"
+msgstr "\83E\83B\83\93\83h\83E\82Í\96³\8cø\82Å\82·"
-msgid "-m\t\t\tModifications (writing files) not allowed"
-msgstr "-m\t\t\t\95Ï\8dX (\83t\83@\83C\83\8b\95Û\91¶\8e\9e) \82ð\82Å\82«\82È\82¢\82æ\82¤\82É\82·\82é"
+msgid "linenr out of range"
+msgstr "\94Í\88Í\8aO\82Ì\8ds\94Ô\8d\86\82Å\82·"
-msgid "-M\t\t\tModifications in text not allowed"
-msgstr "-M\t\t\t\83e\83L\83X\83g\82Ì\95Ò\8fW\82ð\8ds\82È\82¦\82È\82¢\82æ\82¤\82É\82·\82é"
+msgid "not allowed in the Vim sandbox"
+msgstr "\83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\8b\96\82³\82ê\82Ü\82¹\82ñ"
-msgid "-b\t\t\tBinary mode"
-msgstr "-b\t\t\t\83o\83C\83i\83\8a\83\82\81[\83h"
+msgid "Sorry, this command is disabled: the Perl library could not be loaded."
+msgstr ""
+"\82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·, \82²\82ß\82ñ\82È\82³\82¢: Perl\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½."
-msgid "-l\t\t\tLisp mode"
-msgstr "-l\t\t\tLisp\83\82\81[\83h"
+msgid "E299: Perl evaluation forbidden in sandbox without the Safe module"
+msgstr ""
+"E299: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í Safe \83\82\83W\83\85\81[\83\8b\82ð\8eg\97p\82µ\82È\82¢Perl\83X\83N\83\8a\83v\83g\82Í\8bÖ\82¶\82ç\82ê"
+"\82Ä\82¢\82Ü\82·"
-msgid "-C\t\t\tCompatible with Vi: 'compatible'"
-msgstr "-C\t\t\tVi\8cÝ\8a·\83\82\81[\83h: 'compatible'"
+msgid "E836: This Vim cannot execute :python after using :py3"
+msgstr "E836: \82±\82ÌVim\82Å\82Í :py3 \82ð\8eg\82Á\82½\8cã\82É :python \82ð\8eg\82¦\82Ü\82¹\82ñ"
-msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'"
-msgstr "-N\t\t\tVi\94ñ\8cÝ\8a·\83\82\81[\83h: 'nocompatible"
+msgid ""
+"E263: Sorry, this command is disabled, the Python library could not be "
+"loaded."
+msgstr ""
+"E263: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Python\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ"
+"\82Å\82µ\82½."
-msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"
-msgstr "-V[N][fname]\t\t\83\8d\83O\8fo\97Í\90Ý\92è [\83\8c\83x\83\8b N] [\83\8d\83O\83t\83@\83C\83\8b\96¼ fname]"
+# Added at 07-Feb-2004.
+msgid "E659: Cannot invoke Python recursively"
+msgstr "E659: Python \82ð\8dÄ\8bA\93I\82É\8eÀ\8ds\82·\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
-msgid "-D\t\t\tDebugging mode"
-msgstr "-D\t\t\t\83f\83o\83b\83O\83\82\81[\83h"
+msgid "can't delete OutputObject attributes"
+msgstr "OutputObject\91®\90«\82ð\8fÁ\82¹\82Ü\82¹\82ñ"
-msgid "-n\t\t\tNo swap file, use memory only"
-msgstr "-n\t\t\t\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8eg\97p\82¹\82¸\83\81\83\82\83\8a\82¾\82¯"
+msgid "softspace must be an integer"
+msgstr "softspace \82Í integer \82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
-msgid "-r\t\t\tList swap files and exit"
-msgstr "-r\t\t\t\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\97ñ\8b\93\82µ\8fI\97¹"
+msgid "invalid attribute"
+msgstr "\96³\8cø\82È\91®\90«\82Å\82·"
-msgid "-r (with file name)\tRecover crashed session"
-msgstr "-r (\83t\83@\83C\83\8b\96¼)\t\83N\83\89\83b\83V\83\85\82µ\82½\83Z\83b\83V\83\87\83\93\82ð\95\9c\8bA"
+#, c-format
+msgid "<buffer object (deleted) at %p>"
+msgstr "<\83o\83b\83t\83@\83I\83u\83W\83F\83N\83g (\8fÁ\8b\8e\8dÏ\82Ý) %p>"
-msgid "-L\t\t\tSame as -r"
-msgstr "-L\t\t\t-r\82Æ\93¯\82¶"
+msgid "E837: This Vim cannot execute :py3 after using :python"
+msgstr "E837: \82±\82ÌVim\82Å\82Í :python \82ð\8eg\82Á\82½\8cã\82É :py3 \82ð\8eg\82¦\82Ü\82¹\82ñ"
-msgid "-f\t\t\tDon't use newcli to open window"
-msgstr "-f\t\t\t\83E\83B\83\93\83h\83E\82ð\8aJ\82\82Ì\82É newcli \82ð\8eg\97p\82µ\82È\82¢"
+msgid "E265: $_ must be an instance of String"
+msgstr "E265: $_ \82Í\95¶\8e\9a\97ñ\82Ì\83C\83\93\83X\83^\83\93\83X\82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
-msgid "-dev <device>\t\tUse <device> for I/O"
-msgstr "-dev <device>\t\tI/O\82É <device> \82ð\8eg\97p\82·\82é"
+msgid ""
+"E266: Sorry, this command is disabled, the Ruby library could not be loaded."
+msgstr ""
+"E266: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Ruby\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å"
+"\82µ\82½."
-msgid "-A\t\t\tstart in Arabic mode"
-msgstr "-A\t\t\t\83A\83\89\83r\83A\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
+msgid "E267: unexpected return"
+msgstr "E267: \97\\\8aú\82¹\82Ê return \82Å\82·"
-msgid "-H\t\t\tStart in Hebrew mode"
-msgstr "-H\t\t\t\83w\83u\83\89\83C\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
+msgid "E268: unexpected next"
+msgstr "E268: \97\\\8aú\82¹\82Ê next \82Å\82·"
-msgid "-F\t\t\tStart in Farsi mode"
-msgstr "-F\t\t\t\83y\83\8b\83V\83A\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
+msgid "E269: unexpected break"
+msgstr "E269: \97\\\8aú\82¹\82Ê break \82Å\82·"
-msgid "-T <terminal>\tSet terminal type to <terminal>"
-msgstr "-T <terminal>\t\92[\96\96\82ð <terminal> \82É\90Ý\92è\82·\82é"
+msgid "E270: unexpected redo"
+msgstr "E270: \97\\\8aú\82¹\82Ê redo \82Å\82·"
-msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"
-msgstr "-u <vimrc>\t\t.vimrc\82Ì\91ã\82í\82è\82É <vimrc> \82ð\8eg\82¤"
+msgid "E271: retry outside of rescue clause"
+msgstr "E271: rescue \82Ì\8aO\82Ì retry \82Å\82·"
-msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"
-msgstr "-U <gvimrc>\t\t.gvimrc\82Ì\91ã\82í\82è\82É <gvimrc> \82ð\8eg\82¤"
+msgid "E272: unhandled exception"
+msgstr "E272: \8eæ\82è\88µ\82í\82ê\82È\82©\82Á\82½\97á\8aO\82ª\82 \82è\82Ü\82·"
-msgid "--noplugin\t\tDon't load plugin scripts"
-msgstr "--noplugin\t\t\83v\83\89\83O\83C\83\93\83X\83N\83\8a\83v\83g\82ð\83\8d\81[\83h\82µ\82È\82¢"
+#, c-format
+msgid "E273: unknown longjmp status %d"
+msgstr "E273: \96¢\92m\82Ìlongjmp\8fó\91Ô: %d"
-msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
-msgstr "-p[N]\t\tN \8cÂ\83^\83u\83y\81[\83W\82ð\8aJ\82(\8fÈ\97ª\92l: \83t\83@\83C\83\8b\82É\82Â\82«1\8cÂ)"
+msgid "Toggle implementation/definition"
+msgstr "\8eÀ\91\95\82Æ\92è\8b`\82ð\90Ø\82è\91Ö\82¦\82é"
-msgid "-o[N]\t\tOpen N windows (default: one for each file)"
-msgstr "-o[N]\t\tN \8cÂ\83E\83B\83\93\83h\83E\82ð\8aJ\82(\8fÈ\97ª\92l: \83t\83@\83C\83\8b\82É\82Â\82«1\8cÂ)"
+msgid "Show base class of"
+msgstr "\8e\9f\82Ì\83N\83\89\83X\82Ì\8aî\92ê\82ð\95\\\8e¦"
-msgid "-O[N]\t\tLike -o but split vertically"
-msgstr "-O[N]\t\t-o\82Æ\93¯\82¶\82¾\82ª\90\82\92¼\95ª\8a\84"
+msgid "Show overridden member function"
+msgstr "\83I\81[\83o\81[\83\89\83C\83h\82³\82ê\82½\83\81\83\93\83o\8aÖ\90\94\82ð\95\\\8e¦"
-msgid "+\t\t\tStart at end of file"
-msgstr "+\t\t\t\83t\83@\83C\83\8b\82Ì\8dÅ\8cã\82©\82ç\82Í\82¶\82ß\82é"
+msgid "Retrieve from file"
+msgstr "\83t\83@\83C\83\8b\82©\82ç\89ñ\95\9c\82·\82é"
-msgid "+<lnum>\t\tStart at line <lnum>"
-msgstr "+<lnum>\t\t<lnum> \8ds\82©\82ç\82Í\82¶\82ß\82é"
+msgid "Retrieve from project"
+msgstr "\83v\83\8d\83W\83F\83N\83g\82©\82ç\89ñ\95\9c\82·\82é"
-msgid "--cmd <command>\tExecute <command> before loading any vimrc file"
-msgstr "--cmd <command>\tvimrc\82ð\83\8d\81[\83h\82·\82é\91O\82É <command> \82ð\8eÀ\8ds\82·\82é"
+msgid "Retrieve from all projects"
+msgstr "\91S\82Ä\82Ì\83v\83\8d\83W\83F\83N\83g\82©\82ç\89ñ\95\9c\82·\82é"
-msgid "-c <command>\t\tExecute <command> after loading the first file"
-msgstr "-c <command>\t\t\8dÅ\8f\89\82Ì\83t\83@\83C\83\8b\82ð\83\8d\81[\83h\8cã <command> \82ð\8eÀ\8ds\82·\82é"
+msgid "Retrieve"
+msgstr "\89ñ\95\9c"
-msgid "-S <session>\t\tSource file <session> after loading the first file"
-msgstr "-S <session>\t\t\8dÅ\8f\89\82Ì\83t\83@\83C\83\8b\82ð\83\8d\81[\83h\8cã\83t\83@\83C\83\8b <session> \82ð\8eæ\8d\9e\82Þ"
+msgid "Show source of"
+msgstr "\8e\9f\82Ì\83\\\81[\83X\82ð\95\\\8e¦\82·\82é"
-msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>"
-msgstr "-s <scriptin>\t\83t\83@\83C\83\8b <scriptin> \82©\82ç\83m\81[\83}\83\8b\83R\83}\83\93\83h\82ð\93Ç\8d\9e\82Þ"
+msgid "Find symbol"
+msgstr "\82Ý\82Â\82¯\82½\83V\83\93\83{\83\8b"
-msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>"
-msgstr "-w <scriptout>\t\93ü\97Í\82µ\82½\91S\83R\83}\83\93\83h\82ð\83t\83@\83C\83\8b <scriptout> \82É\92Ç\89Á\82·\82é"
+msgid "Browse class"
+msgstr "\83N\83\89\83X\82ð\8eQ\8fÆ"
-msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>"
-msgstr "-W <scriptout>\t\93ü\97Í\82µ\82½\91S\83R\83}\83\93\83h\82ð\83t\83@\83C\83\8b <scriptout> \82É\95Û\91¶\82·\82é"
+msgid "Show class in hierarchy"
+msgstr "\8aK\91w\82Å\83N\83\89\83X\82ð\95\\\8e¦"
-msgid "-x\t\t\tEdit encrypted files"
-msgstr "-x\t\t\t\88Ã\8d\86\89»\82³\82ê\82½\83t\83@\83C\83\8b\82ð\95Ò\8fW\82·\82é"
+msgid "Show class in restricted hierarchy"
+msgstr "\8cÀ\92è\82³\82ê\82½\8aK\91w\82Å\83N\83\89\83X\82ð\95\\\8e¦"
-msgid "-display <display>\tConnect vim to this particular X-server"
-msgstr "-display <display>\tvim\82ð\8ew\92è\82µ\82½ X \83T\81[\83o\82É\90Ú\91±\82·\82é"
+msgid "Xref refers to"
+msgstr "Xref \82Ì\8eQ\8fÆ\90æ"
-msgid "-X\t\t\tDo not connect to X server"
-msgstr "-X\t\t\tX\83T\81[\83o\82É\90Ú\91±\82µ\82È\82¢"
+msgid "Xref referred by"
+msgstr "Xref \82ª\8eQ\8fÆ\82³\82ê\82é"
-msgid "--remote <files>\tEdit <files> in a Vim server if possible"
-msgstr "--remote <files>\t\89Â\94\\\82È\82ç\82ÎVim\83T\81[\83o\82Å <files> \82ð\95Ò\8fW\82·\82é"
+msgid "Xref has a"
+msgstr "Xref \82ª\8e\9f\82Ì\82à\82Ì\82ð\82à\82Á\82Ä\82¢\82Ü\82·"
-msgid "--remote-silent <files> Same, don't complain if there is no server"
-msgstr "--remote-silent <files> \93¯\8fã, \83T\81[\83o\82ª\96³\82\82Ä\82à\8cx\8d\90\95¶\82ð\8fo\97Í\82µ\82È\82¢"
+msgid "Xref used by"
+msgstr "Xref \82ª\8eg\97p\82³\82ê\82é"
-msgid ""
-"--remote-wait <files> As --remote but wait for files to have been edited"
-msgstr "--remote-wait <files>\t--remote\8cã \83t\83@\83C\83\8b\82Ì\95Ò\8fW\82ª\8fI\82í\82é\82Ì\82ð\91Ò\82Â"
+msgid "Show docu of"
+msgstr "\8e\9f\82Ì\95¶\8fÍ\82ð\95\\\8e¦"
-msgid ""
-"--remote-wait-silent <files> Same, don't complain if there is no server"
-msgstr "--remote-wait-silent <files> \93¯\8fã, \83T\81[\83o\82ª\96³\82\82Ä\82à\8cx\8d\90\95¶\82ð\8fo\97Í\82µ\82È\82¢"
+msgid "Generate docu for"
+msgstr "\8e\9f\82Ì\95¶\8fÍ\82ð\90¶\90¬"
msgid ""
-"--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"
+"Cannot connect to SNiFF+. Check environment (sniffemacs must be found in "
+"$PATH).\n"
msgstr ""
-"--remote-tab[-wait][-silent] <files> --remote\82Å\83t\83@\83C\83\8b1\82Â\82É\82Â\82«1\82Â\82Ì\83^\83u"
-"\83y\81[\83W\82ð\8aJ\82"
+"SNiFF+\82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ. \8aÂ\8b«\82ð\83`\83F\83b\83N\82µ\82Ä\82\82¾\82³\82¢(sniffemacs \82ª $PATH \82É\82È\82¯"
+"\82ê\82Î\82È\82è\82Ü\82¹\82ñ).\n"
-msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
-msgstr "--remote-send <keys>\tVim\83T\81[\83o\82É <keys> \82ð\91\97\90M\82µ\82Ä\8fI\97¹\82·\82é"
+msgid "E274: Sniff: Error during read. Disconnected"
+msgstr "E274: Sniff: \93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½. \90Ø\92f\82µ\82Ü\82µ\82½"
-msgid "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"
-msgstr "--remote-expr <expr>\t\83T\81[\83o\82Å <expr> \82ð\8eÀ\8ds\82µ\82Ä\8c\8b\89Ê\82ð\95\\\8e¦\82·\82é"
+msgid "SNiFF+ is currently "
+msgstr "\8c»\8dÝSNiFF+ \82Ì\8fó\91Ô\82Í\81u"
-msgid "--serverlist\t\tList available Vim server names and exit"
-msgstr "--serverlist\t\tVim\83T\81[\83o\96¼\82Ì\88ê\97\97\82ð\95\\\8e¦\82µ\82Ä\8fI\97¹\82·\82é"
+msgid "not "
+msgstr "\96¢"
-msgid "--servername <name>\tSend to/become the Vim server <name>"
-msgstr "--servename <name>\t\tVim\83T\81[\83o <name> \82É\91\97\90M/\96¼\91O\90Ý\92è\82·\82é"
+msgid "connected"
+msgstr "\90Ú\91±\81v\82Å\82·"
-msgid "--startuptime <file>\tWrite startup timing messages to <file>"
-msgstr "--startuptime <file>\t\8bN\93®\82É\82©\82©\82Á\82½\8e\9e\8aÔ\82Ì\8fÚ\8d×\82ð <file> \82Ö\8fo\97Í\82·\82é"
+#, c-format
+msgid "E275: Unknown SNiFF+ request: %s"
+msgstr "E275: \96¢\92m\82Ì SNiFF+ \83\8a\83N\83G\83X\83g\82Å\82·: %s"
-msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo"
-msgstr "-i <viminfo>\t\t.viminfo\82Ì\91ã\82í\82è\82É <viminfo> \82ð\8eg\82¤"
+msgid "E276: Error connecting to SNiFF+"
+msgstr "E276: SNiFF+ \82Ö\82Ì\90Ú\91±\92\86\82Ì\83G\83\89\81[\82Å\82·"
-msgid "-h or --help\tPrint Help (this message) and exit"
-msgstr "-h or --help\t\83w\83\8b\83v(\82±\82Ì\83\81\83b\83Z\81[\83W)\82ð\95\\\8e¦\82µ\8fI\97¹\82·\82é"
+msgid "E278: SNiFF+ not connected"
+msgstr "E278: SNiFF+ \82É\90Ú\91±\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "--version\t\tPrint version information and exit"
-msgstr "--version\t\t\83o\81[\83W\83\87\83\93\8fî\95ñ\82ð\95\\\8e¦\82µ\8fI\97¹\82·\82é"
+msgid "E279: Not a SNiFF+ buffer"
+msgstr "E279: SNiFF+ \83o\83b\83t\83@\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"Arguments recognised by gvim (Motif version):\n"
-msgstr ""
-"\n"
-"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(Motif\83o\81[\83W\83\87\83\93):\n"
+msgid "Sniff: Error during write. Disconnected"
+msgstr "Sniff: \8f\91\8d\9e\82Ý\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82½\82Ì\82Å\90Ø\92f\82µ\82Ü\82µ\82½"
-msgid ""
-"\n"
-"Arguments recognised by gvim (neXtaw version):\n"
-msgstr ""
-"\n"
-"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(neXtaw\83o\81[\83W\83\87\83\93):\n"
+msgid "invalid buffer number"
+msgstr "\96³\8cø\82È\83o\83b\83t\83@\94Ô\8d\86\82Å\82·"
-msgid ""
-"\n"
-"Arguments recognised by gvim (Athena version):\n"
-msgstr ""
-"\n"
-"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(Athena\83o\81[\83W\83\87\83\93):\n"
+msgid "not implemented yet"
+msgstr "\82Ü\82¾\8eÀ\91\95\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "-display <display>\tRun vim on <display>"
-msgstr "-display <display>\t<display> \82Åvim\82ð\8eÀ\8ds\82·\82é"
+#. ???
+msgid "cannot set line(s)"
+msgstr "\8ds\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
-msgid "-iconic\t\tStart vim iconified"
-msgstr "-iconic\t\t\8dÅ\8f¬\89»\82µ\82½\8fó\91Ô\82Åvim\82ð\8bN\93®\82·\82é"
+msgid "invalid mark name"
+msgstr "\96³\8cø\82È\83}\81[\83N\96¼\82Å\82·"
-msgid "-background <color>\tUse <color> for the background (also: -bg)"
-msgstr "-background <color>\t\94w\8ci\90F\82É <color> \82ð\8eg\82¤(\93¯\8b`: -bg)"
+msgid "mark not set"
+msgstr "\83}\81[\83N\82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "-foreground <color>\tUse <color> for normal text (also: -fg)"
-msgstr "-foreground <color>\t\91O\8ci\90F\82É <color> \82ð\8eg\82¤(\93¯\8b`: -fg)"
+#, c-format
+msgid "row %d column %d"
+msgstr "\8ds %d \97ñ %d"
-msgid "-font <font>\t\tUse <font> for normal text (also: -fn)"
-msgstr "-font <font>\t\t\83e\83L\83X\83g\95\\\8e¦\82É <font> \82ð\8eg\82¤(\93¯\8b`: -fn)"
+msgid "cannot insert/append line"
+msgstr "\8ds\82Ì\91}\93ü/\92Ç\89Á\82ð\82Å\82«\82Ü\82¹\82ñ"
-msgid "-boldfont <font>\tUse <font> for bold text"
-msgstr "-boldfont <font>\t\91¾\8e\9a\82É <font> \82ð\8eg\82¤"
+msgid "line number out of range"
+msgstr "\94Í\88Í\8aO\82Ì\8ds\94Ô\8d\86\82Å\82·"
-msgid "-italicfont <font>\tUse <font> for italic text"
-msgstr "-italicfont <for>\t\8eÎ\91Ì\8e\9a\82É <font> \82ð\8eg\82¤"
+msgid "unknown flag: "
+msgstr "\96¢\92m\82Ì\83t\83\89\83O:"
-msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"
-msgstr "-geometry <geom>\t\8f\89\8aú\94z\92u\82É <geom> \82ð\8eg\82¤(\93¯\8b`: -geom)"
+msgid "unknown vimOption"
+msgstr "\96¢\92m\82Ì vimOption \82Å\82·"
-msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)"
-msgstr "-borderwidth <width>\t\8b«\8aE\82Ì\95\9d\82ð <width> \82É\82·\82é(\93¯\8b`: -bw)"
+msgid "keyboard interrupt"
+msgstr "\83L\81[\83{\81[\83h\8a\84\8d\9e\82Ý"
-msgid "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"
-msgstr ""
-"-scrollbarwidth <width> \83X\83N\83\8d\81[\83\8b\83o\81[\82Ì\95\9d\82ð <width> \82É\82·\82é(\93¯\8b`: -sw)"
+msgid "vim error"
+msgstr "vim \83G\83\89\81["
-msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"
-msgstr "-menuheight <height>\t\83\81\83j\83\85\81[\83o\81[\82Ì\8d\82\82³\82ð <height> \82É\82·\82é(\93¯\8b`: -mh)"
+msgid "cannot create buffer/window command: object is being deleted"
+msgstr ""
+"\83o\83b\83t\83@/\83E\83B\83\93\83h\83E\8dì\90¬\83R\83}\83\93\83h\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ: \83I\83u\83W\83F\83N\83g\82ª\8fÁ\8b\8e\82³\82ê\82Ä\82¢\82Ü"
+"\82µ\82½"
-msgid "-reverse\t\tUse reverse video (also: -rv)"
-msgstr "-reverse\t\t\94½\93]\89f\91\9c\82ð\8eg\97p\82·\82é(\93¯\8b`: -rv)"
+msgid ""
+"cannot register callback command: buffer/window is already being deleted"
+msgstr ""
+"\83R\81[\83\8b\83o\83b\83N\83R\83}\83\93\83h\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ: \83o\83b\83t\83@/\83E\83B\83\93\83h\83E\82ª\8aù\82É\8fÁ\8b\8e\82³\82ê\82Ü\82µ\82½"
-msgid "+reverse\t\tDon't use reverse video (also: +rv)"
-msgstr "+reverse\t\t\94½\93]\89f\91\9c\82ð\8eg\97p\82µ\82È\82¢(\93¯\8b`: +rv)"
+#. This should never happen. Famous last word?
+msgid ""
+"E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim."
+"org"
+msgstr ""
+"E280: TCL \92v\96½\93I\83G\83\89\81[: reflist \89\98\90õ!? vim-dev@vim.org \82É\95ñ\8d\90\82µ\82Ä\82\82¾\82³\82¢"
-msgid "-xrm <resource>\tSet the specified resource"
-msgstr "-xrm <resource>\t\93Á\92è\82Ì\83\8a\83\\\81[\83X\82ð\8eg\97p\82·\82é"
+msgid "cannot register callback command: buffer/window reference not found"
+msgstr ""
+"\83R\81[\83\8b\83o\83b\83N\83R\83}\83\93\83h\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ: \83o\83b\83t\83@/\83E\83B\83\93\83h\83E\82Ì\8eQ\8fÆ\82ª\82Ý\82Â\82©\82è\82Ü\82¹"
+"\82ñ"
msgid ""
-"\n"
-"Arguments recognised by gvim (RISC OS version):\n"
+"E571: Sorry, this command is disabled: the Tcl library could not be loaded."
msgstr ""
-"\n"
-"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(RISC OS\83o\81[\83W\83\87\83\93):\n"
+"E571: \82±\82Ì\83R\83}\83\93\83h\82Í\96³\8cø\82Å\82·,\82²\82ß\82ñ\82È\82³\82¢: Tcl\83\89\83C\83u\83\89\83\8a\82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å"
+"\82µ\82½."
-msgid "--columns <number>\tInitial width of window in columns"
-msgstr "--columns <number>\t\8f\89\8aú\82Ì\83E\83B\83\93\83h\83E\82Ì\83R\83\89\83\80\92P\88Ê\82Ì\95\9d"
+#, c-format
+msgid "E572: exit code %d"
+msgstr "E572: \8fI\97¹\83R\81[\83h %d"
-msgid "--rows <number>\tInitial height of window in rows"
-msgstr "--rows <number>\t\8f\89\8aú\82Ì\83E\83B\83\93\83h\83E\82Ì\8ds\92P\88Ê\82Ì\8d\82\82³"
+msgid "cannot get line"
+msgstr "\8ds\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"Arguments recognised by gvim (GTK+ version):\n"
-msgstr ""
-"\n"
-"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(GTK+\83o\81[\83W\83\87\83\93):\n"
+msgid "Unable to register a command server name"
+msgstr "\96½\97ß\83T\81[\83o\82Ì\96¼\91O\82ð\93o\98^\82Å\82«\82Ü\82¹\82ñ"
-msgid "-display <display>\tRun vim on <display> (also: --display)"
-msgstr "-display <display>\t<display> \82Åvim\82ð\8eÀ\8ds\82·\82é(\93¯\8b`: --display)"
+msgid "E248: Failed to send command to the destination program"
+msgstr "E248: \96Ú\93I\82Ì\83v\83\8d\83O\83\89\83\80\82Ö\82Ì\83R\83}\83\93\83h\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "--role <role>\tSet a unique role to identify the main window"
-msgstr "--role <role>\t\83\81\83C\83\93\83E\83B\83\93\83h\83E\82ð\8e¯\95Ê\82·\82é\88ê\88Ó\82È\96ð\8a\84(role)\82ð\90Ý\92è\82·\82é"
+#, c-format
+msgid "E573: Invalid server id used: %s"
+msgstr "E573: \96³\8cø\82È\83T\81[\83oID\82ª\8eg\82í\82ê\82Ü\82µ\82½: %s"
-msgid "--socketid <xid>\tOpen Vim inside another GTK widget"
-msgstr "--socketid <xid>\t\88Ù\82È\82éGTK widget\82ÅVim\82ð\8aJ\82"
+msgid "E251: VIM instance registry property is badly formed. Deleted!"
+msgstr "E251: VIM \8eÀ\91Ì\82Ì\93o\98^\83v\83\8d\83p\83e\83B\82ª\95s\90³\82Å\82·. \8fÁ\8b\8e\82µ\82Ü\82µ\82½!"
-msgid "-P <parent title>\tOpen Vim inside parent application"
-msgstr "-P <\90e\82Ì\83^\83C\83g\83\8b>\tVim\82ð\90e\83A\83v\83\8a\83P\81[\83V\83\87\83\93\82Ì\92\86\82Å\8bN\93®\82·\82é"
+msgid "Unknown option argument"
+msgstr "\96¢\92m\82Ì\83I\83v\83V\83\87\83\93\88ø\90\94\82Å\82·"
-msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
-msgstr "--windowid <HWND>\t\88Ù\82È\82éWin32 widget\82Ì\93à\95\94\82ÉVim\82ð\8aJ\82"
+msgid "Too many edit arguments"
+msgstr "\95Ò\8fW\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "No display"
-msgstr "\83f\83B\83X\83v\83\8c\83C\82ª\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "Argument missing after"
+msgstr "\88ø\90\94\82ª\82 \82è\82Ü\82¹\82ñ"
-#. Failed to send, abort.
-msgid ": Send failed.\n"
-msgstr ": \91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
+msgid "Garbage after option argument"
+msgstr "\83I\83v\83V\83\87\83\93\88ø\90\94\82Ì\8cã\82É\83S\83~\82ª\82 \82è\82Ü\82·"
-#. Let vim start normally.
-msgid ": Send failed. Trying to execute locally\n"
-msgstr ": \91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½. \83\8d\81[\83J\83\8b\82Å\82Ì\8eÀ\8ds\82ð\8e\8e\82Ý\82Ä\82¢\82Ü\82·\n"
+msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"
+msgstr "\"+command\", \"-c command\", \"--cmd command\" \82Ì\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
+
+msgid "Invalid argument for"
+msgstr "\96³\8cø\82È\88ø\90\94\82Å\82·: "
#, c-format
-msgid "%d of %d edited"
-msgstr "%d \8c (%d \8cÂ\92\86) \82Ì\83t\83@\83C\83\8b\82ð\95Ò\8fW\82µ\82Ü\82µ\82½"
+msgid "%d files to edit\n"
+msgstr "%d \8cÂ\82Ì\83t\83@\83C\83\8b\82ª\95Ò\8fW\82ð\8dT\82¦\82Ä\82¢\82Ü\82·\n"
-msgid "No display: Send expression failed.\n"
-msgstr "\83f\83B\83X\83v\83\8c\83C\82ª\82 \82è\82Ü\82¹\82ñ: \8e®\82Ì\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
+msgid "netbeans is not supported with this GUI\n"
+msgstr "netbeans \82Í\82±\82ÌGUI\82Å\82Í\97\98\97p\82Å\82«\82Ü\82¹\82ñ\n"
-msgid ": Send expression failed.\n"
-msgstr ": \8e®\82Ì\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
+msgid "This Vim was not compiled with the diff feature."
+msgstr "\82±\82ÌVim\82É\82Ídiff\8b@\94\\\82ª\82 \82è\82Ü\82¹\82ñ(\83R\83\93\83p\83C\83\8b\8e\9e\90Ý\92è)."
-msgid "No marks set"
-msgstr "\83}\81[\83N\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "'-nb' cannot be used: not enabled at compile time\n"
+msgstr "'-nb' \8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
+
+msgid "Attempt to open script file again: \""
+msgstr "\83X\83N\83\8a\83v\83g\83t\83@\83C\83\8b\82ð\8dÄ\82Ñ\8aJ\82¢\82Ä\82Ý\82Ü\82·: \""
+
+msgid "Cannot open for reading: \""
+msgstr "\93Ç\8d\9e\97p\82Æ\82µ\82Ä\8aJ\82¯\82Ü\82¹\82ñ"
+
+msgid "Cannot open for script output: \""
+msgstr "\83X\83N\83\8a\83v\83g\8fo\97Í\97p\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+
+msgid "Vim: Error: Failure to start gvim from NetBeans\n"
+msgstr "Vim: \83G\83\89\81[: NetBeans\82©\82çgvim\82ð\83X\83^\81[\83g\82Å\82«\82Ü\82¹\82ñ\n"
+
+msgid "Vim: Warning: Output is not to a terminal\n"
+msgstr "Vim: \8cx\8d\90: \92[\96\96\82Ö\82Ì\8fo\97Í\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
+
+msgid "Vim: Warning: Input is not from a terminal\n"
+msgstr "Vim: \8cx\8d\90: \92[\96\96\82©\82ç\82Ì\93ü\97Í\82Å\82Í\82 \82è\82Ü\82¹\82ñ\n"
+
+#. just in case..
+msgid "pre-vimrc command line"
+msgstr "vimrc\91O\82Ì\83R\83}\83\93\83h\83\89\83C\83\93"
#, c-format
-msgid "E283: No marks matching \"%s\""
-msgstr "E283: \"%s\" \82É\8aY\93\96\82·\82é\83}\81[\83N\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E282: Cannot read from \"%s\""
+msgstr "E282: \"%s\"\82©\82ç\93Ç\8d\9e\82Þ\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ"
-#. Highlight title
msgid ""
"\n"
-"mark line col file/text"
+"More info with: \"vim -h\"\n"
msgstr ""
"\n"
-"mark \8ds \97ñ \83t\83@\83C\83\8b/\83e\83L\83X\83g"
+"\82æ\82è\8fÚ\8d×\82È\8fî\95ñ\82Í: \"vim -h\"\n"
+
+msgid "[file ..] edit specified file(s)"
+msgstr "[\83t\83@\83C\83\8b..] \82 \82é\83t\83@\83C\83\8b\82ð\95Ò\8fW\82·\82é"
+
+msgid "- read text from stdin"
+msgstr "- \95W\8f\80\93ü\97Í\82©\82ç\83e\83L\83X\83g\82ð\93Ç\8d\9e\82Þ"
+
+msgid "-t tag edit file where tag is defined"
+msgstr "-t \83^\83O \83^\83O\82ª\92è\8b`\82³\82ê\82½\82Æ\82±\82ë\82©\82ç\95Ò\8fW\82·\82é"
+
+msgid "-q [errorfile] edit file with first error"
+msgstr "-q [errorfile] \8dÅ\8f\89\82Ì\83G\83\89\81[\82Å\95Ò\8fW\82·\82é"
-#. Highlight title
msgid ""
"\n"
-" jump line col file/text"
+"\n"
+"usage:"
msgstr ""
"\n"
-" jump \8ds \97ñ \83t\83@\83C\83\8b/\83e\83L\83X\83g"
+"\n"
+"\8eg\97p\96@:"
+
+msgid " vim [arguments] "
+msgstr " vim [\88ø\90\94]"
-#. Highlight title
msgid ""
"\n"
-"change line col text"
+" or:"
msgstr ""
"\n"
-"\95Ï\8dX \8ds \97ñ \83e\83L\83X\83g"
+" \82à\82µ\82\82Í:"
msgid ""
"\n"
-"# File marks:\n"
+"Where case is ignored prepend / to make flag upper case"
msgstr ""
"\n"
-"# \83t\83@\83C\83\8b\83}\81[\83N:\n"
+"\91å\8f¬\95¶\8e\9a\82ª\96³\8e\8b\82³\82ê\82é\8fê\8d\87\82Í\91å\95¶\8e\9a\82É\82·\82é\82½\82ß\82É / \82ð\91O\92u\82µ\82Ä\82\82¾\82³\82¢"
-#. Write the jumplist with -'
msgid ""
"\n"
-"# Jumplist (newest first):\n"
+"\n"
+"Arguments:\n"
msgstr ""
"\n"
-"# \83W\83\83\83\93\83v\83\8a\83X\83g (\90V\82µ\82¢\82à\82Ì\82ª\90æ):\n"
-
-msgid ""
-"\n"
-"# History of marks within files (newest to oldest):\n"
-msgstr ""
"\n"
-"# \83t\83@\83C\83\8b\93à\83}\81[\83N\82Ì\97\9a\97ð (\90V\82µ\82¢\82à\82Ì\82©\82ç\8cÃ\82¢\82à\82Ì):\n"
+"\88ø\90\94:\n"
-msgid "Missing '>'"
-msgstr "'>' \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "--\t\t\tOnly file names after this"
+msgstr "--\t\t\t\82±\82Ì\82 \82Æ\82É\82Í\83t\83@\83C\83\8b\96¼\82¾\82¯"
-msgid "E543: Not a valid codepage"
-msgstr "E543: \96³\8cø\82È\83R\81[\83h\83y\81[\83W\82Å\82·"
+msgid "--literal\t\tDon't expand wildcards"
+msgstr "--literal\t\t\83\8f\83C\83\8b\83h\83J\81[\83h\82ð\93W\8aJ\82µ\82È\82¢"
-msgid "E284: Cannot set IC values"
-msgstr "E284: IC\82Ì\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
+msgid "-register\t\tRegister this gvim for OLE"
+msgstr "-register\t\t\82±\82Ìgvim\82ðOLE\82Æ\82µ\82Ä\93o\98^\82·\82é"
-msgid "E285: Failed to create input context"
-msgstr "E285: \83C\83\93\83v\83b\83g\83R\83\93\83e\83L\83X\83g\82Ì\8dì\90¬\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "-unregister\t\tUnregister gvim for OLE"
+msgstr "-unregister\t\tgvim\82ÌOLE\93o\98^\82ð\89ð\8f\9c\82·\82é"
-msgid "E286: Failed to open input method"
-msgstr "E286: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Ì\83I\81[\83v\83\93\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "-g\t\t\tRun using GUI (like \"gvim\")"
+msgstr "-g\t\t\tGUI\82Å\8bN\93®\82·\82é (\"gvim\" \82Æ\93¯\82¶)"
-msgid "E287: Warning: Could not set destroy callback to IM"
-msgstr "E287: \8cx\8d\90: IM\82Ì\94j\89ó\83R\81[\83\8b\83o\83b\83N\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "-f or --nofork\tForeground: Don't fork when starting GUI"
+msgstr "-f or --nofork\t\83t\83H\83A\83O\83\89\83E\83\93\83h: GUI\82ð\8en\82ß\82é\82Æ\82«\82Éfork\82µ\82È\82¢"
-msgid "E288: input method doesn't support any style"
-msgstr "E288: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Í\82Ç\82ñ\82È\83X\83^\83C\83\8b\82à\83T\83|\81[\83g\82µ\82Ü\82¹\82ñ"
+msgid "-v\t\t\tVi mode (like \"vi\")"
+msgstr "-v\t\t\tVi\83\82\81[\83h (\"vi\" \82Æ\93¯\82¶)"
-msgid "E289: input method doesn't support my preedit type"
-msgstr "E289: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Í my preedit type \82ð\83T\83|\81[\83g\82µ\82Ü\82¹\82ñ"
+msgid "-e\t\t\tEx mode (like \"ex\")"
+msgstr "-e\t\t\tEx\83\82\81[\83h (\"ex\" \82Æ\93¯\82¶)"
-msgid "E293: block was not locked"
-msgstr "E293: \83u\83\8d\83b\83N\82ª\83\8d\83b\83N\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "-E\t\t\tImproved Ex mode"
+msgstr "-E\t\t\t\89ü\97ÇEx\83\82\81[\83h"
-msgid "E294: Seek error in swap file read"
-msgstr "E294: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\93Ç\8d\9e\8e\9e\82É\83V\81[\83N\83G\83\89\81[\82Å\82·"
+msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")"
+msgstr "-s\t\t\t\83T\83C\83\8c\83\93\83g(\83o\83b\83`)\83\82\81[\83h (\"ex\" \90ê\97p)"
-msgid "E295: Read error in swap file"
-msgstr "E295: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
+msgid "-d\t\t\tDiff mode (like \"vimdiff\")"
+msgstr "-d\t\t\t\8d·\95ª\83\82\81[\83h (\"vidiff\" \82Æ\93¯\82¶)"
-msgid "E296: Seek error in swap file write"
-msgstr "E296: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\8f\91\8d\9e\82Ý\8e\9e\82É\83V\81[\83N\83G\83\89\81[\82Å\82·"
+msgid "-y\t\t\tEasy mode (like \"evim\", modeless)"
+msgstr "-y\t\t\t\83C\81[\83W\81[\83\82\81[\83h (\"evim\" \82Æ\93¯\82¶, \83\82\81[\83h\96³)"
-msgid "E297: Write error in swap file"
-msgstr "E297: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\8f\91\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
+msgid "-R\t\t\tReadonly mode (like \"view\")"
+msgstr "-R\t\t\t\93Ç\8d\9e\90ê\97p\83\82\81[\83h (\"view\" \82Æ\93¯\82¶)"
-msgid "E300: Swap file already exists (symlink attack?)"
-msgstr "E300: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82· (symlink\82É\82æ\82é\8dU\8c\82?)"
+msgid "-Z\t\t\tRestricted mode (like \"rvim\")"
+msgstr "-Z\t\t\t\90§\8cÀ\83\82\81[\83h (\"rvim\" \82Æ\93¯\82¶)"
-msgid "E298: Didn't get block nr 0?"
-msgstr "E298: \83u\83\8d\83b\83N 0 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
+msgid "-m\t\t\tModifications (writing files) not allowed"
+msgstr "-m\t\t\t\95Ï\8dX (\83t\83@\83C\83\8b\95Û\91¶\8e\9e) \82ð\82Å\82«\82È\82¢\82æ\82¤\82É\82·\82é"
-msgid "E298: Didn't get block nr 1?"
-msgstr "E298: \83u\83\8d\83b\83N 1 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
+msgid "-M\t\t\tModifications in text not allowed"
+msgstr "-M\t\t\t\83e\83L\83X\83g\82Ì\95Ò\8fW\82ð\8ds\82È\82¦\82È\82¢\82æ\82¤\82É\82·\82é"
-msgid "E298: Didn't get block nr 2?"
-msgstr "E298: \83u\83\8d\83b\83N 2 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
+msgid "-b\t\t\tBinary mode"
+msgstr "-b\t\t\t\83o\83C\83i\83\8a\83\82\81[\83h"
-msgid "E843: Error while updating swap file crypt"
-msgstr "E843: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\88Ã\8d\86\82ð\8dX\90V\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½"
+msgid "-l\t\t\tLisp mode"
+msgstr "-l\t\t\tLisp\83\82\81[\83h"
-#. could not (re)open the swap file, what can we do????
-msgid "E301: Oops, lost the swap file!!!"
-msgstr "E301: \82¨\82Á\82Æ, \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8e¸\82í\82ê\82Ü\82µ\82½!!!"
+msgid "-C\t\t\tCompatible with Vi: 'compatible'"
+msgstr "-C\t\t\tVi\8cÝ\8a·\83\82\81[\83h: 'compatible'"
-msgid "E302: Could not rename swap file"
-msgstr "E302: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\96¼\91O\82ð\95Ï\82¦\82ç\82ê\82Ü\82¹\82ñ"
+msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'"
+msgstr "-N\t\t\tVi\94ñ\8cÝ\8a·\83\82\81[\83h: 'nocompatible"
-#, c-format
-msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
-msgstr "E303: \"%s\" \82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8aJ\82¯\82È\82¢\82Ì\82Å\83\8a\83J\83o\83\8a\82Í\95s\89Â\94\\\82Å\82·"
+msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"
+msgstr "-V[N][fname]\t\t\83\8d\83O\8fo\97Í\90Ý\92è [\83\8c\83x\83\8b N] [\83\8d\83O\83t\83@\83C\83\8b\96¼ fname]"
-msgid "E304: ml_upd_block0(): Didn't get block 0??"
-msgstr "E304: ml_upd_block0(): \83u\83\8d\83b\83N 0 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½??"
+msgid "-D\t\t\tDebugging mode"
+msgstr "-D\t\t\t\83f\83o\83b\83O\83\82\81[\83h"
-#, c-format
-msgid "E305: No swap file found for %s"
-msgstr "E305: %s \82É\82Í\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "-n\t\t\tNo swap file, use memory only"
+msgstr "-n\t\t\t\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8eg\97p\82¹\82¸\83\81\83\82\83\8a\82¾\82¯"
-msgid "Enter number of swap file to use (0 to quit): "
-msgstr "\8eg\97p\82·\82é\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\94Ô\8d\86\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢(0 \82Å\8fI\97¹): "
+msgid "-r\t\t\tList swap files and exit"
+msgstr "-r\t\t\t\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\97ñ\8b\93\82µ\8fI\97¹"
-#, c-format
-msgid "E306: Cannot open %s"
-msgstr "E306: %s \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "-r (with file name)\tRecover crashed session"
+msgstr "-r (\83t\83@\83C\83\8b\96¼)\t\83N\83\89\83b\83V\83\85\82µ\82½\83Z\83b\83V\83\87\83\93\82ð\95\9c\8bA"
-msgid "Unable to read block 0 from "
-msgstr "\83u\83\8d\83b\83N 0 \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ "
+msgid "-L\t\t\tSame as -r"
+msgstr "-L\t\t\t-r\82Æ\93¯\82¶"
-msgid ""
-"\n"
-"Maybe no changes were made or Vim did not update the swap file."
-msgstr ""
-"\n"
-"\8b°\82ç\82\95Ï\8dX\82ª\82³\82ê\82Ä\82¢\82È\82¢\82©Vim\82ª\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8dX\90V\82µ\82Ä\82¢\82Ü\82¹\82ñ."
+msgid "-f\t\t\tDon't use newcli to open window"
+msgstr "-f\t\t\t\83E\83B\83\93\83h\83E\82ð\8aJ\82\82Ì\82É newcli \82ð\8eg\97p\82µ\82È\82¢"
-msgid " cannot be used with this version of Vim.\n"
-msgstr " Vim\82Ì\82±\82Ì\83o\81[\83W\83\87\83\93\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ.\n"
+msgid "-dev <device>\t\tUse <device> for I/O"
+msgstr "-dev <device>\t\tI/O\82É <device> \82ð\8eg\97p\82·\82é"
-msgid "Use Vim version 3.0.\n"
-msgstr "Vim\82Ì\83o\81[\83W\83\87\83\933.0\82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢.\n"
+msgid "-A\t\t\tstart in Arabic mode"
+msgstr "-A\t\t\t\83A\83\89\83r\83A\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
-#, c-format
-msgid "E307: %s does not look like a Vim swap file"
-msgstr "E307: %s \82ÍVim\82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·"
+msgid "-H\t\t\tStart in Hebrew mode"
+msgstr "-H\t\t\t\83w\83u\83\89\83C\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
-msgid " cannot be used on this computer.\n"
-msgstr " \82±\82Ì\83R\83\93\83s\83\85\81[\83^\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ.\n"
+msgid "-F\t\t\tStart in Farsi mode"
+msgstr "-F\t\t\t\83y\83\8b\83V\83A\8cê\83\82\81[\83h\82Å\8bN\93®\82·\82é"
-msgid "The file was created on "
-msgstr "\82±\82Ì\83t\83@\83C\83\8b\82Í\8e\9f\82Ì\8fê\8f\8a\82Å\8dì\82ç\82ê\82Ü\82µ\82½ "
+msgid "-T <terminal>\tSet terminal type to <terminal>"
+msgstr "-T <terminal>\t\92[\96\96\82ð <terminal> \82É\90Ý\92è\82·\82é"
+
+msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"
+msgstr "-u <vimrc>\t\t.vimrc\82Ì\91ã\82í\82è\82É <vimrc> \82ð\8eg\82¤"
+
+msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"
+msgstr "-U <gvimrc>\t\t.gvimrc\82Ì\91ã\82í\82è\82É <gvimrc> \82ð\8eg\82¤"
+
+msgid "--noplugin\t\tDon't load plugin scripts"
+msgstr "--noplugin\t\t\83v\83\89\83O\83C\83\93\83X\83N\83\8a\83v\83g\82ð\83\8d\81[\83h\82µ\82È\82¢"
+
+msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
+msgstr "-p[N]\t\tN \8cÂ\83^\83u\83y\81[\83W\82ð\8aJ\82(\8fÈ\97ª\92l: \83t\83@\83C\83\8b\82É\82Â\82«1\8cÂ)"
+
+msgid "-o[N]\t\tOpen N windows (default: one for each file)"
+msgstr "-o[N]\t\tN \8cÂ\83E\83B\83\93\83h\83E\82ð\8aJ\82(\8fÈ\97ª\92l: \83t\83@\83C\83\8b\82É\82Â\82«1\8cÂ)"
+
+msgid "-O[N]\t\tLike -o but split vertically"
+msgstr "-O[N]\t\t-o\82Æ\93¯\82¶\82¾\82ª\90\82\92¼\95ª\8a\84"
+
+msgid "+\t\t\tStart at end of file"
+msgstr "+\t\t\t\83t\83@\83C\83\8b\82Ì\8dÅ\8cã\82©\82ç\82Í\82¶\82ß\82é"
+
+msgid "+<lnum>\t\tStart at line <lnum>"
+msgstr "+<lnum>\t\t<lnum> \8ds\82©\82ç\82Í\82¶\82ß\82é"
+
+msgid "--cmd <command>\tExecute <command> before loading any vimrc file"
+msgstr "--cmd <command>\tvimrc\82ð\83\8d\81[\83h\82·\82é\91O\82É <command> \82ð\8eÀ\8ds\82·\82é"
+
+msgid "-c <command>\t\tExecute <command> after loading the first file"
+msgstr "-c <command>\t\t\8dÅ\8f\89\82Ì\83t\83@\83C\83\8b\82ð\83\8d\81[\83h\8cã <command> \82ð\8eÀ\8ds\82·\82é"
+
+msgid "-S <session>\t\tSource file <session> after loading the first file"
+msgstr "-S <session>\t\t\8dÅ\8f\89\82Ì\83t\83@\83C\83\8b\82ð\83\8d\81[\83h\8cã\83t\83@\83C\83\8b <session> \82ð\8eæ\8d\9e\82Þ"
+
+msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>"
+msgstr "-s <scriptin>\t\83t\83@\83C\83\8b <scriptin> \82©\82ç\83m\81[\83}\83\8b\83R\83}\83\93\83h\82ð\93Ç\8d\9e\82Þ"
+
+msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>"
+msgstr "-w <scriptout>\t\93ü\97Í\82µ\82½\91S\83R\83}\83\93\83h\82ð\83t\83@\83C\83\8b <scriptout> \82É\92Ç\89Á\82·\82é"
+
+msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>"
+msgstr "-W <scriptout>\t\93ü\97Í\82µ\82½\91S\83R\83}\83\93\83h\82ð\83t\83@\83C\83\8b <scriptout> \82É\95Û\91¶\82·\82é"
+
+msgid "-x\t\t\tEdit encrypted files"
+msgstr "-x\t\t\t\88Ã\8d\86\89»\82³\82ê\82½\83t\83@\83C\83\8b\82ð\95Ò\8fW\82·\82é"
+
+msgid "-display <display>\tConnect vim to this particular X-server"
+msgstr "-display <display>\tvim\82ð\8ew\92è\82µ\82½ X \83T\81[\83o\82É\90Ú\91±\82·\82é"
+
+msgid "-X\t\t\tDo not connect to X server"
+msgstr "-X\t\t\tX\83T\81[\83o\82É\90Ú\91±\82µ\82È\82¢"
+
+msgid "--remote <files>\tEdit <files> in a Vim server if possible"
+msgstr "--remote <files>\t\89Â\94\\\82È\82ç\82ÎVim\83T\81[\83o\82Å <files> \82ð\95Ò\8fW\82·\82é"
+
+msgid "--remote-silent <files> Same, don't complain if there is no server"
+msgstr "--remote-silent <files> \93¯\8fã, \83T\81[\83o\82ª\96³\82\82Ä\82à\8cx\8d\90\95¶\82ð\8fo\97Í\82µ\82È\82¢"
msgid ""
-",\n"
-"or the file has been damaged."
-msgstr ""
-",\n"
-"\82à\82µ\82\82Í\83t\83@\83C\83\8b\82ª\91¹\8f\9d\82µ\82Ä\82¢\82Ü\82·."
+"--remote-wait <files> As --remote but wait for files to have been edited"
+msgstr "--remote-wait <files>\t--remote\8cã \83t\83@\83C\83\8b\82Ì\95Ò\8fW\82ª\8fI\82í\82é\82Ì\82ð\91Ò\82Â"
-#, c-format
msgid ""
-"E833: %s is encrypted and this version of Vim does not support encryption"
+"--remote-wait-silent <files> Same, don't complain if there is no server"
+msgstr "--remote-wait-silent <files> \93¯\8fã, \83T\81[\83o\82ª\96³\82\82Ä\82à\8cx\8d\90\95¶\82ð\8fo\97Í\82µ\82È\82¢"
+
+msgid ""
+"--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"
msgstr ""
-"E833: %s \82Í\82±\82Ì\83o\81[\83W\83\87\83\93\82ÌVim\82Å\83T\83|\81[\83g\82µ\82Ä\82¢\82È\82¢\8c`\8e®\82Å\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·"
+"--remote-tab[-wait][-silent] <files> --remote\82Å\83t\83@\83C\83\8b1\82Â\82É\82Â\82«1\82Â\82Ì\83^\83u"
+"\83y\81[\83W\82ð\8aJ\82"
-msgid " has been damaged (page size is smaller than minimum value).\n"
-msgstr " \82Í\91¹\8f\9d\82µ\82Ä\82¢\82Ü\82· (\83y\81[\83W\83T\83C\83Y\82ª\8dÅ\8f¬\92l\82ð\89º\89ñ\82Á\82Ä\82¢\82Ü\82·).\n"
+msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
+msgstr "--remote-send <keys>\tVim\83T\81[\83o\82É <keys> \82ð\91\97\90M\82µ\82Ä\8fI\97¹\82·\82é"
-#, c-format
-msgid "Using swap file \"%s\""
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b \"%s\" \82ð\8eg\97p\92\86"
+msgid "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"
+msgstr "--remote-expr <expr>\t\83T\81[\83o\82Å <expr> \82ð\8eÀ\8ds\82µ\82Ä\8c\8b\89Ê\82ð\95\\\8e¦\82·\82é"
-#, c-format
-msgid "Original file \"%s\""
-msgstr "\8c´\96{\83t\83@\83C\83\8b \"%s\""
+msgid "--serverlist\t\tList available Vim server names and exit"
+msgstr "--serverlist\t\tVim\83T\81[\83o\96¼\82Ì\88ê\97\97\82ð\95\\\8e¦\82µ\82Ä\8fI\97¹\82·\82é"
-msgid "E308: Warning: Original file may have been changed"
-msgstr "E308: \8cx\8d\90: \8c´\96{\83t\83@\83C\83\8b\82ª\95Ï\8dX\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid "--servername <name>\tSend to/become the Vim server <name>"
+msgstr "--servername <name>\tVim\83T\81[\83o <name> \82É\91\97\90M/\96¼\91O\90Ý\92è\82·\82é"
-#, c-format
-msgid "Swap file is encrypted: \"%s\""
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Í\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·: \"%s\""
+msgid "--startuptime <file>\tWrite startup timing messages to <file>"
+msgstr "--startuptime <file>\t\8bN\93®\82É\82©\82©\82Á\82½\8e\9e\8aÔ\82Ì\8fÚ\8d×\82ð <file> \82Ö\8fo\97Í\82·\82é"
+
+msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo"
+msgstr "-i <viminfo>\t\t.viminfo\82Ì\91ã\82í\82è\82É <viminfo> \82ð\8eg\82¤"
+
+msgid "-h or --help\tPrint Help (this message) and exit"
+msgstr "-h or --help\t\83w\83\8b\83v(\82±\82Ì\83\81\83b\83Z\81[\83W)\82ð\95\\\8e¦\82µ\8fI\97¹\82·\82é"
+
+msgid "--version\t\tPrint version information and exit"
+msgstr "--version\t\t\83o\81[\83W\83\87\83\93\8fî\95ñ\82ð\95\\\8e¦\82µ\8fI\97¹\82·\82é"
msgid ""
"\n"
-"If you entered a new crypt key but did not write the text file,"
+"Arguments recognised by gvim (Motif version):\n"
msgstr ""
"\n"
-"\90V\82µ\82¢\88Ã\8d\86\83L\81[\82ð\93ü\97Í\82µ\82½\82 \82Æ\82É\83e\83L\83X\83g\83t\83@\83C\83\8b\82ð\95Û\91¶\82µ\82Ä\82¢\82È\82¢\8fê\8d\87\82Í,"
+"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(Motif\83o\81[\83W\83\87\83\93):\n"
msgid ""
"\n"
-"enter the new crypt key."
+"Arguments recognised by gvim (neXtaw version):\n"
msgstr ""
"\n"
-"\90V\82µ\82¢\88Ã\8d\86\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢."
+"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(neXtaw\83o\81[\83W\83\87\83\93):\n"
msgid ""
"\n"
-"If you wrote the text file after changing the crypt key press enter"
-msgstr ""
-"\n"
-"\88Ã\8d\86\83L\81[\82ð\95Ï\82¦\82½\82 \82Æ\82É\83e\83L\83X\83g\83t\83@\83C\83\8b\82ð\95Û\91¶\82µ\82½\8fê\8d\87\82Í, \83e\83L\83X\83g\83t\83@\83C\83\8b\82Æ"
-
-msgid ""
-"\n"
-"to use the same key for text file and swap file"
+"Arguments recognised by gvim (Athena version):\n"
msgstr ""
"\n"
-"\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82É\93¯\82¶\88Ã\8d\86\83L\81[\82ð\8eg\82¤\82½\82ß\82Éenter\82¾\82¯\82ð\89\9f\82µ\82Ä\82\82¾\82³\82¢."
+"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(Athena\83o\81[\83W\83\87\83\93):\n"
-#, c-format
-msgid "E309: Unable to read block 1 from %s"
-msgstr "E309: %s \82©\82ç\83u\83\8d\83b\83N 1 \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
+msgid "-display <display>\tRun vim on <display>"
+msgstr "-display <display>\t<display> \82Åvim\82ð\8eÀ\8ds\82·\82é"
-msgid "???MANY LINES MISSING"
-msgstr "???\91½\82\82Ì\8ds\82ª\8e¸\82í\82ê\82Ä\82¢\82Ü\82·"
+msgid "-iconic\t\tStart vim iconified"
+msgstr "-iconic\t\t\8dÅ\8f¬\89»\82µ\82½\8fó\91Ô\82Åvim\82ð\8bN\93®\82·\82é"
-msgid "???LINE COUNT WRONG"
-msgstr "???\8ds\90\94\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
+msgid "-background <color>\tUse <color> for the background (also: -bg)"
+msgstr "-background <color>\t\94w\8ci\90F\82É <color> \82ð\8eg\82¤(\93¯\8b`: -bg)"
-msgid "???EMPTY BLOCK"
-msgstr "???\83u\83\8d\83b\83N\82ª\8bó\82Å\82·"
+msgid "-foreground <color>\tUse <color> for normal text (also: -fg)"
+msgstr "-foreground <color>\t\91O\8ci\90F\82É <color> \82ð\8eg\82¤(\93¯\8b`: -fg)"
-msgid "???LINES MISSING"
-msgstr "???\8ds\82ª\8e¸\82í\82ê\82Ä\82¢\82Ü\82·"
+msgid "-font <font>\t\tUse <font> for normal text (also: -fn)"
+msgstr "-font <font>\t\t\83e\83L\83X\83g\95\\\8e¦\82É <font> \82ð\8eg\82¤(\93¯\8b`: -fn)"
-#, c-format
-msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
-msgstr "E310: \83u\83\8d\83b\83N 1 \82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·(%s \82ª.swp\83t\83@\83C\83\8b\82Å\82È\82¢?)"
+msgid "-boldfont <font>\tUse <font> for bold text"
+msgstr "-boldfont <font>\t\91¾\8e\9a\82É <font> \82ð\8eg\82¤"
-msgid "???BLOCK MISSING"
-msgstr "???\83u\83\8d\83b\83N\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "-italicfont <font>\tUse <font> for italic text"
+msgstr "-italicfont <for>\t\8eÎ\91Ì\8e\9a\82É <font> \82ð\8eg\82¤"
-msgid "??? from here until ???END lines may be messed up"
-msgstr "??? \82±\82±\82©\82ç???END\82Ü\82Å\82Ì\8ds\82ª\94j\89ó\82³\82ê\82Ä\82¢\82é\82æ\82¤\82Å\82·"
+msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"
+msgstr "-geometry <geom>\t\8f\89\8aú\94z\92u\82É <geom> \82ð\8eg\82¤(\93¯\8b`: -geom)"
-msgid "??? from here until ???END lines may have been inserted/deleted"
-msgstr "??? \82±\82±\82©\82ç??END\82Ü\82Å\82Ì\8ds\82ª\91}\93ü\82©\8dí\8f\9c\82³\82ê\82½\82æ\82¤\82Å\82·"
+msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)"
+msgstr "-borderwidth <width>\t\8b«\8aE\82Ì\95\9d\82ð <width> \82É\82·\82é(\93¯\8b`: -bw)"
-msgid "???END"
-msgstr "???END"
+msgid "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"
+msgstr ""
+"-scrollbarwidth <width> \83X\83N\83\8d\81[\83\8b\83o\81[\82Ì\95\9d\82ð <width> \82É\82·\82é(\93¯\8b`: -sw)"
-msgid "E311: Recovery Interrupted"
-msgstr "E311: \83\8a\83J\83o\83\8a\82ª\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½"
+msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"
+msgstr "-menuheight <height>\t\83\81\83j\83\85\81[\83o\81[\82Ì\8d\82\82³\82ð <height> \82É\82·\82é(\93¯\8b`: -mh)"
-msgid ""
-"E312: Errors detected while recovering; look for lines starting with ???"
-msgstr ""
-"E312: \83\8a\83J\83o\83\8a\82Ì\8dÅ\92\86\82É\83G\83\89\81[\82ª\8c\9f\8fo\82³\82ê\82Ü\82µ\82½; ???\82Å\8en\82Ü\82é\8ds\82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢"
+msgid "-reverse\t\tUse reverse video (also: -rv)"
+msgstr "-reverse\t\t\94½\93]\89f\91\9c\82ð\8eg\97p\82·\82é(\93¯\8b`: -rv)"
-msgid "See \":help E312\" for more information."
-msgstr "\8fÚ\8d×\82Í \":help E312\" \82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢"
+msgid "+reverse\t\tDon't use reverse video (also: +rv)"
+msgstr "+reverse\t\t\94½\93]\89f\91\9c\82ð\8eg\97p\82µ\82È\82¢(\93¯\8b`: +rv)"
-msgid "Recovery completed. You should check if everything is OK."
-msgstr "\83\8a\83J\83o\83\8a\82ª\8fI\97¹\82µ\82Ü\82µ\82½. \91S\82Ä\82ª\90³\82µ\82¢\82©\83`\83F\83b\83N\82µ\82Ä\82\82¾\82³\82¢."
+msgid "-xrm <resource>\tSet the specified resource"
+msgstr "-xrm <resource>\t\93Á\92è\82Ì\83\8a\83\\\81[\83X\82ð\8eg\97p\82·\82é"
msgid ""
"\n"
-"(You might want to write out this file under another name\n"
+"Arguments recognised by gvim (GTK+ version):\n"
msgstr ""
"\n"
-"(\95Ï\8dX\82ð\83`\83F\83b\83N\82·\82é\82½\82ß\82É, \82±\82Ì\83t\83@\83C\83\8b\82ð\95Ê\82Ì\96¼\91O\82Å\95Û\91¶\82µ\82½\8fã\82Å\n"
-
-msgid "and run diff with the original file to check for changes)"
-msgstr "\8c´\96{\83t\83@\83C\83\8b\82Æ\82Ì diff \82ð\8eÀ\8ds\82·\82é\82Æ\97Ç\82¢\82Å\82µ\82å\82¤)"
+"gvim\82É\82æ\82Á\82Ä\89ð\8eß\82³\82ê\82é\88ø\90\94(GTK+\83o\81[\83W\83\87\83\93):\n"
-msgid "Recovery completed. Buffer contents equals file contents."
-msgstr "\95\9c\8c³\8a®\97¹. \83o\83b\83t\83@\82Ì\93à\97e\82Í\83t\83@\83C\83\8b\82Æ\93¯\82¶\82É\82È\82è\82Ü\82µ\82½."
+msgid "-display <display>\tRun vim on <display> (also: --display)"
+msgstr "-display <display>\t<display> \82Åvim\82ð\8eÀ\8ds\82·\82é(\93¯\8b`: --display)"
-msgid ""
-"\n"
-"You may want to delete the .swp file now.\n"
-"\n"
-msgstr ""
-"\n"
-"\82»\82ê\82©\82ç.swp\83t\83@\83C\83\8b\82ð\8dí\8f\9c\82µ\82Ä\82\82¾\82³\82¢\n"
-"\n"
+msgid "--role <role>\tSet a unique role to identify the main window"
+msgstr "--role <role>\t\83\81\83C\83\93\83E\83B\83\93\83h\83E\82ð\8e¯\95Ê\82·\82é\88ê\88Ó\82È\96ð\8a\84(role)\82ð\90Ý\92è\82·\82é"
-msgid "Using crypt key from swap file for the text file.\n"
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82©\82ç\8eæ\93¾\82µ\82½\88Ã\8d\86\83L\81[\82ð\83e\83L\83X\83g\83t\83@\83C\83\8b\82É\8eg\82¢\82Ü\82·.\n"
+msgid "--socketid <xid>\tOpen Vim inside another GTK widget"
+msgstr "--socketid <xid>\t\88Ù\82È\82éGTK widget\82ÅVim\82ð\8aJ\82"
-#. use msg() to start the scrolling properly
-msgid "Swap files found:"
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\95¡\90\94\8c©\82Â\82©\82è\82Ü\82µ\82½:"
+msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout"
+msgstr "--echo-wid\t\t\83E\83B\83\93\83h\83EID\82ð\95W\8f\80\8fo\97Í\82É\8fo\97Í\82·\82é"
-msgid " In current directory:\n"
-msgstr " \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a:\n"
+msgid "-P <parent title>\tOpen Vim inside parent application"
+msgstr "-P <\90e\82Ì\83^\83C\83g\83\8b>\tVim\82ð\90e\83A\83v\83\8a\83P\81[\83V\83\87\83\93\82Ì\92\86\82Å\8bN\93®\82·\82é"
-msgid " Using specified name:\n"
-msgstr " \82 \82é\96¼\91O\82ð\8eg\97p\92\86:\n"
+msgid "--windowid <HWND>\tOpen Vim inside another win32 widget"
+msgstr "--windowid <HWND>\t\88Ù\82È\82éWin32 widget\82Ì\93à\95\94\82ÉVim\82ð\8aJ\82"
-msgid " In directory "
-msgstr " \83f\83B\83\8c\83N\83g\83\8a "
+msgid "No display"
+msgstr "\83f\83B\83X\83v\83\8c\83C\82ª\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid " -- none --\n"
-msgstr " -- \82È\82µ --\n"
+#. Failed to send, abort.
+msgid ": Send failed.\n"
+msgstr ": \91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
-msgid " owned by: "
-msgstr " \8f\8a\97L\8eÒ: "
+#. Let vim start normally.
+msgid ": Send failed. Trying to execute locally\n"
+msgstr ": \91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½. \83\8d\81[\83J\83\8b\82Å\82Ì\8eÀ\8ds\82ð\8e\8e\82Ý\82Ä\82¢\82Ü\82·\n"
-msgid " dated: "
-msgstr " \93ú\95t: "
+#, c-format
+msgid "%d of %d edited"
+msgstr "%d \8c (%d \8cÂ\92\86) \82Ì\83t\83@\83C\83\8b\82ð\95Ò\8fW\82µ\82Ü\82µ\82½"
-msgid " dated: "
-msgstr " \93ú\95t: "
+msgid "No display: Send expression failed.\n"
+msgstr "\83f\83B\83X\83v\83\8c\83C\82ª\82 \82è\82Ü\82¹\82ñ: \8e®\82Ì\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
-msgid " [from Vim version 3.0]"
-msgstr " [from Vim version 3.0]"
+msgid ": Send expression failed.\n"
+msgstr ": \8e®\82Ì\91\97\90M\82É\8e¸\94s\82µ\82Ü\82µ\82½.\n"
-msgid " [does not look like a Vim swap file]"
-msgstr " [Vim\82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·]"
+msgid "No marks set"
+msgstr "\83}\81[\83N\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid " file name: "
-msgstr " \83t\83@\83C\83\8b\96¼: "
+#, c-format
+msgid "E283: No marks matching \"%s\""
+msgstr "E283: \"%s\" \82É\8aY\93\96\82·\82é\83}\81[\83N\82ª\82 \82è\82Ü\82¹\82ñ"
+#. Highlight title
msgid ""
"\n"
-" modified: "
+"mark line col file/text"
msgstr ""
"\n"
-" \95Ï\8dX\8fó\91Ô: "
-
-msgid "YES"
-msgstr "\82 \82è"
-
-msgid "no"
-msgstr "\82È\82µ"
+"mark \8ds \97ñ \83t\83@\83C\83\8b/\83e\83L\83X\83g"
+#. Highlight title
msgid ""
"\n"
-" user name: "
+" jump line col file/text"
msgstr ""
"\n"
-" \83\86\81[\83U\96¼: "
-
-msgid " host name: "
-msgstr " \83z\83X\83g\96¼: "
+" jump \8ds \97ñ \83t\83@\83C\83\8b/\83e\83L\83X\83g"
+#. Highlight title
msgid ""
"\n"
-" host name: "
+"change line col text"
msgstr ""
"\n"
-" \83z\83X\83g\96¼: "
+"\95Ï\8dX \8ds \97ñ \83e\83L\83X\83g"
msgid ""
"\n"
-" process ID: "
+"# File marks:\n"
msgstr ""
"\n"
-" \83v\83\8d\83Z\83XID: "
-
-msgid " (still running)"
-msgstr " (\82Ü\82¾\8eÀ\8ds\92\86)"
+"# \83t\83@\83C\83\8b\83}\81[\83N:\n"
+#. Write the jumplist with -'
msgid ""
"\n"
-" [not usable with this version of Vim]"
+"# Jumplist (newest first):\n"
msgstr ""
"\n"
-" [\82±\82ÌVim\83o\81[\83W\83\87\83\93\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ]"
+"# \83W\83\83\83\93\83v\83\8a\83X\83g (\90V\82µ\82¢\82à\82Ì\82ª\90æ):\n"
msgid ""
"\n"
-" [not usable on this computer]"
+"# History of marks within files (newest to oldest):\n"
msgstr ""
"\n"
-" [\82±\82Ì\83R\83\93\83s\83\85\81[\83^\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ]"
+"# \83t\83@\83C\83\8b\93à\83}\81[\83N\82Ì\97\9a\97ð (\90V\82µ\82¢\82à\82Ì\82©\82ç\8cÃ\82¢\82à\82Ì):\n"
-msgid " [cannot be read]"
-msgstr " [\93Ç\8d\9e\82ß\82Ü\82¹\82ñ]"
+msgid "Missing '>'"
+msgstr "'>' \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid " [cannot be opened]"
-msgstr " [\8aJ\82¯\82Ü\82¹\82ñ]"
+msgid "E543: Not a valid codepage"
+msgstr "E543: \96³\8cø\82È\83R\81[\83h\83y\81[\83W\82Å\82·"
-msgid "E313: Cannot preserve, there is no swap file"
-msgstr "E313: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\96³\82¢\82Ì\82Å\88Û\8e\9d\82Å\82«\82Ü\82¹\82ñ"
+msgid "E284: Cannot set IC values"
+msgstr "E284: IC\82Ì\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
-msgid "File preserved"
-msgstr "\83t\83@\83C\83\8b\82ª\88Û\8e\9d\82³\82ê\82Ü\82·"
+msgid "E285: Failed to create input context"
+msgstr "E285: \83C\83\93\83v\83b\83g\83R\83\93\83e\83L\83X\83g\82Ì\8dì\90¬\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "E314: Preserve failed"
-msgstr "E314: \88Û\8e\9d\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "E286: Failed to open input method"
+msgstr "E286: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Ì\83I\81[\83v\83\93\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-#, c-format
-msgid "E315: ml_get: invalid lnum: %ld"
-msgstr "E315: ml_get: \96³\8cø\82Èlnum\82Å\82·: %ld"
+msgid "E287: Warning: Could not set destroy callback to IM"
+msgstr "E287: \8cx\8d\90: IM\82Ì\94j\89ó\83R\81[\83\8b\83o\83b\83N\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
-#, c-format
-msgid "E316: ml_get: cannot find line %ld"
-msgstr "E316: ml_get: \8ds %ld \82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+msgid "E288: input method doesn't support any style"
+msgstr "E288: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Í\82Ç\82ñ\82È\83X\83^\83C\83\8b\82à\83T\83|\81[\83g\82µ\82Ü\82¹\82ñ"
-msgid "E317: pointer block id wrong 3"
-msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 3"
+msgid "E289: input method doesn't support my preedit type"
+msgstr "E289: \83C\83\93\83v\83b\83g\83\81\83\\\83b\83h\82Í my preedit type \82ð\83T\83|\81[\83g\82µ\82Ü\82¹\82ñ"
-msgid "stack_idx should be 0"
-msgstr "stack_idx \82Í 0 \82Å\82 \82é\82×\82«\82Å\82·"
+msgid "E293: block was not locked"
+msgstr "E293: \83u\83\8d\83b\83N\82ª\83\8d\83b\83N\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "E318: Updated too many blocks?"
-msgstr "E318: \8dX\90V\82³\82ê\82½\83u\83\8d\83b\83N\82ª\91½\89ß\82¬\82é\82©\82à?"
+msgid "E294: Seek error in swap file read"
+msgstr "E294: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\93Ç\8d\9e\8e\9e\82É\83V\81[\83N\83G\83\89\81[\82Å\82·"
-msgid "E317: pointer block id wrong 4"
-msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 4"
+msgid "E295: Read error in swap file"
+msgstr "E295: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
-msgid "deleted block 1?"
-msgstr "\83u\83\8d\83b\83N 1 \82Í\8fÁ\82³\82ê\82½?"
+msgid "E296: Seek error in swap file write"
+msgstr "E296: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\8f\91\8d\9e\82Ý\8e\9e\82É\83V\81[\83N\83G\83\89\81[\82Å\82·"
-#, c-format
-msgid "E320: Cannot find line %ld"
-msgstr "E320: \8ds %ld \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "E297: Write error in swap file"
+msgstr "E297: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\8f\91\8d\9e\82Ý\83G\83\89\81[\82Å\82·"
-msgid "E317: pointer block id wrong"
-msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
+msgid "E300: Swap file already exists (symlink attack?)"
+msgstr "E300: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82· (symlink\82É\82æ\82é\8dU\8c\82?)"
-msgid "pe_line_count is zero"
-msgstr "pe_line_count \82ª\83[\83\8d\82Å\82·"
+msgid "E298: Didn't get block nr 0?"
+msgstr "E298: \83u\83\8d\83b\83N 0 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
-#, c-format
-msgid "E322: line number out of range: %ld past the end"
-msgstr "E322: \8ds\94Ô\8d\86\82ª\94Í\88Í\8aO\82Å\82·: %ld \92´\82¦\82Ä\82¢\82Ü\82·"
+msgid "E298: Didn't get block nr 1?"
+msgstr "E298: \83u\83\8d\83b\83N 1 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
-#, c-format
-msgid "E323: line count wrong in block %ld"
-msgstr "E323: \83u\83\8d\83b\83N %ld \82Ì\8ds\83J\83E\83\93\83g\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
+msgid "E298: Didn't get block nr 2?"
+msgstr "E298: \83u\83\8d\83b\83N 2 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ?"
-msgid "Stack size increases"
-msgstr "\83X\83^\83b\83N\83T\83C\83Y\82ª\91\9d\82¦\82Ü\82·"
+msgid "E843: Error while updating swap file crypt"
+msgstr "E843: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\88Ã\8d\86\82ð\8dX\90V\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½"
-msgid "E317: pointer block id wrong 2"
-msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 2"
+#. could not (re)open the swap file, what can we do????
+msgid "E301: Oops, lost the swap file!!!"
+msgstr "E301: \82¨\82Á\82Æ, \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8e¸\82í\82ê\82Ü\82µ\82½!!!"
+
+msgid "E302: Could not rename swap file"
+msgstr "E302: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\96¼\91O\82ð\95Ï\82¦\82ç\82ê\82Ü\82¹\82ñ"
#, c-format
-msgid "E773: Symlink loop for \"%s\""
-msgstr "E773: \"%s\" \82Ì\83V\83\93\83{\83\8a\83b\83N\83\8a\83\93\83N\82ª\83\8b\81[\83v\82É\82È\82Á\82Ä\82¢\82Ü\82·"
+msgid "E303: Unable to open swap file for \"%s\", recovery impossible"
+msgstr "E303: \"%s\" \82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8aJ\82¯\82È\82¢\82Ì\82Å\83\8a\83J\83o\83\8a\82Í\95s\89Â\94\\\82Å\82·"
-msgid "E325: ATTENTION"
-msgstr "E325: \92\8d\88Ó"
+msgid "E304: ml_upd_block0(): Didn't get block 0??"
+msgstr "E304: ml_upd_block0(): \83u\83\8d\83b\83N 0 \82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½??"
-msgid ""
-"\n"
-"Found a swap file by the name \""
-msgstr ""
-"\n"
-"\8e\9f\82Ì\96¼\91O\82Å\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8c©\82Â\82¯\82Ü\82µ\82½ \""
+#, c-format
+msgid "E305: No swap file found for %s"
+msgstr "E305: %s \82É\82Í\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid "While opening file \""
-msgstr "\8e\9f\82Ì\83t\83@\83C\83\8b\82ð\8aJ\82¢\82Ä\82¢\82é\8dÅ\92\86 \""
+msgid "Enter number of swap file to use (0 to quit): "
+msgstr "\8eg\97p\82·\82é\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\94Ô\8d\86\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢(0 \82Å\8fI\97¹): "
-msgid " NEWER than swap file!\n"
-msgstr " \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82æ\82è\82à\90V\82µ\82¢\82Å\82·!\n"
+#, c-format
+msgid "E306: Cannot open %s"
+msgstr "E306: %s \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+
+msgid "Unable to read block 0 from "
+msgstr "\83u\83\8d\83b\83N 0 \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ "
-#. Some of these messages are long to allow translation to
-#. * other languages.
msgid ""
"\n"
-"(1) Another program may be editing the same file. If this is the case,\n"
-" be careful not to end up with two different instances of the same\n"
-" file when making changes."
+"Maybe no changes were made or Vim did not update the swap file."
msgstr ""
"\n"
-"(1) \95Ê\82Ì\83v\83\8d\83O\83\89\83\80\82ª\93¯\82¶\83t\83@\83C\83\8b\82ð\95Ò\8fW\82µ\82Ä\82¢\82é\82©\82à\82µ\82ê\82Ü\82¹\82ñ.\n"
-" \82±\82Ì\8fê\8d\87\82É\82Í, \95Ï\8dX\82ð\82µ\82½\8dÛ\82É\8dÅ\8fI\93I\82É, \93¯\82¶\83t\83@\83C\83\8b\82Ì\88Ù\82È\82é\n"
-" 2\82Â\82Ì\83C\83\93\83X\83^\83\93\83X\82ª\82Å\82«\82Ä\82µ\82Ü\82¤\82±\82Æ\82É\92\8d\88Ó\82µ\82Ä\82\82¾\82³\82¢."
-
-msgid " Quit, or continue with caution.\n"
-msgstr " \8fI\97¹\82·\82é\82©, \92\8d\88Ó\82µ\82È\82ª\82ç\91±\82¯\82Ä\82\82¾\82³\82¢.\n"
-
-msgid "(2) An edit session for this file crashed.\n"
-msgstr "(2) \82±\82Ì\83t\83@\83C\83\8b\82Ì\95Ò\8fW\83Z\83b\83V\83\87\83\93\82ª\83N\83\89\83b\83V\83\85\82µ\82½.\n"
-
-msgid " If this is the case, use \":recover\" or \"vim -r "
-msgstr " \82±\82Ì\8fê\8d\87\82É\82Í \":recover\" \82© \"vim -r "
-
-msgid ""
-"\"\n"
-" to recover the changes (see \":help recovery\").\n"
-msgstr ""
-"\"\n"
-" \82ð\8eg\97p\82µ\82Ä\95Ï\8dX\82ð\83\8a\83J\83o\81[\82µ\82Ü\82·(\":help recover\" \82ð\8eQ\8fÆ).\n"
-
-msgid " If you did this already, delete the swap file \""
-msgstr " \8aù\82É\82±\82ê\82ð\8ds\82È\82Á\82½\82Ì\82È\82ç\82Î, \83X\83\8f\83b\83v\83t\83@\83C\83\8b \""
+"\8b°\82ç\82\95Ï\8dX\82ª\82³\82ê\82Ä\82¢\82È\82¢\82©Vim\82ª\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8dX\90V\82µ\82Ä\82¢\82Ü\82¹\82ñ."
-msgid ""
-"\"\n"
-" to avoid this message.\n"
-msgstr ""
-"\"\n"
-" \82ð\8fÁ\82¹\82Î\82±\82Ì\83\81\83b\83Z\81[\83W\82ð\89ñ\94ð\82Å\82«\82Ü\82·.\n"
+msgid " cannot be used with this version of Vim.\n"
+msgstr " Vim\82Ì\82±\82Ì\83o\81[\83W\83\87\83\93\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ.\n"
-msgid "Swap file \""
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b \""
+msgid "Use Vim version 3.0.\n"
+msgstr "Vim\82Ì\83o\81[\83W\83\87\83\933.0\82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢.\n"
-msgid "\" already exists!"
-msgstr "\" \82ª\8aù\82É\82 \82è\82Ü\82·!"
+#, c-format
+msgid "E307: %s does not look like a Vim swap file"
+msgstr "E307: %s \82ÍVim\82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·"
-msgid "VIM - ATTENTION"
-msgstr "VIM - \92\8d\88Ó"
+msgid " cannot be used on this computer.\n"
+msgstr " \82±\82Ì\83R\83\93\83s\83\85\81[\83^\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ.\n"
-msgid "Swap file already exists!"
-msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82·!"
+msgid "The file was created on "
+msgstr "\82±\82Ì\83t\83@\83C\83\8b\82Í\8e\9f\82Ì\8fê\8f\8a\82Å\8dì\82ç\82ê\82Ü\82µ\82½ "
msgid ""
-"&Open Read-Only\n"
-"&Edit anyway\n"
-"&Recover\n"
-"&Quit\n"
-"&Abort"
+",\n"
+"or the file has been damaged."
msgstr ""
-"\93Ç\8d\9e\90ê\97p\82Å\8aJ\82(&O)\n"
-"\82Æ\82É\82©\82\95Ò\8fW\82·\82é(&E)\n"
-"\95\9c\8a\88\82³\82¹\82é(&R)\n"
-"\8fI\97¹\82·\82é(&Q)\n"
-"\92\86\8e~\82·\82é(&A)"
+",\n"
+"\82à\82µ\82\82Í\83t\83@\83C\83\8b\82ª\91¹\8f\9d\82µ\82Ä\82¢\82Ü\82·."
+#, c-format
msgid ""
-"&Open Read-Only\n"
-"&Edit anyway\n"
-"&Recover\n"
-"&Delete it\n"
-"&Quit\n"
-"&Abort"
+"E833: %s is encrypted and this version of Vim does not support encryption"
msgstr ""
-"\93Ç\8d\9e\90ê\97p\82Å\8aJ\82(&O)\n"
-"\82Æ\82É\82©\82\95Ò\8fW\82·\82é(&E)\n"
-"\95\9c\8a\88\82³\82¹\82é(&R)\n"
-"\8dí\8f\9c\82·\82é(&D)\n"
-"\8fI\97¹\82·\82é(&Q)\n"
-"\92\86\8e~\82·\82é(&A)"
-
-msgid "E326: Too many swap files found"
-msgstr "E326: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\91½\90\94\8c©\82Â\82©\82è\82Ü\82µ\82½"
-
-msgid "E327: Part of menu-item path is not sub-menu"
-msgstr "E327: \83\81\83j\83\85\81[\83A\83C\83e\83\80\82Ì\83p\83X\82Ì\95\94\95ª\82ª\83T\83u\83\81\83j\83\85\81[\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+"E833: %s \82Í\82±\82Ì\83o\81[\83W\83\87\83\93\82ÌVim\82Å\83T\83|\81[\83g\82µ\82Ä\82¢\82È\82¢\8c`\8e®\82Å\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·"
-msgid "E328: Menu only exists in another mode"
-msgstr "E328: \83\81\83j\83\85\81[\82Í\91¼\82Ì\83\82\81[\83h\82É\82¾\82¯\82 \82è\82Ü\82·"
+msgid " has been damaged (page size is smaller than minimum value).\n"
+msgstr " \82Í\91¹\8f\9d\82µ\82Ä\82¢\82Ü\82· (\83y\81[\83W\83T\83C\83Y\82ª\8dÅ\8f¬\92l\82ð\89º\89ñ\82Á\82Ä\82¢\82Ü\82·).\n"
#, c-format
-msgid "E329: No menu \"%s\""
-msgstr "E329: \"%s\" \82Æ\82¢\82¤\83\81\83j\83\85\81[\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "Using swap file \"%s\""
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b \"%s\" \82ð\8eg\97p\92\86"
-#. Only a mnemonic or accelerator is not valid.
-msgid "E792: Empty menu name"
-msgstr "E792: \83\81\83j\83\85\81[\96¼\82ª\8bó\82Å\82·"
+#, c-format
+msgid "Original file \"%s\""
+msgstr "\8c´\96{\83t\83@\83C\83\8b \"%s\""
-msgid "E330: Menu path must not lead to a sub-menu"
-msgstr "E330: \83\81\83j\83\85\81[\83p\83X\82Í\83T\83u\83\81\83j\83\85\81[\82ð\90¶\82¶\82é\82×\82«\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E308: Warning: Original file may have been changed"
+msgstr "E308: \8cx\8d\90: \8c´\96{\83t\83@\83C\83\8b\82ª\95Ï\8dX\82³\82ê\82Ä\82¢\82Ü\82·"
-msgid "E331: Must not add menu items directly to menu bar"
-msgstr "E331: \83\81\83j\83\85\81[\83o\81[\82É\82Í\92¼\90Ú\83\81\83j\83\85\81[\83A\83C\83e\83\80\82ð\92Ç\89Á\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "Swap file is encrypted: \"%s\""
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Í\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·: \"%s\""
-msgid "E332: Separator cannot be part of a menu path"
-msgstr "E332: \8bæ\90Ø\82è\82Í\83\81\83j\83\85\81[\83p\83X\82Ì\88ê\95\94\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"If you entered a new crypt key but did not write the text file,"
+msgstr ""
+"\n"
+"\90V\82µ\82¢\88Ã\8d\86\83L\81[\82ð\93ü\97Í\82µ\82½\82 \82Æ\82É\83e\83L\83X\83g\83t\83@\83C\83\8b\82ð\95Û\91¶\82µ\82Ä\82¢\82È\82¢\8fê\8d\87\82Í,"
-#. Now we have found the matching menu, and we list the mappings
-#. Highlight title
msgid ""
"\n"
-"--- Menus ---"
+"enter the new crypt key."
msgstr ""
"\n"
-"--- \83\81\83j\83\85\81[ ---"
+"\90V\82µ\82¢\88Ã\8d\86\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢."
-msgid "Tear off this menu"
-msgstr "\82±\82Ì\83\81\83j\83\85\81[\82ð\90Ø\82è\8eæ\82é"
+msgid ""
+"\n"
+"If you wrote the text file after changing the crypt key press enter"
+msgstr ""
+"\n"
+"\88Ã\8d\86\83L\81[\82ð\95Ï\82¦\82½\82 \82Æ\82É\83e\83L\83X\83g\83t\83@\83C\83\8b\82ð\95Û\91¶\82µ\82½\8fê\8d\87\82Í, \83e\83L\83X\83g\83t\83@\83C\83\8b\82Æ"
-msgid "E333: Menu path must lead to a menu item"
-msgstr "E333: \83\81\83j\83\85\81[\83p\83X\82Í\83\81\83j\83\85\81[\83A\83C\83e\83\80\82ð\90¶\82¶\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"to use the same key for text file and swap file"
+msgstr ""
+"\n"
+"\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82É\93¯\82¶\88Ã\8d\86\83L\81[\82ð\8eg\82¤\82½\82ß\82Éenter\82¾\82¯\82ð\89\9f\82µ\82Ä\82\82¾\82³\82¢."
#, c-format
-msgid "E334: Menu not found: %s"
-msgstr "E334: \83\81\83j\83\85\81[\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
+msgid "E309: Unable to read block 1 from %s"
+msgstr "E309: %s \82©\82ç\83u\83\8d\83b\83N 1 \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
-#, c-format
-msgid "E335: Menu not defined for %s mode"
-msgstr "E335: %s \82É\82Í\83\81\83j\83\85\81[\82ª\92è\8b`\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "???MANY LINES MISSING"
+msgstr "???\91½\82\82Ì\8ds\82ª\8e¸\82í\82ê\82Ä\82¢\82Ü\82·"
-msgid "E336: Menu path must lead to a sub-menu"
-msgstr "E336: \83\81\83j\83\85\81[\83p\83X\82Í\83T\83u\83\81\83j\83\85\81[\82ð\90¶\82¶\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
+msgid "???LINE COUNT WRONG"
+msgstr "???\8ds\90\94\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
-msgid "E337: Menu not found - check menu names"
-msgstr "E337: \83\81\83j\83\85\81[\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ - \83\81\83j\83\85\81[\96¼\82ð\8am\94F\82µ\82Ä\82\82¾\82³\82¢"
+msgid "???EMPTY BLOCK"
+msgstr "???\83u\83\8d\83b\83N\82ª\8bó\82Å\82·"
-#, c-format
-msgid "Error detected while processing %s:"
-msgstr "%s \82Ì\8f\88\97\9d\92\86\82É\83G\83\89\81[\82ª\8c\9f\8fo\82³\82ê\82Ü\82µ\82½:"
+msgid "???LINES MISSING"
+msgstr "???\8ds\82ª\8e¸\82í\82ê\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "line %4ld:"
-msgstr "\8ds %4ld:"
+msgid "E310: Block 1 ID wrong (%s not a .swp file?)"
+msgstr "E310: \83u\83\8d\83b\83N 1 \82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·(%s \82ª.swp\83t\83@\83C\83\8b\82Å\82È\82¢?)"
-#, c-format
-msgid "E354: Invalid register name: '%s'"
-msgstr "E354: \96³\8cø\82È\83\8c\83W\83X\83^\96¼: '%s'"
+msgid "???BLOCK MISSING"
+msgstr "???\83u\83\8d\83b\83N\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
-msgstr "\93ú\96{\8cê\83\81\83b\83Z\81[\83W\96|\96ó/\8aÄ\8fC: \91º\89ª \91¾\98Y <koron.kaoriya@gmail.com>"
+msgid "??? from here until ???END lines may be messed up"
+msgstr "??? \82±\82±\82©\82ç ???END \82Ü\82Å\82Ì\8ds\82ª\94j\89ó\82³\82ê\82Ä\82¢\82é\82æ\82¤\82Å\82·"
-msgid "Interrupt: "
-msgstr "\8a\84\8d\9e\82Ý: "
+msgid "??? from here until ???END lines may have been inserted/deleted"
+msgstr "??? \82±\82±\82©\82ç ???END \82Ü\82Å\82Ì\8ds\82ª\91}\93ü\82©\8dí\8f\9c\82³\82ê\82½\82æ\82¤\82Å\82·"
-msgid "Press ENTER or type command to continue"
-msgstr "\91±\82¯\82é\82É\82ÍENTER\82ð\89\9f\82·\82©\83R\83}\83\93\83h\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢"
+msgid "???END"
+msgstr "???END"
-#, c-format
-msgid "%s line %ld"
-msgstr "%s \8ds %ld"
+msgid "E311: Recovery Interrupted"
+msgstr "E311: \83\8a\83J\83o\83\8a\82ª\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½"
-msgid "-- More --"
-msgstr "-- \8cp\91± --"
+msgid ""
+"E312: Errors detected while recovering; look for lines starting with ???"
+msgstr ""
+"E312: \83\8a\83J\83o\83\8a\82Ì\8dÅ\92\86\82É\83G\83\89\81[\82ª\8c\9f\8fo\82³\82ê\82Ü\82µ\82½; ???\82Å\8en\82Ü\82é\8ds\82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢"
-msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "
-msgstr " SPACE/d/j: \89æ\96Ê/\83y\81[\83W/\8ds \89º, b/uk: \8fã, q: \8fI\97¹ "
+msgid "See \":help E312\" for more information."
+msgstr "\8fÚ\8d×\82Í \":help E312\" \82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢"
-msgid "Question"
-msgstr "\8e¿\96â"
+msgid "Recovery completed. You should check if everything is OK."
+msgstr "\83\8a\83J\83o\83\8a\82ª\8fI\97¹\82µ\82Ü\82µ\82½. \91S\82Ä\82ª\90³\82µ\82¢\82©\83`\83F\83b\83N\82µ\82Ä\82\82¾\82³\82¢."
msgid ""
-"&Yes\n"
-"&No"
+"\n"
+"(You might want to write out this file under another name\n"
msgstr ""
-"\82Í\82¢(&Y)\n"
-"\82¢\82¢\82¦(&N)"
+"\n"
+"(\95Ï\8dX\82ð\83`\83F\83b\83N\82·\82é\82½\82ß\82É, \82±\82Ì\83t\83@\83C\83\8b\82ð\95Ê\82Ì\96¼\91O\82Å\95Û\91¶\82µ\82½\8fã\82Å\n"
+
+msgid "and run diff with the original file to check for changes)"
+msgstr "\8c´\96{\83t\83@\83C\83\8b\82Æ\82Ì diff \82ð\8eÀ\8ds\82·\82é\82Æ\97Ç\82¢\82Å\82µ\82å\82¤)"
+
+msgid "Recovery completed. Buffer contents equals file contents."
+msgstr "\95\9c\8c³\8a®\97¹. \83o\83b\83t\83@\82Ì\93à\97e\82Í\83t\83@\83C\83\8b\82Æ\93¯\82¶\82É\82È\82è\82Ü\82µ\82½."
msgid ""
-"&Yes\n"
-"&No\n"
-"Save &All\n"
-"&Discard All\n"
-"&Cancel"
+"\n"
+"You may want to delete the .swp file now.\n"
+"\n"
msgstr ""
-"\82Í\82¢(&Y)\n"
-"\82¢\82¢\82¦(&N)\n"
-"\91S\82Ä\95Û\91¶(&A)\n"
-"\91S\82Ä\95ú\8aü(&D)\n"
-"\83L\83\83\83\93\83Z\83\8b(&C)"
+"\n"
+"\82»\82ê\82©\82ç.swp\83t\83@\83C\83\8b\82ð\8dí\8f\9c\82µ\82Ä\82\82¾\82³\82¢\n"
+"\n"
-msgid "Select Directory dialog"
-msgstr "\83f\83B\83\8c\83N\83g\83\8a\91I\91ð\83_\83C\83A\83\8d\83O"
+msgid "Using crypt key from swap file for the text file.\n"
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82©\82ç\8eæ\93¾\82µ\82½\88Ã\8d\86\83L\81[\82ð\83e\83L\83X\83g\83t\83@\83C\83\8b\82É\8eg\82¢\82Ü\82·.\n"
-msgid "Save File dialog"
-msgstr "\83t\83@\83C\83\8b\95Û\91¶\83_\83C\83A\83\8d\83O"
+#. use msg() to start the scrolling properly
+msgid "Swap files found:"
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\95¡\90\94\8c©\82Â\82©\82è\82Ü\82µ\82½:"
-msgid "Open File dialog"
-msgstr "\83t\83@\83C\83\8b\93Ç\8d\9e\83_\83C\83A\83\8d\83O"
+msgid " In current directory:\n"
+msgstr " \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a:\n"
-#. TODO: non-GUI file selector here
-msgid "E338: Sorry, no file browser in console mode"
-msgstr "E338: \83R\83\93\83\\\81[\83\8b\83\82\81[\83h\82Å\82Í\83t\83@\83C\83\8b\83u\83\89\83E\83U\82ð\8eg\82¦\82Ü\82¹\82ñ, \82²\82ß\82ñ\82È\82³\82¢"
+msgid " Using specified name:\n"
+msgstr " \82 \82é\96¼\91O\82ð\8eg\97p\92\86:\n"
-msgid "E766: Insufficient arguments for printf()"
-msgstr "E766: printf() \82Ì\88ø\90\94\82ª\95s\8f\\\95ª\82Å\82·"
+msgid " In directory "
+msgstr " \83f\83B\83\8c\83N\83g\83\8a "
-msgid "E807: Expected Float argument for printf()"
-msgstr "E807: printf() \82Ì\88ø\90\94\82É\82Í\95\82\93®\8f\90\94\82ª\8aú\91Ò\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid " -- none --\n"
+msgstr " -- \82È\82µ --\n"
-msgid "E767: Too many arguments to printf()"
-msgstr "E767: pirntf() \82Ì\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
+msgid " owned by: "
+msgstr " \8f\8a\97L\8eÒ: "
-msgid "W10: Warning: Changing a readonly file"
-msgstr "W10: \8cx\8d\90: \93Ç\8d\9e\90ê\97p\83t\83@\83C\83\8b\82ð\95Ï\8dX\82µ\82Ü\82·"
+msgid " dated: "
+msgstr " \93ú\95t: "
-msgid "Type number and <Enter> or click with mouse (empty cancels): "
-msgstr ""
-"\94Ô\8d\86\82Æ<Enter>\82ð\93ü\97Í\82·\82é\82©\83}\83E\83X\82Å\83N\83\8a\83b\83N\82µ\82Ä\82\82¾\82³\82¢ (\8bó\82Å\83L\83\83\83\93\83Z\83\8b): "
+msgid " dated: "
+msgstr " \93ú\95t: "
-msgid "Type number and <Enter> (empty cancels): "
-msgstr "\94Ô\8d\86\82Æ<Enter>\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢ (\8bó\82Å\83L\83\83\83\93\83Z\83\8b): "
+msgid " [from Vim version 3.0]"
+msgstr " [from Vim version 3.0]"
-msgid "1 more line"
-msgstr "1 \8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
+msgid " [does not look like a Vim swap file]"
+msgstr " [Vim\82Ì\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·]"
-msgid "1 line less"
-msgstr "1 \8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
+msgid " file name: "
+msgstr " \83t\83@\83C\83\8b\96¼: "
-#, c-format
-msgid "%ld more lines"
-msgstr "%ld \8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
+msgid ""
+"\n"
+" modified: "
+msgstr ""
+"\n"
+" \95Ï\8dX\8fó\91Ô: "
-#, c-format
-msgid "%ld fewer lines"
-msgstr "%ld \8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
+msgid "YES"
+msgstr "\82 \82è"
-msgid " (Interrupted)"
-msgstr " (\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½)"
+msgid "no"
+msgstr "\82È\82µ"
-msgid "Beep!"
-msgstr "\83r\81[\83b!"
+msgid ""
+"\n"
+" user name: "
+msgstr ""
+"\n"
+" \83\86\81[\83U\96¼: "
-msgid "Vim: preserving files...\n"
-msgstr "Vim: \83t\83@\83C\83\8b\82ð\95Û\91¶\92\86...\n"
+msgid " host name: "
+msgstr " \83z\83X\83g\96¼: "
-#. close all memfiles, without deleting
-msgid "Vim: Finished.\n"
-msgstr "Vim: \8fI\97¹\82µ\82Ü\82µ\82½.\n"
+msgid ""
+"\n"
+" host name: "
+msgstr ""
+"\n"
+" \83z\83X\83g\96¼: "
-msgid "ERROR: "
-msgstr "\83G\83\89\81[: "
+msgid ""
+"\n"
+" process ID: "
+msgstr ""
+"\n"
+" \83v\83\8d\83Z\83XID: "
+
+msgid " (still running)"
+msgstr " (\82Ü\82¾\8eÀ\8ds\92\86)"
-#, c-format
msgid ""
"\n"
-"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
+" [not usable with this version of Vim]"
msgstr ""
"\n"
-"[\83\81\83\82\83\8a(\83o\83C\83g)] \91\8d\8a\84\93\96-\89ð\95ú\97Ê %lu-%lu, \8eg\97p\97Ê %lu, \83s\81[\83N\8e\9e %lu\n"
+" [\82±\82ÌVim\83o\81[\83W\83\87\83\93\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ]"
-#, c-format
msgid ""
-"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
"\n"
+" [not usable on this computer]"
msgstr ""
-"[\8cÄ\8fo] \91\8d re/malloc() \89ñ\90\94 %lu, \91\8d free() \89ñ\90\94 %lu\n"
"\n"
+" [\82±\82Ì\83R\83\93\83s\83\85\81[\83^\82Å\82Í\8eg\97p\82Å\82«\82Ü\82¹\82ñ]"
-msgid "E340: Line is becoming too long"
-msgstr "E340: \8ds\82ª\92·\82\82È\82è\89ß\82¬\82Ü\82µ\82½"
+msgid " [cannot be read]"
+msgstr " [\93Ç\8d\9e\82ß\82Ü\82¹\82ñ]"
-#, c-format
-msgid "E341: Internal error: lalloc(%ld, )"
-msgstr "E341: \93à\95\94\83G\83\89\81[: lalloc(%ld,)"
+msgid " [cannot be opened]"
+msgstr " [\8aJ\82¯\82Ü\82¹\82ñ]"
-#, c-format
-msgid "E342: Out of memory! (allocating %lu bytes)"
-msgstr "E342: \83\81\83\82\83\8a\82ª\91«\82è\82Ü\82¹\82ñ! (%lu \83o\83C\83g\82ð\8a\84\93\96\97v\8b\81)"
+msgid "E313: Cannot preserve, there is no swap file"
+msgstr "E313: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\96³\82¢\82Ì\82Å\88Û\8e\9d\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "Calling shell to execute: \"%s\""
-msgstr "\8eÀ\8ds\82Ì\82½\82ß\82É\83V\83F\83\8b\82ð\8cÄ\8fo\82µ\92\86: \"%s\""
+msgid "File preserved"
+msgstr "\83t\83@\83C\83\8b\82ª\88Û\8e\9d\82³\82ê\82Ü\82·"
-msgid "E545: Missing colon"
-msgstr "E545: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E314: Preserve failed"
+msgstr "E314: \88Û\8e\9d\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "E546: Illegal mode"
-msgstr "E546: \95s\90³\82È\83\82\81[\83h\82Å\82·"
+#, c-format
+msgid "E315: ml_get: invalid lnum: %ld"
+msgstr "E315: ml_get: \96³\8cø\82Èlnum\82Å\82·: %ld"
-msgid "E547: Illegal mouseshape"
-msgstr "E547: \95s\90³\82È 'mouseshape' \82Å\82·"
+#, c-format
+msgid "E316: ml_get: cannot find line %ld"
+msgstr "E316: ml_get: \8ds %ld \82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid "E548: digit expected"
-msgstr "E548: \90\94\92l\82ª\95K\97v\82Å\82·"
+msgid "E317: pointer block id wrong 3"
+msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 3"
-msgid "E549: Illegal percentage"
-msgstr "E549: \95s\90³\82È\83p\81[\83Z\83\93\83e\81[\83W\82Å\82·"
+msgid "stack_idx should be 0"
+msgstr "stack_idx \82Í 0 \82Å\82 \82é\82×\82«\82Å\82·"
-msgid "Enter encryption key: "
-msgstr "\88Ã\8d\86\89»\97p\82Ì\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢: "
+msgid "E318: Updated too many blocks?"
+msgstr "E318: \8dX\90V\82³\82ê\82½\83u\83\8d\83b\83N\82ª\91½\89ß\82¬\82é\82©\82à?"
-msgid "Enter same key again: "
-msgstr "\82à\82¤\88ê\93x\93¯\82¶\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢: "
+msgid "E317: pointer block id wrong 4"
+msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 4"
-msgid "Keys don't match!"
-msgstr "\83L\81[\82ª\88ê\92v\82µ\82Ü\82¹\82ñ"
+msgid "deleted block 1?"
+msgstr "\83u\83\8d\83b\83N 1 \82Í\8fÁ\82³\82ê\82½?"
#, c-format
-msgid ""
-"E343: Invalid path: '**[number]' must be at the end of the path or be "
-"followed by '%s'."
-msgstr ""
-"E343: \96³\8cø\82È\83p\83X\82Å\82·: '**[\90\94\92l]' \82Ípath\82Ì\8dÅ\8cã\82© '%s' \82ª\91±\82¢\82Ä\82È\82¢\82Æ\82¢\82¯\82Ü\82¹"
-"\82ñ."
+msgid "E320: Cannot find line %ld"
+msgstr "E320: \8ds %ld \82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "E344: Can't find directory \"%s\" in cdpath"
-msgstr "E344: cdpath\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E317: pointer block id wrong"
+msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "E345: Can't find file \"%s\" in path"
-msgstr "E345: path\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "pe_line_count is zero"
+msgstr "pe_line_count \82ª\83[\83\8d\82Å\82·"
#, c-format
-msgid "E346: No more directory \"%s\" found in cdpath"
-msgstr "E346: cdpath\82É\82Í\82±\82ê\88È\8fã \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E322: line number out of range: %ld past the end"
+msgstr "E322: \8ds\94Ô\8d\86\82ª\94Í\88Í\8aO\82Å\82·: %ld \92´\82¦\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "E347: No more file \"%s\" found in path"
-msgstr "E347: \83p\83X\82É\82Í\82±\82ê\88È\8fã \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E323: line count wrong in block %ld"
+msgstr "E323: \83u\83\8d\83b\83N %ld \82Ì\8ds\83J\83E\83\93\83g\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
-msgid "Cannot connect to Netbeans #2"
-msgstr "Netbeans #2 \82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ"
+msgid "Stack size increases"
+msgstr "\83X\83^\83b\83N\83T\83C\83Y\82ª\91\9d\82¦\82Ü\82·"
-msgid "Cannot connect to Netbeans"
-msgstr "Netbeans \82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ"
+msgid "E317: pointer block id wrong 2"
+msgstr "E317: \83|\83C\83\93\83^\83u\83\8d\83b\83N\82ÌID\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82· 2"
#, c-format
-msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
-msgstr ""
-"E668: NetBeans\82Ì\90Ú\91±\8fî\95ñ\83t\83@\83C\83\8b\82Ì\83A\83N\83Z\83X\83\82\81[\83h\82É\96â\91è\82ª\82 \82è\82Ü\82·: \"%s\""
+msgid "E773: Symlink loop for \"%s\""
+msgstr "E773: \"%s\" \82Ì\83V\83\93\83{\83\8a\83b\83N\83\8a\83\93\83N\82ª\83\8b\81[\83v\82É\82È\82Á\82Ä\82¢\82Ü\82·"
-msgid "read from Netbeans socket"
-msgstr "Netbeans \82Ì\83\\\83P\83b\83g\82ð\93Ç\8d\9e\82Ý"
+msgid "E325: ATTENTION"
+msgstr "E325: \92\8d\88Ó"
-#, c-format
-msgid "E658: NetBeans connection lost for buffer %ld"
-msgstr "E658: \83o\83b\83t\83@ %ld \82Ì NetBeans \90Ú\91±\82ª\8e¸\82í\82ê\82Ü\82µ\82½"
+msgid ""
+"\n"
+"Found a swap file by the name \""
+msgstr ""
+"\n"
+"\8e\9f\82Ì\96¼\91O\82Å\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ð\8c©\82Â\82¯\82Ü\82µ\82½ \""
-msgid "E838: netbeans is not supported with this GUI"
-msgstr "E838: NetBeans\82Í\82±\82ÌGUI\82É\82Í\91Î\89\9e\82µ\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "While opening file \""
+msgstr "\8e\9f\82Ì\83t\83@\83C\83\8b\82ð\8aJ\82¢\82Ä\82¢\82é\8dÅ\92\86 \""
-msgid "E511: netbeans already connected"
-msgstr "E511: NetBeans\82Í\8aù\82É\90Ú\91±\82µ\82Ä\82¢\82Ü\82·"
+msgid " NEWER than swap file!\n"
+msgstr " \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82æ\82è\82à\90V\82µ\82¢\82Å\82·!\n"
-msgid "E505: "
-msgstr "E505: "
+#. Some of these messages are long to allow translation to
+#. * other languages.
+msgid ""
+"\n"
+"(1) Another program may be editing the same file. If this is the case,\n"
+" be careful not to end up with two different instances of the same\n"
+" file when making changes."
+msgstr ""
+"\n"
+"(1) \95Ê\82Ì\83v\83\8d\83O\83\89\83\80\82ª\93¯\82¶\83t\83@\83C\83\8b\82ð\95Ò\8fW\82µ\82Ä\82¢\82é\82©\82à\82µ\82ê\82Ü\82¹\82ñ.\n"
+" \82±\82Ì\8fê\8d\87\82É\82Í, \95Ï\8dX\82ð\82µ\82½\8dÛ\82É\8dÅ\8fI\93I\82É, \93¯\82¶\83t\83@\83C\83\8b\82Ì\88Ù\82È\82é\n"
+" 2\82Â\82Ì\83C\83\93\83X\83^\83\93\83X\82ª\82Å\82«\82Ä\82µ\82Ü\82¤\82±\82Æ\82É\92\8d\88Ó\82µ\82Ä\82\82¾\82³\82¢."
-msgid "E349: No identifier under cursor"
-msgstr "E349: \83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\82Í\8e¯\95Ê\8eq\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid " Quit, or continue with caution.\n"
+msgstr " \8fI\97¹\82·\82é\82©, \92\8d\88Ó\82µ\82È\82ª\82ç\91±\82¯\82Ä\82\82¾\82³\82¢.\n"
-msgid "E774: 'operatorfunc' is empty"
-msgstr "E774: 'operatorfunc' \83I\83v\83V\83\87\83\93\82ª\8bó\82Å\82·"
+msgid "(2) An edit session for this file crashed.\n"
+msgstr "(2) \82±\82Ì\83t\83@\83C\83\8b\82Ì\95Ò\8fW\83Z\83b\83V\83\87\83\93\82ª\83N\83\89\83b\83V\83\85\82µ\82½.\n"
-msgid "E775: Eval feature not available"
-msgstr "E775: \8e®\95]\89¿\8b@\94\\\82ª\96³\8cø\82É\82È\82Á\82Ä\82¢\82Ü\82·"
-
-msgid "Warning: terminal cannot highlight"
-msgstr "\8cx\8d\90: \8eg\97p\82µ\82Ä\82¢\82é\92[\96\96\82Í\83n\83C\83\89\83C\83g\82Å\82«\82Ü\82¹\82ñ"
-
-msgid "E348: No string under cursor"
-msgstr "E348: \83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\82Í\95¶\8e\9a\97ñ\82ª\82 \82è\82Ü\82¹\82ñ"
-
-msgid "E352: Cannot erase folds with current 'foldmethod'"
-msgstr "E352: \8c»\8dÝ\82Ì 'foldmethod' \82Å\82Í\90Ü\8fô\82Ý\82ð\8fÁ\8b\8e\82Å\82«\82Ü\82¹\82ñ"
-
-msgid "E664: changelist is empty"
-msgstr "E664: \95Ï\8dX\83\8a\83X\83g\82ª\8bó\82Å\82·"
-
-msgid "E662: At start of changelist"
-msgstr "E662: \95Ï\8dX\83\8a\83X\83g\82Ì\90æ\93ª"
-
-msgid "E663: At end of changelist"
-msgstr "E663: \95Ï\8dX\83\8a\83X\83g\82Ì\96\96\94ö"
+msgid " If this is the case, use \":recover\" or \"vim -r "
+msgstr " \82±\82Ì\8fê\8d\87\82É\82Í \":recover\" \82© \"vim -r "
-msgid "Type :quit<Enter> to exit Vim"
-msgstr "Vim\82ð\8fI\97¹\82·\82é\82É\82Í :quit<Enter> \82Æ\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢"
+msgid ""
+"\"\n"
+" to recover the changes (see \":help recovery\").\n"
+msgstr ""
+"\"\n"
+" \82ð\8eg\97p\82µ\82Ä\95Ï\8dX\82ð\83\8a\83J\83o\81[\82µ\82Ü\82·(\":help recovery\" \82ð\8eQ\8fÆ).\n"
-#, c-format
-msgid "1 line %sed 1 time"
-msgstr "1 \8ds\82ª %s \82Å 1 \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
+msgid " If you did this already, delete the swap file \""
+msgstr " \8aù\82É\82±\82ê\82ð\8ds\82È\82Á\82½\82Ì\82È\82ç\82Î, \83X\83\8f\83b\83v\83t\83@\83C\83\8b \""
-#, c-format
-msgid "1 line %sed %d times"
-msgstr "1 \8ds\82ª %s \82Å %d \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
+msgid ""
+"\"\n"
+" to avoid this message.\n"
+msgstr ""
+"\"\n"
+" \82ð\8fÁ\82¹\82Î\82±\82Ì\83\81\83b\83Z\81[\83W\82ð\89ñ\94ð\82Å\82«\82Ü\82·.\n"
-#, c-format
-msgid "%ld lines %sed 1 time"
-msgstr "%ld \8ds\82ª %s \82Å 1 \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
+msgid "Swap file \""
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b \""
-#, c-format
-msgid "%ld lines %sed %d times"
-msgstr "%ld \8ds\82ª %s \82Å %d \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
+msgid "\" already exists!"
+msgstr "\" \82ª\8aù\82É\82 \82è\82Ü\82·!"
-#, c-format
-msgid "%ld lines to indent... "
-msgstr "%ld \8ds\82ª\83C\83\93\83f\83\93\83g\82³\82ê\82Ü\82·... "
+msgid "VIM - ATTENTION"
+msgstr "VIM - \92\8d\88Ó"
-msgid "1 line indented "
-msgstr "1 \8ds\82ð\83C\83\93\83f\83\93\83g\82µ\82Ü\82µ\82½"
+msgid "Swap file already exists!"
+msgstr "\83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82·!"
-#, c-format
-msgid "%ld lines indented "
-msgstr "%ld \8ds\82ð\83C\83\93\83f\83\93\83g\82µ\82Ü\82µ\82½"
+msgid ""
+"&Open Read-Only\n"
+"&Edit anyway\n"
+"&Recover\n"
+"&Quit\n"
+"&Abort"
+msgstr ""
+"\93Ç\8d\9e\90ê\97p\82Å\8aJ\82(&O)\n"
+"\82Æ\82É\82©\82\95Ò\8fW\82·\82é(&E)\n"
+"\95\9c\8a\88\82³\82¹\82é(&R)\n"
+"\8fI\97¹\82·\82é(&Q)\n"
+"\92\86\8e~\82·\82é(&A)"
-msgid "E748: No previously used register"
-msgstr "E748: \82Ü\82¾\83\8c\83W\83X\83^\82ð\8eg\97p\82µ\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"&Open Read-Only\n"
+"&Edit anyway\n"
+"&Recover\n"
+"&Delete it\n"
+"&Quit\n"
+"&Abort"
+msgstr ""
+"\93Ç\8d\9e\90ê\97p\82Å\8aJ\82(&O)\n"
+"\82Æ\82É\82©\82\95Ò\8fW\82·\82é(&E)\n"
+"\95\9c\8a\88\82³\82¹\82é(&R)\n"
+"\8dí\8f\9c\82·\82é(&D)\n"
+"\8fI\97¹\82·\82é(&Q)\n"
+"\92\86\8e~\82·\82é(&A)"
-#. must display the prompt
-msgid "cannot yank; delete anyway"
-msgstr "\83\84\83\93\83N\82Å\82«\82Ü\82¹\82ñ; \82Æ\82É\82©\82\8fÁ\8b\8e"
+msgid "E326: Too many swap files found"
+msgstr "E326: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82ª\91½\90\94\8c©\82Â\82©\82è\82Ü\82µ\82½"
-msgid "1 line changed"
-msgstr "1 \8ds\82ª\95Ï\8dX\82³\82ê\82Ü\82µ\82½"
+msgid "E327: Part of menu-item path is not sub-menu"
+msgstr "E327: \83\81\83j\83\85\81[\83A\83C\83e\83\80\82Ì\83p\83X\82Ì\95\94\95ª\82ª\83T\83u\83\81\83j\83\85\81[\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "%ld lines changed"
-msgstr "%ld \8ds\82ª\95Ï\8dX\82³\82ê\82Ü\82µ\82½"
+msgid "E328: Menu only exists in another mode"
+msgstr "E328: \83\81\83j\83\85\81[\82Í\91¼\82Ì\83\82\81[\83h\82É\82¾\82¯\82 \82è\82Ü\82·"
#, c-format
-msgid "freeing %ld lines"
-msgstr "%ld \8ds\82ð\8aJ\95ú\92\86"
-
-msgid "block of 1 line yanked"
-msgstr "1 \8ds\82Ì\83u\83\8d\83b\83N\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
+msgid "E329: No menu \"%s\""
+msgstr "E329: \"%s\" \82Æ\82¢\82¤\83\81\83j\83\85\81[\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid "1 line yanked"
-msgstr "1 \8ds\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
+#. Only a mnemonic or accelerator is not valid.
+msgid "E792: Empty menu name"
+msgstr "E792: \83\81\83j\83\85\81[\96¼\82ª\8bó\82Å\82·"
-#, c-format
-msgid "block of %ld lines yanked"
-msgstr "%ld \8ds\82Ì\83u\83\8d\83b\83N\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
+msgid "E330: Menu path must not lead to a sub-menu"
+msgstr "E330: \83\81\83j\83\85\81[\83p\83X\82Í\83T\83u\83\81\83j\83\85\81[\82ð\90¶\82¶\82é\82×\82«\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "%ld lines yanked"
-msgstr "%ld \8ds\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
+msgid "E331: Must not add menu items directly to menu bar"
+msgstr "E331: \83\81\83j\83\85\81[\83o\81[\82É\82Í\92¼\90Ú\83\81\83j\83\85\81[\83A\83C\83e\83\80\82ð\92Ç\89Á\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E353: Nothing in register %s"
-msgstr "E353: \83\8c\83W\83X\83^ %s \82É\82Í\89½\82à\82 \82è\82Ü\82¹\82ñ"
+msgid "E332: Separator cannot be part of a menu path"
+msgstr "E332: \8bæ\90Ø\82è\82Í\83\81\83j\83\85\81[\83p\83X\82Ì\88ê\95\94\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
+#. Now we have found the matching menu, and we list the mappings
#. Highlight title
msgid ""
"\n"
-"--- Registers ---"
+"--- Menus ---"
msgstr ""
"\n"
-"--- \83\8c\83W\83X\83^ ---"
+"--- \83\81\83j\83\85\81[ ---"
-msgid "Illegal register name"
-msgstr "\95s\90³\82È\83\8c\83W\83X\83^\96¼"
+msgid "Tear off this menu"
+msgstr "\82±\82Ì\83\81\83j\83\85\81[\82ð\90Ø\82è\8eæ\82é"
-msgid ""
-"\n"
-"# Registers:\n"
-msgstr ""
-"\n"
-"# \83\8c\83W\83X\83^:\n"
+msgid "E333: Menu path must lead to a menu item"
+msgstr "E333: \83\81\83j\83\85\81[\83p\83X\82Í\83\81\83j\83\85\81[\83A\83C\83e\83\80\82ð\90¶\82¶\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
#, c-format
-msgid "E574: Unknown register type %d"
-msgstr "E574: \96¢\92m\82Ì\83\8c\83W\83X\83^\8c^ %d \82Å\82·"
+msgid "E334: Menu not found: %s"
+msgstr "E334: \83\81\83j\83\85\81[\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
#, c-format
-msgid "%ld Cols; "
-msgstr "%ld \97ñ; "
+msgid "E335: Menu not defined for %s mode"
+msgstr "E335: %s \82É\82Í\83\81\83j\83\85\81[\82ª\92è\8b`\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-#, c-format
-msgid "Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"
-msgstr "\91I\91ð %s%ld / %ld \8ds; %ld / %ld \92P\8cê; %ld / %ld \83o\83C\83g"
+msgid "E336: Menu path must lead to a sub-menu"
+msgstr "E336: \83\81\83j\83\85\81[\83p\83X\82Í\83T\83u\83\81\83j\83\85\81[\82ð\90¶\82¶\82È\82¯\82ê\82Î\82¢\82¯\82Ü\82¹\82ñ"
-#, c-format
-msgid ""
-"Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld "
-"Bytes"
-msgstr "\91I\91ð %s%ld / %ld \8ds; %ld / %ld \92P\8cê; %ld / %ld \95¶\8e\9a; %ld / %ld \83o\83C\83g"
+msgid "E337: Menu not found - check menu names"
+msgstr "E337: \83\81\83j\83\85\81[\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ - \83\81\83j\83\85\81[\96¼\82ð\8am\94F\82µ\82Ä\82\82¾\82³\82¢"
#, c-format
-msgid "Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"
-msgstr "\97ñ %s / %s; \8ds %ld of %ld; \92P\8cê %ld / %ld; \83o\83C\83g %ld / %ld"
+msgid "Error detected while processing %s:"
+msgstr "%s \82Ì\8f\88\97\9d\92\86\82É\83G\83\89\81[\82ª\8c\9f\8fo\82³\82ê\82Ü\82µ\82½:"
#, c-format
-msgid ""
-"Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of "
-"%ld"
-msgstr ""
-"\97ñ %s / %s; \8ds %ld / %ld; \92P\8cê %ld / %ld; \95¶\8e\9a %ld / %ld; \83o\83C\83g %ld of %ld"
+msgid "line %4ld:"
+msgstr "\8ds %4ld:"
#, c-format
-msgid "(+%ld for BOM)"
-msgstr "(+%ld for BOM)"
+msgid "E354: Invalid register name: '%s'"
+msgstr "E354: \96³\8cø\82È\83\8c\83W\83X\83^\96¼: '%s'"
-msgid "%<%f%h%m%=Page %N"
-msgstr "%<%f%h%m%=%N \83y\81[\83W"
+msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgstr "\93ú\96{\8cê\83\81\83b\83Z\81[\83W\96|\96ó/\8aÄ\8fC: \91º\89ª \91¾\98Y <koron.kaoriya@gmail.com>"
-msgid "Thanks for flying Vim"
-msgstr "Vim \82ð\8eg\82Á\82Ä\82\82ê\82Ä\82 \82è\82ª\82Æ\82¤"
+msgid "Interrupt: "
+msgstr "\8a\84\8d\9e\82Ý: "
-msgid "E518: Unknown option"
-msgstr "E518: \96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·"
+msgid "Press ENTER or type command to continue"
+msgstr "\91±\82¯\82é\82É\82ÍENTER\82ð\89\9f\82·\82©\83R\83}\83\93\83h\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢"
-msgid "E519: Option not supported"
-msgstr "E519: \83I\83v\83V\83\87\83\93\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+#, c-format
+msgid "%s line %ld"
+msgstr "%s \8ds %ld"
-msgid "E520: Not allowed in a modeline"
-msgstr "E520: modeline \82Å\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
+msgid "-- More --"
+msgstr "-- \8cp\91± --"
-msgid "E846: Key code not set"
-msgstr "E846: \83L\81[\83R\81[\83h\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "
+msgstr " SPACE/d/j: \89æ\96Ê/\83y\81[\83W/\8ds \89º, b/u/k: \8fã, q: \8fI\97¹ "
-msgid "E521: Number required after ="
-msgstr "E521: = \82Ì\8cã\82É\82Í\90\94\8e\9a\82ª\95K\97v\82Å\82·"
+msgid "Question"
+msgstr "\8e¿\96â"
-msgid "E522: Not found in termcap"
-msgstr "E522: termcap \93à\82É\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid ""
+"&Yes\n"
+"&No"
+msgstr ""
+"\82Í\82¢(&Y)\n"
+"\82¢\82¢\82¦(&N)"
-#, c-format
-msgid "E539: Illegal character <%s>"
-msgstr "E539: \95s\90³\82È\95¶\8e\9a\82Å\82· <%s>"
+msgid ""
+"&Yes\n"
+"&No\n"
+"Save &All\n"
+"&Discard All\n"
+"&Cancel"
+msgstr ""
+"\82Í\82¢(&Y)\n"
+"\82¢\82¢\82¦(&N)\n"
+"\91S\82Ä\95Û\91¶(&A)\n"
+"\91S\82Ä\95ú\8aü(&D)\n"
+"\83L\83\83\83\93\83Z\83\8b(&C)"
-msgid "E529: Cannot set 'term' to empty string"
-msgstr "E529: 'term' \82É\82Í\8bó\95¶\8e\9a\97ñ\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
+msgid "Select Directory dialog"
+msgstr "\83f\83B\83\8c\83N\83g\83\8a\91I\91ð\83_\83C\83A\83\8d\83O"
-msgid "E530: Cannot change term in GUI"
-msgstr "E530: GUI\82Å\82Í 'term' \82ð\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
+msgid "Save File dialog"
+msgstr "\83t\83@\83C\83\8b\95Û\91¶\83_\83C\83A\83\8d\83O"
-msgid "E531: Use \":gui\" to start the GUI"
-msgstr "E531: GUI\82ð\83X\83^\81[\83g\82·\82é\82É\82Í \":gui\" \82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢"
+msgid "Open File dialog"
+msgstr "\83t\83@\83C\83\8b\93Ç\8d\9e\83_\83C\83A\83\8d\83O"
-msgid "E589: 'backupext' and 'patchmode' are equal"
-msgstr "E589: 'backupext' \82Æ 'patchmode' \82ª\93¯\82¶\82Å\82·"
+#. TODO: non-GUI file selector here
+msgid "E338: Sorry, no file browser in console mode"
+msgstr "E338: \83R\83\93\83\\\81[\83\8b\83\82\81[\83h\82Å\82Í\83t\83@\83C\83\8b\83u\83\89\83E\83U\82ð\8eg\82¦\82Ü\82¹\82ñ, \82²\82ß\82ñ\82È\82³\82¢"
-msgid "E834: Conflicts with value of 'listchars'"
-msgstr "E834: 'listchars'\82Ì\92l\82É\96µ\8f\82\82ª\82 \82è\82Ü\82·"
+msgid "E766: Insufficient arguments for printf()"
+msgstr "E766: printf() \82Ì\88ø\90\94\82ª\95s\8f\\\95ª\82Å\82·"
-msgid "E835: Conflicts with value of 'fillchars'"
-msgstr "E835: 'fillchars'\82Ì\92l\82É\96µ\8f\82\82ª\82 \82è\82Ü\82·"
-
-msgid "E617: Cannot be changed in the GTK+ 2 GUI"
-msgstr "E617: GTK+2 GUI\82Å\82Í\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
-
-msgid "E524: Missing colon"
-msgstr "E524: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
-
-msgid "E525: Zero length string"
-msgstr "E525: \95¶\8e\9a\97ñ\82Ì\92·\82³\82ª\83[\83\8d\82Å\82·"
-
-#, c-format
-msgid "E526: Missing number after <%s>"
-msgstr "E526: <%s> \82Ì\8cã\82É\90\94\8e\9a\82ª\82 \82è\82Ü\82¹\82ñ"
-
-msgid "E527: Missing comma"
-msgstr "E527: \83J\83\93\83}\82ª\82 \82è\82Ü\82¹\82ñ"
-
-msgid "E528: Must specify a ' value"
-msgstr "E528: ' \82Ì\92l\82ð\8ew\92è\82µ\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
+msgid "E807: Expected Float argument for printf()"
+msgstr "E807: printf() \82Ì\88ø\90\94\82É\82Í\95\82\93®\8f\90\94\93_\90\94\82ª\8aú\91Ò\82³\82ê\82Ä\82¢\82Ü\82·"
-msgid "E595: contains unprintable or wide character"
-msgstr "E595: \95\\\8e¦\82Å\82«\82È\82¢\95¶\8e\9a\82©\83\8f\83C\83h\95¶\8e\9a\82ð\8aÜ\82ñ\82Å\82¢\82Ü\82·"
+msgid "E767: Too many arguments to printf()"
+msgstr "E767: printf() \82Ì\88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "E596: Invalid font(s)"
-msgstr "E596: \96³\8cø\82È\83t\83H\83\93\83g\82Å\82·"
+msgid "W10: Warning: Changing a readonly file"
+msgstr "W10: \8cx\8d\90: \93Ç\8d\9e\90ê\97p\83t\83@\83C\83\8b\82ð\95Ï\8dX\82µ\82Ü\82·"
-msgid "E597: can't select fontset"
-msgstr "E597: \83t\83H\83\93\83g\83Z\83b\83g\82ð\91I\91ð\82Å\82«\82Ü\82¹\82ñ"
+msgid "Type number and <Enter> or click with mouse (empty cancels): "
+msgstr ""
+"\94Ô\8d\86\82Æ<Enter>\82ð\93ü\97Í\82·\82é\82©\83}\83E\83X\82Å\83N\83\8a\83b\83N\82µ\82Ä\82\82¾\82³\82¢ (\8bó\82Å\83L\83\83\83\93\83Z\83\8b): "
-msgid "E598: Invalid fontset"
-msgstr "E598: \96³\8cø\82È\83t\83H\83\93\83g\83Z\83b\83g\82Å\82·"
+msgid "Type number and <Enter> (empty cancels): "
+msgstr "\94Ô\8d\86\82Æ<Enter>\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢ (\8bó\82Å\83L\83\83\83\93\83Z\83\8b): "
-msgid "E533: can't select wide font"
-msgstr "E533: \83\8f\83C\83h\83t\83H\83\93\83g\82ð\91I\91ð\82Å\82«\82Ü\82¹\82ñ"
+msgid "1 more line"
+msgstr "1 \8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
-msgid "E534: Invalid wide font"
-msgstr "E534: \96³\8cø\82È\83\8f\83C\83h\83t\83H\83\93\83g\82Å\82·"
+msgid "1 line less"
+msgstr "1 \8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
#, c-format
-msgid "E535: Illegal character after <%c>"
-msgstr "E535: <%c> \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
-
-msgid "E536: comma required"
-msgstr "E536: \83J\83\93\83}\82ª\95K\97v\82Å\82·"
+msgid "%ld more lines"
+msgstr "%ld \8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
#, c-format
-msgid "E537: 'commentstring' must be empty or contain %s"
-msgstr "E537: 'commentstring' \82Í\8bó\82Å\82 \82é\82© %s \82ð\8aÜ\82Þ\95K\97v\82ª\82 \82è\82Ü\82·"
-
-msgid "E538: No mouse support"
-msgstr "E538: \83}\83E\83X\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ"
-
-msgid "E540: Unclosed expression sequence"
-msgstr "E540: \8e®\82ª\8fI\97¹\82µ\82Ä\82¢\82Ü\82¹\82ñ"
-
-msgid "E541: too many items"
-msgstr "E541: \97v\91f\82ª\91½\89ß\82¬\82Ü\82·"
-
-msgid "E542: unbalanced groups"
-msgstr "E542: \83O\83\8b\81[\83v\82ª\92Þ\8d\87\82¢\82Ü\82¹\82ñ"
+msgid "%ld fewer lines"
+msgstr "%ld \8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
-msgid "E590: A preview window already exists"
-msgstr "E590: \83v\83\8c\83r\83\85\81[\83E\83B\83\93\83h\83E\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82·"
+msgid " (Interrupted)"
+msgstr " (\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½)"
-msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
-msgstr ""
-"W17: \83A\83\89\83r\83A\95¶\8e\9a\82É\82ÍUTF-8\82ª\95K\97v\82È\82Ì\82Å, ':set encoding=utf-8' \82µ\82Ä\82\82¾\82³\82¢"
+msgid "Beep!"
+msgstr "\83r\81[\83b!"
-#, c-format
-msgid "E593: Need at least %d lines"
-msgstr "E593: \8dÅ\92á %d \82Ì\8ds\90\94\82ª\95K\97v\82Å\82·"
+msgid "Vim: preserving files...\n"
+msgstr "Vim: \83t\83@\83C\83\8b\82ð\95Û\91¶\92\86...\n"
-#, c-format
-msgid "E594: Need at least %d columns"
-msgstr "E594: \8dÅ\92á %d \82Ì\83J\83\89\83\80\95\9d\82ª\95K\97v\82Å\82·"
+#. close all memfiles, without deleting
+msgid "Vim: Finished.\n"
+msgstr "Vim: \8fI\97¹\82µ\82Ü\82µ\82½.\n"
-#, c-format
-msgid "E355: Unknown option: %s"
-msgstr "E355: \96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·: %s"
+msgid "ERROR: "
+msgstr "\83G\83\89\81[: "
-#. There's another character after zeros or the string
-#. * is empty. In both cases, we are trying to set a
-#. * num option using a string.
#, c-format
-msgid "E521: Number required: &%s = '%s'"
-msgstr "E521: \90\94\8e\9a\82ª\95K\97v\82Å\82·: &%s = '%s'"
-
-msgid ""
-"\n"
-"--- Terminal codes ---"
-msgstr ""
-"\n"
-"--- \92[\96\96\83R\81[\83h ---"
-
-msgid ""
-"\n"
-"--- Global option values ---"
-msgstr ""
-"\n"
-"--- \83O\83\8d\81[\83o\83\8b\83I\83v\83V\83\87\83\93\92l ---"
-
msgid ""
"\n"
-"--- Local option values ---"
+"[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"
msgstr ""
"\n"
-"--- \83\8d\81[\83J\83\8b\83I\83v\83V\83\87\83\93\92l ---"
+"[\83\81\83\82\83\8a(\83o\83C\83g)] \91\8d\8a\84\93\96-\89ð\95ú\97Ê %lu-%lu, \8eg\97p\97Ê %lu, \83s\81[\83N\8e\9e %lu\n"
+#, c-format
msgid ""
+"[calls] total re/malloc()'s %lu, total free()'s %lu\n"
"\n"
-"--- Options ---"
msgstr ""
+"[\8cÄ\8fo] \91\8d re/malloc() \89ñ\90\94 %lu, \91\8d free() \89ñ\90\94 %lu\n"
"\n"
-"--- \83I\83v\83V\83\87\83\93 ---"
-
-msgid "E356: get_varp ERROR"
-msgstr "E356: get_varp \83G\83\89\81["
-#, c-format
-msgid "E357: 'langmap': Matching character missing for %s"
-msgstr "E357: 'langmap': %s \82É\91Î\89\9e\82·\82é\95¶\8e\9a\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E340: Line is becoming too long"
+msgstr "E340: \8ds\82ª\92·\82\82È\82è\89ß\82¬\82Ü\82µ\82½"
#, c-format
-msgid "E358: 'langmap': Extra characters after semicolon: %s"
-msgstr "E358: 'langmap': \83Z\83~\83R\83\8d\83\93\82Ì\8cã\82É\97]\95ª\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·: %s"
-
-msgid "cannot open "
-msgstr "\8aJ\82¯\82Ü\82¹\82ñ "
-
-msgid "VIM: Can't open window!\n"
-msgstr "VIM: \83E\83B\83\93\83h\83E\82ð\8aJ\82¯\82Ü\82¹\82ñ!\n"
-
-msgid "Need Amigados version 2.04 or later\n"
-msgstr "Amigados\82Ì\83o\81[\83W\83\87\83\93 2.04\82©\82»\82ê\88È\8d~\82ª\95K\97v\82Å\82·\n"
+msgid "E341: Internal error: lalloc(%ld, )"
+msgstr "E341: \93à\95\94\83G\83\89\81[: lalloc(%ld,)"
#, c-format
-msgid "Need %s version %ld\n"
-msgstr "%s \82Ì\83o\81[\83W\83\87\83\93 %ld \82ª\95K\97v\82Å\82·\n"
-
-msgid "Cannot open NIL:\n"
-msgstr "NIL\82ð\8aJ\82¯\82Ü\82¹\82ñ:\n"
-
-msgid "Cannot create "
-msgstr "\8dì\90¬\82Å\82«\82Ü\82¹\82ñ "
+msgid "E342: Out of memory! (allocating %lu bytes)"
+msgstr "E342: \83\81\83\82\83\8a\82ª\91«\82è\82Ü\82¹\82ñ! (%lu \83o\83C\83g\82ð\8a\84\93\96\97v\8b\81)"
#, c-format
-msgid "Vim exiting with %d\n"
-msgstr "Vim\82Í %d \82Å\8fI\97¹\82µ\82Ü\82·\n"
-
-msgid "cannot change console mode ?!\n"
-msgstr "\83R\83\93\83\\\81[\83\8b\83\82\81[\83h\82ð\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ?!\n"
-
-msgid "mch_get_shellsize: not a console??\n"
-msgstr "mch_get_shellsize: \83R\83\93\83\\\81[\83\8b\82Å\82Í\82È\82¢??\n"
+msgid "Calling shell to execute: \"%s\""
+msgstr "\8eÀ\8ds\82Ì\82½\82ß\82É\83V\83F\83\8b\82ð\8cÄ\8fo\82µ\92\86: \"%s\""
-#. if Vim opened a window: Executing a shell may cause crashes
-msgid "E360: Cannot execute shell with -f option"
-msgstr "E360: -f \83I\83v\83V\83\87\83\93\82Å\83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ"
+msgid "E545: Missing colon"
+msgstr "E545: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "Cannot execute "
-msgstr "\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ "
+msgid "E546: Illegal mode"
+msgstr "E546: \95s\90³\82È\83\82\81[\83h\82Å\82·"
-msgid "shell "
-msgstr "\83V\83F\83\8b "
+msgid "E547: Illegal mouseshape"
+msgstr "E547: \95s\90³\82È 'mouseshape' \82Å\82·"
-msgid " returned\n"
-msgstr " \96ß\82è\82Ü\82µ\82½\n"
+msgid "E548: digit expected"
+msgstr "E548: \90\94\92l\82ª\95K\97v\82Å\82·"
-msgid "ANCHOR_BUF_SIZE too small."
-msgstr "ANCHOR_BUF_SIZE \82ª\8f¬\82³\89ß\82¬\82Ü\82·."
+msgid "E549: Illegal percentage"
+msgstr "E549: \95s\90³\82È\83p\81[\83Z\83\93\83e\81[\83W\82Å\82·"
-msgid "I/O ERROR"
-msgstr "\93ü\8fo\97Í\83G\83\89\81["
+msgid "Enter encryption key: "
+msgstr "\88Ã\8d\86\89»\97p\82Ì\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢: "
-msgid "Message"
-msgstr "\83\81\83b\83Z\81[\83W"
+msgid "Enter same key again: "
+msgstr "\82à\82¤\88ê\93x\93¯\82¶\83L\81[\82ð\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢: "
-msgid "'columns' is not 80, cannot execute external commands"
-msgstr "'columns' \82ª80\82Å\82Í\82È\82¢\82½\82ß, \8aO\95\94\83R\83}\83\93\83h\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ"
+msgid "Keys don't match!"
+msgstr "\83L\81[\82ª\88ê\92v\82µ\82Ü\82¹\82ñ"
-msgid "E237: Printer selection failed"
-msgstr "E237: \83v\83\8a\83\93\83^\82Ì\91I\91ð\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "E854: path too long for completion"
+msgstr "E854: \83p\83X\82ª\92·\89ß\82¬\82Ä\95â\8a®\82Å\82«\82Ü\82¹\82ñ"
#, c-format
-msgid "to %s on %s"
-msgstr "%s \82Ö (%s \8fã\82Ì)"
+msgid ""
+"E343: Invalid path: '**[number]' must be at the end of the path or be "
+"followed by '%s'."
+msgstr ""
+"E343: \96³\8cø\82È\83p\83X\82Å\82·: '**[\90\94\92l]' \82Ípath\82Ì\8dÅ\8cã\82© '%s' \82ª\91±\82¢\82Ä\82È\82¢\82Æ\82¢\82¯\82Ü\82¹"
+"\82ñ."
#, c-format
-msgid "E613: Unknown printer font: %s"
-msgstr "E613: \96¢\92m\82Ì\83v\83\8a\83\93\83^\83I\83v\83V\83\87\83\93\82Å\82·: %s"
+msgid "E344: Can't find directory \"%s\" in cdpath"
+msgstr "E344: cdpath\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E238: Print error: %s"
-msgstr "E238: \88ó\8dü\83G\83\89\81[: %s"
+msgid "E345: Can't find file \"%s\" in path"
+msgstr "E345: path\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Printing '%s'"
-msgstr "\88ó\8dü\82µ\82Ä\82¢\82Ü\82·: '%s'"
+msgid "E346: No more directory \"%s\" found in cdpath"
+msgstr "E346: cdpath\82É\82Í\82±\82ê\88È\8fã \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
-msgstr "E244: \95¶\8e\9a\83Z\83b\83g\96¼ \"%s\" \82Í\95s\90³\82Å\82· (\83t\83H\83\93\83g\96¼ \"%s\")"
+msgid "E347: No more file \"%s\" found in path"
+msgstr "E347: \83p\83X\82É\82Í\82±\82ê\88È\8fã \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "E245: Illegal char '%c' in font name \"%s\""
-msgstr "E245: '%c' \82Í\95s\90³\82È\95¶\8e\9a\82Å\82· (\83t\83H\83\93\83g\96¼ \"%s\")"
+msgid "Cannot connect to Netbeans #2"
+msgstr "Netbeans #2 \82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ"
-msgid "Vim: Double signal, exiting\n"
-msgstr "Vim: 2\8fd\82Ì\83V\83O\83i\83\8b\82Ì\82½\82ß, \8fI\97¹\82µ\82Ü\82·\n"
+msgid "Cannot connect to Netbeans"
+msgstr "Netbeans \82É\90Ú\91±\82Å\82«\82Ü\82¹\82ñ"
#, c-format
-msgid "Vim: Caught deadly signal %s\n"
-msgstr "Vim: \92v\96½\93I\83V\83O\83i\83\8b %s \82ð\8c\9f\92m\82µ\82Ü\82µ\82½\n"
+msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\""
+msgstr ""
+"E668: NetBeans\82Ì\90Ú\91±\8fî\95ñ\83t\83@\83C\83\8b\82Ì\83A\83N\83Z\83X\83\82\81[\83h\82É\96â\91è\82ª\82 \82è\82Ü\82·: \"%s\""
-#, c-format
-msgid "Vim: Caught deadly signal\n"
-msgstr "Vim: \92v\96½\93I\83V\83O\83i\83\8b\82ð\8c\9f\92m\82µ\82Ü\82µ\82½\n"
+msgid "read from Netbeans socket"
+msgstr "Netbeans \82Ì\83\\\83P\83b\83g\82ð\93Ç\8d\9e\82Ý"
#, c-format
-msgid "Opening the X display took %ld msec"
-msgstr "X\83T\81[\83o\82Ö\82Ì\90Ú\91±\82É %ld \83~\83\8a\95b\82©\82©\82è\82Ü\82µ\82½"
+msgid "E658: NetBeans connection lost for buffer %ld"
+msgstr "E658: \83o\83b\83t\83@ %ld \82Ì NetBeans \90Ú\91±\82ª\8e¸\82í\82ê\82Ü\82µ\82½"
-msgid ""
-"\n"
-"Vim: Got X error\n"
-msgstr ""
-"\n"
-"Vim: X \82Ì\83G\83\89\81[\82ð\8c\9f\8fo\82µ\82Ü\82µ\82½r\n"
+msgid "E838: netbeans is not supported with this GUI"
+msgstr "E838: NetBeans\82Í\82±\82ÌGUI\82É\82Í\91Î\89\9e\82µ\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Testing the X display failed"
-msgstr "X display \82Ì\83`\83F\83b\83N\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "E511: netbeans already connected"
+msgstr "E511: NetBeans\82Í\8aù\82É\90Ú\91±\82µ\82Ä\82¢\82Ü\82·"
-msgid "Opening the X display timed out"
-msgstr "X display \82Ì open \82ª\83^\83C\83\80\83A\83E\83g\82µ\82Ü\82µ\82½"
+msgid "E505: %s is read-only (add ! to override)"
+msgstr "E505: %s \82Í\93Ç\8d\9e\90ê\97p\82Å\82· (\8b\90§\8f\91\8d\9e\82É\82Í ! \82ð\92Ç\89Á)"
-msgid ""
-"\n"
-"Could not get security context for "
-msgstr ""
-"\n"
-"\83Z\83L\83\85\83\8a\83e\83B\83R\83\93\83e\83L\83X\83g\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ "
+msgid "E349: No identifier under cursor"
+msgstr "E349: \83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\82Í\8e¯\95Ê\8eq\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"Could not set security context for "
-msgstr ""
-"\n"
-"\83Z\83L\83\85\83\8a\83e\83B\83R\83\93\83e\83L\83X\83g\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ "
+msgid "E774: 'operatorfunc' is empty"
+msgstr "E774: 'operatorfunc' \83I\83v\83V\83\87\83\93\82ª\8bó\82Å\82·"
-msgid ""
-"\n"
-"Cannot execute shell "
-msgstr ""
-"\n"
-"\83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ "
+msgid "E775: Eval feature not available"
+msgstr "E775: \8e®\95]\89¿\8b@\94\\\82ª\96³\8cø\82É\82È\82Á\82Ä\82¢\82Ü\82·"
-msgid ""
-"\n"
-"Cannot execute shell sh\n"
-msgstr ""
-"\n"
-"sh \83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ\n"
+msgid "Warning: terminal cannot highlight"
+msgstr "\8cx\8d\90: \8eg\97p\82µ\82Ä\82¢\82é\92[\96\96\82Í\83n\83C\83\89\83C\83g\82Å\82«\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"shell returned "
-msgstr ""
-"\n"
-"\83V\83F\83\8b\82ª\92l\82ð\95Ô\82µ\82Ü\82µ\82½ "
+msgid "E348: No string under cursor"
+msgstr "E348: \83J\81[\83\\\83\8b\82Ì\88Ê\92u\82É\82Í\95¶\8e\9a\97ñ\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"Cannot create pipes\n"
-msgstr ""
-"\n"
-"\83p\83C\83v\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ\n"
+msgid "E352: Cannot erase folds with current 'foldmethod'"
+msgstr "E352: \8c»\8dÝ\82Ì 'foldmethod' \82Å\82Í\90Ü\8fô\82Ý\82ð\8fÁ\8b\8e\82Å\82«\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"Cannot fork\n"
-msgstr ""
-"\n"
-"fork \82Å\82«\82Ü\82¹\82ñ\n"
+msgid "E664: changelist is empty"
+msgstr "E664: \95Ï\8dX\83\8a\83X\83g\82ª\8bó\82Å\82·"
-msgid ""
-"\n"
-"Command terminated\n"
-msgstr ""
-"\n"
-"\83R\83}\83\93\83h\82ð\92\86\92f\82µ\82Ü\82µ\82½\n"
+msgid "E662: At start of changelist"
+msgstr "E662: \95Ï\8dX\83\8a\83X\83g\82Ì\90æ\93ª"
-msgid "XSMP lost ICE connection"
-msgstr "XSMP \82ªICE\90Ú\91±\82ð\8e¸\82¢\82Ü\82µ\82½"
+msgid "E663: At end of changelist"
+msgstr "E663: \95Ï\8dX\83\8a\83X\83g\82Ì\96\96\94ö"
+
+msgid "Type :quit<Enter> to exit Vim"
+msgstr "Vim\82ð\8fI\97¹\82·\82é\82É\82Í :quit<Enter> \82Æ\93ü\97Í\82µ\82Ä\82\82¾\82³\82¢"
#, c-format
-msgid "dlerror = \"%s\""
-msgstr "dlerror = \"%s\""
+msgid "1 line %sed 1 time"
+msgstr "1 \8ds\82ª %s \82Å 1 \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
-msgid "Opening the X display failed"
-msgstr "X display \82Ì open \82É\8e¸\94s\82µ\82Ü\82µ\82½"
+#, c-format
+msgid "1 line %sed %d times"
+msgstr "1 \8ds\82ª %s \82Å %d \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
-msgid "XSMP handling save-yourself request"
-msgstr "XSMP \82ªsave-yourself\97v\8b\81\82ð\8f\88\97\9d\82µ\82Ä\82¢\82Ü\82·"
+#, c-format
+msgid "%ld lines %sed 1 time"
+msgstr "%ld \8ds\82ª %s \82Å 1 \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
-msgid "XSMP opening connection"
-msgstr "XSMP \82ª\90Ú\91±\82ð\8aJ\8en\82µ\82Ä\82¢\82Ü\82·"
+#, c-format
+msgid "%ld lines %sed %d times"
+msgstr "%ld \8ds\82ª %s \82Å %d \89ñ\8f\88\97\9d\82³\82ê\82Ü\82µ\82½"
-msgid "XSMP ICE connection watch failed"
-msgstr "XSMP ICE\90Ú\91±\82ª\8e¸\94s\82µ\82½\82æ\82¤\82Å\82·"
+#, c-format
+msgid "%ld lines to indent... "
+msgstr "%ld \8ds\82ª\83C\83\93\83f\83\93\83g\82³\82ê\82Ü\82·... "
+
+msgid "1 line indented "
+msgstr "1 \8ds\82ð\83C\83\93\83f\83\93\83g\82µ\82Ü\82µ\82½"
#, c-format
-msgid "XSMP SmcOpenConnection failed: %s"
-msgstr "XSMP SmcOpenConnection\82ª\8e¸\94s\82µ\82Ü\82µ\82½: %s"
+msgid "%ld lines indented "
+msgstr "%ld \8ds\82ð\83C\83\93\83f\83\93\83g\82µ\82Ü\82µ\82½"
-msgid "At line"
-msgstr "\8ds"
+msgid "E748: No previously used register"
+msgstr "E748: \82Ü\82¾\83\8c\83W\83X\83^\82ð\8eg\97p\82µ\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Could not load vim32.dll!"
-msgstr "vim32.dll \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+#. must display the prompt
+msgid "cannot yank; delete anyway"
+msgstr "\83\84\83\93\83N\82Å\82«\82Ü\82¹\82ñ; \82Æ\82É\82©\82\8fÁ\8b\8e"
-msgid "VIM Error"
-msgstr "VIM\83G\83\89\81["
+msgid "1 line changed"
+msgstr "1 \8ds\82ª\95Ï\8dX\82³\82ê\82Ü\82µ\82½"
-msgid "Could not fix up function pointers to the DLL!"
-msgstr "DLL\82©\82ç\8aÖ\90\94\83|\83C\83\93\83^\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+#, c-format
+msgid "%ld lines changed"
+msgstr "%ld \8ds\82ª\95Ï\8dX\82³\82ê\82Ü\82µ\82½"
#, c-format
-msgid "shell returned %d"
-msgstr "\83V\83F\83\8b\82ª\83R\81[\83h %d \82Å\8fI\97¹\82µ\82Ü\82µ\82½"
+msgid "freeing %ld lines"
+msgstr "%ld \8ds\82ð\89ð\95ú\92\86"
+
+msgid "block of 1 line yanked"
+msgstr "1 \8ds\82Ì\83u\83\8d\83b\83N\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
+
+msgid "1 line yanked"
+msgstr "1 \8ds\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
#, c-format
-msgid "Vim: Caught %s event\n"
-msgstr "Vim: \83C\83x\83\93\83g %s \82ð\8c\9f\92m\n"
+msgid "block of %ld lines yanked"
+msgstr "%ld \8ds\82Ì\83u\83\8d\83b\83N\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
-msgid "close"
-msgstr "\95Â\82¶\82é"
+#, c-format
+msgid "%ld lines yanked"
+msgstr "%ld \8ds\82ª\83\84\83\93\83N\82³\82ê\82Ü\82µ\82½"
-msgid "logoff"
-msgstr "\83\8d\83O\83I\83t"
+#, c-format
+msgid "E353: Nothing in register %s"
+msgstr "E353: \83\8c\83W\83X\83^ %s \82É\82Í\89½\82à\82 \82è\82Ü\82¹\82ñ"
-msgid "shutdown"
-msgstr "\83V\83\83\83b\83g\83_\83E\83\93"
+#. Highlight title
+msgid ""
+"\n"
+"--- Registers ---"
+msgstr ""
+"\n"
+"--- \83\8c\83W\83X\83^ ---"
-msgid "E371: Command not found"
-msgstr "E371: \83R\83}\83\93\83h\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Illegal register name"
+msgstr "\95s\90³\82È\83\8c\83W\83X\83^\96¼"
msgid ""
-"VIMRUN.EXE not found in your $PATH.\n"
-"External commands will not pause after completion.\n"
-"See :help win32-vimrun for more information."
+"\n"
+"# Registers:\n"
msgstr ""
-"VIMRUN.EXE\82ª $PATH \82Ì\92\86\82É\82Ý\82Â\82©\82è\82Ü\82¹\82ñ.\n"
-"\8aO\95\94\83R\83}\83\93\83h\82Ì\8fI\97¹\8cã\82É\88ê\8e\9e\92â\8e~\82ð\82µ\82Ü\82¹\82ñ.\n"
-"\8fÚ\8d×\82Í :help win32-vimrun \82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢."
+"\n"
+"# \83\8c\83W\83X\83^:\n"
-msgid "Vim Warning"
-msgstr "Vim\82Ì\8cx\8d\90"
+#, c-format
+msgid "E574: Unknown register type %d"
+msgstr "E574: \96¢\92m\82Ì\83\8c\83W\83X\83^\8c^ %d \82Å\82·"
#, c-format
-msgid "E372: Too many %%%c in format string"
-msgstr "E372: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É %%%c \82ª\91½\89ß\82¬\82Ü\82·"
+msgid "%ld Cols; "
+msgstr "%ld \97ñ; "
#, c-format
-msgid "E373: Unexpected %%%c in format string"
-msgstr "E373: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É\97\\\8aú\82¹\82Ê %%%c \82ª\82 \82è\82Ü\82µ\82½"
+msgid "Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"
+msgstr "\91I\91ð %s%ld / %ld \8ds; %ld / %ld \92P\8cê; %ld / %ld \83o\83C\83g"
-msgid "E374: Missing ] in format string"
-msgstr "E374: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
+#, c-format
+msgid ""
+"Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld "
+"Bytes"
+msgstr "\91I\91ð %s%ld / %ld \8ds; %ld / %ld \92P\8cê; %ld / %ld \95¶\8e\9a; %ld / %ld \83o\83C\83g"
#, c-format
-msgid "E375: Unsupported %%%c in format string"
-msgstr "E375: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82Å\82Í %%%c \82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ"
+msgid "Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"
+msgstr "\97ñ %s / %s; \8ds %ld of %ld; \92P\8cê %ld / %ld; \83o\83C\83g %ld / %ld"
#, c-format
-msgid "E376: Invalid %%%c in format string prefix"
-msgstr "E376: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82Ì\91O\92u\82É\96³\8cø\82È %%%c \82ª\82 \82è\82Ü\82·"
+msgid ""
+"Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of "
+"%ld"
+msgstr ""
+"\97ñ %s / %s; \8ds %ld / %ld; \92P\8cê %ld / %ld; \95¶\8e\9a %ld / %ld; \83o\83C\83g %ld of %ld"
#, c-format
-msgid "E377: Invalid %%%c in format string"
-msgstr "E377: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É\96³\8cø\82È %%%c \82ª\82 \82è\82Ü\82·"
+msgid "(+%ld for BOM)"
+msgstr "(+%ld for BOM)"
-msgid "E378: 'errorformat' contains no pattern"
-msgstr "E378: 'errorformat' \82É\83p\83^\81[\83\93\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "%<%f%h%m%=Page %N"
+msgstr "%<%f%h%m%=%N \83y\81[\83W"
-msgid "E379: Missing or empty directory name"
-msgstr "E379: \83f\83B\83\8c\83N\83g\83\8a\96¼\82ª\96³\82¢\82©\8bó\82Å\82·"
+msgid "Thanks for flying Vim"
+msgstr "Vim \82ð\8eg\82Á\82Ä\82\82ê\82Ä\82 \82è\82ª\82Æ\82¤"
-msgid "E553: No more items"
-msgstr "E553: \97v\91f\82ª\82à\82¤\82 \82è\82Ü\82¹\82ñ"
+msgid "E518: Unknown option"
+msgstr "E518: \96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·"
-#, c-format
-msgid "(%d of %d)%s%s: "
-msgstr "(%d of %d)%s%s: "
+msgid "E519: Option not supported"
+msgstr "E519: \83I\83v\83V\83\87\83\93\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid " (line deleted)"
-msgstr " (\8ds\82ª\8dí\8f\9c\82³\82ê\82Ü\82µ\82½)"
+msgid "E520: Not allowed in a modeline"
+msgstr "E520: modeline \82Å\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
-msgid "E380: At bottom of quickfix stack"
-msgstr "E380: quickfix \83X\83^\83b\83N\82Ì\96\96\94ö\82Å\82·"
+msgid "E846: Key code not set"
+msgstr "E846: \83L\81[\83R\81[\83h\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "E381: At top of quickfix stack"
-msgstr "E381: quickfix \83X\83^\83b\83N\82Ì\90æ\93ª\82Å\82·"
+msgid "E521: Number required after ="
+msgstr "E521: = \82Ì\8cã\82É\82Í\90\94\8e\9a\82ª\95K\97v\82Å\82·"
+
+msgid "E522: Not found in termcap"
+msgstr "E522: termcap \93à\82É\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "error list %d of %d; %d errors"
-msgstr "\83G\83\89\81[\88ê\97\97 %d of %d; %d \8cÂ\83G\83\89\81["
+msgid "E539: Illegal character <%s>"
+msgstr "E539: \95s\90³\82È\95¶\8e\9a\82Å\82· <%s>"
-msgid "E382: Cannot write, 'buftype' option is set"
-msgstr "E382: 'buftype' \83I\83v\83V\83\87\83\93\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82é\82Ì\82Å\8f\91\8d\9e\82Ý\82Ü\82¹\82ñ"
+msgid "E529: Cannot set 'term' to empty string"
+msgstr "E529: 'term' \82É\82Í\8bó\95¶\8e\9a\97ñ\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
-msgid "Error file"
-msgstr "\83G\83\89\81[\83t\83@\83C\83\8b"
+msgid "E530: Cannot change term in GUI"
+msgstr "E530: GUI\82Å\82Í 'term' \82ð\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
-msgid "E683: File name missing or invalid pattern"
-msgstr "E683: \83t\83@\83C\83\8b\96¼\82ª\96³\82¢\82©\96³\8cø\82È\83p\83^\81[\83\93\82Å\82·"
+msgid "E531: Use \":gui\" to start the GUI"
+msgstr "E531: GUI\82ð\83X\83^\81[\83g\82·\82é\82É\82Í \":gui\" \82ð\8eg\97p\82µ\82Ä\82\82¾\82³\82¢"
-#, c-format
-msgid "Cannot open file \"%s\""
-msgstr "\83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "E589: 'backupext' and 'patchmode' are equal"
+msgstr "E589: 'backupext' \82Æ 'patchmode' \82ª\93¯\82¶\82Å\82·"
-msgid "E681: Buffer is not loaded"
-msgstr "E681: \83o\83b\83t\83@\82Í\93Ç\82Ý\8d\9e\82Ü\82ê\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "E834: Conflicts with value of 'listchars'"
+msgstr "E834: 'listchars'\82Ì\92l\82É\96µ\8f\82\82ª\82 \82è\82Ü\82·"
-msgid "E777: String or List expected"
-msgstr "E777: \95¶\8e\9a\97ñ\82©\83\8a\83X\83g\82ª\95K\97v\82Å\82·"
+msgid "E835: Conflicts with value of 'fillchars'"
+msgstr "E835: 'fillchars'\82Ì\92l\82É\96µ\8f\82\82ª\82 \82è\82Ü\82·"
-#, c-format
-msgid "E369: invalid item in %s%%[]"
-msgstr "E369: \96³\8cø\82È\8d\80\96Ú\82Å\82·: %s%%[]"
+msgid "E617: Cannot be changed in the GTK+ 2 GUI"
+msgstr "E617: GTK+2 GUI\82Å\82Í\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
-msgid "E339: Pattern too long"
-msgstr "E339: \83p\83^\81[\83\93\82ª\92·\89ß\82¬\82Ü\82·"
+msgid "E524: Missing colon"
+msgstr "E524: \83R\83\8d\83\93\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E50: Too many \\z("
-msgstr "E50: \\z( \82ª\91½\89ß\82¬\82Ü\82·"
+msgid "E525: Zero length string"
+msgstr "E525: \95¶\8e\9a\97ñ\82Ì\92·\82³\82ª\83[\83\8d\82Å\82·"
#, c-format
-msgid "E51: Too many %s("
-msgstr "E51: %s( \82ª\91½\89ß\82¬\82Ü\82·"
+msgid "E526: Missing number after <%s>"
+msgstr "E526: <%s> \82Ì\8cã\82É\90\94\8e\9a\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E52: Unmatched \\z("
-msgstr "E52: \\z( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E527: Missing comma"
+msgstr "E527: \83J\83\93\83}\82ª\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "E53: Unmatched %s%%("
-msgstr "E53: %s%%( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E528: Must specify a ' value"
+msgstr "E528: ' \82Ì\92l\82ð\8ew\92è\82µ\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "E54: Unmatched %s("
-msgstr "E54: %s( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E595: contains unprintable or wide character"
+msgstr "E595: \95\\\8e¦\82Å\82«\82È\82¢\95¶\8e\9a\82©\83\8f\83C\83h\95¶\8e\9a\82ð\8aÜ\82ñ\82Å\82¢\82Ü\82·"
-#, c-format
-msgid "E55: Unmatched %s)"
-msgstr "E55: %s) \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E596: Invalid font(s)"
+msgstr "E596: \96³\8cø\82È\83t\83H\83\93\83g\82Å\82·"
-#, c-format
-msgid "E59: invalid character after %s@"
-msgstr "E59: %s@ \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+msgid "E597: can't select fontset"
+msgstr "E597: \83t\83H\83\93\83g\83Z\83b\83g\82ð\91I\91ð\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E60: Too many complex %s{...}s"
-msgstr "E60: \95¡\8eG\82È %s{...} \82ª\91½\89ß\82¬\82Ü\82·"
+msgid "E598: Invalid fontset"
+msgstr "E598: \96³\8cø\82È\83t\83H\83\93\83g\83Z\83b\83g\82Å\82·"
-#, c-format
-msgid "E61: Nested %s*"
-msgstr "E61:%s* \82ª\93ü\82ê\8eq\82É\82È\82Á\82Ä\82¢\82Ü\82·"
+msgid "E533: can't select wide font"
+msgstr "E533: \83\8f\83C\83h\83t\83H\83\93\83g\82ð\91I\91ð\82Å\82«\82Ü\82¹\82ñ"
+
+msgid "E534: Invalid wide font"
+msgstr "E534: \96³\8cø\82È\83\8f\83C\83h\83t\83H\83\93\83g\82Å\82·"
#, c-format
-msgid "E62: Nested %s%c"
-msgstr "E62:%s%c \82ª\93ü\82ê\8eq\82É\82È\82Á\82Ä\82¢\82Ü\82·"
+msgid "E535: Illegal character after <%c>"
+msgstr "E535: <%c> \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
-#
-msgid "E63: invalid use of \\_"
-msgstr "E63: \\_ \82Ì\96³\8cø\82È\8eg\97p\95û\96@\82Å\82·"
+msgid "E536: comma required"
+msgstr "E536: \83J\83\93\83}\82ª\95K\97v\82Å\82·"
#, c-format
-msgid "E64: %s%c follows nothing"
-msgstr "E64:%s%c \82Ì\8cã\82É\82È\82É\82à\82 \82è\82Ü\82¹\82ñ"
+msgid "E537: 'commentstring' must be empty or contain %s"
+msgstr "E537: 'commentstring' \82Í\8bó\82Å\82 \82é\82© %s \82ð\8aÜ\82Þ\95K\97v\82ª\82 \82è\82Ü\82·"
-#
-msgid "E65: Illegal back reference"
-msgstr "E65: \95s\90³\82È\8cã\95û\8eQ\8fÆ\82Å\82·"
+msgid "E538: No mouse support"
+msgstr "E538: \83}\83E\83X\82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ"
-#
-msgid "E66: \\z( not allowed here"
-msgstr "E66: \\z( \82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E540: Unclosed expression sequence"
+msgstr "E540: \8e®\82ª\8fI\97¹\82µ\82Ä\82¢\82Ü\82¹\82ñ"
-#
-msgid "E67: \\z1 et al. not allowed here"
-msgstr "E67: \\z1 \82»\82Ì\91¼\82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E541: too many items"
+msgstr "E541: \97v\91f\82ª\91½\89ß\82¬\82Ü\82·"
-#
-msgid "E68: Invalid character after \\z"
-msgstr "E68: \\z \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+msgid "E542: unbalanced groups"
+msgstr "E542: \83O\83\8b\81[\83v\82ª\92Þ\8d\87\82¢\82Ü\82¹\82ñ"
-#
-#, c-format
-msgid "E69: Missing ] after %s%%["
-msgstr "E69: %s%%[ \82Ì\8cã\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E590: A preview window already exists"
+msgstr "E590: \83v\83\8c\83r\83\85\81[\83E\83B\83\93\83h\83E\82ª\8aù\82É\91¶\8dÝ\82µ\82Ü\82·"
+
+msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'"
+msgstr ""
+"W17: \83A\83\89\83r\83A\95¶\8e\9a\82É\82ÍUTF-8\82ª\95K\97v\82È\82Ì\82Å, ':set encoding=utf-8' \82µ\82Ä\82\82¾\82³\82¢"
#, c-format
-msgid "E70: Empty %s%%[]"
-msgstr "E70: %s%%[] \82ª\8bó\82Å\82·"
+msgid "E593: Need at least %d lines"
+msgstr "E593: \8dÅ\92á %d \82Ì\8ds\90\94\82ª\95K\97v\82Å\82·"
-#
#, c-format
-msgid "E678: Invalid character after %s%%[dxouU]"
-msgstr "E678: %s%%[dxouU] \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+msgid "E594: Need at least %d columns"
+msgstr "E594: \8dÅ\92á %d \82Ì\83J\83\89\83\80\95\9d\82ª\95K\97v\82Å\82·"
-#
#, c-format
-msgid "E71: Invalid character after %s%%"
-msgstr "E71: %s%% \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+msgid "E355: Unknown option: %s"
+msgstr "E355: \96¢\92m\82Ì\83I\83v\83V\83\87\83\93\82Å\82·: %s"
-#
+#. There's another character after zeros or the string
+#. * is empty. In both cases, we are trying to set a
+#. * num option using a string.
#, c-format
-msgid "E769: Missing ] after %s["
-msgstr "E769: %s[ \82Ì\8cã\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E521: Number required: &%s = '%s'"
+msgstr "E521: \90\94\8e\9a\82ª\95K\97v\82Å\82·: &%s = '%s'"
+
+msgid ""
+"\n"
+"--- Terminal codes ---"
+msgstr ""
+"\n"
+"--- \92[\96\96\83R\81[\83h ---"
+
+msgid ""
+"\n"
+"--- Global option values ---"
+msgstr ""
+"\n"
+"--- \83O\83\8d\81[\83o\83\8b\83I\83v\83V\83\87\83\93\92l ---"
+
+msgid ""
+"\n"
+"--- Local option values ---"
+msgstr ""
+"\n"
+"--- \83\8d\81[\83J\83\8b\83I\83v\83V\83\87\83\93\92l ---"
+
+msgid ""
+"\n"
+"--- Options ---"
+msgstr ""
+"\n"
+"--- \83I\83v\83V\83\87\83\93 ---"
+
+msgid "E356: get_varp ERROR"
+msgstr "E356: get_varp \83G\83\89\81["
#, c-format
-msgid "E554: Syntax error in %s{...}"
-msgstr "E554: %s{...} \93à\82É\95¶\96@\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
+msgid "E357: 'langmap': Matching character missing for %s"
+msgstr "E357: 'langmap': %s \82É\91Î\89\9e\82·\82é\95¶\8e\9a\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "External submatches:\n"
-msgstr "\8aO\95\94\82Ì\95\94\95ª\8aY\93\96:\n"
+#, c-format
+msgid "E358: 'langmap': Extra characters after semicolon: %s"
+msgstr "E358: 'langmap': \83Z\83~\83R\83\8d\83\93\82Ì\8cã\82É\97]\95ª\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·: %s"
-msgid " VREPLACE"
-msgstr " \89¼\91z\92u\8a·"
+msgid "cannot open "
+msgstr "\8aJ\82¯\82Ü\82¹\82ñ "
-msgid " REPLACE"
-msgstr " \92u\8a·"
+msgid "VIM: Can't open window!\n"
+msgstr "VIM: \83E\83B\83\93\83h\83E\82ð\8aJ\82¯\82Ü\82¹\82ñ!\n"
-msgid " REVERSE"
-msgstr " \94½\93]"
+msgid "Need Amigados version 2.04 or later\n"
+msgstr "Amigados\82Ì\83o\81[\83W\83\87\83\93 2.04\82©\82»\82ê\88È\8d~\82ª\95K\97v\82Å\82·\n"
-msgid " INSERT"
-msgstr " \91}\93ü"
+#, c-format
+msgid "Need %s version %ld\n"
+msgstr "%s \82Ì\83o\81[\83W\83\87\83\93 %ld \82ª\95K\97v\82Å\82·\n"
-msgid " (insert)"
-msgstr " (\91}\93ü)"
+msgid "Cannot open NIL:\n"
+msgstr "NIL\82ð\8aJ\82¯\82Ü\82¹\82ñ:\n"
-msgid " (replace)"
-msgstr " (\92u\8a·)"
+msgid "Cannot create "
+msgstr "\8dì\90¬\82Å\82«\82Ü\82¹\82ñ "
-msgid " (vreplace)"
-msgstr " (\89¼\91z\92u\8a·)"
+#, c-format
+msgid "Vim exiting with %d\n"
+msgstr "Vim\82Í %d \82Å\8fI\97¹\82µ\82Ü\82·\n"
-msgid " Hebrew"
-msgstr " \83w\83u\83\89\83C"
+msgid "cannot change console mode ?!\n"
+msgstr "\83R\83\93\83\\\81[\83\8b\83\82\81[\83h\82ð\95Ï\8dX\82Å\82«\82Ü\82¹\82ñ?!\n"
-msgid " Arabic"
-msgstr " \83A\83\89\83r\83A"
+msgid "mch_get_shellsize: not a console??\n"
+msgstr "mch_get_shellsize: \83R\83\93\83\\\81[\83\8b\82Å\82Í\82È\82¢??\n"
-msgid " (lang)"
-msgstr " (\8c¾\8cê)"
+#. if Vim opened a window: Executing a shell may cause crashes
+msgid "E360: Cannot execute shell with -f option"
+msgstr "E360: -f \83I\83v\83V\83\87\83\93\82Å\83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ"
-msgid " (paste)"
-msgstr " (\93\\\82è\95t\82¯)"
+msgid "Cannot execute "
+msgstr "\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ "
-msgid " VISUAL"
-msgstr " \83r\83W\83\85\83A\83\8b"
+msgid "shell "
+msgstr "\83V\83F\83\8b "
-msgid " VISUAL LINE"
-msgstr " \83r\83W\83\85\83A\83\8b \8ds"
+msgid " returned\n"
+msgstr " \96ß\82è\82Ü\82µ\82½\n"
-msgid " VISUAL BLOCK"
-msgstr " \83r\83W\83\85\83A\83\8b \8bé\8c`"
+msgid "ANCHOR_BUF_SIZE too small."
+msgstr "ANCHOR_BUF_SIZE \82ª\8f¬\82³\89ß\82¬\82Ü\82·."
-msgid " SELECT"
-msgstr " \83Z\83\8c\83N\83g"
+msgid "I/O ERROR"
+msgstr "\93ü\8fo\97Í\83G\83\89\81["
-msgid " SELECT LINE"
-msgstr " \8ds\8ew\8cü\91I\91ð"
+msgid "Message"
+msgstr "\83\81\83b\83Z\81[\83W"
-msgid " SELECT BLOCK"
-msgstr " \8bé\8c`\91I\91ð"
+msgid "'columns' is not 80, cannot execute external commands"
+msgstr "'columns' \82ª80\82Å\82Í\82È\82¢\82½\82ß, \8aO\95\94\83R\83}\83\93\83h\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ"
-msgid "recording"
-msgstr "\8bL\98^\92\86"
+msgid "E237: Printer selection failed"
+msgstr "E237: \83v\83\8a\83\93\83^\82Ì\91I\91ð\82É\8e¸\94s\82µ\82Ü\82µ\82½"
#, c-format
-msgid "E383: Invalid search string: %s"
-msgstr "E383: \96³\8cø\82È\8c\9f\8dõ\95¶\8e\9a\97ñ\82Å\82·: %s"
+msgid "to %s on %s"
+msgstr "%s \82Ö (%s \8fã\82Ì)"
#, c-format
-msgid "E384: search hit TOP without match for: %s"
-msgstr "E384: \8fã\82Ü\82Å\8c\9f\8dõ\82µ\82½\82¯\82ê\82Ç\8aY\93\96\89Ó\8f\8a\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "E613: Unknown printer font: %s"
+msgstr "E613: \96¢\92m\82Ì\83v\83\8a\83\93\83^\83I\83v\83V\83\87\83\93\82Å\82·: %s"
#, c-format
-msgid "E385: search hit BOTTOM without match for: %s"
-msgstr "E385: \89º\82Ü\82Å\8c\9f\8dõ\82µ\82½\82¯\82ê\82Ç\8aY\93\96\89Ó\8f\8a\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "E238: Print error: %s"
+msgstr "E238: \88ó\8dü\83G\83\89\81[: %s"
-msgid "E386: Expected '?' or '/' after ';'"
-msgstr "E386: ';' \82Ì\82 \82Æ\82É\82Í '?' \82© '/' \82ª\8aú\91Ò\82³\82ê\82Ä\82¢\82é"
-
-msgid " (includes previously listed match)"
-msgstr " (\91O\82É\97ñ\8b\93\82µ\82½\8aY\93\96\89Ó\8f\8a\82ð\8aÜ\82Þ)"
-
-#. cursor at status line
-msgid "--- Included files "
-msgstr "--- \83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b"
-
-msgid "not found "
-msgstr "\82Ý\82Â\82©\82è\82Ü\82¹\82ñ "
+#, c-format
+msgid "Printing '%s'"
+msgstr "\88ó\8dü\82µ\82Ä\82¢\82Ü\82·: '%s'"
-msgid "in path ---\n"
-msgstr "\83p\83X\82É ----\n"
+#, c-format
+msgid "E244: Illegal charset name \"%s\" in font name \"%s\""
+msgstr "E244: \95¶\8e\9a\83Z\83b\83g\96¼ \"%s\" \82Í\95s\90³\82Å\82· (\83t\83H\83\93\83g\96¼ \"%s\")"
-msgid " (Already listed)"
-msgstr " (\8aù\82É\97ñ\8b\93)"
+#, c-format
+msgid "E245: Illegal char '%c' in font name \"%s\""
+msgstr "E245: '%c' \82Í\95s\90³\82È\95¶\8e\9a\82Å\82· (\83t\83H\83\93\83g\96¼ \"%s\")"
-msgid " NOT FOUND"
-msgstr " \82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "Vim: Double signal, exiting\n"
+msgstr "Vim: 2\8fd\82Ì\83V\83O\83i\83\8b\82Ì\82½\82ß, \8fI\97¹\82µ\82Ü\82·\n"
#, c-format
-msgid "Scanning included file: %s"
-msgstr "\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ð\83X\83L\83\83\83\93\92\86: %s"
+msgid "Vim: Caught deadly signal %s\n"
+msgstr "Vim: \92v\96½\93I\83V\83O\83i\83\8b %s \82ð\8c\9f\92m\82µ\82Ü\82µ\82½\n"
#, c-format
-msgid "Searching included file %s"
-msgstr "\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ð\83X\83L\83\83\83\93\92\86 %s"
+msgid "Vim: Caught deadly signal\n"
+msgstr "Vim: \92v\96½\93I\83V\83O\83i\83\8b\82ð\8c\9f\92m\82µ\82Ü\82µ\82½\n"
-msgid "E387: Match is on current line"
-msgstr "E387: \8c»\8dÝ\8ds\82É\8aY\93\96\82ª\82 \82è\82Ü\82·"
+#, c-format
+msgid "Opening the X display took %ld msec"
+msgstr "X\83T\81[\83o\82Ö\82Ì\90Ú\91±\82É %ld \83~\83\8a\95b\82©\82©\82è\82Ü\82µ\82½"
-msgid "All included files were found"
-msgstr "\91S\82Ä\82Ì\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ª\82Ý\82Â\82©\82è\82Ü\82µ\82½"
+msgid ""
+"\n"
+"Vim: Got X error\n"
+msgstr ""
+"\n"
+"Vim: X \82Ì\83G\83\89\81[\82ð\8c\9f\8fo\82µ\82Ü\82µ\82½r\n"
-msgid "No included files"
-msgstr "\83C\83\93\83N\83\8b\81[\83h\83t\83@\83C\83\8b\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "Testing the X display failed"
+msgstr "X display \82Ì\83`\83F\83b\83N\82É\8e¸\94s\82µ\82Ü\82µ\82½"
-msgid "E388: Couldn't find definition"
-msgstr "E388: \92è\8b`\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+msgid "Opening the X display timed out"
+msgstr "X display \82Ì open \82ª\83^\83C\83\80\83A\83E\83g\82µ\82Ü\82µ\82½"
-msgid "E389: Couldn't find pattern"
-msgstr "E389: \83p\83^\81[\83\93\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Could not get security context for "
+msgstr ""
+"\n"
+"\83Z\83L\83\85\83\8a\83e\83B\83R\83\93\83e\83L\83X\83g\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ "
-msgid "Substitute "
-msgstr "Substitute "
+msgid ""
+"\n"
+"Could not set security context for "
+msgstr ""
+"\n"
+"\83Z\83L\83\85\83\8a\83e\83B\83R\83\93\83e\83L\83X\83g\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ "
-#, c-format
msgid ""
"\n"
-"# Last %sSearch Pattern:\n"
-"~"
+"Cannot execute shell "
msgstr ""
"\n"
-"# \8dÅ\8cã\82Ì %s\8c\9f\8dõ\83p\83^\81[\83\93:\n"
-"~"
+"\83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ "
-msgid "E759: Format error in spell file"
-msgstr "E759: \83X\83y\83\8b\83t\83@\83C\83\8b\82Ì\8f\91\8e®\83G\83\89\81[\82Å\82·"
+msgid ""
+"\n"
+"Cannot execute shell sh\n"
+msgstr ""
+"\n"
+"sh \83V\83F\83\8b\82ð\8eÀ\8ds\82Å\82«\82Ü\82¹\82ñ\n"
-msgid "E758: Truncated spell file"
-msgstr "E758: \83X\83y\83\8b\83t\83@\83C\83\8b\82ª\90Ø\8eæ\82ç\82ê\82Ä\82¢\82é\82æ\82¤\82Å\82·"
+msgid ""
+"\n"
+"shell returned "
+msgstr ""
+"\n"
+"\83V\83F\83\8b\82ª\92l\82ð\95Ô\82µ\82Ü\82µ\82½ "
-#, c-format
-msgid "Trailing text in %s line %d: %s"
-msgstr "%s (%d \8ds\96Ú) \82É\91±\82\83e\83L\83X\83g: %s"
+msgid ""
+"\n"
+"Cannot create pipes\n"
+msgstr ""
+"\n"
+"\83p\83C\83v\82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ\n"
-#, c-format
-msgid "Affix name too long in %s line %d: %s"
-msgstr "%s (%d \8ds\96Ú) \82Ì affix \96¼\82ª\92·\89ß\82¬\82Ü\82·: %s"
+msgid ""
+"\n"
+"Cannot fork\n"
+msgstr ""
+"\n"
+"fork \82Å\82«\82Ü\82¹\82ñ\n"
-msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgid ""
+"\n"
+"Command terminated\n"
msgstr ""
-"E761: affix\83t\83@\83C\83\8b\82Ì FOL, LOW \82à\82µ\82\82Í UPP \82Ì\83t\83H\81[\83}\83b\83g\82É\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
+"\n"
+"\83R\83}\83\93\83h\82ð\92\86\92f\82µ\82Ü\82µ\82½\n"
-msgid "E762: Character in FOL, LOW or UPP is out of range"
-msgstr "E762: FOL, LOW \82à\82µ\82\82Í UPP \82Ì\95¶\8e\9a\82ª\94Í\88Í\8aO\82Å\82·"
+msgid "XSMP lost ICE connection"
+msgstr "XSMP \82ªICE\90Ú\91±\82ð\8e¸\82¢\82Ü\82µ\82½"
-msgid "Compressing word tree..."
-msgstr "\92P\8cê\83c\83\8a\81[\82ð\88³\8fk\82µ\82Ä\82¢\82Ü\82·..."
+#, c-format
+msgid "dlerror = \"%s\""
+msgstr "dlerror = \"%s\""
-msgid "E756: Spell checking is not enabled"
-msgstr "E756: \83X\83y\83\8b\83`\83F\83b\83N\82Í\96³\8cø\89»\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid "Opening the X display failed"
+msgstr "X display \82Ì open \82É\8e¸\94s\82µ\82Ü\82µ\82½"
-#, c-format
-msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
-msgstr ""
-"\8cx\8d\90: \92P\8cê\83\8a\83X\83g \"%s_%s.spl\" \82¨\82æ\82Ñ \"%s_ascii.spl\" \82Í\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "XSMP handling save-yourself request"
+msgstr "XSMP \82ªsave-yourself\97v\8b\81\82ð\8f\88\97\9d\82µ\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""
-msgstr ""
-"\8cx\8d\90: \92P\8cê\83\8a\83X\83g \"%s.%s.spl\" \82¨\82æ\82Ñ \"%s.ascii.spl\" \82Í\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
+msgid "XSMP opening connection"
+msgstr "XSMP \82ª\90Ú\91±\82ð\8aJ\8en\82µ\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "Reading spell file \"%s\""
-msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b \"%s\" \82ð\93Ç\8d\9e\92\86"
+msgid "XSMP ICE connection watch failed"
+msgstr "XSMP ICE\90Ú\91±\82ª\8e¸\94s\82µ\82½\82æ\82¤\82Å\82·"
-msgid "E757: This does not look like a spell file"
-msgstr "E757: \83X\83y\83\8b\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·"
+#, c-format
+msgid "XSMP SmcOpenConnection failed: %s"
+msgstr "XSMP SmcOpenConnection\82ª\8e¸\94s\82µ\82Ü\82µ\82½: %s"
-msgid "E771: Old spell file, needs to be updated"
-msgstr "E771: \8cÃ\82¢\83X\83y\83\8b\83t\83@\83C\83\8b\82È\82Ì\82Å, \83A\83b\83v\83f\81[\83g\82µ\82Ä\82\82¾\82³\82¢"
+msgid "At line"
+msgstr "\8ds"
-msgid "E772: Spell file is for newer version of Vim"
-msgstr "E772: \82æ\82è\90V\82µ\82¢\83o\81[\83W\83\87\83\93\82Ì Vim \97p\82Ì\83X\83y\83\8b\83t\83@\83C\83\8b\82Å\82·"
+msgid "Could not load vim32.dll!"
+msgstr "vim32.dll \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
-msgid "E770: Unsupported section in spell file"
-msgstr "E770: \83X\83y\83\8b\83t\83@\83C\83\8b\82É\83T\83|\81[\83g\82µ\82Ä\82¢\82È\82¢\83Z\83N\83V\83\87\83\93\82ª\82 \82è\82Ü\82·"
+msgid "VIM Error"
+msgstr "VIM\83G\83\89\81["
-#, c-format
-msgid "Warning: region %s not supported"
-msgstr "\8cx\8d\909: %s \82Æ\82¢\82¤\94Í\88Í\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "Could not fix up function pointers to the DLL!"
+msgstr "DLL\82©\82ç\8aÖ\90\94\83|\83C\83\93\83^\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
#, c-format
-msgid "Reading affix file %s ..."
-msgstr "affix \83t\83@\83C\83\8b %s \82ð\93Ç\8d\9e\92\86..."
+msgid "shell returned %d"
+msgstr "\83V\83F\83\8b\82ª\83R\81[\83h %d \82Å\8fI\97¹\82µ\82Ü\82µ\82½"
#, c-format
-msgid "Conversion failure for word in %s line %d: %s"
-msgstr "%s (%d \8ds\96Ú) \82Ì\92P\8cê\82ð\95Ï\8a·\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½: %s"
+msgid "Vim: Caught %s event\n"
+msgstr "Vim: \83C\83x\83\93\83g %s \82ð\8c\9f\92m\n"
-#, c-format
-msgid "Conversion in %s not supported: from %s to %s"
-msgstr "%s \93à\82Ì\8e\9f\82Ì\95Ï\8a·\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ: %s \82©\82ç %s \82Ö"
+msgid "close"
+msgstr "\95Â\82¶\82é"
-#, c-format
-msgid "Conversion in %s not supported"
-msgstr "%s \93à\82Ì\95Ï\8a·\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "logoff"
+msgstr "\83\8d\83O\83I\83t"
-#, c-format
-msgid "Invalid value for FLAG in %s line %d: %s"
-msgstr "%s \93à\82Ì %d \8ds\96Ú\82Ì FLAG \82É\96³\8cø\82È\92l\82ª\82 \82è\82Ü\82·: %s"
+msgid "shutdown"
+msgstr "\83V\83\83\83b\83g\83_\83E\83\93"
-#, c-format
-msgid "FLAG after using flags in %s line %d: %s"
-msgstr "%s \93à\82Ì %d \8ds\96Ú\82É\83t\83\89\83O\82Ì\93ñ\8fd\8eg\97p\82ª\82 \82è\82Ü\82·: %s"
+msgid "E371: Command not found"
+msgstr "E371: \83R\83}\83\93\83h\82ª\82 \82è\82Ü\82¹\82ñ"
-#, c-format
msgid ""
-"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line "
-"%d"
+"VIMRUN.EXE not found in your $PATH.\n"
+"External commands will not pause after completion.\n"
+"See :help win32-vimrun for more information."
msgstr ""
-"%s \82Ì %d \8ds\96Ú\82Ì PFX \8d\80\96Ú\82Ì\8cã\82Ì COMPOUNDFORBIDFLAG \82Ì\92è\8b`\82Í\8cë\82Á\82½\8c\8b\89Ê\82ð\90¶\82¶\82é"
-"\82±\82Æ\82ª\82 \82è\82Ü\82·"
+"VIMRUN.EXE\82ª $PATH \82Ì\92\86\82É\82Ý\82Â\82©\82è\82Ü\82¹\82ñ.\n"
+"\8aO\95\94\83R\83}\83\93\83h\82Ì\8fI\97¹\8cã\82É\88ê\8e\9e\92â\8e~\82ð\82µ\82Ü\82¹\82ñ.\n"
+"\8fÚ\8d×\82Í :help win32-vimrun \82ð\8eQ\8fÆ\82µ\82Ä\82\82¾\82³\82¢."
-#, c-format
-msgid ""
-"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line "
-"%d"
-msgstr ""
-"%s \82Ì %d \8ds\96Ú\82Ì PFX \8d\80\96Ú\82Ì\8cã\82Ì COMPOUNDPERMITFLAG \82Ì\92è\8b`\82Í\8cë\82Á\82½\8c\8b\89Ê\82ð\90¶\82¶\82é"
-"\82±\82Æ\82ª\82 \82è\82Ü\82·"
+msgid "Vim Warning"
+msgstr "Vim\82Ì\8cx\8d\90"
#, c-format
-msgid "Wrong COMPOUNDRULES value in %s line %d: %s"
-msgstr "COMPOUNDRULES \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·. \83t\83@\83C\83\8b %s \82Ì %d \8ds\96Ú: %s"
+msgid "E372: Too many %%%c in format string"
+msgstr "E372: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É %%%c \82ª\91½\89ß\82¬\82Ü\82·"
#, c-format
-msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDWORDMAX \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
+msgid "E373: Unexpected %%%c in format string"
+msgstr "E373: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É\97\\\8aú\82¹\82Ê %%%c \82ª\82 \82è\82Ü\82µ\82½"
-#, c-format
-msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDMIN \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
+msgid "E374: Missing ] in format string"
+msgstr "E374: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDSYLMAX \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
+msgid "E375: Unsupported %%%c in format string"
+msgstr "E375: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82Å\82Í %%%c \82Í\83T\83|\81[\83g\82³\82ê\82Ü\82¹\82ñ"
#, c-format
-msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì CHECKCOMPOUNDPATTERN \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
+msgid "E376: Invalid %%%c in format string prefix"
+msgstr "E376: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82Ì\91O\92u\82É\96³\8cø\82È %%%c \82ª\82 \82è\82Ü\82·"
#, c-format
-msgid "Different combining flag in continued affix block in %s line %d: %s"
-msgstr ""
-"%s \82Ì %d \8ds\96Ú\82Ì \98A\91± affix \83u\83\8d\83b\83N\82Ì\83t\83\89\83O\82Ì\91g\8d\87\82¹\82É\88á\82¢\82ª\82 \82è\82Ü\82·: %s"
+msgid "E377: Invalid %%%c in format string"
+msgstr "E377: \83t\83H\81[\83}\83b\83g\95¶\8e\9a\97ñ\82É\96³\8cø\82È %%%c \82ª\82 \82è\82Ü\82·"
-#, c-format
-msgid "Duplicate affix in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82É \8fd\95¡\82µ\82½ affix \82ð\8c\9f\8fo\82µ\82Ü\82µ\82½: %s"
+msgid "E378: 'errorformat' contains no pattern"
+msgstr "E378: 'errorformat' \82É\83p\83^\81[\83\93\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-#, c-format
-msgid ""
-"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
-"line %d: %s"
-msgstr ""
-"%s \82Ì %d \8ds\96Ú\82Ì affix \82Í BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
-"\82É\8eg\97p\82µ\82Ä\82\82¾\82³\82¢: %s"
+msgid "E379: Missing or empty directory name"
+msgstr "E379: \83f\83B\83\8c\83N\83g\83\8a\96¼\82ª\96³\82¢\82©\8bó\82Å\82·"
-#, c-format
-msgid "Expected Y or N in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Å\82Í Y \82© N \82ª\95K\97v\82Å\82·: %s"
+msgid "E553: No more items"
+msgstr "E553: \97v\91f\82ª\82à\82¤\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Broken condition in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fð\8c\8f\82Í\89ó\82ê\82Ä\82¢\82Ü\82·: %s"
+msgid "(%d of %d)%s%s: "
+msgstr "(%d of %d)%s%s: "
-#, c-format
-msgid "Expected REP(SAL) count in %s line %d"
-msgstr "%s \82Ì %d \8ds\96Ú\82É\82Í REP(SAL) \82Ì\89ñ\90\94\82ª\95K\97v\82Å\82·"
+msgid " (line deleted)"
+msgstr " (\8ds\82ª\8dí\8f\9c\82³\82ê\82Ü\82µ\82½)"
-#, c-format
-msgid "Expected MAP count in %s line %d"
-msgstr "%s \82Ì %d \8ds\96Ú\82É\82Í MAP \82Ì\89ñ\90\94\82ª\95K\97v\82Å\82·"
+msgid "E380: At bottom of quickfix stack"
+msgstr "E380: quickfix \83X\83^\83b\83N\82Ì\96\96\94ö\82Å\82·"
-#, c-format
-msgid "Duplicate character in MAP in %s line %d"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì MAP \82É\8fd\95¡\82µ\82½\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
+msgid "E381: At top of quickfix stack"
+msgstr "E381: quickfix \83X\83^\83b\83N\82Ì\90æ\93ª\82Å\82·"
#, c-format
-msgid "Unrecognized or duplicate item in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82É \94F\8e¯\82Å\82«\82È\82¢\82©\8fd\95¡\82µ\82½\8d\80\96Ú\82ª\82 \82è\82Ü\82·: %s"
+msgid "error list %d of %d; %d errors"
+msgstr "\83G\83\89\81[\88ê\97\97 %d of %d; %d \8cÂ\83G\83\89\81["
-#, c-format
-msgid "Missing FOL/LOW/UPP line in %s"
-msgstr "%s \8ds\96Ú\82É FOL/LOW/UPP \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E382: Cannot write, 'buftype' option is set"
+msgstr "E382: 'buftype' \83I\83v\83V\83\87\83\93\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82é\82Ì\82Å\8f\91\8d\9e\82Ý\82Ü\82¹\82ñ"
-msgid "COMPOUNDSYLMAX used without SYLLABLE"
-msgstr "SYLLABLE \82ª\8ew\92è\82³\82ê\82È\82¢ COMPOUNDSYLMAX"
+msgid "Error file"
+msgstr "\83G\83\89\81[\83t\83@\83C\83\8b"
-msgid "Too many postponed prefixes"
-msgstr "\92x\89\84\8cã\92u\8eq\82ª\91½\82·\82¬\82Ü\82·"
+msgid "E683: File name missing or invalid pattern"
+msgstr "E683: \83t\83@\83C\83\8b\96¼\82ª\96³\82¢\82©\96³\8cø\82È\83p\83^\81[\83\93\82Å\82·"
-msgid "Too many compound flags"
-msgstr "\95¡\8d\87\83t\83\89\83O\82ª\91½\89ß\82¬\82Ü\82·"
+#, c-format
+msgid "Cannot open file \"%s\""
+msgstr "\83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "Too many postponed prefixes and/or compound flags"
-msgstr "\92x\89\84\8cã\92u\8eq \82Æ/\82à\82µ\82\82Í \95¡\8d\87\83t\83\89\83O\82ª\91½\82·\82¬\82Ü\82·"
+msgid "E681: Buffer is not loaded"
+msgstr "E681: \83o\83b\83t\83@\82Í\93Ç\82Ý\8d\9e\82Ü\82ê\82Ü\82¹\82ñ\82Å\82µ\82½"
-#, c-format
-msgid "Missing SOFO%s line in %s"
-msgstr "SOFO%s \8ds\82ª %s \82É\82 \82è\82Ü\82¹\82ñ"
+msgid "E777: String or List expected"
+msgstr "E777: \95¶\8e\9a\97ñ\82©\83\8a\83X\83g\82ª\95K\97v\82Å\82·"
#, c-format
-msgid "Both SAL and SOFO lines in %s"
-msgstr "SAL\8ds \82Æ SOFO\8ds \82ª %s \82Å\97¼\95û\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid "E369: invalid item in %s%%[]"
+msgstr "E369: \96³\8cø\82È\8d\80\96Ú\82Å\82·: %s%%[]"
-#, c-format
-msgid "Flag is not a number in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\82Ì \83t\83\89\83O\82ª\90\94\92l\82Å\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "E339: Pattern too long"
+msgstr "E339: \83p\83^\81[\83\93\82ª\92·\89ß\82¬\82Ü\82·"
-#, c-format
-msgid "Illegal flag in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \83t\83\89\83O\82ª\95s\90³\82Å\82·: %s"
+msgid "E50: Too many \\z("
+msgstr "E50: \\z( \82ª\91½\89ß\82¬\82Ü\82·"
#, c-format
-msgid "%s value differs from what is used in another .aff file"
-msgstr "\92l %s \82Í\91¼\82Ì .aff \83t\83@\83C\83\8b\82Å\8eg\97p\82³\82ê\82½\82Ì\82Æ\88Ù\82È\82è\82Ü\82·"
+msgid "E51: Too many %s("
+msgstr "E51: %s( \82ª\91½\89ß\82¬\82Ü\82·"
-#, c-format
-msgid "Reading dictionary file %s ..."
-msgstr "\8e«\8f\91\83t\83@\83C\83\8b %s \82ð\83X\83L\83\83\83\93\92\86..."
+msgid "E52: Unmatched \\z("
+msgstr "E52: \\z( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "E760: No word count in %s"
-msgstr "E760: %s \82É\82Í\92P\8cê\90\94\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E53: Unmatched %s%%("
+msgstr "E53: %s%%( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "line %6d, word %6d - %s"
-msgstr "\8ds %6d, \92P\8cê %6d - %s"
+msgid "E54: Unmatched %s("
+msgstr "E54: %s( \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "Duplicate word in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Å \8fd\95¡\92P\8cê\82ª\82Ý\82Â\82©\82è\82Ü\82µ\82½: %s"
+msgid "E55: Unmatched %s)"
+msgstr "E55: %s) \82ª\92Þ\82è\8d\87\82Á\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "First duplicate word in %s line %d: %s"
-msgstr "\8fd\95¡\82Ì\82¤\82¿\8dÅ\8f\89\82Ì\92P\8cê\82Í %s \82Ì %d \8ds\96Ú\82Å\82·: %s"
+msgid "E59: invalid character after %s@"
+msgstr "E59: %s@ \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
#, c-format
-msgid "%d duplicate word(s) in %s"
-msgstr "%d \8cÂ\82Ì\92P\8cê\82ª\8c©\82Â\82©\82è\82Ü\82µ\82½ (%s \93à)"
+msgid "E60: Too many complex %s{...}s"
+msgstr "E60: \95¡\8eG\82È %s{...} \82ª\91½\89ß\82¬\82Ü\82·"
#, c-format
-msgid "Ignored %d word(s) with non-ASCII characters in %s"
-msgstr "\94ñASCII\95¶\8e\9a\82ð\8aÜ\82Þ %d \8cÂ\82Ì\92P\8cê\82ð\96³\8e\8b\82µ\82Ü\82µ\82½ (%s \93à)"
+msgid "E61: Nested %s*"
+msgstr "E61:%s* \82ª\93ü\82ê\8eq\82É\82È\82Á\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "Reading word file %s ..."
-msgstr "\95W\8f\80\93ü\97Í\82©\82ç\93Ç\8d\9e\82Ý\92\86 %s ..."
+msgid "E62: Nested %s%c"
+msgstr "E62:%s%c \82ª\93ü\82ê\8eq\82É\82È\82Á\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "Duplicate /encoding= line ignored in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ /encoding= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
+#
+msgid "E63: invalid use of \\_"
+msgstr "E63: \\_ \82Ì\96³\8cø\82È\8eg\97p\95û\96@\82Å\82·"
#, c-format
-msgid "/encoding= line after word ignored in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \92P\8cê\82Ì\8cã\82Ì /encoding= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
+msgid "E64: %s%c follows nothing"
+msgstr "E64:%s%c \82Ì\8cã\82É\82È\82É\82à\82 \82è\82Ü\82¹\82ñ"
+
+#
+msgid "E65: Illegal back reference"
+msgstr "E65: \95s\90³\82È\8cã\95û\8eQ\8fÆ\82Å\82·"
+
+#
+msgid "E66: \\z( not allowed here"
+msgstr "E66: \\z( \82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+#
+msgid "E67: \\z1 et al. not allowed here"
+msgstr "E67: \\z1 \82»\82Ì\91¼\82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+
+#
+msgid "E68: Invalid character after \\z"
+msgstr "E68: \\z \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+
+#
#, c-format
-msgid "Duplicate /regions= line ignored in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ /regions= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
+msgid "E69: Missing ] after %s%%["
+msgstr "E69: %s%%[ \82Ì\8cã\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Too many regions in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú, \94Í\88Í\8ew\92è\82ª\91½\82·\82¬\82Ü\82·: %s"
+msgid "E70: Empty %s%%[]"
+msgstr "E70: %s%%[] \82ª\8bó\82Å\82·"
+#
#, c-format
-msgid "/ line ignored in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ / \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
+msgid "E678: Invalid character after %s%%[dxouU]"
+msgstr "E678: %s%%[dxouU] \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+#
#, c-format
-msgid "Invalid region nr in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú \96³\8cø\82È nr \97Ì\88æ\82Å\82·: %s"
+msgid "E71: Invalid character after %s%%"
+msgstr "E71: %s%% \82Ì\8cã\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82µ\82½"
+#
#, c-format
-msgid "Unrecognized flags in %s line %d: %s"
-msgstr "%s \82Ì %d \8ds\96Ú \94F\8e¯\95s\94\\\82È\83t\83\89\83O\82Å\82·: %s"
+msgid "E769: Missing ] after %s["
+msgstr "E769: %s[ \82Ì\8cã\82É ] \82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Ignored %d words with non-ASCII characters"
-msgstr "\94ñASCII\95¶\8e\9a\82ð\8aÜ\82Þ %d \8cÂ\82Ì\92P\8cê\82ð\96³\8e\8b\82µ\82Ü\82µ\82½"
+msgid "E554: Syntax error in %s{...}"
+msgstr "E554: %s{...} \93à\82É\95¶\96@\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
-msgid "E845: Insufficient memory, word list will be incomplete"
-msgstr "E845: \83\81\83\82\83\8a\82ª\91«\82è\82È\82¢\82Ì\82Å\81A\92P\8cê\83\8a\83X\83g\82Í\95s\8a®\91S\82Å\82·"
+msgid "External submatches:\n"
+msgstr "\8aO\95\94\82Ì\95\94\95ª\8aY\93\96:\n"
-#, c-format
-msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
-msgstr "\83m\81[\83h %d \8cÂ(\91S %d \8cÂ\92\86) \82ð\88³\8fk\82µ\82Ü\82µ\82½; \8ec\82è %d (%d%%)"
+msgid " VREPLACE"
+msgstr " \89¼\91z\92u\8a·"
-msgid "Reading back spell file..."
-msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b\82ð\8bt\93Ç\8d\9e\92\86"
+msgid " REPLACE"
+msgstr " \92u\8a·"
-#.
-#. * Go through the trie of good words, soundfold each word and add it to
-#. * the soundfold trie.
-#.
-msgid "Performing soundfolding..."
-msgstr "\89¹\90º\8fô\8d\9e\82Ý\82ð\8eÀ\8ds\92\86..."
+msgid " REVERSE"
+msgstr " \94½\93]"
-#, c-format
-msgid "Number of words after soundfolding: %ld"
-msgstr "\89¹\90º\8fô\8d\9e\82Ý\8cã\82Ì\91\8d\92P\8cê\90\94: %ld"
+msgid " INSERT"
+msgstr " \91}\93ü"
-#, c-format
-msgid "Total number of words: %d"
-msgstr "\91\8d\92P\8cê\90\94: %d"
+msgid " (insert)"
+msgstr " (\91}\93ü)"
-#, c-format
-msgid "Writing suggestion file %s ..."
-msgstr "\8fC\90³\8có\95â\83t\83@\83C\83\8b \"%s\" \82ð\8f\91\8d\9e\82Ý\92\86..."
+msgid " (replace)"
+msgstr " (\92u\8a·)"
-#, c-format
-msgid "Estimated runtime memory use: %d bytes"
-msgstr "\90\84\92è\83\81\83\82\83\8a\8eg\97p\97Ê: %d \83o\83C\83g"
+msgid " (vreplace)"
+msgstr " (\89¼\91z\92u\8a·)"
-msgid "E751: Output file name must not have region name"
-msgstr "E751: \8fo\97Í\83t\83@\83C\83\8b\96¼\82É\82Í\94Í\88Í\96¼\82ð\8aÜ\82ß\82ç\82ê\82Ü\82¹\82ñ"
+msgid " Hebrew"
+msgstr " \83w\83u\83\89\83C"
-msgid "E754: Only up to 8 regions supported"
-msgstr "E754: \94Í\88Í\82Í 8 \8cÂ\82Ü\82Å\82µ\82©\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid " Arabic"
+msgstr " \83A\83\89\83r\83A"
-#, c-format
-msgid "E755: Invalid region in %s"
-msgstr "E755: \96³\8cø\82È\94Í\88Í\82Å\82·: %s"
+msgid " (lang)"
+msgstr " (\8c¾\8cê)"
-msgid "Warning: both compounding and NOBREAK specified"
-msgstr "\8cx\8d\90: \95¡\8d\87\83t\83\89\83O\82Æ NOBREAK \82ª\97¼\95û\82Æ\82à\8ew\92è\82³\82ê\82Ü\82µ\82½"
+msgid " (paste)"
+msgstr " (\93\\\82è\95t\82¯)"
-#, c-format
-msgid "Writing spell file %s ..."
-msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b %s \82ð\8f\91\8d\9e\82Ý\92\86..."
+msgid " VISUAL"
+msgstr " \83r\83W\83\85\83A\83\8b"
-msgid "Done!"
-msgstr "\8eÀ\8ds\82µ\82Ü\82µ\82½!"
+msgid " VISUAL LINE"
+msgstr " \83r\83W\83\85\83A\83\8b \8ds"
-#, c-format
-msgid "E765: 'spellfile' does not have %ld entries"
-msgstr "E765: 'spellfile' \82É\82Í %ld \8cÂ\82Ì\83G\83\93\83g\83\8a\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid " VISUAL BLOCK"
+msgstr " \83r\83W\83\85\83A\83\8b \8bé\8c`"
-#, c-format
-msgid "Word removed from %s"
-msgstr "%s \82©\82ç\92P\8cê\82ª\8dí\8f\9c\82³\82ê\82Ü\82µ\82½"
+msgid " SELECT"
+msgstr " \83Z\83\8c\83N\83g"
-#, c-format
-msgid "Word added to %s"
-msgstr "%s \82É\92P\8cê\82ª\92Ç\89Á\82³\82ê\82Ü\82µ\82½"
+msgid " SELECT LINE"
+msgstr " \8ds\8ew\8cü\91I\91ð"
-msgid "E763: Word characters differ between spell files"
-msgstr "E763: \92P\8cê\82Ì\95¶\8e\9a\82ª\83X\83y\83\8b\83t\83@\83C\83\8b\82Æ\88Ù\82È\82è\82Ü\82·"
+msgid " SELECT BLOCK"
+msgstr " \8bé\8c`\91I\91ð"
-msgid "Sorry, no suggestions"
-msgstr "\8ec\94O\82Å\82·\82ª, \8fC\90³\8có\95â\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "recording"
+msgstr "\8bL\98^\92\86"
#, c-format
-msgid "Sorry, only %ld suggestions"
-msgstr "\8ec\94O\82Å\82·\82ª, \8fC\90³\8có\95â\82Í %ld \8cÂ\82µ\82©\82 \82è\82Ü\82¹\82ñ"
-
-#. for when 'cmdheight' > 1
-#. avoid more prompt
-#, c-format
-msgid "Change \"%.*s\" to:"
-msgstr "\"%.*s\" \82ð\8e\9f\82Ö\95Ï\8a·:"
+msgid "E383: Invalid search string: %s"
+msgstr "E383: \96³\8cø\82È\8c\9f\8dõ\95¶\8e\9a\97ñ\82Å\82·: %s"
#, c-format
-msgid " < \"%.*s\""
-msgstr " < \"%.*s\""
-
-msgid "E752: No previous spell replacement"
-msgstr "E752: \83X\83y\83\8b\92u\8a·\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E384: search hit TOP without match for: %s"
+msgstr "E384: \8fã\82Ü\82Å\8c\9f\8dõ\82µ\82½\82¯\82ê\82Ç\8aY\93\96\89Ó\8f\8a\82Í\82 \82è\82Ü\82¹\82ñ: %s"
#, c-format
-msgid "E753: Not found: %s"
-msgstr "E753: \82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
+msgid "E385: search hit BOTTOM without match for: %s"
+msgstr "E385: \89º\82Ü\82Å\8c\9f\8dõ\82µ\82½\82¯\82ê\82Ç\8aY\93\96\89Ó\8f\8a\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-#, c-format
-msgid "E778: This does not look like a .sug file: %s"
-msgstr "E778: .sug \83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·: %s"
+msgid "E386: Expected '?' or '/' after ';'"
+msgstr "E386: ';' \82Ì\82 \82Æ\82É\82Í '?' \82© '/' \82ª\8aú\91Ò\82³\82ê\82Ä\82¢\82é"
-#, c-format
-msgid "E779: Old .sug file, needs to be updated: %s"
-msgstr "E779: \8cÃ\82¢ .sug \83t\83@\83C\83\8b\82È\82Ì\82Å, \83A\83b\83v\83f\81[\83g\82µ\82Ä\82\82¾\82³\82¢: %s"
+msgid " (includes previously listed match)"
+msgstr " (\91O\82É\97ñ\8b\93\82µ\82½\8aY\93\96\89Ó\8f\8a\82ð\8aÜ\82Þ)"
-#, c-format
-msgid "E780: .sug file is for newer version of Vim: %s"
-msgstr "E780: \82æ\82è\90V\82µ\82¢\83o\81[\83W\83\87\83\93\82Ì Vim \97p\82Ì .sug \83t\83@\83C\83\8b\82Å\82·: %s"
+#. cursor at status line
+msgid "--- Included files "
+msgstr "--- \83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b"
-#, c-format
-msgid "E781: .sug file doesn't match .spl file: %s"
-msgstr "E781: .sug \83t\83@\83C\83\8b\82ª .spl \83t\83@\83C\83\8b\82Æ\88ê\92v\82µ\82Ü\82¹\82ñ: %s"
+msgid "not found "
+msgstr "\82Ý\82Â\82©\82è\82Ü\82¹\82ñ "
-#, c-format
-msgid "E782: error while reading .sug file: %s"
-msgstr "E782: .sug \83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½: %s"
+msgid "in path ---\n"
+msgstr "\83p\83X\82É ----\n"
-#. This should have been checked when generating the .spl
-#. * file.
-msgid "E783: duplicate char in MAP entry"
-msgstr "E783: MAP \83G\83\93\83g\83\8a\82É\8fd\95¡\95¶\8e\9a\82ª\91¶\8dÝ\82µ\82Ü\82·"
+msgid " (Already listed)"
+msgstr " (\8aù\82É\97ñ\8b\93)"
-#, c-format
-msgid "E390: Illegal argument: %s"
-msgstr "E390: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
+msgid " NOT FOUND"
+msgstr " \82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E391: No such syntax cluster: %s"
-msgstr "E391: \82»\82Ì\82æ\82¤\82È\8d\\\95¶\83N\83\89\83X\83^\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "Scanning included file: %s"
+msgstr "\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ð\83X\83L\83\83\83\93\92\86: %s"
-msgid "No Syntax items defined for this buffer"
-msgstr "\82±\82Ì\83o\83b\83t\83@\82É\92è\8b`\82³\82ê\82½\8d\\\95¶\97v\91f\82Í\82 \82è\82Ü\82¹\82ñ"
+#, c-format
+msgid "Searching included file %s"
+msgstr "\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ð\83X\83L\83\83\83\93\92\86 %s"
-msgid "syncing on C-style comments"
-msgstr "C\8c¾\8cê\95\97\83R\83\81\83\93\83g\82©\82ç\93¯\8aú\92\86"
+msgid "E387: Match is on current line"
+msgstr "E387: \8c»\8dÝ\8ds\82É\8aY\93\96\82ª\82 \82è\82Ü\82·"
-msgid "no syncing"
-msgstr "\94ñ\93¯\8aú"
+msgid "All included files were found"
+msgstr "\91S\82Ä\82Ì\83C\83\93\83N\83\8b\81[\83h\82³\82ê\82½\83t\83@\83C\83\8b\82ª\82Ý\82Â\82©\82è\82Ü\82µ\82½"
-msgid "syncing starts "
-msgstr "\93¯\8aú\8aJ\8en "
+msgid "No included files"
+msgstr "\83C\83\93\83N\83\8b\81[\83h\83t\83@\83C\83\8b\82Í\82 \82è\82Ü\82¹\82ñ"
-msgid " lines before top line"
-msgstr " \8ds\91O(\83g\83b\83v\8ds\82æ\82è\82à)"
+msgid "E388: Couldn't find definition"
+msgstr "E388: \92è\8b`\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"--- Syntax sync items ---"
-msgstr ""
-"\n"
-"--- \8d\\\95¶\93¯\8aú\97v\91f ---"
+msgid "E389: Couldn't find pattern"
+msgstr "E389: \83p\83^\81[\83\93\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"syncing on items"
-msgstr ""
-"\n"
-"\97v\91f\8fã\82Å\93¯\8aú\92\86"
+msgid "Substitute "
+msgstr "Substitute "
+#, c-format
msgid ""
"\n"
-"--- Syntax items ---"
+"# Last %sSearch Pattern:\n"
+"~"
msgstr ""
"\n"
-"--- \8d\\\95¶\97v\91f ---"
+"# \8dÅ\8cã\82Ì %s\8c\9f\8dõ\83p\83^\81[\83\93:\n"
+"~"
-#, c-format
-msgid "E392: No such syntax cluster: %s"
-msgstr "E392: \82»\82Ì\82æ\82¤\82È\8d\\\95¶\83N\83\89\83X\83^\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "E759: Format error in spell file"
+msgstr "E759: \83X\83y\83\8b\83t\83@\83C\83\8b\82Ì\8f\91\8e®\83G\83\89\81[\82Å\82·"
-msgid "minimal "
-msgstr "minimal"
+msgid "E758: Truncated spell file"
+msgstr "E758: \83X\83y\83\8b\83t\83@\83C\83\8b\82ª\90Ø\8eæ\82ç\82ê\82Ä\82¢\82é\82æ\82¤\82Å\82·"
-msgid "maximal "
-msgstr "maximal"
+#, c-format
+msgid "Trailing text in %s line %d: %s"
+msgstr "%s (%d \8ds\96Ú) \82É\91±\82\83e\83L\83X\83g: %s"
-msgid "; match "
-msgstr "; \8aY\93\96 "
+#, c-format
+msgid "Affix name too long in %s line %d: %s"
+msgstr "%s (%d \8ds\96Ú) \82Ì affix \96¼\82ª\92·\89ß\82¬\82Ü\82·: %s"
-msgid " line breaks"
-msgstr " \8cÂ\82Ì\89ü\8ds"
+msgid "E761: Format error in affix file FOL, LOW or UPP"
+msgstr ""
+"E761: affix\83t\83@\83C\83\8b\82Ì FOL, LOW \82à\82µ\82\82Í UPP \82Ì\83t\83H\81[\83}\83b\83g\82É\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
-msgid "E395: contains argument not accepted here"
-msgstr "E395: \82±\82Ì\8fê\8f\8a\82Å\82Í\88ø\90\94contains\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E762: Character in FOL, LOW or UPP is out of range"
+msgstr "E762: FOL, LOW \82à\82µ\82\82Í UPP \82Ì\95¶\8e\9a\82ª\94Í\88Í\8aO\82Å\82·"
-msgid "E844: invalid cchar value"
-msgstr "E844: \96³\8cø\82Ècchar\82Ì\92l\82Å\82·"
+msgid "Compressing word tree..."
+msgstr "\92P\8cê\83c\83\8a\81[\82ð\88³\8fk\82µ\82Ä\82¢\82Ü\82·..."
-msgid "E393: group[t]here not accepted here"
-msgstr "E393: \82±\82±\82Å\82Í\83O\83\8b\81[\83v\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
+msgid "E756: Spell checking is not enabled"
+msgstr "E756: \83X\83y\83\8b\83`\83F\83b\83N\82Í\96³\8cø\89»\82³\82ê\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "E394: Didn't find region item for %s"
-msgstr "E394: %s \82Ì\94Í\88Í\97v\91f\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-
-msgid "E397: Filename required"
-msgstr "E397: \83t\83@\83C\83\8b\96¼\82ª\95K\97v\82Å\82·"
+msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""
+msgstr ""
+"\8cx\8d\90: \92P\8cê\83\8a\83X\83g \"%s_%s.spl\" \82¨\82æ\82Ñ \"%s_ascii.spl\" \82Í\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E789: Missing ']': %s"
-msgstr "E789: ']' \82ª\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""
+msgstr ""
+"\8cx\8d\90: \92P\8cê\83\8a\83X\83g \"%s.%s.spl\" \82¨\82æ\82Ñ \"%s.ascii.spl\" \82Í\8c©\82Â\82©\82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E398: Missing '=': %s"
-msgstr "E398: '=' \82ª\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "Reading spell file \"%s\""
+msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b \"%s\" \82ð\93Ç\8d\9e\92\86"
-#, c-format
-msgid "E399: Not enough arguments: syntax region %s"
-msgstr "E399: \88ø\90\94\82ª\91«\82è\82Ü\82¹\82ñ: \8d\\\95¶\94Í\88Í %s"
+msgid "E757: This does not look like a spell file"
+msgstr "E757: \83X\83y\83\8b\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·"
-msgid "E400: No cluster specified"
-msgstr "E400: \83N\83\89\83X\83^\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "E771: Old spell file, needs to be updated"
+msgstr "E771: \8cÃ\82¢\83X\83y\83\8b\83t\83@\83C\83\8b\82È\82Ì\82Å, \83A\83b\83v\83f\81[\83g\82µ\82Ä\82\82¾\82³\82¢"
+
+msgid "E772: Spell file is for newer version of Vim"
+msgstr "E772: \82æ\82è\90V\82µ\82¢\83o\81[\83W\83\87\83\93\82Ì Vim \97p\82Ì\83X\83y\83\8b\83t\83@\83C\83\8b\82Å\82·"
+
+msgid "E770: Unsupported section in spell file"
+msgstr "E770: \83X\83y\83\8b\83t\83@\83C\83\8b\82É\83T\83|\81[\83g\82µ\82Ä\82¢\82È\82¢\83Z\83N\83V\83\87\83\93\82ª\82 \82è\82Ü\82·"
#, c-format
-msgid "E401: Pattern delimiter not found: %s"
-msgstr "E401: \83p\83^\81[\83\93\8bæ\90Ø\82è\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
+msgid "Warning: region %s not supported"
+msgstr "\8cx\8d\909: %s \82Æ\82¢\82¤\94Í\88Í\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "E402: Garbage after pattern: %s"
-msgstr "E402: \83p\83^\81[\83\93\82Ì\82 \82Æ\82É\83S\83~\82ª\82 \82è\82Ü\82·: %s"
+msgid "Reading affix file %s ..."
+msgstr "affix \83t\83@\83C\83\8b %s \82ð\93Ç\8d\9e\92\86..."
-msgid "E403: syntax sync: line continuations pattern specified twice"
-msgstr "E403: \8d\\\95¶\93¯\8aú: \98A\91±\8ds\83p\83^\81[\83\93\82ª2\93x\8ew\92è\82³\82ê\82Ü\82µ\82½"
+#, c-format
+msgid "Conversion failure for word in %s line %d: %s"
+msgstr "%s (%d \8ds\96Ú) \82Ì\92P\8cê\82ð\95Ï\8a·\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½: %s"
#, c-format
-msgid "E404: Illegal arguments: %s"
-msgstr "E404: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
+msgid "Conversion in %s not supported: from %s to %s"
+msgstr "%s \93à\82Ì\8e\9f\82Ì\95Ï\8a·\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ: %s \82©\82ç %s \82Ö"
#, c-format
-msgid "E405: Missing equal sign: %s"
-msgstr "E405: \93\99\82µ\82¢ sign \82ª\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "Conversion in %s not supported"
+msgstr "%s \93à\82Ì\95Ï\8a·\82Í\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "E406: Empty argument: %s"
-msgstr "E406: \8bó\82Ì\88ø\90\94: %s"
+msgid "Invalid value for FLAG in %s line %d: %s"
+msgstr "%s \93à\82Ì %d \8ds\96Ú\82Ì FLAG \82É\96³\8cø\82È\92l\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E407: %s not allowed here"
-msgstr "E407: %s \82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "FLAG after using flags in %s line %d: %s"
+msgstr "%s \93à\82Ì %d \8ds\96Ú\82É\83t\83\89\83O\82Ì\93ñ\8fd\8eg\97p\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E408: %s must be first in contains list"
-msgstr "E408: %s \82Í\93à\97e\83\8a\83X\83g\82Ì\90æ\93ª\82Å\82È\82¯\82ê\82Î\82È\82ç\82È\82¢"
+msgid ""
+"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line "
+"%d"
+msgstr ""
+"%s \82Ì %d \8ds\96Ú\82Ì PFX \8d\80\96Ú\82Ì\8cã\82Ì COMPOUNDFORBIDFLAG \82Ì\92è\8b`\82Í\8cë\82Á\82½\8c\8b\89Ê\82ð\90¶\82¶\82é"
+"\82±\82Æ\82ª\82 \82è\82Ü\82·"
#, c-format
-msgid "E409: Unknown group name: %s"
-msgstr "E409: \96¢\92m\82Ì\83O\83\8b\81[\83v\96¼: %s"
+msgid ""
+"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line "
+"%d"
+msgstr ""
+"%s \82Ì %d \8ds\96Ú\82Ì PFX \8d\80\96Ú\82Ì\8cã\82Ì COMPOUNDPERMITFLAG \82Ì\92è\8b`\82Í\8cë\82Á\82½\8c\8b\89Ê\82ð\90¶\82¶\82é"
+"\82±\82Æ\82ª\82 \82è\82Ü\82·"
#, c-format
-msgid "E410: Invalid :syntax subcommand: %s"
-msgstr "E410: \96³\8cø\82È :syntax \82Ì\83T\83u\83R\83}\83\93\83h: %s"
+msgid "Wrong COMPOUNDRULES value in %s line %d: %s"
+msgstr "COMPOUNDRULES \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·. \83t\83@\83C\83\8b %s \82Ì %d \8ds\96Ú: %s"
-msgid "E679: recursive loop loading syncolor.vim"
-msgstr "E679: syncolor.vim \82Ì\8dÄ\8bA\8cÄ\82Ñ\8fo\82µ\82ð\8c\9f\8fo\82µ\82Ü\82µ\82½"
+#, c-format
+msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDWORDMAX \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E411: highlight group not found: %s"
-msgstr "E411: \83n\83C\83\89\83C\83g\83O\83\8b\81[\83v\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
+msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDMIN \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E412: Not enough arguments: \":highlight link %s\""
-msgstr "E412: \88ø\90\94\82ª\8f[\95ª\82Å\82Í\82È\82¢: \":highlight link %s\""
+msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì COMPOUNDSYLMAX \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E413: Too many arguments: \":highlight link %s\""
-msgstr "E413: \88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·: \":highlight link %s\""
+msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì CHECKCOMPOUNDPATTERN \82Ì\92l\82É\8cë\82è\82ª\82 \82è\82Ü\82·: %s"
-msgid "E414: group has settings, highlight link ignored"
-msgstr "E414: \83O\83\8b\81[\83v\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82é\82Ì\82Å\83n\83C\83\89\83C\83g\83\8a\83\93\83N\82Í\96³\8e\8b\82³\82ê\82Ü\82·"
+#, c-format
+msgid "Different combining flag in continued affix block in %s line %d: %s"
+msgstr ""
+"%s \82Ì %d \8ds\96Ú\82Ì \98A\91± affix \83u\83\8d\83b\83N\82Ì\83t\83\89\83O\82Ì\91g\8d\87\82¹\82É\88á\82¢\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E415: unexpected equal sign: %s"
-msgstr "E415: \97\\\8aú\82¹\82Ê\93¯\82¶ sign \82Å\82·: %s"
+msgid "Duplicate affix in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82É \8fd\95¡\82µ\82½ affix \82ð\8c\9f\8fo\82µ\82Ü\82µ\82½: %s"
#, c-format
-msgid "E416: missing equal sign: %s"
-msgstr "E416: \93¯\82¶ sign \82ª\82 \82è\82Ü\82¹\82ñ: %s"
+msgid ""
+"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
+"line %d: %s"
+msgstr ""
+"%s \82Ì %d \8ds\96Ú\82Ì affix \82Í BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
+"\82É\8eg\97p\82µ\82Ä\82\82¾\82³\82¢: %s"
#, c-format
-msgid "E417: missing argument: %s"
-msgstr "E417: \88ø\90\94\82ª\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "Expected Y or N in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Å\82Í Y \82© N \82ª\95K\97v\82Å\82·: %s"
#, c-format
-msgid "E418: Illegal value: %s"
-msgstr "E418: \95s\90³\82È\92l\82Å\82·: %s"
+msgid "Broken condition in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fð\8c\8f\82Í\89ó\82ê\82Ä\82¢\82Ü\82·: %s"
-msgid "E419: FG color unknown"
-msgstr "E419: \96¢\92m\82Ì\91O\8ci\90F\82Å\82·"
+#, c-format
+msgid "Expected REP(SAL) count in %s line %d"
+msgstr "%s \82Ì %d \8ds\96Ú\82É\82Í REP(SAL) \82Ì\89ñ\90\94\82ª\95K\97v\82Å\82·"
-msgid "E420: BG color unknown"
-msgstr "E420: \96¢\92m\82Ì\94w\8ci\90F\82Å\82·"
+#, c-format
+msgid "Expected MAP count in %s line %d"
+msgstr "%s \82Ì %d \8ds\96Ú\82É\82Í MAP \82Ì\89ñ\90\94\82ª\95K\97v\82Å\82·"
#, c-format
-msgid "E421: Color name or number not recognized: %s"
-msgstr "E421: \83J\83\89\81[\96¼\82â\94Ô\8d\86\82ð\94F\8e¯\82Å\82«\82Ü\82¹\82ñ: %s"
+msgid "Duplicate character in MAP in %s line %d"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì MAP \82É\8fd\95¡\82µ\82½\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
#, c-format
-msgid "E422: terminal code too long: %s"
-msgstr "E422: \8fI\92[\83R\81[\83h\82ª\92·\89ß\82¬\82Ü\82·: %s"
+msgid "Unrecognized or duplicate item in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82É \94F\8e¯\82Å\82«\82È\82¢\82©\8fd\95¡\82µ\82½\8d\80\96Ú\82ª\82 \82è\82Ü\82·: %s"
#, c-format
-msgid "E423: Illegal argument: %s"
-msgstr "E423: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
+msgid "Missing FOL/LOW/UPP line in %s"
+msgstr "%s \8ds\96Ú\82É FOL/LOW/UPP \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E424: Too many different highlighting attributes in use"
-msgstr "E424: \91½\82\82Ì\88Ù\82È\82é\83n\83C\83\89\83C\83g\91®\90«\82ª\8eg\82í\82ê\89ß\82¬\82Ä\82¢\82Ü\82·"
+msgid "COMPOUNDSYLMAX used without SYLLABLE"
+msgstr "SYLLABLE \82ª\8ew\92è\82³\82ê\82È\82¢ COMPOUNDSYLMAX"
-msgid "E669: Unprintable character in group name"
-msgstr "E669: \83O\83\8b\81[\83v\96¼\82É\88ó\8dü\95s\89Â\94\\\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
+msgid "Too many postponed prefixes"
+msgstr "\92x\89\84\8cã\92u\8eq\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "W18: Invalid character in group name"
-msgstr "W18: \83O\83\8b\81[\83v\96¼\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
+msgid "Too many compound flags"
+msgstr "\95¡\8d\87\83t\83\89\83O\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "E555: at bottom of tag stack"
-msgstr "E555: \83^\83O\83X\83^\83b\83N\82Ì\96\96\94ö\82Å\82·"
+msgid "Too many postponed prefixes and/or compound flags"
+msgstr "\92x\89\84\8cã\92u\8eq \82Æ/\82à\82µ\82\82Í \95¡\8d\87\83t\83\89\83O\82ª\91½\89ß\82¬\82Ü\82·"
-msgid "E556: at top of tag stack"
-msgstr "E556: \83^\83O\83X\83^\83b\83N\82Ì\90æ\93ª\82Å\82·"
+#, c-format
+msgid "Missing SOFO%s line in %s"
+msgstr "SOFO%s \8ds\82ª %s \82É\82 \82è\82Ü\82¹\82ñ"
-msgid "E425: Cannot go before first matching tag"
-msgstr "E425: \8dÅ\8f\89\82Ì\8aY\93\96\83^\83O\82ð\92´\82¦\82Ä\96ß\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "Both SAL and SOFO lines in %s"
+msgstr "SAL\8ds \82Æ SOFO\8ds \82ª %s \82Å\97¼\95û\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82·"
#, c-format
-msgid "E426: tag not found: %s"
-msgstr "E426: \83^\83O\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
+msgid "Flag is not a number in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\82Ì \83t\83\89\83O\82ª\90\94\92l\82Å\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid " # pri kind tag"
-msgstr " # pri kind tag"
+#, c-format
+msgid "Illegal flag in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \83t\83\89\83O\82ª\95s\90³\82Å\82·: %s"
-msgid "file\n"
-msgstr "\83t\83@\83C\83\8b\n"
+#, c-format
+msgid "%s value differs from what is used in another .aff file"
+msgstr "\92l %s \82Í\91¼\82Ì .aff \83t\83@\83C\83\8b\82Å\8eg\97p\82³\82ê\82½\82Ì\82Æ\88Ù\82È\82è\82Ü\82·"
-msgid "E427: There is only one matching tag"
-msgstr "E427: \8aY\93\96\83^\83O\82ª1\82Â\82¾\82¯\82µ\82©\82 \82è\82Ü\82¹\82ñ"
+#, c-format
+msgid "Reading dictionary file %s ..."
+msgstr "\8e«\8f\91\83t\83@\83C\83\8b %s \82ð\83X\83L\83\83\83\93\92\86..."
-msgid "E428: Cannot go beyond last matching tag"
-msgstr "E428: \8dÅ\8cã\82É\8aY\93\96\82·\82é\83^\83O\82ð\92´\82¦\82Ä\90i\82Þ\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
+#, c-format
+msgid "E760: No word count in %s"
+msgstr "E760: %s \82É\82Í\92P\8cê\90\94\82ª\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "File \"%s\" does not exist"
-msgstr "\83t\83@\83C\83\8b \"%s\" \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "line %6d, word %6d - %s"
+msgstr "\8ds %6d, \92P\8cê %6d - %s"
-#. Give an indication of the number of matching tags
#, c-format
-msgid "tag %d of %d%s"
-msgstr "\83^\83O %d (\91S%d%s)"
+msgid "Duplicate word in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Å \8fd\95¡\92P\8cê\82ª\82Ý\82Â\82©\82è\82Ü\82µ\82½: %s"
-msgid " or more"
-msgstr " \82©\82»\82ê\88È\8fã"
+#, c-format
+msgid "First duplicate word in %s line %d: %s"
+msgstr "\8fd\95¡\82Ì\82¤\82¿\8dÅ\8f\89\82Ì\92P\8cê\82Í %s \82Ì %d \8ds\96Ú\82Å\82·: %s"
-msgid " Using tag with different case!"
-msgstr " \83^\83O\82ð\88Ù\82È\82écase\82Å\8eg\97p\82µ\82Ü\82·!"
+#, c-format
+msgid "%d duplicate word(s) in %s"
+msgstr "%d \8cÂ\82Ì\92P\8cê\82ª\8c©\82Â\82©\82è\82Ü\82µ\82½ (%s \93à)"
#, c-format
-msgid "E429: File \"%s\" does not exist"
-msgstr "E429: \83t\83@\83C\83\8b \"%s\" \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Ignored %d word(s) with non-ASCII characters in %s"
+msgstr "\94ñASCII\95¶\8e\9a\82ð\8aÜ\82Þ %d \8cÂ\82Ì\92P\8cê\82ð\96³\8e\8b\82µ\82Ü\82µ\82½ (%s \93à)"
-#. Highlight title
-msgid ""
-"\n"
-" # TO tag FROM line in file/text"
-msgstr ""
-"\n"
-" # TO \83^\83O FROM \8ds in file/text"
+#, c-format
+msgid "Reading word file %s ..."
+msgstr "\95W\8f\80\93ü\97Í\82©\82ç\93Ç\8d\9e\82Ý\92\86 %s ..."
#, c-format
-msgid "Searching tags file %s"
-msgstr "\83^\83O\83t\83@\83C\83\8b %s \82ð\8c\9f\8dõ\92\86"
+msgid "Duplicate /encoding= line ignored in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ /encoding= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
#, c-format
-msgid "E430: Tag file path truncated for %s\n"
-msgstr "E430: \83^\83O\83t\83@\83C\83\8b\82Ì\83p\83X\82ª %s \82É\90Ø\82è\8eÌ\82Ä\82ç\82ê\82Ü\82µ\82½\n"
+msgid "/encoding= line after word ignored in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \92P\8cê\82Ì\8cã\82Ì /encoding= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
#, c-format
-msgid "E431: Format error in tags file \"%s\""
-msgstr "E431: \83^\83O\83t\83@\83C\83\8b \"%s\" \82Ì\83t\83H\81[\83}\83b\83g\82É\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
+msgid "Duplicate /regions= line ignored in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ /regions= \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
#, c-format
-msgid "Before byte %ld"
-msgstr "\92¼\91O\82Ì %ld \83o\83C\83g"
+msgid "Too many regions in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú, \94Í\88Í\8ew\92è\82ª\91½\89ß\82¬\82Ü\82·: %s"
#, c-format
-msgid "E432: Tags file not sorted: %s"
-msgstr "E432: \83^\83O\83t\83@\83C\83\8b\82ª\83\\\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ: %s"
+msgid "/ line ignored in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú\82Ì \8fd\95¡\82µ\82½ / \8ds\82ð\96³\8e\8b\82µ\82Ü\82µ\82½: %s"
-#. never opened any tags file
-msgid "E433: No tags file"
-msgstr "E433: \83^\83O\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
+#, c-format
+msgid "Invalid region nr in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú \96³\8cø\82È nr \97Ì\88æ\82Å\82·: %s"
-msgid "Ignoring long line in tags file"
-msgstr "\83^\83O\83t\83@\83C\83\8b\93à\82Ì\92·\82¢\8ds\82ð\96³\8e\8b\82µ\82Ü\82·"
+#, c-format
+msgid "Unrecognized flags in %s line %d: %s"
+msgstr "%s \82Ì %d \8ds\96Ú \94F\8e¯\95s\94\\\82È\83t\83\89\83O\82Å\82·: %s"
-msgid "E434: Can't find tag pattern"
-msgstr "E434: \83^\83O\83p\83^\81[\83\93\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "Ignored %d words with non-ASCII characters"
+msgstr "\94ñASCII\95¶\8e\9a\82ð\8aÜ\82Þ %d \8cÂ\82Ì\92P\8cê\82ð\96³\8e\8b\82µ\82Ü\82µ\82½"
-msgid "E435: Couldn't find tag, just guessing!"
-msgstr "E435: \83^\83O\82ð\82Ý\82Â\82¯\82ç\82ê\82È\82¢\82Ì\82Å\92P\82É\90\84\91ª\82µ\82Ü\82·!"
+msgid "E845: Insufficient memory, word list will be incomplete"
+msgstr "E845: \83\81\83\82\83\8a\82ª\91«\82è\82È\82¢\82Ì\82Å\81A\92P\8cê\83\8a\83X\83g\82Í\95s\8a®\91S\82Å\82·"
#, c-format
-msgid "Duplicate field name: %s"
-msgstr "\8fd\95¡\82µ\82½\83t\83B\81[\83\8b\83h\96¼: %s"
-
-msgid "' not known. Available builtin terminals are:"
-msgstr "' \82Í\96¢\92m\82Å\82·. \8c»\8ds\82Ì\91g\82Ý\8d\9e\82Ý\92[\96\96\82Í\8e\9f\82Ì\82Æ\82¨\82è\82Å\82·:"
+msgid "Compressed %d of %d nodes; %d (%d%%) remaining"
+msgstr "\83m\81[\83h %d \8cÂ(\91S %d \8cÂ\92\86) \82ð\88³\8fk\82µ\82Ü\82µ\82½; \8ec\82è %d (%d%%)"
-msgid "defaulting to '"
-msgstr "\8fÈ\97ª\92l\82ð\8e\9f\82Ì\82æ\82¤\82É\90Ý\92è\82µ\82Ü\82· '"
+msgid "Reading back spell file..."
+msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b\82ð\8bt\93Ç\8d\9e\92\86"
-msgid "E557: Cannot open termcap file"
-msgstr "E557: termcap\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+#.
+#. * Go through the trie of good words, soundfold each word and add it to
+#. * the soundfold trie.
+#.
+msgid "Performing soundfolding..."
+msgstr "\89¹\90º\8fô\8d\9e\82Ý\82ð\8eÀ\8ds\92\86..."
-msgid "E558: Terminal entry not found in terminfo"
-msgstr "E558: terminfo\82É\92[\96\96\83G\83\93\83g\83\8a\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "Number of words after soundfolding: %ld"
+msgstr "\89¹\90º\8fô\8d\9e\82Ý\8cã\82Ì\91\8d\92P\8cê\90\94: %ld"
-msgid "E559: Terminal entry not found in termcap"
-msgstr "E559: termcap\82É\92[\96\96\83G\83\93\83g\83\8a\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "Total number of words: %d"
+msgstr "\91\8d\92P\8cê\90\94: %d"
#, c-format
-msgid "E436: No \"%s\" entry in termcap"
-msgstr "E436: termcap\82É \"%s\" \82Ì\83G\83\93\83g\83\8a\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Writing suggestion file %s ..."
+msgstr "\8fC\90³\8có\95â\83t\83@\83C\83\8b \"%s\" \82ð\8f\91\8d\9e\82Ý\92\86..."
-msgid "E437: terminal capability \"cm\" required"
-msgstr "E437: \92[\96\96\82É \"cm\" \8b@\94\\\82ª\95K\97v\82Å\82·"
+#, c-format
+msgid "Estimated runtime memory use: %d bytes"
+msgstr "\90\84\92è\83\81\83\82\83\8a\8eg\97p\97Ê: %d \83o\83C\83g"
-#. Highlight title
-msgid ""
-"\n"
-"--- Terminal keys ---"
-msgstr ""
-"\n"
-"--- \92[\96\96\83L\81[ ---"
+msgid "E751: Output file name must not have region name"
+msgstr "E751: \8fo\97Í\83t\83@\83C\83\8b\96¼\82É\82Í\94Í\88Í\96¼\82ð\8aÜ\82ß\82ç\82ê\82Ü\82¹\82ñ"
-msgid "new shell started\n"
-msgstr "\90V\82µ\82¢\83V\83F\83\8b\82ð\8bN\93®\82µ\82Ü\82·\n"
+msgid "E754: Only up to 8 regions supported"
+msgstr "E754: \94Í\88Í\82Í 8 \8cÂ\82Ü\82Å\82µ\82©\83T\83|\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "Vim: Error reading input, exiting...\n"
-msgstr "Vim: \93ü\97Í\82ð\93Ç\8d\9e\82Ý\92\86\82Ì\83G\83\89\81[\82É\82æ\82è\8fI\97¹\82µ\82Ü\82·...\n"
+#, c-format
+msgid "E755: Invalid region in %s"
+msgstr "E755: \96³\8cø\82È\94Í\88Í\82Å\82·: %s"
-msgid "Used CUT_BUFFER0 instead of empty selection"
-msgstr "\8bó\82Ì\91I\91ð\97Ì\88æ\82Ì\82©\82í\82è\82ÉCUT_BUFFER0\82ª\8eg\97p\82³\82ê\82Ü\82µ\82½"
+msgid "Warning: both compounding and NOBREAK specified"
+msgstr "\8cx\8d\90: \95¡\8d\87\83t\83\89\83O\82Æ NOBREAK \82ª\97¼\95û\82Æ\82à\8ew\92è\82³\82ê\82Ü\82µ\82½"
-#. This happens when the FileChangedRO autocommand changes the
-#. * file in a way it becomes shorter.
-msgid "E834: Line count changed unexpectedly"
-msgstr "E834: \97\\\8aú\82¹\82¸\8ds\83J\83E\83\93\83g\82ª\95Ï\82í\82è\82Ü\82µ\82½"
+#, c-format
+msgid "Writing spell file %s ..."
+msgstr "\83X\83y\83\8b\83t\83@\83C\83\8b %s \82ð\8f\91\8d\9e\82Ý\92\86..."
-#. must display the prompt
-msgid "No undo possible; continue anyway"
-msgstr "\89Â\94\\\82È\83A\83\93\83h\83D\82Í\82 \82è\82Ü\82¹\82ñ: \82Æ\82è\82 \82¦\82¸\91±\82¯\82Ü\82·"
+msgid "Done!"
+msgstr "\8eÀ\8ds\82µ\82Ü\82µ\82½!"
#, c-format
-msgid "E828: Cannot open undo file for writing: %s"
-msgstr "E828: \8f\91\8d\9e\82Ý\97p\82É\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ: %s"
+msgid "E765: 'spellfile' does not have %ld entries"
+msgstr "E765: 'spellfile' \82É\82Í %ld \8cÂ\82Ì\83G\83\93\83g\83\8a\82Í\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "E825: Corrupted undo file (%s): %s"
-msgstr "E825: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ª\89ó\82ê\82Ä\82¢\82Ü\82· (%s): %s"
-
-msgid "Cannot write undo file in any directory in 'undodir'"
-msgstr "'undodir'\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8f\91\82«\8d\9e\82ß\82Ü\82¹\82ñ"
+msgid "Word removed from %s"
+msgstr "%s \82©\82ç\92P\8cê\82ª\8dí\8f\9c\82³\82ê\82Ü\82µ\82½"
#, c-format
-msgid "Will not overwrite with undo file, cannot read: %s"
-msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Æ\82µ\82Ä\93Ç\82Ý\8d\9e\82ß\82È\82¢\82Ì\82Å\8fã\8f\91\82«\82µ\82Ü\82¹\82ñ: %s"
+msgid "Word added to %s"
+msgstr "%s \82É\92P\8cê\82ª\92Ç\89Á\82³\82ê\82Ü\82µ\82½"
-#, c-format
-msgid "Will not overwrite, this is not an undo file: %s"
-msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82Ì\82Å\8fã\8f\91\82«\82µ\82Ü\82¹\82ñ: %s"
+msgid "E763: Word characters differ between spell files"
+msgstr "E763: \92P\8cê\82Ì\95¶\8e\9a\82ª\83X\83y\83\8b\83t\83@\83C\83\8b\82Æ\88Ù\82È\82è\82Ü\82·"
-msgid "Skipping undo file write, nothing to undo"
-msgstr "\91Î\8fÛ\82ª\82È\82¢\82Ì\82Å\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\8f\91\82«\8d\9e\82Ý\82ð\83X\83L\83b\83v\82µ\82Ü\82·"
+msgid "Sorry, no suggestions"
+msgstr "\8ec\94O\82Å\82·\82ª, \8fC\90³\8có\95â\82Í\82 \82è\82Ü\82¹\82ñ"
#, c-format
-msgid "Writing undo file: %s"
-msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\8f\91\82«\8d\9e\82Ý\92\86: %s"
+msgid "Sorry, only %ld suggestions"
+msgstr "\8ec\94O\82Å\82·\82ª, \8fC\90³\8có\95â\82Í %ld \8cÂ\82µ\82©\82 \82è\82Ü\82¹\82ñ"
+#. for when 'cmdheight' > 1
+#. avoid more prompt
#, c-format
-msgid "E829: write error in undo file: %s"
-msgstr "E829: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\8f\91\82«\8d\9e\82Ý\83G\83\89\81[\82Å\82·: %s"
+msgid "Change \"%.*s\" to:"
+msgstr "\"%.*s\" \82ð\8e\9f\82Ö\95Ï\8a·:"
#, c-format
-msgid "Not reading undo file, owner differs: %s"
-msgstr "\83I\81[\83i\81[\82ª\88Ù\82È\82é\82Ì\82Å\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\93Ç\82Ý\8d\9e\82Ý\82Ü\82¹\82ñ: %s"
+msgid " < \"%.*s\""
+msgstr " < \"%.*s\""
-#, c-format
-msgid "Reading undo file: %s"
-msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\93Ç\8d\9e\92\86: %s"
-
-#, c-format
-msgid "E822: Cannot open undo file for reading: %s"
-msgstr "E822: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\93Ç\8d\9e\97p\82Æ\82µ\82Ä\8aJ\82¯\82Ü\82¹\82ñ: %s"
+msgid "E752: No previous spell replacement"
+msgstr "E752: \83X\83y\83\8b\92u\8a·\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
#, c-format
-msgid "E823: Not an undo file: %s"
-msgstr "E823: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid "E753: Not found: %s"
+msgstr "E753: \82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
#, c-format
-msgid "E832: Non-encrypted file has encrypted undo file: %s"
-msgstr "E832: \94ñ\88Ã\8d\86\89»\83t\83@\83C\83\8b\82ª\88Ã\8d\86\89»\82³\82ê\82½\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8eg\82Á\82Ä\82Ü\82·: %s"
+msgid "E778: This does not look like a .sug file: %s"
+msgstr "E778: .sug \83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·: %s"
#, c-format
-msgid "E826: Undo file decryption failed: %s"
-msgstr "E826: \88Ã\8d\86\89»\82³\82ê\82½\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\89ð\93Ç\82É\8e¸\94s\82µ\82Ü\82µ\82½: %s"
+msgid "E779: Old .sug file, needs to be updated: %s"
+msgstr "E779: \8cÃ\82¢ .sug \83t\83@\83C\83\8b\82È\82Ì\82Å, \83A\83b\83v\83f\81[\83g\82µ\82Ä\82\82¾\82³\82¢: %s"
#, c-format
-msgid "E827: Undo file is encrypted: %s"
-msgstr "E827: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ª\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·: %s"
+msgid "E780: .sug file is for newer version of Vim: %s"
+msgstr "E780: \82æ\82è\90V\82µ\82¢\83o\81[\83W\83\87\83\93\82Ì Vim \97p\82Ì .sug \83t\83@\83C\83\8b\82Å\82·: %s"
#, c-format
-msgid "E824: Incompatible undo file: %s"
-msgstr "E824: \8cÝ\8a·\90«\82Ì\96³\82¢\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82·: %s"
-
-msgid "File contents changed, cannot use undo info"
-msgstr "\83t\83@\83C\83\8b\82Ì\93à\97e\82ª\95Ï\82í\82Á\82Ä\82¢\82é\82½\82ß\81A\83A\83\93\83h\83D\8fî\95ñ\82ð\97\98\97p\82Å\82«\82Ü\82¹\82ñ"
+msgid "E781: .sug file doesn't match .spl file: %s"
+msgstr "E781: .sug \83t\83@\83C\83\8b\82ª .spl \83t\83@\83C\83\8b\82Æ\88ê\92v\82µ\82Ü\82¹\82ñ: %s"
#, c-format
-msgid "Finished reading undo file %s"
-msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b %s \82Ì\8eæ\8d\9e\82ð\8a®\97¹"
-
-msgid "Already at oldest change"
-msgstr "\8aù\82É\88ê\94Ô\8cÃ\82¢\95Ï\8dX\82Å\82·"
+msgid "E782: error while reading .sug file: %s"
+msgstr "E782: .sug \83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½: %s"
-msgid "Already at newest change"
-msgstr "\8aù\82É\88ê\94Ô\90V\82µ\82¢\95Ï\8dX\82Å\82·"
+#. This should have been checked when generating the .spl
+#. * file.
+msgid "E783: duplicate char in MAP entry"
+msgstr "E783: MAP \83G\83\93\83g\83\8a\82É\8fd\95¡\95¶\8e\9a\82ª\91¶\8dÝ\82µ\82Ü\82·"
#, c-format
-msgid "E830: Undo number %ld not found"
-msgstr "E830: \83A\83\93\83h\83D\94Ô\8d\86 %ld \82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-
-msgid "E438: u_undo: line numbers wrong"
-msgstr "E438: u_undo: \8ds\94Ô\8d\86\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
-
-msgid "more line"
-msgstr "\8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
-
-msgid "more lines"
-msgstr "\8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
-
-msgid "line less"
-msgstr "\8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
-
-msgid "fewer lines"
-msgstr "\8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
-
-msgid "change"
-msgstr "\89Ó\8f\8a\95Ï\8dX\82µ\82Ü\82µ\82½"
-
-msgid "changes"
-msgstr "\89Ó\8f\8a\95Ï\8dX\82µ\82Ü\82µ\82½"
+msgid "E390: Illegal argument: %s"
+msgstr "E390: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
#, c-format
-msgid "%ld %s; %s #%ld %s"
-msgstr "%ld %s; %s #%ld %s"
-
-msgid "before"
-msgstr "\91O\95û"
-
-msgid "after"
-msgstr "\8cã\95û"
-
-msgid "Nothing to undo"
-msgstr "\83A\83\93\83h\83D\91Î\8fÛ\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E391: No such syntax cluster: %s"
+msgstr "E391: \82»\82Ì\82æ\82¤\82È\8d\\\95¶\83N\83\89\83X\83^\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid "number changes when saved"
-msgstr "\92Ê\94Ô \95Ï\8dX\90\94 \95Ï\8dX\8e\9e\8aú \95Û\91¶\8dÏ"
+msgid "No Syntax items defined for this buffer"
+msgstr "\82±\82Ì\83o\83b\83t\83@\82É\92è\8b`\82³\82ê\82½\8d\\\95¶\97v\91f\82Í\82 \82è\82Ü\82¹\82ñ"
-#, c-format
-msgid "%ld seconds ago"
-msgstr "%ld \95b\8co\89ß\82µ\82Ä\82¢\82Ü\82·"
+msgid "syncing on C-style comments"
+msgstr "C\8c¾\8cê\95\97\83R\83\81\83\93\83g\82©\82ç\93¯\8aú\92\86"
-msgid "E790: undojoin is not allowed after undo"
-msgstr "E790: undo \82Ì\92¼\8cã\82É undojoin \82Í\82Å\82«\82Ü\82¹\82ñ"
+msgid "no syncing"
+msgstr "\94ñ\93¯\8aú"
-msgid "E439: undo list corrupt"
-msgstr "E439: \83A\83\93\83h\83D\83\8a\83X\83g\82ª\89ó\82ê\82Ä\82¢\82Ü\82·"
+msgid "syncing starts "
+msgstr "\93¯\8aú\8aJ\8en "
-msgid "E440: undo line missing"
-msgstr "E440: \83A\83\93\83h\83D\8ds\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid " lines before top line"
+msgstr " \8ds\91O(\83g\83b\83v\8ds\82æ\82è\82à)"
-#. Only MS VC 4.1 and earlier can do Win32s
msgid ""
"\n"
-"MS-Windows 16/32-bit GUI version"
+"--- Syntax sync items ---"
msgstr ""
"\n"
-"MS-Windows 16/32 \83r\83b\83g GUI \94Å"
+"--- \8d\\\95¶\93¯\8aú\97v\91f ---"
msgid ""
"\n"
-"MS-Windows 64-bit GUI version"
+"syncing on items"
msgstr ""
"\n"
-"MS-Windows 64 \83r\83b\83g GUI \94Å"
+"\97v\91f\8fã\82Å\93¯\8aú\92\86"
msgid ""
"\n"
-"MS-Windows 32-bit GUI version"
+"--- Syntax items ---"
msgstr ""
"\n"
-"MS-Windows 32 \83r\83b\83g GUI \94Å"
+"--- \8d\\\95¶\97v\91f ---"
-msgid " in Win32s mode"
-msgstr " in Win32s \83\82\81[\83h"
+#, c-format
+msgid "E392: No such syntax cluster: %s"
+msgstr "E392: \82»\82Ì\82æ\82¤\82È\8d\\\95¶\83N\83\89\83X\83^\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid " with OLE support"
-msgstr " with OLE \83T\83|\81[\83g"
+msgid "minimal "
+msgstr "minimal"
-msgid ""
-"\n"
-"MS-Windows 64-bit console version"
-msgstr ""
-"\n"
-"MS-Windows 64 \83r\83b\83g \83R\83\93\83\\\81[\83\8b \94Å"
+msgid "maximal "
+msgstr "maximal"
-msgid ""
-"\n"
-"MS-Windows 32-bit console version"
-msgstr ""
-"\n"
-"MS-Windows 32 \83r\83b\83g \83R\83\93\83\\\81[\83\8b \94Å"
+msgid "; match "
+msgstr "; \8aY\93\96 "
-msgid ""
-"\n"
-"MS-Windows 16-bit version"
-msgstr ""
-"\n"
-"MS-Windows 16 \83r\83b\83g \94Å"
+msgid " line breaks"
+msgstr " \8cÂ\82Ì\89ü\8ds"
-msgid ""
-"\n"
-"32-bit MS-DOS version"
-msgstr ""
-"\n"
-"32 \83r\83b\83g MS-DOS \94Å"
+msgid "E395: contains argument not accepted here"
+msgstr "E395: \82±\82Ì\8fê\8f\8a\82Å\82Í\88ø\90\94contains\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"16-bit MS-DOS version"
-msgstr ""
-"\n"
-"16 \83r\83b\83g MS-DOS \94Å"
+msgid "E844: invalid cchar value"
+msgstr "E844: \96³\8cø\82Ècchar\82Ì\92l\82Å\82·"
-msgid ""
-"\n"
-"MacOS X (unix) version"
-msgstr ""
-"\n"
-"MacOS X (unix) \94Å"
+msgid "E393: group[t]here not accepted here"
+msgstr "E393: \82±\82±\82Å\82Í\83O\83\8b\81[\83v\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"MacOS X version"
-msgstr ""
-"\n"
-"MacOS X \94Å"
+#, c-format
+msgid "E394: Didn't find region item for %s"
+msgstr "E394: %s \82Ì\94Í\88Í\97v\91f\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid ""
-"\n"
-"MacOS version"
-msgstr ""
-"\n"
-"MacOS \94Å"
+msgid "E397: Filename required"
+msgstr "E397: \83t\83@\83C\83\8b\96¼\82ª\95K\97v\82Å\82·"
-msgid ""
-"\n"
-"RISC OS version"
-msgstr ""
-"\n"
-"RISC OS \94Å"
+msgid "E847: Too many syntax includes"
+msgstr "E847: \8d\\\95¶\82Ì\8eæ\82è\8d\9e\82Ý(include)\82ª\91½\89ß\82¬\82Ü\82·"
-msgid ""
-"\n"
-"OpenVMS version"
-msgstr ""
-"\n"
-"OpenVMS \94Å"
+#, c-format
+msgid "E789: Missing ']': %s"
+msgstr "E789: ']' \82ª\82 \82è\82Ü\82¹\82ñ: %s"
-msgid ""
-"\n"
-"Included patches: "
-msgstr ""
-"\n"
-"\93K\97p\8dÏ\83p\83b\83`: "
+#, c-format
+msgid "E398: Missing '=': %s"
+msgstr "E398: '=' \82ª\82 \82è\82Ü\82¹\82ñ: %s"
-msgid ""
-"\n"
-"Extra patches: "
-msgstr ""
-"\n"
-"\92Ç\89Á\8ag\92£\83p\83b\83`: "
+#, c-format
+msgid "E399: Not enough arguments: syntax region %s"
+msgstr "E399: \88ø\90\94\82ª\91«\82è\82Ü\82¹\82ñ: \8d\\\95¶\94Í\88Í %s"
-msgid "Modified by "
-msgstr "Modified by "
+msgid "E848: Too many syntax clusters"
+msgstr "E848: \8d\\\95¶\83N\83\89\83X\83^\82ª\91½\89ß\82¬\82Ü\82·"
-msgid ""
-"\n"
-"Compiled "
-msgstr ""
-"\n"
-"Compiled "
+msgid "E400: No cluster specified"
+msgstr "E400: \83N\83\89\83X\83^\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "by "
-msgstr "by "
+#, c-format
+msgid "E401: Pattern delimiter not found: %s"
+msgstr "E401: \83p\83^\81[\83\93\8bæ\90Ø\82è\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
-msgid ""
-"\n"
-"Huge version "
-msgstr ""
-"\n"
-"Huge \94Å "
+#, c-format
+msgid "E402: Garbage after pattern: %s"
+msgstr "E402: \83p\83^\81[\83\93\82Ì\82 \82Æ\82É\83S\83~\82ª\82 \82è\82Ü\82·: %s"
-msgid ""
-"\n"
-"Big version "
-msgstr ""
-"\n"
-"Big \94Å "
+msgid "E403: syntax sync: line continuations pattern specified twice"
+msgstr "E403: \8d\\\95¶\93¯\8aú: \98A\91±\8ds\83p\83^\81[\83\93\82ª2\93x\8ew\92è\82³\82ê\82Ü\82µ\82½"
-msgid ""
-"\n"
-"Normal version "
-msgstr ""
-"\n"
-"\92Ê\8fí \94Å "
+#, c-format
+msgid "E404: Illegal arguments: %s"
+msgstr "E404: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
-msgid ""
-"\n"
-"Small version "
-msgstr ""
-"\n"
-"Small \94Å "
+#, c-format
+msgid "E405: Missing equal sign: %s"
+msgstr "E405: \93\99\8d\86\82ª\82 \82è\82Ü\82¹\82ñ: %s"
-msgid ""
-"\n"
-"Tiny version "
-msgstr ""
-"\n"
-"Tiny \94Å "
+#, c-format
+msgid "E406: Empty argument: %s"
+msgstr "E406: \8bó\82Ì\88ø\90\94: %s"
-msgid "without GUI."
-msgstr "without GUI."
+#, c-format
+msgid "E407: %s not allowed here"
+msgstr "E407: %s \82Í\83R\83R\82Å\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
-msgid "with GTK2-GNOME GUI."
-msgstr "with GTK2-GNOME GUI."
+#, c-format
+msgid "E408: %s must be first in contains list"
+msgstr "E408: %s \82Í\93à\97e\83\8a\83X\83g\82Ì\90æ\93ª\82Å\82È\82¯\82ê\82Î\82È\82ç\82È\82¢"
-msgid "with GTK2 GUI."
-msgstr "with GTK2 GUI."
+#, c-format
+msgid "E409: Unknown group name: %s"
+msgstr "E409: \96¢\92m\82Ì\83O\83\8b\81[\83v\96¼: %s"
-msgid "with X11-Motif GUI."
-msgstr "with X11-Motif GUI."
+#, c-format
+msgid "E410: Invalid :syntax subcommand: %s"
+msgstr "E410: \96³\8cø\82È :syntax \82Ì\83T\83u\83R\83}\83\93\83h: %s"
-msgid "with X11-neXtaw GUI."
-msgstr "with X11-neXtaw GUI."
+msgid "E679: recursive loop loading syncolor.vim"
+msgstr "E679: syncolor.vim \82Ì\8dÄ\8bA\8cÄ\82Ñ\8fo\82µ\82ð\8c\9f\8fo\82µ\82Ü\82µ\82½"
-msgid "with X11-Athena GUI."
-msgstr "with X11-Athena GUI."
+#, c-format
+msgid "E411: highlight group not found: %s"
+msgstr "E411: \83n\83C\83\89\83C\83g\83O\83\8b\81[\83v\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
-msgid "with Photon GUI."
-msgstr "with Photon GUI."
+#, c-format
+msgid "E412: Not enough arguments: \":highlight link %s\""
+msgstr "E412: \88ø\90\94\82ª\8f[\95ª\82Å\82Í\82È\82¢: \":highlight link %s\""
-msgid "with GUI."
-msgstr "with GUI."
+#, c-format
+msgid "E413: Too many arguments: \":highlight link %s\""
+msgstr "E413: \88ø\90\94\82ª\91½\89ß\82¬\82Ü\82·: \":highlight link %s\""
-msgid "with Carbon GUI."
-msgstr "with Carbon GUI."
+msgid "E414: group has settings, highlight link ignored"
+msgstr "E414: \83O\83\8b\81[\83v\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82é\82Ì\82Å\83n\83C\83\89\83C\83g\83\8a\83\93\83N\82Í\96³\8e\8b\82³\82ê\82Ü\82·"
-msgid "with Cocoa GUI."
-msgstr "with Cocoa GUI."
+#, c-format
+msgid "E415: unexpected equal sign: %s"
+msgstr "E415: \97\\\8aú\82¹\82Ê\93\99\8d\86\82Å\82·: %s"
-msgid "with (classic) GUI."
-msgstr "with (\83N\83\89\83V\83b\83N) GUI."
+#, c-format
+msgid "E416: missing equal sign: %s"
+msgstr "E416: \93\99\8d\86\82ª\82ª\82 \82è\82Ü\82¹\82ñ: %s"
-msgid " Features included (+) or not (-):\n"
-msgstr " \8b@\94\\\82Ì\88ê\97\97 \97L\8cø(+)/\96³\8cø(-)\n"
+#, c-format
+msgid "E417: missing argument: %s"
+msgstr "E417: \88ø\90\94\82ª\82 \82è\82Ü\82¹\82ñ: %s"
-msgid " system vimrc file: \""
-msgstr " \83V\83X\83e\83\80 vimrc: \""
+#, c-format
+msgid "E418: Illegal value: %s"
+msgstr "E418: \95s\90³\82È\92l\82Å\82·: %s"
-msgid " user vimrc file: \""
-msgstr " \83\86\81[\83U vimrc: \""
+msgid "E419: FG color unknown"
+msgstr "E419: \96¢\92m\82Ì\91O\8ci\90F\82Å\82·"
-msgid " 2nd user vimrc file: \""
-msgstr " \91æ2\83\86\81[\83U vimrc: \""
+msgid "E420: BG color unknown"
+msgstr "E420: \96¢\92m\82Ì\94w\8ci\90F\82Å\82·"
-msgid " 3rd user vimrc file: \""
-msgstr " \91æ3\83\86\81[\83U vimrc: \""
+#, c-format
+msgid "E421: Color name or number not recognized: %s"
+msgstr "E421: \83J\83\89\81[\96¼\82â\94Ô\8d\86\82ð\94F\8e¯\82Å\82«\82Ü\82¹\82ñ: %s"
-msgid " user exrc file: \""
-msgstr " \83\86\81[\83U exrc: \""
+#, c-format
+msgid "E422: terminal code too long: %s"
+msgstr "E422: \8fI\92[\83R\81[\83h\82ª\92·\89ß\82¬\82Ü\82·: %s"
-msgid " 2nd user exrc file: \""
-msgstr " \91æ2\83\86\81[\83U exrc: \""
+#, c-format
+msgid "E423: Illegal argument: %s"
+msgstr "E423: \95s\90³\82È\88ø\90\94\82Å\82·: %s"
-msgid " system gvimrc file: \""
-msgstr " \83V\83X\83e\83\80 gvimrc: \""
+msgid "E424: Too many different highlighting attributes in use"
+msgstr "E424: \91½\82\82Ì\88Ù\82È\82é\83n\83C\83\89\83C\83g\91®\90«\82ª\8eg\82í\82ê\89ß\82¬\82Ä\82¢\82Ü\82·"
-msgid " user gvimrc file: \""
-msgstr " \83\86\81[\83U gvimrc: \""
+msgid "E669: Unprintable character in group name"
+msgstr "E669: \83O\83\8b\81[\83v\96¼\82É\88ó\8dü\95s\89Â\94\\\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
-msgid "2nd user gvimrc file: \""
-msgstr " \91æ2\83\86\81[\83U gvimrc: \""
+msgid "W18: Invalid character in group name"
+msgstr "W18: \83O\83\8b\81[\83v\96¼\82É\95s\90³\82È\95¶\8e\9a\82ª\82 \82è\82Ü\82·"
-msgid "3rd user gvimrc file: \""
-msgstr " \91æ3\83\86\81[\83U gvimrc: \""
+msgid "E849: Too many highlight and syntax groups"
+msgstr "E849: \83n\83C\83\89\83C\83g\82Æ\8d\\\95¶\83O\83\8b\81[\83v\82ª\91½\89ß\82¬\82Ü\82·"
-msgid " system menu file: \""
-msgstr " \83V\83X\83e\83\80\83\81\83j\83\85\81[: \""
+msgid "E555: at bottom of tag stack"
+msgstr "E555: \83^\83O\83X\83^\83b\83N\82Ì\96\96\94ö\82Å\82·"
-msgid " fall-back for $VIM: \""
-msgstr " \8fÈ\97ª\8e\9e\82Ì $VIM: \""
+msgid "E556: at top of tag stack"
+msgstr "E556: \83^\83O\83X\83^\83b\83N\82Ì\90æ\93ª\82Å\82·"
-msgid " f-b for $VIMRUNTIME: \""
-msgstr "\8fÈ\97ª\8e\9e\82Ì $VIMRUNTIME: \""
+msgid "E425: Cannot go before first matching tag"
+msgstr "E425: \8dÅ\8f\89\82Ì\8aY\93\96\83^\83O\82ð\92´\82¦\82Ä\96ß\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
-msgid "Compilation: "
-msgstr "\83R\83\93\83p\83C\83\8b: "
+#, c-format
+msgid "E426: tag not found: %s"
+msgstr "E426: \83^\83O\82ª\82Ý\82Â\82©\82è\82Ü\82¹\82ñ: %s"
-msgid "Compiler: "
-msgstr "\83R\83\93\83p\83C\83\89: "
+msgid " # pri kind tag"
+msgstr " # pri kind tag"
-msgid "Linking: "
-msgstr "\83\8a\83\93\83N: "
+msgid "file\n"
+msgstr "\83t\83@\83C\83\8b\n"
-msgid " DEBUG BUILD"
-msgstr "\83f\83o\83b\83O\83r\83\8b\83h"
+msgid "E427: There is only one matching tag"
+msgstr "E427: \8aY\93\96\83^\83O\82ª1\82Â\82¾\82¯\82µ\82©\82 \82è\82Ü\82¹\82ñ"
-msgid "VIM - Vi IMproved"
-msgstr "VIM - Vi IMproved"
+msgid "E428: Cannot go beyond last matching tag"
+msgstr "E428: \8dÅ\8cã\82É\8aY\93\96\82·\82é\83^\83O\82ð\92´\82¦\82Ä\90i\82Þ\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
-msgid "version "
-msgstr "version "
+#, c-format
+msgid "File \"%s\" does not exist"
+msgstr "\83t\83@\83C\83\8b \"%s\" \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "by Bram Moolenaar et al."
-msgstr "by Bram Moolenaar \91¼."
+#. Give an indication of the number of matching tags
+#, c-format
+msgid "tag %d of %d%s"
+msgstr "\83^\83O %d (\91S%d%s)"
-msgid "Vim is open source and freely distributable"
-msgstr "Vim \82Í\83I\81[\83v\83\93\83\\\81[\83X\82Å\82 \82è\8e©\97R\82É\94z\95z\89Â\94\\\82Å\82·"
+msgid " or more"
+msgstr " \82©\82»\82ê\88È\8fã"
-msgid "Help poor children in Uganda!"
-msgstr "\83E\83K\83\93\83_\82Ì\8cb\82Ü\82ê\82È\82¢\8eq\8b\9f\82½\82¿\82É\89\87\8f\95\82ð!"
+msgid " Using tag with different case!"
+msgstr " \83^\83O\82ð\88Ù\82È\82écase\82Å\8eg\97p\82µ\82Ü\82·!"
-msgid "type :help iccf<Enter> for information "
-msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help iccf<Enter> "
+#, c-format
+msgid "E429: File \"%s\" does not exist"
+msgstr "E429: \83t\83@\83C\83\8b \"%s\" \82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "type :q<Enter> to exit "
-msgstr "\8fI\97¹\82·\82é\82É\82Í :q<Enter> "
+#. Highlight title
+msgid ""
+"\n"
+" # TO tag FROM line in file/text"
+msgstr ""
+"\n"
+" # TO \83^\83O FROM \8ds in file/text"
-msgid "type :help<Enter> or <F1> for on-line help"
-msgstr "\83I\83\93\83\89\83C\83\93\83w\83\8b\83v\82Í :help<Enter> \82© <F1> "
+#, c-format
+msgid "Searching tags file %s"
+msgstr "\83^\83O\83t\83@\83C\83\8b %s \82ð\8c\9f\8dõ\92\86"
-msgid "type :help version7<Enter> for version info"
-msgstr "\83o\81[\83W\83\87\83\93\8fî\95ñ\82Í :help version7<Enter> "
+#, c-format
+msgid "E430: Tag file path truncated for %s\n"
+msgstr "E430: \83^\83O\83t\83@\83C\83\8b\82Ì\83p\83X\82ª %s \82É\90Ø\82è\8eÌ\82Ä\82ç\82ê\82Ü\82µ\82½\n"
-msgid "Running in Vi compatible mode"
-msgstr "Vi\8cÝ\8a·\83\82\81[\83h\82Å\93®\8dì\92\86"
+msgid "Ignoring long line in tags file"
+msgstr "\83^\83O\83t\83@\83C\83\8b\93à\82Ì\92·\82¢\8ds\82ð\96³\8e\8b\82µ\82Ü\82·"
-msgid "type :set nocp<Enter> for Vim defaults"
-msgstr "Vim\90\84\8f§\92l\82É\82·\82é\82É\82Í :set nocp<Enter> "
+#, c-format
+msgid "E431: Format error in tags file \"%s\""
+msgstr "E431: \83^\83O\83t\83@\83C\83\8b \"%s\" \82Ì\83t\83H\81[\83}\83b\83g\82É\83G\83\89\81[\82ª\82 \82è\82Ü\82·"
-msgid "type :help cp-default<Enter> for info on this"
-msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help cp-default<Enter>"
+#, c-format
+msgid "Before byte %ld"
+msgstr "\92¼\91O\82Ì %ld \83o\83C\83g"
-msgid "menu Help->Orphans for information "
-msgstr "\8fÚ\8d×\82Í\83\81\83j\83\85\81[\82Ì \83w\83\8b\83v\81¨\8cÇ\8e\99 \82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ "
+#, c-format
+msgid "E432: Tags file not sorted: %s"
+msgstr "E432: \83^\83O\83t\83@\83C\83\8b\82ª\83\\\81[\83g\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ: %s"
-msgid "Running modeless, typed text is inserted"
-msgstr "\83\82\81[\83h\96³\82Å\8eÀ\8ds\92\86, \83^\83C\83v\82µ\82½\95¶\8e\9a\82ª\91}\93ü\82³\82ê\82Ü\82·"
+#. never opened any tags file
+msgid "E433: No tags file"
+msgstr "E433: \83^\83O\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "menu Edit->Global Settings->Toggle Insert Mode "
-msgstr "\83\81\83j\83\85\81[\82Ì \95Ò\8fW\81¨\91S\91Ì\90Ý\92è\81¨\91}\93ü(\8f\89\90S\8eÒ)\83\82\81[\83h\90Ø\91Ö"
+msgid "E434: Can't find tag pattern"
+msgstr "E434: \83^\83O\83p\83^\81[\83\93\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid " for two modes "
-msgstr " \82Å\83\82\81[\83h\97L\82É "
+msgid "E435: Couldn't find tag, just guessing!"
+msgstr "E435: \83^\83O\82ð\82Ý\82Â\82¯\82ç\82ê\82È\82¢\82Ì\82Å\92P\82É\90\84\91ª\82µ\82Ü\82·!"
-msgid "menu Edit->Global Settings->Toggle Vi Compatible"
-msgstr "\83\81\83j\83\85\81[\82Ì \95Ò\8fW\81¨\91S\91Ì\90Ý\92è\81¨Vi\8cÝ\8a·\83\82\81[\83h\90Ø\91Ö "
+#, c-format
+msgid "Duplicate field name: %s"
+msgstr "\8fd\95¡\82µ\82½\83t\83B\81[\83\8b\83h\96¼: %s"
-msgid " for Vim defaults "
-msgstr " \82ÅVim\82Æ\82µ\82Ä\93®\8dì "
+msgid "' not known. Available builtin terminals are:"
+msgstr "' \82Í\96¢\92m\82Å\82·. \8c»\8ds\82Ì\91g\82Ý\8d\9e\82Ý\92[\96\96\82Í\8e\9f\82Ì\82Æ\82¨\82è\82Å\82·:"
-msgid "Sponsor Vim development!"
-msgstr "Vim\82Ì\8aJ\94\82ð\89\9e\89\87\82µ\82Ä\82\82¾\82³\82¢!"
+msgid "defaulting to '"
+msgstr "\8fÈ\97ª\92l\82ð\8e\9f\82Ì\82æ\82¤\82É\90Ý\92è\82µ\82Ü\82· '"
-msgid "Become a registered Vim user!"
-msgstr "Vim\82Ì\93o\98^\83\86\81[\83U\82É\82È\82Á\82Ä\82\82¾\82³\82¢!"
+msgid "E557: Cannot open termcap file"
+msgstr "E557: termcap\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ"
-msgid "type :help sponsor<Enter> for information "
-msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help sponsor<Enter> "
+msgid "E558: Terminal entry not found in terminfo"
+msgstr "E558: terminfo\82É\92[\96\96\83G\83\93\83g\83\8a\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid "type :help register<Enter> for information "
-msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help register<Enter> "
+msgid "E559: Terminal entry not found in termcap"
+msgstr "E559: termcap\82É\92[\96\96\83G\83\93\83g\83\8a\82ð\82Ý\82Â\82¯\82ç\82ê\82Ü\82¹\82ñ"
-msgid "menu Help->Sponsor/Register for information "
-msgstr "\8fÚ\8d×\82Í\83\81\83j\83\85\81[\82Ì \83w\83\8b\83v\81¨\83X\83|\83\93\83T\81[/\93o\98^ \82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ "
-
-msgid "WARNING: Windows 95/98/ME detected"
-msgstr " \8cx\8d\90: Windows 95/98/Me \82ð\8c\9f\8fo "
+#, c-format
+msgid "E436: No \"%s\" entry in termcap"
+msgstr "E436: termcap\82É \"%s\" \82Ì\83G\83\93\83g\83\8a\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "type :help windows95<Enter> for info on this"
-msgstr " \8fÚ\8d×\82È\8fî\95ñ\82Í :help windows95<Enter> "
+msgid "E437: terminal capability \"cm\" required"
+msgstr "E437: \92[\96\96\82É \"cm\" \8b@\94\\\82ª\95K\97v\82Å\82·"
-msgid "Already only one window"
-msgstr "\8aù\82É\83E\83B\83\93\83h\83E\82Í1\82Â\82µ\82©\82 \82è\82Ü\82¹\82ñ"
+#. Highlight title
+msgid ""
+"\n"
+"--- Terminal keys ---"
+msgstr ""
+"\n"
+"--- \92[\96\96\83L\81[ ---"
-msgid "E441: There is no preview window"
-msgstr "E441: \83v\83\8c\83r\83\85\81[\83E\83B\83\93\83h\83E\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "new shell started\n"
+msgstr "\90V\82µ\82¢\83V\83F\83\8b\82ð\8bN\93®\82µ\82Ü\82·\n"
-msgid "E442: Can't split topleft and botright at the same time"
-msgstr "E442: \8d¶\8fã\82Æ\89E\89º\82ð\93¯\8e\9e\82É\95ª\8a\84\82·\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
+msgid "Vim: Error reading input, exiting...\n"
+msgstr "Vim: \93ü\97Í\82ð\93Ç\8d\9e\82Ý\92\86\82Ì\83G\83\89\81[\82É\82æ\82è\8fI\97¹\82µ\82Ü\82·...\n"
-msgid "E443: Cannot rotate when another window is split"
-msgstr "E443: \91¼\82Ì\83E\83B\83\93\83h\83E\82ª\95ª\8a\84\82³\82ê\82Ä\82¢\82é\8e\9e\82É\82Í\8f\87\89ñ\82Å\82«\82Ü\82¹\82ñ"
+msgid "Used CUT_BUFFER0 instead of empty selection"
+msgstr "\8bó\82Ì\91I\91ð\97Ì\88æ\82Ì\82©\82í\82è\82ÉCUT_BUFFER0\82ª\8eg\97p\82³\82ê\82Ü\82µ\82½"
-msgid "E444: Cannot close last window"
-msgstr "E444: \8dÅ\8cã\82Ì\83E\83B\83\93\83h\83E\82ð\95Â\82¶\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
+#. This happens when the FileChangedRO autocommand changes the
+#. * file in a way it becomes shorter.
+msgid "E834: Line count changed unexpectedly"
+msgstr "E834: \97\\\8aú\82¹\82¸\8ds\83J\83E\83\93\83g\82ª\95Ï\82í\82è\82Ü\82µ\82½"
-msgid "E813: Cannot close autocmd window"
-msgstr "E813: autocmd\83E\83B\83\93\83h\83E\82Í\95Â\82¶\82ç\82ê\82Ü\82¹\82ñ"
+#. must display the prompt
+msgid "No undo possible; continue anyway"
+msgstr "\89Â\94\\\82È\83A\83\93\83h\83D\82Í\82 \82è\82Ü\82¹\82ñ: \82Æ\82è\82 \82¦\82¸\91±\82¯\82Ü\82·"
-msgid "E814: Cannot close window, only autocmd window would remain"
-msgstr "E814: autocmd\83E\83B\83\93\83h\83E\82µ\82©\8ec\82ç\82È\82¢\82½\82ß\81A\83E\83B\83\93\83h\83E\82Í\95Â\82¶\82ç\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "E828: Cannot open undo file for writing: %s"
+msgstr "E828: \8f\91\8d\9e\82Ý\97p\82É\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8aJ\82¯\82Ü\82¹\82ñ: %s"
-msgid "E445: Other window contains changes"
-msgstr "E445: \91¼\82Ì\83E\83B\83\93\83h\83E\82É\82Í\95Ï\8dX\82ª\82 \82è\82Ü\82·"
+#, c-format
+msgid "E825: Corrupted undo file (%s): %s"
+msgstr "E825: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ª\89ó\82ê\82Ä\82¢\82Ü\82· (%s): %s"
-msgid "E446: No file name under cursor"
-msgstr "E446: \83J\81[\83\\\83\8b\82Ì\89º\82É\83t\83@\83C\83\8b\96¼\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Cannot write undo file in any directory in 'undodir'"
+msgstr "'undodir'\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8f\91\82«\8d\9e\82ß\82Ü\82¹\82ñ"
#, c-format
-msgid "E447: Can't find file \"%s\" in path"
-msgstr "E447: path\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"
-
-msgid "Edit with &multiple Vims"
-msgstr "\95¡\90\94\82ÌVim\82Å\95Ò\8fW\82·\82é (&M)"
+msgid "Will not overwrite with undo file, cannot read: %s"
+msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Æ\82µ\82Ä\93Ç\82Ý\8d\9e\82ß\82È\82¢\82Ì\82Å\8fã\8f\91\82«\82µ\82Ü\82¹\82ñ: %s"
-msgid "Edit with single &Vim"
-msgstr "1\82Â\82ÌVim\82Å\95Ò\8fW\82·\82é (&V)"
+#, c-format
+msgid "Will not overwrite, this is not an undo file: %s"
+msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82Í\82È\82¢\82Ì\82Å\8fã\8f\91\82«\82µ\82Ü\82¹\82ñ: %s"
-msgid "Diff with Vim"
-msgstr "Vim\82Å\8d·\95ª\82ð\8c©\82é"
+msgid "Skipping undo file write, nothing to undo"
+msgstr "\91Î\8fÛ\82ª\82È\82¢\82Ì\82Å\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\8f\91\82«\8d\9e\82Ý\82ð\83X\83L\83b\83v\82µ\82Ü\82·"
-msgid "Edit with &Vim"
-msgstr "Vim\82Å\95Ò\8fW\82·\82é (&V)"
+#, c-format
+msgid "Writing undo file: %s"
+msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\8f\91\82«\8d\9e\82Ý\92\86: %s"
-#. Now concatenate
-msgid "Edit with existing Vim - "
-msgstr "\8aù\91¶\82ÌVim\82Å\95Ò\8fW\82·\82é - "
+#, c-format
+msgid "E829: write error in undo file: %s"
+msgstr "E829: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\8f\91\82«\8d\9e\82Ý\83G\83\89\81[\82Å\82·: %s"
-msgid "Edits the selected file(s) with Vim"
-msgstr "\91I\91ð\82³\82ê\82½\83t\83@\83C\83\8b\82ðVim\82Å\95Ò\8fW\82·\82é"
+#, c-format
+msgid "Not reading undo file, owner differs: %s"
+msgstr "\83I\81[\83i\81[\82ª\88Ù\82È\82é\82Ì\82Å\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\93Ç\82Ý\8d\9e\82Ý\82Ü\82¹\82ñ: %s"
-msgid "Error creating process: Check if gvim is in your path!"
-msgstr ""
-"\8bN\93®\82É\8e¸\94s\82µ\82Ü\82µ\82½: gvim \82Ö\82Ì\83p\83X\82ª\90³\82µ\82\90Ý\92è\82³\82ê\82Ä\82¢\82é\82©\8am\94F\82µ\82Ä\82\82¾\82³\82¢!"
+#, c-format
+msgid "Reading undo file: %s"
+msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b\93Ç\8d\9e\92\86: %s"
-msgid "gvimext.dll error"
-msgstr "gvimext.dll \83G\83\89\81["
+#, c-format
+msgid "E822: Cannot open undo file for reading: %s"
+msgstr "E822: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\93Ç\8d\9e\97p\82Æ\82µ\82Ä\8aJ\82¯\82Ü\82¹\82ñ: %s"
-msgid "Path length too long!"
-msgstr "\83p\83X\82ª\92·\89ß\82¬\82Ü\82·!"
+#, c-format
+msgid "E823: Not an undo file: %s"
+msgstr "E823: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82Í\82 \82è\82Ü\82¹\82ñ: %s"
-msgid "--No lines in buffer--"
-msgstr "--\83o\83b\83t\83@\82É\8ds\82ª\82 \82è\82Ü\82¹\82ñ--"
+#, c-format
+msgid "E832: Non-encrypted file has encrypted undo file: %s"
+msgstr "E832: \94ñ\88Ã\8d\86\89»\83t\83@\83C\83\8b\82ª\88Ã\8d\86\89»\82³\82ê\82½\83A\83\93\83h\83D\83t\83@\83C\83\8b\82ð\8eg\82Á\82Ä\82Ü\82·: %s"
-#.
-#. * The error messages that can be shared are included here.
-#. * Excluded are errors that are only used once and debugging messages.
-#.
-msgid "E470: Command aborted"
-msgstr "E470: \83R\83}\83\93\83h\82ª\92\86\92f\82³\82ê\82Ü\82µ\82½"
+#, c-format
+msgid "E826: Undo file decryption failed: %s"
+msgstr "E826: \88Ã\8d\86\89»\82³\82ê\82½\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Ì\89ð\93Ç\82É\8e¸\94s\82µ\82Ü\82µ\82½: %s"
-msgid "E471: Argument required"
-msgstr "E471: \88ø\90\94\82ª\95K\97v\82Å\82·"
+#, c-format
+msgid "E827: Undo file is encrypted: %s"
+msgstr "E827: \83A\83\93\83h\83D\83t\83@\83C\83\8b\82ª\88Ã\8d\86\89»\82³\82ê\82Ä\82¢\82Ü\82·: %s"
-msgid "E10: \\ should be followed by /, ? or &"
-msgstr "E10: \\ \82Ì\8cã\82Í / \82© ? \82© & \82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
+#, c-format
+msgid "E824: Incompatible undo file: %s"
+msgstr "E824: \8cÝ\8a·\90«\82Ì\96³\82¢\83A\83\93\83h\83D\83t\83@\83C\83\8b\82Å\82·: %s"
-msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits"
-msgstr "E11: \83R\83}\83\93\83h\83\89\83C\83\93\82Å\82Í\96³\8cø\82Å\82·; <CR>\82Å\8eÀ\8ds, CTRL-C\82Å\82â\82ß\82é"
+msgid "File contents changed, cannot use undo info"
+msgstr "\83t\83@\83C\83\8b\82Ì\93à\97e\82ª\95Ï\82í\82Á\82Ä\82¢\82é\82½\82ß\81A\83A\83\93\83h\83D\8fî\95ñ\82ð\97\98\97p\82Å\82«\82Ü\82¹\82ñ"
-msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search"
-msgstr ""
-"E12: \8c»\8dÝ\82Ì\83f\83B\83\8c\83N\83g\83\8a\82â\83^\83O\8c\9f\8dõ\82Å\82Íexrc/vimrc\82Ì\83R\83}\83\93\83h\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
+#, c-format
+msgid "Finished reading undo file %s"
+msgstr "\83A\83\93\83h\83D\83t\83@\83C\83\8b %s \82Ì\8eæ\8d\9e\82ð\8a®\97¹"
-msgid "E171: Missing :endif"
-msgstr "E171: :endif \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Already at oldest change"
+msgstr "\8aù\82É\88ê\94Ô\8cÃ\82¢\95Ï\8dX\82Å\82·"
-msgid "E600: Missing :endtry"
-msgstr "E600: :endtry \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Already at newest change"
+msgstr "\8aù\82É\88ê\94Ô\90V\82µ\82¢\95Ï\8dX\82Å\82·"
-msgid "E170: Missing :endwhile"
-msgstr "E170: :endwhile \82ª\82 \82è\82Ü\82¹\82ñ"
+#, c-format
+msgid "E830: Undo number %ld not found"
+msgstr "E830: \83A\83\93\83h\83D\94Ô\8d\86 %ld \82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ"
-msgid "E170: Missing :endfor"
-msgstr "E170: :endfor \82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "E438: u_undo: line numbers wrong"
+msgstr "E438: u_undo: \8ds\94Ô\8d\86\82ª\8aÔ\88á\82Á\82Ä\82¢\82Ü\82·"
-msgid "E588: :endwhile without :while"
-msgstr "E588: :while \82Ì\82È\82¢ :endwhile \82ª\82 \82è\82Ü\82·"
+msgid "more line"
+msgstr "\8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
-msgid "E588: :endfor without :for"
-msgstr "E588: :endfor \82Ì\82È\82¢ :for \82ª\82 \82è\82Ü\82·"
+msgid "more lines"
+msgstr "\8ds \92Ç\89Á\82µ\82Ü\82µ\82½"
-msgid "E13: File exists (add ! to override)"
-msgstr "E13: \83t\83@\83C\83\8b\82ª\91¶\8dÝ\82µ\82Ü\82· (! \82ð\92Ç\89Á\82Å\8fã\8f\91)"
+msgid "line less"
+msgstr "\8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
-msgid "E472: Command failed"
-msgstr "E472: \83R\83}\83\93\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "fewer lines"
+msgstr "\8ds \8dí\8f\9c\82µ\82Ü\82µ\82½"
-#, c-format
-msgid "E234: Unknown fontset: %s"
-msgstr "E234: \96¢\92m\82Ì\83t\83H\83\93\83g\83Z\83b\83g: %s"
+msgid "change"
+msgstr "\89Ó\8f\8a\95Ï\8dX\82µ\82Ü\82µ\82½"
-#, c-format
-msgid "E235: Unknown font: %s"
-msgstr "E235: \96¢\92m\82Ì\83t\83H\83\93\83g: %s"
+msgid "changes"
+msgstr "\89Ó\8f\8a\95Ï\8dX\82µ\82Ü\82µ\82½"
#, c-format
-msgid "E236: Font \"%s\" is not fixed-width"
-msgstr "E236: \83t\83H\83\93\83g \"%s\" \82Í\8cÅ\92è\95\9d\82Å\82Í\82 \82è\82Ü\82¹\82ñ"
-
-msgid "E473: Internal error"
-msgstr "E473: \93à\95\94\83G\83\89\81[\82Å\82·"
-
-msgid "Interrupted"
-msgstr "\8a\84\8d\9e\82Ü\82ê\82Ü\82µ\82½"
-
-msgid "E14: Invalid address"
-msgstr "E14: \96³\8cø\82È\83A\83h\83\8c\83X\82Å\82·"
-
-msgid "E474: Invalid argument"
-msgstr "E474: \96³\8cø\82È\88ø\90\94\82Å\82·"
+msgid "%ld %s; %s #%ld %s"
+msgstr "%ld %s; %s #%ld %s"
-#, c-format
-msgid "E475: Invalid argument: %s"
-msgstr "E475: \96³\8cø\82È\88ø\90\94\82Å\82·: %s"
+msgid "before"
+msgstr "\91O\95û"
-#, c-format
-msgid "E15: Invalid expression: %s"
-msgstr "E15: \96³\8cø\82È\8e®\82Å\82·: %s"
+msgid "after"
+msgstr "\8cã\95û"
-msgid "E16: Invalid range"
-msgstr "E16: \96³\8cø\82È\94Í\88Í\82Å\82·"
+msgid "Nothing to undo"
+msgstr "\83A\83\93\83h\83D\91Î\8fÛ\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E476: Invalid command"
-msgstr "E476: \96³\8cø\82È\83R\83}\83\93\83h\82Å\82·"
+msgid "number changes when saved"
+msgstr "\92Ê\94Ô \95Ï\8dX\90\94 \95Ï\8dX\8e\9e\8aú \95Û\91¶\8dÏ"
#, c-format
-msgid "E17: \"%s\" is a directory"
-msgstr "E17: \"%s\" \82Í\83f\83B\83\8c\83N\83g\83\8a\82Å\82·"
+msgid "%ld seconds ago"
+msgstr "%ld \95b\8co\89ß\82µ\82Ä\82¢\82Ü\82·"
-#, c-format
-msgid "E364: Library call failed for \"%s()\""
-msgstr "E364: \"%s\"() \82Ì\83\89\83C\83u\83\89\83\8a\8cÄ\8fo\82É\8e¸\94s\82µ\82Ü\82µ\82½"
+msgid "E790: undojoin is not allowed after undo"
+msgstr "E790: undo \82Ì\92¼\8cã\82É undojoin \82Í\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "E448: Could not load library function %s"
-msgstr "E448: \83\89\83C\83u\83\89\83\8a\82Ì\8aÖ\90\94 %s \82ð\83\8d\81[\83h\82Å\82«\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "E439: undo list corrupt"
+msgstr "E439: \83A\83\93\83h\83D\83\8a\83X\83g\82ª\89ó\82ê\82Ä\82¢\82Ü\82·"
-msgid "E19: Mark has invalid line number"
-msgstr "E19: \83}\81[\83N\82É\96³\8cø\82È\8ds\94Ô\8d\86\82ª\8ew\92è\82³\82ê\82Ä\82¢\82Ü\82µ\82½"
+msgid "E440: undo line missing"
+msgstr "E440: \83A\83\93\83h\83D\8ds\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "E20: Mark not set"
-msgstr "E20: \83}\81[\83N\82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+#. Only MS VC 4.1 and earlier can do Win32s
+msgid ""
+"\n"
+"MS-Windows 16/32-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 16/32 \83r\83b\83g GUI \94Å"
-msgid "E21: Cannot make changes, 'modifiable' is off"
-msgstr "E21: 'modifiable' \82ª\83I\83t\82È\82Ì\82Å, \95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"MS-Windows 64-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 64 \83r\83b\83g GUI \94Å"
-msgid "E22: Scripts nested too deep"
-msgstr "E22: \83X\83N\83\8a\83v\83g\82Ì\93ü\82ê\8eq\82ª\90[\89ß\82¬\82Ü\82·"
+msgid ""
+"\n"
+"MS-Windows 32-bit GUI version"
+msgstr ""
+"\n"
+"MS-Windows 32 \83r\83b\83g GUI \94Å"
-msgid "E23: No alternate file"
-msgstr "E23: \95\9b\83t\83@\83C\83\8b\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid " in Win32s mode"
+msgstr " in Win32s \83\82\81[\83h"
-msgid "E24: No such abbreviation"
-msgstr "E24: \82»\82Ì\82æ\82¤\82È\92Z\8fk\93ü\97Í\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid " with OLE support"
+msgstr " with OLE \83T\83|\81[\83g"
-msgid "E477: No ! allowed"
-msgstr "E477: ! \82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"MS-Windows 64-bit console version"
+msgstr ""
+"\n"
+"MS-Windows 64 \83r\83b\83g \83R\83\93\83\\\81[\83\8b \94Å"
-msgid "E25: GUI cannot be used: Not enabled at compile time"
-msgstr "E25: GUI\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid ""
+"\n"
+"MS-Windows 32-bit console version"
+msgstr ""
+"\n"
+"MS-Windows 32 \83r\83b\83g \83R\83\93\83\\\81[\83\8b \94Å"
-msgid "E26: Hebrew cannot be used: Not enabled at compile time\n"
-msgstr "E26: \83w\83u\83\89\83C\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
+msgid ""
+"\n"
+"MS-Windows 16-bit version"
+msgstr ""
+"\n"
+"MS-Windows 16 \83r\83b\83g \94Å"
-msgid "E27: Farsi cannot be used: Not enabled at compile time\n"
-msgstr "E27: \83y\83\8b\83V\83A\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
+msgid ""
+"\n"
+"32-bit MS-DOS version"
+msgstr ""
+"\n"
+"32 \83r\83b\83g MS-DOS \94Å"
-msgid "E800: Arabic cannot be used: Not enabled at compile time\n"
-msgstr "E800: \83A\83\89\83r\83A\8cê\82Í\8eg\97p\95s\89Â\94\\\82Å\82·: \83R\83\93\83p\83C\83\8b\8e\9e\82É\96³\8cø\82É\82³\82ê\82Ä\82¢\82Ü\82·\n"
+msgid ""
+"\n"
+"16-bit MS-DOS version"
+msgstr ""
+"\n"
+"16 \83r\83b\83g MS-DOS \94Å"
-#, c-format
-msgid "E28: No such highlight group name: %s"
-msgstr "E28: \82»\82Ì\82æ\82¤\82È\96¼\82Ì\83n\83C\83\89\83C\83g\83O\83\8b\81[\83v\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid ""
+"\n"
+"MacOS X (unix) version"
+msgstr ""
+"\n"
+"MacOS X (unix) \94Å"
-msgid "E29: No inserted text yet"
-msgstr "E29: \82Ü\82¾\83e\83L\83X\83g\82ª\91}\93ü\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"MacOS X version"
+msgstr ""
+"\n"
+"MacOS X \94Å"
-msgid "E30: No previous command line"
-msgstr "E30: \88È\91O\82É\83R\83}\83\93\83h\8ds\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"MacOS version"
+msgstr ""
+"\n"
+"MacOS \94Å"
-msgid "E31: No such mapping"
-msgstr "E31: \82»\82Ì\82æ\82¤\82È\83}\83b\83s\83\93\83O\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"OpenVMS version"
+msgstr ""
+"\n"
+"OpenVMS \94Å"
-msgid "E479: No match"
-msgstr "E479: \8aY\93\96\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Included patches: "
+msgstr ""
+"\n"
+"\93K\97p\8dÏ\83p\83b\83`: "
-#, c-format
-msgid "E480: No match: %s"
-msgstr "E480: \8aY\93\96\82Í\82 \82è\82Ü\82¹\82ñ: %s"
+msgid ""
+"\n"
+"Extra patches: "
+msgstr ""
+"\n"
+"\92Ç\89Á\8ag\92£\83p\83b\83`: "
-msgid "E32: No file name"
-msgstr "E32: \83t\83@\83C\83\8b\96¼\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid "Modified by "
+msgstr "Modified by "
-msgid "E33: No previous substitute regular expression"
-msgstr "E33: \90³\8bK\95\\\8c»\92u\8a·\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Compiled "
+msgstr ""
+"\n"
+"Compiled "
-msgid "E34: No previous command"
-msgstr "E34: \83R\83}\83\93\83h\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "by "
+msgstr "by "
-msgid "E35: No previous regular expression"
-msgstr "E35: \90³\8bK\95\\\8c»\82ª\82Ü\82¾\8eÀ\8ds\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Huge version "
+msgstr ""
+"\n"
+"Huge \94Å "
-msgid "E481: No range allowed"
-msgstr "E481: \94Í\88Í\8ew\92è\82Í\8b\96\89Â\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Big version "
+msgstr ""
+"\n"
+"Big \94Å "
-msgid "E36: Not enough room"
-msgstr "E36: \8f[\95ª\82È\97e\97Ê\82ª\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Normal version "
+msgstr ""
+"\n"
+"\92Ê\8fí \94Å "
-#, c-format
-msgid "E247: no registered server named \"%s\""
-msgstr "E247: %s \82Æ\82¢\82¤\96¼\91O\82Ì\93o\98^\82³\82ê\82½\83T\81[\83o\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Small version "
+msgstr ""
+"\n"
+"Small \94Å "
-#, c-format
-msgid "E482: Can't create file %s"
-msgstr "E482: \83t\83@\83C\83\8b %s \82ð\8dì\90¬\82Å\82«\82Ü\82¹\82ñ"
+msgid ""
+"\n"
+"Tiny version "
+msgstr ""
+"\n"
+"Tiny \94Å "
-msgid "E483: Can't get temp file name"
-msgstr "E483: \88ê\8e\9e\83t\83@\83C\83\8b\82Ì\96¼\91O\82ð\8eæ\93¾\82Å\82«\82Ü\82¹\82ñ"
+msgid "without GUI."
+msgstr "without GUI."
-#, c-format
-msgid "E484: Can't open file %s"
-msgstr "E484: \83t\83@\83C\83\8b \"%s\" \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "with GTK2-GNOME GUI."
+msgstr "with GTK2-GNOME GUI."
-#, c-format
-msgid "E485: Can't read file %s"
-msgstr "E485: \83t\83@\83C\83\8b %s \82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ"
+msgid "with GTK2 GUI."
+msgstr "with GTK2 GUI."
-msgid "E37: No write since last change (add ! to override)"
-msgstr "E37: \8dÅ\8cã\82Ì\95Ï\8dX\82ª\95Û\91¶\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ (! \82ð\92Ç\89Á\82Å\95Ï\8dX\82ð\94j\8aü)"
+msgid "with X11-Motif GUI."
+msgstr "with X11-Motif GUI."
-msgid "E38: Null argument"
-msgstr "E38: \88ø\90\94\82ª\8bó\82Å\82·"
+msgid "with X11-neXtaw GUI."
+msgstr "with X11-neXtaw GUI."
-msgid "E39: Number expected"
-msgstr "E39: \90\94\92l\82ª\97v\8b\81\82³\82ê\82Ä\82¢\82Ü\82·"
+msgid "with X11-Athena GUI."
+msgstr "with X11-Athena GUI."
-#, c-format
-msgid "E40: Can't open errorfile %s"
-msgstr "E40: \83G\83\89\81[\83t\83@\83C\83\8b %s \82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "with Photon GUI."
+msgstr "with Photon GUI."
-msgid "E233: cannot open display"
-msgstr "E233: \83f\83B\83X\83v\83\8c\83C\82ð\8aJ\82¯\82Ü\82¹\82ñ"
+msgid "with GUI."
+msgstr "with GUI."
-msgid "E41: Out of memory!"
-msgstr "E41: \83\81\83\82\83\8a\82ª\90s\82«\89Ê\82Ä\82Ü\82µ\82½!"
+msgid "with Carbon GUI."
+msgstr "with Carbon GUI."
-msgid "Pattern not found"
-msgstr "\83p\83^\81[\83\93\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "with Cocoa GUI."
+msgstr "with Cocoa GUI."
-#, c-format
-msgid "E486: Pattern not found: %s"
-msgstr "E486: \83p\83^\81[\83\93\82Í\82Ý\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½: %s"
+msgid "with (classic) GUI."
+msgstr "with (\83N\83\89\83V\83b\83N) GUI."
-msgid "E487: Argument must be positive"
-msgstr "E487: \88ø\90\94\82Í\90³\82Ì\92l\82Å\82È\82¯\82ê\82Î\82È\82è\82Ü\82¹\82ñ"
+msgid " Features included (+) or not (-):\n"
+msgstr " \8b@\94\\\82Ì\88ê\97\97 \97L\8cø(+)/\96³\8cø(-)\n"
-msgid "E459: Cannot go back to previous directory"
-msgstr "E459: \91O\82Ì\83f\83B\83\8c\83N\83g\83\8a\82É\96ß\82ê\82Ü\82¹\82ñ"
+msgid " system vimrc file: \""
+msgstr " \83V\83X\83e\83\80 vimrc: \""
-msgid "E42: No Errors"
-msgstr "E42: \83G\83\89\81[\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid " user vimrc file: \""
+msgstr " \83\86\81[\83U vimrc: \""
-msgid "E776: No location list"
-msgstr "E776: \8fê\8f\8a\83\8a\83X\83g\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid " 2nd user vimrc file: \""
+msgstr " \91æ2\83\86\81[\83U vimrc: \""
-msgid "E43: Damaged match string"
-msgstr "E43: \8aY\93\96\95¶\8e\9a\97ñ\82ª\94j\91¹\82µ\82Ä\82¢\82Ü\82·"
+msgid " 3rd user vimrc file: \""
+msgstr " \91æ3\83\86\81[\83U vimrc: \""
-msgid "E44: Corrupted regexp program"
-msgstr "E44: \95s\90³\82È\90³\8bK\95\\\8c»\83v\83\8d\83O\83\89\83\80\82Å\82·"
+msgid " user exrc file: \""
+msgstr " \83\86\81[\83U exrc: \""
-msgid "E45: 'readonly' option is set (add ! to override)"
-msgstr "E45: 'readonly' \83I\83v\83V\83\87\83\93\82ª\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82· (! \82ð\92Ç\89Á\82Å\8fã\8f\91\82«)"
+msgid " 2nd user exrc file: \""
+msgstr " \91æ2\83\86\81[\83U exrc: \""
-#, c-format
-msgid "E46: Cannot change read-only variable \"%s\""
-msgstr "E46: \93Ç\8eæ\90ê\97p\95Ï\90\94 \"%s\" \82É\82Í\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
+msgid " system gvimrc file: \""
+msgstr " \83V\83X\83e\83\80 gvimrc: \""
-#, c-format
-msgid "E794: Cannot set variable in the sandbox: \"%s\""
-msgstr "E794: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\95Ï\90\94 \"%s\" \82É\92l\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ"
+msgid " user gvimrc file: \""
+msgstr " \83\86\81[\83U gvimrc: \""
-msgid "E47: Error while reading errorfile"
-msgstr "E47: \83G\83\89\81[\83t\83@\83C\83\8b\82Ì\93Ç\8d\9e\92\86\82É\83G\83\89\81[\82ª\94\90¶\82µ\82Ü\82µ\82½"
+msgid "2nd user gvimrc file: \""
+msgstr " \91æ2\83\86\81[\83U gvimrc: \""
-msgid "E48: Not allowed in sandbox"
-msgstr "E48: \83T\83\93\83h\83{\83b\83N\83X\82Å\82Í\8b\96\82³\82ê\82Ü\82¹\82ñ"
+msgid "3rd user gvimrc file: \""
+msgstr " \91æ3\83\86\81[\83U gvimrc: \""
-msgid "E523: Not allowed here"
-msgstr "E523: \82±\82±\82Å\82Í\8b\96\89Â\82³\82ê\82Ü\82¹\82ñ"
+msgid " system menu file: \""
+msgstr " \83V\83X\83e\83\80\83\81\83j\83\85\81[: \""
-msgid "E359: Screen mode setting not supported"
-msgstr "E359: \83X\83N\83\8a\81[\83\93\83\82\81[\83h\82Ì\90Ý\92è\82É\82Í\91Î\89\9e\82µ\82Ä\82¢\82Ü\82¹\82ñ"
+msgid " fall-back for $VIM: \""
+msgstr " \8fÈ\97ª\8e\9e\82Ì $VIM: \""
-msgid "E49: Invalid scroll size"
-msgstr "E49: \96³\8cø\82È\83X\83N\83\8d\81[\83\8b\97Ê\82Å\82·"
+msgid " f-b for $VIMRUNTIME: \""
+msgstr "\8fÈ\97ª\8e\9e\82Ì $VIMRUNTIME: \""
-msgid "E91: 'shell' option is empty"
-msgstr "E91: 'shell' \83I\83v\83V\83\87\83\93\82ª\8bó\82Å\82·"
+msgid "Compilation: "
+msgstr "\83R\83\93\83p\83C\83\8b: "
-msgid "E255: Couldn't read in sign data!"
-msgstr "E255: sign \82Ì\83f\81[\83^\82ð\93Ç\8d\9e\82ß\82Ü\82¹\82ñ\82Å\82µ\82½"
+msgid "Compiler: "
+msgstr "\83R\83\93\83p\83C\83\89: "
-msgid "E72: Close error on swap file"
-msgstr "E72: \83X\83\8f\83b\83v\83t\83@\83C\83\8b\82Ì\83N\83\8d\81[\83Y\8e\9e\83G\83\89\81[\82Å\82·"
+msgid "Linking: "
+msgstr "\83\8a\83\93\83N: "
-msgid "E73: tag stack empty"
-msgstr "E73: \83^\83O\83X\83^\83b\83N\82ª\8bó\82Å\82·"
+msgid " DEBUG BUILD"
+msgstr "\83f\83o\83b\83O\83r\83\8b\83h"
-msgid "E74: Command too complex"
-msgstr "E74: \83R\83}\83\93\83h\82ª\95¡\8eG\89ß\82¬\82Ü\82·"
+msgid "VIM - Vi IMproved"
+msgstr "VIM - Vi IMproved"
-msgid "E75: Name too long"
-msgstr "E75: \96¼\91O\82ª\92·\89ß\82¬\82Ü\82·"
+msgid "version "
+msgstr "version "
-msgid "E76: Too many ["
-msgstr "E76: [ \82ª\91½\89ß\82¬\82Ü\82·"
+msgid "by Bram Moolenaar et al."
+msgstr "by Bram Moolenaar \91¼."
-msgid "E77: Too many file names"
-msgstr "E77: \83t\83@\83C\83\8b\96¼\82ª\91½\89ß\82¬\82Ü\82·"
+msgid "Vim is open source and freely distributable"
+msgstr "Vim \82Í\83I\81[\83v\83\93\83\\\81[\83X\82Å\82 \82è\8e©\97R\82É\94z\95z\89Â\94\\\82Å\82·"
-msgid "E488: Trailing characters"
-msgstr "E488: \97]\95ª\82È\95¶\8e\9a\82ª\8cã\82ë\82É\82 \82è\82Ü\82·"
+msgid "Help poor children in Uganda!"
+msgstr "\83E\83K\83\93\83_\82Ì\8cb\82Ü\82ê\82È\82¢\8eq\8b\9f\82½\82¿\82É\89\87\8f\95\82ð!"
-msgid "E78: Unknown mark"
-msgstr "E78: \96¢\92m\82Ì\83}\81[\83N"
+msgid "type :help iccf<Enter> for information "
+msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help iccf<Enter> "
-msgid "E79: Cannot expand wildcards"
-msgstr "E79: \83\8f\83C\83\8b\83h\83J\81[\83h\82ð\93W\8aJ\82Å\82«\82Ü\82¹\82ñ"
+msgid "type :q<Enter> to exit "
+msgstr "\8fI\97¹\82·\82é\82É\82Í :q<Enter> "
-msgid "E591: 'winheight' cannot be smaller than 'winminheight'"
-msgstr "E591: 'winheight' \82Í 'winminheight' \82æ\82è\8f¬\82³\82\82Å\82«\82Ü\82¹\82ñ"
+msgid "type :help<Enter> or <F1> for on-line help"
+msgstr "\83I\83\93\83\89\83C\83\93\83w\83\8b\83v\82Í :help<Enter> \82© <F1> "
-msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'"
-msgstr "E592: 'winwidth' \82Í 'winminwidth' \82æ\82è\8f¬\82³\82\82Å\82«\82Ü\82¹\82ñ"
+msgid "type :help version7<Enter> for version info"
+msgstr "\83o\81[\83W\83\87\83\93\8fî\95ñ\82Í :help version7<Enter> "
-msgid "E80: Error while writing"
-msgstr "E80: \8f\91\8d\9e\82Ý\92\86\82Ì\83G\83\89\81["
+msgid "Running in Vi compatible mode"
+msgstr "Vi\8cÝ\8a·\83\82\81[\83h\82Å\93®\8dì\92\86"
-msgid "Zero count"
-msgstr "\83[\83\8d\83J\83E\83\93\83g"
+msgid "type :set nocp<Enter> for Vim defaults"
+msgstr "Vim\90\84\8f§\92l\82É\82·\82é\82É\82Í :set nocp<Enter> "
-msgid "E81: Using <SID> not in a script context"
-msgstr "E81: \83X\83N\83\8a\83v\83g\88È\8aO\82Å<SID>\82ª\8eg\82í\82ê\82Ü\82µ\82½"
+msgid "type :help cp-default<Enter> for info on this"
+msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help cp-default<Enter>"
-msgid "E449: Invalid expression received"
-msgstr "E449: \96³\8cø\82È\8e®\82ð\8eó\82¯\8eæ\82è\82Ü\82µ\82½"
+msgid "menu Help->Orphans for information "
+msgstr "\8fÚ\8d×\82Í\83\81\83j\83\85\81[\82Ì \83w\83\8b\83v\81¨\8cÇ\8e\99 \82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ "
-msgid "E463: Region is guarded, cannot modify"
-msgstr "E463: \97Ì\88æ\82ª\95Û\8cì\82³\82ê\82Ä\82¢\82é\82Ì\82Å, \95Ï\8dX\82Å\82«\82Ü\82¹\82ñ"
+msgid "Running modeless, typed text is inserted"
+msgstr "\83\82\81[\83h\96³\82Å\8eÀ\8ds\92\86, \83^\83C\83v\82µ\82½\95¶\8e\9a\82ª\91}\93ü\82³\82ê\82Ü\82·"
-msgid "E744: NetBeans does not allow changes in read-only files"
-msgstr "E744: NetBeans \82Í\93Ç\8d\9e\90ê\97p\83t\83@\83C\83\8b\82ð\95Ï\8dX\82·\82é\82±\82Æ\82ð\8b\96\82µ\82Ü\82¹\82ñ"
+msgid "menu Edit->Global Settings->Toggle Insert Mode "
+msgstr "\83\81\83j\83\85\81[\82Ì \95Ò\8fW\81¨\91S\91Ì\90Ý\92è\81¨\91}\93ü(\8f\89\90S\8eÒ)\83\82\81[\83h\90Ø\91Ö"
-#, c-format
-msgid "E685: Internal error: %s"
-msgstr "E685: \93à\95\94\83G\83\89\81[\82Å\82·: %s"
+msgid " for two modes "
+msgstr " \82Å\83\82\81[\83h\97L\82É "
-msgid "E363: pattern uses more memory than 'maxmempattern'"
-msgstr "E363: \83p\83^\81[\83\93\82ª 'maxmempattern' \88È\8fã\82Ì\83\81\83\82\83\8a\82ð\8eg\97p\82µ\82Ü\82·"
+msgid "menu Edit->Global Settings->Toggle Vi Compatible"
+msgstr "\83\81\83j\83\85\81[\82Ì \95Ò\8fW\81¨\91S\91Ì\90Ý\92è\81¨Vi\8cÝ\8a·\83\82\81[\83h\90Ø\91Ö "
-msgid "E749: empty buffer"
-msgstr "E749: \83o\83b\83t\83@\82ª\8bó\82Å\82·"
+msgid " for Vim defaults "
+msgstr " \82ÅVim\82Æ\82µ\82Ä\93®\8dì "
-msgid "E682: Invalid search pattern or delimiter"
-msgstr "E682: \8c\9f\8dõ\83p\83^\81[\83\93\82©\8bæ\90Ø\82è\8bL\8d\86\82ª\95s\90³\82Å\82·"
+msgid "Sponsor Vim development!"
+msgstr "Vim\82Ì\8aJ\94\82ð\89\9e\89\87\82µ\82Ä\82\82¾\82³\82¢!"
-msgid "E139: File is loaded in another buffer"
-msgstr "E139: \93¯\82¶\96¼\91O\82Ì\83t\83@\83C\83\8b\82ª\91¼\82Ì\83o\83b\83t\83@\82Å\93Ç\8d\9e\82Ü\82ê\82Ä\82¢\82Ü\82·"
+msgid "Become a registered Vim user!"
+msgstr "Vim\82Ì\93o\98^\83\86\81[\83U\82É\82È\82Á\82Ä\82\82¾\82³\82¢!"
-#, c-format
-msgid "E764: Option '%s' is not set"
-msgstr "E764: \83I\83v\83V\83\87\83\93 '%s' \82Í\90Ý\92è\82³\82ê\82Ä\82¢\82Ü\82¹\82ñ"
+msgid "type :help sponsor<Enter> for information "
+msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help sponsor<Enter> "
-msgid "search hit TOP, continuing at BOTTOM"
-msgstr "\8fã\82Ü\82Å\8c\9f\8dõ\82µ\82½\82Ì\82Å\89º\82É\96ß\82è\82Ü\82·"
+msgid "type :help register<Enter> for information "
+msgstr "\8fÚ\8d×\82È\8fî\95ñ\82Í :help register<Enter> "
-msgid "search hit BOTTOM, continuing at TOP"
-msgstr "\89º\82Ü\82Å\8c\9f\8dõ\82µ\82½\82Ì\82Å\8fã\82É\96ß\82è\82Ü\82·"
+msgid "menu Help->Sponsor/Register for information "
+msgstr "\8fÚ\8d×\82Í\83\81\83j\83\85\81[\82Ì \83w\83\8b\83v\81¨\83X\83|\83\93\83T\81[/\93o\98^ \82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ "
-#, c-format
-msgid "Need encryption key for \"%s\""
-msgstr "\88Ã\8d\86\83L\81[\82ª\95K\97v\82Å\82·: \"%s\""
+msgid "WARNING: Windows 95/98/ME detected"
+msgstr " \8cx\8d\90: Windows 95/98/Me \82ð\8c\9f\8fo "
-msgid "writelines() requires list of strings"
-msgstr "writelines() \82Í\95¶\8e\9a\97ñ\82Ì\94z\97ñ\82ð\97v\8b\81\82µ\82Ü\82·"
+msgid "type :help windows95<Enter> for info on this"
+msgstr " \8fÚ\8d×\82È\8fî\95ñ\82Í :help windows95<Enter> "
-msgid "E264: Python: Error initialising I/O objects"
-msgstr "E264: Python: I/O\83I\83u\83W\83F\83N\83g\82Ì\8f\89\8aú\89»\83G\83\89\81["
+msgid "Already only one window"
+msgstr "\8aù\82É\83E\83B\83\93\83h\83E\82Í1\82Â\82µ\82©\82 \82è\82Ü\82¹\82ñ"
-msgid "no such buffer"
-msgstr "\82»\82Ì\82æ\82¤\82È\83o\83b\83t\83@\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E441: There is no preview window"
+msgstr "E441: \83v\83\8c\83r\83\85\81[\83E\83B\83\93\83h\83E\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "attempt to refer to deleted window"
-msgstr "\8dí\8f\9c\82³\82ê\82½\83E\83B\83\93\83h\83E\82ð\8eQ\8fÆ\82µ\82æ\82¤\82Æ\82µ\82Ü\82µ\82½"
+msgid "E442: Can't split topleft and botright at the same time"
+msgstr "E442: \8d¶\8fã\82Æ\89E\89º\82ð\93¯\8e\9e\82É\95ª\8a\84\82·\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
-msgid "readonly attribute"
-msgstr "\93Ç\8d\9e\90ê\97p\91®\90«"
+msgid "E443: Cannot rotate when another window is split"
+msgstr "E443: \91¼\82Ì\83E\83B\83\93\83h\83E\82ª\95ª\8a\84\82³\82ê\82Ä\82¢\82é\8e\9e\82É\82Í\8f\87\89ñ\82Å\82«\82Ü\82¹\82ñ"
-msgid "cursor position outside buffer"
-msgstr "\83J\81[\83\\\83\8b\82ª\83o\83b\83t\83@\82Ì\8aO\82É\82 \82è\82Ü\82·"
+msgid "E444: Cannot close last window"
+msgstr "E444: \8dÅ\8cã\82Ì\83E\83B\83\93\83h\83E\82ð\95Â\82¶\82é\82±\82Æ\82Í\82Å\82«\82Ü\82¹\82ñ"
-#, c-format
-msgid "<window object (deleted) at %p>"
-msgstr "<\83E\83B\83\93\83h\83E\83I\83u\83W\83F\83N\83g (\8fÁ\8b\8e\8dÏ) %p>"
+msgid "E813: Cannot close autocmd window"
+msgstr "E813: autocmd\83E\83B\83\93\83h\83E\82Í\95Â\82¶\82ç\82ê\82Ü\82¹\82ñ"
-#, c-format
-msgid "<window object (unknown) at %p>"
-msgstr "<\83E\83B\83\93\83h\83E\83I\83u\83W\83F\83N\83g (\96¢\92m) %p>"
+msgid "E814: Cannot close window, only autocmd window would remain"
+msgstr "E814: autocmd\83E\83B\83\93\83h\83E\82µ\82©\8ec\82ç\82È\82¢\82½\82ß\81A\83E\83B\83\93\83h\83E\82Í\95Â\82¶\82ç\82ê\82Ü\82¹\82ñ"
-#, c-format
-msgid "<window %d>"
-msgstr "<\83E\83B\83\93\83h\83E %d>"
+msgid "E445: Other window contains changes"
+msgstr "E445: \91¼\82Ì\83E\83B\83\93\83h\83E\82É\82Í\95Ï\8dX\82ª\82 \82è\82Ü\82·"
-msgid "no such window"
-msgstr "\82»\82Ì\82æ\82¤\82È\83E\83B\83\93\83h\83E\82Í\82 \82è\82Ü\82¹\82ñ"
+msgid "E446: No file name under cursor"
+msgstr "E446: \83J\81[\83\\\83\8b\82Ì\89º\82É\83t\83@\83C\83\8b\96¼\82ª\82 \82è\82Ü\82¹\82ñ"
-msgid "attempt to refer to deleted buffer"
-msgstr "\8fÁ\82³\82ê\82½\83o\83b\83t\83@\82ª\8eQ\8fÆ\82³\82ê\82Ü\82µ\82½"
+#, c-format
+msgid "E447: Can't find file \"%s\" in path"
+msgstr "E447: path\82É\82Í \"%s\" \82Æ\82¢\82¤\83t\83@\83C\83\8b\82ª\82 \82è\82Ü\82¹\82ñ"