diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:13:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:13:44 +0100 |
commit | f0d58efc9dc46be37c629cbc99b4125448ca39fd (patch) | |
tree | 458d5e0bd05382f5369e59870185b5c7e2bcd6a3 | |
parent | 0c27cbcacf0f58ad30f0b15d1f442f73f40347c2 (diff) | |
download | vim-git-f0d58efc9dc46be37c629cbc99b4125448ca39fd.tar.gz |
Update runtime files.
-rw-r--r-- | runtime/autoload/tohtml.vim | 122 | ||||
-rw-r--r-- | runtime/doc/eval.txt | 14 | ||||
-rw-r--r-- | runtime/doc/gui.txt | 2 | ||||
-rw-r--r-- | runtime/doc/if_perl.txt | 4 | ||||
-rw-r--r-- | runtime/doc/indent.txt | 22 | ||||
-rw-r--r-- | runtime/doc/motion.txt | 2 | ||||
-rw-r--r-- | runtime/doc/options.txt | 27 | ||||
-rw-r--r-- | runtime/doc/pattern.txt | 2 | ||||
-rw-r--r-- | runtime/doc/starting.txt | 2 | ||||
-rw-r--r-- | runtime/doc/syntax.txt | 12 | ||||
-rw-r--r-- | runtime/doc/tags | 3 | ||||
-rw-r--r-- | runtime/doc/tagsrch.txt | 4 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 26 | ||||
-rw-r--r-- | runtime/lang/menu_ja_jp.euc-jp.vim | 4 | ||||
-rw-r--r-- | runtime/lang/menu_ja_jp.utf-8.vim | 4 | ||||
-rw-r--r-- | runtime/lang/menu_japanese_japan.932.vim | 4 | ||||
-rw-r--r-- | runtime/plugin/tohtml.vim | 137 | ||||
-rw-r--r-- | runtime/syntax/2html.vim | 93 | ||||
-rw-r--r-- | runtime/tutor/tutor.uk.utf-8 | 2 | ||||
-rw-r--r-- | src/po/de.po | 198 | ||||
-rw-r--r-- | src/po/ja.euc-jp.po | 270 | ||||
-rw-r--r-- | src/po/ja.po | 270 | ||||
-rw-r--r-- | src/po/ja.sjis.po | 270 |
23 files changed, 800 insertions, 694 deletions
diff --git a/runtime/autoload/tohtml.vim b/runtime/autoload/tohtml.vim index d972ad63f..2d874c690 100644 --- a/runtime/autoload/tohtml.vim +++ b/runtime/autoload/tohtml.vim @@ -1,6 +1,6 @@ " Vim autoload file for the tohtml plugin. " Maintainer: Ben Fritz <fritzophrenic@gmail.com> -" Last Change: 2013 Sep 03 +" Last Change: 2018 Nov 11 " " Additional contributors: " @@ -544,12 +544,16 @@ func! tohtml#Diff2HTML(win_list, buf_list) "{{{ " add required javascript in reverse order so we can just call append again " and again without adjusting {{{ - " insert script closing tag - call append(style_start, [ - \ '', - \ s:settings.use_xhtml ? '//]]>' : '-->', - \ "</script>" - \ ]) + let s:uses_script = s:settings.dynamic_folds || s:settings.line_ids || !empty(s:settings.prevent_copy) + + " insert script closing tag if needed + if s:uses_script + call append(style_start, [ + \ '', + \ s:settings.use_xhtml ? '//]]>' : '-->', + \ "</script>" + \ ]) + endif " insert script which corrects the size of small input elements in " prevent_copy mode. See 2html.vim for details on why this is needed and how @@ -575,55 +579,61 @@ func! tohtml#Diff2HTML(win_list, buf_list) "{{{ \ '}' \ ]) endif - " + " insert javascript to get IDs from line numbers, and to open a fold before " jumping to any lines contained therein - call append(style_start, [ - \ " /* Always jump to new location even if the line was hidden inside a fold, or", - \ " * we corrected the raw number to a line ID.", - \ " */", - \ " if (lineElem) {", - \ " lineElem.scrollIntoView(true);", - \ " }", - \ " return true;", - \ "}", - \ "if ('onhashchange' in window) {", - \ " window.onhashchange = JumpToLine;", - \ "}" - \ ]) - if s:settings.dynamic_folds + if s:settings.line_ids + call append(style_start, [ + \ " /* Always jump to new location even if the line was hidden inside a fold, or", + \ " * we corrected the raw number to a line ID.", + \ " */", + \ " if (lineElem) {", + \ " lineElem.scrollIntoView(true);", + \ " }", + \ " return true;", + \ "}", + \ "if ('onhashchange' in window) {", + \ " window.onhashchange = JumpToLine;", + \ "}" + \ ]) + + if s:settings.dynamic_folds + call append(style_start, [ + \ "", + \ " /* navigate upwards in the DOM tree to open all folds containing the line */", + \ " var node = lineElem;", + \ " while (node && node.id != 'vimCodeElement".s:settings.id_suffix."')", + \ " {", + \ " if (node.className == 'closed-fold')", + \ " {", + \ " /* toggle open the fold ID (remove window ID) */", + \ " toggleFold(node.id.substr(4));", + \ " }", + \ " node = node.parentNode;", + \ " }", + \ ]) + endif + endif + + if s:settings.line_ids call append(style_start, [ \ "", - \ " /* navigate upwards in the DOM tree to open all folds containing the line */", - \ " var node = lineElem;", - \ " while (node && node.id != 'vimCodeElement".s:settings.id_suffix."')", - \ " {", - \ " if (node.className == 'closed-fold')", - \ " {", - \ " /* toggle open the fold ID (remove window ID) */", - \ " toggleFold(node.id.substr(4));", - \ " }", - \ " node = node.parentNode;", + \ "/* function to open any folds containing a jumped-to line before jumping to it */", + \ "function JumpToLine()", + \ "{", + \ " var lineNum;", + \ " lineNum = window.location.hash;", + \ " lineNum = lineNum.substr(1); /* strip off '#' */", + \ "", + \ " if (lineNum.indexOf('L') == -1) {", + \ " lineNum = 'L'+lineNum;", + \ " }", + \ " if (lineNum.indexOf('W') == -1) {", + \ " lineNum = 'W1'+lineNum;", \ " }", + \ " var lineElem = document.getElementById(lineNum);" \ ]) endif - call append(style_start, [ - \ "", - \ "/* function to open any folds containing a jumped-to line before jumping to it */", - \ "function JumpToLine()", - \ "{", - \ " var lineNum;", - \ " lineNum = window.location.hash;", - \ " lineNum = lineNum.substr(1); /* strip off '#' */", - \ "", - \ " if (lineNum.indexOf('L') == -1) {", - \ " lineNum = 'L'+lineNum;", - \ " }", - \ " if (lineNum.indexOf('W') == -1) {", - \ " lineNum = 'W1'+lineNum;", - \ " }", - \ " lineElem = document.getElementById(lineNum);" - \ ]) " Insert javascript to toggle matching folds open and closed in all windows, " if dynamic folding is active. @@ -648,11 +658,13 @@ func! tohtml#Diff2HTML(win_list, buf_list) "{{{ \ ]) endif - " insert script tag; javascript is always needed for the line number - " normalization for URL hashes - call append(style_start, [ - \ "<script type='text/javascript'>", - \ s:settings.use_xhtml ? '//<![CDATA[' : "<!--"]) + if s:uses_script + " insert script tag; javascript is always needed for the line number + " normalization for URL hashes + call append(style_start, [ + \ "<script type='text/javascript'>", + \ s:settings.use_xhtml ? '//<![CDATA[' : "<!--"]) + endif " Insert styles from all the generated html documents and additional styles " for the table-based layout of the side-by-side diff. The diff should take @@ -767,7 +779,7 @@ func! tohtml#GetUserSettings() "{{{ if user_settings.no_pre == 0 call tohtml#GetOption(user_settings, \ 'expand_tabs', - \ &expandtab || &ts != 8 || user_settings.number_lines || + \ &expandtab || &ts != 8 || &vts != '' || user_settings.number_lines || \ (user_settings.dynamic_folds && !user_settings.no_foldcolumn)) else let user_settings.expand_tabs = 1 diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index bb80a665c..07c88d114 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -2026,7 +2026,7 @@ append({lnum}, {text}) Number append {text} below line {lnum} appendbufline({expr}, {lnum}, {text}) Number append {text} below line {lnum} in buffer {expr} -argc( [{winid}]) Number number of files in the argument list +argc([{winid}]) Number number of files in the argument list argidx() Number current index in the argument list arglistid([{winnr} [, {tabnr}]]) Number argument list id argv({nr} [, {winid}]) String {nr} entry of the argument list @@ -2386,7 +2386,7 @@ sha256({string}) String SHA256 checksum of {string} shellescape({string} [, {special}]) String escape {string} for use as shell command argument -shiftwidth() Number effective value of 'shiftwidth' +shiftwidth([{list}]) Number effective value of 'shiftwidth' simplify({filename}) String simplify filename as much as possible sin({expr}) Float sine of {expr} sinh({expr}) Float hyperbolic sine of {expr} @@ -7639,12 +7639,20 @@ shellescape({string} [, {special}]) *shellescape()* < See also |::S|. -shiftwidth() *shiftwidth()* +shiftwidth([{list}]) *shiftwidth()* Returns the effective value of 'shiftwidth'. This is the 'shiftwidth' value unless it is zero, in which case it is the 'tabstop' value. This function was introduced with patch 7.3.694 in 2012, everybody should have it by now. + When there is one argument {list} this is used as position + |List| for which to return the 'shiftwidth' value (actually + only the column number is relevant). This matters for the + 'vartabstop' feature. For the {list} arguments see |cursor()| + function. If the 'vartabstop' setting is enabled and no + {list} argument is given, the current cursor position is + taken into account. + simplify({filename}) *simplify()* Simplify the file name as much as possible without changing diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt index c621b40cb..565f8a518 100644 --- a/runtime/doc/gui.txt +++ b/runtime/doc/gui.txt @@ -878,7 +878,7 @@ be used to complete the name of the menu item. 't': |:tlmenu| Terminal mode 'i': |:imenu| Insert mode 'c': |:cmenu| Cmdline mode - + If the console-mode vim has been compiled with WANT_MENU defined, you can use :emenu to access useful menu items you may have got used to from GUI diff --git a/runtime/doc/if_perl.txt b/runtime/doc/if_perl.txt index a4df06a9b..26ea29e0d 100644 --- a/runtime/doc/if_perl.txt +++ b/runtime/doc/if_perl.txt @@ -45,8 +45,8 @@ The Perl patches for Vim were made by: Matt Gerassimof Perl for MS-Windows (and other platforms) can be found at: -http://www.perl.org/ The ActiveState one should work, Strawberry Perl is a -good alternative. + http://www.perl.org/ +The ActiveState one should work, Strawberry Perl is a good alternative. ============================================================================== 3. Using the Perl interface *perl-using* diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt index 8950fd987..2c12fe417 100644 --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -603,14 +603,14 @@ the use of square and curly brackets, and otherwise by community convention. These conventions are not universally followed, so the Clojure indent script offers a few configurable options, listed below. -If the current vim does not include searchpairpos(), the indent script falls +If the current vim does not include |searchpairpos()|, the indent script falls back to normal 'lisp' indenting, and the following options are ignored. *g:clojure_maxlines* -Set maximum scan distance of searchpairpos(). Larger values trade performance -for correctness when dealing with very long forms. A value of 0 will scan -without limits. +Set maximum scan distance of |searchpairpos()|. Larger values trade +performance for correctness when dealing with very long forms. A value of 0 +will scan without limits. > " Default let g:clojure_maxlines = 100 @@ -936,14 +936,14 @@ given are the defaults. Note that the variables are set to an expression, so that you can change the value of 'shiftwidth' later. Indent after an open paren: > - let g:pyindent_open_paren = '&sw * 2' + let g:pyindent_open_paren = 'shiftwidth() * 2' Indent after a nested paren: > - let g:pyindent_nested_paren = '&sw' + let g:pyindent_nested_paren = 'shiftwidth()' Indent for a continuation line: > - let g:pyindent_continue = '&sw * 2' + let g:pyindent_continue = 'shiftwidth() * 2' -The method uses searchpair() to look back for unclosed parenthesis. This can -sometimes be slow, thus it timeouts after 150 msec. If you notice the +The method uses |searchpair()| to look back for unclosed parenthesis. This +can sometimes be slow, thus it timeouts after 150 msec. If you notice the indenting isn't correct, you can set a larger timeout in msec: > let g:pyindent_searchpair_timeout = 500 @@ -1039,7 +1039,7 @@ Furthermore, setting the variable b:verilog_indent_width to change the indenting width (default is 'shiftwidth'): > let b:verilog_indent_width = 4 - let b:verilog_indent_width = &sw * 2 + let b:verilog_indent_width = shiftwidth() * 2 In addition, you can turn the verbose mode for debug issue: > @@ -1162,7 +1162,7 @@ VIM *ft-vim-indent* For indenting Vim scripts there is one variable that specifies the amount of indent for a continuation line, a line that starts with a backslash: > - :let g:vim_indent_cont = &sw * 3 + :let g:vim_indent_cont = shiftwidth() * 3 Three times shiftwidth is the default value. diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index b2105206b..ccca443d2 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1025,7 +1025,7 @@ remembered. You can return to that position with the "''" and "``" command, unless the line containing that position was changed or deleted. The following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N", "%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and the -commands that start editing a new file. +commands that start editing a new file. *CTRL-O* CTRL-O Go to [count] Older cursor position in jump list diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index f4656de03..e57de8f17 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1057,9 +1057,9 @@ A jump table for the options with a short description can be found at |Q_op|. - To include a comma in a directory name precede it with a backslash. - A directory name may end in an '/'. - For Unix and Win32, if a directory ends in two path separators "//", - the swap file name will be built from the complete path to the file - with all path separators changed to percent '%' signs. This will - ensure file name uniqueness in the backup directory. + the backup file name will be built from the complete path to the + file with all path separators changed to percent '%' signs. This + will ensure file name uniqueness in the backup directory. On Win32, it is also possible to end with "\\". However, When a separating comma is following, you must use "//", since "\\" will include the comma in the file name. Therefore it is recommended to @@ -2686,11 +2686,11 @@ A jump table for the options with a short description can be found at |Q_op|. option to see when this happens. indent-heuristic - Use the indent heuristic for the internal - diff library. + Use the indent heuristic for the internal + diff library. algorithm:{text} Use the specified diff algorithm with the - internal diff engine. Currently supported + internal diff engine. Currently supported algorithms are: myers the default algorithm minimal spend extra time to generate the @@ -8120,13 +8120,14 @@ A jump table for the options with a short description can be found at |Q_op|. global or local to buffer |global-local| {not in Vi} List of file names, separated by commas, that are used to lookup words - for thesaurus completion commands |i_CTRL-X_CTRL-T|. Each line in - the file should contain words with similar meaning, separated by - non-keyword characters (white space is preferred). Maximum line - length is 510 bytes. - To obtain a file to be used here, check out this ftp site: - ftp://ftp.cerias.purdue.edu/pub/dict/wordlists/ First get the README - file. + for thesaurus completion commands |i_CTRL-X_CTRL-T|. + + Each line in the file should contain words with similar meaning, + separated by non-keyword characters (white space is preferred). + Maximum line length is 510 bytes. + + Unfortunately we currently cannot recommend a file to be used here. + To include a comma in a file name precede it with a backslash. Spaces after a comma are ignored, otherwise spaces are included in the file name. See |option-backslash| about using backslashes. diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index e7e510f3a..201232867 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -295,7 +295,7 @@ the "*" is under your right hand middle finger (search to the right and down). *E956* In very rare cases a regular expression is used recursively. This can happen -when executing a pattern takes a long time and when checkig for messages on +when executing a pattern takes a long time and when checking for messages on channels a callback is invoked that also uses a pattern or an autocommand is triggered. In most cases this should be fine, but if a pattern is in use when it's used again it fails. Usually this means there is something wrong with diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index b060c4555..711a4876b 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -515,7 +515,7 @@ a slash. Thus "-R" means recovery and "-/R" readonly. --clean Similar to "-u DEFAULTS -U NONE -i NONE": - initializations from files and environment variables is skipped - -'runtimepath'and 'packpath' are set to exclude home + - 'runtimepath' and 'packpath' are set to exclude home directory entries (does not happen with -u DEFAULTS). - the |defaults.vim| script is loaded, which implies 'nocompatible': use Vim defaults diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 04de08e4b..00a016a0c 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -671,12 +671,12 @@ the rendered page generated by 2html.vim. :let g:html_no_pre = 1 < *g:html_expand_tabs* -Default: 1 if 'tabstop' is 8, 'expandtab' is 0, and no fold column or line - numbers occur in the generated HTML; - 0 otherwise. -When 0, <Tab> characters in the buffer text are replaced with an appropriate +Default: 0 if 'tabstop' is 8, 'expandtab' is 0, 'vartabstop' is not in use, + and no fold column or line numbers occur in the generated HTML; + 1 otherwise. +When 1, <Tab> characters in the buffer text are replaced with an appropriate number of space characters, or references if |g:html_no_pre| is 1. -When 1, if |g:html_no_pre| is 0 or unset, <Tab> characters in the buffer text +When 0, if |g:html_no_pre| is 0 or unset, <Tab> characters in the buffer text are included as-is in the generated HTML. This is useful for when you want to allow copy and paste from a browser without losing the actual whitespace in the source document. Note that this can easily break text alignment and @@ -774,6 +774,8 @@ When 1, generate XHTML 1.0 instead (XML compliant HTML). :let g:html_use_xhtml = 1 < + vim:tw=78:sw=4:ts=8:sts=4:ft=help:norl:ai:noet: + ABEL *abel.vim* *ft-abel-syntax* ABEL highlighting provides some user-defined options. To enable them, assign diff --git a/runtime/doc/tags b/runtime/doc/tags index 33f913380..d771fcc7d 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -4652,6 +4652,7 @@ E958 eval.txt /*E958* E96 diff.txt /*E96* E960 options.txt /*E960* E961 cmdline.txt /*E961* +E962 eval.txt /*E962* E97 diff.txt /*E97* E98 diff.txt /*E98* E99 diff.txt /*E99* @@ -6692,6 +6693,7 @@ getscript-start pi_getscript.txt /*getscript-start* gettabinfo() eval.txt /*gettabinfo()* gettabvar() eval.txt /*gettabvar()* gettabwinvar() eval.txt /*gettabwinvar()* +gettagstack() eval.txt /*gettagstack()* getwininfo() eval.txt /*getwininfo()* getwinpos() eval.txt /*getwinpos()* getwinposx() eval.txt /*getwinposx()* @@ -8435,6 +8437,7 @@ setqflist-examples quickfix.txt /*setqflist-examples* setreg() eval.txt /*setreg()* settabvar() eval.txt /*settabvar()* settabwinvar() eval.txt /*settabwinvar()* +settagstack() eval.txt /*settagstack()* setting-guifont gui.txt /*setting-guifont* setting-guitablabel tabpage.txt /*setting-guitablabel* setting-tabline tabpage.txt /*setting-tabline* diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt index 75a5b114a..e6589c70b 100644 --- a/runtime/doc/tagsrch.txt +++ b/runtime/doc/tagsrch.txt @@ -179,8 +179,8 @@ commands explained above the tag stack will look like this: 1 1 main 1 harddisk2:text/vim/test 2 1 FuncB 59 harddisk2:text/vim/src/main.c -The gettagstack() function returns the tag stack of a specified window. The -settagstack() function modifies the tag stack of a window. +The |gettagstack()| function returns the tag stack of a specified window. The +|settagstack()| function modifies the tag stack of a window. *E73* When you try to use the tag stack while it doesn't contain anything you will diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index c5ebd6134..909dc774e 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -38,6 +38,8 @@ browser use: https://github.com/vim/vim/issues/1234 *known-bugs* -------------------- Known bugs and current work ----------------------- +runtest: for flaky test, try more often if error message changes (5 times) + 'incsearch' with :s: (#3321) - :s/foo using CTRL-G moves to another line, should not happen, or use the correct line (it uses the last but one line) (Lifepillar, Aug 18, #3345) @@ -92,6 +94,19 @@ Terminal emulator window: - When 'encoding' is not utf-8, or the job is using another encoding, setup conversions. +Users get used to "function!" because they reload a script file. How about +recognizing the script is re-sourced and not giving an error for the first +function that overwrites. Then one can leave out the exclamation mark and +catch actual errors, overwriting a function from another script. + +Update for German spell files: https://github.com/chrisbra/vim/compare/5e021c990f8817a50d3264782a5...3b27c92f297540761ebbd92d04fb3 +(Christian Brabandt, 2018 Nov 4) + +Patch for comparing quickfix and location stacks. (Yegappan, 2018 Nov 15) + +Patch to fix visual block problem. (Tom M, tommm, 2018 Nov 14) +Also will write a test. + Key mapping times out when using a timer in Gvim. (Michael Henry, 2018 Sep 9, #3417) @@ -115,6 +130,9 @@ Include part of #3242? When a terminal exit_cb closes the window, a following typed key is lost, if it's in a mapping. (2018 Oct 6, #2302, #3522) +Patch for dos installer to use logic instead of $HOME. (Ken Takata, Nov 5, +#3564) + Completion mixes results from the current buffer with tags and other files. Happens when typing CTRL-N while still search for results. E.g., type "b_" in terminal.c and then CTRL-N twice. @@ -126,6 +144,9 @@ Williams, 2018 Oct 30) Problem with :tlmenu: Detach item added with all modes? Issue #3563. +Patch to avoid that increment or decrement gets interrupted by updating folds. +(Christian Brabandt, 2018 Nov 6, #3599) + C syntax: {} inside () causes following {} to be highlighted as error. (Michalis Giannakidis, 2006 Jun 1) @@ -220,6 +241,9 @@ Set g:actual_curbuf when evaluating 'statusline', not just with an expression. ml_get error. (Dominique Pelle, 2018 Sep 14, #3434) +Patch to use forward slash for completion even when 'shellslash' is set. +Adds 'completepathslash'. (Yasuhiro Matsumoto, 2018 Nov 15, #3612) + Only output t_Cs when t_Ce is also set. do not use Cs and Ce termcap entries. (Daniel Hahler, 2018 Sep 25) Add t_cS and t_cR for cursor color select and reset. Use Cs and Cr terminfo values. @@ -311,6 +335,7 @@ balloonexpr() on MS-Windows GUI doesn't handle accented chars? (nivaemail, Add v:motion_force. (Kana Natsuno, 2008 Dec 6) Maybe call it v:motiontype. Update in #3490. Alternative: add the force flag to mode(), after "no". +Patch ready to include? Try out background make plugin: https://github.com/AndrewVos/vim-make-background @@ -369,7 +394,6 @@ Jun 10, #2998) Improve the installer for MS-Windows. There are a few alternatives: - mui2 installer improved by Ken Takata (2018 Sep 29) -- Add silent install option. (Shane Lee, #751) - Installer from Cream (Steve Hall). - Modern UI 2.0 for the Nsis installer. (Guopeng Wen) https://github.com/gpwen/vim-installer-mui2 diff --git a/runtime/lang/menu_ja_jp.euc-jp.vim b/runtime/lang/menu_ja_jp.euc-jp.vim index bf42c8fcc..1c2c66ec3 100644 --- a/runtime/lang/menu_ja_jp.euc-jp.vim +++ b/runtime/lang/menu_ja_jp.euc-jp.vim @@ -2,9 +2,9 @@ " " Menu Translations: Japanese (EUC-JP) " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> -" Last Change: 28-Jan-2016. +" Last Change: 18-Jul-2018. " -" Copyright (C) 2001-2016 MURAOKA Taro <koron.kaoriya@gmail.com>, +" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " vim-jp <http://vim-jp.org/> " " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. diff --git a/runtime/lang/menu_ja_jp.utf-8.vim b/runtime/lang/menu_ja_jp.utf-8.vim index e05750f5b..583586898 100644 --- a/runtime/lang/menu_ja_jp.utf-8.vim +++ b/runtime/lang/menu_ja_jp.utf-8.vim @@ -2,9 +2,9 @@ " " Menu Translations: Japanese (UTF-8) " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> -" Last Change: 28-Jan-2016. +" Last Change: 18-Jul-2018. " -" Copyright (C) 2001-2016 MURAOKA Taro <koron.kaoriya@gmail.com>, +" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " vim-jp <http://vim-jp.org/> " " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. diff --git a/runtime/lang/menu_japanese_japan.932.vim b/runtime/lang/menu_japanese_japan.932.vim index 003568bf3..4c8bdcfa1 100644 --- a/runtime/lang/menu_japanese_japan.932.vim +++ b/runtime/lang/menu_japanese_japan.932.vim @@ -2,9 +2,9 @@ " " Menu Translations: Japanese (CP932) " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> -" Last Change: 28-Jan-2016. +" Last Change: 18-Jul-2018. " -" Copyright (C) 2001-2016 MURAOKA Taro <koron.kaoriya@gmail.com>, +" Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, " vim-jp <http://vim-jp.org/> " " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. diff --git a/runtime/plugin/tohtml.vim b/runtime/plugin/tohtml.vim index b438dea81..0cd931ead 100644 --- a/runtime/plugin/tohtml.vim +++ b/runtime/plugin/tohtml.vim @@ -1,82 +1,33 @@ " Vim plugin for converting a syntax highlighted file to HTML. " Maintainer: Ben Fritz <fritzophrenic@gmail.com> -" Last Change: 2015 Sep 08 +" Last Change: 2018 Nov 11 " " The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and " $VIMRUNTIME/syntax/2html.vim " -" TODO: {{{ -" * Options for generating the CSS in external style sheets. New :TOcss -" command to convert the current color scheme into a (mostly) generic CSS -" stylesheet which can be re-used. Alternate stylesheet support? Good start -" by Erik Falor -" ( https://groups.google.com/d/topic/vim_use/7XTmC4D22dU/discussion ). -" * Add optional argument to :TOhtml command to specify mode (gui, cterm, -" term) to use for the styling. Suggestion by "nacitar". -" * Add way to override or specify which RGB colors map to the color numbers -" in cterm. Get better defaults than just guessing? Suggestion by "nacitar". -" * Disable filetype detection until after all processing is done. -" * Add option for not generating the hyperlink on stuff that looks like a -" URL? Or just color the link to fit with the colorscheme (and only special -" when hovering)? -" * Bug: Opera does not allow printing more than one page if uncopyable -" regions is turned on. Possible solution: Add normal text line numbers with -" display:none, set to display:inline for print style sheets, and hide -" <input> elements for print, to allow Opera printing multiple pages (and -" other uncopyable areas?). May need to make the new text invisible to IE -" with conditional comments to prevent copying it, IE for some reason likes -" to copy hidden text. Other browsers too? -" * Bug: still a 1px gap throughout the fold column when html_prevent_copy is -" "fn" in some browsers. Specifically, in Chromium on Ubuntu (but not Chrome -" on Windows). Perhaps it is font related? -" * Bug: still some gaps in the fold column when html_prevent_copy contains -" 'd' and showing the whole diff (observed in multiple browsers). Only gaps -" on diff lines though. -" * Undercurl support via CSS3, with fallback to dotted or something: -" https://groups.google.com/d/topic/vim_use/BzXA6He1pHg/discussion -" * Redo updates for modified default foldtext (v11) when/if the patch is -" accepted to modify it. -" * Test case +diff_one_file-dynamic_folds+expand_tabs-hover_unfold -" +ignore_conceal-ignore_folding+no_foldcolumn+no_pre+no_progress -" +number_lines-pre_wrap-use_css+use_xhtml+whole_filler.xhtml -" does not show the whole diff filler as it is supposed to? -" * Bug: when 'isprint' is wrong for the current encoding, will generate -" invalid content. Can/should anything be done about this? Maybe a separate -" plugin to correct 'isprint' based on encoding? -" * Check to see if the windows-125\d encodings actually work in Unix without -" the 8bit- prefix. Add prefix to autoload dictionaries for Unix if not. -" * Font auto-detection similar to -" http://www.vim.org/scripts/script.php?script_id=2384 but for a variety of -" platforms. -" * Error thrown when sourcing 2html.vim directly when plugins are not loaded. -" * Pull in code from http://www.vim.org/scripts/script.php?script_id=3113 : -" - listchars support -" - full-line background highlight -" - other? -" * Make it so deleted lines in a diff don't create side-scrolling (get it -" free with full-line background highlight above). -" * Restore open/closed folds and cursor position after processing each file -" with option not to restore for speed increase. -" * Add extra meta info (generation time, etc.)? -" * Tidy up so we can use strict doctype in even more situations -" * Implementation detail: add threshold for writing the lines to the html -" buffer before we're done (5000 or so lines should do it) -" * TODO comments for code cleanup scattered throughout -"}}} - if exists('g:loaded_2html_plugin') finish endif -let g:loaded_2html_plugin = 'vim7.4_v2' +let g:loaded_2html_plugin = 'vim8.1_v1' " " Changelog: {{{ -" 7.4_v2 (this version): Fix error raised when converting a diff containing +" 8.1_v1 (this version): Fix Bitbucket issue #6: Don't generate empty script +" tag. +" Fix Bitbucket issue #5: javascript should +" declare variables with "var". +" Fix Bitbucket issue #13: errors thrown sourcing +" 2html.vim directly when plugins not loaded. +" Fix Bitbucket issue #16: support 'vartabstop'. +" +" 7.4 updates: {{{ +" 7.4_v2 (Vim 7.4.0899): Fix error raised when converting a diff containing " an empty buffer. Jan Stocker: allow g:html_font to " take a list so it is easier to specfiy fallback " fonts in the generated CSS. " 7.4_v1 (Vim 7.4.0000): Fix modeline mangling for new "Vim:" format, and " also for version-specific modelines like "vim>703:". +"}}} " " 7.3 updates: {{{ " 7.3_v14 (Vim 7.3.1246): Allow suppressing line number anchors using @@ -170,9 +121,69 @@ let g:loaded_2html_plugin = 'vim7.4_v2' "}}} "}}} +" TODO: {{{ +" * Check the issue tracker: +" https://bitbucket.org/fritzophrenic/vim-tohtml/issues?status=new&status=open +" * Options for generating the CSS in external style sheets. New :TOcss +" command to convert the current color scheme into a (mostly) generic CSS +" stylesheet which can be re-used. Alternate stylesheet support? Good start +" by Erik Falor +" ( https://groups.google.com/d/topic/vim_use/7XTmC4D22dU/discussion ). +" * Add optional argument to :TOhtml command to specify mode (gui, cterm, +" term) to use for the styling. Suggestion by "nacitar". +" * Add way to override or specify which RGB colors map to the color numbers +" in cterm. Get better defaults than just guessing? Suggestion by "nacitar". +" * Disable filetype detection until after all processing is done. +" * Add option for not generating the hyperlink on stuff that looks like a +" URL? Or just color the link to fit with the colorscheme (and only special +" when hovering)? +" * Bug: Opera does not allow printing more than one page if uncopyable +" regions is turned on. Possible solution: Add normal text line numbers with +" display:none, set to display:inline for print style sheets, and hide +" <input> elements for print, to allow Opera printing multiple pages (and +" other uncopyable areas?). May need to make the new text invisible to IE +" with conditional comments to prevent copying it, IE for some reason likes +" to copy hidden text. Other browsers too? +" * Bug: still a 1px gap throughout the fold column when html_prevent_copy is +" "fn" in some browsers. Specifically, in Chromium on Ubuntu (but not Chrome +" on Windows). Perhaps it is font related? +" * Bug: still some gaps in the fold column when html_prevent_copy contains +" 'd' and showing the whole diff (observed in multiple browsers). Only gaps +" on diff lines though. +" * Undercurl support via CSS3, with fallback to dotted or something: +" https://groups.google.com/d/topic/vim_use/BzXA6He1pHg/discussion +" * Redo updates for modified default foldtext (v11) when/if the patch is +" accepted to modify it. +" * Test case +diff_one_file-dynamic_folds+expand_tabs-hover_unfold +" +ignore_conceal-ignore_folding+no_foldcolumn+no_pre+no_progress +" +number_lines-pre_wrap-use_css+use_xhtml+whole_filler.xhtml +" does not show the whole diff filler as it is supposed to? +" * Bug: when 'isprint' is wrong for the current encoding, will generate +" invalid content. Can/should anything be done about this? Maybe a separate +" plugin to correct 'isprint' based on encoding? +" * Check to see if the windows-125\d encodings actually work in Unix without +" the 8bit- prefix. Add prefix to autoload dictionaries for Unix if not. +" * Font auto-detection similar to +" http://www.vim.org/scripts/script.php?script_id=2384 but for a variety of +" platforms. +" * Pull in code from http://www.vim.org/scripts/script.php?script_id=3113 : +" - listchars support +" - full-line background highlight +" - other? +" * Make it so deleted lines in a diff don't create side-scrolling (get it +" free with full-line background highlight above). +" * Restore open/closed folds and cursor position after processing each file +" with option not to restore for speed increase. +" * Add extra meta info (generation time, etc.)? +" * Tidy up so we can use strict doctype in even more situations +" * Implementation detail: add threshold for writing the lines to the html +" buffer before we're done (5000 or so lines should do it) +" * TODO comments for code cleanup scattered throughout +"}}} + " Define the :TOhtml command when: " - 'compatible' is not set -" - this plugin was not already loaded +" - this plugin or user override was not already loaded " - user commands are available. {{{ if !&cp && !exists(":TOhtml") && has("user_commands") command -range=% -bar TOhtml :call tohtml#Convert2HTML(<line1>, <line2>) diff --git a/runtime/syntax/2html.vim b/runtime/syntax/2html.vim index ddc7819be..4a2d1d395 100644 --- a/runtime/syntax/2html.vim +++ b/runtime/syntax/2html.vim @@ -1,6 +1,6 @@ " Vim syntax support file " Maintainer: Ben Fritz <fritzophrenic@gmail.com> -" Last Change: 2015 Sep 08 +" Last Change: 2018 Nov 11 " " Additional contributors: " @@ -633,6 +633,45 @@ if s:current_syntax == '' let s:current_syntax = 'none' endif +" If the user is sourcing this script directly then the plugin version isn't +" known because the main plugin script didn't load. In the usual case where the +" user still has the full Vim runtime installed, or has this full plugin +" installed in a package or something, then we can extract the version from the +" main plugin file at it's usual spot relative to this file. Otherwise the user +" is assembling their runtime piecemeal and we have no idea what versions of +" other files may be present so don't even try to make a guess or assume the +" presence of other specific files with specific meaning. +" +" We don't want to actually source the main plugin file here because the user +" may have a good reason not to (e.g. they define their own TOhtml command or +" something). +" +" If this seems way too complicated and convoluted, it is. Probably I should +" have put the version information in the autoload file from the start. But the +" version has been in the global variable for so long that changing it could +" break a lot of user scripts. +if exists("g:loaded_2html_plugin") + let s:pluginversion = g:loaded_2html_plugin +else + if !exists("g:unloaded_tohtml_plugin") + let s:main_plugin_path = expand("<sfile>:p:h:h")."/plugin/tohtml.vim" + if filereadable(s:main_plugin_path) + let s:lines = readfile(s:main_plugin_path, "", 20) + call filter(s:lines, 'v:val =~ "loaded_2html_plugin = "') + if empty(s:lines) + let g:unloaded_tohtml_plugin = "unknown" + else + let g:unloaded_tohtml_plugin = substitute(s:lines[0], '.*loaded_2html_plugin = \([''"]\)\(\%(\1\@!.\)\+\)\1', '\2', '') + endif + unlet s:lines + else + let g:unloaded_tohtml_plugin = "unknown" + endif + unlet s:main_plugin_path + endif + let s:pluginversion = g:unloaded_tohtml_plugin +endif + " Split window to create a buffer with the HTML file. let s:orgbufnr = winbufnr(0) let s:origwin_stl = &l:stl @@ -721,7 +760,7 @@ endif call extend(s:lines, [ \ ("<title>".expand("%:p:~")."</title>"), \ ("<meta name=\"Generator\" content=\"Vim/".v:version/100.".".v:version%100.'"'.s:tag_close), - \ ("<meta name=\"plugin-version\" content=\"".g:loaded_2html_plugin.'"'.s:tag_close) + \ ("<meta name=\"plugin-version\" content=\"".s:pluginversion.'"'.s:tag_close) \ ]) call add(s:lines, '<meta name="syntax" content="'.s:current_syntax.'"'.s:tag_close) call add(s:lines, '<meta name="settings" content="'. @@ -807,12 +846,15 @@ if s:settings.use_css endif endif -" insert script tag; javascript is always needed for the line number -" normalization for URL hashes -call extend(s:lines, [ - \ "", - \ "<script type='text/javascript'>", - \ s:settings.use_xhtml ? '//<![CDATA[' : "<!--"]) +let s:uses_script = s:settings.dynamic_folds || s:settings.line_ids || !empty(s:settings.prevent_copy) + +" insert script tag if needed +if s:uses_script + call extend(s:lines, [ + \ "", + \ "<script type='text/javascript'>", + \ s:settings.use_xhtml ? '//<![CDATA[' : "<!--"]) +endif " insert javascript to toggle folds open and closed if s:settings.dynamic_folds @@ -849,8 +891,9 @@ if s:settings.line_ids \ " if (lineNum.indexOf('L') == -1) {", \ " lineNum = 'L'+lineNum;", \ " }", - \ " lineElem = document.getElementById(lineNum);" + \ " var lineElem = document.getElementById(lineNum);" \ ]) + if s:settings.dynamic_folds call extend(s:lines, [ \ "", @@ -940,12 +983,14 @@ if !empty(s:settings.prevent_copy) \ ]) endif -" insert script closing tag -call extend(s:lines, [ - \ '', - \ s:settings.use_xhtml ? '//]]>' : '-->', - \ "</script>" - \ ]) +" insert script closing tag if needed +if s:uses_script + call extend(s:lines, [ + \ '', + \ s:settings.use_xhtml ? '//]]>' : '-->', + \ "</script>" + \ ]) +endif call extend(s:lines, ["</head>"]) if !empty(s:settings.prevent_copy) @@ -1525,10 +1570,22 @@ while s:lnum <= s:end if s:settings.expand_tabs let s:offset = 0 let s:idx = stridx(s:expandedtab, "\t") + let s:tablist = split(&vts,',') + if empty(s:tablist) + let s:tablist = [ &ts ] + endif + let s:tabidx = 0 + let s:tabwidth = 0 while s:idx >= 0 + while s:startcol+s:idx > s:tabwidth + s:tablist[s:tabidx] + let s:tabwidth += s:tablist[s:tabidx] + if s:tabidx < len(s:tablist)-1 + let s:tabidx = s:tabidx+1 + endif + endwhile if has("multi_byte_encoding") if s:startcol + s:idx == 1 - let s:i = &ts + let s:i = s:tablist[s:tabidx] else if s:idx == 0 let s:prevc = matchstr(s:line, '.\%' . (s:startcol + s:idx + s:offset) . 'c') @@ -1536,11 +1593,11 @@ while s:lnum <= s:end let s:prevc = matchstr(s:expandedtab, '.\%' . (s:idx + 1) . 'c') endif let s:vcol = virtcol([s:lnum, s:startcol + s:idx + s:offset - len(s:prevc)]) - let s:i = &ts - (s:vcol % &ts) + let s:i = s:tablist[s:tabidx] - (s:vcol - s:tabwidth) endif let s:offset -= s:i - 1 else - let s:i = &ts - ((s:idx + s:startcol - 1) % &ts) + let s:i = s:tablist[s:tabidx] - ((s:idx + s:startcol - 1) - s:tabwidth) endif let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', s:i), '') let s:idx = stridx(s:expandedtab, "\t") diff --git a/runtime/tutor/tutor.uk.utf-8 b/runtime/tutor/tutor.uk.utf-8 index 64982e925..34d83ebd4 100644 --- a/runtime/tutor/tutor.uk.utf-8 +++ b/runtime/tutor/tutor.uk.utf-8 @@ -1,5 +1,5 @@ =============================================================================== -= ЛаÑкаво проÑтимо в уроки VIM = += ЛаÑкаво проÑимо в уроки VIM = =============================================================================== Vim дуже потужний редактор, що має багато команд. Ð’ÑÑ– команди неможливо diff --git a/src/po/de.po b/src/po/de.po index b5441b73d..01c8c49c1 100644 --- a/src/po/de.po +++ b/src/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Vim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-01 09:43+0100\n" +"POT-Creation-Date: 2018-11-04 18:02+0100\n" "PO-Revision-Date: 2008-05-24 17:26+0200\n" "Last-Translator: Christian Brabandt <cb@256bit.org>\n" "Language-Team: German\n" @@ -58,7 +58,7 @@ msgid "E937: Attempt to delete a buffer that is in use" msgstr "E937: Versuch, Puffer zu löschen, der noch benutzt wird." msgid "E515: No buffers were unloaded" -msgstr "E515: Kein Puffer wurden entladen." +msgstr "E515: Kein Puffer wurde entladen." msgid "E516: No buffers were deleted" msgstr "E516: Kein Puffer wurde gelöscht." @@ -85,7 +85,7 @@ msgstr[0] "%d Puffer vollständig gelöscht" msgstr[1] "%d Puffer vollständig gelöscht" msgid "E90: Cannot unload last buffer" -msgstr "E90: Kann letzten Puffer nicht ausladen" +msgstr "E90: Kann letzten Puffer nicht entladen" msgid "E84: No modified buffer found" msgstr "E84: Keinen veränderter Puffer gefunden" @@ -154,7 +154,7 @@ msgid "[RO]" msgstr "[RO]" msgid "[readonly]" -msgstr "[Nur Lesen]" +msgstr "[Schreibgeschützt]" #, c-format msgid "%ld line --%d%%--" @@ -334,7 +334,7 @@ msgid "Patch file" msgstr "Patch-Datei" msgid "E816: Cannot read patch output" -msgstr "E816: Kann Patch Ausgabe nicht lesen." +msgstr "E816: Patch-Ausgabe kann nicht gelesen werden." msgid "E98: Cannot read diff output" msgstr "E98: Diff-Ausgabe kann nicht gelesen werden." @@ -346,7 +346,7 @@ msgid "E99: Current buffer is not in diff mode" msgstr "E99: Aktueller Puffer ist nicht im Diff-Modus." msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: Kein weitere Puffer im diff-Modues ist modifizierbar." +msgstr "E793: Kein weiterer Puffer im diff-Modues ist modifizierbar." msgid "E100: No other buffer in diff mode" msgstr "E100: Kein weiterer Puffer ist im Diff-Modus." @@ -366,10 +366,10 @@ msgid "E787: Buffer changed unexpectedly" msgstr "E787: Puffer änderte sich unerwartet." msgid "E104: Escape not allowed in digraph" -msgstr "E104: 'Escape' ist in einem Digraphen nicht erlaubt." +msgstr "E104: <Escape> ist in einem Digraphen nicht erlaubt." msgid "E544: Keymap file not found" -msgstr "E544: Datei für die Tastaturbelegung (keymap) nicht gefunden." +msgstr "E544: Keymap-Datei für die Tastaturbelegung nicht gefunden." msgid "E105: Using :loadkeymap not in a sourced file" msgstr "E105: :loadkeymap außerhalb einer eingelesenen Datei." @@ -378,46 +378,46 @@ msgid "E791: Empty keymap entry" msgstr "E791: Leerer keymap Eintrag" msgid " Keyword completion (^N^P)" -msgstr " Stichwort-Ergänzung (^N^P)" +msgstr " Stichwort Vervollständigung (^N^P)" msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" msgstr " ^X Modus (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" msgid " Whole line completion (^L^N^P)" -msgstr " Zeilen-Ergänzung (^L^N^P)" +msgstr " Zeilen-Vervollständigung (^L^N^P)" msgid " File name completion (^F^N^P)" -msgstr " Dateinamen-Ergänzung (^F^N^P)" +msgstr " Dateinamen-Vervollständigung (^F^N^P)" msgid " Tag completion (^]^N^P)" -msgstr " Tag-Ergänzung (^]^N^P)" +msgstr " Tag-Vervollständigung (^]^N^P)" msgid " Path pattern completion (^N^P)" -msgstr " Pfadmuster-Ergänzung (^N^P)" +msgstr " Pfad-Vervollständigung (^N^P)" msgid " Definition completion (^D^N^P)" -msgstr " Definitions-Ergänzung (^D^N^P)" +msgstr " Definitions-Vervollständigung (^D^N^P)" msgid " Dictionary completion (^K^N^P)" -msgstr " Dictionary-Ergänzung (^K^N^P) " +msgstr " Dictionary-Vervollständigung (^K^N^P) " msgid " Thesaurus completion (^T^N^P)" -msgstr " Thesaurus-Ergänzung (^T^N^P)" +msgstr " Thesaurus-Vervollständigung (^T^N^P)" msgid " Command-line completion (^V^N^P)" -msgstr " Kommandozeilen-Ergänzung (^V^N^P)" +msgstr " Kommandozeilen-Vervollständigung (^V^N^P)" msgid " User defined completion (^U^N^P)" -msgstr " Benutzerdefinierte Ergänzung (^U^N^P)" +msgstr " Benutzerdefinierte Vervollständigung (^U^N^P)" msgid " Omni completion (^O^N^P)" -msgstr " Omni-Ergänzung (^O^N^P)" +msgstr " Omni-Vervollständigung (^O^N^P)" msgid " Spelling suggestion (s^N^P)" msgstr " Vorschlag der Rechtschreibprüfung (s^N^P)" msgid " Keyword Local completion (^N^P)" -msgstr " Lokale Stichwort-Ergänzung(^N^P)" +msgstr " Lokale Stichwort-Vervollständigung(^N^P)" msgid "Hit end of paragraph" msgstr "Absatzende erreicht" @@ -492,11 +492,11 @@ msgstr "E719: Kann [:] nicht mit einem Dictionary verwenden" #, c-format msgid "E734: Wrong variable type for %s=" -msgstr "E734: Falscher Typ der Variable für %s=" +msgstr "E734: Falscher Variablentyp für %s=" #, c-format msgid "E461: Illegal variable name: %s" -msgstr "E461: Unzulässiger Name der Variable: %s" +msgstr "E461: Unzulässiger Variablenname: %s" msgid "E806: using Float as a String" msgstr "E806: Float als String benutzt." @@ -521,7 +521,7 @@ msgid "E708: [:] must come last" msgstr "E708: [:] muss am Schluss kommen." msgid "E709: [:] requires a List value" -msgstr "E709: [:] benötigt eine Liste als Wert" +msgstr "E709: [:] benötigt einen Listenwert" msgid "E710: List value has more items than target" msgstr "E710: Listenwert hat mehr Einträge als das Ziel." @@ -538,10 +538,10 @@ msgstr "E108: Keine solche Variable: \"%s\"" #, c-format msgid "E940: Cannot lock or unlock variable %s" -msgstr "E940: Kann Variable \"%s\" nicht sperren bzw. entsperren." +msgstr "E940: Kann Variable \"%s\" nicht sperren bzw. entsperren." msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: Variable ist zu tief verschachtelt für (un)lock." +msgstr "E743: Variable ist zu tief verschachtelt zum (ent)sperren." msgid "E109: Missing ':' after '?'" msgstr "E109: Fehlender ':' nach '?'" @@ -720,8 +720,8 @@ msgstr "&Ok" #, c-format msgid "+-%s%3ld line: " msgid_plural "+-%s%3ld lines: " -msgstr[0] "+-%s%3ld Zeile, " -msgstr[1] "+-%s%3ld Zeilen, " +msgstr[0] "+-%s%3ld Zeile: " +msgstr[1] "+-%s%3ld Zeilen: " #, c-format msgid "E700: Unknown function: %s" @@ -967,8 +967,8 @@ msgstr "E141: Kein Dateiname für Puffer %ld" msgid "E142: File not written: Writing is disabled by 'write' option" msgstr "" -"E142: Datei wurde nicht geschrieben: Schreiben ist durch die Option 'write' " -"ausgeschaltet" +"E142: Datei wurde nicht geschrieben: Schreiben ist durch die 'write' Option " +"deaktiviert" #, c-format msgid "" @@ -1244,7 +1244,7 @@ msgstr "in '%s' nicht gefunden: \"%s\"" #, c-format msgid "W20: Required python version 2.x not supported, ignoring file: %s" msgstr "" -"W20: Erfoderliche Python Version 2.x nicht unterstützt, ignoriere Datei: %s" +"W20: Erforderliche Python Version 2.x nicht unterstützt, ignoriere Datei: %s" #, c-format msgid "W21: Required python version 3.x not supported, ignoring file: %s" @@ -1571,7 +1571,7 @@ msgid "E196: No digraphs in this version" msgstr "E196: Keine Digraphen in dieser Version." msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: Kann nicht :throw Exceptions mit 'Vim' Präfix" +msgstr "E608: Kann nicht Exceptions mit 'Vim' Präfix werfen (:throw)" #, c-format msgid "Exception thrown: %s" @@ -1681,7 +1681,7 @@ msgid "tagname" msgstr "Tag-Name" msgid " kind file\n" -msgstr " verwandte Datei\n" +msgstr " Typ Datei\n" msgid "'history' option is zero" msgstr "Option 'history' ist Null" @@ -1861,7 +1861,7 @@ msgstr "E512: Fehler beim Schließen" msgid "E513: write error, conversion failed (make 'fenc' empty to override)" msgstr "" -"E513: Schreibfehler, Umwandlung schlug fehl (leere 'fenc' um sie zu " +"E513: Schreibfehler, Umwandlung schlug fehl (leere 'fenc' um es zu " "erzwingen)" #, c-format @@ -1869,8 +1869,8 @@ msgid "" "E513: write error, conversion failed in line %ld (make 'fenc' empty to " "override)" msgstr "" -"E513: Schreibfehler, Konvertierung fehlgeschlagen in Zeile %ld (leere 'fenc' " -"um sie zu erzwingen)" +"E513: Schreibfehler, Konvertierung in Zeile %ld fehlgeschlagen (leere 'fenc' " +"um es zu erzwingen)" msgid "E514: write error (file system full?)" msgstr "E514: Schreibfehler (Dateisystem voll?)" @@ -1914,7 +1914,7 @@ msgid "" "WARNING: Original file may be lost or damaged\n" msgstr "" "\n" -"ACHTUNG: Original-Datei könnte verloren oder zerstört sein\n" +"ACHTUNG: Original-Datei könnte verloren oder beschädigt sein\n" msgid "don't quit the editor until the file is successfully written!" msgstr "" @@ -1960,7 +1960,7 @@ msgid "WARNING: The file has been changed since reading it!!!" msgstr "ACHTUNG: Die Datei wurde seit dem letzten Lesen geändert!!!" msgid "Do you really want to write to it" -msgstr "Möchten Sie es wirklich schreiben" +msgstr "Möchten Sie sie wirklich schreiben" #, c-format msgid "E208: Error writing to \"%s\"" @@ -2049,7 +2049,7 @@ msgid "E936: Cannot delete the current group" msgstr "E936: Kann die aktuelle Gruppe nicht löschen." msgid "W19: Deleting augroup that is still in use" -msgstr "W19: Lösche Autogruppe, die noch in Benutztung ist." +msgstr "W19: Lösche Autogruppe, die noch in Benutzung ist." #, c-format msgid "E215: Illegal character after *: %s" @@ -2186,10 +2186,10 @@ msgid "E616: vim_SelFile: can't get font %s" msgstr "E616: vim_SelFile: kann Schriftart %s nicht erhalten" msgid "E614: vim_SelFile: can't return to current directory" -msgstr "E614: vim_SelFile: kann nicht zum laufenden Verzeichnis zurückkehren." +msgstr "E614: vim_SelFile: kann nicht zum aktuellen Verzeichnis zurückkehren." msgid "Pathname:" -msgstr "Pfad:" +msgstr "Pfadname:" msgid "E615: vim_SelFile: can't get current directory" msgstr "E615: vim_SelFile: aktuelles Verzeichnis kann nicht ermittelt werden." @@ -2208,7 +2208,7 @@ msgstr "Vim-Dialog" msgid "E232: Cannot create BalloonEval with both message and callback" msgstr "" -"E232: BalloonEval kann nicht mit sowohl \"message\" und \"callback\" erzeugt " +"E232: BalloonEval kann nicht sowohl mit \"message\" als auch \"callback\" erzeugt " "werden" msgid "_Cancel" @@ -2293,7 +2293,7 @@ msgid "Open Tab..." msgstr "Öffne Reiter..." msgid "Vim: Main window unexpectedly destroyed\n" -msgstr "Vim: Hauptfenster unerwartet gelöscht\n" +msgstr "Vim: Hauptfenster unerwartet zerstört\n" msgid "&Filter" msgstr "&Filter" @@ -2314,7 +2314,7 @@ msgid "Files" msgstr "Dateien" msgid "&OK" -msgstr "&Ok" +msgstr "&OK" msgid "Selection" msgstr "Auswahl" @@ -2488,10 +2488,10 @@ msgid "E621: \"%s\" resource file has wrong version" msgstr "E621: \"%s\" Ressource-Datei hat die falsche Version." msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: Unzulässiger Multi-Byte Zeichensatz" +msgstr "E673: Inkompatible Multi-Byte Kodierung und Zeichensatz" msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset darf nicht leer sein mit Multi-Byte Zeichensatz." +msgstr "E674: printmbcharset darf nicht leer sein mit Multi-Byte Kodierung." msgid "E675: No default font specified for multi-byte printing." msgstr "E675: Keine Standardschriftart angegeben für Multi-Byte Ausdruck." @@ -2537,7 +2537,7 @@ msgid "Show this message" msgstr "diese Nachricht anzeigen" msgid "Kill a connection" -msgstr "Verbindung abbrechen" +msgstr "Verbindung beenden" msgid "Reinit all connections" msgstr "Verbindungen reinitialisieren" @@ -2550,7 +2550,7 @@ msgid "E560: Usage: cs[cope] %s" msgstr "E560: Verwendung: cs[cope] %s" msgid "This cscope command does not support splitting the window.\n" -msgstr "Dieser cscope-Befehl unterstützt nicht Teilen des Fensters.\n" +msgstr "Dieser cscope-Befehl unterstützt nicht das Teilen des Fensters.\n" msgid "E562: Usage: cstag <ident>" msgstr "E562: Verwendung: cstag <ident>" @@ -2682,7 +2682,7 @@ msgid "E609: Cscope error: %s" msgstr "E609: Cscope Fehler: %s" msgid "All cscope databases reset" -msgstr "alle cscope Datenbanken zurückgesetzt" +msgstr "Alle cscope Datenbanken zurückgesetzt" msgid "no cscope connections\n" msgstr "keine cscope-Verbindungen\n" @@ -2847,7 +2847,7 @@ msgid "unknown vimOption" msgstr "unbekannte vimOption" msgid "keyboard interrupt" -msgstr "Tastatur-Unterbrechung" +msgstr "Tastatur-Interrupt" msgid "vim error" msgstr "vim Fehler" @@ -2865,8 +2865,8 @@ msgid "" "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim." "org" msgstr "" -"E280: TCL FATALER FEHLER: reflist kaputt!? Bitte vim-dev@vim." -"orgbenachrichtigen." +"E280: TCL FATALER FEHLER: reflist kaputt!? Bitte vim-dev@vim.org " +"benachrichtigen." msgid "cannot register callback command: buffer/window reference not found" msgstr "" @@ -2881,7 +2881,7 @@ msgstr "" #, c-format msgid "E572: exit code %d" -msgstr "E572: Ekit-Code %d" +msgstr "E572: Exit-Code %d" msgid "cannot get line" msgstr "kann Zeile nicht erhalten" @@ -3057,7 +3057,7 @@ msgid "-E\t\t\tImproved Ex mode" msgstr "-E\t\t\tVerbesserter Ex Modus" msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tLeiser (batch) Modus (nur für \"ex\")" +msgstr "-s\t\t\tLeiser (Batch) Modus (nur für \"ex\")" msgid "-d\t\t\tDiff mode (like \"vimdiff\")" msgstr "-d\t\t\tDiff Modus (wie \"vimdiff\")" @@ -3128,7 +3128,7 @@ msgstr "-T <terminal>\tSetze Terminaltyp auf <terminal>" msgid "--not-a-term\t\tSkip warning for input/output not being a terminal" msgstr "" "--not-a-term\t\tKeine Warnung ausgeben, wenn Eingabe/Ausgabe nicht auf einem " -"Terminal ausgegebn wird" +"Terminal ausgegeben wird" msgid "--ttyfail\t\tExit if input or output is not a terminal" msgstr "" @@ -3293,7 +3293,7 @@ msgstr "-italicfont <Schriftart>\tBenutze <Schriftart> für geneigten Text" msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" msgstr "" -"-geometry <geom>\tbenutze <geom> für die Anfangs Abmessungen (auch mit: -" +"-geometry <geom>\tBenutze <geom> für die Anfangs Abmessungen (auch mit: -" "geom)" msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" @@ -3398,14 +3398,14 @@ msgid "" "# File marks:\n" msgstr "" "\n" -"# Datei-Marken:\n" +"# Datei-Markierungen:\n" msgid "" "\n" "# Jumplist (newest first):\n" msgstr "" "\n" -"# Geschichte (neueste zuerst):\n" +"# Jumplist (neueste zuerst):\n" msgid "" "\n" @@ -3430,7 +3430,7 @@ msgid "E286: Failed to open input method" msgstr "E286: Eingabemethode konnte nicht geöffnet werden" msgid "E287: Warning: Could not set destroy callback to IM" -msgstr "E287: Achtung: Destroy Callabck konnte nicht auf IM gesetzt werden" +msgstr "E287: Achtung: Destroy Callback konnte nicht auf IM gesetzt werden" msgid "E288: input method doesn't support any style" msgstr "E288: Eingabemethode unterstützt keinen einzigen Stil" @@ -3466,10 +3466,10 @@ msgid "E298: Didn't get block nr 2?" msgstr "E298: Block Nr. 2 nicht erhalten?" msgid "E843: Error while updating swap file crypt" -msgstr "E843: Fehler beim Aktualisieren der Verschlüsselung der swap Datei." +msgstr "E843: Fehler beim Aktualisieren der Verschlüsselung der Auslagerungsdatei." msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: Ups, Verlust der Auslagerungsdatei!!!" +msgstr "E301: Upps, Verlust der Auslagerungsdatei!!!" msgid "E302: Could not rename swap file" msgstr "E302: Auslagerungsdatei konnte nicht umbenannt werden" @@ -3521,20 +3521,20 @@ msgid " cannot be used on this computer.\n" msgstr " kann auf diesem Rechner nicht verwendet werden.\n" msgid "The file was created on " -msgstr "Die Datei wurde erstellt um " +msgstr "Die Datei wurde erstellt am " msgid "" ",\n" "or the file has been damaged." msgstr "" ",\n" -"oder die Datei wurde zerstört." +"oder die Datei wurde beschädigt." #, c-format msgid "" "E833: %s is encrypted and this version of Vim does not support encryption" msgstr "" -"E833: %s is verschlüsselt, aber diese Version von Vim unterstützt " +"E833: %s ist verschlüsselt, aber diese Version von Vim unterstützt " "Verschlüsselung nicht." msgid " has been damaged (page size is smaller than minimum value).\n" @@ -3553,7 +3553,7 @@ msgstr "E308: Achtung: Die Originaldatei könnte verändert worden sein" #, c-format msgid "Swap file is encrypted: \"%s\"" -msgstr "Swap Datei is verschlüsselt: \"%s\"" +msgstr "Swap Datei ist verschlüsselt: \"%s\"" msgid "" "\n" @@ -3587,7 +3587,7 @@ msgstr "" #, c-format msgid "E309: Unable to read block 1 from %s" -msgstr "E309: Block 1 kann nicht nicht von %s gelesen werden" +msgstr "E309: Block 1 von %s kann nicht gelesen werden" msgid "???MANY LINES MISSING" msgstr "???VIELE ZEILEN FEHLEN" @@ -3630,7 +3630,7 @@ msgid "See \":help E312\" for more information." msgstr "Lesen Sie \":help E312\" für weitere Informationen." msgid "Recovery completed. You should check if everything is OK." -msgstr "Wiederherstellung beendet. Prüfen Sie, ob alles alles OK ist." +msgstr "Wiederherstellung beendet. Prüfen Sie, ob alles OK ist." msgid "" "\n" @@ -3712,14 +3712,14 @@ msgstr "" " Benutzer-Name: " msgid " host name: " -msgstr " Host-Name: " +msgstr " Hostname: " msgid "" "\n" " host name: " msgstr "" "\n" -" Host-Name: " +" Hostname: " msgid "" "\n" @@ -3775,7 +3775,7 @@ msgid "stack_idx should be 0" msgstr "stack_idx sollte 0 sein" msgid "E318: Updated too many blocks?" -msgstr "E318: Zu viele Blocks aktualisiert?" +msgstr "E318: Zu viele Blöcke aktualisiert?" msgid "E317: pointer block id wrong 4" msgstr "E317: Zeiger Block id falsch 4" @@ -3828,7 +3828,7 @@ msgid " CANNOT BE FOUND" msgstr " WURDE NICHT GEFUNDEN" msgid " NEWER than swap file!\n" -msgstr " neuer als Auslagerungsdatei!\n" +msgstr " NEUER als Auslagerungsdatei!\n" msgid "" "\n" @@ -3913,7 +3913,7 @@ msgid "E327: Part of menu-item path is not sub-menu" msgstr "E327: Teil des Menüpunkt-Pfades muss zum Untermenü führen" msgid "E328: Menu only exists in another mode" -msgstr "E328: Menü existiert nur in anderen Modus" +msgstr "E328: Menü existiert nur in anderen Modi" #, c-format msgid "E329: No menu \"%s\"" @@ -4107,7 +4107,7 @@ msgid "E546: Illegal mode" msgstr "E546: Unzulässiger Modus" msgid "E547: Illegal mouseshape" -msgstr "E547: Unzulässiger Mauszeiger" +msgstr "E547: Unzulässiger Mauszeigerform" msgid "E548: digit expected" msgstr "E548: Ziffer erwartet" @@ -4170,7 +4170,7 @@ msgid "E774: 'operatorfunc' is empty" msgstr "E774: 'operatorfunc' is empty" msgid "E775: Eval feature not available" -msgstr "E775: Evaluierungsfunktion nicht verfügbar" +msgstr "E775: Eval Eigenschaft nicht verfügbar" msgid "Warning: terminal cannot highlight" msgstr "Achtung: Terminal unterstützt keine Hervorhebung" @@ -4280,7 +4280,7 @@ msgid "" "E883: search pattern and expression register may not contain two or more " "lines" msgstr "" -"E883: Suchmuster und Ausdrucksregister dürfen nicht mehr als 1 Zeile " +"E883: Suchmuster- und Ausdrucksregister dürfen nicht mehr als 1 Zeile " "enthalten." #, c-format @@ -4797,7 +4797,7 @@ msgid "Cannot open file \"%s\"" msgstr "Kann Datei \"%s\" nicht öffnen" msgid "E681: Buffer is not loaded" -msgstr "E681: Buffer ist nicht geladen" +msgstr "E681: Puffer ist nicht geladen" msgid "E777: String or List expected" msgstr "E777: Zeichenkette oder Liste erwartet" @@ -5345,7 +5345,7 @@ msgstr "Lese Wörterbuch-Datei %s..." #, c-format msgid "E760: No word count in %s" -msgstr "E760: Keine Wörter gezählt in %s" +msgstr "E760: Kein Wortanzahl in %s" #, c-format msgid "line %6d, word %6ld - %s" @@ -5404,7 +5404,7 @@ msgid "Ignored %d words with non-ASCII characters" msgstr "%d Wörter mit nicht-ASCII Zeichen ignoriert" msgid "E845: Insufficient memory, word list will be incomplete" -msgstr "E845: Nicht ausreichend Speicher, Wortlist wird unvollständig sein" +msgstr "E845: Nicht ausreichend Speicher, Wortliste wird unvollständig sein" #, c-format msgid "Compressed %d of %d nodes; %d (%d%%) remaining" @@ -5455,7 +5455,7 @@ msgstr "Fertig!" #, c-format msgid "E765: 'spellfile' does not have %ld entries" -msgstr "E765: 'spellfile' hat nicht %ld Einträge" +msgstr "E765: 'spellfile' hat keine %ld Einträge" #, c-format msgid "Word '%.*s' removed from %s" @@ -5685,10 +5685,10 @@ msgid "E418: Illegal value: %s" msgstr "E418: Unzulässiger Wert: %s" msgid "E419: FG color unknown" -msgstr "E419: FG Farbe unbekannt" +msgstr "E419: Vordergrundfarbe unbekannt" msgid "E420: BG color unknown" -msgstr "E420: BG Farbe unbekannt" +msgstr "E420: Hintergrundfarbe unbekannt" #, c-format msgid "E421: Color name or number not recognized: %s" @@ -5728,7 +5728,7 @@ msgid "E426: tag not found: %s" msgstr "E426: Konnte Tag \"%s\" nicht finden" msgid " # pri kind tag" -msgstr " # pri verw. tag" +msgstr " # Prio Art Tag" msgid "file\n" msgstr "Datei\n" @@ -5773,7 +5773,7 @@ msgid "E430: Tag file path truncated for %s\n" msgstr "E430: Tag-Dateipfad wurde abgeschnitten für %s\n" msgid "Ignoring long line in tags file" -msgstr "Ignoriere zu lange Zeile in Tagsdatei" +msgstr "Ignoriere zu lange Zeile in Tag-Datei" #, c-format msgid "E431: Format error in tags file \"%s\"" @@ -5781,7 +5781,7 @@ msgstr "E431: Format Fehler in Tag-Datei \"%s\"" #, c-format msgid "Before byte %ld" -msgstr "Vor byte %ld" +msgstr "Vor Byte %ld" #, c-format msgid "E432: Tags file not sorted: %s" @@ -5847,7 +5847,7 @@ msgid "active" msgstr "aktiv" msgid "running" -msgstr "Führe aus" +msgstr "führe aus" msgid "finished" msgstr "beendet" @@ -5887,7 +5887,7 @@ msgstr "E825: Beschädigte Undo-Datei (%s): %s" msgid "Cannot write undo file in any directory in 'undodir'" msgstr "" -"Undo-Datei kann nicht in eines der Verzeichnisse aus 'undodir' geschrieben " +"Undo-Datei kann in keines der Verzeichnisse aus 'undodir' geschrieben " "werden." #, c-format @@ -6106,7 +6106,7 @@ msgid "E124: Missing '(': %s" msgstr "E124: Fehlendes '(': %s" msgid "E862: Cannot use g: here" -msgstr "E862: g: kann nicht hier benutzt werden" +msgstr "E862: g: kann hier nicht benutzt werden" #, c-format msgid "E932: Closure function should not be at top level: %s" @@ -6365,7 +6365,7 @@ msgid "Vim is open source and freely distributable" msgstr "Vim ist Open Source und kann frei weitergegeben werden" msgid "Help poor children in Uganda!" -msgstr "Helfen Sie armen Kindern in Uganda!" +msgstr "Hilf armen Kindern in Uganda!" msgid "type :help iccf<Enter> for information " msgstr "Tippe :help iccf<Enter> für Informationen darüber " @@ -6412,7 +6412,7 @@ msgid "Sponsor Vim development!" msgstr "Unterstützen Sie die Entwicklung von Vim" msgid "Become a registered Vim user!" -msgstr "Werden Sie ein registrierter Benutzer von Vim!" +msgstr "Werd ein registrierter Vim-Nutzer!" msgid "type :help sponsor<Enter> for information " msgstr "Tippe :help sponsor<Enter> für mehr Informationen " @@ -6531,7 +6531,7 @@ msgid "E471: Argument required" msgstr "E471: Argument benötigt" msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ sollte von /, ? or & gefolgt werden" +msgstr "E10: \\ sollte von /, ? oder & gefolgt werden" msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" msgstr "E11: Ungültig im Kommandozeilenfenster; <CR> führt aus, CTRL-C beendet" @@ -6631,7 +6631,7 @@ msgid "E448: Could not load library function %s" msgstr "E448: Bibliotheksfunktion %s konnte nicht geladen werden" msgid "E19: Mark has invalid line number" -msgstr "E19: Marke hat ungültige Zeilennummer" +msgstr "E19: Markierung hat ungültige Zeilennummer" msgid "E20: Mark not set" msgstr "E20: Markierung nicht gesetzt" @@ -6758,7 +6758,7 @@ msgid "E459: Cannot go back to previous directory" msgstr "E459: Kann nicht ins vorhergehende Verzeichnis wechseln" msgid "E42: No Errors" -msgstr "E42: Kein Fehler" +msgstr "E42: Keine Fehler" msgid "E776: No location list" msgstr "E776: Keine Positionsliste" @@ -6830,10 +6830,10 @@ msgid "E72: Close error on swap file" msgstr "E72: Fehler beim Schließen der Auslagerungsdatei" msgid "E73: tag stack empty" -msgstr "E73: tag Stapel leer." +msgstr "E73: Tag Stapel leer." msgid "E74: Command too complex" -msgstr "E74: Befehl zu kompliziert" +msgstr "E74: Befehl zu komplex" msgid "E75: Name too long" msgstr "E75: Name zu lang" @@ -6863,7 +6863,7 @@ msgid "E80: Error while writing" msgstr "E80: Fehler während des Schreibens" msgid "E939: Positive count required" -msgstr "E939: Positiver Zahl benötigt" +msgstr "E939: Positive Zahl benötigt" msgid "E81: Using <SID> not in a script context" msgstr "E81: <SID> wurde nicht in einer Skript-Umgebung benutzt" @@ -6921,10 +6921,10 @@ msgid "empty keys are not allowed" msgstr "Leerer Schlüssel nicht erlaubt" msgid "dictionary is locked" -msgstr "Dictionary is gesperrt" +msgstr "Dictionary ist gesperrt" msgid "list is locked" -msgstr "Liste is gesperrt" +msgstr "Liste ist gesperrt" #, c-format msgid "failed to add key '%s' to dictionary" @@ -7009,7 +7009,7 @@ msgstr "Hashtab veränderte sich während der Initialisierung" #, c-format msgid "expected sequence element of size 2, but got sequence of size %d" msgstr "" -"erwartete Sequenz Element der Größe 2, but erhielt Sequenz der Größe %d" +"erwartete Sequenz Element der Größe 2, erhielt jedoch Sequenz der Größe %d" msgid "list constructor does not accept keyword arguments" msgstr "Listen Konstruktor akzeptiert keine Keyword Argumente" @@ -7031,7 +7031,7 @@ msgstr "" #, c-format msgid "internal error: no vim list item %d" -msgstr "interner Fehler: Keine Vim Listobjekt %d" +msgstr "interner Fehler: Kein Vim Listobjekt %d" msgid "internal error: not enough list items" msgstr "interner Fehler: nicht genügend Listobjekte" @@ -7080,7 +7080,7 @@ msgstr "Konnte globale Option %s nicht aufheben" #, c-format msgid "unable to unset option %s which does not have global value" -msgstr "konnte option %s nicht aufheben, da sie keinen globalen Wert hat" +msgstr "konnte Option %s nicht aufheben, da sie keinen globalen Wert hat" msgid "attempt to refer to deleted tab page" msgstr "Versuch, Bezug auf einen gelöschten Reiter zu nehmen" diff --git a/src/po/ja.euc-jp.po b/src/po/ja.euc-jp.po index 477a817b0..4759103d3 100644 --- a/src/po/ja.euc-jp.po +++ b/src/po/ja.euc-jp.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Vim 8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-07-18 00:43+0900\n" -"PO-Revision-Date: 2017-05-18 00:45+0900\n" +"POT-Creation-Date: 2018-11-13 19:44+0900\n" +"PO-Revision-Date: 2018-11-16 09:41+0900\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language: ja\n" @@ -69,26 +69,20 @@ msgstr "E516: ºï½ü¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó" msgid "E517: No buffers were wiped out" msgstr "E517: ÇË´þ¤µ¤ì¤¿¥Ð¥Ã¥Õ¥¡¤Ï¤¢¤ê¤Þ¤»¤ó" -msgid "1 buffer unloaded" -msgstr "1 ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬²òÊü¤µ¤ì¤Þ¤·¤¿" - #, c-format -msgid "%d buffers unloaded" -msgstr "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬²òÊü¤µ¤ì¤Þ¤·¤¿" - -msgid "1 buffer deleted" -msgstr "1 ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿" +msgid "%d buffer unloaded" +msgid_plural "%d buffers unloaded" +msgstr[0] "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬²òÊü¤µ¤ì¤Þ¤·¤¿" #, c-format -msgid "%d buffers deleted" -msgstr "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿" - -msgid "1 buffer wiped out" -msgstr "1 ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" +msgid "%d buffer deleted" +msgid_plural "%d buffers deleted" +msgstr[0] "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿" #, c-format -msgid "%d buffers wiped out" -msgstr "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" +msgid "%d buffer wiped out" +msgid_plural "%d buffers wiped out" +msgstr[0] "%d ¸Ä¤Î¥Ð¥Ã¥Õ¥¡¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" msgid "E90: Cannot unload last buffer" msgstr "E90: ºÇ¸å¤Î¥Ð¥Ã¥Õ¥¡¤Ï²òÊü¤Ç¤¤Þ¤»¤ó" @@ -162,12 +156,9 @@ msgid "[readonly]" msgstr "[ÆÉ¹þÀìÍÑ]" #, c-format -msgid "1 line --%d%%--" -msgstr "1 ¹Ô --%d%%--" - -#, c-format -msgid "%ld lines --%d%%--" -msgstr "%ld ¹Ô --%d%%--" +msgid "%ld line --%d%%--" +msgid_plural "%ld lines --%d%%--" +msgstr[0] "%ld ¹Ô --%d%%--" #, c-format msgid "line %ld of %ld --%d%%-- col " @@ -321,12 +312,19 @@ msgstr "E737: ¥¡¼¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s" msgid "E96: Cannot diff more than %ld buffers" msgstr "E96: %ld °Ê¾å¤Î¥Ð¥Ã¥Õ¥¡¤Ïdiff¤Ç¤¤Þ¤»¤ó" +#, c-format +msgid "Not enough memory to use internal diff for buffer \"%s\"" +msgstr "¥Ð¥Ã¥Õ¥¡ \"%s\" ÍÑ¤ËÆâÉôdiff¤ò»È¤¦¤¿¤á¤Î¥á¥â¥ê¤¬ÉÔ¤·¤Æ¤¤¤Þ¤¹" + msgid "E810: Cannot read or write temp files" msgstr "E810: °ì»þ¥Õ¥¡¥¤¥ë¤ÎÆÉ¹þ¤â¤·¤¯¤Ï½ñ¹þ¤¬¤Ç¤¤Þ¤»¤ó" msgid "E97: Cannot create diffs" msgstr "E97: º¹Ê¬¤òºîÀ®¤Ç¤¤Þ¤»¤ó" +msgid "E960: Problem creating the internal diff" +msgstr "E960: ÆâÉôdiffºîÀ®»þ¤ËÌäÂ꤬ȯÀ¸¤·¤Þ¤·¤¿" + msgid "Patch file" msgstr "¥Ñ¥Ã¥Á¥Õ¥¡¥¤¥ë" @@ -336,6 +334,9 @@ msgstr "E816: patch¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó" msgid "E98: Cannot read diff output" msgstr "E98: diff¤Î½ÐÎϤòÆÉ¹þ¤á¤Þ¤»¤ó" +msgid "E959: Invalid diff format." +msgstr "E959: ̵¸ú¤Êdiff·Á¼°¤Ç¤¹" + msgid "E99: Current buffer is not in diff mode" msgstr "E99: ¸½ºß¤Î¥Ð¥Ã¥Õ¥¡¤Ïº¹Ê¬¥â¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" @@ -667,6 +668,9 @@ msgstr "" "\n" "\tºÇ¸å¤Ë¥»¥Ã¥È¤·¤¿¥¹¥¯¥ê¥×¥È: " +msgid " line " +msgstr " ¹Ô " + msgid "E691: Can only compare List with List" msgstr "E691: ¥ê¥¹¥È·¿¤Ï¥ê¥¹¥È·¿¤È¤·¤«Èæ³Ó¤Ç¤¤Þ¤»¤ó" @@ -744,6 +748,9 @@ msgstr "E916: ͸ú¤Ê¥¸¥ç¥Ö¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" msgid "E701: Invalid type for len()" msgstr "E701: len() ¤Ë¤Ï̵¸ú¤Ê·¿¤Ç¤¹" +msgid "E957: Invalid window number" +msgstr "E957: ̵¸ú¤Ê¥¦¥£¥ó¥É¥¦ÈÖ¹æ¤Ç¤¹" + #, c-format msgid "E798: ID is reserved for \":match\": %ld" msgstr "E798: ID ¤Ï \":match\" ¤Î¤¿¤á¤ËͽÌó¤µ¤ì¤Æ¤¤¤Þ¤¹: %ld" @@ -790,6 +797,10 @@ msgstr "E258: ¥¯¥é¥¤¥¢¥ó¥È¤ØÁ÷¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó" msgid "E927: Invalid action: '%s'" msgstr "E927: ̵¸ú¤ÊÁàºî¤Ç¤¹: %s" +#, c-format +msgid "E962: Invalid action: '%s'" +msgstr "E962: ̵¸ú¤ÊÁàºî¤Ç¤¹: %s" + msgid "sort() argument" msgstr "sort() ¤Î°ú¿ô" @@ -839,15 +850,13 @@ msgstr "> %d, 16¿Ê¿ô %04x, 8¿Ê¿ô %o" msgid "> %d, Hex %08x, Octal %o" msgstr "> %d, 16¿Ê¿ô %08x, 8¿Ê¿ô %o" -msgid "E134: Move lines into themselves" -msgstr "E134: ¹Ô¤ò¤½¤ì¼«¿È¤Ë¤Ï°Üư¤Ç¤¤Þ¤»¤ó" - -msgid "1 line moved" -msgstr "1 ¹Ô¤¬°Üư¤µ¤ì¤Þ¤·¤¿" +msgid "E134: Cannot move a range of lines into itself" +msgstr "E134: ¹Ô¤ÎÈϰϤò¤½¤ì¼«¿È¤Ë¤Ï°Üư¤Ç¤¤Þ¤»¤ó" #, c-format -msgid "%ld lines moved" -msgstr "%ld ¹Ô¤¬°Üư¤µ¤ì¤Þ¤·¤¿" +msgid "%ld line moved" +msgid_plural "%ld lines moved" +msgstr[0] "%ld ¹Ô¤¬°Üư¤µ¤ì¤Þ¤·¤¿" #, c-format msgid "%ld lines filtered" @@ -999,26 +1008,25 @@ msgstr "%s ¤ËÃÖ´¹¤·¤Þ¤¹¤«? (y/n/a/q/l/^E/^Y)" msgid "(Interrupted) " msgstr "(³ä¹þ¤Þ¤ì¤Þ¤·¤¿) " -msgid "1 match" -msgstr "1 ²Õ½ê³ºÅö¤·¤Þ¤·¤¿" - -msgid "1 substitution" -msgstr "1 ²Õ½êÃÖ´¹¤·¤Þ¤·¤¿" - #, c-format -msgid "%ld matches" -msgstr "%ld ²Õ½ê³ºÅö¤·¤Þ¤·¤¿" +msgid "%ld match on %ld line" +msgid_plural "%ld matches on %ld line" +msgstr[0] "%ld ²Õ½ê³ºÅö¤·¤Þ¤·¤¿ (·× %ld ¹ÔÆâ)" #, c-format -msgid "%ld substitutions" -msgstr "%ld ²Õ½êÃÖ´¹¤·¤Þ¤·¤¿" +msgid "%ld substitution on %ld line" +msgid_plural "%ld substitutions on %ld line" +msgstr[0] "%ld ²Õ½êÃÖ´¹¤·¤Þ¤·¤¿ (·× %ld ¹ÔÆâ)" -msgid " on 1 line" -msgstr " (·× 1 ¹ÔÆâ)" +#, c-format +msgid "%ld match on %ld lines" +msgid_plural "%ld matches on %ld lines" +msgstr[0] "%ld ²Õ½ê³ºÅö¤·¤Þ¤·¤¿ (·× %ld ¹ÔÆâ)" #, c-format -msgid " on %ld lines" -msgstr " (·× %ld ¹ÔÆâ)" +msgid "%ld substitution on %ld lines" +msgid_plural "%ld substitutions on %ld lines" +msgstr[0] "%ld ²Õ½êÃÖ´¹¤·¤Þ¤·¤¿ (·× %ld ¹ÔÆâ)" msgid "E147: Cannot do :global recursive with a range" msgstr "E147: :global ¤òÈϰÏÉÕ¤¤ÇºÆµ¢Åª¤Ë¤Ï»È¤¨¤Þ¤»¤ó" @@ -1334,19 +1342,15 @@ msgstr "" msgid "E319: Sorry, the command is not available in this version" msgstr "E319: ¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¤³¤Î¥³¥Þ¥ó¥É¤ÏÍøÍѤǤ¤Þ¤»¤ó¡¢¤´¤á¤ó¤Ê¤µ¤¤" -msgid "1 more file to edit. Quit anyway?" -msgstr "ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬ 1 ¸Ä¤¢¤ê¤Þ¤¹¤¬¡¢½ªÎ»¤·¤Þ¤¹¤«?" - #, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹¤¬¡¢½ªÎ»¤·¤Þ¤¹¤«?" - -msgid "E173: 1 more file to edit" -msgstr "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬ 1 ¸Ä¤¢¤ê¤Þ¤¹" +msgid "%d more file to edit. Quit anyway?" +msgid_plural "%d more files to edit. Quit anyway?" +msgstr[0] "ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %d ¸Ä¤¢¤ê¤Þ¤¹¤¬¡¢½ªÎ»¤·¤Þ¤¹¤«?" #, c-format -msgid "E173: %ld more files to edit" -msgstr "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %ld ¸Ä¤¢¤ê¤Þ¤¹" +msgid "E173: %ld more file to edit" +msgid_plural "E173: %ld more files to edit" +msgstr[0] "E173: ÊÔ½¸¤¹¤Ù¤¥Õ¥¡¥¤¥ë¤¬¤¢¤È %ld ¸Ä¤¢¤ê¤Þ¤¹" msgid "E174: Command already exists: add ! to replace it" msgstr "E174: ¥³¥Þ¥ó¥É¤¬´û¤Ë¤¢¤ê¤Þ¤¹: ºÆÄêµÁ¤¹¤ë¤Ë¤Ï ! ¤òÄɲ䷤Ƥ¯¤À¤µ¤¤" @@ -1521,6 +1525,9 @@ msgstr "E498: \"<sfile>\"¤òÃÖ¤´¹¤¨¤ë :source Âоݥե¡¥¤¥ë̾¤¬¤¢¤ê¤Þ¤»¤ó" msgid "E842: no line number to use for \"<slnum>\"" msgstr "E842: \"<slnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó" +msgid "E961: no line number to use for \"<sflnum>\"" +msgstr "E961: \"<sflnum>\"¤òÃÖ¤´¹¤¨¤ë¹ÔÈֹ椬¤¢¤ê¤Þ¤»¤ó" + #, no-c-format msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgstr "" @@ -1725,9 +1732,6 @@ msgstr "ɸ½àÆþÎϤ«¤éÆÉ¹þ¤ßÃæ..." msgid "E202: Conversion made file unreadable!" msgstr "E202: ÊÑ´¹¤¬¥Õ¥¡¥¤¥ë¤òÆÉ¹þÉԲĤˤ·¤Þ¤·¤¿" -msgid "[fifo/socket]" -msgstr "[FIFO/¥½¥±¥Ã¥È]" - msgid "[fifo]" msgstr "[FIFO]" @@ -1904,19 +1908,15 @@ msgstr "[unix]" msgid "[unix format]" msgstr "[unix¥Õ¥©¡¼¥Þ¥Ã¥È]" -msgid "1 line, " -msgstr "1 ¹Ô, " - #, c-format -msgid "%ld lines, " -msgstr "%ld ¹Ô, " - -msgid "1 character" -msgstr "1 ʸ»ú" +msgid "%ld line, " +msgid_plural "%ld lines, " +msgstr[0] "%ld ¹Ô, " #, c-format -msgid "%lld characters" -msgstr "%lld ʸ»ú" +msgid "%lld character" +msgid_plural "%lld characters" +msgstr[0] "%lld ʸ»ú" msgid "[noeol]" msgstr "[noeol]" @@ -2289,11 +2289,11 @@ msgstr "¥¢¥ó¥É¥¥(&U)" msgid "Open tab..." msgstr "¥¿¥Ö¥Ú¡¼¥¸¤ò³«¤¯" -msgid "Find string (use '\\\\' to find a '\\')" -msgstr "¸¡º÷ʸ»úÎó ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')" +msgid "Find string" +msgstr "¸¡º÷ʸ»úÎó" -msgid "Find & Replace (use '\\\\' to find a '\\')" -msgstr "¸¡º÷¡¦ÃÖ´¹ ('\\' ¤ò¸¡º÷¤¹¤ë¤Ë¤Ï '\\\\')" +msgid "Find & Replace" +msgstr "¸¡º÷¡¦ÃÖ´¹" msgid "Not Used" msgstr "»È¤ï¤ì¤Þ¤»¤ó" @@ -2710,19 +2710,6 @@ msgstr "Èϰϳ°¤Î¹ÔÈÖ¹æ¤Ç¤¹" msgid "not allowed in the Vim sandbox" msgstr "¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó" -#, c-format -msgid "E370: Could not load library %s" -msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿" - -msgid "Sorry, this command is disabled: the Perl library could not be loaded." -msgstr "" -"¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Perl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿." - -msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -msgstr "" -"E299: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ï Safe ¥â¥¸¥å¡¼¥ë¤ò»ÈÍѤ·¤Ê¤¤Perl¥¹¥¯¥ê¥×¥È¤Ï¶Ø¤¸¤é¤ì" -"¤Æ¤¤¤Þ¤¹" - msgid "E836: This Vim cannot execute :python after using :py3" msgstr "E836: ¤³¤ÎVim¤Ç¤Ï :py3 ¤ò»È¤Ã¤¿¸å¤Ë :python ¤ò»È¤¨¤Þ¤»¤ó" @@ -3003,7 +2990,7 @@ msgid "-g\t\t\tRun using GUI (like \"gvim\")" msgstr "-g\t\t\tGUI¤Çµ¯Æ°¤¹¤ë (\"gvim\" ¤ÈƱ¤¸)" msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -msgstr "-f or --nofork\t¥Õ¥©¥¢¥°¥é¥¦¥ó¥É: GUI¤ò»Ï¤á¤ë¤È¤¤Ëfork¤·¤Ê¤¤" +msgstr "-f or --nofork\t¥Õ¥©¥¢¥°¥é¥¦¥ó¥É: GUI¤ò»Ï¤á¤ë¤È¤¤Ëfork¤·¤Ê¤¤" msgid "-v\t\t\tVi mode (like \"vi\")" msgstr "-v\t\t\tVi¥â¡¼¥É (\"vi\" ¤ÈƱ¤¸)" @@ -3148,7 +3135,7 @@ msgstr "--remote-silent <files> Ʊ¾å¡¢¥µ¡¼¥Ð¡¼¤¬Ìµ¤¯¤Æ¤â·Ù¹ðʸ¤ò½ÐÎϤ·¤Ê¤¤" msgid "" "--remote-wait <files> As --remote but wait for files to have been edited" -msgstr "--remote-wait <files>\t--remote¸å ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤¬½ª¤ï¤ë¤Î¤òÂÔ¤Ä" +msgstr "--remote-wait <files> --remote¸å ¥Õ¥¡¥¤¥ë¤ÎÊÔ½¸¤¬½ª¤ï¤ë¤Î¤òÂÔ¤Ä" msgid "" "--remote-wait-silent <files> Same, don't complain if there is no server" @@ -3266,7 +3253,7 @@ msgid "--role <role>\tSet a unique role to identify the main window" msgstr "--role <role>\t¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ò¼±Ê̤¹¤ë°ì°Õ¤ÊÌò³ä(role)¤òÀßÄꤹ¤ë" msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -msgstr "--socketid <xid>\t°Û¤Ê¤ëGTK widget¤ÇVim¤ò³«¤¯" +msgstr "--socketid <xid>\t°Û¤Ê¤ëGTK widget¤ÎÆâÉô¤ËVim¤ò³«¤¯" msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" msgstr "--echo-wid\t\t¥¦¥£¥ó¥É¥¦ID¤òɸ½à½ÐÎϤ˽ÐÎϤ¹¤ë" @@ -3322,7 +3309,7 @@ msgid "" "change line col text" msgstr "" "\n" -"Êѹ¹ ¹Ô Îó ¥Æ¥¥¹¥È" +"Êѹ¹ ¹Ô Îó ¥Æ¥¥¹¥È" msgid "" "\n" @@ -3649,7 +3636,7 @@ msgstr "" "\n" " ¥×¥í¥»¥¹ID: " -msgid " (still running)" +msgid " (STILL RUNNING)" msgstr " (¤Þ¤À¼Â¹ÔÃæ)" msgid "" @@ -3745,6 +3732,9 @@ msgstr "" msgid "While opening file \"" msgstr "¼¡¤Î¥Õ¥¡¥¤¥ë¤ò³«¤¤¤Æ¤¤¤ëºÇÃæ \"" +msgid " CANNOT BE FOUND" +msgstr " ¸«¤Ä¤«¤ê¤Þ¤»¤ó" + msgid " NEWER than swap file!\n" msgstr " ¥¹¥ï¥Ã¥×¥Õ¥¡¥¤¥ë¤è¤ê¤â¿·¤·¤¤¤Ç¤¹!\n" @@ -3960,19 +3950,15 @@ msgstr "" msgid "Type number and <Enter> (empty cancels): " msgstr "ÈÖ¹æ¤È<Enter>¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤ (¶õ¤Ç¥¥ã¥ó¥»¥ë): " -msgid "1 more line" -msgstr "1 ¹Ô Äɲä·¤Þ¤·¤¿" - -msgid "1 line less" -msgstr "1 ¹Ô ºï½ü¤·¤Þ¤·¤¿" - #, c-format -msgid "%ld more lines" -msgstr "%ld ¹Ô Äɲä·¤Þ¤·¤¿" +msgid "%ld more line" +msgid_plural "%ld more lines" +msgstr[0] "%ld ¹Ô Äɲä·¤Þ¤·¤¿" #, c-format -msgid "%ld fewer lines" -msgstr "%ld ¹Ô ºï½ü¤·¤Þ¤·¤¿" +msgid "%ld line less" +msgid_plural "%ld fewer lines" +msgstr[0] "%ld ¹Ô ºï½ü¤·¤Þ¤·¤¿" msgid " (Interrupted)" msgstr " (³ä¹þ¤Þ¤ì¤Þ¤·¤¿)" @@ -4042,7 +4028,7 @@ msgstr "" #, c-format msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" +msgstr "E344: cdpath¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó" #, c-format msgid "E345: Can't find file \"%s\" in path" @@ -4050,7 +4036,7 @@ msgstr "E345: path¤Ë¤Ï \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" #, c-format msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" +msgstr "E346: cdpath¤Ë¤Ï¤³¤ì°Ê¾å \"%s\" ¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó" #, c-format msgid "E347: No more file \"%s\" found in path" @@ -4108,31 +4094,23 @@ msgstr "" "¤µ¤¤" #, c-format -msgid "1 line %sed 1 time" -msgstr "1 ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" - -#, c-format -msgid "1 line %sed %d times" -msgstr "1 ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" +msgid "%ld line %sed %d time" +msgid_plural "%ld line %sed %d times" +msgstr[0] "%ld ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" #, c-format -msgid "%ld lines %sed 1 time" -msgstr "%ld ¹Ô¤¬ %s ¤Ç 1 ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" - -#, c-format -msgid "%ld lines %sed %d times" -msgstr "%ld ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" +msgid "%ld lines %sed %d time" +msgid_plural "%ld lines %sed %d times" +msgstr[0] "%ld ¹Ô¤¬ %s ¤Ç %d ²ó½èÍý¤µ¤ì¤Þ¤·¤¿" #, c-format msgid "%ld lines to indent... " msgstr "%ld ¹Ô¤¬¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤Þ¤¹... " -msgid "1 line indented " -msgstr "1 ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿ " - #, c-format -msgid "%ld lines indented " -msgstr "%ld ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿ " +msgid "%ld line indented " +msgid_plural "%ld lines indented " +msgstr[0] "%ld ¹Ô¤ò¥¤¥ó¥Ç¥ó¥È¤·¤Þ¤·¤¿ " msgid "E748: No previously used register" msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó" @@ -4140,12 +4118,10 @@ msgstr "E748: ¤Þ¤À¥ì¥¸¥¹¥¿¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó" msgid "cannot yank; delete anyway" msgstr "¥ä¥ó¥¯¤Ç¤¤Þ¤»¤ó; ¤È¤Ë¤«¤¯¾Ãµî" -msgid "1 line changed" -msgstr "1 ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" - #, c-format -msgid "%ld lines changed" -msgstr "%ld ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" +msgid "%ld line changed" +msgid_plural "%ld lines changed" +msgstr[0] "%ld ¹Ô¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" #, c-format msgid "freeing %ld lines" @@ -4156,20 +4132,14 @@ msgid " into \"%c" msgstr " \"%c ¤Ë" #, c-format -msgid "block of 1 line yanked%s" -msgstr "1 ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" - -#, c-format -msgid "1 line yanked%s" -msgstr "1 ¹Ô¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" - -#, c-format -msgid "block of %ld lines yanked%s" -msgstr "%ld ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" +msgid "block of %ld line yanked%s" +msgid_plural "block of %ld lines yanked%s" +msgstr[0] "%ld ¹Ô¤Î¥Ö¥í¥Ã¥¯¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" #, c-format -msgid "%ld lines yanked%s" -msgstr "%ld ¹Ô¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" +msgid "%ld line yanked%s" +msgid_plural "%ld lines yanked%s" +msgstr[0] "%ld ¹Ô¤¬%s¥ä¥ó¥¯¤µ¤ì¤Þ¤·¤¿" #, c-format msgid "E353: Nothing in register %s" @@ -5387,6 +5357,9 @@ msgstr "E783: MAP ¥¨¥ó¥È¥ê¤Ë½Åʣʸ»ú¤¬Â¸ºß¤·¤Þ¤¹" msgid "No Syntax items defined for this buffer" msgstr "¤³¤Î¥Ð¥Ã¥Õ¥¡¤ËÄêµÁ¤µ¤ì¤¿¹½Ê¸Í×ÁǤϤ¢¤ê¤Þ¤»¤ó" +msgid "'redrawtime' exceeded, syntax highlighting disabled" +msgstr "'redrawtime' ¤òĶ²á¤·¤¿¤¿¤á¡¢¹½Ê¸¥Ï¥¤¥é¥¤¥È¤Ï̵¸ú²½¤µ¤ì¤Þ¤¹" + msgid "syntax conceal on" msgstr "¹½Ê¸¤Î conceal ¤Ï¸½ºß on ¤Ç¤¹" @@ -5415,6 +5388,9 @@ msgstr "¹½Ê¸¤Î spell ¤Ï¸½ºß default ¤Ç¤¹" msgid "syntax iskeyword " msgstr "¹½Ê¸ÍÑ iskeyword " +msgid "syntax iskeyword not set" +msgstr "¹½Ê¸ÍÑ iskeyword ¤Ï¥»¥Ã¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + #, c-format msgid "E391: No such syntax cluster: %s" msgstr "E391: ¤½¤Î¤è¤¦¤Ê¹½Ê¸¥¯¥é¥¹¥¿¤Ï¤¢¤ê¤Þ¤»¤ó: %s" @@ -5754,6 +5730,9 @@ msgstr "¼Â¹ÔÃæ" msgid "finished" msgstr "½ªÎ»" +msgid "E958: Job already finished" +msgstr "E958: ¥¸¥ç¥Ö¤Ï¤¹¤Ç¤Ë½ªÎ»¤·¤Æ¤¤¤Þ¤¹" + #, c-format msgid "E953: File exists: %s" msgstr "E953: ¥Õ¥¡¥¤¥ë¤Ï´û¤Ë¸ºß¤·¤Þ¤¹: %s" @@ -5893,8 +5872,9 @@ msgid "number changes when saved" msgstr "ÄÌÈÖ Êѹ¹¿ô Êѹ¹»þ´ü ÊݸºÑ" #, c-format -msgid "%ld seconds ago" -msgstr "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹" +msgid "%ld second ago" +msgid_plural "%ld seconds ago" +msgstr[0] "%ld É÷вᤷ¤Æ¤¤¤Þ¤¹" msgid "E790: undojoin is not allowed after undo" msgstr "E790: undo ¤Îľ¸å¤Ë undojoin ¤Ï¤Ç¤¤Þ¤»¤ó" @@ -6360,6 +6340,19 @@ msgstr "E802: ̵¸ú¤Ê ID: %ld (1 °Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó)" msgid "E803: ID not found: %ld" msgstr "E803: ID ¤Ï¤¢¤ê¤Þ¤»¤ó: %ld" +#, c-format +msgid "E370: Could not load library %s" +msgstr "E370: ¥é¥¤¥Ö¥é¥ê %s ¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿" + +msgid "Sorry, this command is disabled: the Perl library could not be loaded." +msgstr "" +"¤³¤Î¥³¥Þ¥ó¥É¤Ï̵¸ú¤Ç¤¹¡¢¤´¤á¤ó¤Ê¤µ¤¤: Perl¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿." + +msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" +msgstr "" +"E299: ¥µ¥ó¥É¥Ü¥Ã¥¯¥¹¤Ç¤Ï Safe ¥â¥¸¥å¡¼¥ë¤ò»ÈÍѤ·¤Ê¤¤Perl¥¹¥¯¥ê¥×¥È¤Ï¶Ø¤¸¤é¤ì" +"¤Æ¤¤¤Þ¤¹" + msgid "Edit with &multiple Vims" msgstr "Ê£¿ô¤ÎVim¤ÇÊÔ½¸¤¹¤ë (&M)" @@ -6372,6 +6365,9 @@ msgstr "Vim¤Çº¹Ê¬¤òɽ¼¨¤¹¤ë" msgid "Edit with &Vim" msgstr "Vim¤ÇÊÔ½¸¤¹¤ë (&V)" +msgid "Edit with existing Vim" +msgstr "µ¯Æ°ºÑ¤ÎVim¤ÇÊÔ½¸¤¹¤ë" + msgid "Edit with existing Vim - " msgstr "µ¯Æ°ºÑ¤ÎVim¤ÇÊÔ½¸¤¹¤ë - " diff --git a/src/po/ja.po b/src/po/ja.po index 2dfad1c45..2e70701b1 100644 --- a/src/po/ja.po +++ b/src/po/ja.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Vim 8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-07-18 00:43+0900\n" -"PO-Revision-Date: 2017-05-18 00:45+0900\n" +"POT-Creation-Date: 2018-11-13 19:44+0900\n" +"PO-Revision-Date: 2018-11-16 09:41+0900\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language: ja\n" @@ -69,26 +69,20 @@ msgstr "E516: 削除ã•れãŸãƒãƒƒãƒ•ã‚¡ã¯ã‚りã¾ã›ã‚“" msgid "E517: No buffers were wiped out" msgstr "E517: ç ´æ£„ã•れãŸãƒãƒƒãƒ•ã‚¡ã¯ã‚りã¾ã›ã‚“" -msgid "1 buffer unloaded" -msgstr "1 個ã®ãƒãƒƒãƒ•ã‚¡ãŒè§£æ”¾ã•れã¾ã—ãŸ" - #, c-format -msgid "%d buffers unloaded" -msgstr "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒè§£æ”¾ã•れã¾ã—ãŸ" - -msgid "1 buffer deleted" -msgstr "1 個ã®ãƒãƒƒãƒ•ã‚¡ãŒå‰Šé™¤ã•れã¾ã—ãŸ" +msgid "%d buffer unloaded" +msgid_plural "%d buffers unloaded" +msgstr[0] "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒè§£æ”¾ã•れã¾ã—ãŸ" #, c-format -msgid "%d buffers deleted" -msgstr "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒå‰Šé™¤ã•れã¾ã—ãŸ" - -msgid "1 buffer wiped out" -msgstr "1 個ã®ãƒãƒƒãƒ•ã‚¡ãŒç ´æ£„ã•れã¾ã—ãŸ" +msgid "%d buffer deleted" +msgid_plural "%d buffers deleted" +msgstr[0] "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒå‰Šé™¤ã•れã¾ã—ãŸ" #, c-format -msgid "%d buffers wiped out" -msgstr "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒç ´æ£„ã•れã¾ã—ãŸ" +msgid "%d buffer wiped out" +msgid_plural "%d buffers wiped out" +msgstr[0] "%d 個ã®ãƒãƒƒãƒ•ã‚¡ãŒç ´æ£„ã•れã¾ã—ãŸ" msgid "E90: Cannot unload last buffer" msgstr "E90: 最後ã®ãƒãƒƒãƒ•ã‚¡ã¯è§£æ”¾ã§ãã¾ã›ã‚“" @@ -162,12 +156,9 @@ msgid "[readonly]" msgstr "[èªè¾¼å°‚用]" #, c-format -msgid "1 line --%d%%--" -msgstr "1 行 --%d%%--" - -#, c-format -msgid "%ld lines --%d%%--" -msgstr "%ld 行 --%d%%--" +msgid "%ld line --%d%%--" +msgid_plural "%ld lines --%d%%--" +msgstr[0] "%ld 行 --%d%%--" #, c-format msgid "line %ld of %ld --%d%%-- col " @@ -321,12 +312,19 @@ msgstr "E737: ã‚ãƒ¼ã¯æ—¢ã«å˜åœ¨ã—ã¾ã™: %s" msgid "E96: Cannot diff more than %ld buffers" msgstr "E96: %ld 以上ã®ãƒãƒƒãƒ•ã‚¡ã¯diffã§ãã¾ã›ã‚“" +#, c-format +msgid "Not enough memory to use internal diff for buffer \"%s\"" +msgstr "ãƒãƒƒãƒ•ã‚¡ \"%s\" 用ã«å†…部diffを使ã†ãŸã‚ã®ãƒ¡ãƒ¢ãƒªãŒä¸è¶³ã—ã¦ã„ã¾ã™" + msgid "E810: Cannot read or write temp files" msgstr "E810: 一時ファイルã®èªè¾¼ã‚‚ã—ãã¯æ›¸è¾¼ãŒã§ãã¾ã›ã‚“" msgid "E97: Cannot create diffs" msgstr "E97: 差分を作æˆã§ãã¾ã›ã‚“" +msgid "E960: Problem creating the internal diff" +msgstr "E960: 内部diffä½œæˆæ™‚ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" + msgid "Patch file" msgstr "パッãƒãƒ•ァイル" @@ -336,6 +334,9 @@ msgstr "E816: patchã®å‡ºåŠ›ã‚’èªè¾¼ã‚ã¾ã›ã‚“" msgid "E98: Cannot read diff output" msgstr "E98: diffã®å‡ºåŠ›ã‚’èªè¾¼ã‚ã¾ã›ã‚“" +msgid "E959: Invalid diff format." +msgstr "E959: 無効ãªdiffå½¢å¼ã§ã™" + msgid "E99: Current buffer is not in diff mode" msgstr "E99: ç¾åœ¨ã®ãƒãƒƒãƒ•ã‚¡ã¯å·®åˆ†ãƒ¢ãƒ¼ãƒ‰ã§ã¯ã‚りã¾ã›ã‚“" @@ -667,6 +668,9 @@ msgstr "" "\n" "\t最後ã«ã‚»ãƒƒãƒˆã—ãŸã‚¹ã‚¯ãƒªãƒ—ト: " +msgid " line " +msgstr " 行 " + msgid "E691: Can only compare List with List" msgstr "E691: リスト型ã¯ãƒªã‚¹ãƒˆåž‹ã¨ã—ã‹æ¯”較ã§ãã¾ã›ã‚“" @@ -744,6 +748,9 @@ msgstr "E916: 有効ãªã‚¸ãƒ§ãƒ–ã§ã¯ã‚りã¾ã›ã‚“" msgid "E701: Invalid type for len()" msgstr "E701: len() ã«ã¯ç„¡åйãªåž‹ã§ã™" +msgid "E957: Invalid window number" +msgstr "E957: 無効ãªã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ç•ªå·ã§ã™" + #, c-format msgid "E798: ID is reserved for \":match\": %ld" msgstr "E798: ID 㯠\":match\" ã®ãŸã‚ã«äºˆç´„ã•れã¦ã„ã¾ã™: %ld" @@ -790,6 +797,10 @@ msgstr "E258: クライアントã¸é€ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" msgid "E927: Invalid action: '%s'" msgstr "E927: ç„¡åŠ¹ãªæ“作ã§ã™: %s" +#, c-format +msgid "E962: Invalid action: '%s'" +msgstr "E962: ç„¡åŠ¹ãªæ“作ã§ã™: %s" + msgid "sort() argument" msgstr "sort() ã®å¼•æ•°" @@ -839,15 +850,13 @@ msgstr "> %d, 16進数 %04x, 8進数 %o" msgid "> %d, Hex %08x, Octal %o" msgstr "> %d, 16進数 %08x, 8進数 %o" -msgid "E134: Move lines into themselves" -msgstr "E134: 行をãれ自身ã«ã¯ç§»å‹•ã§ãã¾ã›ã‚“" - -msgid "1 line moved" -msgstr "1 行ãŒç§»å‹•ã•れã¾ã—ãŸ" +msgid "E134: Cannot move a range of lines into itself" +msgstr "E134: 行ã®ç¯„囲をãれ自身ã«ã¯ç§»å‹•ã§ãã¾ã›ã‚“" #, c-format -msgid "%ld lines moved" -msgstr "%ld 行ãŒç§»å‹•ã•れã¾ã—ãŸ" +msgid "%ld line moved" +msgid_plural "%ld lines moved" +msgstr[0] "%ld 行ãŒç§»å‹•ã•れã¾ã—ãŸ" #, c-format msgid "%ld lines filtered" @@ -999,26 +1008,25 @@ msgstr "%s ã«ç½®æ›ã—ã¾ã™ã‹? (y/n/a/q/l/^E/^Y)" msgid "(Interrupted) " msgstr "(割込ã¾ã‚Œã¾ã—ãŸ) " -msgid "1 match" -msgstr "1 箇所該当ã—ã¾ã—ãŸ" - -msgid "1 substitution" -msgstr "1 箇所置æ›ã—ã¾ã—ãŸ" - #, c-format -msgid "%ld matches" -msgstr "%ld 箇所該当ã—ã¾ã—ãŸ" +msgid "%ld match on %ld line" +msgid_plural "%ld matches on %ld line" +msgstr[0] "%ld 箇所該当ã—ã¾ã—㟠(計 %ld 行内)" #, c-format -msgid "%ld substitutions" -msgstr "%ld 箇所置æ›ã—ã¾ã—ãŸ" +msgid "%ld substitution on %ld line" +msgid_plural "%ld substitutions on %ld line" +msgstr[0] "%ld 箇所置æ›ã—ã¾ã—㟠(計 %ld 行内)" -msgid " on 1 line" -msgstr " (計 1 行内)" +#, c-format +msgid "%ld match on %ld lines" +msgid_plural "%ld matches on %ld lines" +msgstr[0] "%ld 箇所該当ã—ã¾ã—㟠(計 %ld 行内)" #, c-format -msgid " on %ld lines" -msgstr " (計 %ld 行内)" +msgid "%ld substitution on %ld lines" +msgid_plural "%ld substitutions on %ld lines" +msgstr[0] "%ld 箇所置æ›ã—ã¾ã—㟠(計 %ld 行内)" msgid "E147: Cannot do :global recursive with a range" msgstr "E147: :global を範囲付ãã§å†å¸°çš„ã«ã¯ä½¿ãˆã¾ã›ã‚“" @@ -1334,19 +1342,15 @@ msgstr "" msgid "E319: Sorry, the command is not available in this version" msgstr "E319: ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“ã€ã”ã‚ã‚“ãªã•ã„" -msgid "1 more file to edit. Quit anyway?" -msgstr "編集ã™ã¹ãファイル㌠1 個ã‚りã¾ã™ãŒã€çµ‚了ã—ã¾ã™ã‹?" - #, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "編集ã™ã¹ãファイルãŒã‚㨠%d 個ã‚りã¾ã™ãŒã€çµ‚了ã—ã¾ã™ã‹?" - -msgid "E173: 1 more file to edit" -msgstr "E173: 編集ã™ã¹ãファイル㌠1 個ã‚りã¾ã™" +msgid "%d more file to edit. Quit anyway?" +msgid_plural "%d more files to edit. Quit anyway?" +msgstr[0] "編集ã™ã¹ãファイルãŒã‚㨠%d 個ã‚りã¾ã™ãŒã€çµ‚了ã—ã¾ã™ã‹?" #, c-format -msgid "E173: %ld more files to edit" -msgstr "E173: 編集ã™ã¹ãファイルãŒã‚㨠%ld 個ã‚りã¾ã™" +msgid "E173: %ld more file to edit" +msgid_plural "E173: %ld more files to edit" +msgstr[0] "E173: 編集ã™ã¹ãファイルãŒã‚㨠%ld 個ã‚りã¾ã™" msgid "E174: Command already exists: add ! to replace it" msgstr "E174: ã‚³ãƒžãƒ³ãƒ‰ãŒæ—¢ã«ã‚りã¾ã™: å†å®šç¾©ã™ã‚‹ã«ã¯ ! ã‚’è¿½åŠ ã—ã¦ãã ã•ã„" @@ -1521,6 +1525,9 @@ msgstr "E498: \"<sfile>\"ã‚’ç½®ãæ›ãˆã‚‹ :source 対象ファイルåãŒã‚ã msgid "E842: no line number to use for \"<slnum>\"" msgstr "E842: \"<slnum>\"ã‚’ç½®ãæ›ãˆã‚‹è¡Œç•ªå·ãŒã‚りã¾ã›ã‚“" +msgid "E961: no line number to use for \"<sflnum>\"" +msgstr "E961: \"<sflnum>\"ã‚’ç½®ãæ›ãˆã‚‹è¡Œç•ªå·ãŒã‚りã¾ã›ã‚“" + #, no-c-format msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgstr "" @@ -1725,9 +1732,6 @@ msgstr "標準入力ã‹ã‚‰èªè¾¼ã¿ä¸..." msgid "E202: Conversion made file unreadable!" msgstr "E202: 変æ›ãŒãƒ•ァイルをèªè¾¼ä¸å¯ã«ã—ã¾ã—ãŸ" -msgid "[fifo/socket]" -msgstr "[FIFO/ソケット]" - msgid "[fifo]" msgstr "[FIFO]" @@ -1904,19 +1908,15 @@ msgstr "[unix]" msgid "[unix format]" msgstr "[unixフォーマット]" -msgid "1 line, " -msgstr "1 行, " - #, c-format -msgid "%ld lines, " -msgstr "%ld 行, " - -msgid "1 character" -msgstr "1 æ–‡å—" +msgid "%ld line, " +msgid_plural "%ld lines, " +msgstr[0] "%ld 行, " #, c-format -msgid "%lld characters" -msgstr "%lld æ–‡å—" +msgid "%lld character" +msgid_plural "%lld characters" +msgstr[0] "%lld æ–‡å—" msgid "[noeol]" msgstr "[noeol]" @@ -2289,11 +2289,11 @@ msgstr "アンドゥ(&U)" msgid "Open tab..." msgstr "タブページを開ã" -msgid "Find string (use '\\\\' to find a '\\')" -msgstr "検索文å—列 ('\\' を検索ã™ã‚‹ã«ã¯ '\\\\')" +msgid "Find string" +msgstr "検索文å—列" -msgid "Find & Replace (use '\\\\' to find a '\\')" -msgstr "æ¤œç´¢ãƒ»ç½®æ› ('\\' を検索ã™ã‚‹ã«ã¯ '\\\\')" +msgid "Find & Replace" +msgstr "検索・置æ›" msgid "Not Used" msgstr "使ã‚れã¾ã›ã‚“" @@ -2710,19 +2710,6 @@ msgstr "範囲外ã®è¡Œç•ªå·ã§ã™" msgid "not allowed in the Vim sandbox" msgstr "サンドボックスã§ã¯è¨±ã•れã¾ã›ã‚“" -#, c-format -msgid "E370: Could not load library %s" -msgstr "E370: ライブラリ %s ã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ" - -msgid "Sorry, this command is disabled: the Perl library could not be loaded." -msgstr "" -"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ç„¡åйã§ã™ã€ã”ã‚ã‚“ãªã•ã„: Perlライブラリをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ." - -msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -msgstr "" -"E299: サンドボックスã§ã¯ Safe モジュールを使用ã—ãªã„Perlスクリプトã¯ç¦ã˜ã‚‰ã‚Œ" -"ã¦ã„ã¾ã™" - msgid "E836: This Vim cannot execute :python after using :py3" msgstr "E836: ã“ã®Vimã§ã¯ :py3 を使ã£ãŸå¾Œã« :python を使ãˆã¾ã›ã‚“" @@ -3003,7 +2990,7 @@ msgid "-g\t\t\tRun using GUI (like \"gvim\")" msgstr "-g\t\t\tGUIã§èµ·å‹•ã™ã‚‹ (\"gvim\" ã¨åŒã˜)" msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -msgstr "-f or --nofork\tフォアグラウンド: GUIã‚’å§‹ã‚ã‚‹ã¨ãã«forkã—ãªã„" +msgstr "-f or --nofork\tフォアグラウンド: GUIã‚’å§‹ã‚ã‚‹ã¨ãã«forkã—ãªã„" msgid "-v\t\t\tVi mode (like \"vi\")" msgstr "-v\t\t\tViモード (\"vi\" ã¨åŒã˜)" @@ -3148,7 +3135,7 @@ msgstr "--remote-silent <files> åŒä¸Šã€ã‚µãƒ¼ãƒãƒ¼ãŒç„¡ãã¦ã‚‚è¦å‘Šæ–‡ã‚ msgid "" "--remote-wait <files> As --remote but wait for files to have been edited" -msgstr "--remote-wait <files>\t--remote後 ファイルã®ç·¨é›†ãŒçµ‚ã‚ã‚‹ã®ã‚’å¾…ã¤" +msgstr "--remote-wait <files> --remote後 ファイルã®ç·¨é›†ãŒçµ‚ã‚ã‚‹ã®ã‚’å¾…ã¤" msgid "" "--remote-wait-silent <files> Same, don't complain if there is no server" @@ -3266,7 +3253,7 @@ msgid "--role <role>\tSet a unique role to identify the main window" msgstr "--role <role>\tメインウィンドウをè˜åˆ¥ã™ã‚‹ä¸€æ„ãªå½¹å‰²(role)ã‚’è¨å®šã™ã‚‹" msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -msgstr "--socketid <xid>\tç•°ãªã‚‹GTK widgetã§Vimã‚’é–‹ã" +msgstr "--socketid <xid>\tç•°ãªã‚‹GTK widgetã®å†…部ã«Vimã‚’é–‹ã" msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" msgstr "--echo-wid\t\tウィンドウIDを標準出力ã«å‡ºåŠ›ã™ã‚‹" @@ -3322,7 +3309,7 @@ msgid "" "change line col text" msgstr "" "\n" -"変更 行 列 テã‚スト" +"変更 行 列 テã‚スト" msgid "" "\n" @@ -3649,7 +3636,7 @@ msgstr "" "\n" " プãƒã‚»ã‚¹ID: " -msgid " (still running)" +msgid " (STILL RUNNING)" msgstr " (ã¾ã 実行ä¸)" msgid "" @@ -3745,6 +3732,9 @@ msgstr "" msgid "While opening file \"" msgstr "次ã®ãƒ•ァイルを開ã„ã¦ã„ã‚‹æœ€ä¸ \"" +msgid " CANNOT BE FOUND" +msgstr " 見ã¤ã‹ã‚Šã¾ã›ã‚“" + msgid " NEWER than swap file!\n" msgstr " スワップファイルよりも新ã—ã„ã§ã™!\n" @@ -3960,19 +3950,15 @@ msgstr "" msgid "Type number and <Enter> (empty cancels): " msgstr "番å·ã¨<Enter>を入力ã—ã¦ãã ã•ã„ (空ã§ã‚ャンセル): " -msgid "1 more line" -msgstr "1 行 è¿½åŠ ã—ã¾ã—ãŸ" - -msgid "1 line less" -msgstr "1 行 削除ã—ã¾ã—ãŸ" - #, c-format -msgid "%ld more lines" -msgstr "%ld 行 è¿½åŠ ã—ã¾ã—ãŸ" +msgid "%ld more line" +msgid_plural "%ld more lines" +msgstr[0] "%ld 行 è¿½åŠ ã—ã¾ã—ãŸ" #, c-format -msgid "%ld fewer lines" -msgstr "%ld 行 削除ã—ã¾ã—ãŸ" +msgid "%ld line less" +msgid_plural "%ld fewer lines" +msgstr[0] "%ld 行 削除ã—ã¾ã—ãŸ" msgid " (Interrupted)" msgstr " (割込ã¾ã‚Œã¾ã—ãŸ)" @@ -4042,7 +4028,7 @@ msgstr "" #, c-format msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpathã«ã¯ \"%s\" ã¨ã„ã†ãƒ•ァイルãŒã‚りã¾ã›ã‚“" +msgstr "E344: cdpathã«ã¯ \"%s\" ã¨ã„ã†ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãŒã‚りã¾ã›ã‚“" #, c-format msgid "E345: Can't find file \"%s\" in path" @@ -4050,7 +4036,7 @@ msgstr "E345: pathã«ã¯ \"%s\" ã¨ã„ã†ãƒ•ァイルãŒã‚りã¾ã›ã‚“" #, c-format msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpathã«ã¯ã“れ以上 \"%s\" ã¨ã„ã†ãƒ•ァイルãŒã‚りã¾ã›ã‚“" +msgstr "E346: cdpathã«ã¯ã“れ以上 \"%s\" ã¨ã„ã†ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãŒã‚りã¾ã›ã‚“" #, c-format msgid "E347: No more file \"%s\" found in path" @@ -4108,31 +4094,23 @@ msgstr "" "ã•ã„" #, c-format -msgid "1 line %sed 1 time" -msgstr "1 行㌠%s ã§ 1 回処ç†ã•れã¾ã—ãŸ" - -#, c-format -msgid "1 line %sed %d times" -msgstr "1 行㌠%s ã§ %d 回処ç†ã•れã¾ã—ãŸ" +msgid "%ld line %sed %d time" +msgid_plural "%ld line %sed %d times" +msgstr[0] "%ld 行㌠%s ã§ %d 回処ç†ã•れã¾ã—ãŸ" #, c-format -msgid "%ld lines %sed 1 time" -msgstr "%ld 行㌠%s ã§ 1 回処ç†ã•れã¾ã—ãŸ" - -#, c-format -msgid "%ld lines %sed %d times" -msgstr "%ld 行㌠%s ã§ %d 回処ç†ã•れã¾ã—ãŸ" +msgid "%ld lines %sed %d time" +msgid_plural "%ld lines %sed %d times" +msgstr[0] "%ld 行㌠%s ã§ %d 回処ç†ã•れã¾ã—ãŸ" #, c-format msgid "%ld lines to indent... " msgstr "%ld 行ãŒã‚¤ãƒ³ãƒ‡ãƒ³ãƒˆã•れã¾ã™... " -msgid "1 line indented " -msgstr "1 行をインデントã—ã¾ã—㟠" - #, c-format -msgid "%ld lines indented " -msgstr "%ld 行をインデントã—ã¾ã—㟠" +msgid "%ld line indented " +msgid_plural "%ld lines indented " +msgstr[0] "%ld 行をインデントã—ã¾ã—㟠" msgid "E748: No previously used register" msgstr "E748: ã¾ã レジスタを使用ã—ã¦ã„ã¾ã›ã‚“" @@ -4140,12 +4118,10 @@ msgstr "E748: ã¾ã レジスタを使用ã—ã¦ã„ã¾ã›ã‚“" msgid "cannot yank; delete anyway" msgstr "ヤンクã§ãã¾ã›ã‚“; ã¨ã«ã‹ã消去" -msgid "1 line changed" -msgstr "1 行ãŒå¤‰æ›´ã•れã¾ã—ãŸ" - #, c-format -msgid "%ld lines changed" -msgstr "%ld 行ãŒå¤‰æ›´ã•れã¾ã—ãŸ" +msgid "%ld line changed" +msgid_plural "%ld lines changed" +msgstr[0] "%ld 行ãŒå¤‰æ›´ã•れã¾ã—ãŸ" #, c-format msgid "freeing %ld lines" @@ -4156,20 +4132,14 @@ msgid " into \"%c" msgstr " \"%c ã«" #, c-format -msgid "block of 1 line yanked%s" -msgstr "1 行ã®ãƒ–ãƒãƒƒã‚¯ãŒ%sヤンクã•れã¾ã—ãŸ" - -#, c-format -msgid "1 line yanked%s" -msgstr "1 行ãŒ%sヤンクã•れã¾ã—ãŸ" - -#, c-format -msgid "block of %ld lines yanked%s" -msgstr "%ld 行ã®ãƒ–ãƒãƒƒã‚¯ãŒ%sヤンクã•れã¾ã—ãŸ" +msgid "block of %ld line yanked%s" +msgid_plural "block of %ld lines yanked%s" +msgstr[0] "%ld 行ã®ãƒ–ãƒãƒƒã‚¯ãŒ%sヤンクã•れã¾ã—ãŸ" #, c-format -msgid "%ld lines yanked%s" -msgstr "%ld 行ãŒ%sヤンクã•れã¾ã—ãŸ" +msgid "%ld line yanked%s" +msgid_plural "%ld lines yanked%s" +msgstr[0] "%ld 行ãŒ%sヤンクã•れã¾ã—ãŸ" #, c-format msgid "E353: Nothing in register %s" @@ -5387,6 +5357,9 @@ msgstr "E783: MAP エントリã«é‡è¤‡æ–‡å—ãŒå˜åœ¨ã—ã¾ã™" msgid "No Syntax items defined for this buffer" msgstr "ã“ã®ãƒãƒƒãƒ•ã‚¡ã«å®šç¾©ã•ã‚ŒãŸæ§‹æ–‡è¦ç´ ã¯ã‚りã¾ã›ã‚“" +msgid "'redrawtime' exceeded, syntax highlighting disabled" +msgstr "'redrawtime' ã‚’è¶…éŽã—ãŸãŸã‚ã€æ§‹æ–‡ãƒã‚¤ãƒ©ã‚¤ãƒˆã¯ç„¡åŠ¹åŒ–ã•れã¾ã™" + msgid "syntax conceal on" msgstr "構文㮠conceal ã¯ç¾åœ¨ on ã§ã™" @@ -5415,6 +5388,9 @@ msgstr "構文㮠spell ã¯ç¾åœ¨ default ã§ã™" msgid "syntax iskeyword " msgstr "構文用 iskeyword " +msgid "syntax iskeyword not set" +msgstr "構文用 iskeyword ã¯ã‚»ãƒƒãƒˆã•れã¦ã„ã¾ã›ã‚“" + #, c-format msgid "E391: No such syntax cluster: %s" msgstr "E391: ãã®ã‚ˆã†ãªæ§‹æ–‡ã‚¯ãƒ©ã‚¹ã‚¿ã¯ã‚りã¾ã›ã‚“: %s" @@ -5754,6 +5730,9 @@ msgstr "実行ä¸" msgid "finished" msgstr "終了" +msgid "E958: Job already finished" +msgstr "E958: ジョブã¯ã™ã§ã«çµ‚了ã—ã¦ã„ã¾ã™" + #, c-format msgid "E953: File exists: %s" msgstr "E953: ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ—¢ã«å˜åœ¨ã—ã¾ã™: %s" @@ -5893,8 +5872,9 @@ msgid "number changes when saved" msgstr "通番 変更数 変更時期 ä¿å˜æ¸ˆ" #, c-format -msgid "%ld seconds ago" -msgstr "%ld 秒経éŽã—ã¦ã„ã¾ã™" +msgid "%ld second ago" +msgid_plural "%ld seconds ago" +msgstr[0] "%ld 秒経éŽã—ã¦ã„ã¾ã™" msgid "E790: undojoin is not allowed after undo" msgstr "E790: undo ã®ç›´å¾Œã« undojoin ã¯ã§ãã¾ã›ã‚“" @@ -6360,6 +6340,19 @@ msgstr "E802: 無効㪠ID: %ld (1 以上ã§ãªã‘れã°ãªã‚Šã¾ã›ã‚“)" msgid "E803: ID not found: %ld" msgstr "E803: ID ã¯ã‚りã¾ã›ã‚“: %ld" +#, c-format +msgid "E370: Could not load library %s" +msgstr "E370: ライブラリ %s ã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ" + +msgid "Sorry, this command is disabled: the Perl library could not be loaded." +msgstr "" +"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ç„¡åйã§ã™ã€ã”ã‚ã‚“ãªã•ã„: Perlライブラリをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ." + +msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" +msgstr "" +"E299: サンドボックスã§ã¯ Safe モジュールを使用ã—ãªã„Perlスクリプトã¯ç¦ã˜ã‚‰ã‚Œ" +"ã¦ã„ã¾ã™" + msgid "Edit with &multiple Vims" msgstr "複数ã®Vimã§ç·¨é›†ã™ã‚‹ (&M)" @@ -6372,6 +6365,9 @@ msgstr "Vimã§å·®åˆ†ã‚’表示ã™ã‚‹" msgid "Edit with &Vim" msgstr "Vimã§ç·¨é›†ã™ã‚‹ (&V)" +msgid "Edit with existing Vim" +msgstr "起動済ã®Vimã§ç·¨é›†ã™ã‚‹" + msgid "Edit with existing Vim - " msgstr "起動済ã®Vimã§ç·¨é›†ã™ã‚‹ - " diff --git a/src/po/ja.sjis.po b/src/po/ja.sjis.po index 538db7249..9e7074581 100644 --- a/src/po/ja.sjis.po +++ b/src/po/ja.sjis.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Vim 8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-07-18 00:43+0900\n" -"PO-Revision-Date: 2017-05-18 00:45+0900\n" +"POT-Creation-Date: 2018-11-13 19:44+0900\n" +"PO-Revision-Date: 2018-11-16 09:41+0900\n" "Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" "Language-Team: Japanese <https://github.com/vim-jp/lang-ja>\n" "Language: ja\n" @@ -69,26 +69,20 @@ msgstr "E516: 휂³‚ꂽƒoƒbƒtƒ@‚Í‚ ‚è‚Ü‚¹‚ñ" msgid "E517: No buffers were wiped out" msgstr "E517: ”jŠü‚³‚ꂽƒoƒbƒtƒ@‚Í‚ ‚è‚Ü‚¹‚ñ" -msgid "1 buffer unloaded" -msgstr "1 ŒÂ‚̃oƒbƒtƒ@‚ª‰ð•ú‚³‚ê‚Ü‚µ‚½" - #, c-format -msgid "%d buffers unloaded" -msgstr "%d ŒÂ‚̃oƒbƒtƒ@‚ª‰ð•ú‚³‚ê‚Ü‚µ‚½" - -msgid "1 buffer deleted" -msgstr "1 ŒÂ‚̃oƒbƒtƒ@‚ªíœ‚³‚ê‚Ü‚µ‚½" +msgid "%d buffer unloaded" +msgid_plural "%d buffers unloaded" +msgstr[0] "%d ŒÂ‚̃oƒbƒtƒ@‚ª‰ð•ú‚³‚ê‚Ü‚µ‚½" #, c-format -msgid "%d buffers deleted" -msgstr "%d ŒÂ‚̃oƒbƒtƒ@‚ªíœ‚³‚ê‚Ü‚µ‚½" - -msgid "1 buffer wiped out" -msgstr "1 ŒÂ‚̃oƒbƒtƒ@‚ª”jŠü‚³‚ê‚Ü‚µ‚½" +msgid "%d buffer deleted" +msgid_plural "%d buffers deleted" +msgstr[0] "%d ŒÂ‚̃oƒbƒtƒ@‚ªíœ‚³‚ê‚Ü‚µ‚½" #, c-format -msgid "%d buffers wiped out" -msgstr "%d ŒÂ‚̃oƒbƒtƒ@‚ª”jŠü‚³‚ê‚Ü‚µ‚½" +msgid "%d buffer wiped out" +msgid_plural "%d buffers wiped out" +msgstr[0] "%d ŒÂ‚̃oƒbƒtƒ@‚ª”jŠü‚³‚ê‚Ü‚µ‚½" msgid "E90: Cannot unload last buffer" msgstr "E90: ÅŒã‚̃oƒbƒtƒ@‚͉ð•ú‚Å‚«‚Ü‚¹‚ñ" @@ -162,12 +156,9 @@ msgid "[readonly]" msgstr "[“Çžê—p]" #, c-format -msgid "1 line --%d%%--" -msgstr "1 s --%d%%--" - -#, c-format -msgid "%ld lines --%d%%--" -msgstr "%ld s --%d%%--" +msgid "%ld line --%d%%--" +msgid_plural "%ld lines --%d%%--" +msgstr[0] "%ld s --%d%%--" #, c-format msgid "line %ld of %ld --%d%%-- col " @@ -321,12 +312,19 @@ msgstr "E737: ƒL[‚ÍŠù‚É‘¶Ý‚µ‚Ü‚·: %s" msgid "E96: Cannot diff more than %ld buffers" msgstr "E96: %ld ˆÈã‚̃oƒbƒtƒ@‚Ídiff‚Å‚«‚Ü‚¹‚ñ" +#, c-format +msgid "Not enough memory to use internal diff for buffer \"%s\"" +msgstr "ƒoƒbƒtƒ@ \"%s\" —p‚É“à•”diff‚ðŽg‚¤‚½‚߂̃ƒ‚ƒŠ‚ª•s‘«‚µ‚Ä‚¢‚Ü‚·" + msgid "E810: Cannot read or write temp files" msgstr "E810: ˆêŽžƒtƒ@ƒCƒ‹‚̓Ǟ‚à‚µ‚‚Í‘ž‚ª‚Å‚«‚Ü‚¹‚ñ" msgid "E97: Cannot create diffs" msgstr "E97: ·•ª‚ð쬂ł«‚Ü‚¹‚ñ" +msgid "E960: Problem creating the internal diff" +msgstr "E960: “à•”diff쬎ž‚É–â‘肪”¶‚µ‚Ü‚µ‚½" + msgid "Patch file" msgstr "ƒpƒbƒ`ƒtƒ@ƒCƒ‹" @@ -336,6 +334,9 @@ msgstr "E816: patch‚Ìo—Í‚ð“Çž‚߂܂¹‚ñ" msgid "E98: Cannot read diff output" msgstr "E98: diff‚Ìo—Í‚ð“Çž‚߂܂¹‚ñ" +msgid "E959: Invalid diff format." +msgstr "E959: –³Œø‚ÈdiffŒ`Ž®‚Å‚·" + msgid "E99: Current buffer is not in diff mode" msgstr "E99: Œ»Ý‚̃oƒbƒtƒ@‚Í·•ªƒ‚[ƒh‚ł͂ ‚è‚Ü‚¹‚ñ" @@ -667,6 +668,9 @@ msgstr "" "\n" "\tÅŒã‚ɃZƒbƒg‚µ‚½ƒXƒNƒŠƒvƒg: " +msgid " line " +msgstr " s " + msgid "E691: Can only compare List with List" msgstr "E691: ƒŠƒXƒgŒ^‚ÍƒŠƒXƒgŒ^‚Æ‚µ‚©”äŠr‚Å‚«‚Ü‚¹‚ñ" @@ -744,6 +748,9 @@ msgstr "E916: —LŒø‚ȃWƒ‡ƒu‚ł͂ ‚è‚Ü‚¹‚ñ" msgid "E701: Invalid type for len()" msgstr "E701: len() ‚ɂ͖³Œø‚ÈŒ^‚Å‚·" +msgid "E957: Invalid window number" +msgstr "E957: –³Œø‚ȃEƒBƒ“ƒhƒE”Ô†‚Å‚·" + #, c-format msgid "E798: ID is reserved for \":match\": %ld" msgstr "E798: ID ‚Í \":match\" ‚Ì‚½‚߂ɗ\\–ñ‚³‚ê‚Ä‚¢‚Ü‚·: %ld" @@ -790,6 +797,10 @@ msgstr "E258: ƒNƒ‰ƒCƒAƒ“ƒg‚Ö‘—‚邱‚Æ‚ª‚Å‚«‚Ü‚¹‚ñ" msgid "E927: Invalid action: '%s'" msgstr "E927: –³Œø‚È‘€ì‚Å‚·: %s" +#, c-format +msgid "E962: Invalid action: '%s'" +msgstr "E962: –³Œø‚È‘€ì‚Å‚·: %s" + msgid "sort() argument" msgstr "sort() ‚̈ø”" @@ -839,15 +850,13 @@ msgstr "> %d, 16i” %04x, 8i” %o" msgid "> %d, Hex %08x, Octal %o" msgstr "> %d, 16i” %08x, 8i” %o" -msgid "E134: Move lines into themselves" -msgstr "E134: s‚ð‚»‚êŽ©g‚ɂ͈ړ®‚Å‚«‚Ü‚¹‚ñ" - -msgid "1 line moved" -msgstr "1 s‚ªˆÚ“®‚³‚ê‚Ü‚µ‚½" +msgid "E134: Cannot move a range of lines into itself" +msgstr "E134: s‚Ì”ÍˆÍ‚ð‚»‚êŽ©g‚ɂ͈ړ®‚Å‚«‚Ü‚¹‚ñ" #, c-format -msgid "%ld lines moved" -msgstr "%ld s‚ªˆÚ“®‚³‚ê‚Ü‚µ‚½" +msgid "%ld line moved" +msgid_plural "%ld lines moved" +msgstr[0] "%ld s‚ªˆÚ“®‚³‚ê‚Ü‚µ‚½" #, c-format msgid "%ld lines filtered" @@ -999,26 +1008,25 @@ msgstr "%s ‚É’uŠ·‚µ‚Ü‚·‚©? (y/n/a/q/l/^E/^Y)" msgid "(Interrupted) " msgstr "(Š„ž‚Ü‚ê‚Ü‚µ‚½) " -msgid "1 match" -msgstr "1 ‰ÓŠŠY“–‚µ‚Ü‚µ‚½" - -msgid "1 substitution" -msgstr "1 ‰ÓŠ’uŠ·‚µ‚Ü‚µ‚½" - #, c-format -msgid "%ld matches" -msgstr "%ld ‰ÓŠŠY“–‚µ‚Ü‚µ‚½" +msgid "%ld match on %ld line" +msgid_plural "%ld matches on %ld line" +msgstr[0] "%ld ‰ÓŠŠY“–‚µ‚Ü‚µ‚½ (Œv %ld s“à)" #, c-format -msgid "%ld substitutions" -msgstr "%ld ‰ÓŠ’uŠ·‚µ‚Ü‚µ‚½" +msgid "%ld substitution on %ld line" +msgid_plural "%ld substitutions on %ld line" +msgstr[0] "%ld ‰ÓŠ’uŠ·‚µ‚Ü‚µ‚½ (Œv %ld s“à)" -msgid " on 1 line" -msgstr " (Œv 1 s“à)" +#, c-format +msgid "%ld match on %ld lines" +msgid_plural "%ld matches on %ld lines" +msgstr[0] "%ld ‰ÓŠŠY“–‚µ‚Ü‚µ‚½ (Œv %ld s“à)" #, c-format -msgid " on %ld lines" -msgstr " (Œv %ld s“à)" +msgid "%ld substitution on %ld lines" +msgid_plural "%ld substitutions on %ld lines" +msgstr[0] "%ld ‰ÓŠ’uŠ·‚µ‚Ü‚µ‚½ (Œv %ld s“à)" msgid "E147: Cannot do :global recursive with a range" msgstr "E147: :global ‚ð”͈͕t‚«‚ÅÄ‹A“I‚ɂ͎g‚¦‚Ü‚¹‚ñ" @@ -1334,19 +1342,15 @@ msgstr "" msgid "E319: Sorry, the command is not available in this version" msgstr "E319: ‚±‚̃o[ƒWƒ‡ƒ“‚ł͂±‚̃Rƒ}ƒ“ƒh‚Í—˜—p‚Å‚«‚Ü‚¹‚ñA‚²‚ß‚ñ‚È‚³‚¢" -msgid "1 more file to edit. Quit anyway?" -msgstr "•ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª 1 ŒÂ‚ ‚è‚Ü‚·‚ªAI—¹‚µ‚Ü‚·‚©?" - #, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "•ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª‚ ‚Æ %d ŒÂ‚ ‚è‚Ü‚·‚ªAI—¹‚µ‚Ü‚·‚©?" - -msgid "E173: 1 more file to edit" -msgstr "E173: •ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª 1 ŒÂ‚ ‚è‚Ü‚·" +msgid "%d more file to edit. Quit anyway?" +msgid_plural "%d more files to edit. Quit anyway?" +msgstr[0] "•ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª‚ ‚Æ %d ŒÂ‚ ‚è‚Ü‚·‚ªAI—¹‚µ‚Ü‚·‚©?" #, c-format -msgid "E173: %ld more files to edit" -msgstr "E173: •ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª‚ ‚Æ %ld ŒÂ‚ ‚è‚Ü‚·" +msgid "E173: %ld more file to edit" +msgid_plural "E173: %ld more files to edit" +msgstr[0] "E173: •ÒW‚·‚ׂ«ƒtƒ@ƒCƒ‹‚ª‚ ‚Æ %ld ŒÂ‚ ‚è‚Ü‚·" msgid "E174: Command already exists: add ! to replace it" msgstr "E174: ƒRƒ}ƒ“ƒh‚ªŠù‚É‚ ‚è‚Ü‚·: Ä’è‹`‚·‚é‚É‚Í ! ‚ð’ljÁ‚µ‚Ä‚‚¾‚³‚¢" @@ -1521,6 +1525,9 @@ msgstr "E498: \"<sfile>\"‚ð’u‚«Š·‚¦‚é :source ‘ÎÛƒtƒ@ƒCƒ‹–¼‚ª‚ ‚è‚Ü‚¹‚ñ" msgid "E842: no line number to use for \"<slnum>\"" msgstr "E842: \"<slnum>\"‚ð’u‚«Š·‚¦‚és”Ô†‚ª‚ ‚è‚Ü‚¹‚ñ" +msgid "E961: no line number to use for \"<sflnum>\"" +msgstr "E961: \"<sflnum>\"‚ð’u‚«Š·‚¦‚és”Ô†‚ª‚ ‚è‚Ü‚¹‚ñ" + #, no-c-format msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgstr "" @@ -1725,9 +1732,6 @@ msgstr "•W€“ü—Í‚©‚ç“Çž‚Ý’†..." msgid "E202: Conversion made file unreadable!" msgstr "E202: •ÏŠ·‚ªƒtƒ@ƒCƒ‹‚ð“Çž•s‰Â‚É‚µ‚Ü‚µ‚½" -msgid "[fifo/socket]" -msgstr "[FIFO/ƒ\\ƒPƒbƒg]" - msgid "[fifo]" msgstr "[FIFO]" @@ -1904,19 +1908,15 @@ msgstr "[unix]" msgid "[unix format]" msgstr "[unixƒtƒH[ƒ}ƒbƒg]" -msgid "1 line, " -msgstr "1 s, " - #, c-format -msgid "%ld lines, " -msgstr "%ld s, " - -msgid "1 character" -msgstr "1 •¶Žš" +msgid "%ld line, " +msgid_plural "%ld lines, " +msgstr[0] "%ld s, " #, c-format -msgid "%lld characters" -msgstr "%lld •¶Žš" +msgid "%lld character" +msgid_plural "%lld characters" +msgstr[0] "%lld •¶Žš" msgid "[noeol]" msgstr "[noeol]" @@ -2289,11 +2289,11 @@ msgstr "ƒAƒ“ƒhƒD(&U)" msgid "Open tab..." msgstr "ƒ^ƒuƒy[ƒW‚ðŠJ‚" -msgid "Find string (use '\\\\' to find a '\\')" -msgstr "ŒŸõ•¶Žš—ñ ('\\' ‚ðŒŸõ‚·‚é‚É‚Í '\\\\')" +msgid "Find string" +msgstr "ŒŸõ•¶Žš—ñ" -msgid "Find & Replace (use '\\\\' to find a '\\')" -msgstr "ŒŸõE’uŠ· ('\\' ‚ðŒŸõ‚·‚é‚É‚Í '\\\\')" +msgid "Find & Replace" +msgstr "ŒŸõE’uŠ·" msgid "Not Used" msgstr "Žg‚í‚ê‚Ü‚¹‚ñ" @@ -2710,19 +2710,6 @@ msgstr "”͈͊O‚Ìs”Ô†‚Å‚·" msgid "not allowed in the Vim sandbox" msgstr "ƒTƒ“ƒhƒ{ƒbƒNƒX‚ł͋–‚³‚ê‚Ü‚¹‚ñ" -#, c-format -msgid "E370: Could not load library %s" -msgstr "E370: ƒ‰ƒCƒuƒ‰ƒŠ %s ‚ðƒ[ƒh‚Å‚«‚Ü‚¹‚ñ‚Å‚µ‚½" - -msgid "Sorry, this command is disabled: the Perl library could not be loaded." -msgstr "" -"‚±‚̃Rƒ}ƒ“ƒh‚Í–³Œø‚Å‚·A‚²‚ß‚ñ‚È‚³‚¢: Perlƒ‰ƒCƒuƒ‰ƒŠ‚ðƒ[ƒh‚Å‚«‚Ü‚¹‚ñ‚Å‚µ‚½." - -msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -msgstr "" -"E299: ƒTƒ“ƒhƒ{ƒbƒNƒX‚Å‚Í Safe ƒ‚ƒWƒ…[ƒ‹‚ðŽg—p‚µ‚È‚¢PerlƒXƒNƒŠƒvƒg‚͋ւ¶‚ç‚ê" -"‚Ä‚¢‚Ü‚·" - msgid "E836: This Vim cannot execute :python after using :py3" msgstr "E836: ‚±‚ÌVim‚Å‚Í :py3 ‚ðŽg‚Á‚½Œã‚É :python ‚ðŽg‚¦‚Ü‚¹‚ñ" @@ -3003,7 +2990,7 @@ msgid "-g\t\t\tRun using GUI (like \"gvim\")" msgstr "-g\t\t\tGUI‚Å‹N“®‚·‚é (\"gvim\" ‚Æ“¯‚¶)" msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -msgstr "-f or --nofork\tƒtƒHƒAƒOƒ‰ƒEƒ“ƒh: GUI‚ðŽn‚߂邯‚«‚Éfork‚µ‚È‚¢" +msgstr "-f or --nofork\tƒtƒHƒAƒOƒ‰ƒEƒ“ƒh: GUI‚ðŽn‚߂邯‚«‚Éfork‚µ‚È‚¢" msgid "-v\t\t\tVi mode (like \"vi\")" msgstr "-v\t\t\tViƒ‚[ƒh (\"vi\" ‚Æ“¯‚¶)" @@ -3148,7 +3135,7 @@ msgstr "--remote-silent <files> “¯ãAƒT[ƒo[‚ª–³‚‚Ä‚àŒx•¶‚ðo—Í‚µ‚È‚¢" msgid "" "--remote-wait <files> As --remote but wait for files to have been edited" -msgstr "--remote-wait <files>\t--remoteŒã ƒtƒ@ƒCƒ‹‚Ì•ÒW‚ªI‚í‚é‚Ì‚ð‘Ò‚Â" +msgstr "--remote-wait <files> --remoteŒã ƒtƒ@ƒCƒ‹‚Ì•ÒW‚ªI‚í‚é‚Ì‚ð‘Ò‚Â" msgid "" "--remote-wait-silent <files> Same, don't complain if there is no server" @@ -3266,7 +3253,7 @@ msgid "--role <role>\tSet a unique role to identify the main window" msgstr "--role <role>\tƒƒCƒ“ƒEƒBƒ“ƒhƒE‚ðŽ¯•Ê‚·‚éˆêˆÓ‚È–ðŠ„(role)‚ðÝ’è‚·‚é" msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -msgstr "--socketid <xid>\tˆÙ‚È‚éGTK widget‚ÅVim‚ðŠJ‚" +msgstr "--socketid <xid>\tˆÙ‚È‚éGTK widget‚Ì“à•”‚ÉVim‚ðŠJ‚" msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" msgstr "--echo-wid\t\tƒEƒBƒ“ƒhƒEID‚ð•W€o—Í‚Éo—Í‚·‚é" @@ -3322,7 +3309,7 @@ msgid "" "change line col text" msgstr "" "\n" -"•ÏX s —ñ ƒeƒLƒXƒg" +"•ÏX s —ñ ƒeƒLƒXƒg" msgid "" "\n" @@ -3649,7 +3636,7 @@ msgstr "" "\n" " ƒvƒƒZƒXID: " -msgid " (still running)" +msgid " (STILL RUNNING)" msgstr " (‚Ü‚¾ŽÀs’†)" msgid "" @@ -3745,6 +3732,9 @@ msgstr "" msgid "While opening file \"" msgstr "ŽŸ‚̃tƒ@ƒCƒ‹‚ðŠJ‚¢‚Ä‚¢‚éÅ’† \"" +msgid " CANNOT BE FOUND" +msgstr " Œ©‚‚©‚è‚Ü‚¹‚ñ" + msgid " NEWER than swap file!\n" msgstr " ƒXƒƒbƒvƒtƒ@ƒCƒ‹‚æ‚è‚àV‚µ‚¢‚Å‚·!\n" @@ -3960,19 +3950,15 @@ msgstr "" msgid "Type number and <Enter> (empty cancels): " msgstr "”Ô†‚Æ<Enter>‚ð“ü—Í‚µ‚Ä‚‚¾‚³‚¢ (‹ó‚ŃLƒƒƒ“ƒZƒ‹): " -msgid "1 more line" -msgstr "1 s ’ljÁ‚µ‚Ü‚µ‚½" - -msgid "1 line less" -msgstr "1 s 휂µ‚Ü‚µ‚½" - #, c-format -msgid "%ld more lines" -msgstr "%ld s ’ljÁ‚µ‚Ü‚µ‚½" +msgid "%ld more line" +msgid_plural "%ld more lines" +msgstr[0] "%ld s ’ljÁ‚µ‚Ü‚µ‚½" #, c-format -msgid "%ld fewer lines" -msgstr "%ld s 휂µ‚Ü‚µ‚½" +msgid "%ld line less" +msgid_plural "%ld fewer lines" +msgstr[0] "%ld s 휂µ‚Ü‚µ‚½" msgid " (Interrupted)" msgstr " (Š„ž‚Ü‚ê‚Ü‚µ‚½)" @@ -4042,7 +4028,7 @@ msgstr "" #, c-format msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath‚É‚Í \"%s\" ‚Æ‚¢‚¤ƒtƒ@ƒCƒ‹‚ª‚ ‚è‚Ü‚¹‚ñ" +msgstr "E344: cdpath‚É‚Í \"%s\" ‚Æ‚¢‚¤ƒfƒBƒŒƒNƒgƒŠ‚ª‚ ‚è‚Ü‚¹‚ñ" #, c-format msgid "E345: Can't find file \"%s\" in path" @@ -4050,7 +4036,7 @@ msgstr "E345: path‚É‚Í \"%s\" ‚Æ‚¢‚¤ƒtƒ@ƒCƒ‹‚ª‚ ‚è‚Ü‚¹‚ñ" #, c-format msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpath‚ɂ͂±‚êˆÈã \"%s\" ‚Æ‚¢‚¤ƒtƒ@ƒCƒ‹‚ª‚ ‚è‚Ü‚¹‚ñ" +msgstr "E346: cdpath‚ɂ͂±‚êˆÈã \"%s\" ‚Æ‚¢‚¤ƒfƒBƒŒƒNƒgƒŠ‚ª‚ ‚è‚Ü‚¹‚ñ" #, c-format msgid "E347: No more file \"%s\" found in path" @@ -4108,31 +4094,23 @@ msgstr "" "‚³‚¢" #, c-format -msgid "1 line %sed 1 time" -msgstr "1 s‚ª %s ‚Å 1 ‰ñˆ—‚³‚ê‚Ü‚µ‚½" - -#, c-format -msgid "1 line %sed %d times" -msgstr "1 s‚ª %s ‚Å %d ‰ñˆ—‚³‚ê‚Ü‚µ‚½" +msgid "%ld line %sed %d time" +msgid_plural "%ld line %sed %d times" +msgstr[0] "%ld s‚ª %s ‚Å %d ‰ñˆ—‚³‚ê‚Ü‚µ‚½" #, c-format -msgid "%ld lines %sed 1 time" -msgstr "%ld s‚ª %s ‚Å 1 ‰ñˆ—‚³‚ê‚Ü‚µ‚½" - -#, c-format -msgid "%ld lines %sed %d times" -msgstr "%ld s‚ª %s ‚Å %d ‰ñˆ—‚³‚ê‚Ü‚µ‚½" +msgid "%ld lines %sed %d time" +msgid_plural "%ld lines %sed %d times" +msgstr[0] "%ld s‚ª %s ‚Å %d ‰ñˆ—‚³‚ê‚Ü‚µ‚½" #, c-format msgid "%ld lines to indent... " msgstr "%ld s‚ªƒCƒ“ƒfƒ“ƒg‚³‚ê‚Ü‚·... " -msgid "1 line indented " -msgstr "1 s‚ðƒCƒ“ƒfƒ“ƒg‚µ‚Ü‚µ‚½ " - #, c-format -msgid "%ld lines indented " -msgstr "%ld s‚ðƒCƒ“ƒfƒ“ƒg‚µ‚Ü‚µ‚½ " +msgid "%ld line indented " +msgid_plural "%ld lines indented " +msgstr[0] "%ld s‚ðƒCƒ“ƒfƒ“ƒg‚µ‚Ü‚µ‚½ " msgid "E748: No previously used register" msgstr "E748: ‚Ü‚¾ƒŒƒWƒXƒ^‚ðŽg—p‚µ‚Ä‚¢‚Ü‚¹‚ñ" @@ -4140,12 +4118,10 @@ msgstr "E748: ‚Ü‚¾ƒŒƒWƒXƒ^‚ðŽg—p‚µ‚Ä‚¢‚Ü‚¹‚ñ" msgid "cannot yank; delete anyway" msgstr "ƒ„ƒ“ƒN‚Å‚«‚Ü‚¹‚ñ; ‚Ƃɂ©‚Á‹Ž" -msgid "1 line changed" -msgstr "1 s‚ª•ÏX‚³‚ê‚Ü‚µ‚½" - #, c-format -msgid "%ld lines changed" -msgstr "%ld s‚ª•ÏX‚³‚ê‚Ü‚µ‚½" +msgid "%ld line changed" +msgid_plural "%ld lines changed" +msgstr[0] "%ld s‚ª•ÏX‚³‚ê‚Ü‚µ‚½" #, c-format msgid "freeing %ld lines" @@ -4156,20 +4132,14 @@ msgid " into \"%c" msgstr " \"%c ‚É" #, c-format -msgid "block of 1 line yanked%s" -msgstr "1 s‚̃uƒƒbƒN‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" - -#, c-format -msgid "1 line yanked%s" -msgstr "1 s‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" - -#, c-format -msgid "block of %ld lines yanked%s" -msgstr "%ld s‚̃uƒƒbƒN‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" +msgid "block of %ld line yanked%s" +msgid_plural "block of %ld lines yanked%s" +msgstr[0] "%ld s‚̃uƒƒbƒN‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" #, c-format -msgid "%ld lines yanked%s" -msgstr "%ld s‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" +msgid "%ld line yanked%s" +msgid_plural "%ld lines yanked%s" +msgstr[0] "%ld s‚ª%sƒ„ƒ“ƒN‚³‚ê‚Ü‚µ‚½" #, c-format msgid "E353: Nothing in register %s" @@ -5387,6 +5357,9 @@ msgstr "E783: MAP ƒGƒ“ƒgƒŠ‚Éd•¡•¶Žš‚ª‘¶Ý‚µ‚Ü‚·" msgid "No Syntax items defined for this buffer" msgstr "‚±‚̃oƒbƒtƒ@‚É’è‹`‚³‚ꂽ\\•¶—v‘f‚Í‚ ‚è‚Ü‚¹‚ñ" +msgid "'redrawtime' exceeded, syntax highlighting disabled" +msgstr "'redrawtime' ‚𒴉߂µ‚½‚½‚ßA\\•¶ƒnƒCƒ‰ƒCƒg‚Í–³Œø‰»‚³‚ê‚Ü‚·" + msgid "syntax conceal on" msgstr "\\•¶‚Ì conceal ‚ÍŒ»Ý on ‚Å‚·" @@ -5415,6 +5388,9 @@ msgstr "\\•¶‚Ì spell ‚ÍŒ»Ý default ‚Å‚·" msgid "syntax iskeyword " msgstr "\\•¶—p iskeyword " +msgid "syntax iskeyword not set" +msgstr "\\•¶—p iskeyword ‚̓Zƒbƒg‚³‚ê‚Ä‚¢‚Ü‚¹‚ñ" + #, c-format msgid "E391: No such syntax cluster: %s" msgstr "E391: ‚»‚̂悤‚È\\•¶ƒNƒ‰ƒXƒ^‚Í‚ ‚è‚Ü‚¹‚ñ: %s" @@ -5754,6 +5730,9 @@ msgstr "ŽÀs’†" msgid "finished" msgstr "I—¹" +msgid "E958: Job already finished" +msgstr "E958: ƒWƒ‡ƒu‚Í‚·‚Å‚ÉI—¹‚µ‚Ä‚¢‚Ü‚·" + #, c-format msgid "E953: File exists: %s" msgstr "E953: ƒtƒ@ƒCƒ‹‚ÍŠù‚É‘¶Ý‚µ‚Ü‚·: %s" @@ -5893,8 +5872,9 @@ msgid "number changes when saved" msgstr "’Ê”Ô •ÏX” •ÏXŽžŠú •Û‘¶Ï" #, c-format -msgid "%ld seconds ago" -msgstr "%ld •bŒo‰ß‚µ‚Ä‚¢‚Ü‚·" +msgid "%ld second ago" +msgid_plural "%ld seconds ago" +msgstr[0] "%ld •bŒo‰ß‚µ‚Ä‚¢‚Ü‚·" msgid "E790: undojoin is not allowed after undo" msgstr "E790: undo ‚Ì’¼Œã‚É undojoin ‚͂ł«‚Ü‚¹‚ñ" @@ -6360,6 +6340,19 @@ msgstr "E802: –³Œø‚È ID: %ld (1 ˆÈã‚łȂ¯‚ê‚΂Ȃè‚Ü‚¹‚ñ)" msgid "E803: ID not found: %ld" msgstr "E803: ID ‚Í‚ ‚è‚Ü‚¹‚ñ: %ld" +#, c-format +msgid "E370: Could not load library %s" +msgstr "E370: ƒ‰ƒCƒuƒ‰ƒŠ %s ‚ðƒ[ƒh‚Å‚«‚Ü‚¹‚ñ‚Å‚µ‚½" + +msgid "Sorry, this command is disabled: the Perl library could not be loaded." +msgstr "" +"‚±‚̃Rƒ}ƒ“ƒh‚Í–³Œø‚Å‚·A‚²‚ß‚ñ‚È‚³‚¢: Perlƒ‰ƒCƒuƒ‰ƒŠ‚ðƒ[ƒh‚Å‚«‚Ü‚¹‚ñ‚Å‚µ‚½." + +msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" +msgstr "" +"E299: ƒTƒ“ƒhƒ{ƒbƒNƒX‚Å‚Í Safe ƒ‚ƒWƒ…[ƒ‹‚ðŽg—p‚µ‚È‚¢PerlƒXƒNƒŠƒvƒg‚͋ւ¶‚ç‚ê" +"‚Ä‚¢‚Ü‚·" + msgid "Edit with &multiple Vims" msgstr "•¡”‚ÌVim‚Å•ÒW‚·‚é (&M)" @@ -6372,6 +6365,9 @@ msgstr "Vim‚Å·•ª‚ð•\\ަ‚·‚é" msgid "Edit with &Vim" msgstr "Vim‚Å•ÒW‚·‚é (&V)" +msgid "Edit with existing Vim" +msgstr "‹N“®Ï‚ÌVim‚Å•ÒW‚·‚é" + msgid "Edit with existing Vim - " msgstr "‹N“®Ï‚ÌVim‚Å•ÒW‚·‚é - " |