diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-16 11:19:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-16 11:19:22 +0000 |
commit | ed20346f0b81d1d89c22c9616abe8e47b4c17f08 (patch) | |
tree | 249992fe05850523ab4ed4bc8f66effc8a3251b9 | |
parent | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (diff) | |
download | vim-git-ed20346f0b81d1d89c22c9616abe8e47b4c17f08.tar.gz |
Various changes
-rw-r--r-- | runtime/doc/change.txt | 7 | ||||
-rw-r--r-- | runtime/doc/editing.txt | 3 | ||||
-rw-r--r-- | runtime/doc/fold.txt | 4 | ||||
-rw-r--r-- | runtime/doc/gui.txt | 18 | ||||
-rw-r--r-- | runtime/doc/options.txt | 44 | ||||
-rw-r--r-- | runtime/doc/starting.txt | 7 | ||||
-rw-r--r-- | runtime/doc/syntax.txt | 4 | ||||
-rw-r--r-- | runtime/doc/tags | 10 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 433 | ||||
-rw-r--r-- | runtime/doc/various.txt | 5 | ||||
-rw-r--r-- | runtime/indent/python.vim | 12 | ||||
-rw-r--r-- | runtime/lang/menu_ru_ru.koi8-r.vim | 4 | ||||
-rw-r--r-- | src/Makefile | 4 | ||||
-rw-r--r-- | src/ex_cmds2.c | 3 | ||||
-rw-r--r-- | src/ex_docmd.c | 109 | ||||
-rw-r--r-- | src/fileio.c | 12 | ||||
-rw-r--r-- | src/message.c | 14 | ||||
-rw-r--r-- | src/option.c | 4 | ||||
-rw-r--r-- | src/po/ru.po | 4557 | ||||
-rw-r--r-- | src/search.c | 7 | ||||
-rw-r--r-- | src/structs.h | 2 |
21 files changed, 2671 insertions, 2592 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index 2e56ccb5c..63461ee1a 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.0aa. Last change: 2004 May 08 +*change.txt* For Vim version 7.0aa. Last change: 2004 Jun 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -963,8 +963,9 @@ There are nine types of registers: *registers* *E354* 1. Unnamed register "" *quote_quote* *quotequote* Vim fills this register with text deleted with the "d", "c", "s", "x" commands or copied with the yank "y" command, regardless of whether or not a specific -register was used (e.g. "xdd). An exception is the '_' register: "_dd does -not store the deleted text in any register. Vim uses the contents of this +register was used (e.g. "xdd). This is like the unnamed register is pointing +to the last used register. An exception is the '_' register: "_dd does not +store the deleted text in any register. Vim uses the contents of this register for any put command (p or P) which does not specify a register. Additionally you can access it with the name '"'. This means you have to type two double quotes. Writing to the "" register writes to register "0. diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt index e25c34a6f..827f78031 100644 --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -1,4 +1,4 @@ -*editing.txt* For Vim version 7.0aa. Last change: 2004 Apr 28 +*editing.txt* For Vim version 7.0aa. Last change: 2004 Jun 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -338,6 +338,7 @@ This also works for most other systems, with the restriction that the backticks must be around the whole item. It is not possible to have text directly before the first or just after the last backtick. + *`=* You can have the backticks expanded as a Vim expression, instead of an external command, by using the syntax `={expr}` e.g. > :let foo='bar' diff --git a/runtime/doc/fold.txt b/runtime/doc/fold.txt index cbe1237ea..00f547488 100644 --- a/runtime/doc/fold.txt +++ b/runtime/doc/fold.txt @@ -1,4 +1,4 @@ -*fold.txt* For Vim version 7.0aa. Last change: 2004 May 20 +*fold.txt* For Vim version 7.0aa. Last change: 2004 Jun 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -564,7 +564,7 @@ When using an operator, a closed fold is included as a whole. Thus "dl" deletes the whole closed fold under the cursor. For Ex commands the range is adjusted to always start at the first line of a -fold and end at the last line of a fold. Thus this command: > +closed fold and end at the last line of a closed fold. Thus this command: > :s/foo/bar/g when used with the cursor on a closed fold, will replace "foo" with "bar" in all lines of the fold. diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt index 430a3eb5c..2e59cc084 100644 --- a/runtime/doc/gui.txt +++ b/runtime/doc/gui.txt @@ -1,4 +1,4 @@ -*gui.txt* For Vim version 7.0aa. Last change: 2004 Jun 02 +*gui.txt* For Vim version 7.0aa. Last change: 2004 Jun 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -932,6 +932,22 @@ This section describes other features which are related to the GUI. else echo "Boring old console" endif +< *setting-guifont* +- When you use the same vimrc file on various systems, you can use something + like this to set options specifically for each type of GUI: > + + if has("gui_running") + if has("gui_gtk2") + :set guifont=Luxi\ Mono\ 12 + elseif has("gui_kde") + :set guifont=Luxi\ Mono/12/-1/5/50/0/0/0/1/0 + elseif has("x11") + " Also for GTK 1 + :set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-* + elseif has("gui_win32") + :set guifont=Luxi_Mono:h12:cANSI + endif + endif ============================================================================== 7. Shell Commands *gui-shell* diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 5dfb582e8..0d48e98d9 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 7.0aa. Last change: 2004 Jun 08 +*options.txt* For Vim version 7.0aa. Last change: 2004 Jun 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2795,31 +2795,42 @@ A jump table for the options with a short description can be found at |Q_op|. the font cannot be found you will get an error message. To try other font names a list can be specified, font names separated with commas. The first valid font is used. + When 'guifontset' is not empty, 'guifont' is not used. + Spaces after a comma are ignored. To include a comma in a font name precede it with a backslash. Setting an option requires an extra backslash before a space and a backslash. See also |option-backslash|. For example: > :set guifont=Screen15,\ 7x13,font\\,with\\,commas -< will make vim try to use the font "Screen15" first, and if it fails it +< will make Vim try to use the font "Screen15" first, and if it fails it will try to use "7x13" and then "font,with,commas" instead. + + If none of the fonts can be loaded, Vim will keep the current setting. + If an empty font list is given, Vim will try using other resource + settings (for X, it will use the Vim.font resource), and finally it + will try some builtin default which should always be there ("7x13" in + the case of X). The font names given should be "normal" fonts. Vim + will try to find the related bold and italic fonts. + + For Win32, GTK and Photon only: > + :set guifont=* +< will bring up a font requester, where you can pick the font you want. + + The font name depends on the GUI used. See |setting-guifont| for a + way to set 'guifont' for various systems. + For the GTK+ 2 GUI the font name looks like this: > :set guifont=Andale\ Mono\ 11 < That's all. XLFDs are no longer accepted. *E236* Note that the fonts must be mono-spaced (all characters have the same - width). + width). An exception is GTK 2: all fonts are accepted, but + mono-spaced fonts look best. + To preview a font on X11, you might be able to use the "xfontsel" program. The "xlsfonts" program gives a list of all available fonts. - For Win32, GTK and Photon only: > - :set guifont=* -< will bring up a font requester, where you can pick the font you want. - If none of the fonts can be loaded, vim will keep the current setting. - If an empty font list is given, vim will try using other resource - settings (for X, it will use the Vim.font resource), and finally it - will try some builtin default which should always be there ("7x13" in - the case of X). The font names given should be "normal" fonts. Vim - will try to find the related bold and italic fonts. + For the Win32 GUI *E244* *E245* - takes these options in the font name: hXX - height is XX (points, can be floating-point) @@ -2913,7 +2924,7 @@ A jump table for the options with a short description can be found at |Q_op|. global {not in Vi} {only available when compiled with GUI enabled} - This option only has an effect in the GUI version of vim. It is a + This option only has an effect in the GUI version of Vim. It is a sequence of letters which describes what components and options of the GUI should be used. To avoid problems with flags that are added in the future, use the @@ -4484,10 +4495,11 @@ A jump table for the options with a short description can be found at |Q_op|. system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error < - On MS-Windows machines the default is to copy the file to the - currently specified printdevice: > + On MS-Dos, MS-Windows and OS/2 machines the default is to copy the + file to the currently specified printdevice: > - system('copy' . ' ' . v:fname_in . ' "' . &printdevice . '"') + system('copy' . ' ' . v:fname_in . (&printdevice == '' + ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in) < On VMS machines the default is to send the file to either the default diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 160bcb914..f9e1301ac 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -1,4 +1,4 @@ -*starting.txt* For Vim version 7.0aa. Last change: 2004 May 28 +*starting.txt* For Vim version 7.0aa. Last change: 2004 Jun 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1019,6 +1019,11 @@ Once Vim has done this once, it will set the $VIMRUNTIME environment variable. To change it later, use a ":let" command like this: > :let $VIMRUNTIME = "/home/piet/vim/vim54" +In case you need the value of $VIMRUNTIME in a shell (e.g., for a script that +greps in the help files) you might be able to use this: > + + VIMRUNTIME=`vim -e -T dumb --cmd 'exe "set t_cm=\<C-M>"|echo $VIMRUNTIME|quit' | tr -d '\015' ` + ============================================================================== 6. Suspending *suspend* diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index db322355b..5bd9723ac 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1,4 +1,4 @@ -*syntax.txt* For Vim version 7.0aa. Last change: 2004 Jun 09 +*syntax.txt* For Vim version 7.0aa. Last change: 2004 Jun 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1348,7 +1348,7 @@ definitions in java.vim or by creating your own java.vim which includes the original one and then adds the code to highlight functions. In java 1.1 the functions System.out.println() and System.err.println() should -only be used for debugging. Therefor it is possible to highlight debugging +only be used for debugging. Therefore it is possible to highlight debugging statements differently. To do this you must add the following definition in your startup file: > :let java_highlight_debug=1 diff --git a/runtime/doc/tags b/runtime/doc/tags index 9a77ade8a..25f0a2087 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -3844,6 +3844,7 @@ _vimrc starting.txt /*_vimrc* `. motion.txt /*`.* `0 motion.txt /*`0* `< motion.txt /*`<* +`= editing.txt /*`=* `> motion.txt /*`>* `A motion.txt /*`A* `[ motion.txt /*`[* @@ -4018,6 +4019,7 @@ bufnr() eval.txt /*bufnr()* bufwinnr() eval.txt /*bufwinnr()* bug-fixes-5 version5.txt /*bug-fixes-5* bug-fixes-6 version6.txt /*bug-fixes-6* +bug-fixes-7 version7.txt /*bug-fixes-7* bug-reports intro.txt /*bug-reports* bugreport.vim intro.txt /*bugreport.vim* bugs intro.txt /*bugs* @@ -4166,6 +4168,7 @@ command-mode intro.txt /*command-mode* compatible-default starting.txt /*compatible-default* compile-changes-5 version5.txt /*compile-changes-5* compile-changes-6 version6.txt /*compile-changes-6* +compile-changes-7 version7.txt /*compile-changes-7* compiler-manx quickfix.txt /*compiler-manx* compiler-pyunit quickfix.txt /*compiler-pyunit* compiler-select quickfix.txt /*compiler-select* @@ -5056,12 +5059,14 @@ improved-sessions version5.txt /*improved-sessions* improved-viminfo version5.txt /*improved-viminfo* improvements-5 version5.txt /*improvements-5* improvements-6 version6.txt /*improvements-6* +improvements-7 version7.txt /*improvements-7* inactive-buffer windows.txt /*inactive-buffer* include-search tagsrch.txt /*include-search* inclusive motion.txt /*inclusive* incomp-small-6 version6.txt /*incomp-small-6* incompatible-5 version5.txt /*incompatible-5* incompatible-6 version6.txt /*incompatible-6* +incompatible-7 version7.txt /*incompatible-7* indent() eval.txt /*indent()* indent-expression indent.txt /*indent-expression* indent.txt indent.txt /*indent.txt* @@ -5378,6 +5383,7 @@ netterm-mouse options.txt /*netterm-mouse* network pi_netrw.txt /*network* new-5 version5.txt /*new-5* new-6 version6.txt /*new-6* +new-7 version7.txt /*new-7* new-GTK-GUI version5.txt /*new-GTK-GUI* new-Select-mode version5.txt /*new-Select-mode* new-View version6.txt /*new-View* @@ -5387,6 +5393,7 @@ new-cmdwin version6.txt /*new-cmdwin* new-color-schemes version6.txt /*new-color-schemes* new-commands version5.txt /*new-commands* new-commands-5.4 version5.txt /*new-commands-5.4* +new-data-types version7.txt /*new-data-types* new-debug-itf version6.txt /*new-debug-itf* new-debug-mode version6.txt /*new-debug-mode* new-diff-mode version6.txt /*new-diff-mode* @@ -5405,6 +5412,7 @@ new-global-values version6.txt /*new-global-values* new-highlighting version5.txt /*new-highlighting* new-indent-flex version6.txt /*new-indent-flex* new-items-6 version6.txt /*new-items-6* +new-items-7 version7.txt /*new-items-7* new-line-continuation version5.txt /*new-line-continuation* new-multi-byte version5.txt /*new-multi-byte* new-multi-lang version6.txt /*new-multi-lang* @@ -5794,6 +5802,7 @@ setbufvar() eval.txt /*setbufvar()* setcmdpos() eval.txt /*setcmdpos()* setline() eval.txt /*setline()* setreg() eval.txt /*setreg()* +setting-guifont gui.txt /*setting-guifont* setwinvar() eval.txt /*setwinvar()* sftp pi_netrw.txt /*sftp* sgml-syntax syntax.txt /*sgml-syntax* @@ -6387,6 +6396,7 @@ version-variable eval.txt /*version-variable* version4.txt version4.txt /*version4.txt* version5.txt version5.txt /*version5.txt* version6.txt version6.txt /*version6.txt* +version7.txt version7.txt /*version7.txt* vi-differences vi_diff.txt /*vi-differences* vi: options.txt /*vi:* vi_diff.txt vi_diff.txt /*vi_diff.txt* diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index c8b9576f6..00d94c1c0 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*todo.txt* For Vim version 7.0aa. Last change: 2004 Jun 13 +*todo.txt* For Vim version 7.0aa. Last change: 2004 Jun 16 VIM REFERENCE MANUAL by Bram Moolenaar @@ -30,22 +30,241 @@ be worked on, but only if you sponsor Vim development. See |sponsor|. *known-bugs* -------------------- Known bugs and current work ----------------------- -GTK2: font dialog uses font size zero when 'guifont' is "Courier". Patch from -Yasuhiro Matsumoto, 2004 June 8. +This example doesn't work: + :e `=foo . ".c" ` +Inside `` don't use " as the start of a comment. +Also don't expand % or #. -Python indent: # aser: still adds extra indent. +Corrections for docs from A3. Skip ones already done. For version 7.0: - Include many PATCHES: + 9 Win32 GuI: The print dialog uses a font which doesn't display multi-byte + messages. Include patch from Vipin Aravind? Update from Yasuhiro + Matsumoto. + 8 ":winpos" doesn't work. Patch from Vipin Aravind. + 8 Add GTK 2.3 file dialog support. Patch by Grahame Bowland, 2004 Mar 15, + but it doesn't use "initdir" or "dflt". (will update patch) + 8 On Sinix SYS_NMLN isn't defined. Include patch from Cristiano De + Michele. He no longer has such a machine. + 8 Add file locking. Lock a file when starting to edit it with flock() or + fcntl(). This patch has advisory file locking while reading/writing + the file: ~/vim/patches/kahn_file_locking . + Do we still want this/ + 8 Add buffer-local autocommands? Reduces overhead for autocommands that + trigger often (inserting a character, switching mode). + :au Event <buffer> do-something + E.g.: + :au BufEnter <buffer> menu enable ... + :au BufLeave <buffer> menu disable ... + Patch from Yakov Lerner, including test (2004 Jan 7). + He'll send updated patch. + Autocommands: + VimResized - When the Vim window has been resized (SIGWINCH) + patch from Yakov Lerner, 2003 July 24. + He'll write documentation and send updated patch. - Include the kvim patch. http://freenux.org/vim/ (Mickael Marchand) Do not add Qtopia yet, it doesn't work very well. + Mickael will update the patch before 21st. + --- responses above + 7 Make "5dd" on last-but-one-line not delete anything (Vi compatible). + Add flag in 'cpoptions' for this. When not present, "2dd" in the last + line should delete the last line. Patch from greenx 2002 Apr 11. + 8 Accelerators don't work in a dialog. Include patch from Martin Dalecki + (Jan 3, tested by David Harrison). Should work with Alt-o then. + 7 Use accelerators for the Motif file selection dialog. Patch from + Martin Dalecki 2002 Jan 11. + 8 Add a few more command names to the menus. Patch from Jiri Brezina + (28 feb 2002). + 8 Patch to add 'transparency' option. Disadvantage: it's slow. (Eckehard + Berns, 2004 May 9) http://ecki.to/vim-icns/TransBack.diff + 8 Patches from "Rain Dog" Cucka: + - guifont selector (2002 Dec 15) + - scrollbar (2002 Dec 8) + - Quartz fonts (2002 Dec 8) + 7 ATTENTION dialog choices are more logical when "Delete it' appears + before "Quit". Patch by Robert Webb, 2004 May 3. + 8 Unix: When libcall() fails there is no clear error message. Johannes + Zellner has a patch for this. + 8 ":hardcopy": + - Patch to append CTRL-D to PostScript output (Mike Williams, 2004 Jun + 14) + - support printing multi-byte characters. Patch from Motonobu + Ichimura. New (better) patch from Mike Williams (2004 Jan 20) + 9 Merge in ideas from ~/vim/patches/tutor.txt (Gabriel Zachmann) + 8 Add patch from Muraoka Taro (Mar 16) to support input method on Mac? + - Include flipcase patch: ~/vim/patches/wall.flipcase2 ? Make it work + for multi-byte characters. + 7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ): + 'flipcase' variable: upper/lowercase pairs. + Insert comma's between pairs and allow a range, make it look like + 'isfname'. E.g. ":set flipcase=a-zA-Z,xX,23-33:143-153". The colon to + separate the from and to part is optional. + - Win32: add options to print dialog. Patch from Vipin Aravind. + - Patch to add highlighting for whitespace. (Tom Schumm, 2003 Jul 5) + use the patch that keeps using HLF_8 if HLF_WS has not + been given values. + Add section in help files for these highlight groups? + 8 "fg" and "bg" don't work in an xterm. Get default colors from xterm + with an ESC sequence. Ideas in: ~/vim/patches/vikas.xtermcolors . + 7 Add "DefaultFG" and "DefaultBG" for the colors of the menu. (Martin + Dalecki has a patch for Motif) + - Add possibility to highlight specific columns (for Fortran). Or put a + line in between columns (e.g. for 'textwidth'). + Patch to add 'hlcolumn' from Vit Stradal, 2004 May 20. + 9 Add cursor-column highlighting. Enable it with 'cursorcolumn' option, + set highlighting with "CursorColumn" group. Useful for aligning text. + Also cursor-row highlighting. Patch from Yasuhiro Matsumoto for + underlining the cursor line, 2004 Mar 24. + Alternatie: when 'number' is set highlight the number of the current + line. + 7 Be able to call a function while passing on a variable number of + arguments: + :function Foo(abc, ...) + : call Bar(a:abc, a:*) + Charles Campbell has a patch for this + 8 Add ":n" to fnamemodify(): normalize path, remove "../" when possible. + Aric Blumer has a patch for this. + 8 Add functions: + tr(expr, from, to) translate chars (Patch from Ron Aaron, Apr 8 + 2004) + strrep() Repeat a string (patch from Christophe Poucet, + 2003 Sep 12, also contains XX) + Alt: repeat(expr, count) werkt ook voor lists. + mousex() mousey() get position of mouse pointer (patch by Ross + Presser) + He will send a new patch. + Is this really useful? + --- + multibyteidx(string, idx) Byte index in multi-byte character. + Patch by Ilya Sher, 2004 Feb 25 + menuprop({name}, {idx}, {what}) + Get menu property of menu {name} item {idx}. + menuprop("", 1, "name") returns "File". + menuprop("File", 1, "n") returns "nmenu + File.Open..." argument. + Patch by Ilya Sher, 2004 Apr 22 + mapname({idx}, mode) return the name of the idx'th mapping. + Patch by Ilya Sher, 2004 Mar 4. + match({pat}, {string} [,start] [,count]) get index of count'th match + Patch by Ilya Sher, 2004 Mar 31 + find() find file in 'path' (patch from Johannes + Zellner 2001 Dec 20) + realname() Get user name (first, last, full) + user_fullname() patch by Nikolai Weibull, Nov + 3 2002) + getfperm() file permissions, in form "rwxrwxrwx" + (patch from Nikolai Weibull 2003 Jan 13) + getftype() "file", "dir", "link", "other"? + (patch from Nikolai Weibull 2003 Jan 13) + setbufline() set line in any buffer (patch from Yegappan + Lakshmanan, 2003 Jan 21) + winnr("$") Get number of windows. (patch from Nikolai + Weibull 2003 Jan 13) (another patch from + Yegappan Lakshmanan, 2003 Aug 31) + search() Add optional offset argument. + Add 'n' flag. (patch from Nikolai Weibull + 2003 Jan 13) + confirm() add "flags" argument, with 'v' for vertical + layout and 'c' for console dialog. (Haegg) + Flemming Madsen has a patch for the 'c' flag + (2003 May 13) + system({cmd}, {expr}) Filter {expr} through the shell command + {cmd} and return the result. + (Patch from Yegappan Lakshmanan) + raisewin() raise gvim window (see HierAssist patch for + Tcl implementation ~/vim/HierAssist/ ) + gettext() Translate a message. (Patch from Yasuhiro + Matsumoto) How to get the messages into the + .po files? + 7 Add "nbsp" in 'listchars'? Patch from David Blanchet, 2003 Jul 28. + 7 Add patch from Benoit Cerrina to integrate Vim and Perl functions + better. Now also works for Ruby (2001 Nov 10) + 7 Add 'taglistfiles' option, show file name and type when listing matching + tags name with CTRL-D completion. Patch from Yegappan Lakshmanan. + 7 Motif: use the menu font consistently. Patch from Martin Dalecki 2002 + Jan 11. + - Motif: add 3D shading for the menu entries? Patch from Martin Dalecki. + 8 Add expression-expansion, so that the user can define his own kind of + completion. Patch from Taro Muraoka, 2003 Aug 26. + 7 Completion of network shares, patch by Yasuhiro Matsumoto. + 9 When 'autoindent' is set, hitting <CR> twice, while there is text after + the cursor, doesn't delete the autoindent in the resulting blank line. + (Rich Wales) This is Vi compatible, but it looks like a bug. Rich has + a suggestion for a patch to fix this. + e-mail to Rich bounced. + 7 Make ":startinsert" command work directly for functions and scripts? + Also make it possible to append (it's difficult at end of line). + And add ":startreplace" (patch by Charles Campbell, 2004 Jan 9, + http://www.erols.com/astronaut/vim/index.html#Patch) + 8 Text objects: Add "a'" and 'a"': a single or double quoted string. + (Tim Chase) Patch from Taro Muraoka (2003 Dec 16). + 7 For Visual mode: Command to do a search for the string in the marked + area. Only when fewer than two lines. Use "g/" and "gb". Patch from + Yegappan Lakshmanan. + 7 When 'rightleft' is set, the search pattern should be displayed right + to left as well? See patch of Dec 26. (Nadim Shaikli) + 8 Add patch from Charles Campbell to have ":0file!" remove the name of + the current buffer. (2003 June 17) + 8 Make it possible to delete marks. Charles Campbell has a patch that + does this with the markclear() function (2004 Jan 9). And the + ":delmark" command (2004 Feb 9) + 7 Win32: Add patch for 5-button mouse. (Michael Geddes 2001 Nov 26) + 8 Lock all used memory so that it doesn't get swapped to disk (uncrypted). + Patch by Jason Holt, 2003 May 23. + 7 Support a stronger encryption. Jason Holt implemented AES (May 6 2003). + 7 Add ! register, for shell commands. (patch from Grenie) + 7 Add the MzScheme interface. Patch on http://iamphet.nm.ru/scheme/ + (Sergey Khorev) + 8 Make 'statusline' local, so that each window can have a different + value. But should it also be local to a buffer? (Yegappan Lakshmanan + has a patch, 2002 feb 15) + 8 In the gzip plugin, also recognize *.gz.orig, *.gz.bak, etc. Like it's + done for filetype detection. Patch from Walter Briscoe, 2003 Jul 1. + 7 Add a "-@ filelist" argument: read file names from a file. (David + Kotchan has a patch for it) + 8 Add term entries for function keys on xterm with alt and ctrl (new in + pl 94). E.g., Control adds ";5" in "<Esc>[20;5~". Find a generic way + to prepend a modifier in console mode, to avoid having to specify each + individual modified key. + Steve Wall has a patch (2002 Mar 12) for adding function keys up to 37, + with modifiers. + 8 Include a connection to an external program through a pipe? See + patches from Felbinger for a mathematica interface. + Or use emacs server kind of thing? + 7 Add an option to set the width of the 'number' column. Eight + positions is often more than needed. Or adjust the width to the + length of the file? + Add patch that adds 'numberlen' option. (James Harvey) + Other patch with min and max from Emmanuel Renieris (2002 Jul 24) + Other patch without an option by Gilles Roy (2002 Jul 25) + 7 Add ":justify" command. Patch from Vit Stradal 2002 Nov 25. + - findmatch() should be adjusted for Lisp. See remark at + get_lisp_indent(). Esp. \( and \) should be skipped. (Dorai Sitaram, + incomplete patch Mar 18) + 8 Sorting of filenames for completion is wrong on systems that ignore + case of filenames. Add 'ignorefncase' option. When set, case in + filenames is ignored for sorting them. Patch by Mike Williams: + ~/vim/patches/ignorefncase. Also change what matches? Or use another + option name. +- Change ga_room into ga_maxlen, so that it doesn't need to be + incremented/decremented each time. - new DATA TYPES: lists, dictionaries and function references. + Check old patch from Robert Webb for array support. Add type checking? See ~/vim/ideas.txt. - Add SPELLCHECKER, with easy to add support for many languages. + 8 Add spell checking. Use "ispell -a" somehow. + ~/vim/patches/wm_vim-5_4d.zip can be used as an example (includes + ispell inside Vim). Gautam Iyer has an example with "aspell". + "engspchk" from Charles Campbell is a good way. Support for + approximate-regexps will help (agrep http://www.tgries.de/agrep/). - REFACTORING: The main() function is very long. Move parts to separate functions, especially loops. Ideas from Walter Briscoe (2003 Apr 3, 2004 Feb 9). +- Improve the interface between the generic GUI code and the system-specific + code. Generic code handles text window with scrollbars, system-specific + code menu, toolbar, etc. - Store messages to allow SCROLLING BACK for all commands. And other "less" like commands. - "INTELLISENSE". First cleanup the Insert-mode completion. @@ -81,6 +300,7 @@ For version 7.0: - STICKY CURSOR: Add a way of scrolling that leaves the cursor where it is. Especially when using the scrollbar. Typing a cursor-movement command scrolls back to where the cursor is. +8 Support four composing characters, needed for Hebrew. (Ron Aaron) Vi incompatibility: @@ -135,9 +355,6 @@ Vi incompatibility: (Sayre). 7 Add flag in 'cpoptions' that makes operator (yank, filter) not move the cursor, at least when cancelled. (default Vi compatible). -7 Make "5dd" on last-but-one-line not delete anything (Vi compatible). - Add flag in 'cpoptions' for this. When not present, "2dd" in the last - line should delete the last line. Patch from greenx 2002 Apr 11. 7 This Vi-trick doesn't work: "Q" to go to Ex mode, then "g/pattern/visual". In Vi you can edit in visual mode, and when doing "Q" you jump to the next match. Nvi can do it too. @@ -210,8 +427,6 @@ Win32 GUI known bugs: Put focus event in input buffer and let generic Vim code handle it? 8 When activating the Vim window with mouse click, don't move cursor to mouse position. Catch WM_MOUSEACTIVATE. (Luevelsmeyer) -9 The print dialog uses a font which doesn't display multi-byte messages. - Include patch from Vipin Aravind? Update from Yasuhiro Matsumoto. 8 Win32: When mouse is hidden and in the toolbar, moving it won't make it appear. (Sami Salonen) 8 Windows NT: writing to aux.* makes Vim hang. (Acevedo) @@ -311,10 +526,6 @@ Athena GUI: Motif GUI: 8 Popup menu ordering is wrong. -8 Accelerators don't work in a dialog. Include patch from Martin Dalecki - (Jan 3, tested by David Harrison). Should work with Alt-o then. -7 Use accelerators for the Motif file selection dialog. Patch from Martin - Dalecki 2002 Jan 11. 7 Use XmStringCreateLocalized() instead of XmStringCreateSimple()? David Harrison says it's OK (it exists in Motif 1.2). 8 The texts in the find/replace dialog don't use the right font. @@ -344,7 +555,6 @@ GUI: doesn't work. 8 Menu priority for sub-menus for: Amiga, BeOS. 8 Add menu separators for Amiga, RISCOS. -8 Add a few more command names. Patch from Jiri Brezina (28 feb 2002). 8 Add way to specify the file filter for the browse dialog. At least for browse(). 8 Add dialog for search/replace to other GUIs? Tk has something for this, @@ -491,7 +701,6 @@ Win32 console: a Netware network drive. Use same function as for Win32 GUI? 8 In os_win32.h, HAVE_STRICMP and HAVE_STRNICMP are defined only if __GNUC__ is not defined. Shouldn't that be the other way around? -8 ":winpos" doesn't work. Patch from Vipin Aravind. 7 Use SetConsoleCP() and SetConsoleOutputCP() to implement 'termencoding'? Avoids that input and output work differently. Need to be restored when exiting. @@ -516,12 +725,6 @@ Macintosh: 8 Inputting Unicode characters does not work in the terminal. They appear to arrive as upper and lower bytes. (David Brown, 2004 April 17) 8 Typing Unicode characters doesn't work at all in the GUI. -8 Patch to add 'transparency' option. Disadvantage: it's slow. (Eckehard - Berns, 2004 May 9) http://ecki.to/vim-icns/TransBack.diff -8 Patches from "Rain Dog" Cucka: - - guifont selector (2002 Dec 15) - - scrollbar (2002 Dec 8) - - Quartz fonts (2002 Dec 8) 9 Problems in Carbon version for OS X: (Benji Fisher) - keyboard shortcuts in the menus get lost. 8 The Vim/About menu doesn't work. @@ -563,8 +766,6 @@ Macintosh: when compiled with Python (threading). 7 The messages for "vim --help" and "vim --version" don't use 'termencoding'. -7 ATTENTION dialog choices are more logical when "Delete it' appears before - "Quit". Patch by Robert Webb, 2004 May 3. 8 When 'scrollbind' is set, a window won't scroll horizontally if the cursor line is too short. Add a word in 'scrollopt' to allow moving the cursor to longer line that is visible. A similar thing is done for the GUI when @@ -651,8 +852,6 @@ Macintosh: 9 The "Error detected while processing modelines" message should have an error number. 7 The message in bt_dontwrite_msg() could be clearer. -8 Unix: When libcall() fails there is no clear error message. Johannes - Zellner has a patch for this. 8 The script ID that is stored with an option and displayed with ":verbose set" isn't reset when the option is set internally. For example when 'foldlevel' is set from 'foldlevelstart'. @@ -678,13 +877,10 @@ Macintosh: 8 When using CTRL-D after ":help", restrict the number of matches to a thousand, otherwise using CTRL-D without an argument takes too long. 8 ":hardcopy": - - Patch to append CTRL-D to PostScript output (Mike Williams, 2004 Jun 11) - Using the cterm_color[] table is wrong when t_colors is > 16. - Need to handle unprintable characters. - Win32: On a B&W printer syntax highlighting isn't visible. Perform dithering to make grey text? - - support printing multi-byte characters. Patch from Motonobu Ichimura. - New (better) patch from Mike Williams (2004 Jan 20) - Add a flag in 'printoptions' to add an empty page to make the total number even. "addempty"? (Mike Williams) - Should interpreted CTRL-L as a page break. @@ -817,7 +1013,6 @@ Macintosh: it. (Lohner) Try out with "vt100" entry, cm replaced with cX. 7 When an include file starts with "../", the check for already visiting this file doesn't work. Need to simplify the file name. -8 On Sinix SYS_NMLN isn't defined. Include patch from Cristiano De Michele. 7 The names and comments for the arguments of do_browse() are confusing. "dflt" isn't the default file name when "initdir" is not NULL and "initdir" is the default path to be used. @@ -927,7 +1122,6 @@ Problems that will (probably) not be solved: Documentation: 8 Extend usr_27.txt a bit. (Adam Seyfarth) -9 Merge in ideas from ~/vim/patches/tutor.txt (Gabriel Zachmann) 7 Add a section on debugging scripts in the user manual. 9 Make the Reference Manual more precise. For each command mention: - change to cursor position and curswant @@ -989,9 +1183,6 @@ User Friendlier: disabling it. Be careful that tear-offs don't disappear (keep one empty item?). Alternative: use BufEnter and BufLeave autocommands. -8 Add file locking. Lock a file when starting to edit it with flock() or - fcntl(). This patch has advisory file locking while reading/writing the - file: ~/vim/patches/kahn_file_locking . 8 make a vimtutor script for Amiga and other systems. 7 Add the arguments for configure to the ":version" output? @@ -1065,14 +1256,10 @@ Multi-byte characters: so that the user can fix the problem. 8 Add configure option to be able to disable using the iconv library. (Udo Schweigert) -8 Add patch from Muraoka Taro (Mar 16) to support input method on Mac? 9 'aleph' should be set to 1488 for Unicode. (Zvi Har'El) 8 Should add test for using various commands with multi-byte characters. -- Include flipcase patch: ~/vim/patches/wall.flipcase2 ? Make it work for - multi-byte characters. 8 'infercase' doesn't work with multi-byte characters. 8 toupper() function doesn't handle byte count changes. -8 Support four composing characters, needed for Hebrew. (Ron Aaron) 8 "ga" should show all composing characters, also if there are more than 2. 7 When searching, should order of composing characters be ignored? 8 Should implement 'delcombine' for command line editing. @@ -1122,7 +1309,6 @@ Printing: - Win32: when 'printfont' is empty use 'guifont'. - Unix: Use some dialog box to do the obvious settings (paper size, printer name, portrait/landscape, etc). -- Win32: add options to print dialog. Patch from Vipin Aravind. - PostScript: only works for 7-bit ASCII and EBCDIC. Should support different 'encoding' values somehow. - Allow specifying the paper size, instead of using a standard size. Same @@ -1133,10 +1319,6 @@ Printing: Syntax highlighting: -- Patch to add highlighting for whitespace. (Tom Schumm, 2003 Jul 5) - use the patch that keeps using HLF_8 if HLF_WS has not - been given values. - Add section in help files for these highlight groups? 8 Make ":syn off" use 'runtimepath' instead of $VIMRUNTIME. (Gary Johnson) Should do the same for ":syn on" and ":syn manual". 8 Support "containedin" argument for ":syn include", so that the defined @@ -1184,8 +1366,6 @@ Syntax highlighting: re-insert the [] if possible. 8 Make it possible to use color of text for Visual highlight group (like for the Cursor). -8 "fg" and "bg" don't work in an xterm. Get default colors from xterm with - an ESC sequence. Ideas in: ~/vim/patches/vikas.xtermcolors . 8 Make it possible to only highlight a sub-expression of a match. Like using "\1" in a ":s" command. 8 Support for deleting syntax items: @@ -1204,8 +1384,6 @@ Syntax highlighting: character. For Visual mode. (xterm-selection already does this). 8 Highlight non-printable characters with "SpecialChar", linked to "Special". Display them with the digraph characters, if possible. -7 Add "DefaultFG" and "DefaultBG" for the colors of the menu. (Martin - Dalecki has a patch for Motif) 8 Highlight the clipboard-selection with a highlight group. 8 Be able to reset highlighting to its original (default) values. 7 Be able to write current highlighting to a file as commands, similar to @@ -1236,11 +1414,6 @@ Syntax highlighting: 7 CTRL-] checks the highlight group for finding out what the tag is. 7 Add an explanation how a list of words can be used to highlight misspelled words. -8 Add spell checking. Use "ispell -a" somehow. - ~/vim/patches/wm_vim-5_4d.zip can be used as an example (includes ispell - inside Vim). Gautam Iyer has an example with "aspell". "engspchk" from - Charles Campbell is a good way. Support for approximate-regexps will help - (agrep http://www.tgries.de/agrep/). 7 Command line completion for ":find" should search in 'path'. 8 Add more command line completion for :syntax. 8 Add more command line completion for :highlight. @@ -1267,9 +1440,6 @@ Syntax highlighting: - Make it possible to add "contains" items for all items in a group. Useful when extending an already existing syntax file. - Add line-continuation pattern for non-syncing items too? -- Add possibility to highlight specific columns (for Fortran). Or put a - line in between columns (e.g. for 'textwidth'). - Patch to add 'hlcolumn' from Vit Stradal, 2004 May 20. - Add possibility to highlight the whole line, including the right margin (for comment blocks). - Add 'hlmatch' option: List of flags: @@ -1303,11 +1473,6 @@ Built-in script language: 8 Allow range for ":exec". Pass it on to the executed command. (Webb) 8 exists("&&option") tests if 'option' is actually implemented. Useful for 'shellslash', for example. -7 Be able to call a function while passing on a variable number of - arguments: - :function Foo(abc, ...) - : call Bar(a:abc, a:*) - Charles Campbell has a patch for this 8 Have a look at VSEL. Would it be useful to include? (Bigham) 8 Add ":fungroup" command, to group function definitions together. When encountered, all functions in the group are removed. Suggest using an @@ -1329,26 +1494,10 @@ Built-in script language: file belongs to a sourced script? 7 Add "n" flag to search() function, just like searchpair(). (Alexey Marinichev) -8 Add ":n" to fnamemodify(): normalize path, remove "../" when possible. - Aric Blumer has a patch for this. 7 Add argument to winwidth() to subtract the space taken by 'foldcolumn', signs and/or 'number'. 8 Add functions: - multibyteidx(string, idx) Byte index in multi-byte character. - Patch by Ilya Sher, 2004 Feb 25 - menuprop({name}, {idx}, {what}) - Get menu property of menu {name} item {idx}. - menuprop("", 1, "name") returns "File". - menuprop("File", 1, "n") returns "nmenu - File.Open..." argument. - Patch by Ilya Sher, 2004 Apr 22 - mapname({idx}, mode) return the name of the idx'th mapping. - Patch by Ilya Sher, 2004 Mar 4. - match({pat}, {string} [,start] [,count]) get index of count'th match - Patch by Ilya Sher, 2004 Mar 31 sprintf(format, arg, ..) How to prevent a crash??? - mousex() mousey() get position of mouse pointer (patch by Ross - Presser) attributes() return file protection flags "drwxrwxrwx" mkdir(dir) Create directory copy(from, to) Copy a file @@ -1360,48 +1509,15 @@ Built-in script language: Visual block mode. tagtype(tag) get type of tag (also checks if it exists) getacp() Win32: get codepage (Glenn Maynard) - tr(expr, from, to) translate chars (Patch from Ron Aaron, Apr 8 - 2004) - find() find file in 'path' (patch from Johannes - Zellner 2001 Dec 20) - realname() Get user name (first, last, full) - user_fullname() patch by Nikolai Weibull, Nov - 3 2002) - getfperm() file permissions, in form "rwxrwxrwx" - (patch from Nikolai Weibull 2003 Jan 13) - getftype() "file", "dir", "link", "other"? - (patch from Nikolai Weibull 2003 Jan 13) - setbufline() set line in any buffer (patch from Yegappan - Lakshmanan, 2003 Jan 21) getbufline() get line from any buffer deletebufline() delete line in any buffer appendbufline() append line in any buffer - winnr("$") Get number of windows. (patch from Nikolai - Weibull 2003 Jan 13) (another patch from - Yegappan Lakshmanan, 2003 Aug 31) - search() Add optional offset argument. - Add 'n' flag. (patch from Nikolai Weibull - 2003 Jan 13) sort() Sort a newline-separated string. Also: ":sort". libcall() Allow more than one argument. libcallext() Like libcall(), but using a callback function to allow the library to execute a command or evaluate an expression. - confirm() add "flags" argument, with 'v' for vertical - layout and 'c' for console dialog. (Haegg) - Flemming Madsen has a patch for the 'c' flag - (2003 May 13) - system({cmd}, {expr}) Filter {expr} through the shell command - {cmd} and return the result. - (Patch from Yegappan Lakshmanan) - raisewin() raise gvim window (see HierAssist patch for - Tcl implementation ~/vim/HierAssist/ ) - gettext() Translate a message. (Patch from Yasuhiro - Matsumoto) How to get the messages into the - .po files? - strrep() Repeat a string (patch from Christophe Poucet, - 2003 Sep 12, also contains XX) char2hex() convert char string to hex string. XX hex2char() convert hex string to char string. XX 7 Make bufname("'0") return the buffer name from mark '0. How to get the @@ -1440,12 +1556,6 @@ Built-in script language: 7 Automatically load a function from a file when it is called. Need an option for the search path. (Sekera) 7 Persistent variables: "p:var"; stored in viminfo file and sessions files. -7 Include support for arrays? Patch from Robert Webb. - This is restricted to fixed-size arrays indexed by number. Better: Use - associative arrays: a[5] = 3, a["some"] = 'x'. Implement by translating - into ordinary variables: a[5] is "-a-5", a["some"] is "a-some", a[5][6] is - "a-5-6". But how to do array assignment and concatenation? - Alternative: use dictionaries, like Python. Robustness: @@ -1617,7 +1727,6 @@ Screen updating: an event handler where ":normal" can't be used. Also useful when 'lazyredraw' is set in a mapping. 7 Make 'list' and 'linebreak' work together. -7 Add "nbsp" in 'listchars'? Patch from David Blanchet, 2003 Jul 28. Scrolling: @@ -1655,8 +1764,6 @@ Autoconf: Perl interface: 8 Rename typemap file to something else? -7 Add patch from Benoit Cerrina to integrate Vim and Perl functions better. - Now also works for Ruby (2001 Nov 10) 7 Make buffers accessed as Perl arrays. (Clark) 7 Make it possible to compile with non-ANSI C? 6 Tcl/Tk has the "load" command: load a shared library (.so or .dll). @@ -1710,8 +1817,6 @@ Tags: 7 Better support for jumping to where a function or variable is used. Use the id-utils, with a connection to "gid" (Emacs can do it too). Add ":idselect", which uses an "ID" database (made by "mkid") like "tselect". -7 Add 'taglistfiles' option, show file name and type when listing matching - tags name with CTRL-D completion. Patch from Yegappan Lakshmanan. Security: @@ -1758,8 +1863,6 @@ Win32 GUI: GUI: -8 Add GTK 2.3 file dialog support. Patch by Grahame Bowland, 2004 Mar 15, - but it doesn't use "initdir" or "dflt". 8 Make inputdialog() work for Photon, Amiga, RiscOS. - <C--> cannot be mapped. Should be possible to recognize this as a normal "-" with the Ctrl modifier. @@ -1781,8 +1884,6 @@ GUI: explicit. There are too many #ifdefs in gui.c. If possible, separate the Vim code completely from the GUI code, to allow running them in separate processes. -8 Support a background bitmap. Useful for marking a column. Patch from - Heather Downs (GTK) and Vince Negri (Win32). 7 X11: Support cursorColor resource and "-cr" argument. 8 X11 (and others): CTRL-; is not different from ';'. Set the modifier mask to include CTRL for keys where CTRL produces the same ASCII code. @@ -1793,8 +1894,6 @@ GUI: 8 Selecting font names in X11 is difficult, make a script or something to select one. Martin Dalecki has a font selector for Motif, but it needs a bit more work. -7 Motif: use the menu font consistently. Patch from Martin Dalecki 2002 Jan - 11. 8 Visual highlighting should keep the same font (bold, italic, etc.). 8 Add flag to 'guioptions' to not put anything in the clipboard at all? 8 Should support a way to use keys that we don't recognize yet. Add a @@ -1838,7 +1937,6 @@ GUI: button selected, <Esc> should close the dialog. - Motif steals <F10> from us, to pop up menus with the keyboard. How do we get it back if we want it? -- Motif: add 3D shading for the menu entries? Patch from Martin Dalecki. - Paste in Insert mode should not do autowrap etc. Or maybe this should be changeable with an option? - Put a nice picture in the icon (but how do we do that?). @@ -1898,13 +1996,6 @@ Autocommands: 8 When editing "tt.gz", which is in DOS format, 'fileformat' stays at "unix", thus writing the file changes it. Somehow detect that the read command used dos fileformat. Same for 'fileencoding'. -8 Add buffer-local autocommands? Reduces overhead for autocommands that - trigger often (inserting a character, switching mode). - :au Event <buffer> do-something - E.g.: - :au BufEnter <buffer> menu enable ... - :au BufLeave <buffer> menu disable ... - Patch from Yakov Lerner, including test (2004 Jan 7). - Add events to autocommands: Error - When an error happens NormalEnter - Entering Normal mode @@ -1937,8 +2028,6 @@ Autocommands: that marks can be updated. HierAssist has patch to add BufChangePre, BufChangePost and RevertBuf. (Shah) WinResized - When a window has been resized - VimResized - When the Vim window has been resized (SIGWINCH) - patch from Yakov Lerner, 2003 July 24. - Add autocommand to be executed every so many seconds? For writing the file now and then ('autosave'). *'autosave'* *'as'* *'noautosave'* *'noas'* @@ -1961,8 +2050,6 @@ Insert mode completion/expansion: 8 Add option to set different behavior for Insert mode completion: - ignore/match case - different characters than 'iskeyword' -8 Add expression-expansion, so that the user can define his own kind of - completion. Patch from Taro Muraoka, 2003 Aug 26. 8 Add a command to undo the completion, go back to the original text. 8 Use the class information in the tags file to do context-sensitive completion. After "foo." complete all member functions/variables of @@ -2045,7 +2132,6 @@ Command line completion: file name, so it can be edited. Also with modifiers, such as "%:h". 8 When completing command names, either sort them on the long name, or list them with the optional part inside []. -7 Completion of network shares, patch by Yasuhiro Matsumoto. 7 Completion of ":map x ": fill in the current mapping, so that it can be edited. (Sven Guckes) 7 Add completion for when entering an expression after CTRL-R= and "=. @@ -2083,10 +2169,6 @@ Command line history: Insert mode: -9 When 'autoindent' is set, hitting <CR> twice, while there is text after - the cursor, doesn't delete the autoindent in the resulting blank line. - (Rich Wales) This is Vi compatible, but it looks like a bug. Rich has a - suggestion for a patch to fix this. 8 When using CTRL-O in Insert mode, then executing an insert command "a" or "i", should we return to Insert mode after <Esc>? (Eggink) Perhaps it can be allowed a single time, to be able to do @@ -2094,10 +2176,6 @@ Insert mode: ":map <F2> 5aabc<Esc>" works only once from Insert mode. 7 Use CTRL-G <count> to repeat what follows. Useful for inserting a character multiple times or repeating CTRL-Y. -7 Make ":startinsert" command work directly for functions and scripts? - Also make it possible to append (it's difficult at end of line). - And add ":startreplace" (patch by Charles Campbell, 2004 Jan 9, - http://www.erols.com/astronaut/vim/index.html#Patch) 7 Use 'matchpairs' for 'showmatch': When inserting a character check if it appears in the rhs of 'matchpairs'. - In Insert mode (and command line editing?): Allow undo of the last typed @@ -2261,8 +2339,6 @@ Text objects: deletes the current and previous sentence. (Jens Paulus) 7 Add "g{" and "g}" to move to the first/last character of a paragraph (instead of the line just before/after a paragraph as with "{" and "}"). -8 Add "a'" and 'a"': a single or double quoted string. (Tim Chase) - Patch from Taro Muraoka (2003 Dec 16). 6 Ignore comment leaders for objects. Make "das" work in reply-email. 5 Make it possible to use syntax group matches as a text object. For example, define a "ccItem" group, then do "da<ccItem>" to delete one. @@ -2308,7 +2384,7 @@ Visual mode: 7 CTRL-V :s should substitute only in the block, not to whole lines. (David Young is working on this) 7 Filtering a block should only apply to the block, not to the whole lines. - When the number of lines is increased, add lines. When decreased, padd with + When the number of lines is increased, add lines. When decreased, pad with spaces or delete? Use ":`<,`>" on the command line. 8 After filtering the Visual area, make "gv" select the filtered text? Currently "gv" only selects a single line, not useful. @@ -2323,9 +2399,6 @@ Visual mode: the right column, and then use up/down movements to select the line, without changing the column. 6 ":left" and ":right" should work in Visual block mode. -7 For Visual mode: Command to do a search for the string in the marked area. - Only when fewer than two lines. Use "g/" and "gb". Patch from Yegappan - Lakshmanan. 7 CTRL-I and CTRL-O should work in Visual mode, but only jump to marks in the current buffer. 7 CTRL-A and CTRL-X should increase/decrease all numbers in the Visual area. @@ -2460,8 +2533,6 @@ item stack to allow matching (). One side is "push X on search(). (Brett) 7 Add pattern item to use properties of Unicode characters. In Perl it's "\p{L}" for a letter. See Regular Expression Pocket Reference. -7 When 'rightleft' is set, the search pattern should be displayed right to - left as well? See patch of Dec 26. (Nadim Shaikli) 8 Would it be possible to allow ":23,45/pat/flags" to search for "pat" in lines 23 to 45? Or does this conflict with Ex range syntax? 8 Allow identical pairs in 'matchpairs'. Restrict the search to the current @@ -2590,8 +2661,6 @@ Undo: Buffer list: -8 Add patch from Charles Campbell to have ":0file!" remove the name of the - current buffer. (2003 June 17) 7 Command to execute a command in another buffer: ":inbuf {bufname} {cmd}". Also for other windows: ":inwin {winnr} {cmd}". How to make sure that this works properly for all commands, and still be able to return to the @@ -2769,9 +2838,6 @@ Marks: to jump to the mark (in current window or new window). Start it with ":browse marks"? 6 Add a menu that lists the Marks like ":marks". (Amerige) -8 Make it possible to delete marks. Charles Campbell has a patch that does - this with the markclear() function (2004 Jan 9). And the ":delmark" - command (2004 Feb 9) 7 For ":jumps", ":tags" and ":marks", for not loaded buffers, remember the text at the mark. Highlight the column with the mark. 7 Highlight each mark in some way (With "Mark" highlight group). @@ -2855,7 +2921,6 @@ Substitute: Mouse support: -7 Win32: Add patch for 5-button mouse. (Michael Geddes 2001 Nov 26) 8 Add 'o' flag to 'mouse'? 7 Be able to set a 'mouseshape' for the popup menu. 8 Add 'mouse' flag, which sets a behavior like Visual mode, but automatic @@ -2872,9 +2937,6 @@ Mouse support: Crypt and security: 8 Also crypt the swapfile, each block separately. Change mf_write() and mf_read(). How to get b_p_key to these functions? -7 Support a stronger encryption. Jason Holt implemented AES (May 6 2003). -8 Lock all used memory so that it doesn't get swapped to disk (uncrypted). - Patch by Jason Holt, 2003 May 23. Argument list: @@ -2904,7 +2966,7 @@ Registers: to position of previous deleted (to swap foo and bar in " + foo") 8 Should be able to yank and delete into the "/ register. How to take care of the flags (offset, magic)? -7 Add ! register, for shell commands. (patch from Grenie) + Debug mode: 7 Add something to enable debugging when a remote message is received. @@ -2919,8 +2981,6 @@ Debug mode: Various improvements: 8 Add ":rename" command: rename the file of the current buffer and rename the buffer. Buffer may be modified. -7 Add the MzScheme interface. Patch on http://iamphet.nm.ru/scheme/ - (Sergey Khorev) 6 In the quickfix window statusline add the command used to get the list of errors, e.g. ":make foo", ":grep something *.c". 6 Python interface: add vim.message() function. (Michal Vitecek, 2002 Nov 5) @@ -2933,13 +2993,8 @@ Various improvements: to manipulate text without changing the window layout. 8 Add a command to revert to the saved version of file; undo or redo until all changes are gone. -8 Make 'statusline' local, so that each window can have a different value. - But should it also be local to a buffer? (Yegappan Lakshmanan has a patch, - 2002 feb 15) 7 Add a ":cpfile", go in the other direction as ":cnfile". 6 "vim -q -" should read the list of errors from stdin. (Gautam Mudunuri) -8 In the gzip plugin, also recognize *.gz.orig, *.gz.bak, etc. Like it's - done for filetype detection. Patch from Walter Briscoe, 2003 Jul 1. 8 Add "--remote-fail": When contacting the server fails, exit Vim. Add "--remote-self": When contacting the server fails, do it in this Vim. Overrules the default of "--remote-send" to fail and "--remote" to do it @@ -2953,16 +3008,8 @@ Various improvements: CR characters. For example, for "dos" files remove CR characters at the end of the line, so that a file with mixed line endings is cleaned up. To just not display the CR characters: Add a flag to 'display'? -7 Add a "-@ filelist" argument: read file names from a file. (David Kotchan - has a patch for it) 7 Some compilers give error messages in which the file name does not have a path. Be able to specify that 'path' is used for these files. -8 Add term entries for function keys on xterm with alt and ctrl (new in pl - 94). E.g., Control adds ";5" in "<Esc>[20;5~". Find a generic way to - prepend a modifier in console mode, to avoid having to specify each - individual modified key. - Steve Wall has a patch (2002 Mar 12) for adding function keys up to 37, - with modifiers. 7 Xterm sends <Esc>O3F for <M-End>. Similarly for other <M-Home>, <M-Left>, etc. Combinations of Alt, Ctrl and Shift are also possible. Recognize these to avoid inserting the raw byte sequence, handle like the key @@ -2984,26 +3031,13 @@ Various improvements: 8 Support printing on Unix. Can use "lpansi.c" as an example. (Bookout) 8 Add put command that replaces the text under it. Esp. for blockwise Visual mode. -7 Enhance termreponse stuff: Add t_CV(?): pattern of term response, use +7 Enhance termresponse stuff: Add t_CV(?): pattern of term response, use regexp: "\e\[[>?][0-9;]*c", but only check just after sending t_RV. 7 Add "g|" command: move to N'th column from the left margin (after wrapping and applying 'leftcol'). Works as "|" like what "g0" is to "0". -7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ): - 'flipcase' variable: upper/lowercase pairs. - Insert comma's between pairs and allow a range, make it look like - 'isfname'. E.g. ":set flipcase=a-zA-Z,xX,23-33:143-153". The colon to - separate the from and to part is optional. 7 Support setting 'equalprg' to a user function name. -9 Add cursor-column highlighting. Enable it with 'cursorcolumn' option, set - highlighting with "CursorColumn" group. Useful for aligning text. - Also cursor-row highlighting. - Patch from Yasuhiro Matsumoto for underlining the cursor line, 2004 Mar 24. - Alternatie: when 'number' is set highlight the number of the current line. 7 Highlight the characters after the end-of-line differently. 7 When 'whichwrap' contains "l", "$dl" should join lines? -8 Include a connection to an external program through a pipe? See patches - from Felbinger for a mathematica interface. - Or use emacs server kind of thing? 8 Add an argument to configure to use $CFLAGS and not modify it? (Mooney) 8 Enabling features is a mix of configure arguments and defines in feature.h. How to make this consistent? Feature.h is required for @@ -3043,11 +3077,6 @@ Various improvements: 7 Add a history of recently accessed buffer. Maybe make "2 CTRL-^" jump to the 2nd previously visited buffer, "3 CTRL-^" to the third, etc. Or use "3 g CTRL-^" for this? -7 Add an option to set the width of the 'number' column. Eight positions is - often more than needed. Or adjust the width to the length of the file? - Add patch that adds 'numberlen' option. (James Harvey) - Other patch with min and max from Emmanuel Renieris (2002 Jul 24) - Other patch without an option by Gilles Roy (2002 Jul 25) - Add code to disable the CAPS key when going from Insert to Normal mode. - Set date/protection/etc. of the patchfile the same as the original file. - Use growarray for termcodes[] in term.c @@ -3075,7 +3104,6 @@ Various improvements: 9 When using ":w <fname>" it's possible that this file is loaded in another buffer. Give a warning right away, don't wait for a shell command. - Make 'smartcase' work even though 'ic' isn't set (Webb). -7 Add ":justify" command. Patch from Vit Stradal 2002 Nov 25. 7 When formatting text, allow to break the line at a number of characters. Use an option for this: 'breakchars'? Useful for formatting Fortran code. - Add flag to 'formatoptions' to be able to format book-style paragraphs @@ -3101,8 +3129,6 @@ Various improvements: - Make "gq<CR>" work on the last line in the file. Maybe for every operator? 8 findmatchlimit() should be able to skip comments. Solves problem of matching the '{' in /* if (foo) { */ (Fiveash) -- findmatch() should be adjusted for Lisp. See remark at get_lisp_indent(). - Esp. \( and \) should be skipped. (Dorai Sitaram, incomplete patch Mar 18) - Add more redirecting of Ex commands: :redir @> register (append) :redir # bufname @@ -3335,11 +3361,6 @@ Various improvements: - Support mapping for replace mode and "r" command (Vi doesn't do this)? 5 Add 'ignorefilecase' option: Ignore case when expanding file names. ":e ma<Tab>" would also find "Makefile" on Unix. -8 Sorting of filenames for completion is wrong on systems that ignore case - of filenames. Add 'ignorefncase' option. When set, case in filenames is - ignored for sorting them. Patch by Mike Williams: - ~/vim/patches/ignorefncase. Also change what matches? Or use another - option name. 8 Should be able to compile Vim in another directory, with $(srcdir) set to where the sources are. Add $(srcdir) in the Makefile in a lot of places. (Netherton) diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt index 252572d97..8753bfa07 100644 --- a/runtime/doc/various.txt +++ b/runtime/doc/various.txt @@ -1,4 +1,4 @@ -*various.txt* For Vim version 7.0aa. Last change: 2004 May 01 +*various.txt* For Vim version 7.0aa. Last change: 2004 Jun 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -431,7 +431,8 @@ N *+X11* Unix only: can restore window title |X11| *:verb* *:verbose* :[count]verb[ose] {command} Execute {command} with 'verbose' set to [count]. If - [count] is omitted one is used. + [count] is omitted one is used. ":0verbose" can be + used to set 'verbose' to zero. The additional use of ":silent" makes messages generated but not displayed. The combination of ":silent" and ":verbose" can be diff --git a/runtime/indent/python.vim b/runtime/indent/python.vim index 3dbbe10a6..3c030f8d8 100644 --- a/runtime/indent/python.vim +++ b/runtime/indent/python.vim @@ -2,7 +2,7 @@ " Language: Python " Maintainer: Bram Moolenaar <Bram@vim.org> " Original Author: David Bustos <bustos@caltech.edu> -" Last Change: 2003 Sep 08 +" Last Change: 2004 Jun 15 " Only load this indent file when no other was loaded. if exists("b:did_indent") @@ -36,7 +36,7 @@ function GetPythonIndent(lnum) " If the start of the line is in a string don't change the indent. if has('syntax_items') - \ && synIDattr(synID(a:lnum, 1, 1), "name") == "pythonString" + \ && synIDattr(synID(a:lnum, 1, 1), "name") =~ "String$" return -1 endif @@ -56,7 +56,7 @@ function GetPythonIndent(lnum) let parlnum = searchpair('(', '', ')', 'nbW', \ "line('.') < " . (plnum - s:maxoff) . " ? dummy :" \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" - \ . " =~ 'python\\(Comment\\|String\\)'") + \ . " =~ '\\(Comment\\|String\\)$'") if parlnum > 0 let plindent = indent(parlnum) let plnumstart = parlnum @@ -75,14 +75,14 @@ function GetPythonIndent(lnum) let p = searchpair('(', '', ')', 'bW', \ "line('.') < " . (a:lnum - s:maxoff) . " ? dummy :" \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" - \ . " =~ 'python\\(Comment\\|String\\)'") + \ . " =~ '\\(Comment\\|String\\)$'") if p > 0 if p == plnum " When the start is inside parenthesis, only indent one 'shiftwidth'. let pp = searchpair('(', '', ')', 'bW', \ "line('.') < " . (a:lnum - s:maxoff) . " ? dummy :" \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" - \ . " =~ 'python\\(Comment\\|String\\)'") + \ . " =~ '\\(Comment\\|String\\)$'") if pp > 0 return indent(plnum) + &sw endif @@ -102,7 +102,7 @@ function GetPythonIndent(lnum) let col = 0 while col < pline_len if pline[col] == '#' && (!has('syntax_items') - \ || synIDattr(synID(plnum, col + 1, 1), "name") == "pythonComment") + \ || synIDattr(synID(plnum, col + 1, 1), "name") =~ "Comment$") let pline = strpart(pline, 0, col) break endif diff --git a/runtime/lang/menu_ru_ru.koi8-r.vim b/runtime/lang/menu_ru_ru.koi8-r.vim index 94d78a79a..295b016e5 100644 --- a/runtime/lang/menu_ru_ru.koi8-r.vim +++ b/runtime/lang/menu_ru_ru.koi8-r.vim @@ -155,11 +155,12 @@ menutrans Fold\ Met&hod &Метод\ складок menutrans Create\ &Fold<Tab>zf Со&здать\ складку<Tab>zf menutrans &Delete\ Fold<Tab>zd У&далить\ складку<Tab>zd menutrans Delete\ &All\ Folds<Tab>zD Удалить\ вс&е\ складки<Tab>zD -menutrans Fold\ column\ &width &Ширина\ колонки\ складок +menutrans Fold\ col&umn\ width &Ширина\ колонки\ складок ">>>->>>----------- Tools/Folds/Fold Method menutrans M&anual Вру&чную menutrans I&ndent О&тступ menutrans E&xpression &Выражение +menutrans S&yntax &Синтаксис menutrans Ma&rker &Маркеры ">>>--------------- Tools/Diff menutrans &Update О&бновить @@ -177,6 +178,7 @@ menutrans &Show\ filetypes\ in\ menu Показать\ меню\ для\ выбора\ типа\ &файла menutrans Set\ '&syntax'\ only &Изменять\ только\ значение\ 'syntax' menutrans Set\ '&filetype'\ too Изменять\ &также\ значение\ 'filetype' menutrans &Off &Отключить +menutrans &Manual Вру&чную menutrans A&utomatic &Автоматически menutrans on/off\ for\ &This\ file Вкл/выкл\ для\ &этого\ файла menutrans Co&lor\ test Проверка\ &цветов diff --git a/src/Makefile b/src/Makefile index d59f32abe..46a40ad29 100644 --- a/src/Makefile +++ b/src/Makefile @@ -432,7 +432,7 @@ CClink = $(CC) #CONF_OPT_FEAT = --with-features=small #CONF_OPT_FEAT = --with-features=normal #CONF_OPT_FEAT = --with-features=big -#CONF_OPT_FEAT = --with-features=huge +CONF_OPT_FEAT = --with-features=huge # COMPILED BY - For including a specific e-mail address for ":version". #CONF_OPT_COMPBY = "--with-compiledby=John Doe <JohnDoe@yahoo.com>" @@ -493,7 +493,7 @@ CClink = $(CC) # Often used for GCC: mixed optimizing, lot of optimizing, debugging #CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes -#CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wmissing-prototypes +CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wmissing-prototypes #CFLAGS = -O6 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes #CFLAGS = -g -DDEBUG -Wall -Wshadow -Wmissing-prototypes #CFLAGS = -g -O2 -DSTARTUPTIME=\"vimstartup\" -fno-strength-reduce -Wall -Wmissing-prototypes diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 8ec8be71a..3aa463338 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -431,8 +431,7 @@ dbg_parsearg(arg) vim_free(q); if (p == NULL) return FAIL; - bp->dbg_name = fix_fname(p); - vim_free(p); + bp->dbg_name = p; #ifdef MACOS_CLASSIC if (bp->dbg_name != NULL) slash_n_colon_adjust(bp->dbg_name); diff --git a/src/ex_docmd.c b/src/ex_docmd.c index f1331e918..c4b9012ca 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -487,6 +487,62 @@ struct while_cookie static char_u *get_while_line __ARGS((int c, void *cookie, int indent)); static int store_while_line __ARGS((garray_T *gap, char_u *line)); static void free_cmdlines __ARGS((garray_T *gap)); + +/* Struct to save a few things while debugging. Used in do_cmdline() only. */ +struct dbg_stuff +{ + int trylevel; + int force_abort; + except_T *caught_stack; + char_u *vv_exception; + char_u *vv_throwpoint; + int did_emsg; + int got_int; + int did_throw; + int need_rethrow; + int check_cstack; + except_T *current_exception; +}; + +static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp)); +static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp)); + + static void +save_dbg_stuff(dsp) + struct dbg_stuff *dsp; +{ + dsp->trylevel = trylevel; trylevel = 0; + dsp->force_abort = force_abort; force_abort = FALSE; + dsp->caught_stack = caught_stack; caught_stack = NULL; + dsp->vv_exception = v_exception(NULL); + dsp->vv_throwpoint = v_throwpoint(NULL); + + /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */ + dsp->did_emsg = did_emsg; did_emsg = FALSE; + dsp->got_int = got_int; got_int = FALSE; + dsp->did_throw = did_throw; did_throw = FALSE; + dsp->need_rethrow = need_rethrow; need_rethrow = FALSE; + dsp->check_cstack = check_cstack; check_cstack = FALSE; + dsp->current_exception = current_exception; current_exception = NULL; +} + + static void +restore_dbg_stuff(dsp) + struct dbg_stuff *dsp; +{ + suppress_errthrow = FALSE; + trylevel = dsp->trylevel; + force_abort = dsp->force_abort; + caught_stack = dsp->caught_stack; + (void)v_exception(dsp->vv_exception); + (void)v_throwpoint(dsp->vv_throwpoint); + did_emsg = dsp->did_emsg; + got_int = dsp->got_int; + did_throw = dsp->did_throw; + need_rethrow = dsp->need_rethrow; + check_cstack = dsp->check_cstack; + current_exception = dsp->current_exception; +} #endif @@ -625,17 +681,7 @@ do_cmdline(cmdline, getline, cookie, flags) char_u *fname = NULL; /* function or script name */ linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */ int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */ - int saved_trylevel = 0; - int saved_force_abort = 0; - except_T *saved_caught_stack = NULL; - char_u *saved_vv_exception = NULL; - char_u *saved_vv_throwpoint = NULL; - int saved_did_emsg = 0; - int saved_got_int = 0; - int saved_did_throw = 0; - int saved_need_rethrow = 0; - int saved_check_cstack = 0; - except_T *saved_current_exception = NULL; + struct dbg_stuff debug_saved; /* saved things for debug mode */ int initial_trylevel; struct msglist **saved_msg_list = NULL; struct msglist *private_msg_list; @@ -725,21 +771,7 @@ do_cmdline(cmdline, getline, cookie, flags) * exception handling (used when debugging). */ else if (flags & DOCMD_EXCRESET) - { - saved_trylevel = trylevel; trylevel = 0; - saved_force_abort = force_abort; force_abort = FALSE; - saved_caught_stack = caught_stack; caught_stack = NULL; - saved_vv_exception = v_exception(NULL); - saved_vv_throwpoint = v_throwpoint(NULL); - /* Necessary for debugging an inactive ":catch", ":finally", or - * ":endtry": */ - saved_did_emsg = did_emsg, did_emsg = FALSE; - saved_got_int = got_int, got_int = FALSE; - saved_did_throw = did_throw, did_throw = FALSE; - saved_need_rethrow = need_rethrow, need_rethrow = FALSE; - saved_check_cstack = check_cstack, check_cstack = FALSE; - saved_current_exception = current_exception; current_exception=NULL; - } + save_dbg_stuff(&debug_saved); initial_trylevel = trylevel; @@ -1326,22 +1358,7 @@ do_cmdline(cmdline, getline, cookie, flags) * debugger). */ if (flags & DOCMD_EXCRESET) - { - suppress_errthrow = FALSE; - trylevel = saved_trylevel; - force_abort = saved_force_abort; - caught_stack = saved_caught_stack; - (void)v_exception(saved_vv_exception); - (void)v_throwpoint(saved_vv_throwpoint); - /* Necessary for debugging an inactive ":catch", ":finally", or - * ":endtry": */ - did_emsg = saved_did_emsg; - got_int = saved_got_int; - did_throw = saved_did_throw; - need_rethrow = saved_need_rethrow; - check_cstack = saved_check_cstack; - current_exception = saved_current_exception; - } + restore_dbg_stuff(&debug_saved); msg_list = saved_msg_list; #endif /* FEAT_EVAL */ @@ -1545,8 +1562,7 @@ getline_cookie(getline, cookie) */ #if (_MSC_VER == 1200) /* - * Optimisation bug in VC++ version 6.0 - * TODO: check this is still present after each service pack + * Avoid optimisation bug in VC++ version 6.0 */ # pragma optimize( "g", off ) #endif @@ -1738,8 +1754,9 @@ do_one_cmd(cmdlinep, sourcing, break; if (verbose_save < 0) verbose_save = p_verbose; - p_verbose = atoi((char *)ea.cmd); - if (p_verbose == 0) + if (vim_isdigit(*ea.cmd)) + p_verbose = atoi((char *)ea.cmd); + else p_verbose = 1; ea.cmd = p; continue; diff --git a/src/fileio.c b/src/fileio.c index 22339bf8e..e8d4e27bb 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -6060,12 +6060,9 @@ buf_check_timestamp(buf, focus) } else { -# ifdef VIMBUDDY - VimBuddyText(tbuf + 9, 2); -# else -# ifdef FEAT_AUTOCMD +# ifdef FEAT_AUTOCMD if (!autocmd_busy) -# endif +# endif { msg_start(); msg_puts_attr(tbuf, hl_attr(HLF_E) + MSG_HIST); @@ -6077,9 +6074,9 @@ buf_check_timestamp(buf, focus) if (emsg_silent == 0) { out_flush(); -# ifdef FEAT_GUI +# ifdef FEAT_GUI if (!focus) -# endif +# endif /* give the user some time to think about it */ ui_delay(1000L, TRUE); @@ -6088,7 +6085,6 @@ buf_check_timestamp(buf, focus) } } already_warned = TRUE; -# endif } vim_free(path); diff --git a/src/message.c b/src/message.c index 405ae6e03..950c6e46c 100644 --- a/src/message.c +++ b/src/message.c @@ -557,14 +557,6 @@ emsg(s) else flush_buffers(FALSE); /* flush internal buffers */ did_emsg = TRUE; /* flag for DoOneCmd() */ - -#ifdef VIMBUDDY - if (sourcing_name == NULL) - { - VimBuddyText(s, 2); - return TRUE; - } -#endif } emsg_on_display = TRUE; /* remember there is an error message */ @@ -2574,12 +2566,10 @@ give_warning(message, hl) /* Don't want a hit-enter prompt here. */ ++no_wait_return; + #ifdef FEAT_EVAL set_vim_var_string(VV_WARNINGMSG, message, -1); #endif -#ifdef VIMBUDDY - VimBuddyText(message, 1); -#else vim_free(keep_msg); keep_msg = NULL; if (hl) @@ -2591,7 +2581,7 @@ give_warning(message, hl) msg_didout = FALSE; /* overwrite this message */ msg_nowait = TRUE; /* don't wait for this message */ msg_col = 0; -#endif + --no_wait_return; } diff --git a/src/option.c b/src/option.c index b87005e19..ca95cc0e0 100644 --- a/src/option.c +++ b/src/option.c @@ -2657,8 +2657,8 @@ set_init_1() #ifdef FEAT_POSTSCRIPT /* 'printexpr' must be allocated to be able to evaluate it. */ set_string_default("pexpr", -# ifdef MSWIN - (char_u *)"system('copy' . ' ' . v:fname_in . ' \"' . &printdevice . '\"') . delete(v:fname_in)" +# if defined(MSWIN) || defined(MSDOS) || defined(OS2) + (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)" # else # ifdef VMS (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)" diff --git a/src/po/ru.po b/src/po/ru.po index b08bc0230..7bd9d72f3 100644 --- a/src/po/ru.po +++ b/src/po/ru.po @@ -1,7 +1,7 @@ # Russian translation for Vim # -# Об условиях использования читайте в редакторе Vim ":help uganda" -# О людях, делающих Vim читайте в редакторе ":help авторы" +# п·п╠ я┐я│п╩п╬п╡п╦я▐я┘ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦я▐ я┤п╦я┌п╟п╧я┌п╣ п╡ я─п╣п╢п╟п╨я┌п╬я─п╣ Vim ":help uganda" +# п· п╩я▌п╢я▐я┘, п╢п╣п╩п╟я▌я┴п╦я┘ Vim я┤п╦я┌п╟п╧я┌п╣ п╡ я─п╣п╢п╟п╨я┌п╬я─п╣ ":help п╟п╡я┌п╬я─я▀" # # vassily "vr" ragosin <vrr@users.sourceforge.net>, 2004 # @@ -9,360 +9,360 @@ # msgid "" msgstr "" -"Project-Id-Version: Vim 6.3a\n" +"Project-Id-Version: Vim 6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-10 21:37+0400\n" -"PO-Revision-Date: 2004-05-10 21:37+0400\n" +"POT-Creation-Date: 2004-06-15 09:39+0400\n" +"PO-Revision-Date: 2004-05-19 00:23+0400\n" "Last-Translator: vassily ragosin <vrr@users.sourceforge.net>\n" "Language-Team: vassily ragosin <vrr@users.sourceforge.net>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=koi8-r\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: buffer.c:102 msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: Невозможно выделить память даже для одного буфера, выход..." +msgstr "E82: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╢п╣п╩п╦я┌я▄ п©п╟п╪я▐я┌я▄ п╢п╟п╤п╣ п╢п╩я▐ п╬п╢п╫п╬пЁп╬ п╠я┐я└п╣я─п╟, п╡я▀я┘п╬п╢..." #: buffer.c:105 msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: Невозможно выделить память для буфера, используем другой буфер..." +msgstr "E83: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╢п╣п╩п╦я┌я▄ п©п╟п╪я▐я┌я▄ п╢п╩я▐ п╠я┐я└п╣я─п╟, п╦я│п©п╬п╩я▄п╥я┐п╣п╪ п╢я─я┐пЁп╬п╧ п╠я┐я└п╣я─..." -#: buffer.c:805 +#: buffer.c:808 #, c-format msgid "E515: No buffers were unloaded" -msgstr "E515: Ни один буфер не был выгружен из памяти" +msgstr "E515: п²п╦ п╬п╢п╦п╫ п╠я┐я└п╣я─ п╫п╣ п╠я▀п╩ п╡я▀пЁя─я┐п╤п╣п╫ п╦п╥ п©п╟п╪я▐я┌п╦" -#: buffer.c:807 +#: buffer.c:810 #, c-format msgid "E516: No buffers were deleted" -msgstr "E516: Ни один буфер не был удалён" +msgstr "E516: п²п╦ п╬п╢п╦п╫ п╠я┐я└п╣я─ п╫п╣ п╠я▀п╩ я┐п╢п╟п╩я▒п╫" -#: buffer.c:809 +#: buffer.c:812 #, c-format msgid "E517: No buffers were wiped out" -msgstr "E517: Ни один буфер не был очищен" +msgstr "E517: п²п╦ п╬п╢п╦п╫ п╠я┐я└п╣я─ п╫п╣ п╠я▀п╩ п╬я┤п╦я┴п╣п╫" -#: buffer.c:817 +#: buffer.c:820 msgid "1 buffer unloaded" -msgstr "Один буфер выгружен из памяти" +msgstr "п·п╢п╦п╫ п╠я┐я└п╣я─ п╡я▀пЁя─я┐п╤п╣п╫ п╦п╥ п©п╟п╪я▐я┌п╦" -#: buffer.c:819 +#: buffer.c:822 #, c-format msgid "%d buffers unloaded" -msgstr "Всего выгружено буферов из памяти: %d" +msgstr "п▓я│п╣пЁп╬ п╡я▀пЁя─я┐п╤п╣п╫п╬ п╠я┐я└п╣я─п╬п╡ п╦п╥ п©п╟п╪я▐я┌п╦: %d" -#: buffer.c:824 +#: buffer.c:827 msgid "1 buffer deleted" -msgstr "Один буфер удалён" +msgstr "п·п╢п╦п╫ п╠я┐я└п╣я─ я┐п╢п╟п╩я▒п╫" -#: buffer.c:826 +#: buffer.c:829 #, c-format msgid "%d buffers deleted" -msgstr "Всего удалено буферов: %d" +msgstr "п▓я│п╣пЁп╬ я┐п╢п╟п╩п╣п╫п╬ п╠я┐я└п╣я─п╬п╡: %d" -#: buffer.c:831 +#: buffer.c:834 msgid "1 buffer wiped out" -msgstr "Один буфер очищен" +msgstr "п·п╢п╦п╫ п╠я┐я└п╣я─ п╬я┤п╦я┴п╣п╫" -#: buffer.c:833 +#: buffer.c:836 #, c-format msgid "%d buffers wiped out" -msgstr "Всего очищено буферов: %d" +msgstr "п▓я│п╣пЁп╬ п╬я┤п╦я┴п╣п╫п╬ п╠я┐я└п╣я─п╬п╡: %d" -#: buffer.c:894 +#: buffer.c:897 msgid "E84: No modified buffer found" -msgstr "E84: Изменённых буферов не обнаружено" +msgstr "E84: п≤п╥п╪п╣п╫я▒п╫п╫я▀я┘ п╠я┐я└п╣я─п╬п╡ п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╬" #. back where we started, didn't find anything. -#: buffer.c:933 +#: buffer.c:936 msgid "E85: There is no listed buffer" -msgstr "E85: Буферы в списке отсутствуют" +msgstr "E85: п▒я┐я└п╣я─я▀ п╡ я│п©п╦я│п╨п╣ п╬я┌я│я┐я┌я│я┌п╡я┐я▌я┌" -#: buffer.c:945 +#: buffer.c:948 #, c-format msgid "E86: Buffer %ld does not exist" -msgstr "E86: Буфер %ld не существует" +msgstr "E86: п▒я┐я└п╣я─ %ld п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: buffer.c:948 +#: buffer.c:951 msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Это последний буфер" +msgstr "E87: п╜я┌п╬ п©п╬я│п╩п╣п╢п╫п╦п╧ п╠я┐я└п╣я─" -#: buffer.c:950 +#: buffer.c:953 msgid "E88: Cannot go before first buffer" -msgstr "E88: Это первый буфер" +msgstr "E88: п╜я┌п╬ п©п╣я─п╡я▀п╧ п╠я┐я└п╣я─" -#: buffer.c:988 +#: buffer.c:991 #, c-format msgid "E89: No write since last change for buffer %ld (add ! to override)" -msgstr "E89: Изменения в буфере %ld не сохранены (!, чтобы обойти проверку)" +msgstr "E89: п≤п╥п╪п╣п╫п╣п╫п╦я▐ п╡ п╠я┐я└п╣я─п╣ %ld п╫п╣ я│п╬я┘я─п╟п╫п╣п╫я▀ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: buffer.c:1005 +#: buffer.c:1008 msgid "E90: Cannot unload last buffer" -msgstr "E90: Невозможно выгрузить из памяти последний буфер" +msgstr "E90: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀пЁя─я┐п╥п╦я┌я▄ п╦п╥ п©п╟п╪я▐я┌п╦ п©п╬я│п╩п╣п╢п╫п╦п╧ п╠я┐я└п╣я─" -#: buffer.c:1538 +#: buffer.c:1544 msgid "W14: Warning: List of file names overflow" -msgstr "W14: Предупреждение: переполнение списка имён файлов" +msgstr "W14: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п©п╣я─п╣п©п╬п╩п╫п╣п╫п╦п╣ я│п©п╦я│п╨п╟ п╦п╪я▒п╫ я└п╟п╧п╩п╬п╡" -#: buffer.c:1709 +#: buffer.c:1716 #, c-format msgid "E92: Buffer %ld not found" -msgstr "E92: Буфер %ld не найден" +msgstr "E92: п▒я┐я└п╣я─ %ld п╫п╣ п╫п╟п╧п╢п╣п╫" -#: buffer.c:1940 +#: buffer.c:1947 #, c-format msgid "E93: More than one match for %s" -msgstr "E93: Несколько соответствий для %s" +msgstr "E93: п²п╣я│п╨п╬п╩я▄п╨п╬ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╧ п╢п╩я▐ %s" -#: buffer.c:1942 +#: buffer.c:1949 #, c-format msgid "E94: No matching buffer for %s" -msgstr "E94: Нет соответствующего %s буфера" +msgstr "E94: п²п╣я┌ я│п╬п╬я┌п╡п╣я┌я│я┌п╡я┐я▌я┴п╣пЁп╬ %s п╠я┐я└п╣я─п╟" -#: buffer.c:2337 +#: buffer.c:2344 #, c-format msgid "line %ld" -msgstr "строка %ld" +msgstr "я│я┌я─п╬п╨п╟ %ld" -#: buffer.c:2420 +#: buffer.c:2429 msgid "E95: Buffer with this name already exists" -msgstr "E95: Буфер с таким именем уже существует" +msgstr "E95: п▒я┐я└п╣я─ я│ я┌п╟п╨п╦п╪ п╦п╪п╣п╫п╣п╪ я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: buffer.c:2713 +#: buffer.c:2724 msgid " [Modified]" -msgstr " [Изменён]" +msgstr " [п≤п╥п╪п╣п╫я▒п╫]" -#: buffer.c:2718 +#: buffer.c:2729 msgid "[Not edited]" -msgstr "[Не редактировался]" +msgstr "[п²п╣ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╩я│я▐]" -#: buffer.c:2723 +#: buffer.c:2734 msgid "[New file]" -msgstr "[Новый файл]" +msgstr "[п²п╬п╡я▀п╧ я└п╟п╧п╩]" -#: buffer.c:2724 +#: buffer.c:2735 msgid "[Read errors]" -msgstr "[Ошибки чтения]" +msgstr "[п·я┬п╦п╠п╨п╦ я┤я┌п╣п╫п╦я▐]" -#: buffer.c:2726 fileio.c:2112 +#: buffer.c:2737 fileio.c:2124 msgid "[readonly]" -msgstr "[только для чтения]" +msgstr "[я┌п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐]" -#: buffer.c:2747 +#: buffer.c:2758 #, c-format msgid "1 line --%d%%--" -msgstr "Одна строка --%d%%--" +msgstr "п·п╢п╫п╟ я│я┌я─п╬п╨п╟ --%d%%--" -#: buffer.c:2749 +#: buffer.c:2760 #, c-format msgid "%ld lines --%d%%--" -msgstr "%ld стр. --%d%%--" +msgstr "%ld я│я┌я─. --%d%%--" -#: buffer.c:2756 +#: buffer.c:2767 #, c-format msgid "line %ld of %ld --%d%%-- col " -msgstr "стр. %ld из %ld --%d%%-- кол. " +msgstr "я│я┌я─. %ld п╦п╥ %ld --%d%%-- п╨п╬п╩. " -#: buffer.c:2864 +#: buffer.c:2875 msgid "[No file]" -msgstr "[Нет файла]" +msgstr "[п²п╣я┌ я└п╟п╧п╩п╟]" #. must be a help buffer -#: buffer.c:2904 +#: buffer.c:2915 msgid "help" -msgstr "справка" +msgstr "я│п©я─п╟п╡п╨п╟" -#: buffer.c:3463 screen.c:5075 +#: buffer.c:3474 screen.c:5079 msgid "[help]" -msgstr "[справка]" +msgstr "[я│п©я─п╟п╡п╨п╟]" -#: buffer.c:3495 screen.c:5081 +#: buffer.c:3506 screen.c:5085 msgid "[Preview]" -msgstr "[Предпросмотр]" +msgstr "[п÷я─п╣п╢п©я─п╬я│п╪п╬я┌я─]" -#: buffer.c:3775 +#: buffer.c:3786 msgid "All" -msgstr "Весь" +msgstr "п▓п╣я│я▄" -#: buffer.c:3775 +#: buffer.c:3786 msgid "Bot" -msgstr "Внизу" +msgstr "п▓п╫п╦п╥я┐" -#: buffer.c:3777 +#: buffer.c:3788 msgid "Top" -msgstr "Наверху" +msgstr "п²п╟п╡п╣я─я┘я┐" -#: buffer.c:4523 +#: buffer.c:4536 #, c-format msgid "" "\n" "# Buffer list:\n" msgstr "" "\n" -"# Список буферов:\n" +"# п║п©п╦я│п╬п╨ п╠я┐я└п╣я─п╬п╡:\n" -#: buffer.c:4556 +#: buffer.c:4569 msgid "[Error List]" -msgstr "[Список ошибок]" +msgstr "[п║п©п╦я│п╬п╨ п╬я┬п╦п╠п╬п╨]" -#: buffer.c:4569 memline.c:1520 +#: buffer.c:4582 memline.c:1521 msgid "[No File]" -msgstr "[Нет файла]" +msgstr "[п²п╣я┌ я└п╟п╧п╩п╟]" -#: buffer.c:4882 +#: buffer.c:4895 msgid "" "\n" "--- Signs ---" msgstr "" "\n" -"--- Значки ---" +"--- п≈п╫п╟я┤п╨п╦ ---" -#: buffer.c:4901 +#: buffer.c:4914 #, c-format msgid "Signs for %s:" -msgstr "Значки для %s:" +msgstr "п≈п╫п╟я┤п╨п╦ п╢п╩я▐ %s:" -#: buffer.c:4907 +#: buffer.c:4920 #, c-format msgid " line=%ld id=%d name=%s" -msgstr " строка=%ld id=%d имя=%s" +msgstr " я│я┌я─п╬п╨п╟=%ld id=%d п╦п╪я▐=%s" #: diff.c:139 #, c-format msgid "E96: Can not diff more than %ld buffers" -msgstr "E96: Следить за отличиями можно не более чем в %ld буферах" +msgstr "E96: п║п╩п╣п╢п╦я┌я▄ п╥п╟ п╬я┌п╩п╦я┤п╦я▐п╪п╦ п╪п╬п╤п╫п╬ п╫п╣ п╠п╬п╩п╣п╣ я┤п╣п╪ п╡ %ld п╠я┐я└п╣я─п╟я┘" #: diff.c:713 msgid "E97: Cannot create diffs" -msgstr "E97: Невозможно создать файлы отличий" +msgstr "E97: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я└п╟п╧п╩я▀ п╬я┌п╩п╦я┤п╦п╧" #: diff.c:818 msgid "Patch file" -msgstr "Файл-заплатка" +msgstr "п╓п╟п╧п╩-п╥п╟п©п╩п╟я┌п╨п╟" #: diff.c:1069 msgid "E98: Cannot read diff output" -msgstr "E98: Невозможно прочитать вывод команды diff" +msgstr "E98: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ п╡я▀п╡п╬п╢ п╨п╬п╪п╟п╫п╢я▀ diff" #: diff.c:1819 msgid "E99: Current buffer is not in diff mode" -msgstr "E99: Активный буфер не находится в режиме отличий" +msgstr "E99: п░п╨я┌п╦п╡п╫я▀п╧ п╠я┐я└п╣я─ п╫п╣ п╫п╟я┘п╬п╢п╦я┌я│я▐ п╡ я─п╣п╤п╦п╪п╣ п╬я┌п╩п╦я┤п╦п╧" #: diff.c:1831 msgid "E100: No other buffer in diff mode" -msgstr "E100: Больше нет буферов в режиме отличий" +msgstr "E100: п▒п╬п╩я▄я┬п╣ п╫п╣я┌ п╠я┐я└п╣я─п╬п╡ п╡ я─п╣п╤п╦п╪п╣ п╬я┌п╩п╦я┤п╦п╧" #: diff.c:1839 msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "E101: В режиме отличий более двух буферов, не могу выбрать" +msgstr "E101: п▓ я─п╣п╤п╦п╪п╣ п╬я┌п╩п╦я┤п╦п╧ п╠п╬п╩п╣п╣ п╢п╡я┐я┘ п╠я┐я└п╣я─п╬п╡, п╫п╣ п╪п╬пЁя┐ п╡я▀п╠я─п╟я┌я▄" #: diff.c:1862 #, c-format msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: Не могу найти буфер \"%s\"" +msgstr "E102: п²п╣ п╪п╬пЁя┐ п╫п╟п╧я┌п╦ п╠я┐я└п╣я─ \"%s\"" #: diff.c:1868 #, c-format msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: Буфер \"%s\" не находится в режиме отличий" +msgstr "E103: п▒я┐я└п╣я─ \"%s\" п╫п╣ п╫п╟я┘п╬п╢п╦я┌я│я▐ п╡ я─п╣п╤п╦п╪п╣ п╬я┌п╩п╦я┤п╦п╧" #: digraph.c:2199 msgid "E104: Escape not allowed in digraph" -msgstr "E104: Экранирующий символ Escape нельзя использовать в диграфе" +msgstr "E104: п╜п╨я─п╟п╫п╦я─я┐я▌я┴п╦п╧ я│п╦п╪п╡п╬п╩ Escape п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╡ п╢п╦пЁя─п╟я└п╣" #: digraph.c:2384 msgid "E544: Keymap file not found" -msgstr "E544: Файл с раскладкой клавиатуры не найден" +msgstr "E544: п╓п╟п╧п╩ я│ я─п╟я│п╨п╩п╟п╢п╨п╬п╧ п╨п╩п╟п╡п╦п╟я┌я┐я─я▀ п╫п╣ п╫п╟п╧п╢п╣п╫" #: digraph.c:2411 msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: Команда :loadkeymap применена вне файла сценария" +msgstr "E105: п п╬п╪п╟п╫п╢п╟ :loadkeymap п©я─п╦п╪п╣п╫п╣п╫п╟ п╡п╫п╣ я└п╟п╧п╩п╟ я│я├п╣п╫п╟я─п╦я▐" #: edit.c:40 msgid " Keyword completion (^N^P)" -msgstr " Автодополнение ключевого слова (^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╨п╩я▌я┤п╣п╡п╬пЁп╬ я│п╩п╬п╡п╟ (^N^P)" #. ctrl_x_mode == 0, ^P/^N compl. #: edit.c:41 msgid " ^X mode (^E^Y^L^]^F^I^K^D^V^N^P)" -msgstr " Автодополнение ^X (^E^Y^L^]^F^I^K^D^V^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ ^X (^E^Y^L^]^F^I^K^D^V^N^P)" #. Scroll has it's own msgs, in it's place there is the msg for local #. * ctrl_x_mode = 0 (eg continue_status & CONT_LOCAL) -- Acevedo #: edit.c:44 msgid " Keyword Local completion (^N^P)" -msgstr " Местное автодополнение ключевого слова (^N^P)" +msgstr " п°п╣я│я┌п╫п╬п╣ п╟п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╨п╩я▌я┤п╣п╡п╬пЁп╬ я│п╩п╬п╡п╟ (^N^P)" #: edit.c:45 msgid " Whole line completion (^L^N^P)" -msgstr " Автодополнение целой строки (^L^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ я├п╣п╩п╬п╧ я│я┌я─п╬п╨п╦ (^L^N^P)" #: edit.c:46 msgid " File name completion (^F^N^P)" -msgstr " Автодополнение имени файла (^F^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟ (^F^N^P)" #: edit.c:47 msgid " Tag completion (^]^N^P)" -msgstr " Автодополнение метки (^]^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╪п╣я┌п╨п╦ (^]^N^P)" #: edit.c:48 msgid " Path pattern completion (^N^P)" -msgstr " Автодополнение шаблона пути (^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ я┬п╟п╠п╩п╬п╫п╟ п©я┐я┌п╦ (^N^P)" #: edit.c:49 msgid " Definition completion (^D^N^P)" -msgstr " Автодополнение определения (^D^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╬п©я─п╣п╢п╣п╩п╣п╫п╦я▐ (^D^N^P)" #: edit.c:51 msgid " Dictionary completion (^K^N^P)" -msgstr " Автодополнение по словарю (^K^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п©п╬ я│п╩п╬п╡п╟я─я▌ (^K^N^P)" #: edit.c:52 msgid " Thesaurus completion (^T^N^P)" -msgstr " Автодополнение синонимов (^T^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ я│п╦п╫п╬п╫п╦п╪п╬п╡ (^T^N^P)" #: edit.c:53 msgid " Command-line completion (^V^N^P)" -msgstr " Автодополнение командной строки (^V^N^P)" +msgstr " п░п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ п╨п╬п╪п╟п╫п╢п╫п╬п╧ я│я┌я─п╬п╨п╦ (^V^N^P)" #: edit.c:56 msgid "Hit end of paragraph" -msgstr "Конец абзаца" +msgstr "п п╬п╫п╣я├ п╟п╠п╥п╟я├п╟" #: edit.c:962 msgid "'thesaurus' option is empty" -msgstr "Не задано значение опции 'thesaurus'" +msgstr "п²п╣ п╥п╟п╢п╟п╫п╬ п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'thesaurus'" #: edit.c:1166 msgid "'dictionary' option is empty" -msgstr "Не задано значение опции 'dictionary'" +msgstr "п²п╣ п╥п╟п╢п╟п╫п╬ п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'dictionary'" #: edit.c:2162 #, c-format msgid "Scanning dictionary: %s" -msgstr "Просмотр словаря: %s" +msgstr "п÷я─п╬я│п╪п╬я┌я─ я│п╩п╬п╡п╟я─я▐: %s" #: edit.c:2368 msgid " (insert) Scroll (^E/^Y)" -msgstr " (вставка) Прокрутка (^E/^Y)" +msgstr " (п╡я│я┌п╟п╡п╨п╟) п÷я─п╬п╨я─я┐я┌п╨п╟ (^E/^Y)" #: edit.c:2370 msgid " (replace) Scroll (^E/^Y)" -msgstr " (замена) Прокрутка (^E/^Y)" +msgstr " (п╥п╟п╪п╣п╫п╟) п÷я─п╬п╨я─я┐я┌п╨п╟ (^E/^Y)" #: edit.c:2684 #, c-format msgid "Scanning: %s" -msgstr "Просмотр: %s" +msgstr "п÷я─п╬я│п╪п╬я┌я─: %s" #: edit.c:2719 #, c-format msgid "Scanning tags." -msgstr "Выполняется поиск среди меток." +msgstr "п▓я▀п©п╬п╩п╫я▐п╣я┌я│я▐ п©п╬п╦я│п╨ я│я─п╣п╢п╦ п╪п╣я┌п╬п╨." #: edit.c:3381 msgid " Adding" -msgstr " Добавление" +msgstr " п■п╬п╠п╟п╡п╩п╣п╫п╦п╣" #. showmode might reset the internal line pointers, so it must #. * be called before line = ml_get(), or when this address is no @@ -370,117 +370,117 @@ msgstr " Добавление" #. #: edit.c:3430 msgid "-- Searching..." -msgstr "-- Поиск..." +msgstr "-- п÷п╬п╦я│п╨..." #: edit.c:3486 msgid "Back at original" -msgstr "Исходное слово" +msgstr "п≤я│я┘п╬п╢п╫п╬п╣ я│п╩п╬п╡п╬" #: edit.c:3491 msgid "Word from other line" -msgstr "Слово из другой строки" +msgstr "п║п╩п╬п╡п╬ п╦п╥ п╢я─я┐пЁп╬п╧ я│я┌я─п╬п╨п╦" #: edit.c:3496 msgid "The only match" -msgstr "Единственное соответствие" +msgstr "п∙п╢п╦п╫я│я┌п╡п╣п╫п╫п╬п╣ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣" #: edit.c:3555 #, c-format msgid "match %d of %d" -msgstr "соответствие %d из %d" +msgstr "я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣ %d п╦п╥ %d" #: edit.c:3558 #, c-format msgid "match %d" -msgstr "соответствие %d" +msgstr "я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣ %d" #. Skip further arguments but do continue to #. * search for a trailing command. #: eval.c:1024 #, c-format msgid "E106: Unknown variable: \"%s\"" -msgstr "E106: Неизвестная переменная: \"%s\"" +msgstr "E106: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п©п╣я─п╣п╪п╣п╫п╫п╟я▐: \"%s\"" #: eval.c:1320 #, c-format msgid "E107: Missing braces: %s" -msgstr "E107: Пропущены скобки: %s" +msgstr "E107: п÷я─п╬п©я┐я┴п╣п╫я▀ я│п╨п╬п╠п╨п╦: %s" #: eval.c:1435 eval.c:1449 #, c-format msgid "E108: No such variable: \"%s\"" -msgstr "E108: Нет такой переменной: \"%s\"" +msgstr "E108: п²п╣я┌ я┌п╟п╨п╬п╧ п©п╣я─п╣п╪п╣п╫п╫п╬п╧: \"%s\"" #: eval.c:1705 msgid "E109: Missing ':' after '?'" -msgstr "E109: Пропущено ':' после '?'" +msgstr "E109: п÷я─п╬п©я┐я┴п╣п╫п╬ ':' п©п╬я│п╩п╣ '?'" #: eval.c:2327 msgid "E110: Missing ')'" -msgstr "E110: Пропущена ')'" +msgstr "E110: п÷я─п╬п©я┐я┴п╣п╫п╟ ')'" #: eval.c:2389 msgid "E111: Missing ']'" -msgstr "E111: Пропущена ']'" +msgstr "E111: п÷я─п╬п©я┐я┴п╣п╫п╟ ']'" #: eval.c:2466 #, c-format msgid "E112: Option name missing: %s" -msgstr "E112: Не указано имя опции: %s" +msgstr "E112: п²п╣ я┐п╨п╟п╥п╟п╫п╬ п╦п╪я▐ п╬п©я├п╦п╦: %s" #: eval.c:2484 #, c-format msgid "E113: Unknown option: %s" -msgstr "E113: Неизвестная опция: %s" +msgstr "E113: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╬п©я├п╦я▐: %s" #: eval.c:2555 #, c-format msgid "E114: Missing quote: %s" -msgstr "E114: Пропущена кавычка: %s" +msgstr "E114: п÷я─п╬п©я┐я┴п╣п╫п╟ п╨п╟п╡я▀я┤п╨п╟: %s" #: eval.c:2698 #, c-format msgid "E115: Missing quote: %s" -msgstr "E115: Пропущена кавычка: %s" +msgstr "E115: п÷я─п╬п©я┐я┴п╣п╫п╟ п╨п╟п╡я▀я┤п╨п╟: %s" #: eval.c:3054 #, c-format msgid "E116: Invalid arguments for function %s" -msgstr "E116: Параметры для функции %s заданы неверно" +msgstr "E116: п÷п╟я─п╟п╪п╣я┌я─я▀ п╢п╩я▐ я└я┐п╫п╨я├п╦п╦ %s п╥п╟п╢п╟п╫я▀ п╫п╣п╡п╣я─п╫п╬" #: eval.c:3083 #, c-format msgid "E117: Unknown function: %s" -msgstr "E117: Неизвестная функция: %s" +msgstr "E117: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ я└я┐п╫п╨я├п╦я▐: %s" #: eval.c:3084 #, c-format msgid "E118: Too many arguments for function: %s" -msgstr "E118: Слишком много параметров для функции %s" +msgstr "E118: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п©п╟я─п╟п╪п╣я┌я─п╬п╡ п╢п╩я▐ я└я┐п╫п╨я├п╦п╦ %s" #: eval.c:3085 #, c-format msgid "E119: Not enough arguments for function: %s" -msgstr "E119: Недостаточно параметров для функции %s" +msgstr "E119: п²п╣п╢п╬я│я┌п╟я┌п╬я┤п╫п╬ п©п╟я─п╟п╪п╣я┌я─п╬п╡ п╢п╩я▐ я└я┐п╫п╨я├п╦п╦ %s" #: eval.c:3086 #, c-format msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> используется вне сценария: %s" +msgstr "E120: <SID> п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ п╡п╫п╣ я│я├п╣п╫п╟я─п╦я▐: %s" #. #. * Yes this is ugly, I don't particularly like it either. But doing it #. * this way has the compelling advantage that translations need not to #. * be touched at all. See below what 'ok' and 'ync' are used for. #. -#: eval.c:3687 gui.c:4382 gui_gtk.c:2059 +#: eval.c:3687 gui.c:4385 gui_gtk.c:2059 msgid "&Ok" msgstr "&Ok" #: eval.c:4226 #, c-format msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld строк: " +msgstr "+-%s%3ld я│я┌я─п╬п╨: " #: eval.c:5477 msgid "" @@ -488,138 +488,138 @@ msgid "" "&Cancel" msgstr "" "&OK\n" -"О&тмена" +"п·&я┌п╪п╣п╫п╟" #: eval.c:5517 msgid "called inputrestore() more often than inputsave()" -msgstr "Функция inputrestore() вызывается чаще, чем функция inputsave()" +msgstr "п╓я┐п╫п╨я├п╦я▐ inputrestore() п╡я▀п╥я▀п╡п╟п╣я┌я│я▐ я┤п╟я┴п╣, я┤п╣п╪ я└я┐п╫п╨я├п╦я▐ inputsave()" #: eval.c:5977 msgid "E655: Too many symbolic links (cycle?)" -msgstr "E656: Слишком много символических ссылок (цикл?)" +msgstr "E656: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я│п╦п╪п╡п╬п╩п╦я┤п╣я│п╨п╦я┘ я│я│я▀п╩п╬п╨ (я├п╦п╨п╩?)" -#: eval.c:6609 +#: eval.c:6626 msgid "E240: No connection to Vim server" -msgstr "E240: Нет связи с сервером Vim" +msgstr "E240: п²п╣я┌ я│п╡я▐п╥п╦ я│ я│п╣я─п╡п╣я─п╬п╪ Vim" -#: eval.c:6706 +#: eval.c:6724 msgid "E277: Unable to read a server reply" -msgstr "E227: Сервер не отвечает" +msgstr "E227: п║п╣я─п╡п╣я─ п╫п╣ п╬я┌п╡п╣я┤п╟п╣я┌" -#: eval.c:6734 +#: eval.c:6752 msgid "E258: Unable to send to client" -msgstr "E258: Не могу ответить клиенту" +msgstr "E258: п²п╣ п╪п╬пЁя┐ п╬я┌п╡п╣я┌п╦я┌я▄ п╨п╩п╦п╣п╫я┌я┐" -#: eval.c:6782 +#: eval.c:6800 #, c-format msgid "E241: Unable to send to %s" -msgstr "E241: Не могу отправить сообщение для %s" +msgstr "E241: п²п╣ п╪п╬пЁя┐ п╬я┌п©я─п╟п╡п╦я┌я▄ я│п╬п╬п╠я┴п╣п╫п╦п╣ п╢п╩я▐ %s" -#: eval.c:6882 +#: eval.c:6900 msgid "(Invalid)" -msgstr "(Неправильно)" +msgstr "(п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬)" -#: eval.c:8060 +#: eval.c:8078 #, c-format msgid "E121: Undefined variable: %s" -msgstr "E121: Неопределенная переменная: %s" +msgstr "E121: п²п╣п╬п©я─п╣п╢п╣п╩п╣п╫п╫п╟я▐ п©п╣я─п╣п╪п╣п╫п╫п╟я▐: %s" -#: eval.c:8492 +#: eval.c:8510 #, c-format msgid "E461: Illegal variable name: %s" -msgstr "E461: Недопустимое имя переменной: %s" +msgstr "E461: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ п©п╣я─п╣п╪п╣п╫п╫п╬п╧: %s" -#: eval.c:8784 +#: eval.c:8802 #, c-format msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: Функция %s уже существует. Добавьте !, чтобы заменить её." +msgstr "E122: п╓я┐п╫п╨я├п╦я▐ %s я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌. п■п╬п╠п╟п╡я▄я┌п╣ !, я┤я┌п╬п╠я▀ п╥п╟п╪п╣п╫п╦я┌я▄ п╣я▒." -#: eval.c:8857 +#: eval.c:8875 #, c-format msgid "E123: Undefined function: %s" -msgstr "E123: Неопределенная функция: %s" +msgstr "E123: п²п╣п╬п©я─п╣п╢п╣п╩п╣п╫п╫п╟я▐ я└я┐п╫п╨я├п╦я▐: %s" -#: eval.c:8870 +#: eval.c:8888 #, c-format msgid "E124: Missing '(': %s" -msgstr "E124: Пропущена '(': %s" +msgstr "E124: п÷я─п╬п©я┐я┴п╣п╫п╟ '(': %s" -#: eval.c:8903 +#: eval.c:8921 #, c-format msgid "E125: Illegal argument: %s" -msgstr "E125: Недопустимый параметр: %s" +msgstr "E125: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п©п╟я─п╟п╪п╣я┌я─: %s" -#: eval.c:8982 +#: eval.c:9000 msgid "E126: Missing :endfunction" -msgstr "E126: Пропущена команда :endfunction" +msgstr "E126: п÷я─п╬п©я┐я┴п╣п╫п╟ п╨п╬п╪п╟п╫п╢п╟ :endfunction" -#: eval.c:9089 +#: eval.c:9107 #, c-format msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: Невозможно переопределить функцию %s, она используется" +msgstr "E127: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╬п©я─п╣п╢п╣п╩п╦я┌я▄ я└я┐п╫п╨я├п╦я▌ %s, п╬п╫п╟ п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐" -#: eval.c:9159 +#: eval.c:9177 msgid "E129: Function name required" -msgstr "E129: Требуется имя функции" +msgstr "E129: п╒я─п╣п╠я┐п╣я┌я│я▐ п╦п╪я▐ я└я┐п╫п╨я├п╦п╦" -#: eval.c:9210 +#: eval.c:9228 #, c-format msgid "E128: Function name must start with a capital: %s" -msgstr "E128: Имя функции должно начинаться с прописной буквы: %s" +msgstr "E128: п≤п╪я▐ я└я┐п╫п╨я├п╦п╦ п╢п╬п╩п╤п╫п╬ п╫п╟я┤п╦п╫п╟я┌я▄я│я▐ я│ п©я─п╬п©п╦я│п╫п╬п╧ п╠я┐п╨п╡я▀: %s" -#: eval.c:9402 +#: eval.c:9420 #, c-format msgid "E130: Undefined function: %s" -msgstr "E130: Функция %s не определена" +msgstr "E130: п╓я┐п╫п╨я├п╦я▐ %s п╫п╣ п╬п©я─п╣п╢п╣п╩п╣п╫п╟" -#: eval.c:9407 +#: eval.c:9425 #, c-format msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: Невозможно удалить функцию %s, она используется" +msgstr "E131: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я┐п╢п╟п╩п╦я┌я▄ я└я┐п╫п╨я├п╦я▌ %s, п╬п╫п╟ п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐" -#: eval.c:9455 +#: eval.c:9473 msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: Глубина вызова функции больше, чем значение 'maxfuncdepth'" +msgstr "E132: п⌠п╩я┐п╠п╦п╫п╟ п╡я▀п╥п╬п╡п╟ я└я┐п╫п╨я├п╦п╦ п╠п╬п╩я▄я┬п╣, я┤п╣п╪ п╥п╫п╟я┤п╣п╫п╦п╣ 'maxfuncdepth'" #. always scroll up, don't overwrite -#: eval.c:9508 +#: eval.c:9526 #, c-format msgid "calling %s" -msgstr "вызов %s" +msgstr "п╡я▀п╥п╬п╡ %s" -#: eval.c:9570 +#: eval.c:9588 #, c-format msgid "%s aborted" -msgstr "%s прервана" +msgstr "%s п©я─п╣я─п╡п╟п╫п╟" -#: eval.c:9572 +#: eval.c:9590 #, c-format msgid "%s returning #%ld" -msgstr "%s возвращает #%ld" +msgstr "%s п╡п╬п╥п╡я─п╟я┴п╟п╣я┌ #%ld" -#: eval.c:9579 +#: eval.c:9597 #, c-format msgid "%s returning \"%s\"" -msgstr "%s возвращает \"%s\"" +msgstr "%s п╡п╬п╥п╡я─п╟я┴п╟п╣я┌ \"%s\"" #. always scroll up, don't overwrite -#: eval.c:9595 ex_cmds2.c:2365 +#: eval.c:9613 ex_cmds2.c:2370 #, c-format msgid "continuing in %s" -msgstr "продолжение в %s" +msgstr "п©я─п╬п╢п╬п╩п╤п╣п╫п╦п╣ п╡ %s" -#: eval.c:9621 +#: eval.c:9639 msgid "E133: :return not inside a function" -msgstr "E133: команда :return вне функции" +msgstr "E133: п╨п╬п╪п╟п╫п╢п╟ :return п╡п╫п╣ я└я┐п╫п╨я├п╦п╦" -#: eval.c:9952 +#: eval.c:9970 #, c-format msgid "" "\n" "# global variables:\n" msgstr "" "\n" -"# глобальные переменные:\n" +"# пЁп╩п╬п╠п╟п╩я▄п╫я▀п╣ п©п╣я─п╣п╪п╣п╫п╫я▀п╣:\n" #: ex_cmds.c:92 #, c-format @@ -638,77 +638,77 @@ msgstr "> %d, Hex %08x, Octal %o" #: ex_cmds.c:430 msgid "E134: Move lines into themselves" -msgstr "E134: Строки перемещаются сами на себя" +msgstr "E134: п║я┌я─п╬п╨п╦ п©п╣я─п╣п╪п╣я┴п╟я▌я┌я│я▐ я│п╟п╪п╦ п╫п╟ я│п╣п╠я▐" #: ex_cmds.c:499 msgid "1 line moved" -msgstr "Перемещена одна строка" +msgstr "п÷п╣я─п╣п╪п╣я┴п╣п╫п╟ п╬п╢п╫п╟ я│я┌я─п╬п╨п╟" #: ex_cmds.c:501 #, c-format msgid "%ld lines moved" -msgstr "Перемещено строк: %ld" +msgstr "п÷п╣я─п╣п╪п╣я┴п╣п╫п╬ я│я┌я─п╬п╨: %ld" #: ex_cmds.c:924 #, c-format msgid "%ld lines filtered" -msgstr "Пропущено через фильтр строк: %ld" +msgstr "п÷я─п╬п©я┐я┴п╣п╫п╬ я┤п╣я─п╣п╥ я└п╦п╩я▄я┌я─ я│я┌я─п╬п╨: %ld" #: ex_cmds.c:952 msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: Автокоманды *Filter* не должны изменять активный буфер" +msgstr "E135: п░п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ *Filter* п╫п╣ п╢п╬п╩п╤п╫я▀ п╦п╥п╪п╣п╫я▐я┌я▄ п╟п╨я┌п╦п╡п╫я▀п╧ п╠я┐я└п╣я─" #: ex_cmds.c:1037 msgid "[No write since last change]\n" -msgstr "[Изменения не сохранены]\n" +msgstr "[п≤п╥п╪п╣п╫п╣п╫п╦я▐ п╫п╣ я│п╬я┘я─п╟п╫п╣п╫я▀]\n" #: ex_cmds.c:1283 #, c-format msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s в строке: " +msgstr "%sviminfo: %s п╡ я│я┌я─п╬п╨п╣: " #: ex_cmds.c:1288 msgid "E136: viminfo: Too many errors, skipping rest of file" msgstr "" -"E136: viminfo: Слишком много ошибок, остальная часть файла будет пропущена" +"E136: viminfo: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╬я┬п╦п╠п╬п╨, п╬я│я┌п╟п╩я▄п╫п╟я▐ я┤п╟я│я┌я▄ я└п╟п╧п╩п╟ п╠я┐п╢п╣я┌ п©я─п╬п©я┐я┴п╣п╫п╟" #: ex_cmds.c:1323 #, c-format msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "Чтение файла viminfo \"%s\"%s%s%s" +msgstr "п╖я┌п╣п╫п╦п╣ я└п╟п╧п╩п╟ viminfo \"%s\"%s%s%s" #: ex_cmds.c:1324 msgid " info" -msgstr " инфо" +msgstr " п╦п╫я└п╬" #: ex_cmds.c:1325 msgid " marks" -msgstr " отметок" +msgstr " п╬я┌п╪п╣я┌п╬п╨" #: ex_cmds.c:1326 msgid " FAILED" -msgstr " НЕУДАЧНО" +msgstr " п²п∙пёп■п░п╖п²п·" #: ex_cmds.c:1418 #, c-format msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Права на запись файла viminfo отсутствуют: %s" +msgstr "E137: п÷я─п╟п╡п╟ п╫п╟ п╥п╟п©п╦я│я▄ я└п╟п╧п╩п╟ viminfo п╬я┌я│я┐я┌я│я┌п╡я┐я▌я┌: %s" #: ex_cmds.c:1543 #, c-format msgid "E138: Can't write viminfo file %s!" -msgstr "E138: Невозможно записать файл viminfo %s!" +msgstr "E138: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟п©п╦я│п╟я┌я▄ я└п╟п╧п╩ viminfo %s!" #: ex_cmds.c:1551 #, c-format msgid "Writing viminfo file \"%s\"" -msgstr "Запись файла viminfo \"%s\"" +msgstr "п≈п╟п©п╦я│я▄ я└п╟п╧п╩п╟ viminfo \"%s\"" #. Write the info: #: ex_cmds.c:1649 #, c-format msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# Этот файл viminfo автоматически создан Vim %s.\n" +msgstr "# п╜я┌п╬я┌ я└п╟п╧п╩ viminfo п╟п╡я┌п╬п╪п╟я┌п╦я┤п╣я│п╨п╦ я│п╬п╥п╢п╟п╫ Vim %s.\n" #: ex_cmds.c:1651 #, c-format @@ -716,121 +716,121 @@ msgid "" "# You may edit it if you're careful!\n" "\n" msgstr "" -"# Его можно (осторожно!) редактировать.\n" +"# п∙пЁп╬ п╪п╬п╤п╫п╬ (п╬я│я┌п╬я─п╬п╤п╫п╬!) я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄.\n" "\n" #: ex_cmds.c:1653 #, c-format msgid "# Value of 'encoding' when this file was written\n" -msgstr "# Значение опции 'encoding' в момент записи файла\n" +msgstr "# п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'encoding' п╡ п╪п╬п╪п╣п╫я┌ п╥п╟п©п╦я│п╦ я└п╟п╧п╩п╟\n" #: ex_cmds.c:1752 msgid "Illegal starting char" -msgstr "Недопустимый начальный символ" +msgstr "п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╫п╟я┤п╟п╩я▄п╫я▀п╧ я│п╦п╪п╡п╬п╩" -#: ex_cmds.c:2097 ex_cmds.c:2362 ex_cmds2.c:763 +#: ex_cmds.c:2097 ex_cmds2.c:761 msgid "Save As" -msgstr "Сохранить как" +msgstr "п║п╬я┘я─п╟п╫п╦я┌я▄ п╨п╟п╨" #. Overwriting a file that is loaded in another buffer is not a #. * good idea. #: ex_cmds.c:2140 msgid "E139: File is loaded in another buffer" -msgstr "E139: Файл загружен в другом буфере" +msgstr "E139: п╓п╟п╧п╩ п╥п╟пЁя─я┐п╤п╣п╫ п╡ п╢я─я┐пЁп╬п╪ п╠я┐я└п╣я─п╣" #: ex_cmds.c:2174 msgid "Write partial file?" -msgstr "Записать файл частично?" +msgstr "п≈п╟п©п╦я│п╟я┌я▄ я└п╟п╧п╩ я┤п╟я│я┌п╦я┤п╫п╬?" #: ex_cmds.c:2181 msgid "E140: Use ! to write partial buffer" -msgstr "E140: Для записи части буфера используйте !" +msgstr "E140: п■п╩я▐ п╥п╟п©п╦я│п╦ я┤п╟я│я┌п╦ п╠я┐я└п╣я─п╟ п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ !" #: ex_cmds.c:2296 #, c-format msgid "Overwrite existing file \"%.*s\"?" -msgstr "Переписать существующий файл \"%.*s\"?" +msgstr "п÷п╣я─п╣п©п╦я│п╟я┌я▄ я│я┐я┴п╣я│я┌п╡я┐я▌я┴п╦п╧ я└п╟п╧п╩ \"%.*s\"?" #: ex_cmds.c:2367 #, c-format msgid "E141: No file name for buffer %ld" -msgstr "E141: Буфер %ld не связан с именем файла" +msgstr "E141: п▒я┐я└п╣я─ %ld п╫п╣ я│п╡я▐п╥п╟п╫ я│ п╦п╪п╣п╫п╣п╪ я└п╟п╧п╩п╟" -#: ex_cmds.c:2405 +#: ex_cmds.c:2406 msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: Файл не сохранён: запись отключена опцией 'write'" +msgstr "E142: п╓п╟п╧п╩ п╫п╣ я│п╬я┘я─п╟п╫я▒п╫: п╥п╟п©п╦я│я▄ п╬я┌п╨п╩я▌я┤п╣п╫п╟ п╬п©я├п╦п╣п╧ 'write'" -#: ex_cmds.c:2425 +#: ex_cmds.c:2426 #, c-format msgid "" "'readonly' option is set for \"%.*s\".\n" "Do you wish to write anyway?" msgstr "" -"Для \"%.*s\" включена опция 'readonly'.\n" -"Записать?" +"п■п╩я▐ \"%.*s\" п╡п╨п╩я▌я┤п╣п╫п╟ п╬п©я├п╦я▐ 'readonly'.\n" +"п≈п╟п©п╦я│п╟я┌я▄?" -#: ex_cmds.c:2597 +#: ex_cmds.c:2599 msgid "Edit File" -msgstr "Редактирование файла" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ я└п╟п╧п╩п╟" -#: ex_cmds.c:3205 +#: ex_cmds.c:3206 #, c-format msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Автокоманды неожиданно убили новый буфер %s" +msgstr "E143: п░п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ п╫п╣п╬п╤п╦п╢п╟п╫п╫п╬ я┐п╠п╦п╩п╦ п╫п╬п╡я▀п╧ п╠я┐я└п╣я─ %s" -#: ex_cmds.c:3339 +#: ex_cmds.c:3340 msgid "E144: non-numeric argument to :z" -msgstr "E144: Параметр команды :z должен быть числом" +msgstr "E144: п÷п╟я─п╟п╪п╣я┌я─ п╨п╬п╪п╟п╫п╢я▀ :z п╢п╬п╩п╤п╣п╫ п╠я▀я┌я▄ я┤п╦я│п╩п╬п╪" -#: ex_cmds.c:3424 +#: ex_cmds.c:3425 msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: Использование команд оболочки не допускается в rvim." +msgstr "E145: п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ п╨п╬п╪п╟п╫п╢ п╬п╠п╬п╩п╬я┤п╨п╦ п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡ rvim." -#: ex_cmds.c:3531 +#: ex_cmds.c:3532 msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: Регулярные выражения не могут разделяться буквами" +msgstr "E146: п═п╣пЁя┐п╩я▐я─п╫я▀п╣ п╡я▀я─п╟п╤п╣п╫п╦я▐ п╫п╣ п╪п╬пЁя┐я┌ я─п╟п╥п╢п╣п╩я▐я┌я▄я│я▐ п╠я┐п╨п╡п╟п╪п╦" -#: ex_cmds.c:3877 +#: ex_cmds.c:3878 #, c-format msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "заменить на %s? (y/n/a/q/l/^E/^Y)" +msgstr "п╥п╟п╪п╣п╫п╦я┌я▄ п╫п╟ %s? (y/n/a/q/l/^E/^Y)" -#: ex_cmds.c:4270 +#: ex_cmds.c:4271 msgid "(Interrupted) " -msgstr "(Прервано)" +msgstr "(п÷я─п╣я─п╡п╟п╫п╬)" -#: ex_cmds.c:4274 +#: ex_cmds.c:4275 msgid "1 substitution" -msgstr "Одна замена" +msgstr "п·п╢п╫п╟ п╥п╟п╪п╣п╫п╟" -#: ex_cmds.c:4276 +#: ex_cmds.c:4277 #, c-format msgid "%ld substitutions" -msgstr "%ld замен" +msgstr "%ld п╥п╟п╪п╣п╫" -#: ex_cmds.c:4279 +#: ex_cmds.c:4280 msgid " on 1 line" -msgstr " в одной строке" +msgstr " п╡ п╬п╢п╫п╬п╧ я│я┌я─п╬п╨п╣" -#: ex_cmds.c:4281 +#: ex_cmds.c:4282 #, c-format msgid " on %ld lines" -msgstr " в %ld стр." +msgstr " п╡ %ld я│я┌я─." -#: ex_cmds.c:4332 +#: ex_cmds.c:4333 msgid "E147: Cannot do :global recursive" -msgstr "E147: Команда :global не может быть рекурсивной" +msgstr "E147: п п╬п╪п╟п╫п╢п╟ :global п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ я─п╣п╨я┐я─я│п╦п╡п╫п╬п╧" -#: ex_cmds.c:4367 +#: ex_cmds.c:4368 msgid "E148: Regular expression missing from global" -msgstr "E148: В команде :global пропущено регулярное выражение" +msgstr "E148: п▓ п╨п╬п╪п╟п╫п╢п╣ :global п©я─п╬п©я┐я┴п╣п╫п╬ я─п╣пЁя┐п╩я▐я─п╫п╬п╣ п╡я▀я─п╟п╤п╣п╫п╦п╣" -#: ex_cmds.c:4416 +#: ex_cmds.c:4417 #, c-format msgid "Pattern found in every line: %s" -msgstr "Соответствие шаблону найдено на каждой строке: %s" +msgstr "п║п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣ я┬п╟п╠п╩п╬п╫я┐ п╫п╟п╧п╢п╣п╫п╬ п╫п╟ п╨п╟п╤п╢п╬п╧ я│я┌я─п╬п╨п╣: %s" -#: ex_cmds.c:4497 +#: ex_cmds.c:4498 #, c-format msgid "" "\n" @@ -838,1462 +838,1462 @@ msgid "" "$" msgstr "" "\n" -"# Последняя строка для замены:\n" +"# п÷п╬я│п╩п╣п╢п╫я▐я▐ я│я┌я─п╬п╨п╟ п╢п╩я▐ п╥п╟п╪п╣п╫я▀:\n" "$" -#: ex_cmds.c:4598 +#: ex_cmds.c:4599 msgid "E478: Don't panic!" -msgstr "E478: Спокойствие, только спокойствие!" +msgstr "E478: п║п©п╬п╨п╬п╧я│я┌п╡п╦п╣, я┌п╬п╩я▄п╨п╬ я│п©п╬п╨п╬п╧я│я┌п╡п╦п╣!" -#: ex_cmds.c:4650 +#: ex_cmds.c:4651 #, c-format msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: к сожалению, справка '%s' для %s отсутствует" +msgstr "E661: п╨ я│п╬п╤п╟п╩п╣п╫п╦я▌, я│п©я─п╟п╡п╨п╟ '%s' п╢п╩я▐ %s п╬я┌я│я┐я┌я│я┌п╡я┐п╣я┌" -#: ex_cmds.c:4653 +#: ex_cmds.c:4654 #, c-format msgid "E149: Sorry, no help for %s" -msgstr "E149: К сожалению справка для %s отсутствует" +msgstr "E149: п я│п╬п╤п╟п╩п╣п╫п╦я▌ я│п©я─п╟п╡п╨п╟ п╢п╩я▐ %s п╬я┌я│я┐я┌я│я┌п╡я┐п╣я┌" -#: ex_cmds.c:4687 +#: ex_cmds.c:4688 #, c-format msgid "Sorry, help file \"%s\" not found" -msgstr "Извините, файл справки \"%s\" не найден" +msgstr "п≤п╥п╡п╦п╫п╦я┌п╣, я└п╟п╧п╩ я│п©я─п╟п╡п╨п╦ \"%s\" п╫п╣ п╫п╟п╧п╢п╣п╫" -#: ex_cmds.c:5170 +#: ex_cmds.c:5191 #, c-format msgid "E150: Not a directory: %s" -msgstr "E150: %s не является каталогом" +msgstr "E150: %s п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п╨п╟я┌п╟п╩п╬пЁп╬п╪" -#: ex_cmds.c:5309 +#: ex_cmds.c:5330 #, c-format msgid "E152: Cannot open %s for writing" -msgstr "E152: Невозможно открыть %s для записи" +msgstr "E152: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ %s п╢п╩я▐ п╥п╟п©п╦я│п╦" -#: ex_cmds.c:5345 +#: ex_cmds.c:5366 #, c-format msgid "E153: Unable to open %s for reading" -msgstr "E153: Невозможно открыть %s для чтения" +msgstr "E153: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ %s п╢п╩я▐ я┤я┌п╣п╫п╦я▐" -#: ex_cmds.c:5367 +#: ex_cmds.c:5388 #, c-format msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: Файлы справки используют разные кодировки для одного языка: %s" +msgstr "E670: п╓п╟п╧п╩я▀ я│п©я─п╟п╡п╨п╦ п╦я│п©п╬п╩я▄п╥я┐я▌я┌ я─п╟п╥п╫я▀п╣ п╨п╬п╢п╦я─п╬п╡п╨п╦ п╢п╩я▐ п╬п╢п╫п╬пЁп╬ я▐п╥я▀п╨п╟: %s" -#: ex_cmds.c:5445 +#: ex_cmds.c:5466 #, c-format msgid "E154: Duplicate tag \"%s\" in file %s" -msgstr "E154: Повторяющаяся метка \"%s\" в файле %s" +msgstr "E154: п÷п╬п╡я┌п╬я─я▐я▌я┴п╟я▐я│я▐ п╪п╣я┌п╨п╟ \"%s\" п╡ я└п╟п╧п╩п╣ %s" -#: ex_cmds.c:5557 +#: ex_cmds.c:5578 #, c-format msgid "E160: Unknown sign command: %s" -msgstr "E160: Неизвестная команда значка %s" +msgstr "E160: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╨п╬п╪п╟п╫п╢п╟ п╥п╫п╟я┤п╨п╟ %s" -#: ex_cmds.c:5577 +#: ex_cmds.c:5598 msgid "E156: Missing sign name" -msgstr "E156: Пропущено имя значка" +msgstr "E156: п÷я─п╬п©я┐я┴п╣п╫п╬ п╦п╪я▐ п╥п╫п╟я┤п╨п╟" -#: ex_cmds.c:5623 +#: ex_cmds.c:5644 msgid "E612: Too many signs defined" -msgstr "E612: Определено слишком много значков" +msgstr "E612: п·п©я─п╣п╢п╣п╩п╣п╫п╬ я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╥п╫п╟я┤п╨п╬п╡" -#: ex_cmds.c:5691 +#: ex_cmds.c:5712 #, c-format msgid "E239: Invalid sign text: %s" -msgstr "E239: Неправильный текст значка: %s" +msgstr "E239: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я┌п╣п╨я│я┌ п╥п╫п╟я┤п╨п╟: %s" -#: ex_cmds.c:5722 ex_cmds.c:5913 +#: ex_cmds.c:5743 ex_cmds.c:5934 #, c-format msgid "E155: Unknown sign: %s" -msgstr "E155: Неизвестный значок: %s" +msgstr "E155: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ п╥п╫п╟я┤п╬п╨: %s" -#: ex_cmds.c:5771 +#: ex_cmds.c:5792 msgid "E159: Missing sign number" -msgstr "E159: Пропущен номер значка" +msgstr "E159: п÷я─п╬п©я┐я┴п╣п╫ п╫п╬п╪п╣я─ п╥п╫п╟я┤п╨п╟" -#: ex_cmds.c:5853 +#: ex_cmds.c:5874 #, c-format msgid "E158: Invalid buffer name: %s" -msgstr "E158: Неправильное имя буфера: %s" +msgstr "E158: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╦п╪я▐ п╠я┐я└п╣я─п╟: %s" -#: ex_cmds.c:5892 +#: ex_cmds.c:5913 #, c-format msgid "E157: Invalid sign ID: %ld" -msgstr "E157: Неправильный ID значка: %ld" +msgstr "E157: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ ID п╥п╫п╟я┤п╨п╟: %ld" -#: ex_cmds.c:5962 +#: ex_cmds.c:5983 msgid " (NOT FOUND)" -msgstr " (НЕ НАЙДЕНО)" +msgstr " (п²п∙ п²п░п≥п■п∙п²п·)" -#: ex_cmds.c:5964 +#: ex_cmds.c:5985 msgid " (not supported)" -msgstr " (не поддерживается)" +msgstr " (п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐)" -#: ex_cmds.c:6063 +#: ex_cmds.c:6084 msgid "[Deleted]" -msgstr "[Удалено]" +msgstr "[пёп╢п╟п╩п╣п╫п╬]" #: ex_cmds2.c:92 msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "Включён режим отладки. Для продолжения наберите \"cont\"" +msgstr "п▓п╨п╩я▌я┤я▒п╫ я─п╣п╤п╦п╪ п╬я┌п╩п╟п╢п╨п╦. п■п╩я▐ п©я─п╬п╢п╬п╩п╤п╣п╫п╦я▐ п╫п╟п╠п╣я─п╦я┌п╣ \"cont\"" -#: ex_cmds2.c:96 ex_docmd.c:966 +#: ex_cmds2.c:96 ex_docmd.c:968 #, c-format msgid "line %ld: %s" -msgstr "строка %ld: %s" +msgstr "я│я┌я─п╬п╨п╟ %ld: %s" #: ex_cmds2.c:98 #, c-format msgid "cmd: %s" -msgstr "команда: %s" +msgstr "п╨п╬п╪п╟п╫п╢п╟: %s" #: ex_cmds2.c:290 #, c-format msgid "Breakpoint in \"%s%s\" line %ld" -msgstr "Точка остановки в \"%s%s\" стр. %ld" +msgstr "п╒п╬я┤п╨п╟ п╬я│я┌п╟п╫п╬п╡п╨п╦ п╡ \"%s%s\" я│я┌я─. %ld" #: ex_cmds2.c:540 #, c-format msgid "E161: Breakpoint not found: %s" -msgstr "E161: Точка остановки не найдена: %s" +msgstr "E161: п╒п╬я┤п╨п╟ п╬я│я┌п╟п╫п╬п╡п╨п╦ п╫п╣ п╫п╟п╧п╢п╣п╫п╟: %s" #: ex_cmds2.c:566 msgid "No breakpoints defined" -msgstr "Точки остановки не определены" +msgstr "п╒п╬я┤п╨п╦ п╬я│я┌п╟п╫п╬п╡п╨п╦ п╫п╣ п╬п©я─п╣п╢п╣п╩п╣п╫я▀" #: ex_cmds2.c:571 #, c-format msgid "%3d %s %s line %ld" -msgstr "%3d %s %s стр. %ld" +msgstr "%3d %s %s я│я┌я─. %ld" #: ex_cmds2.c:786 #, c-format msgid "Save changes to \"%.*s\"?" -msgstr "Сохранить изменения в \"%.*s\"?" +msgstr "п║п╬я┘я─п╟п╫п╦я┌я▄ п╦п╥п╪п╣п╫п╣п╫п╦я▐ п╡ \"%.*s\"?" -#: ex_cmds2.c:788 ex_docmd.c:9378 +#: ex_cmds2.c:788 ex_docmd.c:9398 msgid "Untitled" -msgstr "Без имени" +msgstr "п▒п╣п╥ п╦п╪п╣п╫п╦" #: ex_cmds2.c:915 #, c-format msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: Несохранённые изменения в буфере \"%s\"" +msgstr "E162: п²п╣я│п╬я┘я─п╟п╫я▒п╫п╫я▀п╣ п╦п╥п╪п╣п╫п╣п╫п╦я▐ п╡ п╠я┐я└п╣я─п╣ \"%s\"" #: ex_cmds2.c:984 msgid "Warning: Entered other buffer unexpectedly (check autocommands)" msgstr "" -"Предупреждение: Неожиданный переход в другой буфер (проверьте автокоманды)" +"п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п²п╣п╬п╤п╦п╢п╟п╫п╫я▀п╧ п©п╣я─п╣я┘п╬п╢ п╡ п╢я─я┐пЁп╬п╧ п╠я┐я└п╣я─ (п©я─п╬п╡п╣я─я▄я┌п╣ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀)" #: ex_cmds2.c:1387 msgid "E163: There is only one file to edit" -msgstr "E163: Для редактирования доступен только один файл" +msgstr "E163: п■п╩я▐ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐ п╢п╬я│я┌я┐п©п╣п╫ я┌п╬п╩я▄п╨п╬ п╬п╢п╦п╫ я└п╟п╧п╩" #: ex_cmds2.c:1389 msgid "E164: Cannot go before first file" -msgstr "E164: Это первый файл" +msgstr "E164: п╜я┌п╬ п©п╣я─п╡я▀п╧ я└п╟п╧п╩" #: ex_cmds2.c:1391 msgid "E165: Cannot go beyond last file" -msgstr "E165: Это последний файл" +msgstr "E165: п╜я┌п╬ п©п╬я│п╩п╣п╢п╫п╦п╧ я└п╟п╧п╩" #: ex_cmds2.c:1804 #, c-format msgid "E666: compiler not supported: %s" -msgstr "E666: компилятор не поддерживается: %s" +msgstr "E666: п╨п╬п╪п©п╦п╩я▐я┌п╬я─ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐: %s" -#: ex_cmds2.c:1897 +#: ex_cmds2.c:1901 #, c-format msgid "Searching for \"%s\" in \"%s\"" -msgstr "Поиск \"%s\" в \"%s\"" +msgstr "п÷п╬п╦я│п╨ \"%s\" п╡ \"%s\"" -#: ex_cmds2.c:1919 +#: ex_cmds2.c:1923 #, c-format msgid "Searching for \"%s\"" -msgstr "Поиск \"%s\"" +msgstr "п÷п╬п╦я│п╨ \"%s\"" -#: ex_cmds2.c:1940 +#: ex_cmds2.c:1945 #, c-format msgid "not found in 'runtimepath': \"%s\"" -msgstr "не найдено в 'runtimepath': \"%s\"" +msgstr "п╫п╣ п╫п╟п╧п╢п╣п╫п╬ п╡ 'runtimepath': \"%s\"" -#: ex_cmds2.c:1974 +#: ex_cmds2.c:1979 msgid "Source Vim script" -msgstr "Выполнить сценарий Vim" +msgstr "п▓я▀п©п╬п╩п╫п╦я┌я▄ я│я├п╣п╫п╟я─п╦п╧ Vim" -#: ex_cmds2.c:2164 +#: ex_cmds2.c:2169 #, c-format msgid "Cannot source a directory: \"%s\"" -msgstr "Нельзя считать каталог: \"%s\"" +msgstr "п²п╣п╩я▄п╥я▐ я│я┤п╦я┌п╟я┌я▄ п╨п╟я┌п╟п╩п╬пЁ: \"%s\"" -#: ex_cmds2.c:2202 +#: ex_cmds2.c:2207 #, c-format msgid "could not source \"%s\"" -msgstr "невозможно считать \"%s\"" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│я┤п╦я┌п╟я┌я▄ \"%s\"" -#: ex_cmds2.c:2204 +#: ex_cmds2.c:2209 #, c-format msgid "line %ld: could not source \"%s\"" -msgstr "строка %ld: невозможно считать \"%s\"" +msgstr "я│я┌я─п╬п╨п╟ %ld: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│я┤п╦я┌п╟я┌я▄ \"%s\"" -#: ex_cmds2.c:2218 +#: ex_cmds2.c:2223 #, c-format msgid "sourcing \"%s\"" -msgstr "считывание сценария \"%s\"" +msgstr "я│я┤п╦я┌я▀п╡п╟п╫п╦п╣ я│я├п╣п╫п╟я─п╦я▐ \"%s\"" -#: ex_cmds2.c:2220 +#: ex_cmds2.c:2225 #, c-format msgid "line %ld: sourcing \"%s\"" -msgstr "строка %ld: считывание \"%s\"" +msgstr "я│я┌я─п╬п╨п╟ %ld: я│я┤п╦я┌я▀п╡п╟п╫п╦п╣ \"%s\"" -#: ex_cmds2.c:2363 +#: ex_cmds2.c:2368 #, c-format msgid "finished sourcing %s" -msgstr "считывание сценария %s завершено" +msgstr "я│я┤п╦я┌я▀п╡п╟п╫п╦п╣ я│я├п╣п╫п╟я─п╦я▐ %s п╥п╟п╡п╣я─я┬п╣п╫п╬" -#: ex_cmds2.c:2707 +#: ex_cmds2.c:2712 msgid "W15: Warning: Wrong line separator, ^M may be missing" msgstr "" -"W15: Предупреждение: неправильный разделитель строки. Возможно пропущено ^M" +"W15: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я─п╟п╥п╢п╣п╩п╦я┌п╣п╩я▄ я│я┌я─п╬п╨п╦. п▓п╬п╥п╪п╬п╤п╫п╬ п©я─п╬п©я┐я┴п╣п╫п╬ ^M" -#: ex_cmds2.c:2756 +#: ex_cmds2.c:2761 msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: Команда :scriptencoding используется вне файла сценария" +msgstr "E167: п п╬п╪п╟п╫п╢п╟ :scriptencoding п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ п╡п╫п╣ я└п╟п╧п╩п╟ я│я├п╣п╫п╟я─п╦я▐" -#: ex_cmds2.c:2789 +#: ex_cmds2.c:2794 msgid "E168: :finish used outside of a sourced file" -msgstr "E168: Команда :finish используется вне файла сценария" +msgstr "E168: п п╬п╪п╟п╫п╢п╟ :finish п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ п╡п╫п╣ я└п╟п╧п╩п╟ я│я├п╣п╫п╟я─п╦я▐" -#: ex_cmds2.c:3238 +#: ex_cmds2.c:3243 #, c-format msgid "Page %d" -msgstr "Страница %d" +msgstr "п║я┌я─п╟п╫п╦я├п╟ %d" -#: ex_cmds2.c:3394 +#: ex_cmds2.c:3399 msgid "No text to be printed" -msgstr "Печатать нечего" +msgstr "п÷п╣я┤п╟я┌п╟я┌я▄ п╫п╣я┤п╣пЁп╬" -#: ex_cmds2.c:3472 +#: ex_cmds2.c:3477 #, c-format msgid "Printing page %d (%d%%)" -msgstr "Печать стр. %d (%d%%)" +msgstr "п÷п╣я┤п╟я┌я▄ я│я┌я─. %d (%d%%)" -#: ex_cmds2.c:3484 +#: ex_cmds2.c:3489 #, c-format msgid " Copy %d of %d" -msgstr " Копия %d из %d" +msgstr " п п╬п©п╦я▐ %d п╦п╥ %d" -#: ex_cmds2.c:3542 +#: ex_cmds2.c:3547 #, c-format msgid "Printed: %s" -msgstr "Напечатано: %s" +msgstr "п²п╟п©п╣я┤п╟я┌п╟п╫п╬: %s" -#: ex_cmds2.c:3549 +#: ex_cmds2.c:3554 #, c-format msgid "Printing aborted" -msgstr "Печать прекращена" +msgstr "п÷п╣я┤п╟я┌я▄ п©я─п╣п╨я─п╟я┴п╣п╫п╟" -#: ex_cmds2.c:3914 +#: ex_cmds2.c:3919 msgid "E455: Error writing to PostScript output file" -msgstr "E455: Ошибка записи в файл PostScript" +msgstr "E455: п·я┬п╦п╠п╨п╟ п╥п╟п©п╦я│п╦ п╡ я└п╟п╧п╩ PostScript" -#: ex_cmds2.c:4189 +#: ex_cmds2.c:4194 #, c-format msgid "E624: Can't open file \"%s\"" -msgstr "E624: Невозможно открыть файл \"%s\"" +msgstr "E624: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ \"%s\"" -#: ex_cmds2.c:4199 ex_cmds2.c:4824 +#: ex_cmds2.c:4204 ex_cmds2.c:4829 #, c-format msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: Невозможно прочитать файл ресурсов PostScript \"%s\"" +msgstr "E457: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ я└п╟п╧п╩ я─п╣я│я┐я─я│п╬п╡ PostScript \"%s\"" -#: ex_cmds2.c:4207 +#: ex_cmds2.c:4212 #, c-format msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: файл \"%s\" не является файлом ресурсов PostScript" +msgstr "E618: я└п╟п╧п╩ \"%s\" п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я└п╟п╧п╩п╬п╪ я─п╣я│я┐я─я│п╬п╡ PostScript" -#: ex_cmds2.c:4222 ex_cmds2.c:4242 ex_cmds2.c:4257 ex_cmds2.c:4279 +#: ex_cmds2.c:4227 ex_cmds2.c:4247 ex_cmds2.c:4262 ex_cmds2.c:4284 #, c-format msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: файл \"%s\" не является допустимым файлом ресурсов PostScript" +msgstr "E619: я└п╟п╧п╩ \"%s\" п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п╢п╬п©я┐я│я┌п╦п╪я▀п╪ я└п╟п╧п╩п╬п╪ я─п╣я│я┐я─я│п╬п╡ PostScript" -#: ex_cmds2.c:4309 +#: ex_cmds2.c:4314 #, c-format msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: файл ресурсов \"%s\" неизвестной версии" +msgstr "E621: я└п╟п╧п╩ я─п╣я│я┐я─я│п╬п╡ \"%s\" п╫п╣п╦п╥п╡п╣я│я┌п╫п╬п╧ п╡п╣я─я│п╦п╦" -#: ex_cmds2.c:4776 +#: ex_cmds2.c:4781 msgid "E324: Can't open PostScript output file" -msgstr "E324: Невозможно открыть файл PostScript" +msgstr "E324: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ PostScript" -#: ex_cmds2.c:4809 +#: ex_cmds2.c:4814 #, c-format msgid "E456: Can't open file \"%s\"" -msgstr "E456: Невозможно открыть файл \"%s\"" +msgstr "E456: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ \"%s\"" -#: ex_cmds2.c:4928 +#: ex_cmds2.c:4933 msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: Файл ресурсов PostScript \"prolog.ps\" не найден" +msgstr "E456: п╓п╟п╧п╩ я─п╣я│я┐я─я│п╬п╡ PostScript \"prolog.ps\" п╫п╣ п╫п╟п╧п╢п╣п╫" -#: ex_cmds2.c:4959 +#: ex_cmds2.c:4964 #, c-format msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: Файл ресурсов PostScript \"%s.ps\" не найден" +msgstr "E456: п╓п╟п╧п╩ я─п╣я│я┐я─я│п╬п╡ PostScript \"%s.ps\" п╫п╣ п╫п╟п╧п╢п╣п╫" -#: ex_cmds2.c:4977 +#: ex_cmds2.c:4982 #, c-format msgid "E620: Unable to convert from multi-byte to \"%s\" encoding" msgstr "" -"E620: Преобразование из мультибайтных символов в кодировку \"%s\" невозможно" +"E620: п÷я─п╣п╬п╠я─п╟п╥п╬п╡п╟п╫п╦п╣ п╦п╥ п╪я┐п╩я▄я┌п╦п╠п╟п╧я┌п╫я▀я┘ я│п╦п╪п╡п╬п╩п╬п╡ п╡ п╨п╬п╢п╦я─п╬п╡п╨я┐ \"%s\" п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬" -#: ex_cmds2.c:5102 +#: ex_cmds2.c:5107 msgid "Sending to printer..." -msgstr "Отправка на печать..." +msgstr "п·я┌п©я─п╟п╡п╨п╟ п╫п╟ п©п╣я┤п╟я┌я▄..." -#: ex_cmds2.c:5106 +#: ex_cmds2.c:5111 msgid "E365: Failed to print PostScript file" -msgstr "E365: Не удалось выполнить печать файла PostScript" +msgstr "E365: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ п©п╣я┤п╟я┌я▄ я└п╟п╧п╩п╟ PostScript" -#: ex_cmds2.c:5108 +#: ex_cmds2.c:5113 msgid "Print job sent." -msgstr "Задание на печать отправлено." +msgstr "п≈п╟п╢п╟п╫п╦п╣ п╫п╟ п©п╣я┤п╟я┌я▄ п╬я┌п©я─п╟п╡п╩п╣п╫п╬." -#: ex_cmds2.c:5618 +#: ex_cmds2.c:5623 #, c-format msgid "Current %slanguage: \"%s\"" -msgstr "Активный %sязык: \"%s\"" +msgstr "п░п╨я┌п╦п╡п╫я▀п╧ %sя▐п╥я▀п╨: \"%s\"" -#: ex_cmds2.c:5629 +#: ex_cmds2.c:5634 #, c-format msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: Невозможно сменить язык на \"%s\"" +msgstr "E197: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╪п╣п╫п╦я┌я▄ я▐п╥я▀п╨ п╫п╟ \"%s\"" #: ex_docmd.c:525 msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "Переход в режим Ex. Для перехода в Обычный режим наберите \"visual\"" +msgstr "п÷п╣я─п╣я┘п╬п╢ п╡ я─п╣п╤п╦п╪ Ex. п■п╩я▐ п©п╣я─п╣я┘п╬п╢п╟ п╡ п·п╠я▀я┤п╫я▀п╧ я─п╣п╤п╦п╪ п╫п╟п╠п╣я─п╦я┌п╣ \"visual\"" #. must be at EOF #: ex_docmd.c:561 msgid "E501: At end-of-file" -msgstr "E501: В конце файла" +msgstr "E501: п▓ п╨п╬п╫я├п╣ я└п╟п╧п╩п╟" -#: ex_docmd.c:669 +#: ex_docmd.c:670 msgid "E169: Command too recursive" -msgstr "E169: Cлишком рекурсивная команда" +msgstr "E169: Cп╩п╦я┬п╨п╬п╪ я─п╣п╨я┐я─я│п╦п╡п╫п╟я▐ п╨п╬п╪п╟п╫п╢п╟" -#: ex_docmd.c:1229 +#: ex_docmd.c:1232 #, c-format msgid "E605: Exception not caught: %s" -msgstr "E605: Исключительная ситуация не обработана: %s" +msgstr "E605: п≤я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╟я▐ я│п╦я┌я┐п╟я├п╦я▐ п╫п╣ п╬п╠я─п╟п╠п╬я┌п╟п╫п╟: %s" -#: ex_docmd.c:1317 +#: ex_docmd.c:1320 msgid "End of sourced file" -msgstr "Конец считанного файла" +msgstr "п п╬п╫п╣я├ я│я┤п╦я┌п╟п╫п╫п╬пЁп╬ я└п╟п╧п╩п╟" -#: ex_docmd.c:1318 +#: ex_docmd.c:1321 msgid "End of function" -msgstr "Конец функции" +msgstr "п п╬п╫п╣я├ я└я┐п╫п╨я├п╦п╦" -#: ex_docmd.c:1907 +#: ex_docmd.c:1910 msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: Неоднозначное использование команды пользователя" +msgstr "E464: п²п╣п╬п╢п╫п╬п╥п╫п╟я┤п╫п╬п╣ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ п╨п╬п╪п╟п╫п╢я▀ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▐" -#: ex_docmd.c:1921 +#: ex_docmd.c:1924 msgid "E492: Not an editor command" -msgstr "E492: Это не команда редактора" +msgstr "E492: п╜я┌п╬ п╫п╣ п╨п╬п╪п╟п╫п╢п╟ я─п╣п╢п╟п╨я┌п╬я─п╟" -#: ex_docmd.c:2028 +#: ex_docmd.c:2031 msgid "E493: Backwards range given" -msgstr "E493: Задан обратный диапазон" +msgstr "E493: п≈п╟п╢п╟п╫ п╬п╠я─п╟я┌п╫я▀п╧ п╢п╦п╟п©п╟п╥п╬п╫" -#: ex_docmd.c:2037 +#: ex_docmd.c:2040 msgid "Backwards range given, OK to swap" -msgstr "Задан обратный диапазон, меняем границы местами" +msgstr "п≈п╟п╢п╟п╫ п╬п╠я─п╟я┌п╫я▀п╧ п╢п╦п╟п©п╟п╥п╬п╫, п╪п╣п╫я▐п╣п╪ пЁя─п╟п╫п╦я├я▀ п╪п╣я│я┌п╟п╪п╦" -#: ex_docmd.c:2160 +#: ex_docmd.c:2163 msgid "E494: Use w or w>>" -msgstr "E494: Используйте w или w>>" +msgstr "E494: п≤я│п©п╬п╩я▄п╥я┐п╧я┌п╣ w п╦п╩п╦ w>>" -#: ex_docmd.c:3786 +#: ex_docmd.c:3789 msgid "E319: Sorry, the command is not available in this version" -msgstr "E319: Извините, эта команда недоступна в данной версии" +msgstr "E319: п≤п╥п╡п╦п╫п╦я┌п╣, я█я┌п╟ п╨п╬п╪п╟п╫п╢п╟ п╫п╣п╢п╬я│я┌я┐п©п╫п╟ п╡ п╢п╟п╫п╫п╬п╧ п╡п╣я─я│п╦п╦" -#: ex_docmd.c:3989 +#: ex_docmd.c:3992 msgid "E172: Only one file name allowed" -msgstr "E172: Разрешено использовать только одно имя файла" +msgstr "E172: п═п╟п╥я─п╣я┬п╣п╫п╬ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я┌п╬п╩я▄п╨п╬ п╬п╢п╫п╬ п╦п╪я▐ я└п╟п╧п╩п╟" -#: ex_docmd.c:4569 +#: ex_docmd.c:4572 msgid "1 more file to edit. Quit anyway?" -msgstr "1 файл ожидает редактирования. Выйти?" +msgstr "1 я└п╟п╧п╩ п╬п╤п╦п╢п╟п╣я┌ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐. п▓я▀п╧я┌п╦?" -#: ex_docmd.c:4572 +#: ex_docmd.c:4575 #, c-format msgid "%d more files to edit. Quit anyway?" -msgstr "Есть неотредактированные файлы (%d). Выйти?" +msgstr "п∙я│я┌я▄ п╫п╣п╬я┌я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╫я▀п╣ я└п╟п╧п╩я▀ (%d). п▓я▀п╧я┌п╦?" -#: ex_docmd.c:4579 +#: ex_docmd.c:4582 msgid "E173: 1 more file to edit" -msgstr "E173: 1 файл ожидает редактирования." +msgstr "E173: 1 я└п╟п╧п╩ п╬п╤п╦п╢п╟п╣я┌ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐." -#: ex_docmd.c:4581 +#: ex_docmd.c:4584 #, c-format msgid "E173: %ld more files to edit" -msgstr "E173: Есть неотредактированные файлы (%d)." +msgstr "E173: п∙я│я┌я▄ п╫п╣п╬я┌я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╫я▀п╣ я└п╟п╧п╩я▀ (%d)." -#: ex_docmd.c:4676 +#: ex_docmd.c:4679 msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: Команда уже существует. Добавьте ! для замены." +msgstr "E174: п п╬п╪п╟п╫п╢п╟ я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌. п■п╬п╠п╟п╡я▄я┌п╣ ! п╢п╩я▐ п╥п╟п╪п╣п╫я▀." -#: ex_docmd.c:4787 +#: ex_docmd.c:4790 msgid "" "\n" " Name Args Range Complete Definition" msgstr "" "\n" -" Имя Парам. Диап. Дополн. Определение" +" п≤п╪я▐ п÷п╟я─п╟п╪. п■п╦п╟п©. п■п╬п©п╬п╩п╫. п·п©я─п╣п╢п╣п╩п╣п╫п╦п╣" -#: ex_docmd.c:4876 +#: ex_docmd.c:4879 msgid "No user-defined commands found" -msgstr "Команды, определённые пользователем, не обнаружены." +msgstr "п п╬п╪п╟п╫п╢я▀, п╬п©я─п╣п╢п╣п╩я▒п╫п╫я▀п╣ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩п╣п╪, п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫я▀." -#: ex_docmd.c:4908 +#: ex_docmd.c:4911 msgid "E175: No attribute specified" -msgstr "E175: параметр не задан" +msgstr "E175: п©п╟я─п╟п╪п╣я┌я─ п╫п╣ п╥п╟п╢п╟п╫" -#: ex_docmd.c:4960 +#: ex_docmd.c:4963 msgid "E176: Invalid number of arguments" -msgstr "E176: Неправильное количество параметров" +msgstr "E176: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╨п╬п╩п╦я┤п╣я│я┌п╡п╬ п©п╟я─п╟п╪п╣я┌я─п╬п╡" -#: ex_docmd.c:4975 +#: ex_docmd.c:4978 msgid "E177: Count cannot be specified twice" -msgstr "E177: Число-приставку нельзя указывать дважды" +msgstr "E177: п╖п╦я│п╩п╬-п©я─п╦я│я┌п╟п╡п╨я┐ п╫п╣п╩я▄п╥я▐ я┐п╨п╟п╥я▀п╡п╟я┌я▄ п╢п╡п╟п╤п╢я▀" -#: ex_docmd.c:4985 +#: ex_docmd.c:4988 msgid "E178: Invalid default value for count" -msgstr "E178: Неправильное значение числа-приставки по умолчанию" +msgstr "E178: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я┤п╦я│п╩п╟-п©я─п╦я│я┌п╟п╡п╨п╦ п©п╬ я┐п╪п╬п╩я┤п╟п╫п╦я▌" -#: ex_docmd.c:5016 +#: ex_docmd.c:5019 msgid "E179: argument required for complete" -msgstr "E179: для завершения требуется указать параметр" +msgstr "E179: п╢п╩я▐ п╥п╟п╡п╣я─я┬п╣п╫п╦я▐ я┌я─п╣п╠я┐п╣я┌я│я▐ я┐п╨п╟п╥п╟я┌я▄ п©п╟я─п╟п╪п╣я┌я─" -#: ex_docmd.c:5048 +#: ex_docmd.c:5051 #, c-format msgid "E180: Invalid complete value: %s" -msgstr "E180: Неправильное значение дополнения: %s" +msgstr "E180: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п╢п╬п©п╬п╩п╫п╣п╫п╦я▐: %s" -#: ex_docmd.c:5057 +#: ex_docmd.c:5060 msgid "E468: Completion argument only allowed for custom completion" msgstr "" -"E468: Параметр автодополнения можно использовать только с особым дополнением" +"E468: п÷п╟я─п╟п╪п╣я┌я─ п╟п╡я┌п╬п╢п╬п©п╬п╩п╫п╣п╫п╦я▐ п╪п╬п╤п╫п╬ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я┌п╬п╩я▄п╨п╬ я│ п╬я│п╬п╠я▀п╪ п╢п╬п©п╬п╩п╫п╣п╫п╦п╣п╪" -#: ex_docmd.c:5063 +#: ex_docmd.c:5066 msgid "E467: Custom completion requires a function argument" -msgstr "E467: Особое дополнение требует указания параметра функции" +msgstr "E467: п·я│п╬п╠п╬п╣ п╢п╬п©п╬п╩п╫п╣п╫п╦п╣ я┌я─п╣п╠я┐п╣я┌ я┐п╨п╟п╥п╟п╫п╦я▐ п©п╟я─п╟п╪п╣я┌я─п╟ я└я┐п╫п╨я├п╦п╦" -#: ex_docmd.c:5074 +#: ex_docmd.c:5077 #, c-format msgid "E181: Invalid attribute: %s" -msgstr "E181: Неправильный атрибут: %s" +msgstr "E181: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ п╟я┌я─п╦п╠я┐я┌: %s" -#: ex_docmd.c:5117 +#: ex_docmd.c:5120 msgid "E182: Invalid command name" -msgstr "E182: Неправильное имя команды" +msgstr "E182: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╦п╪я▐ п╨п╬п╪п╟п╫п╢я▀" -#: ex_docmd.c:5132 +#: ex_docmd.c:5135 msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: Команда пользователя должна начинаться с заглавной буквы" +msgstr "E183: п п╬п╪п╟п╫п╢п╟ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▐ п╢п╬п╩п╤п╫п╟ п╫п╟я┤п╦п╫п╟я┌я▄я│я▐ я│ п╥п╟пЁп╩п╟п╡п╫п╬п╧ п╠я┐п╨п╡я▀" -#: ex_docmd.c:5203 +#: ex_docmd.c:5206 #, c-format msgid "E184: No such user-defined command: %s" -msgstr "E184: Нет такой команды пользователя: %s" +msgstr "E184: п²п╣я┌ я┌п╟п╨п╬п╧ п╨п╬п╪п╟п╫п╢я▀ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▐: %s" -#: ex_docmd.c:5664 +#: ex_docmd.c:5667 #, c-format msgid "E185: Cannot find color scheme %s" -msgstr "E185: Цветовая схема %s не найдена" +msgstr "E185: п╕п╡п╣я┌п╬п╡п╟я▐ я│я┘п╣п╪п╟ %s п╫п╣ п╫п╟п╧п╢п╣п╫п╟" -#: ex_docmd.c:5672 +#: ex_docmd.c:5675 msgid "Greetings, Vim user!" -msgstr "Привет, пользователь Vim!" +msgstr "п÷я─п╦п╡п╣я┌, п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄ Vim!" -#: ex_docmd.c:6389 +#: ex_docmd.c:6393 msgid "Edit File in new window" -msgstr "Редактировать файл в новом окне" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ я└п╟п╧п╩ п╡ п╫п╬п╡п╬п╪ п╬п╨п╫п╣" -#: ex_docmd.c:6684 +#: ex_docmd.c:6688 msgid "No swap file" -msgstr "Без своп-файла" +msgstr "п▒п╣п╥ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: ex_docmd.c:6788 +#: ex_docmd.c:6792 msgid "Append File" -msgstr "Добавить файл" +msgstr "п■п╬п╠п╟п╡п╦я┌я▄ я└п╟п╧п╩" -#: ex_docmd.c:6852 +#: ex_docmd.c:6856 msgid "E186: No previous directory" -msgstr "E186: Нет предыдущего каталога" +msgstr "E186: п²п╣я┌ п©я─п╣п╢я▀п╢я┐я┴п╣пЁп╬ п╨п╟я┌п╟п╩п╬пЁп╟" -#: ex_docmd.c:6934 +#: ex_docmd.c:6938 msgid "E187: Unknown" -msgstr "E187: Неизвестно" +msgstr "E187: п²п╣п╦п╥п╡п╣я│я┌п╫п╬" -#: ex_docmd.c:7019 +#: ex_docmd.c:7023 msgid "E465: :winsize requires two number arguments" -msgstr "E465: команда :winsize требует указания двух числовых параметров" +msgstr "E465: п╨п╬п╪п╟п╫п╢п╟ :winsize я┌я─п╣п╠я┐п╣я┌ я┐п╨п╟п╥п╟п╫п╦я▐ п╢п╡я┐я┘ я┤п╦я│п╩п╬п╡я▀я┘ п©п╟я─п╟п╪п╣я┌я─п╬п╡" -#: ex_docmd.c:7075 +#: ex_docmd.c:7079 #, c-format msgid "Window position: X %d, Y %d" -msgstr "Положение окна: X %d, Y %d" +msgstr "п÷п╬п╩п╬п╤п╣п╫п╦п╣ п╬п╨п╫п╟: X %d, Y %d" -#: ex_docmd.c:7080 +#: ex_docmd.c:7084 msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: В данной системе определение положения окна не работает" +msgstr "E188: п▓ п╢п╟п╫п╫п╬п╧ я│п╦я│я┌п╣п╪п╣ п╬п©я─п╣п╢п╣п╩п╣п╫п╦п╣ п©п╬п╩п╬п╤п╣п╫п╦я▐ п╬п╨п╫п╟ п╫п╣ я─п╟п╠п╬я┌п╟п╣я┌" -#: ex_docmd.c:7090 +#: ex_docmd.c:7094 msgid "E466: :winpos requires two number arguments" -msgstr "E466: команда :winpos требует указания двух числовых параметров" +msgstr "E466: п╨п╬п╪п╟п╫п╢п╟ :winpos я┌я─п╣п╠я┐п╣я┌ я┐п╨п╟п╥п╟п╫п╦я▐ п╢п╡я┐я┘ я┤п╦я│п╩п╬п╡я▀я┘ п©п╟я─п╟п╪п╣я┌я─п╬п╡" -#: ex_docmd.c:7368 +#: ex_docmd.c:7372 msgid "Save Redirection" -msgstr "Перенаправление записи" +msgstr "п÷п╣я─п╣п╫п╟п©я─п╟п╡п╩п╣п╫п╦п╣ п╥п╟п©п╦я│п╦" -#: ex_docmd.c:7558 +#: ex_docmd.c:7562 msgid "Save View" -msgstr "Сохранение вида" +msgstr "п║п╬я┘я─п╟п╫п╣п╫п╦п╣ п╡п╦п╢п╟" -#: ex_docmd.c:7559 +#: ex_docmd.c:7563 msgid "Save Session" -msgstr "Сохранение сеанса" +msgstr "п║п╬я┘я─п╟п╫п╣п╫п╦п╣ я│п╣п╟п╫я│п╟" -#: ex_docmd.c:7561 +#: ex_docmd.c:7565 msgid "Save Setup" -msgstr "Сохранение настроек" +msgstr "п║п╬я┘я─п╟п╫п╣п╫п╦п╣ п╫п╟я│я┌я─п╬п╣п╨" -#: ex_docmd.c:7713 +#: ex_docmd.c:7717 #, c-format msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" существует (!, чтобы обойти проверку)" +msgstr "E189: \"%s\" я│я┐я┴п╣я│я┌п╡я┐п╣я┌ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: ex_docmd.c:7718 +#: ex_docmd.c:7722 #, c-format msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: Невозможно открыть для записи \"%s\"" +msgstr "E190: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╢п╩я▐ п╥п╟п©п╦я│п╦ \"%s\"" #. set mark -#: ex_docmd.c:7742 +#: ex_docmd.c:7746 msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: Параметр должен быть прямой/обратной кавычкой или буквой" +msgstr "E191: п÷п╟я─п╟п╪п╣я┌я─ п╢п╬п╩п╤п╣п╫ п╠я▀я┌я▄ п©я─я▐п╪п╬п╧/п╬п╠я─п╟я┌п╫п╬п╧ п╨п╟п╡я▀я┤п╨п╬п╧ п╦п╩п╦ п╠я┐п╨п╡п╬п╧" -#: ex_docmd.c:7784 +#: ex_docmd.c:7788 msgid "E192: Recursive use of :normal too deep" -msgstr "E192: Слишком глубокая рекурсия при использовании команды :normal" +msgstr "E192: п║п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╟я▐ я─п╣п╨я┐я─я│п╦я▐ п©я─п╦ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╦ п╨п╬п╪п╟п╫п╢я▀ :normal" -#: ex_docmd.c:8302 +#: ex_docmd.c:8306 msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: Нет соседнего имени файла для замены '#'" +msgstr "E194: п²п╣я┌ я│п╬я│п╣п╢п╫п╣пЁп╬ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟ п╢п╩я▐ п╥п╟п╪п╣п╫я▀ '#'" -#: ex_docmd.c:8333 +#: ex_docmd.c:8337 msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: Нет автокомандного имени файла для замены \"<afile>\"" +msgstr "E495: п²п╣я┌ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╫п╬пЁп╬ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟ п╢п╩я▐ п╥п╟п╪п╣п╫я▀ \"<afile>\"" -#: ex_docmd.c:8341 +#: ex_docmd.c:8345 msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: Нет автокомандного номера буфера для замены \"<abuf>\"" +msgstr "E496: п²п╣я┌ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╫п╬пЁп╬ п╫п╬п╪п╣я─п╟ п╠я┐я└п╣я─п╟ п╢п╩я▐ п╥п╟п╪п╣п╫я▀ \"<abuf>\"" -#: ex_docmd.c:8352 +#: ex_docmd.c:8356 msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: Нет автокомандного имени соответствия для замены \"<amatch>\"" +msgstr "E497: п²п╣я┌ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╫п╬пЁп╬ п╦п╪п╣п╫п╦ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐ п╢п╩я▐ п╥п╟п╪п╣п╫я▀ \"<amatch>\"" -#: ex_docmd.c:8362 +#: ex_docmd.c:8366 msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: нет имени файла :source для замены \"<sfile>\"" +msgstr "E498: п╫п╣я┌ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟ :source п╢п╩я▐ п╥п╟п╪п╣п╫я▀ \"<sfile>\"" -#: ex_docmd.c:8403 +#: ex_docmd.c:8407 #, no-c-format msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: Пустое имя файла для '%' или '#', возможно только c \":p:h\"" +msgstr "E499: п÷я┐я│я┌п╬п╣ п╦п╪я▐ я└п╟п╧п╩п╟ п╢п╩я▐ '%' п╦п╩п╦ '#', п╡п╬п╥п╪п╬п╤п╫п╬ я┌п╬п╩я▄п╨п╬ c \":p:h\"" -#: ex_docmd.c:8405 +#: ex_docmd.c:8409 msgid "E500: Evaluates to an empty string" -msgstr "E500: Результатом выражения является пустая строка" +msgstr "E500: п═п╣п╥я┐п╩я▄я┌п╟я┌п╬п╪ п╡я▀я─п╟п╤п╣п╫п╦я▐ я▐п╡п╩я▐п╣я┌я│я▐ п©я┐я│я┌п╟я▐ я│я┌я─п╬п╨п╟" -#: ex_docmd.c:9360 +#: ex_docmd.c:9380 msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: Невозможно открыть файл viminfo для чтения" +msgstr "E195: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ viminfo п╢п╩я▐ я┤я┌п╣п╫п╦я▐" -#: ex_docmd.c:9533 +#: ex_docmd.c:9553 msgid "E196: No digraphs in this version" -msgstr "E196: В этой версии диграфы не работают" +msgstr "E196: п▓ я█я┌п╬п╧ п╡п╣я─я│п╦п╦ п╢п╦пЁя─п╟я└я▀ п╫п╣ я─п╟п╠п╬я┌п╟я▌я┌" #: ex_eval.c:440 msgid "E608: Cannot :throw exceptions with 'Vim' prefix" msgstr "" -"E608: Невозможно выполнить команду :throw для исключений с приставкой 'Vim'" +"E608: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ п╨п╬п╪п╟п╫п╢я┐ :throw п╢п╩я▐ п╦я│п╨п╩я▌я┤п╣п╫п╦п╧ я│ п©я─п╦я│я┌п╟п╡п╨п╬п╧ 'Vim'" #. always scroll up, don't overwrite #: ex_eval.c:529 #, c-format msgid "Exception thrown: %s" -msgstr "Исключительная ситуация: %s" +msgstr "п≤я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╟я▐ я│п╦я┌я┐п╟я├п╦я▐: %s" #: ex_eval.c:576 #, c-format msgid "Exception finished: %s" -msgstr "Завершена обработка исключительной ситуации: %s" +msgstr "п≈п╟п╡п╣я─я┬п╣п╫п╟ п╬п╠я─п╟п╠п╬я┌п╨п╟ п╦я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╬п╧ я│п╦я┌я┐п╟я├п╦п╦: %s" #: ex_eval.c:577 #, c-format msgid "Exception discarded: %s" -msgstr "Исключительная ситуация проигнорирована: %s" +msgstr "п≤я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╟я▐ я│п╦я┌я┐п╟я├п╦я▐ п©я─п╬п╦пЁп╫п╬я─п╦я─п╬п╡п╟п╫п╟: %s" #: ex_eval.c:620 ex_eval.c:664 #, c-format msgid "%s, line %ld" -msgstr "%s, строка %ld" +msgstr "%s, я│я┌я─п╬п╨п╟ %ld" #. always scroll up, don't overwrite #: ex_eval.c:638 #, c-format msgid "Exception caught: %s" -msgstr "Обработка исключительной ситуации: %s" +msgstr "п·п╠я─п╟п╠п╬я┌п╨п╟ п╦я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╬п╧ я│п╦я┌я┐п╟я├п╦п╦: %s" #: ex_eval.c:713 #, c-format msgid "%s made pending" -msgstr "%s выполняет ожидание" +msgstr "%s п╡я▀п©п╬п╩п╫я▐п╣я┌ п╬п╤п╦п╢п╟п╫п╦п╣" #: ex_eval.c:716 #, c-format msgid "%s resumed" -msgstr "%s возобновлено" +msgstr "%s п╡п╬п╥п╬п╠п╫п╬п╡п╩п╣п╫п╬" #: ex_eval.c:720 #, c-format msgid "%s discarded" -msgstr "%s пропущено" +msgstr "%s п©я─п╬п©я┐я┴п╣п╫п╬" #: ex_eval.c:746 msgid "Exception" -msgstr "Исключительная ситуация" +msgstr "п≤я│п╨п╩я▌я┤п╦я┌п╣п╩я▄п╫п╟я▐ я│п╦я┌я┐п╟я├п╦я▐" #: ex_eval.c:752 msgid "Error and interrupt" -msgstr "Ошибка и прерывание" +msgstr "п·я┬п╦п╠п╨п╟ п╦ п©я─п╣я─я▀п╡п╟п╫п╦п╣" -#: ex_eval.c:754 gui.c:4381 +#: ex_eval.c:754 gui.c:4384 msgid "Error" -msgstr "Ошибка" +msgstr "п·я┬п╦п╠п╨п╟" #. if (pending & CSTP_INTERRUPT) #: ex_eval.c:756 msgid "Interrupt" -msgstr "Прерывание" +msgstr "п÷я─п╣я─я▀п╡п╟п╫п╦п╣" #: ex_eval.c:830 msgid "E579: :if nesting too deep" -msgstr "E579: слишком глубоко вложенный :if" +msgstr "E579: я│п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╬ п╡п╩п╬п╤п╣п╫п╫я▀п╧ :if" #: ex_eval.c:867 msgid "E580: :endif without :if" -msgstr "E580: :endif без :if" +msgstr "E580: :endif п╠п╣п╥ :if" #: ex_eval.c:911 msgid "E581: :else without :if" -msgstr "E581: :else без :if" +msgstr "E581: :else п╠п╣п╥ :if" #: ex_eval.c:914 msgid "E582: :elseif without :if" -msgstr "E582: :elseif без :if" +msgstr "E582: :elseif п╠п╣п╥ :if" #: ex_eval.c:921 msgid "E583: multiple :else" -msgstr "E583: обнаружено несколько :else" +msgstr "E583: п╬п╠п╫п╟я─я┐п╤п╣п╫п╬ п╫п╣я│п╨п╬п╩я▄п╨п╬ :else" #: ex_eval.c:924 msgid "E584: :elseif after :else" -msgstr "E584: :elseif после :else" +msgstr "E584: :elseif п©п╬я│п╩п╣ :else" #: ex_eval.c:991 msgid "E585: :while nesting too deep" -msgstr "E585: слишком глубоко вложенный :while" +msgstr "E585: я│п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╬ п╡п╩п╬п╤п╣п╫п╫я▀п╧ :while" #: ex_eval.c:1047 msgid "E586: :continue without :while" -msgstr "E586: :continue без :while" +msgstr "E586: :continue п╠п╣п╥ :while" #: ex_eval.c:1087 msgid "E587: :break without :while" -msgstr "E587: :break без :while" +msgstr "E587: :break п╠п╣п╥ :while" #: ex_eval.c:1286 msgid "E601: :try nesting too deep" -msgstr "E601: слишком глубоко вложенный :try" +msgstr "E601: я│п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╬ п╡п╩п╬п╤п╣п╫п╫я▀п╧ :try" #: ex_eval.c:1366 msgid "E603: :catch without :try" -msgstr "E603: :catch без :try" +msgstr "E603: :catch п╠п╣п╥ :try" #. Give up for a ":catch" after ":finally" and ignore it. #. * Just parse. #: ex_eval.c:1388 msgid "E604: :catch after :finally" -msgstr "E604: :catch без :finally" +msgstr "E604: :catch п╠п╣п╥ :finally" #: ex_eval.c:1521 msgid "E606: :finally without :try" -msgstr "E606: :finally без :try" +msgstr "E606: :finally п╠п╣п╥ :try" #. Give up for a multiple ":finally" and ignore it. #: ex_eval.c:1545 msgid "E607: multiple :finally" -msgstr "E607: обнаружено несколько :finally" +msgstr "E607: п╬п╠п╫п╟я─я┐п╤п╣п╫п╬ п╫п╣я│п╨п╬п╩я▄п╨п╬ :finally" #: ex_eval.c:1654 msgid "E602: :endtry without :try" -msgstr "E602: :endtry без :try" +msgstr "E602: :endtry п╠п╣п╥ :try" #: ex_eval.c:1986 msgid "E193: :endfunction not inside a function" -msgstr "E193: команда :endfunction может использоваться только внутри функции" +msgstr "E193: п╨п╬п╪п╟п╫п╢п╟ :endfunction п╪п╬п╤п╣я┌ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄я│я▐ я┌п╬п╩я▄п╨п╬ п╡п╫я┐я┌я─п╦ я└я┐п╫п╨я├п╦п╦" -#: ex_getln.c:3296 +#: ex_getln.c:3299 msgid "tagname" -msgstr "имя метки" +msgstr "п╦п╪я▐ п╪п╣я┌п╨п╦" -#: ex_getln.c:3299 +#: ex_getln.c:3302 msgid " kind file\n" -msgstr " тип файла\n" +msgstr " я┌п╦п© я└п╟п╧п╩п╟\n" -#: ex_getln.c:4752 +#: ex_getln.c:4768 msgid "'history' option is zero" -msgstr "значение опции 'history' равно нулю" +msgstr "п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'history' я─п╟п╡п╫п╬ п╫я┐п╩я▌" -#: ex_getln.c:5023 +#: ex_getln.c:5039 #, c-format msgid "" "\n" "# %s History (newest to oldest):\n" msgstr "" "\n" -"# %s, история (начиная от свежего к старому):\n" +"# %s, п╦я│я┌п╬я─п╦я▐ (п╫п╟я┤п╦п╫п╟я▐ п╬я┌ я│п╡п╣п╤п╣пЁп╬ п╨ я│я┌п╟я─п╬п╪я┐):\n" -#: ex_getln.c:5024 +#: ex_getln.c:5040 msgid "Command Line" -msgstr "Командная строка" +msgstr "п п╬п╪п╟п╫п╢п╫п╟я▐ я│я┌я─п╬п╨п╟" -#: ex_getln.c:5025 +#: ex_getln.c:5041 msgid "Search String" -msgstr "Строка поиска" +msgstr "п║я┌я─п╬п╨п╟ п©п╬п╦я│п╨п╟" -#: ex_getln.c:5026 +#: ex_getln.c:5042 msgid "Expression" -msgstr "Выражение" +msgstr "п▓я▀я─п╟п╤п╣п╫п╦п╣" -#: ex_getln.c:5027 +#: ex_getln.c:5043 msgid "Input Line" -msgstr "Строка ввода" +msgstr "п║я┌я─п╬п╨п╟ п╡п╡п╬п╢п╟" -#: ex_getln.c:5065 +#: ex_getln.c:5081 msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar больше длины команды" +msgstr "E198: cmd_pchar п╠п╬п╩я▄я┬п╣ п╢п╩п╦п╫я▀ п╨п╬п╪п╟п╫п╢я▀" -#: ex_getln.c:5242 +#: ex_getln.c:5258 msgid "E199: Active window or buffer deleted" -msgstr "E199: Удалено активное окно или буфер" +msgstr "E199: пёп╢п╟п╩п╣п╫п╬ п╟п╨я┌п╦п╡п╫п╬п╣ п╬п╨п╫п╬ п╦п╩п╦ п╠я┐я└п╣я─" -#: fileio.c:377 +#: fileio.c:378 msgid "Illegal file name" -msgstr "Недопустимое имя файла" +msgstr "п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ я└п╟п╧п╩п╟" -#: fileio.c:401 fileio.c:535 fileio.c:2913 fileio.c:2954 +#: fileio.c:402 fileio.c:540 fileio.c:2925 fileio.c:2966 msgid "is a directory" -msgstr "является каталогом" +msgstr "я▐п╡п╩я▐п╣я┌я│я▐ п╨п╟я┌п╟п╩п╬пЁп╬п╪" -#: fileio.c:403 +#: fileio.c:404 msgid "is not a file" -msgstr "не является файлом" +msgstr "п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я└п╟п╧п╩п╬п╪" -#: fileio.c:557 fileio.c:4131 +#: fileio.c:562 fileio.c:4143 msgid "[New File]" -msgstr "[Новый файл]" +msgstr "[п²п╬п╡я▀п╧ я└п╟п╧п╩]" -#: fileio.c:590 +#: fileio.c:595 msgid "[Permission Denied]" -msgstr "[Доступ запрещён]" +msgstr "[п■п╬я│я┌я┐п© п╥п╟п©я─п╣я┴я▒п╫]" -#: fileio.c:694 +#: fileio.c:706 msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: В результате выполнения автокоманд *ReadPre файл стал нечитаемым" +msgstr "E200: п▓ я─п╣п╥я┐п╩я▄я┌п╟я┌п╣ п╡я▀п©п╬п╩п╫п╣п╫п╦я▐ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢ *ReadPre я└п╟п╧п╩ я│я┌п╟п╩ п╫п╣я┤п╦я┌п╟п╣п╪я▀п╪" -#: fileio.c:696 +#: fileio.c:708 msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: автокоманды *ReadPre не должны изменять активный буфер" +msgstr "E201: п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ *ReadPre п╫п╣ п╢п╬п╩п╤п╫я▀ п╦п╥п╪п╣п╫я▐я┌я▄ п╟п╨я┌п╦п╡п╫я▀п╧ п╠я┐я└п╣я─" -#: fileio.c:717 +#: fileio.c:729 msgid "Vim: Reading from stdin...\n" -msgstr "Vim: выполняется чтение из стандартного потока ввода stdin...\n" +msgstr "Vim: п╡я▀п©п╬п╩п╫я▐п╣я┌я│я▐ я┤я┌п╣п╫п╦п╣ п╦п╥ я│я┌п╟п╫п╢п╟я─я┌п╫п╬пЁп╬ п©п╬я┌п╬п╨п╟ п╡п╡п╬п╢п╟ stdin...\n" -#: fileio.c:723 +#: fileio.c:735 msgid "Reading from stdin..." -msgstr "Выполняется чтение из стандартного потока ввода stdin..." +msgstr "п▓я▀п©п╬п╩п╫я▐п╣я┌я│я▐ я┤я┌п╣п╫п╦п╣ п╦п╥ я│я┌п╟п╫п╢п╟я─я┌п╫п╬пЁп╬ п©п╬я┌п╬п╨п╟ п╡п╡п╬п╢п╟ stdin..." #. Re-opening the original file failed! -#: fileio.c:1000 +#: fileio.c:1012 msgid "E202: Conversion made file unreadable!" -msgstr "E202: В результате преобразования файл стал нечитаемым!" +msgstr "E202: п▓ я─п╣п╥я┐п╩я▄я┌п╟я┌п╣ п©я─п╣п╬п╠я─п╟п╥п╬п╡п╟п╫п╦я▐ я└п╟п╧п╩ я│я┌п╟п╩ п╫п╣я┤п╦я┌п╟п╣п╪я▀п╪!" -#: fileio.c:2090 +#: fileio.c:2102 msgid "[fifo/socket]" -msgstr "[fifo/гнездо]" +msgstr "[fifo/пЁп╫п╣п╥п╢п╬]" -#: fileio.c:2097 +#: fileio.c:2109 msgid "[fifo]" msgstr "[fifo]" -#: fileio.c:2104 +#: fileio.c:2116 msgid "[socket]" -msgstr "[гнездо]" +msgstr "[пЁп╫п╣п╥п╢п╬]" -#: fileio.c:2112 +#: fileio.c:2124 msgid "[RO]" msgstr "[RO]" -#: fileio.c:2122 +#: fileio.c:2134 msgid "[CR missing]" -msgstr "[пропущены символы CR]" +msgstr "[п©я─п╬п©я┐я┴п╣п╫я▀ я│п╦п╪п╡п╬п╩я▀ CR]" -#: fileio.c:2127 +#: fileio.c:2139 msgid "[NL found]" -msgstr "[Обнаружены символы NL]" +msgstr "[п·п╠п╫п╟я─я┐п╤п╣п╫я▀ я│п╦п╪п╡п╬п╩я▀ NL]" -#: fileio.c:2132 +#: fileio.c:2144 msgid "[long lines split]" -msgstr "[длинные строки разбиты]" +msgstr "[п╢п╩п╦п╫п╫я▀п╣ я│я┌я─п╬п╨п╦ я─п╟п╥п╠п╦я┌я▀]" -#: fileio.c:2138 fileio.c:4115 +#: fileio.c:2150 fileio.c:4127 msgid "[NOT converted]" -msgstr "[БЕЗ преобразований]" +msgstr "[п▒п∙п≈ п©я─п╣п╬п╠я─п╟п╥п╬п╡п╟п╫п╦п╧]" -#: fileio.c:2143 fileio.c:4120 +#: fileio.c:2155 fileio.c:4132 msgid "[converted]" -msgstr "[перекодировано]" +msgstr "[п©п╣я─п╣п╨п╬п╢п╦я─п╬п╡п╟п╫п╬]" -#: fileio.c:2150 fileio.c:4145 +#: fileio.c:2162 fileio.c:4157 msgid "[crypted]" -msgstr "[зашифровано]" +msgstr "[п╥п╟я┬п╦я└я─п╬п╡п╟п╫п╬]" -#: fileio.c:2157 +#: fileio.c:2169 msgid "[CONVERSION ERROR]" -msgstr "[ОШИБКА ПРЕОБРАЗОВАНИЯ]" +msgstr "[п·п╗п≤п▒п п░ п÷п═п∙п·п▒п═п░п≈п·п▓п░п²п≤п╞]" -#: fileio.c:2163 +#: fileio.c:2175 #, c-format msgid "[ILLEGAL BYTE in line %ld]" -msgstr "[НЕДОПУСТИМЫЙ БАЙТ в строке %ld]" +msgstr "[п²п∙п■п·п÷пёп║п╒п≤п°п╚п≥ п▒п░п≥п╒ п╡ я│я┌я─п╬п╨п╣ %ld]" -#: fileio.c:2170 +#: fileio.c:2182 msgid "[READ ERRORS]" -msgstr "[ОШИБКИ ЧТЕНИЯ]" +msgstr "[п·п╗п≤п▒п п≤ п╖п╒п∙п²п≤п╞]" -#: fileio.c:2386 +#: fileio.c:2398 msgid "Can't find temp file for conversion" -msgstr "Временный файл для перекодирования не найден" +msgstr "п▓я─п╣п╪п╣п╫п╫я▀п╧ я└п╟п╧п╩ п╢п╩я▐ п©п╣я─п╣п╨п╬п╢п╦я─п╬п╡п╟п╫п╦я▐ п╫п╣ п╫п╟п╧п╢п╣п╫" -#: fileio.c:2393 +#: fileio.c:2405 msgid "Conversion with 'charconvert' failed" -msgstr "Преобразование с помощью 'charconvert' не выполнено" +msgstr "п÷я─п╣п╬п╠я─п╟п╥п╬п╡п╟п╫п╦п╣ я│ п©п╬п╪п╬я┴я▄я▌ 'charconvert' п╫п╣ п╡я▀п©п╬п╩п╫п╣п╫п╬" -#: fileio.c:2396 +#: fileio.c:2408 msgid "can't read output of 'charconvert'" -msgstr "невозможно прочитать вывод 'charconvert'" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ п╡я▀п╡п╬п╢ 'charconvert'" -#: fileio.c:2796 +#: fileio.c:2808 msgid "E203: Autocommands deleted or unloaded buffer to be written" msgstr "" -"E203: Буфер, который требовалось записать, удалён или выгружен автокомандой" +"E203: п▒я┐я└п╣я─, п╨п╬я┌п╬я─я▀п╧ я┌я─п╣п╠п╬п╡п╟п╩п╬я│я▄ п╥п╟п©п╦я│п╟я┌я▄, я┐п╢п╟п╩я▒п╫ п╦п╩п╦ п╡я▀пЁя─я┐п╤п╣п╫ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╬п╧" -#: fileio.c:2819 +#: fileio.c:2831 msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Количество строк изменено автокомандой неожиданным образом" +msgstr "E204: п п╬п╩п╦я┤п╣я│я┌п╡п╬ я│я┌я─п╬п╨ п╦п╥п╪п╣п╫п╣п╫п╬ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╬п╧ п╫п╣п╬п╤п╦п╢п╟п╫п╫я▀п╪ п╬п╠я─п╟п╥п╬п╪" -#: fileio.c:2857 +#: fileio.c:2869 msgid "NetBeans dissallows writes of unmodified buffers" -msgstr "NetBeans не позволяет выполнять запись неизменённых буферов" +msgstr "NetBeans п╫п╣ п©п╬п╥п╡п╬п╩я▐п╣я┌ п╡я▀п©п╬п╩п╫я▐я┌я▄ п╥п╟п©п╦я│я▄ п╫п╣п╦п╥п╪п╣п╫я▒п╫п╫я▀я┘ п╠я┐я└п╣я─п╬п╡" -#: fileio.c:2865 +#: fileio.c:2877 msgid "Partial writes disallowed for NetBeans buffers" -msgstr "Частичная запись буферов NetBeans не допускается" +msgstr "п╖п╟я│я┌п╦я┤п╫п╟я▐ п╥п╟п©п╦я│я▄ п╠я┐я└п╣я─п╬п╡ NetBeans п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐" -#: fileio.c:2919 fileio.c:2937 +#: fileio.c:2931 fileio.c:2949 msgid "is not a file or writable device" -msgstr "не является файлом или устройством, доступным для записи" +msgstr "п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я└п╟п╧п╩п╬п╪ п╦п╩п╦ я┐я│я┌я─п╬п╧я│я┌п╡п╬п╪, п╢п╬я│я┌я┐п©п╫я▀п╪ п╢п╩я▐ п╥п╟п©п╦я│п╦" -#: fileio.c:2989 +#: fileio.c:3001 msgid "is read-only (add ! to override)" -msgstr "открыт только для чтения (!, чтобы обойти проверку)" +msgstr "п╬я┌п╨я─я▀я┌ я┌п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3335 +#: fileio.c:3347 msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: Запись в резервный файл невозможна (!, чтобы обойти проверку)" +msgstr "E506: п≈п╟п©п╦я│я▄ п╡ я─п╣п╥п╣я─п╡п╫я▀п╧ я└п╟п╧п╩ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╟ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3347 +#: fileio.c:3359 msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: Ошибка закрытия резервного файла (!, чтобы обойти проверку)" +msgstr "E507: п·я┬п╦п╠п╨п╟ п╥п╟п╨я─я▀я┌п╦я▐ я─п╣п╥п╣я─п╡п╫п╬пЁп╬ я└п╟п╧п╩п╟ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3349 +#: fileio.c:3361 msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: Невозможно прочитать резервный файл (!, чтобы обойти проверку)" +msgstr "E508: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ я─п╣п╥п╣я─п╡п╫я▀п╧ я└п╟п╧п╩ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3365 +#: fileio.c:3377 msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: Невозможно создать резервный файл (!, чтобы обойти проверку)" +msgstr "E509: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я─п╣п╥п╣я─п╡п╫я▀п╧ я└п╟п╧п╩ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3468 +#: fileio.c:3480 msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: Невозможно создать резервный файл (!, чтобы обойти проверку)" +msgstr "E510: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я─п╣п╥п╣я─п╡п╫я▀п╧ я└п╟п╧п╩ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3530 +#: fileio.c:3542 msgid "E460: The resource fork would be lost (add ! to override)" -msgstr "E460: Вилка ресурса будет потеряна (!, чтобы обойти проверку)" +msgstr "E460: п▓п╦п╩п╨п╟ я─п╣я│я┐я─я│п╟ п╠я┐п╢п╣я┌ п©п╬я┌п╣я─я▐п╫п╟ (!, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: fileio.c:3640 +#: fileio.c:3652 msgid "E214: Can't find temp file for writing" -msgstr "E214: Временный файл для записи не найден" +msgstr "E214: п▓я─п╣п╪п╣п╫п╫я▀п╧ я└п╟п╧п╩ п╢п╩я▐ п╥п╟п©п╦я│п╦ п╫п╣ п╫п╟п╧п╢п╣п╫" -#: fileio.c:3658 +#: fileio.c:3670 msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: Перекодировка невозможна (! для записи без перекодировки)" +msgstr "E213: п÷п╣я─п╣п╨п╬п╢п╦я─п╬п╡п╨п╟ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╟ (! п╢п╩я▐ п╥п╟п©п╦я│п╦ п╠п╣п╥ п©п╣я─п╣п╨п╬п╢п╦я─п╬п╡п╨п╦)" -#: fileio.c:3693 +#: fileio.c:3705 msgid "E166: Can't open linked file for writing" -msgstr "E166: Невозможно открыть связанный файл для записи" +msgstr "E166: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я│п╡я▐п╥п╟п╫п╫я▀п╧ я└п╟п╧п╩ п╢п╩я▐ п╥п╟п©п╦я│п╦" -#: fileio.c:3697 +#: fileio.c:3709 msgid "E212: Can't open file for writing" -msgstr "E212: Невозможно открыть файл для записи" +msgstr "E212: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ п╢п╩я▐ п╥п╟п©п╦я│п╦" -#: fileio.c:3959 +#: fileio.c:3971 msgid "E667: Fsync failed" -msgstr "E667: Не удалось выполнить функцию fsync()" +msgstr "E667: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ я└я┐п╫п╨я├п╦я▌ fsync()" -#: fileio.c:3966 +#: fileio.c:3978 msgid "E512: Close failed" -msgstr "E512: Операция закрытия не удалась" +msgstr "E512: п·п©п╣я─п╟я├п╦я▐ п╥п╟п╨я─я▀я┌п╦я▐ п╫п╣ я┐п╢п╟п╩п╟я│я▄" -#: fileio.c:4037 +#: fileio.c:4049 msgid "E513: write error, conversion failed" -msgstr "E513: Ошибка записи, преобразование не удалось" +msgstr "E513: п·я┬п╦п╠п╨п╟ п╥п╟п©п╦я│п╦, п©я─п╣п╬п╠я─п╟п╥п╬п╡п╟п╫п╦п╣ п╫п╣ я┐п╢п╟п╩п╬я│я▄" -#: fileio.c:4043 +#: fileio.c:4055 msgid "E514: write error (file system full?)" -msgstr "E514: ошибка записи (нет свободного места?)" +msgstr "E514: п╬я┬п╦п╠п╨п╟ п╥п╟п©п╦я│п╦ (п╫п╣я┌ я│п╡п╬п╠п╬п╢п╫п╬пЁп╬ п╪п╣я│я┌п╟?)" -#: fileio.c:4110 +#: fileio.c:4122 msgid " CONVERSION ERROR" -msgstr " ОШИБКА ПРЕОБРАЗОВАНИЯ" +msgstr " п·п╗п≤п▒п п░ п÷п═п∙п·п▒п═п░п≈п·п▓п░п²п≤п╞" -#: fileio.c:4126 +#: fileio.c:4138 msgid "[Device]" -msgstr "[Устройство]" +msgstr "[пёя│я┌я─п╬п╧я│я┌п╡п╬]" -#: fileio.c:4131 +#: fileio.c:4143 msgid "[New]" -msgstr "[Новый]" +msgstr "[п²п╬п╡я▀п╧]" -#: fileio.c:4153 +#: fileio.c:4165 msgid " [a]" msgstr " [a]" -#: fileio.c:4153 +#: fileio.c:4165 msgid " appended" -msgstr " добавлено" +msgstr " п╢п╬п╠п╟п╡п╩п╣п╫п╬" -#: fileio.c:4155 +#: fileio.c:4167 msgid " [w]" msgstr " [w]" -#: fileio.c:4155 +#: fileio.c:4167 msgid " written" -msgstr " записано" +msgstr " п╥п╟п©п╦я│п╟п╫п╬" -#: fileio.c:4205 +#: fileio.c:4217 msgid "E205: Patchmode: can't save original file" -msgstr "E205: Режим заплатки: невозможно сохранение исходного файла" +msgstr "E205: п═п╣п╤п╦п╪ п╥п╟п©п╩п╟я┌п╨п╦: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬я┘я─п╟п╫п╣п╫п╦п╣ п╦я│я┘п╬п╢п╫п╬пЁп╬ я└п╟п╧п╩п╟" -#: fileio.c:4227 +#: fileio.c:4239 msgid "E206: patchmode: can't touch empty original file" msgstr "" -"E206: Режим заплатки: невозможно сменить параметры пустого исходного файла" +"E206: п═п╣п╤п╦п╪ п╥п╟п©п╩п╟я┌п╨п╦: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╪п╣п╫п╦я┌я▄ п©п╟я─п╟п╪п╣я┌я─я▀ п©я┐я│я┌п╬пЁп╬ п╦я│я┘п╬п╢п╫п╬пЁп╬ я└п╟п╧п╩п╟" -#: fileio.c:4242 +#: fileio.c:4254 msgid "E207: Can't delete backup file" -msgstr "E207: Невозможно удалить резервный файл" +msgstr "E207: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я┐п╢п╟п╩п╦я┌я▄ я─п╣п╥п╣я─п╡п╫я▀п╧ я└п╟п╧п╩" -#: fileio.c:4306 +#: fileio.c:4318 msgid "" "\n" "WARNING: Original file may be lost or damaged\n" msgstr "" "\n" -"ПРЕДУПРЕЖДЕНИЕ: Исходный файл может быть утрачен или повреждён\n" +"п÷п═п∙п■пёп÷п═п∙п√п■п∙п²п≤п∙: п≤я│я┘п╬п╢п╫я▀п╧ я└п╟п╧п╩ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ я┐я┌я─п╟я┤п╣п╫ п╦п╩п╦ п©п╬п╡я─п╣п╤п╢я▒п╫\n" -#: fileio.c:4308 +#: fileio.c:4320 msgid "don't quit the editor until the file is successfully written!" -msgstr "не выходите из редактора, пока файл не будет успешно записан!" +msgstr "п╫п╣ п╡я▀я┘п╬п╢п╦я┌п╣ п╦п╥ я─п╣п╢п╟п╨я┌п╬я─п╟, п©п╬п╨п╟ я└п╟п╧п╩ п╫п╣ п╠я┐п╢п╣я┌ я┐я│п©п╣я┬п╫п╬ п╥п╟п©п╦я│п╟п╫!" -#: fileio.c:4397 +#: fileio.c:4409 msgid "[dos]" msgstr "[dos]" -#: fileio.c:4397 +#: fileio.c:4409 msgid "[dos format]" -msgstr "[формат dos]" +msgstr "[я└п╬я─п╪п╟я┌ dos]" -#: fileio.c:4404 +#: fileio.c:4416 msgid "[mac]" msgstr "[mac]" -#: fileio.c:4404 +#: fileio.c:4416 msgid "[mac format]" -msgstr "[формат mac]" +msgstr "[я└п╬я─п╪п╟я┌ mac]" -#: fileio.c:4411 +#: fileio.c:4423 msgid "[unix]" msgstr "[unix]" -#: fileio.c:4411 +#: fileio.c:4423 msgid "[unix format]" -msgstr "[формат unix]" +msgstr "[я└п╬я─п╪п╟я┌ unix]" -#: fileio.c:4438 +#: fileio.c:4450 msgid "1 line, " -msgstr "1 строка, " +msgstr "1 я│я┌я─п╬п╨п╟, " -#: fileio.c:4440 +#: fileio.c:4452 #, c-format msgid "%ld lines, " -msgstr "строк: %ld, " +msgstr "я│я┌я─п╬п╨: %ld, " -#: fileio.c:4443 +#: fileio.c:4455 msgid "1 character" -msgstr "1 символ" +msgstr "1 я│п╦п╪п╡п╬п╩" -#: fileio.c:4445 +#: fileio.c:4457 #, c-format msgid "%ld characters" -msgstr "символов: %ld" +msgstr "я│п╦п╪п╡п╬п╩п╬п╡: %ld" -#: fileio.c:4455 +#: fileio.c:4467 msgid "[noeol]" msgstr "[noeol]" -#: fileio.c:4455 +#: fileio.c:4467 msgid "[Incomplete last line]" -msgstr "[Незавершённая последняя строка]" +msgstr "[п²п╣п╥п╟п╡п╣я─я┬я▒п╫п╫п╟я▐ п©п╬я│п╩п╣п╢п╫я▐я▐ я│я┌я─п╬п╨п╟]" #. don't overwrite messages here #. must give this prompt #. don't use emsg() here, don't want to flush the buffers -#: fileio.c:4474 +#: fileio.c:4486 msgid "WARNING: The file has been changed since reading it!!!" -msgstr "ПРЕДУПРЕЖДЕНИЕ: Файл изменён с момента чтения!!!" +msgstr "п÷п═п∙п■пёп÷п═п∙п√п■п∙п²п≤п∙: п╓п╟п╧п╩ п╦п╥п╪п╣п╫я▒п╫ я│ п╪п╬п╪п╣п╫я┌п╟ я┤я┌п╣п╫п╦я▐!!!" -#: fileio.c:4476 +#: fileio.c:4488 msgid "Do you really want to write to it" -msgstr "Серьёзно хотите записать в этот файл" +msgstr "п║п╣я─я▄я▒п╥п╫п╬ я┘п╬я┌п╦я┌п╣ п╥п╟п©п╦я│п╟я┌я▄ п╡ я█я┌п╬я┌ я└п╟п╧п╩" -#: fileio.c:5726 +#: fileio.c:5738 #, c-format msgid "E208: Error writing to \"%s\"" -msgstr "E208: Ошибка записи в \"%s\"" +msgstr "E208: п·я┬п╦п╠п╨п╟ п╥п╟п©п╦я│п╦ п╡ \"%s\"" -#: fileio.c:5733 +#: fileio.c:5745 #, c-format msgid "E209: Error closing \"%s\"" -msgstr "E209: Ошибка закрытия \"%s\"" +msgstr "E209: п·я┬п╦п╠п╨п╟ п╥п╟п╨я─я▀я┌п╦я▐ \"%s\"" -#: fileio.c:5736 +#: fileio.c:5748 #, c-format msgid "E210: Error reading \"%s\"" -msgstr "E210: Ошибка чтения \"%s\"" +msgstr "E210: п·я┬п╦п╠п╨п╟ я┤я┌п╣п╫п╦я▐ \"%s\"" -#: fileio.c:5970 +#: fileio.c:5982 msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: Буфер удалён при выполнении автокоманды FileChangedShell" +msgstr "E246: п▒я┐я└п╣я─ я┐п╢п╟п╩я▒п╫ п©я─п╦ п╡я▀п©п╬п╩п╫п╣п╫п╦п╦ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ FileChangedShell" -#: fileio.c:5977 +#: fileio.c:5989 #, c-format msgid "E211: Warning: File \"%s\" no longer available" -msgstr "E211: Предупреждение: файл \"%s\" больше не доступен" +msgstr "E211: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я└п╟п╧п╩ \"%s\" п╠п╬п╩я▄я┬п╣ п╫п╣ п╢п╬я│я┌я┐п©п╣п╫" -#: fileio.c:5991 +#: fileio.c:6003 #, c-format msgid "" "W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " "well" msgstr "" -"W12: Предупреждение: файл \"%s\" и буфер Vim были изменены независимо друг " -"от друга" +"W12: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я└п╟п╧п╩ \"%s\" п╦ п╠я┐я└п╣я─ Vim п╠я▀п╩п╦ п╦п╥п╪п╣п╫п╣п╫я▀ п╫п╣п╥п╟п╡п╦я│п╦п╪п╬ п╢я─я┐пЁ " +"п╬я┌ п╢я─я┐пЁп╟" -#: fileio.c:5994 +#: fileio.c:6006 #, c-format msgid "W11: Warning: File \"%s\" has changed since editing started" msgstr "" -"W11: Предупреждение: файл \"%s\" был изменён после начала редактирования" +"W11: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я└п╟п╧п╩ \"%s\" п╠я▀п╩ п╦п╥п╪п╣п╫я▒п╫ п©п╬я│п╩п╣ п╫п╟я┤п╟п╩п╟ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐" -#: fileio.c:5996 +#: fileio.c:6008 #, c-format msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" msgstr "" -"W16: Предупреждение: режим доступа к файлу \"%s\" был изменён после начала " -"редактирования" +"W16: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я─п╣п╤п╦п╪ п╢п╬я│я┌я┐п©п╟ п╨ я└п╟п╧п╩я┐ \"%s\" п╠я▀п╩ п╦п╥п╪п╣п╫я▒п╫ п©п╬я│п╩п╣ п╫п╟я┤п╟п╩п╟ " +"я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐" -#: fileio.c:6006 +#: fileio.c:6018 #, c-format msgid "W13: Warning: File \"%s\" has been created after editing started" msgstr "" -"W13: Предупреждение: файл \"%s\" был создан после начала редактирования" +"W13: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я└п╟п╧п╩ \"%s\" п╠я▀п╩ я│п╬п╥п╢п╟п╫ п©п╬я│п╩п╣ п╫п╟я┤п╟п╩п╟ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐" -#: fileio.c:6019 +#: fileio.c:6031 msgid "See \":help W11\" for more info." -msgstr "См. дополнительную информацию в \":help W11\"." +msgstr "п║п╪. п╢п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫я┐я▌ п╦п╫я└п╬я─п╪п╟я├п╦я▌ п╡ \":help W11\"." -#: fileio.c:6033 +#: fileio.c:6045 msgid "Warning" -msgstr "Предупреждение" +msgstr "п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣" -#: fileio.c:6034 +#: fileio.c:6046 msgid "" "&OK\n" "&Load File" msgstr "" "&OK\n" -"&Загрузить файл" +"&п≈п╟пЁя─я┐п╥п╦я┌я▄ я└п╟п╧п╩" -#: fileio.c:6140 +#: fileio.c:6152 #, c-format msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: Невозможно подготовиться к перезагрузке \"%s\"" +msgstr "E462: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╬п╢пЁп╬я┌п╬п╡п╦я┌я▄я│я▐ п╨ п©п╣я─п╣п╥п╟пЁя─я┐п╥п╨п╣ \"%s\"" -#: fileio.c:6159 +#: fileio.c:6171 #, c-format msgid "E321: Could not reload \"%s\"" -msgstr "E321: Невозможно выполнить перезагрузку \"%s\"" +msgstr "E321: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ п©п╣я─п╣п╥п╟пЁя─я┐п╥п╨я┐ \"%s\"" -#: fileio.c:6740 +#: fileio.c:6752 msgid "--Deleted--" -msgstr "--Удалено--" +msgstr "--пёп╢п╟п╩п╣п╫п╬--" #. the group doesn't exist -#: fileio.c:6900 +#: fileio.c:6912 #, c-format msgid "E367: No such group: \"%s\"" -msgstr "E367: Группа \"%s\" не существует" +msgstr "E367: п⌠я─я┐п©п©п╟ \"%s\" п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: fileio.c:7026 +#: fileio.c:7038 #, c-format msgid "E215: Illegal character after *: %s" -msgstr "E215: Недопустимые символы после *: %s" +msgstr "E215: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╣ я│п╦п╪п╡п╬п╩я▀ п©п╬я│п╩п╣ *: %s" -#: fileio.c:7038 +#: fileio.c:7050 #, c-format msgid "E216: No such event: %s" -msgstr "E216: Несуществующее событие: %s" +msgstr "E216: п²п╣я│я┐я┴п╣я│я┌п╡я┐я▌я┴п╣п╣ я│п╬п╠я▀я┌п╦п╣: %s" -#: fileio.c:7040 +#: fileio.c:7052 #, c-format msgid "E216: No such group or event: %s" -msgstr "E216: Несуществующая группа или событие: %s" +msgstr "E216: п²п╣я│я┐я┴п╣я│я┌п╡я┐я▌я┴п╟я▐ пЁя─я┐п©п©п╟ п╦п╩п╦ я│п╬п╠я▀я┌п╦п╣: %s" #. Highlight title -#: fileio.c:7198 +#: fileio.c:7210 msgid "" "\n" "--- Auto-Commands ---" msgstr "" "\n" -"--- Автокоманды ---" +"--- п░п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ ---" -#: fileio.c:7469 +#: fileio.c:7481 msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: Невозможно выполнить автокоманды для ВСЕХ событий" +msgstr "E217: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ п╢п╩я▐ п▓п║п∙п╔ я│п╬п╠я▀я┌п╦п╧" -#: fileio.c:7492 +#: fileio.c:7504 msgid "No matching autocommands" -msgstr "Нет подходящих автокоманд" +msgstr "п²п╣я┌ п©п╬п╢я┘п╬п╢я▐я┴п╦я┘ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢" -#: fileio.c:7813 +#: fileio.c:7825 msgid "E218: autocommand nesting too deep" -msgstr "E218: слишком глубоко вложенные автокоманды" +msgstr "E218: я│п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╬ п╡п╩п╬п╤п╣п╫п╫я▀п╣ п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀" -#: fileio.c:8088 +#: fileio.c:8100 #, c-format msgid "%s Auto commands for \"%s\"" -msgstr "%s Автокоманды для \"%s\"" +msgstr "%s п░п╡я┌п╬п╨п╬п╪п╟п╫п╢я▀ п╢п╩я▐ \"%s\"" -#: fileio.c:8096 +#: fileio.c:8108 #, c-format msgid "Executing %s" -msgstr "Выполнение %s" +msgstr "п▓я▀п©п╬п╩п╫п╣п╫п╦п╣ %s" #. always scroll up, don't overwrite -#: fileio.c:8164 +#: fileio.c:8176 #, c-format msgid "autocommand %s" -msgstr "автокоманда %s" +msgstr "п╟п╡я┌п╬п╨п╬п╪п╟п╫п╢п╟ %s" -#: fileio.c:8731 +#: fileio.c:8743 msgid "E219: Missing {." -msgstr "E219: Пропущена {." +msgstr "E219: п÷я─п╬п©я┐я┴п╣п╫п╟ {." -#: fileio.c:8733 +#: fileio.c:8745 msgid "E220: Missing }." -msgstr "E220: Пропущена }." +msgstr "E220: п÷я─п╬п©я┐я┴п╣п╫п╟ }." #: fold.c:68 msgid "E490: No fold found" -msgstr "E490: Складок не обнаружено" +msgstr "E490: п║п╨п╩п╟п╢п╬п╨ п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╬" #: fold.c:593 msgid "E350: Cannot create fold with current 'foldmethod'" msgstr "" -"E350: Складка не может быть создана с текущим значением опции 'foldmethod'" +"E350: п║п╨п╩п╟п╢п╨п╟ п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ я│п╬п╥п╢п╟п╫п╟ я│ я┌п╣п╨я┐я┴п╦п╪ п╥п╫п╟я┤п╣п╫п╦п╣п╪ п╬п©я├п╦п╦ 'foldmethod'" #: fold.c:595 msgid "E351: Cannot delete fold with current 'foldmethod'" msgstr "" -"E351: Складка не может быть удалена с текущим значением опции 'foldmethod'" +"E351: п║п╨п╩п╟п╢п╨п╟ п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ я┐п╢п╟п╩п╣п╫п╟ я│ я┌п╣п╨я┐я┴п╦п╪ п╥п╫п╟я┤п╣п╫п╦п╣п╪ п╬п©я├п╦п╦ 'foldmethod'" #: getchar.c:248 msgid "E222: Add to read buffer" -msgstr "E222: Добавление в буфер чтения" +msgstr "E222: п■п╬п╠п╟п╡п╩п╣п╫п╦п╣ п╡ п╠я┐я└п╣я─ я┤я┌п╣п╫п╦я▐" -#: getchar.c:2198 +#: getchar.c:2208 msgid "E223: recursive mapping" -msgstr "E223: рекурсивная привязка" +msgstr "E223: я─п╣п╨я┐я─я│п╦п╡п╫п╟я▐ п©я─п╦п╡я▐п╥п╨п╟" -#: getchar.c:3077 +#: getchar.c:3087 #, c-format msgid "E224: global abbreviation already exists for %s" -msgstr "E224: уже есть глобальное сокращение для %s" +msgstr "E224: я┐п╤п╣ п╣я│я┌я▄ пЁп╩п╬п╠п╟п╩я▄п╫п╬п╣ я│п╬п╨я─п╟я┴п╣п╫п╦п╣ п╢п╩я▐ %s" -#: getchar.c:3080 +#: getchar.c:3090 #, c-format msgid "E225: global mapping already exists for %s" -msgstr "E225: уже есть глобальная привязка для %s" +msgstr "E225: я┐п╤п╣ п╣я│я┌я▄ пЁп╩п╬п╠п╟п╩я▄п╫п╟я▐ п©я─п╦п╡я▐п╥п╨п╟ п╢п╩я▐ %s" -#: getchar.c:3212 +#: getchar.c:3222 #, c-format msgid "E226: abbreviation already exists for %s" -msgstr "E226: уже есть сокращение для %s" +msgstr "E226: я┐п╤п╣ п╣я│я┌я▄ я│п╬п╨я─п╟я┴п╣п╫п╦п╣ п╢п╩я▐ %s" -#: getchar.c:3215 +#: getchar.c:3225 #, c-format msgid "E227: mapping already exists for %s" -msgstr "E227: уже есть привязка для %s" +msgstr "E227: я┐п╤п╣ п╣я│я┌я▄ п©я─п╦п╡я▐п╥п╨п╟ п╢п╩я▐ %s" -#: getchar.c:3279 +#: getchar.c:3289 msgid "No abbreviation found" -msgstr "Сокращения не найдены" +msgstr "п║п╬п╨я─п╟я┴п╣п╫п╦я▐ п╫п╣ п╫п╟п╧п╢п╣п╫я▀" -#: getchar.c:3281 +#: getchar.c:3291 msgid "No mapping found" -msgstr "Привязки не найдены" +msgstr "п÷я─п╦п╡я▐п╥п╨п╦ п╫п╣ п╫п╟п╧п╢п╣п╫я▀" -#: getchar.c:4173 +#: getchar.c:4183 msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: недопустимый режим" +msgstr "E228: makemap: п╫п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я─п╣п╤п╦п╪" #: gui.c:220 msgid "E229: Cannot start the GUI" -msgstr "E229: Невозможно перейти в режим графического интерфейса" +msgstr "E229: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╧я┌п╦ п╡ я─п╣п╤п╦п╪ пЁя─п╟я└п╦я┤п╣я│п╨п╬пЁп╬ п╦п╫я┌п╣я─я└п╣п╧я│п╟" #: gui.c:349 #, c-format msgid "E230: Cannot read from \"%s\"" -msgstr "E230: Невозможно выполнить чтение \"%s\"" +msgstr "E230: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ я┤я┌п╣п╫п╦п╣ \"%s\"" #: gui.c:472 msgid "E665: Cannot start GUI, no valid font found" msgstr "" -"E665: Невозможно перейти в режим граф. интерфейса, неправильно заданы шрифты" +"E665: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╧я┌п╦ п╡ я─п╣п╤п╦п╪ пЁя─п╟я└. п╦п╫я┌п╣я─я└п╣п╧я│п╟, п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬ п╥п╟п╢п╟п╫я▀ я┬я─п╦я└я┌я▀" #: gui.c:477 msgid "E231: 'guifontwide' invalid" -msgstr "E231: неправильное значение опции 'guifontwide'" +msgstr "E231: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'guifontwide'" #: gui.c:547 msgid "E599: Value of 'imactivatekey' is invalid" -msgstr "E599: неправильное значение опции 'imactivatekey'" +msgstr "E599: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'imactivatekey'" -#: gui.c:4061 +#: gui.c:4064 #, c-format msgid "E254: Cannot allocate color %s" -msgstr "E254: Невозможно назначить цвет %s" +msgstr "E254: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╫п╟п╥п╫п╟я┤п╦я┌я▄ я├п╡п╣я┌ %s" #: gui_at_fs.c:300 msgid "<cannot open> " -msgstr "<нельзя открыть> " +msgstr "<п╫п╣п╩я▄п╥я▐ п╬я┌п╨я─я▀я┌я▄> " #: gui_at_fs.c:1136 #, c-format msgid "E616: vim_SelFile: can't get font %s" -msgstr "E616: vim_SelFile: шрифт %s не найден" +msgstr "E616: vim_SelFile: я┬я─п╦я└я┌ %s п╫п╣ п╫п╟п╧п╢п╣п╫" #: gui_at_fs.c:2781 msgid "E614: vim_SelFile: can't return to current directory" -msgstr "E614: vim_SelFile: возврат в текущий каталог невозможен" +msgstr "E614: vim_SelFile: п╡п╬п╥п╡я─п╟я┌ п╡ я┌п╣п╨я┐я┴п╦п╧ п╨п╟я┌п╟п╩п╬пЁ п╫п╣п╡п╬п╥п╪п╬п╤п╣п╫" #: gui_at_fs.c:2801 msgid "Pathname:" -msgstr "Путь к файлу:" +msgstr "п÷я┐я┌я▄ п╨ я└п╟п╧п╩я┐:" #: gui_at_fs.c:2807 msgid "E615: vim_SelFile: can't get current directory" -msgstr "E615: vim_SelFile: не могу найти текущий каталог" +msgstr "E615: vim_SelFile: п╫п╣ п╪п╬пЁя┐ п╫п╟п╧я┌п╦ я┌п╣п╨я┐я┴п╦п╧ п╨п╟я┌п╟п╩п╬пЁ" #: gui_at_fs.c:2815 gui_motif.c:1623 msgid "OK" -msgstr "Да" +msgstr "п■п╟" #: gui_at_fs.c:2815 gui_gtk.c:2731 gui_motif.c:1618 gui_motif.c:2849 msgid "Cancel" -msgstr "Отмена" +msgstr "п·я┌п╪п╣п╫п╟" #: gui_at_sb.c:486 msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -msgstr "Полоса прокрутки: не могу определить геометрию ползунка" +msgstr "п÷п╬п╩п╬я│п╟ п©я─п╬п╨я─я┐я┌п╨п╦: п╫п╣ п╪п╬пЁя┐ п╬п©я─п╣п╢п╣п╩п╦я┌я▄ пЁп╣п╬п╪п╣я┌я─п╦я▌ п©п╬п╩п╥я┐п╫п╨п╟" #: gui_athena.c:2047 gui_motif.c:1871 msgid "Vim dialog" -msgstr "Диалоговое окно Vim" +msgstr "п■п╦п╟п╩п╬пЁп╬п╡п╬п╣ п╬п╨п╫п╬ Vim" -#: gui_beval.c:101 gui_w32.c:3829 +#: gui_beval.c:101 gui_w32.c:3978 msgid "E232: Cannot create BalloonEval with both message and callback" msgstr "" -"E232: \"Пузырь\" для вычислений, включающий и сообщение, и обратный вызов, " -"не может быть создан" +"E232: \"п÷я┐п╥я▀я─я▄\" п╢п╩я▐ п╡я▀я┤п╦я│п╩п╣п╫п╦п╧, п╡п╨п╩я▌я┤п╟я▌я┴п╦п╧ п╦ я│п╬п╬п╠я┴п╣п╫п╦п╣, п╦ п╬п╠я─п╟я┌п╫я▀п╧ п╡я▀п╥п╬п╡, " +"п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ я│п╬п╥п╢п╟п╫" #: gui_gtk.c:1607 msgid "Vim dialog..." -msgstr "Диалоговое окно Vim..." +msgstr "п■п╦п╟п╩п╬пЁп╬п╡п╬п╣ п╬п╨п╫п╬ Vim..." -#: gui_gtk.c:2060 message.c:2993 +#: gui_gtk.c:2060 message.c:2999 msgid "" "&Yes\n" "&No\n" "&Cancel" msgstr "" -"&Да\n" -"&Нет\n" -"О&тмена" +"&п■п╟\n" +"&п²п╣я┌\n" +"п·&я┌п╪п╣п╫п╟" #: gui_gtk.c:2268 msgid "Input _Methods" -msgstr "Методы Ввода" +msgstr "п°п╣я┌п╬п╢я▀ п▓п╡п╬п╢п╟" #: gui_gtk.c:2534 gui_motif.c:2768 msgid "VIM - Search and Replace..." -msgstr "VIM - Поиск и замена..." +msgstr "VIM - п÷п╬п╦я│п╨ п╦ п╥п╟п╪п╣п╫п╟..." #: gui_gtk.c:2542 gui_motif.c:2770 msgid "VIM - Search..." -msgstr "VIM - Поиск..." +msgstr "VIM - п÷п╬п╦я│п╨..." #: gui_gtk.c:2574 gui_motif.c:2888 msgid "Find what:" -msgstr "Что ищем:" +msgstr "п╖я┌п╬ п╦я┴п╣п╪:" #: gui_gtk.c:2592 gui_motif.c:2920 msgid "Replace with:" -msgstr "На что заменяем:" +msgstr "п²п╟ я┤я┌п╬ п╥п╟п╪п╣п╫я▐п╣п╪:" #. whole word only button #: gui_gtk.c:2624 gui_motif.c:3036 msgid "Match whole word only" -msgstr "Только точные соответствия" +msgstr "п╒п╬п╩я▄п╨п╬ я┌п╬я┤п╫я▀п╣ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐" #. match case button #: gui_gtk.c:2635 gui_motif.c:3048 msgid "Match case" -msgstr "Регистрозависимые соответствия" +msgstr "п═п╣пЁп╦я│я┌я─п╬п╥п╟п╡п╦я│п╦п╪я▀п╣ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐" #: gui_gtk.c:2645 gui_motif.c:2990 msgid "Direction" -msgstr "Направление" +msgstr "п²п╟п©я─п╟п╡п╩п╣п╫п╦п╣" #. 'Up' and 'Down' buttons #: gui_gtk.c:2657 gui_motif.c:3002 msgid "Up" -msgstr "Вверх" +msgstr "п▓п╡п╣я─я┘" #: gui_gtk.c:2661 gui_motif.c:3010 msgid "Down" -msgstr "Вниз" +msgstr "п▓п╫п╦п╥" #: gui_gtk.c:2683 gui_gtk.c:2685 gui_motif.c:2792 msgid "Find Next" -msgstr "Найти следующее" +msgstr "п²п╟п╧я┌п╦ я│п╩п╣п╢я┐я▌я┴п╣п╣" #: gui_gtk.c:2702 gui_gtk.c:2704 gui_motif.c:2809 msgid "Replace" -msgstr "Замена" +msgstr "п≈п╟п╪п╣п╫п╟" #: gui_gtk.c:2715 gui_gtk.c:2717 gui_motif.c:2822 msgid "Replace All" -msgstr "Заменить все" +msgstr "п≈п╟п╪п╣п╫п╦я┌я▄ п╡я│п╣" #: gui_gtk_x11.c:2327 msgid "Vim: Received \"die\" request from session manager\n" -msgstr "Vim: Получен запрос на прекращение работы от диспетчера сеансов\n" +msgstr "Vim: п÷п╬п╩я┐я┤п╣п╫ п╥п╟п©я─п╬я│ п╫п╟ п©я─п╣п╨я─п╟я┴п╣п╫п╦п╣ я─п╟п╠п╬я┌я▀ п╬я┌ п╢п╦я│п©п╣я┌я┤п╣я─п╟ я│п╣п╟п╫я│п╬п╡\n" #: gui_gtk_x11.c:3519 msgid "Vim: Main window unexpectedly destroyed\n" -msgstr "Vim: Основное окно было неожиданно закрыто\n" +msgstr "Vim: п·я│п╫п╬п╡п╫п╬п╣ п╬п╨п╫п╬ п╠я▀п╩п╬ п╫п╣п╬п╤п╦п╢п╟п╫п╫п╬ п╥п╟п╨я─я▀я┌п╬\n" #: gui_gtk_x11.c:4138 msgid "Font Selection" -msgstr "Выбор шрифта" +msgstr "п▓я▀п╠п╬я─ я┬я─п╦я└я┌п╟" #: gui_gtk_x11.c:6035 ui.c:2120 msgid "Used CUT_BUFFER0 instead of empty selection" -msgstr "Вместо пустого выделения используется CUT_BUFFER0" +msgstr "п▓п╪п╣я│я┌п╬ п©я┐я│я┌п╬пЁп╬ п╡я▀п╢п╣п╩п╣п╫п╦я▐ п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ CUT_BUFFER0" #: gui_motif.c:1617 gui_motif.c:1620 msgid "Filter" -msgstr "Фильтр" +msgstr "п╓п╦п╩я▄я┌я─" #: gui_motif.c:1619 msgid "Directories" -msgstr "Каталоги" +msgstr "п п╟я┌п╟п╩п╬пЁп╦" #: gui_motif.c:1621 msgid "Help" -msgstr "Справка" +msgstr "п║п©я─п╟п╡п╨п╟" #: gui_motif.c:1622 msgid "Files" -msgstr "Файлы" +msgstr "п╓п╟п╧п╩я▀" #: gui_motif.c:1624 msgid "Selection" -msgstr "Выделение" +msgstr "п▓я▀п╢п╣п╩п╣п╫п╦п╣" #: gui_motif.c:2835 msgid "Undo" -msgstr "Отмена" +msgstr "п·я┌п╪п╣п╫п╟" #: gui_riscos.c:952 #, c-format msgid "E610: Can't load Zap font '%s'" -msgstr "E610: Невозможно загрузить шрифт Zap '%s'" +msgstr "E610: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟пЁя─я┐п╥п╦я┌я▄ я┬я─п╦я└я┌ Zap '%s'" #: gui_riscos.c:1048 #, c-format msgid "E611: Can't use font %s" -msgstr "E611: Невозможно использовать шрифт %s" +msgstr "E611: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я┬я─п╦я└я┌ %s" #: gui_riscos.c:3270 msgid "" @@ -2301,46 +2301,54 @@ msgid "" "Sending message to terminate child process.\n" msgstr "" "\n" -"Отправка сообщения для уничтожения процесса-потомка.\n" +"п·я┌п©я─п╟п╡п╨п╟ я│п╬п╬п╠я┴п╣п╫п╦я▐ п╢п╩я▐ я┐п╫п╦я┤я┌п╬п╤п╣п╫п╦я▐ п©я─п╬я├п╣я│я│п╟-п©п╬я┌п╬п╪п╨п╟.\n" -#: gui_w32.c:829 +#: gui_w32.c:839 +msgid "E671: Cannot find window title \"%s\"" +msgstr "E671: п·п╨п╫п╬ я│ п╥п╟пЁп╬п╩п╬п╡п╨п╬п╪ \"%s\" п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╬" + +#: gui_w32.c:847 #, c-format msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -msgstr "E243: Параметр не поддерживается: \"-%s\"; используйте версию OLE." +msgstr "E243: п÷п╟я─п╟п╪п╣я┌я─ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐: \"-%s\"; п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ п╡п╣я─я│п╦я▌ OLE." + +#: gui_w32.c:1100 +msgid "E672: Unable to open window inside MDI application" +msgstr "E672: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╬п╨п╫п╬ п╡п╫я┐я┌я─п╦ п©я─п╦п╩п╬п╤п╣п╫п╦я▐ MDI" -#: gui_w48.c:2090 +#: gui_w48.c:2163 msgid "Find string (use '\\\\' to find a '\\')" -msgstr "Поиск строки (используйте '\\\\' для поиска '\\')" +msgstr "п÷п╬п╦я│п╨ я│я┌я─п╬п╨п╦ (п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ '\\\\' п╢п╩я▐ п©п╬п╦я│п╨п╟ '\\')" -#: gui_w48.c:2115 +#: gui_w48.c:2188 msgid "Find & Replace (use '\\\\' to find a '\\')" -msgstr "Поиск и замена (используйте '\\\\' для поиска '\\')" +msgstr "п÷п╬п╦я│п╨ п╦ п╥п╟п╪п╣п╫п╟ (п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ '\\\\' п╢п╩я▐ п©п╬п╦я│п╨п╟ '\\')" #: gui_x11.c:1537 msgid "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" msgstr "" -"Vim E458: невозможно выделить запись в таблице цвета, некоторые цветамогут " -"отображаться неправильно" +"Vim E458: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╢п╣п╩п╦я┌я▄ п╥п╟п©п╦я│я▄ п╡ я┌п╟п╠п╩п╦я├п╣ я├п╡п╣я┌п╟, п╫п╣п╨п╬я┌п╬я─я▀п╣ я├п╡п╣я┌п╟п╪п╬пЁя┐я┌ " +"п╬я┌п╬п╠я─п╟п╤п╟я┌я▄я│я▐ п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬" #: gui_x11.c:2118 #, c-format msgid "E250: Fonts for the following charsets are missing in fontset %s:" -msgstr "E250: в наборе шрифтов %s отсутствуют шрифты для следующих кодировок:" +msgstr "E250: п╡ п╫п╟п╠п╬я─п╣ я┬я─п╦я└я┌п╬п╡ %s п╬я┌я│я┐я┌я│я┌п╡я┐я▌я┌ я┬я─п╦я└я┌я▀ п╢п╩я▐ я│п╩п╣п╢я┐я▌я┴п╦я┘ п╨п╬п╢п╦я─п╬п╡п╬п╨:" #: gui_x11.c:2161 #, c-format msgid "E252: Fontset name: %s" -msgstr "E252: Набор шрифтов: %s" +msgstr "E252: п²п╟п╠п╬я─ я┬я─п╦я└я┌п╬п╡: %s" #: gui_x11.c:2162 #, c-format msgid "Font '%s' is not fixed-width" -msgstr "Шрифт '%s' не является моноширинным" +msgstr "п╗я─п╦я└я┌ '%s' п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п╪п╬п╫п╬я┬п╦я─п╦п╫п╫я▀п╪" #: gui_x11.c:2181 #, c-format msgid "E253: Fontset name: %s\n" -msgstr "E253: Набор шрифтов: %s\n" +msgstr "E253: п²п╟п╠п╬я─ я┬я─п╦я└я┌п╬п╡: %s\n" #: gui_x11.c:2182 #, c-format @@ -2353,13 +2361,14 @@ msgid "Font1: %s\n" msgstr "Font1: %s\n" #: gui_x11.c:2184 +#, c-format msgid "Font%ld width is not twice that of font0\n" -msgstr "Ширина шрифта font%ld должна быть вдвое больше ширины шрифта font0\n" +msgstr "п╗п╦я─п╦п╫п╟ я┬я─п╦я└я┌п╟ font%ld п╢п╬п╩п╤п╫п╟ п╠я▀я┌я▄ п╡п╢п╡п╬п╣ п╠п╬п╩я▄я┬п╣ я┬п╦я─п╦п╫я▀ я┬я─п╦я└я┌п╟ font0\n" #: gui_x11.c:2185 #, c-format msgid "Font0 width: %ld\n" -msgstr "Ширина шрифта font0: %ld\n" +msgstr "п╗п╦я─п╦п╫п╟ я┬я─п╦я└я┌п╟ font0: %ld\n" #: gui_x11.c:2186 #, c-format @@ -2367,165 +2376,165 @@ msgid "" "Font1 width: %ld\n" "\n" msgstr "" -"Ширина шрифта font1: %ld\n" +"п╗п╦я─п╦п╫п╟ я┬я─п╦я└я┌п╟ font1: %ld\n" "\n" #: hangulin.c:610 msgid "E256: Hangul automata ERROR" -msgstr "У256Ж ОШИБКА автоматики Хангыл" +msgstr "пё256п√ п·п╗п≤п▒п п░ п╟п╡я┌п╬п╪п╟я┌п╦п╨п╦ п╔п╟п╫пЁя▀п╩" #: if_cscope.c:77 msgid "Add a new database" -msgstr "Добавить новую базу данных" +msgstr "п■п╬п╠п╟п╡п╦я┌я▄ п╫п╬п╡я┐я▌ п╠п╟п╥я┐ п╢п╟п╫п╫я▀я┘" #: if_cscope.c:79 msgid "Query for a pattern" -msgstr "Запрос по шаблону" +msgstr "п≈п╟п©я─п╬я│ п©п╬ я┬п╟п╠п╩п╬п╫я┐" #: if_cscope.c:81 msgid "Show this message" -msgstr "Показать это сообщение" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ я█я┌п╬ я│п╬п╬п╠я┴п╣п╫п╦п╣" #: if_cscope.c:83 msgid "Kill a connection" -msgstr "Убить соединение" +msgstr "пёп╠п╦я┌я▄ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣" #: if_cscope.c:85 msgid "Reinit all connections" -msgstr "Заново инициализировать все соединения" +msgstr "п≈п╟п╫п╬п╡п╬ п╦п╫п╦я├п╦п╟п╩п╦п╥п╦я─п╬п╡п╟я┌я▄ п╡я│п╣ я│п╬п╣п╢п╦п╫п╣п╫п╦я▐" #: if_cscope.c:87 msgid "Show connections" -msgstr "Показать соединения" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ я│п╬п╣п╢п╦п╫п╣п╫п╦я▐" #: if_cscope.c:95 #, c-format msgid "E560: Usage: cs[cope] %s" -msgstr "E560: Использование: cs[cope] %s" +msgstr "E560: п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣: cs[cope] %s" #: if_cscope.c:124 msgid "This cscope command does not support splitting the window.\n" -msgstr "Эта команда cscope не поддерживает разделение окна.\n" +msgstr "п╜я┌п╟ п╨п╬п╪п╟п╫п╢п╟ cscope п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌ я─п╟п╥п╢п╣п╩п╣п╫п╦п╣ п╬п╨п╫п╟.\n" #: if_cscope.c:175 msgid "E562: Usage: cstag <ident>" -msgstr "E562: Использование: cstag <имя>" +msgstr "E562: п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣: cstag <п╦п╪я▐>" #: if_cscope.c:231 msgid "E257: cstag: tag not found" -msgstr "E257: cstag: метка не найдена" +msgstr "E257: cstag: п╪п╣я┌п╨п╟ п╫п╣ п╫п╟п╧п╢п╣п╫п╟" #: if_cscope.c:409 #, c-format msgid "E563: stat(%s) error: %d" -msgstr "ошибка stat(%s): %d" +msgstr "п╬я┬п╦п╠п╨п╟ stat(%s): %d" #: if_cscope.c:419 msgid "E563: stat error" -msgstr "E563: ошибка stat" +msgstr "E563: п╬я┬п╦п╠п╨п╟ stat" #: if_cscope.c:516 #, c-format msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s не является каталогом или именем базы cscope" +msgstr "E564: %s п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п╨п╟я┌п╟п╩п╬пЁп╬п╪ п╦п╩п╦ п╦п╪п╣п╫п╣п╪ п╠п╟п╥я▀ cscope" #: if_cscope.c:534 #, c-format msgid "Added cscope database %s" -msgstr "Добавлена база данных cscope %s" +msgstr "п■п╬п╠п╟п╡п╩п╣п╫п╟ п╠п╟п╥п╟ п╢п╟п╫п╫я▀я┘ cscope %s" #: if_cscope.c:589 #, c-format msgid "E262: error reading cscope connection %ld" -msgstr "E262: ошибка получения информации от соединения cscope %d" +msgstr "E262: п╬я┬п╦п╠п╨п╟ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ п╬я┌ я│п╬п╣п╢п╦п╫п╣п╫п╦я▐ cscope %d" #: if_cscope.c:694 msgid "E561: unknown cscope search type" -msgstr "E561: неизвестный тип поиска cscope" +msgstr "E561: п╫п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я┌п╦п© п©п╬п╦я│п╨п╟ cscope" #: if_cscope.c:736 msgid "E566: Could not create cscope pipes" -msgstr "E566: Невозможно создать трубу для cscope" +msgstr "E566: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я┌я─я┐п╠я┐ п╢п╩я▐ cscope" #: if_cscope.c:753 msgid "E622: Could not fork for cscope" -msgstr "E622: Невозможно выполнить fork() для cscope" +msgstr "E622: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ fork() п╢п╩я▐ cscope" #: if_cscope.c:847 if_cscope.c:897 msgid "cs_create_connection exec failed" -msgstr "не удалось выполнить cs_create_connection" +msgstr "п╫п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ cs_create_connection" #: if_cscope.c:898 msgid "E623: Could not spawn cscope process" -msgstr "E623: Не удалось запустить процесс cscope" +msgstr "E623: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╥п╟п©я┐я│я┌п╦я┌я▄ п©я─п╬я├п╣я│я│ cscope" #: if_cscope.c:911 msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: не удалось выполнить fdopen для to_fp" +msgstr "cs_create_connection: п╫п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ fdopen п╢п╩я▐ to_fp" #: if_cscope.c:913 msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: не удалось выполнить fdopen для fr_fp" +msgstr "cs_create_connection: п╫п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ fdopen п╢п╩я▐ fr_fp" #: if_cscope.c:951 msgid "E567: no cscope connections" -msgstr "E567: соединений с cscope не создано" +msgstr "E567: я│п╬п╣п╢п╦п╫п╣п╫п╦п╧ я│ cscope п╫п╣ я│п╬п╥п╢п╟п╫п╬" #: if_cscope.c:1025 #, c-format msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: не найдено соответствий по запросу cscope %s для %s" +msgstr "E259: п╫п╣ п╫п╟п╧п╢п╣п╫п╬ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╧ п©п╬ п╥п╟п©я─п╬я│я┐ cscope %s п╢п╩я▐ %s" #: if_cscope.c:1082 #, c-format msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: неправильный флаг cscopequickfix %c для %c" +msgstr "E469: п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я└п╩п╟пЁ cscopequickfix %c п╢п╩я▐ %c" #: if_cscope.c:1152 msgid "cscope commands:\n" -msgstr "команды cscope:\n" +msgstr "п╨п╬п╪п╟п╫п╢я▀ cscope:\n" #: if_cscope.c:1155 #, c-format msgid "%-5s: %-30s (Usage: %s)" -msgstr "%-5s: %-30s (Использование: %s)" +msgstr "%-5s: %-30s (п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣: %s)" #: if_cscope.c:1253 #, c-format msgid "E625: cannot open cscope database: %s" -msgstr "E625: невозможно открыть базу данных cscope: %s" +msgstr "E625: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╠п╟п╥я┐ п╢п╟п╫п╫я▀я┘ cscope: %s" #: if_cscope.c:1271 msgid "E626: cannot get cscope database information" -msgstr "E626: информация о базе данных cscope не доступна" +msgstr "E626: п╦п╫я└п╬я─п╪п╟я├п╦я▐ п╬ п╠п╟п╥п╣ п╢п╟п╫п╫я▀я┘ cscope п╫п╣ п╢п╬я│я┌я┐п©п╫п╟" #: if_cscope.c:1296 msgid "E568: duplicate cscope database not added" -msgstr "E568: данная база данных cscope уже подсоединена" +msgstr "E568: п╢п╟п╫п╫п╟я▐ п╠п╟п╥п╟ п╢п╟п╫п╫я▀я┘ cscope я┐п╤п╣ п©п╬п╢я│п╬п╣п╢п╦п╫п╣п╫п╟" #: if_cscope.c:1307 msgid "E569: maximum number of cscope connections reached" -msgstr "E569: достигнуто максимальное значение открытых соединений с cscope" +msgstr "E569: п╢п╬я│я┌п╦пЁп╫я┐я┌п╬ п╪п╟п╨я│п╦п╪п╟п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п╬я┌п╨я─я▀я┌я▀я┘ я│п╬п╣п╢п╦п╫п╣п╫п╦п╧ я│ cscope" #: if_cscope.c:1424 #, c-format msgid "E261: cscope connection %s not found" -msgstr "E261: соединение с cscope %s не обнаружено" +msgstr "E261: я│п╬п╣п╢п╦п╫п╣п╫п╦п╣ я│ cscope %s п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╬" #: if_cscope.c:1458 #, c-format msgid "cscope connection %s closed" -msgstr "соединение с cscope закрыто" +msgstr "я│п╬п╣п╢п╦п╫п╣п╫п╦п╣ я│ cscope п╥п╟п╨я─я▀я┌п╬" #. should not reach here #: if_cscope.c:1598 msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: критическая ошибка в cs_manage_matches" +msgstr "E570: п╨я─п╦я┌п╦я┤п╣я│п╨п╟я▐ п╬я┬п╦п╠п╨п╟ п╡ cs_manage_matches" #: if_cscope.c:1848 #, c-format msgid "Cscope tag: %s" -msgstr "Метка cscope: %s" +msgstr "п°п╣я┌п╨п╟ cscope: %s" #: if_cscope.c:1870 msgid "" @@ -2533,328 +2542,328 @@ msgid "" " # line" msgstr "" "\n" -" # строка" +" # я│я┌я─п╬п╨п╟" #: if_cscope.c:1872 msgid "filename / context / line\n" -msgstr "имя файла / контекст / строка\n" +msgstr "п╦п╪я▐ я└п╟п╧п╩п╟ / п╨п╬п╫я┌п╣п╨я│я┌ / я│я┌я─п╬п╨п╟\n" #: if_cscope.c:1990 #, c-format msgid "E609: Cscope error: %s" -msgstr "E609: Ошибка cscope: %s" +msgstr "E609: п·я┬п╦п╠п╨п╟ cscope: %s" #: if_cscope.c:2176 msgid "All cscope databases reset" -msgstr "Перезагрузка всех баз данных cscope" +msgstr "п÷п╣я─п╣п╥п╟пЁя─я┐п╥п╨п╟ п╡я│п╣я┘ п╠п╟п╥ п╢п╟п╫п╫я▀я┘ cscope" #: if_cscope.c:2244 msgid "no cscope connections\n" -msgstr "соединения с cscope отсутствуют\n" +msgstr "я│п╬п╣п╢п╦п╫п╣п╫п╦я▐ я│ cscope п╬я┌я│я┐я┌я│я┌п╡я┐я▌я┌\n" #: if_cscope.c:2248 msgid " # pid database name prepend path\n" -msgstr " # pid база данных начальный путь\n" +msgstr " # pid п╠п╟п╥п╟ п╢п╟п╫п╫я▀я┘ п╫п╟я┤п╟п╩я▄п╫я▀п╧ п©я┐я┌я▄\n" #: if_python.c:436 msgid "" "E263: Sorry, this command is disabled, the Python library could not be " "loaded." msgstr "" -"E263: К сожалению эта команда не работает, поскольку не загружена библиотека " +"E263: п я│п╬п╤п╟п╩п╣п╫п╦я▌ я█я┌п╟ п╨п╬п╪п╟п╫п╢п╟ п╫п╣ я─п╟п╠п╬я┌п╟п╣я┌, п©п╬я│п╨п╬п╩я▄п╨я┐ п╫п╣ п╥п╟пЁя─я┐п╤п╣п╫п╟ п╠п╦п╠п╩п╦п╬я┌п╣п╨п╟ " "Python" #: if_python.c:500 msgid "E659: Cannot invoke Python recursively" -msgstr "E659: Невозможно выполнить рекурсивный вызов Python" +msgstr "E659: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ я─п╣п╨я┐я─я│п╦п╡п╫я▀п╧ п╡я▀п╥п╬п╡ Python" #: if_python.c:701 msgid "can't delete OutputObject attributes" -msgstr "невозможно удалить атрибуты OutputObject" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я┐п╢п╟п╩п╦я┌я▄ п╟я┌я─п╦п╠я┐я┌я▀ OutputObject" #: if_python.c:708 msgid "softspace must be an integer" -msgstr "значение softspace должно быть целым числом" +msgstr "п╥п╫п╟я┤п╣п╫п╦п╣ softspace п╢п╬п╩п╤п╫п╬ п╠я▀я┌я▄ я├п╣п╩я▀п╪ я┤п╦я│п╩п╬п╪" #: if_python.c:716 msgid "invalid attribute" -msgstr "неправильный атрибут" +msgstr "п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ п╟я┌я─п╦п╠я┐я┌" #: if_python.c:755 if_python.c:769 msgid "writelines() requires list of strings" -msgstr "writelines() требует указания списка строк" +msgstr "writelines() я┌я─п╣п╠я┐п╣я┌ я┐п╨п╟п╥п╟п╫п╦я▐ я│п©п╦я│п╨п╟ я│я┌я─п╬п╨" #: if_python.c:895 msgid "E264: Python: Error initialising I/O objects" -msgstr "E264: Python: Ошибка инициализации объектов I/O" +msgstr "E264: Python: п·я┬п╦п╠п╨п╟ п╦п╫п╦я├п╦п╟п╩п╦п╥п╟я├п╦п╦ п╬п╠я┼п╣п╨я┌п╬п╡ I/O" #: if_python.c:1080 if_tcl.c:1402 msgid "invalid expression" -msgstr "неправильное выражение" +msgstr "п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╡я▀я─п╟п╤п╣п╫п╦п╣" #: if_python.c:1094 if_tcl.c:1407 msgid "expressions disabled at compile time" -msgstr "выражения отключены при компиляции" +msgstr "п╡я▀я─п╟п╤п╣п╫п╦я▐ п╬я┌п╨п╩я▌я┤п╣п╫я▀ п©я─п╦ п╨п╬п╪п©п╦п╩я▐я├п╦п╦" #: if_python.c:1107 msgid "attempt to refer to deleted buffer" -msgstr "попытка сослаться на уничтоженный буфер" +msgstr "п©п╬п©я▀я┌п╨п╟ я│п╬я│п╩п╟я┌я▄я│я▐ п╫п╟ я┐п╫п╦я┤я┌п╬п╤п╣п╫п╫я▀п╧ п╠я┐я└п╣я─" #: if_python.c:1122 if_python.c:1163 if_python.c:1227 if_tcl.c:1214 msgid "line number out of range" -msgstr "запредельный номер строки" +msgstr "п╥п╟п©я─п╣п╢п╣п╩я▄п╫я▀п╧ п╫п╬п╪п╣я─ я│я┌я─п╬п╨п╦" #: if_python.c:1362 #, c-format msgid "<buffer object (deleted) at %8lX>" -msgstr "<объект буфера (удален) в %8lX>" +msgstr "<п╬п╠я┼п╣п╨я┌ п╠я┐я└п╣я─п╟ (я┐п╢п╟п╩п╣п╫) п╡ %8lX>" #: if_python.c:1453 if_tcl.c:836 msgid "invalid mark name" -msgstr "неправильное имя отметки" +msgstr "п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╦п╪я▐ п╬я┌п╪п╣я┌п╨п╦" #: if_python.c:1733 msgid "no such buffer" -msgstr "нет такого буфера" +msgstr "п╫п╣я┌ я┌п╟п╨п╬пЁп╬ п╠я┐я└п╣я─п╟" #: if_python.c:1821 msgid "attempt to refer to deleted window" -msgstr "попытка сослаться на закрытое окно" +msgstr "п©п╬п©я▀я┌п╨п╟ я│п╬я│п╩п╟я┌я▄я│я▐ п╫п╟ п╥п╟п╨я─я▀я┌п╬п╣ п╬п╨п╫п╬" #: if_python.c:1866 msgid "readonly attribute" -msgstr "атрибут доступен только для чтения" +msgstr "п╟я┌я─п╦п╠я┐я┌ п╢п╬я│я┌я┐п©п╣п╫ я┌п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐" #: if_python.c:1879 msgid "cursor position outside buffer" -msgstr "позиция курсора находится вне буфера" +msgstr "п©п╬п╥п╦я├п╦я▐ п╨я┐я─я│п╬я─п╟ п╫п╟я┘п╬п╢п╦я┌я│я▐ п╡п╫п╣ п╠я┐я└п╣я─п╟" #: if_python.c:1956 #, c-format msgid "<window object (deleted) at %.8lX>" -msgstr "<объект окна (удален) в %.8lX>" +msgstr "<п╬п╠я┼п╣п╨я┌ п╬п╨п╫п╟ (я┐п╢п╟п╩п╣п╫) п╡ %.8lX>" #: if_python.c:1968 #, c-format msgid "<window object (unknown) at %.8lX>" -msgstr "<объект окна (неизвестен) в %.8lX>" +msgstr "<п╬п╠я┼п╣п╨я┌ п╬п╨п╫п╟ (п╫п╣п╦п╥п╡п╣я│я┌п╣п╫) п╡ %.8lX>" #: if_python.c:1970 #, c-format msgid "<window %d>" -msgstr "<окно %d>" +msgstr "<п╬п╨п╫п╬ %d>" #: if_python.c:2046 msgid "no such window" -msgstr "нет такого окна" +msgstr "п╫п╣я┌ я┌п╟п╨п╬пЁп╬ п╬п╨п╫п╟" #: if_python.c:2307 if_python.c:2341 if_python.c:2396 if_python.c:2464 #: if_python.c:2586 if_python.c:2638 if_tcl.c:684 if_tcl.c:729 if_tcl.c:803 #: if_tcl.c:873 if_tcl.c:1999 msgid "cannot save undo information" -msgstr "невозможно сохранить информацию об отмене операции" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬я┘я─п╟п╫п╦я┌я▄ п╦п╫я└п╬я─п╪п╟я├п╦я▌ п╬п╠ п╬я┌п╪п╣п╫п╣ п╬п©п╣я─п╟я├п╦п╦" #: if_python.c:2309 if_python.c:2403 if_python.c:2475 msgid "cannot delete line" -msgstr "невозможно удалить строку" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я┐п╢п╟п╩п╦я┌я▄ я│я┌я─п╬п╨я┐" #: if_python.c:2346 if_python.c:2491 if_tcl.c:690 if_tcl.c:2021 msgid "cannot replace line" -msgstr "невозможно заменить строку" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟п╪п╣п╫п╦я┌я▄ я│я┌я─п╬п╨я┐" #: if_python.c:2509 if_python.c:2588 if_python.c:2646 msgid "cannot insert line" -msgstr "невозможно вставить строку" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я│я┌п╟п╡п╦я┌я▄ я│я┌я─п╬п╨я┐" #: if_python.c:2750 msgid "string cannot contain newlines" -msgstr "строка не может содержать символ новой строки" +msgstr "я│я┌я─п╬п╨п╟ п╫п╣ п╪п╬п╤п╣я┌ я│п╬п╢п╣я─п╤п╟я┌я▄ я│п╦п╪п╡п╬п╩ п╫п╬п╡п╬п╧ я│я┌я─п╬п╨п╦" #: if_ruby.c:422 msgid "" "E266: Sorry, this command is disabled, the Ruby library could not be loaded." msgstr "" -"E266: К сожалению эта команда не работает, поскольку не загружена библиотека " +"E266: п я│п╬п╤п╟п╩п╣п╫п╦я▌ я█я┌п╟ п╨п╬п╪п╟п╫п╢п╟ п╫п╣ я─п╟п╠п╬я┌п╟п╣я┌, п©п╬я│п╨п╬п╩я▄п╨я┐ п╫п╣ п╥п╟пЁя─я┐п╤п╣п╫п╟ п╠п╦п╠п╩п╦п╬я┌п╣п╨п╟ " "Ruby." #: if_ruby.c:485 #, c-format msgid "E273: unknown longjmp status %d" -msgstr "E273: неизвестное состояние longjmp %d" +msgstr "E273: п╫п╣п╦п╥п╡п╣я│я┌п╫п╬п╣ я│п╬я│я┌п╬я▐п╫п╦п╣ longjmp %d" #: if_sniff.c:67 msgid "Toggle implementation/definition" -msgstr "Переключение между реализацией/определением" +msgstr "п÷п╣я─п╣п╨п╩я▌я┤п╣п╫п╦п╣ п╪п╣п╤п╢я┐ я─п╣п╟п╩п╦п╥п╟я├п╦п╣п╧/п╬п©я─п╣п╢п╣п╩п╣п╫п╦п╣п╪" #: if_sniff.c:68 msgid "Show base class of" -msgstr "Показать базовый класс " +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ п╠п╟п╥п╬п╡я▀п╧ п╨п╩п╟я│я│ " #: if_sniff.c:69 msgid "Show overridden member function" -msgstr "Показать перегруженные функции" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ п©п╣я─п╣пЁя─я┐п╤п╣п╫п╫я▀п╣ я└я┐п╫п╨я├п╦п╦" #: if_sniff.c:70 msgid "Retrieve from file" -msgstr "Получение из файла" +msgstr "п÷п╬п╩я┐я┤п╣п╫п╦п╣ п╦п╥ я└п╟п╧п╩п╟" #: if_sniff.c:71 msgid "Retrieve from project" -msgstr "Получение из проекта" +msgstr "п÷п╬п╩я┐я┤п╣п╫п╦п╣ п╦п╥ п©я─п╬п╣п╨я┌п╟" #: if_sniff.c:73 msgid "Retrieve from all projects" -msgstr "Получение из всех проектов" +msgstr "п÷п╬п╩я┐я┤п╣п╫п╦п╣ п╦п╥ п╡я│п╣я┘ п©я─п╬п╣п╨я┌п╬п╡" #: if_sniff.c:74 msgid "Retrieve" -msgstr "Получение" +msgstr "п÷п╬п╩я┐я┤п╣п╫п╦п╣" #: if_sniff.c:75 msgid "Show source of" -msgstr "Показать исходный код" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ п╦я│я┘п╬п╢п╫я▀п╧ п╨п╬п╢" #: if_sniff.c:76 msgid "Find symbol" -msgstr "Найти символ" +msgstr "п²п╟п╧я┌п╦ я│п╦п╪п╡п╬п╩" #: if_sniff.c:77 msgid "Browse class" -msgstr "Просмотр класса" +msgstr "п÷я─п╬я│п╪п╬я┌я─ п╨п╩п╟я│я│п╟" #: if_sniff.c:78 msgid "Show class in hierarchy" -msgstr "Показать класс в иерархии" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ п╨п╩п╟я│я│ п╡ п╦п╣я─п╟я─я┘п╦п╦" #: if_sniff.c:79 msgid "Show class in restricted hierarchy" -msgstr "Показать класс в ограниченной иерархии" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ п╨п╩п╟я│я│ п╡ п╬пЁя─п╟п╫п╦я┤п╣п╫п╫п╬п╧ п╦п╣я─п╟я─я┘п╦п╦" #: if_sniff.c:80 msgid "Xref refers to" -msgstr "Xref ссылается на" +msgstr "Xref я│я│я▀п╩п╟п╣я┌я│я▐ п╫п╟" #: if_sniff.c:81 msgid "Xref referred by" -msgstr "Ссылка на xref из" +msgstr "п║я│я▀п╩п╨п╟ п╫п╟ xref п╦п╥" #: if_sniff.c:82 msgid "Xref has a" -msgstr "Xref имеет" +msgstr "Xref п╦п╪п╣п╣я┌" #: if_sniff.c:83 msgid "Xref used by" -msgstr "Xref используется" +msgstr "Xref п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐" #: if_sniff.c:84 msgid "Show docu of" -msgstr "Показать docu" +msgstr "п÷п╬п╨п╟п╥п╟я┌я▄ docu" #: if_sniff.c:85 msgid "Generate docu for" -msgstr "Создать docu" +msgstr "п║п╬п╥п╢п╟я┌я▄ docu" #: if_sniff.c:97 msgid "" "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " "$PATH).\n" msgstr "" -"Невозможно подсоединиться к SNiFF+. Проверьте настройки окружения." -"(sniffemacs должны быть указаны в переменной $PATH).\n" +"п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╬п╢я│п╬п╣п╢п╦п╫п╦я┌я▄я│я▐ п╨ SNiFF+. п÷я─п╬п╡п╣я─я▄я┌п╣ п╫п╟я│я┌я─п╬п╧п╨п╦ п╬п╨я─я┐п╤п╣п╫п╦я▐." +"(sniffemacs п╢п╬п╩п╤п╫я▀ п╠я▀я┌я▄ я┐п╨п╟п╥п╟п╫я▀ п╡ п©п╣я─п╣п╪п╣п╫п╫п╬п╧ $PATH).\n" #: if_sniff.c:425 msgid "E274: Sniff: Error during read. Disconnected" -msgstr "E274: Sniff: Ошибка во время чтения. Отсоединение" +msgstr "E274: Sniff: п·я┬п╦п╠п╨п╟ п╡п╬ п╡я─п╣п╪я▐ я┤я┌п╣п╫п╦я▐. п·я┌я│п╬п╣п╢п╦п╫п╣п╫п╦п╣" #: if_sniff.c:553 msgid "SNiFF+ is currently " -msgstr "В настоящий момент SNiFF+ " +msgstr "п▓ п╫п╟я│я┌п╬я▐я┴п╦п╧ п╪п╬п╪п╣п╫я┌ SNiFF+ " #: if_sniff.c:555 msgid "not " -msgstr "не " +msgstr "п╫п╣ " #: if_sniff.c:556 msgid "connected" -msgstr "подсоединён" +msgstr "п©п╬п╢я│п╬п╣п╢п╦п╫я▒п╫" #: if_sniff.c:592 #, c-format msgid "E275: Unknown SNiFF+ request: %s" -msgstr "E275: Неизвестный запрос SNiFF+: %s" +msgstr "E275: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ п╥п╟п©я─п╬я│ SNiFF+: %s" #: if_sniff.c:605 msgid "E276: Error connecting to SNiFF+" -msgstr "E276: Ошибка соединения со SNiFF+" +msgstr "E276: п·я┬п╦п╠п╨п╟ я│п╬п╣п╢п╦п╫п╣п╫п╦я▐ я│п╬ SNiFF+" #: if_sniff.c:1009 msgid "E278: SNiFF+ not connected" -msgstr "E278: SNiFF+ не подсоединён" +msgstr "E278: SNiFF+ п╫п╣ п©п╬п╢я│п╬п╣п╢п╦п╫я▒п╫" #: if_sniff.c:1018 msgid "E279: Not a SNiFF+ buffer" -msgstr "E279: Это не буфер SNiFF+" +msgstr "E279: п╜я┌п╬ п╫п╣ п╠я┐я└п╣я─ SNiFF+" #: if_sniff.c:1083 msgid "Sniff: Error during write. Disconnected" -msgstr "Sniff: Ошибка во время записи. Отсоединение" +msgstr "Sniff: п·я┬п╦п╠п╨п╟ п╡п╬ п╡я─п╣п╪я▐ п╥п╟п©п╦я│п╦. п·я┌я│п╬п╣п╢п╦п╫п╣п╫п╦п╣" #: if_tcl.c:418 msgid "invalid buffer number" -msgstr "неправильный номер буфера" +msgstr "п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ п╫п╬п╪п╣я─ п╠я┐я└п╣я─п╟" #: if_tcl.c:464 if_tcl.c:931 if_tcl.c:1110 msgid "not implemented yet" -msgstr "пока не реализовано" +msgstr "п©п╬п╨п╟ п╫п╣ я─п╣п╟п╩п╦п╥п╬п╡п╟п╫п╬" #: if_tcl.c:501 msgid "unknown option" -msgstr "неизвестная опция" +msgstr "п╫п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╬п©я├п╦я▐" #. ??? #: if_tcl.c:774 msgid "cannot set line(s)" -msgstr "невозможно назначить строку или строки" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╫п╟п╥п╫п╟я┤п╦я┌я▄ я│я┌я─п╬п╨я┐ п╦п╩п╦ я│я┌я─п╬п╨п╦" #: if_tcl.c:845 msgid "mark not set" -msgstr "отметка не установлена" +msgstr "п╬я┌п╪п╣я┌п╨п╟ п╫п╣ я┐я│я┌п╟п╫п╬п╡п╩п╣п╫п╟" #: if_tcl.c:851 if_tcl.c:1066 #, c-format msgid "row %d column %d" -msgstr "ряд %d колонка %d" +msgstr "я─я▐п╢ %d п╨п╬п╩п╬п╫п╨п╟ %d" #: if_tcl.c:881 msgid "cannot insert/append line" -msgstr "невозможно вставить или добавить строку" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я│я┌п╟п╡п╦я┌я▄ п╦п╩п╦ п╢п╬п╠п╟п╡п╦я┌я▄ я│я┌я─п╬п╨я┐" #: if_tcl.c:1268 msgid "unknown flag: " -msgstr "неизвестный флаг: " +msgstr "п╫п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я└п╩п╟пЁ: " #: if_tcl.c:1338 msgid "unknown vimOption" -msgstr "неизвестная vimOption" +msgstr "п╫п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ vimOption" #: if_tcl.c:1423 msgid "keyboard interrupt" -msgstr "клавиатурное прерывание" +msgstr "п╨п╩п╟п╡п╦п╟я┌я┐я─п╫п╬п╣ п©я─п╣я─я▀п╡п╟п╫п╦п╣" #: if_tcl.c:1428 msgid "vim error" -msgstr "ошибка vim" +msgstr "п╬я┬п╦п╠п╨п╟ vim" #: if_tcl.c:1471 msgid "cannot create buffer/window command: object is being deleted" -msgstr "невозможно создать команду буфера или окна: объект в процессе удаления" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ п╨п╬п╪п╟п╫п╢я┐ п╠я┐я└п╣я─п╟ п╦п╩п╦ п╬п╨п╫п╟: п╬п╠я┼п╣п╨я┌ п╡ п©я─п╬я├п╣я│я│п╣ я┐п╢п╟п╩п╣п╫п╦я▐" #: if_tcl.c:1545 msgid "" "cannot register callback command: buffer/window is already being deleted" msgstr "" -"невозможно зарегистрировать команду с обратным вызовом: буфер или окно в " -"процессе удаления" +"п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟я┌я▄ п╨п╬п╪п╟п╫п╢я┐ я│ п╬п╠я─п╟я┌п╫я▀п╪ п╡я▀п╥п╬п╡п╬п╪: п╠я┐я└п╣я─ п╦п╩п╦ п╬п╨п╫п╬ п╡ " +"п©я─п╬я├п╣я│я│п╣ я┐п╢п╟п╩п╣п╫п╦я▐" #. This should never happen. Famous last word? #: if_tcl.c:1562 @@ -2862,142 +2871,142 @@ msgid "" "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim." "org" msgstr "" -"E280: КРИТИЧЕСКАЯ ОШИБКА TCL: повреждён список ссылок?! Сообщите об этом по " -"адресу vim-dev@vim.org" +"E280: п п═п≤п╒п≤п╖п∙п║п п░п╞ п·п╗п≤п▒п п░ TCL: п©п╬п╡я─п╣п╤п╢я▒п╫ я│п©п╦я│п╬п╨ я│я│я▀п╩п╬п╨?! п║п╬п╬п╠я┴п╦я┌п╣ п╬п╠ я█я┌п╬п╪ п©п╬ " +"п╟п╢я─п╣я│я┐ vim-dev@vim.org" #: if_tcl.c:1563 msgid "cannot register callback command: buffer/window reference not found" msgstr "" -"невозможно зарегистрировать команду с обратным вызовом: ссылка на буфер или " -"окно не обнаружена" +"п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟я┌я▄ п╨п╬п╪п╟п╫п╢я┐ я│ п╬п╠я─п╟я┌п╫я▀п╪ п╡я▀п╥п╬п╡п╬п╪: я│я│я▀п╩п╨п╟ п╫п╟ п╠я┐я└п╣я─ п╦п╩п╦ " +"п╬п╨п╫п╬ п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╟" #: if_tcl.c:1724 msgid "" "E571: Sorry, this command is disabled: the Tcl library could not be loaded." msgstr "" -"E571: К сожалению эта команда не работает, поскольку не загружена библиотека " +"E571: п я│п╬п╤п╟п╩п╣п╫п╦я▌ я█я┌п╟ п╨п╬п╪п╟п╫п╢п╟ п╫п╣ я─п╟п╠п╬я┌п╟п╣я┌, п©п╬я│п╨п╬п╩я▄п╨я┐ п╫п╣ п╥п╟пЁя─я┐п╤п╣п╫п╟ п╠п╦п╠п╩п╦п╬я┌п╣п╨п╟ " "Tcl" #: if_tcl.c:1886 msgid "" "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim.org" msgstr "" -"E281: ОШИБКА TCL: Код выхода не является целым числом?! Сообщите об этом в " +"E281: п·п╗п≤п▒п п░ TCL: п п╬п╢ п╡я▀я┘п╬п╢п╟ п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я├п╣п╩я▀п╪ я┤п╦я│п╩п╬п╪?! п║п╬п╬п╠я┴п╦я┌п╣ п╬п╠ я█я┌п╬п╪ п╡ " "vim-dev@vim.org" #: if_tcl.c:2007 msgid "cannot get line" -msgstr "невозможно получить строку" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╬п╩я┐я┤п╦я┌я▄ я│я┌я─п╬п╨я┐" #: if_xcmdsrv.c:225 msgid "Unable to register a command server name" -msgstr "Невозможно зарегистрировать имя сервера команд" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟я┌я▄ п╦п╪я▐ я│п╣я─п╡п╣я─п╟ п╨п╬п╪п╟п╫п╢" #: if_xcmdsrv.c:473 msgid "E248: Failed to send command to the destination program" -msgstr "E248: Отправка команды в другую программу не удалась" +msgstr "E248: п·я┌п©я─п╟п╡п╨п╟ п╨п╬п╪п╟п╫п╢я▀ п╡ п╢я─я┐пЁя┐я▌ п©я─п╬пЁя─п╟п╪п╪я┐ п╫п╣ я┐п╢п╟п╩п╟я│я▄" #: if_xcmdsrv.c:747 #, c-format msgid "E573: Invalid server id used: %s" -msgstr "E573: Используется неправильный id сервера: %s" +msgstr "E573: п≤я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ id я│п╣я─п╡п╣я─п╟: %s" #: if_xcmdsrv.c:1110 msgid "E251: VIM instance registry property is badly formed. Deleted!" msgstr "" -"E251: Неправильно сформировано значение данного процесса VIM в реестре. " -"Удалено!" +"E251: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬ я│я└п╬я─п╪п╦я─п╬п╡п╟п╫п╬ п╥п╫п╟я┤п╣п╫п╦п╣ п╢п╟п╫п╫п╬пЁп╬ п©я─п╬я├п╣я│я│п╟ VIM п╡ я─п╣п╣я│я┌я─п╣. " +"пёп╢п╟п╩п╣п╫п╬!" #: main.c:60 msgid "Unknown option" -msgstr "Неизвестный аргумент" +msgstr "п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ п╟я─пЁя┐п╪п╣п╫я┌" #: main.c:62 msgid "Too many edit arguments" -msgstr "Слишком много аргументов редактирования" +msgstr "п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╟я─пЁя┐п╪п╣п╫я┌п╬п╡ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐" #: main.c:64 msgid "Argument missing after" -msgstr "Пропущен аргумент после" +msgstr "п÷я─п╬п©я┐я┴п╣п╫ п╟я─пЁя┐п╪п╣п╫я┌ п©п╬я│п╩п╣" #: main.c:66 msgid "Garbage after option" -msgstr "Мусор после аргумента" +msgstr "п°я┐я│п╬я─ п©п╬я│п╩п╣ п╟я─пЁя┐п╪п╣п╫я┌п╟" #: main.c:68 msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" msgstr "" -"Слишком много аргументов \"+команда\", \"-c команда\" или \"--cmd команда\"" +"п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╟я─пЁя┐п╪п╣п╫я┌п╬п╡ \"+п╨п╬п╪п╟п╫п╢п╟\", \"-c п╨п╬п╪п╟п╫п╢п╟\" п╦п╩п╦ \"--cmd п╨п╬п╪п╟п╫п╢п╟\"" #: main.c:70 msgid "Invalid argument for" -msgstr "Недопустимые аргументы для" +msgstr "п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╣ п╟я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐" -#: main.c:466 +#: main.c:469 msgid "This Vim was not compiled with the diff feature." msgstr "" -"Данный Vim был скомпилирован с выключенной особенностью просмотра отличий" +"п■п╟п╫п╫я▀п╧ Vim п╠я▀п╩ я│п╨п╬п╪п©п╦п╩п╦я─п╬п╡п╟п╫ я│ п╡я▀п╨п╩я▌я┤п╣п╫п╫п╬п╧ п╬я│п╬п╠п╣п╫п╫п╬я│я┌я▄я▌ п©я─п╬я│п╪п╬я┌я─п╟ п╬я┌п╩п╦я┤п╦п╧" -#: main.c:932 +#: main.c:935 msgid "Attempt to open script file again: \"" -msgstr "Попытка повторного открытия файла сценария: \"" +msgstr "п÷п╬п©я▀я┌п╨п╟ п©п╬п╡я┌п╬я─п╫п╬пЁп╬ п╬я┌п╨я─я▀я┌п╦я▐ я└п╟п╧п╩п╟ я│я├п╣п╫п╟я─п╦я▐: \"" -#: main.c:941 +#: main.c:944 msgid "Cannot open for reading: \"" -msgstr "Невозможно открыть для чтения: \"" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╢п╩я▐ я┤я┌п╣п╫п╦я▐: \"" -#: main.c:985 +#: main.c:988 msgid "Cannot open for script output: \"" -msgstr "Невозможно открыть для вывода сценария: \"" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╢п╩я▐ п╡я▀п╡п╬п╢п╟ я│я├п╣п╫п╟я─п╦я▐: \"" -#: main.c:1132 +#: main.c:1135 #, c-format msgid "%d files to edit\n" -msgstr "Файлов для редактирования: %d\n" +msgstr "п╓п╟п╧п╩п╬п╡ п╢п╩я▐ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐: %d\n" -#: main.c:1233 +#: main.c:1236 msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: Предупреждение: Вывод осуществляется не на терминал\n" +msgstr "Vim: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п▓я▀п╡п╬п╢ п╬я│я┐я┴п╣я│я┌п╡п╩я▐п╣я┌я│я▐ п╫п╣ п╫п╟ я┌п╣я─п╪п╦п╫п╟п╩\n" -#: main.c:1235 +#: main.c:1238 msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: Предупреждение: Ввод происходит не с терминала\n" +msgstr "Vim: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п▓п╡п╬п╢ п©я─п╬п╦я│я┘п╬п╢п╦я┌ п╫п╣ я│ я┌п╣я─п╪п╦п╫п╟п╩п╟\n" #. just in case.. -#: main.c:1297 +#: main.c:1306 msgid "pre-vimrc command line" -msgstr "командная строка перед выполнением vimrc" +msgstr "п╨п╬п╪п╟п╫п╢п╫п╟я▐ я│я┌я─п╬п╨п╟ п©п╣я─п╣п╢ п╡я▀п©п╬п╩п╫п╣п╫п╦п╣п╪ vimrc" -#: main.c:1338 +#: main.c:1347 #, c-format msgid "E282: Cannot read from \"%s\"" -msgstr "E282: Невозможно выполнить чтение из \"%s\"" +msgstr "E282: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ я┤я┌п╣п╫п╦п╣ п╦п╥ \"%s\"" -#: main.c:2411 +#: main.c:2420 msgid "" "\n" "More info with: \"vim -h\"\n" msgstr "" "\n" -"Дополнительная информация: \"vim -h\"\n" +"п■п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫п╟я▐ п╦п╫я└п╬я─п╪п╟я├п╦я▐: \"vim -h\"\n" -#: main.c:2444 +#: main.c:2453 msgid "[file ..] edit specified file(s)" -msgstr "[файл ..] редактирование указанных файлов" +msgstr "[я└п╟п╧п╩ ..] я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ я┐п╨п╟п╥п╟п╫п╫я▀я┘ я└п╟п╧п╩п╬п╡" -#: main.c:2445 +#: main.c:2454 msgid "- read text from stdin" -msgstr "- чтение текста из потока ввода stdin" +msgstr "- я┤я┌п╣п╫п╦п╣ я┌п╣п╨я│я┌п╟ п╦п╥ п©п╬я┌п╬п╨п╟ п╡п╡п╬п╢п╟ stdin" -#: main.c:2446 +#: main.c:2455 msgid "-t tag edit file where tag is defined" -msgstr "-t метка редактирование файла с указанной меткой" +msgstr "-t п╪п╣я┌п╨п╟ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ я└п╟п╧п╩п╟ я│ я┐п╨п╟п╥п╟п╫п╫п╬п╧ п╪п╣я┌п╨п╬п╧" -#: main.c:2448 +#: main.c:2457 msgid "-q [errorfile] edit file with first error" -msgstr "-q [файл ошибок] редактирование файла с первой ошибкой" +msgstr "-q [я└п╟п╧п╩ п╬я┬п╦п╠п╬п╨] я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ я└п╟п╧п╩п╟ я│ п©п╣я─п╡п╬п╧ п╬я┬п╦п╠п╨п╬п╧" -#: main.c:2457 +#: main.c:2466 msgid "" "\n" "\n" @@ -3005,21 +3014,21 @@ msgid "" msgstr "" "\n" "\n" -"Использование:" +"п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣:" -#: main.c:2460 +#: main.c:2469 msgid " vim [arguments] " -msgstr " vim [аргументы] " +msgstr " vim [п╟я─пЁя┐п╪п╣п╫я┌я▀] " -#: main.c:2464 +#: main.c:2473 msgid "" "\n" " or:" msgstr "" "\n" -" или:" +" п╦п╩п╦:" -#: main.c:2467 +#: main.c:2476 msgid "" "\n" "\n" @@ -3027,414 +3036,414 @@ msgid "" msgstr "" "\n" "\n" -"Аргументы:\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀:\n" -#: main.c:2468 +#: main.c:2477 msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tДалее указываются только имена файлов" +msgstr "--\t\t\tп■п╟п╩п╣п╣ я┐п╨п╟п╥я▀п╡п╟я▌я┌я│я▐ я┌п╬п╩я▄п╨п╬ п╦п╪п╣п╫п╟ я└п╟п╧п╩п╬п╡" -#: main.c:2470 +#: main.c:2479 msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tНе выполнять подстановку по маске" +msgstr "--literal\t\tп²п╣ п╡я▀п©п╬п╩п╫я▐я┌я▄ п©п╬п╢я│я┌п╟п╫п╬п╡п╨я┐ п©п╬ п╪п╟я│п╨п╣" -#: main.c:2473 +#: main.c:2482 msgid "-register\t\tRegister this gvim for OLE" -msgstr "-register\t\tЗарегистрировать этот gvim для OLE" +msgstr "-register\t\tп≈п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟я┌я▄ я█я┌п╬я┌ gvim п╢п╩я▐ OLE" -#: main.c:2474 +#: main.c:2483 msgid "-unregister\t\tUnregister gvim for OLE" -msgstr "-unregister\t\tОтключить регистрацию данного gvim для OLE" +msgstr "-unregister\t\tп·я┌п╨п╩я▌я┤п╦я┌я▄ я─п╣пЁп╦я│я┌я─п╟я├п╦я▌ п╢п╟п╫п╫п╬пЁп╬ gvim п╢п╩я▐ OLE" -#: main.c:2477 +#: main.c:2486 msgid "-g\t\t\tRun using GUI (like \"gvim\")" -msgstr "-g\t\t\tЗапустить с графическим интерфейсом (как \"gvim\")" +msgstr "-g\t\t\tп≈п╟п©я┐я│я┌п╦я┌я▄ я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ (п╨п╟п╨ \"gvim\")" -#: main.c:2478 +#: main.c:2487 msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -msgstr "-f или --nofork\tВ активной задаче: Не выполнять fork при запуске GUI" +msgstr "-f п╦п╩п╦ --nofork\tп▓ п╟п╨я┌п╦п╡п╫п╬п╧ п╥п╟п╢п╟я┤п╣: п²п╣ п╡я▀п©п╬п╩п╫я▐я┌я▄ fork п©я─п╦ п╥п╟п©я┐я│п╨п╣ GUI" -#: main.c:2480 +#: main.c:2489 msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tРежим Vi (как \"vi\")" +msgstr "-v\t\t\tп═п╣п╤п╦п╪ Vi (п╨п╟п╨ \"vi\")" -#: main.c:2481 +#: main.c:2490 msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tРежим Ex (как \"ex\")" +msgstr "-e\t\t\tп═п╣п╤п╦п╪ Ex (п╨п╟п╨ \"ex\")" -#: main.c:2482 +#: main.c:2491 msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tТихий (пакетный) режим (только для \"ex\")" +msgstr "-s\t\t\tп╒п╦я┘п╦п╧ (п©п╟п╨п╣я┌п╫я▀п╧) я─п╣п╤п╦п╪ (я┌п╬п╩я▄п╨п╬ п╢п╩я▐ \"ex\")" -#: main.c:2484 +#: main.c:2493 msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tРежим отличий (как \"vimdiff\")" +msgstr "-d\t\t\tп═п╣п╤п╦п╪ п╬я┌п╩п╦я┤п╦п╧ (п╨п╟п╨ \"vimdiff\")" -#: main.c:2486 +#: main.c:2495 msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tПростой режим (как \"evim\", безрежимный)" +msgstr "-y\t\t\tп÷я─п╬я│я┌п╬п╧ я─п╣п╤п╦п╪ (п╨п╟п╨ \"evim\", п╠п╣п╥я─п╣п╤п╦п╪п╫я▀п╧)" -#: main.c:2487 +#: main.c:2496 msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tТолько для чтения (как \"view\")" +msgstr "-R\t\t\tп╒п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐ (п╨п╟п╨ \"view\")" -#: main.c:2488 +#: main.c:2497 msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tОграниченный режим (как \"rvim\")" +msgstr "-Z\t\t\tп·пЁя─п╟п╫п╦я┤п╣п╫п╫я▀п╧ я─п╣п╤п╦п╪ (п╨п╟п╨ \"rvim\")" -#: main.c:2489 +#: main.c:2498 msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tБез возможности сохранения изменений (записи файлов)" +msgstr "-m\t\t\tп▒п╣п╥ п╡п╬п╥п╪п╬п╤п╫п╬я│я┌п╦ я│п╬я┘я─п╟п╫п╣п╫п╦я▐ п╦п╥п╪п╣п╫п╣п╫п╦п╧ (п╥п╟п©п╦я│п╦ я└п╟п╧п╩п╬п╡)" -#: main.c:2490 +#: main.c:2499 msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tБез возможности внесения изменений в текст" +msgstr "-M\t\t\tп▒п╣п╥ п╡п╬п╥п╪п╬п╤п╫п╬я│я┌п╦ п╡п╫п╣я│п╣п╫п╦я▐ п╦п╥п╪п╣п╫п╣п╫п╦п╧ п╡ я┌п╣п╨я│я┌" -#: main.c:2491 +#: main.c:2500 msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tБинарный режим" +msgstr "-b\t\t\tп▒п╦п╫п╟я─п╫я▀п╧ я─п╣п╤п╦п╪" -#: main.c:2493 +#: main.c:2502 msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tРежим Lisp" +msgstr "-l\t\t\tп═п╣п╤п╦п╪ Lisp" -#: main.c:2495 +#: main.c:2504 msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tРежим совместимости с Vi: 'compatible'" +msgstr "-C\t\t\tп═п╣п╤п╦п╪ я│п╬п╡п╪п╣я│я┌п╦п╪п╬я│я┌п╦ я│ Vi: 'compatible'" -#: main.c:2496 +#: main.c:2505 msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tРежим неполной совместимости с Vi: 'nocompatible'" +msgstr "-N\t\t\tп═п╣п╤п╦п╪ п╫п╣п©п╬п╩п╫п╬п╧ я│п╬п╡п╪п╣я│я┌п╦п╪п╬я│я┌п╦ я│ Vi: 'nocompatible'" -#: main.c:2497 +#: main.c:2506 msgid "-V[N]\t\tVerbose level" -msgstr "-V[N]\t\tУровень подробности сообщений" +msgstr "-V[N]\t\tпёя─п╬п╡п╣п╫я▄ п©п╬п╢я─п╬п╠п╫п╬я│я┌п╦ я│п╬п╬п╠я┴п╣п╫п╦п╧" -#: main.c:2498 +#: main.c:2507 msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tРежим отладки" +msgstr "-D\t\t\tп═п╣п╤п╦п╪ п╬я┌п╩п╟п╢п╨п╦" -#: main.c:2499 +#: main.c:2508 msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tБез своп-файла, используется только память" +msgstr "-n\t\t\tп▒п╣п╥ я│п╡п╬п©-я└п╟п╧п╩п╟, п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ я┌п╬п╩я▄п╨п╬ п©п╟п╪я▐я┌я▄" -#: main.c:2500 +#: main.c:2509 msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tВывести список своп-файлов и завершить работу" +msgstr "-r\t\t\tп▓я▀п╡п╣я│я┌п╦ я│п©п╦я│п╬п╨ я│п╡п╬п©-я└п╟п╧п╩п╬п╡ п╦ п╥п╟п╡п╣я─я┬п╦я┌я▄ я─п╟п╠п╬я┌я┐" -#: main.c:2501 +#: main.c:2510 msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (с именем файла)\tВосстановить аварийно завершённый сеанс" +msgstr "-r (я│ п╦п╪п╣п╫п╣п╪ я└п╟п╧п╩п╟)\tп▓п╬я│я│я┌п╟п╫п╬п╡п╦я┌я▄ п╟п╡п╟я─п╦п╧п╫п╬ п╥п╟п╡п╣я─я┬я▒п╫п╫я▀п╧ я│п╣п╟п╫я│" -#: main.c:2502 +#: main.c:2511 msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tТо же, что и -r" +msgstr "-L\t\t\tп╒п╬ п╤п╣, я┤я┌п╬ п╦ -r" -#: main.c:2504 +#: main.c:2513 msgid "-f\t\t\tDon't use newcli to open window" -msgstr "-f\t\t\tНе использовать newcli для открытия окна" +msgstr "-f\t\t\tп²п╣ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ newcli п╢п╩я▐ п╬я┌п╨я─я▀я┌п╦я▐ п╬п╨п╫п╟" -#: main.c:2505 +#: main.c:2514 msgid "-dev <device>\t\tUse <device> for I/O" -msgstr "-dev <устройство>\t\tИспользовать для I/O указанное <устройство>" +msgstr "-dev <я┐я│я┌я─п╬п╧я│я┌п╡п╬>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╢п╩я▐ I/O я┐п╨п╟п╥п╟п╫п╫п╬п╣ <я┐я│я┌я─п╬п╧я│я┌п╡п╬>" -#: main.c:2508 +#: main.c:2517 msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\tЗапуск в Арабском режиме" +msgstr "-A\t\t\tп≈п╟п©я┐я│п╨ п╡ п░я─п╟п╠я│п╨п╬п╪ я─п╣п╤п╦п╪п╣" -#: main.c:2511 +#: main.c:2520 msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\tЗапуск в режиме \"Иврит\"" +msgstr "-H\t\t\tп≈п╟п©я┐я│п╨ п╡ я─п╣п╤п╦п╪п╣ \"п≤п╡я─п╦я┌\"" -#: main.c:2514 +#: main.c:2523 msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\tЗапуск в режиме \"Фарси\"" +msgstr "-F\t\t\tп≈п╟п©я┐я│п╨ п╡ я─п╣п╤п╦п╪п╣ \"п╓п╟я─я│п╦\"" -#: main.c:2516 +#: main.c:2525 msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <терминал>\tНазначить указанный тип <терминала>" +msgstr "-T <я┌п╣я─п╪п╦п╫п╟п╩>\tп²п╟п╥п╫п╟я┤п╦я┌я▄ я┐п╨п╟п╥п╟п╫п╫я▀п╧ я┌п╦п© <я┌п╣я─п╪п╦п╫п╟п╩п╟>" -#: main.c:2517 +#: main.c:2526 msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tИспользовать <vimrc> вместо любых файлов .vimrc" +msgstr "-u <vimrc>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <vimrc> п╡п╪п╣я│я┌п╬ п╩я▌п╠я▀я┘ я└п╟п╧п╩п╬п╡ .vimrc" -#: main.c:2519 +#: main.c:2528 msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -msgstr "-U <gvimrc>\t\tИспользовать <gvimrc> вместо любых файлов .gvimrc" +msgstr "-U <gvimrc>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <gvimrc> п╡п╪п╣я│я┌п╬ п╩я▌п╠я▀я┘ я└п╟п╧п╩п╬п╡ .gvimrc" -#: main.c:2521 +#: main.c:2530 msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tНе загружать сценарии модулей" +msgstr "--noplugin\t\tп²п╣ п╥п╟пЁя─я┐п╤п╟я┌я▄ я│я├п╣п╫п╟я─п╦п╦ п╪п╬п╢я┐п╩п╣п╧" -#: main.c:2522 +#: main.c:2531 msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tОткрыть N окон (по умолчанию: по одному на каждый файл)" +msgstr "-o[N]\t\tп·я┌п╨я─я▀я┌я▄ N п╬п╨п╬п╫ (п©п╬ я┐п╪п╬п╩я┤п╟п╫п╦я▌: п©п╬ п╬п╢п╫п╬п╪я┐ п╫п╟ п╨п╟п╤п╢я▀п╧ я└п╟п╧п╩)" -#: main.c:2523 +#: main.c:2532 msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tТо же, что и -o, но с вертикальным разделением окон" +msgstr "-O[N]\t\tп╒п╬ п╤п╣, я┤я┌п╬ п╦ -o, п╫п╬ я│ п╡п╣я─я┌п╦п╨п╟п╩я▄п╫я▀п╪ я─п╟п╥п╢п╣п╩п╣п╫п╦п╣п╪ п╬п╨п╬п╫" -#: main.c:2524 +#: main.c:2533 msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tНачать редактирование в конце файла" +msgstr "+\t\t\tп²п╟я┤п╟я┌я▄ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ п╡ п╨п╬п╫я├п╣ я└п╟п╧п╩п╟" -#: main.c:2525 +#: main.c:2534 msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\tНачать редактирование в строке с номером <lnum>" +msgstr "+<lnum>\t\tп²п╟я┤п╟я┌я▄ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ п╡ я│я┌я─п╬п╨п╣ я│ п╫п╬п╪п╣я─п╬п╪ <lnum>" -#: main.c:2527 +#: main.c:2536 msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <команда>\tВыполнить <команду> перед загрузкой файла vimrc" +msgstr "--cmd <п╨п╬п╪п╟п╫п╢п╟>\tп▓я▀п©п╬п╩п╫п╦я┌я▄ <п╨п╬п╪п╟п╫п╢я┐> п©п╣я─п╣п╢ п╥п╟пЁя─я┐п╥п╨п╬п╧ я└п╟п╧п╩п╟ vimrc" -#: main.c:2529 +#: main.c:2538 msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <команда>\t\tВыполнить <команду> после загрузки первого файла" +msgstr "-c <п╨п╬п╪п╟п╫п╢п╟>\t\tп▓я▀п©п╬п╩п╫п╦я┌я▄ <п╨п╬п╪п╟п╫п╢я┐> п©п╬я│п╩п╣ п╥п╟пЁя─я┐п╥п╨п╦ п©п╣я─п╡п╬пЁп╬ я└п╟п╧п╩п╟" -#: main.c:2530 +#: main.c:2539 msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <сеанс>\t\tПрочитать сценарий <сеанса> после загрузки первого файла" +msgstr "-S <я│п╣п╟п╫я│>\t\tп÷я─п╬я┤п╦я┌п╟я┌я▄ я│я├п╣п╫п╟я─п╦п╧ <я│п╣п╟п╫я│п╟> п©п╬я│п╩п╣ п╥п╟пЁя─я┐п╥п╨п╦ п©п╣я─п╡п╬пЁп╬ я└п╟п╧п╩п╟" -#: main.c:2531 +#: main.c:2540 msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <сценарий>\tПрочитать команды Обычного режима из файла <сценария>" +msgstr "-s <я│я├п╣п╫п╟я─п╦п╧>\tп÷я─п╬я┤п╦я┌п╟я┌я▄ п╨п╬п╪п╟п╫п╢я▀ п·п╠я▀я┤п╫п╬пЁп╬ я─п╣п╤п╦п╪п╟ п╦п╥ я└п╟п╧п╩п╟ <я│я├п╣п╫п╟я─п╦я▐>" -#: main.c:2532 +#: main.c:2541 msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <сценарий>\tДобавлять все введённые команды в файл <сценария>" +msgstr "-w <я│я├п╣п╫п╟я─п╦п╧>\tп■п╬п╠п╟п╡п╩я▐я┌я▄ п╡я│п╣ п╡п╡п╣п╢я▒п╫п╫я▀п╣ п╨п╬п╪п╟п╫п╢я▀ п╡ я└п╟п╧п╩ <я│я├п╣п╫п╟я─п╦я▐>" -#: main.c:2533 +#: main.c:2542 msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <сценарий>\tЗаписать все введённые команды в файл <сценария>" +msgstr "-W <я│я├п╣п╫п╟я─п╦п╧>\tп≈п╟п©п╦я│п╟я┌я▄ п╡я│п╣ п╡п╡п╣п╢я▒п╫п╫я▀п╣ п╨п╬п╪п╟п╫п╢я▀ п╡ я└п╟п╧п╩ <я│я├п╣п╫п╟я─п╦я▐>" -#: main.c:2535 +#: main.c:2544 msgid "-x\t\t\tEdit encrypted files" -msgstr "-x\t\t\tРедактирование зашифрованных файлов" +msgstr "-x\t\t\tп═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ п╥п╟я┬п╦я└я─п╬п╡п╟п╫п╫я▀я┘ я└п╟п╧п╩п╬п╡" -#: main.c:2539 +#: main.c:2548 msgid "-display <display>\tConnect vim to this particular X-server" -msgstr "-display <экран>\tПодсоединить vim к указанному серверу X" +msgstr "-display <я█п╨я─п╟п╫>\tп÷п╬п╢я│п╬п╣п╢п╦п╫п╦я┌я▄ vim п╨ я┐п╨п╟п╥п╟п╫п╫п╬п╪я┐ я│п╣я─п╡п╣я─я┐ X" -#: main.c:2541 +#: main.c:2550 msgid "-X\t\t\tDo not connect to X server" -msgstr "-X\t\t\tНе выполнять соединение с сервером X" +msgstr "-X\t\t\tп²п╣ п╡я▀п©п╬п╩п╫я▐я┌я▄ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣ я│ я│п╣я─п╡п╣я─п╬п╪ X" -#: main.c:2544 +#: main.c:2553 msgid "--remote <files>\tEdit <files> in a Vim server if possible" -msgstr "--remote <файлы>\tПо возможности редактировать <файлы> на сервере Vim" +msgstr "--remote <я└п╟п╧п╩я▀>\tп÷п╬ п╡п╬п╥п╪п╬п╤п╫п╬я│я┌п╦ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ <я└п╟п╧п╩я▀> п╫п╟ я│п╣я─п╡п╣я─п╣ Vim" -#: main.c:2545 +#: main.c:2554 msgid "--remote-silent <files> Same, don't complain if there is no server" -msgstr "--remote-silent <файлы> То же, но без жалоб на отсутствие сервера" +msgstr "--remote-silent <я└п╟п╧п╩я▀> п╒п╬ п╤п╣, п╫п╬ п╠п╣п╥ п╤п╟п╩п╬п╠ п╫п╟ п╬я┌я│я┐я┌я│я┌п╡п╦п╣ я│п╣я─п╡п╣я─п╟" -#: main.c:2546 +#: main.c:2555 msgid "" "--remote-wait <files> As --remote but wait for files to have been edited" msgstr "" -"--remote-wait <файлы> То же, что и --remote, но с ожиданием завершения" +"--remote-wait <я└п╟п╧п╩я▀> п╒п╬ п╤п╣, я┤я┌п╬ п╦ --remote, п╫п╬ я│ п╬п╤п╦п╢п╟п╫п╦п╣п╪ п╥п╟п╡п╣я─я┬п╣п╫п╦я▐" -#: main.c:2547 +#: main.c:2556 msgid "" "--remote-wait-silent <files> Same, don't complain if there is no server" msgstr "" -"--remote-wait-silent <файлы> То же, но без жалоб на отсутствие сервера" +"--remote-wait-silent <я└п╟п╧п╩я▀> п╒п╬ п╤п╣, п╫п╬ п╠п╣п╥ п╤п╟п╩п╬п╠ п╫п╟ п╬я┌я│я┐я┌я│я┌п╡п╦п╣ я│п╣я─п╡п╣я─п╟" -#: main.c:2548 +#: main.c:2557 msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -msgstr "--remote-send <кнопки>\tОтправить <кнопки> на сервер Vim и выйти" +msgstr "--remote-send <п╨п╫п╬п©п╨п╦>\tп·я┌п©я─п╟п╡п╦я┌я▄ <п╨п╫п╬п©п╨п╦> п╫п╟ я│п╣я─п╡п╣я─ Vim п╦ п╡я▀п╧я┌п╦" -#: main.c:2549 +#: main.c:2558 msgid "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -msgstr "--remote-expr <выраж>\tВычислить <выраж> на сервере Vim и напечатать" +msgstr "--remote-expr <п╡я▀я─п╟п╤>\tп▓я▀я┤п╦я│п╩п╦я┌я▄ <п╡я▀я─п╟п╤> п╫п╟ я│п╣я─п╡п╣я─п╣ Vim п╦ п╫п╟п©п╣я┤п╟я┌п╟я┌я▄" -#: main.c:2550 +#: main.c:2559 msgid "--serverlist\t\tList available Vim server names and exit" -msgstr "--serverlist\t\tПоказать список имён серверов Vim и завершить работу" +msgstr "--serverlist\t\tп÷п╬п╨п╟п╥п╟я┌я▄ я│п©п╦я│п╬п╨ п╦п╪я▒п╫ я│п╣я─п╡п╣я─п╬п╡ Vim п╦ п╥п╟п╡п╣я─я┬п╦я┌я▄ я─п╟п╠п╬я┌я┐" -#: main.c:2551 +#: main.c:2560 msgid "--servername <name>\tSend to/become the Vim server <name>" msgstr "" -"--servername <имя>\tОтправить на/стать сервером Vim с указанным <именем>" +"--servername <п╦п╪я▐>\tп·я┌п©я─п╟п╡п╦я┌я▄ п╫п╟/я│я┌п╟я┌я▄ я│п╣я─п╡п╣я─п╬п╪ Vim я│ я┐п╨п╟п╥п╟п╫п╫я▀п╪ <п╦п╪п╣п╫п╣п╪>" -#: main.c:2554 +#: main.c:2563 msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tИспользовать вместо .viminfo файл <viminfo>" +msgstr "-i <viminfo>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╡п╪п╣я│я┌п╬ .viminfo я└п╟п╧п╩ <viminfo>" -#: main.c:2556 +#: main.c:2565 msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h или --help\tВывести справку (это сообщение) и завершить работу" +msgstr "-h п╦п╩п╦ --help\tп▓я▀п╡п╣я│я┌п╦ я│п©я─п╟п╡п╨я┐ (я█я┌п╬ я│п╬п╬п╠я┴п╣п╫п╦п╣) п╦ п╥п╟п╡п╣я─я┬п╦я┌я▄ я─п╟п╠п╬я┌я┐" -#: main.c:2557 +#: main.c:2566 msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\tВывести информацию о версии Vim и завершить работу" +msgstr "--version\t\tп▓я▀п╡п╣я│я┌п╦ п╦п╫я└п╬я─п╪п╟я├п╦я▌ п╬ п╡п╣я─я│п╦п╦ Vim п╦ п╥п╟п╡п╣я─я┬п╦я┌я▄ я─п╟п╠п╬я┌я┐" -#: main.c:2561 +#: main.c:2570 msgid "" "\n" "Arguments recognised by gvim (Motif version):\n" msgstr "" "\n" -"Аргументы для gvim (версия Motif):\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐ gvim (п╡п╣я─я│п╦я▐ Motif):\n" -#: main.c:2565 +#: main.c:2574 msgid "" "\n" "Arguments recognised by gvim (neXtaw version):\n" msgstr "" "\n" -"Аргументы для gvim (версия neXtaw):\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐ gvim (п╡п╣я─я│п╦я▐ neXtaw):\n" -#: main.c:2567 +#: main.c:2576 msgid "" "\n" "Arguments recognised by gvim (Athena version):\n" msgstr "" "\n" -"Аргументы для gvim (версия Athena):\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐ gvim (п╡п╣я─я│п╦я▐ Athena):\n" -#: main.c:2571 +#: main.c:2580 msgid "-display <display>\tRun vim on <display>" -msgstr "-display <дисплей>\tЗапустить vim на указанном <дисплее>" +msgstr "-display <п╢п╦я│п©п╩п╣п╧>\tп≈п╟п©я┐я│я┌п╦я┌я▄ vim п╫п╟ я┐п╨п╟п╥п╟п╫п╫п╬п╪ <п╢п╦я│п©п╩п╣п╣>" -#: main.c:2572 +#: main.c:2581 msgid "-iconic\t\tStart vim iconified" -msgstr "-iconic\t\tЗапустить vim в свёрнутом виде" +msgstr "-iconic\t\tп≈п╟п©я┐я│я┌п╦я┌я▄ vim п╡ я│п╡я▒я─п╫я┐я┌п╬п╪ п╡п╦п╢п╣" -#: main.c:2574 +#: main.c:2583 msgid "-name <name>\t\tUse resource as if vim was <name>" -msgstr "-name <имя>\t\tИспользовать ресурс, как если бы vim был <именем>" +msgstr "-name <п╦п╪я▐>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я─п╣я│я┐я─я│, п╨п╟п╨ п╣я│п╩п╦ п╠я▀ vim п╠я▀п╩ <п╦п╪п╣п╫п╣п╪>" -#: main.c:2575 +#: main.c:2584 msgid "\t\t\t (Unimplemented)\n" -msgstr "\t\t\t (Не реализовано)\n" +msgstr "\t\t\t (п²п╣ я─п╣п╟п╩п╦п╥п╬п╡п╟п╫п╬)\n" -#: main.c:2577 +#: main.c:2586 msgid "-background <color>\tUse <color> for the background (also: -bg)" msgstr "" -"-background <цвет>\tИспользовать указанный <цвет> для фона (также: -bg)" +"-background <я├п╡п╣я┌>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я┐п╨п╟п╥п╟п╫п╫я▀п╧ <я├п╡п╣я┌> п╢п╩я▐ я└п╬п╫п╟ (я┌п╟п╨п╤п╣: -bg)" -#: main.c:2578 +#: main.c:2587 msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" msgstr "" -"-foreground <цвет>\tИспользовать <цвет> для обычного текста (также: -fg)" +"-foreground <я├п╡п╣я┌>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <я├п╡п╣я┌> п╢п╩я▐ п╬п╠я▀я┤п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟ (я┌п╟п╨п╤п╣: -fg)" -#: main.c:2579 main.c:2599 +#: main.c:2588 main.c:2608 msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -msgstr "-font <шрифт>\t\tИспользовать <шрифт> для обычного текста (также: -fn)" +msgstr "-font <я┬я─п╦я└я┌>\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <я┬я─п╦я└я┌> п╢п╩я▐ п╬п╠я▀я┤п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟ (я┌п╟п╨п╤п╣: -fn)" -#: main.c:2580 +#: main.c:2589 msgid "-boldfont <font>\tUse <font> for bold text" -msgstr "-boldfont <шрифт>\tИспользовать <шрифт> для жирного текста" +msgstr "-boldfont <я┬я─п╦я└я┌>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <я┬я─п╦я└я┌> п╢п╩я▐ п╤п╦я─п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟" -#: main.c:2581 +#: main.c:2590 msgid "-italicfont <font>\tUse <font> for italic text" -msgstr "-italicfont <шрифт>\tИспользовать <шрифт> для наклонного текста" +msgstr "-italicfont <я┬я─п╦я└я┌>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <я┬я─п╦я└я┌> п╢п╩я▐ п╫п╟п╨п╩п╬п╫п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟" -#: main.c:2582 main.c:2600 +#: main.c:2591 main.c:2609 msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" msgstr "" -"-geometry <геометрия>\tИспользовать начальную <геометрию> (также: -geom)" +"-geometry <пЁп╣п╬п╪п╣я┌я─п╦я▐>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╫п╟я┤п╟п╩я▄п╫я┐я▌ <пЁп╣п╬п╪п╣я┌я─п╦я▌> (я┌п╟п╨п╤п╣: -geom)" -#: main.c:2583 +#: main.c:2592 msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -msgstr "-borderwidth <ширина>\tИспользовать <ширину> бордюра (также: -bw)" +msgstr "-borderwidth <я┬п╦я─п╦п╫п╟>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <я┬п╦я─п╦п╫я┐> п╠п╬я─п╢я▌я─п╟ (я┌п╟п╨п╤п╣: -bw)" -#: main.c:2584 +#: main.c:2593 msgid "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" msgstr "" -"-scrollbarwidth <ширина> Использовать ширину полосы прокрутки (также: -sw)" +"-scrollbarwidth <я┬п╦я─п╦п╫п╟> п≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ я┬п╦я─п╦п╫я┐ п©п╬п╩п╬я│я▀ п©я─п╬п╨я─я┐я┌п╨п╦ (я┌п╟п╨п╤п╣: -sw)" -#: main.c:2586 +#: main.c:2595 msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -msgstr "-menuheight <высота>\tИспользовать <высоту> меню (также: -mh)" +msgstr "-menuheight <п╡я▀я│п╬я┌п╟>\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ <п╡я▀я│п╬я┌я┐> п╪п╣п╫я▌ (я┌п╟п╨п╤п╣: -mh)" -#: main.c:2588 main.c:2601 +#: main.c:2597 main.c:2610 msgid "-reverse\t\tUse reverse video (also: -rv)" -msgstr "-reverse\t\tИспользовать инверсный видеорежим (также: -rv)" +msgstr "-reverse\t\tп≤я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╦п╫п╡п╣я─я│п╫я▀п╧ п╡п╦п╢п╣п╬я─п╣п╤п╦п╪ (я┌п╟п╨п╤п╣: -rv)" -#: main.c:2589 +#: main.c:2598 msgid "+reverse\t\tDon't use reverse video (also: +rv)" -msgstr "+reverse\t\tНе использовать инверсный видеорежим (также: +rv)" +msgstr "+reverse\t\tп²п╣ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╦п╫п╡п╣я─я│п╫я▀п╧ п╡п╦п╢п╣п╬я─п╣п╤п╦п╪ (я┌п╟п╨п╤п╣: +rv)" -#: main.c:2590 +#: main.c:2599 msgid "-xrm <resource>\tSet the specified resource" -msgstr "-xrm <ресурс>\tУстановить указанный <ресурс>" +msgstr "-xrm <я─п╣я│я┐я─я│>\tпёя│я┌п╟п╫п╬п╡п╦я┌я▄ я┐п╨п╟п╥п╟п╫п╫я▀п╧ <я─п╣я│я┐я─я│>" -#: main.c:2593 +#: main.c:2602 msgid "" "\n" "Arguments recognised by gvim (RISC OS version):\n" msgstr "" "\n" -"Аргументы для gvim (версия RISC OS):\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐ gvim (п╡п╣я─я│п╦я▐ RISC OS):\n" -#: main.c:2594 +#: main.c:2603 msgid "--columns <number>\tInitial width of window in columns" -msgstr "--columns <число>\tПервоначальная ширина окна в колонках" +msgstr "--columns <я┤п╦я│п╩п╬>\tп÷п╣я─п╡п╬п╫п╟я┤п╟п╩я▄п╫п╟я▐ я┬п╦я─п╦п╫п╟ п╬п╨п╫п╟ п╡ п╨п╬п╩п╬п╫п╨п╟я┘" -#: main.c:2595 +#: main.c:2604 msgid "--rows <number>\tInitial height of window in rows" -msgstr "--rows <число>\tПервоначальная высота окна в строках" +msgstr "--rows <я┤п╦я│п╩п╬>\tп÷п╣я─п╡п╬п╫п╟я┤п╟п╩я▄п╫п╟я▐ п╡я▀я│п╬я┌п╟ п╬п╨п╫п╟ п╡ я│я┌я─п╬п╨п╟я┘" -#: main.c:2598 +#: main.c:2607 msgid "" "\n" "Arguments recognised by gvim (GTK+ version):\n" msgstr "" "\n" -"Аргументы для gvim (версия GTK+):\n" +"п░я─пЁя┐п╪п╣п╫я┌я▀ п╢п╩я▐ gvim (п╡п╣я─я│п╦я▐ GTK+):\n" -#: main.c:2602 +#: main.c:2611 msgid "-display <display>\tRun vim on <display> (also: --display)" msgstr "" -"-display <дисплей>\tЗапустить vim на указанном <дисплее> (также: --display)" +"-display <п╢п╦я│п©п╩п╣п╧>\tп≈п╟п©я┐я│я┌п╦я┌я▄ vim п╫п╟ я┐п╨п╟п╥п╟п╫п╫п╬п╪ <п╢п╦я│п©п╩п╣п╣> (я┌п╟п╨п╤п╣: --display)" -#: main.c:2604 +#: main.c:2613 msgid "--role <role>\tSet a unique role to identify the main window" msgstr "" -"--role <роль>\tУстановить уникальную <роль> для идентификации главного окна" +"--role <я─п╬п╩я▄>\tпёя│я┌п╟п╫п╬п╡п╦я┌я▄ я┐п╫п╦п╨п╟п╩я▄п╫я┐я▌ <я─п╬п╩я▄> п╢п╩я▐ п╦п╢п╣п╫я┌п╦я└п╦п╨п╟я├п╦п╦ пЁп╩п╟п╡п╫п╬пЁп╬ п╬п╨п╫п╟" -#: main.c:2606 +#: main.c:2615 msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -msgstr "--socketid <xid>\tОткрыть Vim внутри другого компонента GTK" +msgstr "--socketid <xid>\tп·я┌п╨я─я▀я┌я▄ Vim п╡п╫я┐я┌я─п╦ п╢я─я┐пЁп╬пЁп╬ п╨п╬п╪п©п╬п╫п╣п╫я┌п╟ GTK" -#: main.c:2609 +#: main.c:2618 msgid "-P <parent title>\tOpen Vim inside parent application" -msgstr "-P <заголовок родителя>\tОткрыть Vim в родительском приложении" +msgstr "-P <п╥п╟пЁп╬п╩п╬п╡п╬п╨ я─п╬п╢п╦я┌п╣п╩я▐>\tп·я┌п╨я─я▀я┌я▄ Vim п╡ я─п╬п╢п╦я┌п╣п╩я▄я│п╨п╬п╪ п©я─п╦п╩п╬п╤п╣п╫п╦п╦" -#: main.c:2847 +#: main.c:2856 msgid "No display" -msgstr "Нет дисплея" +msgstr "п²п╣я┌ п╢п╦я│п©п╩п╣я▐" #. Failed to send, abort. -#: main.c:2862 +#: main.c:2871 msgid ": Send failed.\n" -msgstr ": Отправка не удалась.\n" +msgstr ": п·я┌п©я─п╟п╡п╨п╟ п╫п╣ я┐п╢п╟п╩п╟я│я▄.\n" #. Let vim start normally. -#: main.c:2868 +#: main.c:2877 msgid ": Send failed. Trying to execute locally\n" -msgstr ": Отправка не удалась. Попытка местного выполнения\n" +msgstr ": п·я┌п©я─п╟п╡п╨п╟ п╫п╣ я┐п╢п╟п╩п╟я│я▄. п÷п╬п©я▀я┌п╨п╟ п╪п╣я│я┌п╫п╬пЁп╬ п╡я▀п©п╬п╩п╫п╣п╫п╦я▐\n" -#: main.c:2906 main.c:2927 +#: main.c:2915 main.c:2936 #, c-format msgid "%d of %d edited" -msgstr "отредактировано %d из %d" +msgstr "п╬я┌я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╬ %d п╦п╥ %d" -#: main.c:2949 +#: main.c:2958 msgid "No display: Send expression failed.\n" -msgstr "Нет дисплея: отправка выражения не удалась.\n" +msgstr "п²п╣я┌ п╢п╦я│п©п╩п╣я▐: п╬я┌п©я─п╟п╡п╨п╟ п╡я▀я─п╟п╤п╣п╫п╦я▐ п╫п╣ я┐п╢п╟п╩п╟я│я▄.\n" -#: main.c:2961 +#: main.c:2970 msgid ": Send expression failed.\n" -msgstr ": Отправка выражения не удалась.\n" +msgstr ": п·я┌п©я─п╟п╡п╨п╟ п╡я▀я─п╟п╤п╣п╫п╦я▐ п╫п╣ я┐п╢п╟п╩п╟я│я▄.\n" #: mark.c:709 msgid "No marks set" -msgstr "Нет установленных отметок" +msgstr "п²п╣я┌ я┐я│я┌п╟п╫п╬п╡п╩п╣п╫п╫я▀я┘ п╬я┌п╪п╣я┌п╬п╨" #: mark.c:711 #, c-format msgid "E283: No marks matching \"%s\"" -msgstr "E283: Нет отметок, совпадающих с \"%s\"" +msgstr "E283: п²п╣я┌ п╬я┌п╪п╣я┌п╬п╨, я│п╬п╡п©п╟п╢п╟я▌я┴п╦я┘ я│ \"%s\"" #. Highlight title #: mark.c:722 @@ -3443,7 +3452,7 @@ msgid "" "mark line col file/text" msgstr "" "\n" -"отмет стр кол файл/текст" +"п╬я┌п╪п╣я┌ я│я┌я─ п╨п╬п╩ я└п╟п╧п╩/я┌п╣п╨я│я┌" #. Highlight title #: mark.c:760 @@ -3452,7 +3461,7 @@ msgid "" " jump line col file/text" msgstr "" "\n" -"прыжок стр кол файл/текст" +"п©я─я▀п╤п╬п╨ я│я┌я─ п╨п╬п╩ я└п╟п╧п╩/я┌п╣п╨я│я┌" #. Highlight title #: mark.c:805 @@ -3461,7 +3470,7 @@ msgid "" "change line col text" msgstr "" "\n" -"измен. стр кол текст" +"п╦п╥п╪п╣п╫. я│я┌я─ п╨п╬п╩ я┌п╣п╨я│я┌" #: mark.c:1281 #, c-format @@ -3470,7 +3479,7 @@ msgid "" "# File marks:\n" msgstr "" "\n" -"# Глобальные отметки:\n" +"# п⌠п╩п╬п╠п╟п╩я▄п╫я▀п╣ п╬я┌п╪п╣я┌п╨п╦:\n" #. Write the jumplist with -' #: mark.c:1316 @@ -3480,7 +3489,7 @@ msgid "" "# Jumplist (newest first):\n" msgstr "" "\n" -"# Список прыжков (сначала более свежие):\n" +"# п║п©п╦я│п╬п╨ п©я─я▀п╤п╨п╬п╡ (я│п╫п╟я┤п╟п╩п╟ п╠п╬п╩п╣п╣ я│п╡п╣п╤п╦п╣):\n" #: mark.c:1412 #, c-format @@ -3489,476 +3498,476 @@ msgid "" "# History of marks within files (newest to oldest):\n" msgstr "" "\n" -"# История местных отметок (от более свежих к старым):\n" +"# п≤я│я┌п╬я─п╦я▐ п╪п╣я│я┌п╫я▀я┘ п╬я┌п╪п╣я┌п╬п╨ (п╬я┌ п╠п╬п╩п╣п╣ я│п╡п╣п╤п╦я┘ п╨ я│я┌п╟я─я▀п╪):\n" #: mark.c:1501 msgid "Missing '>'" -msgstr "Пропущена '>'" +msgstr "п÷я─п╬п©я┐я┴п╣п╫п╟ '>'" #: mbyte.c:467 msgid "E543: Not a valid codepage" -msgstr "E543: Недопустимое имя кодировки" +msgstr "E543: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ п╨п╬п╢п╦я─п╬п╡п╨п╦" #: mbyte.c:4431 msgid "E284: Cannot set IC values" -msgstr "E284: Невозможно назначить значения контекста ввода" +msgstr "E284: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╫п╟п╥п╫п╟я┤п╦я┌я▄ п╥п╫п╟я┤п╣п╫п╦я▐ п╨п╬п╫я┌п╣п╨я│я┌п╟ п╡п╡п╬п╢п╟" #: mbyte.c:4583 msgid "E285: Failed to create input context" -msgstr "E285: Невозможно создать контекст ввода" +msgstr "E285: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ п╨п╬п╫я┌п╣п╨я│я┌ п╡п╡п╬п╢п╟" #: mbyte.c:4741 msgid "E286: Failed to open input method" -msgstr "E286: Неудачная попытка открыть метод ввода" +msgstr "E286: п²п╣я┐п╢п╟я┤п╫п╟я▐ п©п╬п©я▀я┌п╨п╟ п╬я┌п╨я─я▀я┌я▄ п╪п╣я┌п╬п╢ п╡п╡п╬п╢п╟" #: mbyte.c:4752 msgid "E287: Warning: Could not set destroy callback to IM" msgstr "" -"E287: Предупреждение: невозможно назначить обр. вызов уничтожения метода " -"ввода" +"E287: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╫п╟п╥п╫п╟я┤п╦я┌я▄ п╬п╠я─. п╡я▀п╥п╬п╡ я┐п╫п╦я┤я┌п╬п╤п╣п╫п╦я▐ п╪п╣я┌п╬п╢п╟ " +"п╡п╡п╬п╢п╟" #: mbyte.c:4758 msgid "E288: input method doesn't support any style" -msgstr "E288: метод ввода не поддерживает стили" +msgstr "E288: п╪п╣я┌п╬п╢ п╡п╡п╬п╢п╟ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌ я│я┌п╦п╩п╦" #: mbyte.c:4815 msgid "E289: input method doesn't support my preedit type" msgstr "" -"E289: метод ввода не поддерживает мой тип предварительного редактирования" +"E289: п╪п╣я┌п╬п╢ п╡п╡п╬п╢п╟ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌ п╪п╬п╧ я┌п╦п© п©я─п╣п╢п╡п╟я─п╦я┌п╣п╩я▄п╫п╬пЁп╬ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐" #: mbyte.c:4889 msgid "E290: over-the-spot style requires fontset" -msgstr "E290: стиль \"над местом\" требует указания шрифтового набора" +msgstr "E290: я│я┌п╦п╩я▄ \"п╫п╟п╢ п╪п╣я│я┌п╬п╪\" я┌я─п╣п╠я┐п╣я┌ я┐п╨п╟п╥п╟п╫п╦я▐ я┬я─п╦я└я┌п╬п╡п╬пЁп╬ п╫п╟п╠п╬я─п╟" #: mbyte.c:4925 msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" msgstr "" -"E291: GTK+ более ранней версии, чем 1.2.3. Область состояния не работает." +"E291: GTK+ п╠п╬п╩п╣п╣ я─п╟п╫п╫п╣п╧ п╡п╣я─я│п╦п╦, я┤п╣п╪ 1.2.3. п·п╠п╩п╟я│я┌я▄ я│п╬я│я┌п╬я▐п╫п╦я▐ п╫п╣ я─п╟п╠п╬я┌п╟п╣я┌." #: mbyte.c:5232 msgid "E292: Input Method Server is not running" -msgstr "E292: Сервер метода ввода не запущен" +msgstr "E292: п║п╣я─п╡п╣я─ п╪п╣я┌п╬п╢п╟ п╡п╡п╬п╢п╟ п╫п╣ п╥п╟п©я┐я┴п╣п╫" #: memfile.c:488 msgid "E293: block was not locked" -msgstr "E293: блок не заблокирован" +msgstr "E293: п╠п╩п╬п╨ п╫п╣ п╥п╟п╠п╩п╬п╨п╦я─п╬п╡п╟п╫" -#: memfile.c:1005 +#: memfile.c:1010 msgid "E294: Seek error in swap file read" -msgstr "E294: Ошибка поиска при чтении своп-файла" +msgstr "E294: п·я┬п╦п╠п╨п╟ п©п╬п╦я│п╨п╟ п©я─п╦ я┤я┌п╣п╫п╦п╦ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: memfile.c:1010 +#: memfile.c:1015 msgid "E295: Read error in swap file" -msgstr "E295: Ошибка чтения своп-файла" +msgstr "E295: п·я┬п╦п╠п╨п╟ я┤я┌п╣п╫п╦я▐ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: memfile.c:1062 +#: memfile.c:1067 msgid "E296: Seek error in swap file write" -msgstr "E296: Ошибка поиска при записи своп-файла" +msgstr "E296: п·я┬п╦п╠п╨п╟ п©п╬п╦я│п╨п╟ п©я─п╦ п╥п╟п©п╦я│п╦ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: memfile.c:1080 +#: memfile.c:1085 msgid "E297: Write error in swap file" -msgstr "E297: Ошибка при записи своп-файла" +msgstr "E297: п·я┬п╦п╠п╨п╟ п©я─п╦ п╥п╟п©п╦я│п╦ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: memfile.c:1277 +#: memfile.c:1282 msgid "E300: Swap file already exists (symlink attack?)" msgstr "" -"E300: Своп-файл уже существует (атака с использованием символьной ссылки?)" +"E300: п║п╡п╬п©-я└п╟п╧п╩ я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌ (п╟я┌п╟п╨п╟ я│ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣п╪ я│п╦п╪п╡п╬п╩я▄п╫п╬п╧ я│я│я▀п╩п╨п╦?)" #: memline.c:275 msgid "E298: Didn't get block nr 0?" -msgstr "E298: Не получен блок номер 0?" +msgstr "E298: п²п╣ п©п╬п╩я┐я┤п╣п╫ п╠п╩п╬п╨ п╫п╬п╪п╣я─ 0?" #: memline.c:315 msgid "E298: Didn't get block nr 1?" -msgstr "E298: Не получен блок номер 1?" +msgstr "E298: п²п╣ п©п╬п╩я┐я┤п╣п╫ п╠п╩п╬п╨ п╫п╬п╪п╣я─ 1?" #: memline.c:333 msgid "E298: Didn't get block nr 2?" -msgstr "E298: Не получен блок номер 2?" +msgstr "E298: п²п╣ п©п╬п╩я┐я┤п╣п╫ п╠п╩п╬п╨ п╫п╬п╪п╣я─ 2?" #. could not (re)open the swap file, what can we do???? -#: memline.c:443 +#: memline.c:444 msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: Ой, потерялся своп-файл!!!" +msgstr "E301: п·п╧, п©п╬я┌п╣я─я▐п╩я│я▐ я│п╡п╬п©-я└п╟п╧п╩!!!" -#: memline.c:448 +#: memline.c:449 msgid "E302: Could not rename swap file" -msgstr "E302: Невозможно переименовать своп-файл" +msgstr "E302: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╦п╪п╣п╫п╬п╡п╟я┌я▄ я│п╡п╬п©-я└п╟п╧п╩" -#: memline.c:518 +#: memline.c:519 #, c-format msgid "E303: Unable to open swap file for \"%s\", recovery impossible" msgstr "" -"E303: Не удалось открыть своп-файл для \"%s\", восстановление невозможно" +"E303: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╬я┌п╨я─я▀я┌я▄ я│п╡п╬п©-я└п╟п╧п╩ п╢п╩я▐ \"%s\", п╡п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦п╣ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬" -#: memline.c:617 +#: memline.c:618 msgid "E304: ml_timestamp: Didn't get block 0??" -msgstr "E304: ml_timestamp: Не получен блок 0??" +msgstr "E304: ml_timestamp: п²п╣ п©п╬п╩я┐я┤п╣п╫ п╠п╩п╬п╨ 0??" -#: memline.c:757 +#: memline.c:758 #, c-format msgid "E305: No swap file found for %s" -msgstr "E305: Своп-файл для %s не найден" +msgstr "E305: п║п╡п╬п©-я└п╟п╧п╩ п╢п╩я▐ %s п╫п╣ п╫п╟п╧п╢п╣п╫" -#: memline.c:767 +#: memline.c:768 msgid "Enter number of swap file to use (0 to quit): " msgstr "" -"Введите номер своп-файла, который следует использовать (0 для выхода): " +"п▓п╡п╣п╢п╦я┌п╣ п╫п╬п╪п╣я─ я│п╡п╬п©-я└п╟п╧п╩п╟, п╨п╬я┌п╬я─я▀п╧ я│п╩п╣п╢я┐п╣я┌ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ (0 п╢п╩я▐ п╡я▀я┘п╬п╢п╟): " -#: memline.c:812 +#: memline.c:813 #, c-format msgid "E306: Cannot open %s" -msgstr "E306: Не могу открыть %s" +msgstr "E306: п²п╣ п╪п╬пЁя┐ п╬я┌п╨я─я▀я┌я▄ %s" -#: memline.c:834 +#: memline.c:835 msgid "Unable to read block 0 from " -msgstr "Невозможно прочитать блок 0 из " +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ п╠п╩п╬п╨ 0 п╦п╥ " -#: memline.c:837 +#: memline.c:838 msgid "" "\n" "Maybe no changes were made or Vim did not update the swap file." msgstr "" "\n" -"Нет изменений, или Vim не смог обновить своп-файл" +"п²п╣я┌ п╦п╥п╪п╣п╫п╣п╫п╦п╧, п╦п╩п╦ Vim п╫п╣ я│п╪п╬пЁ п╬п╠п╫п╬п╡п╦я┌я▄ я│п╡п╬п©-я└п╟п╧п╩" -#: memline.c:847 memline.c:864 +#: memline.c:848 memline.c:865 msgid " cannot be used with this version of Vim.\n" -msgstr " нельзя использовать в данной версии Vim.\n" +msgstr " п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╡ п╢п╟п╫п╫п╬п╧ п╡п╣я─я│п╦п╦ Vim.\n" -#: memline.c:849 +#: memline.c:850 msgid "Use Vim version 3.0.\n" -msgstr "Используйте Vim версии 3.0.\n" +msgstr "п≤я│п©п╬п╩я▄п╥я┐п╧я┌п╣ Vim п╡п╣я─я│п╦п╦ 3.0.\n" -#: memline.c:855 +#: memline.c:856 #, c-format msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s не является своп-файлом Vim" +msgstr "E307: %s п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я│п╡п╬п©-я└п╟п╧п╩п╬п╪ Vim" -#: memline.c:868 +#: memline.c:869 msgid " cannot be used on this computer.\n" -msgstr " нельзя использовать на этом компьютере.\n" +msgstr " п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╫п╟ я█я┌п╬п╪ п╨п╬п╪п©я▄я▌я┌п╣я─п╣.\n" -#: memline.c:870 +#: memline.c:871 msgid "The file was created on " -msgstr "Файл был создан " +msgstr "п╓п╟п╧п╩ п╠я▀п╩ я│п╬п╥п╢п╟п╫ " -#: memline.c:874 +#: memline.c:875 msgid "" ",\n" "or the file has been damaged." msgstr "" ",\n" -"либо файл был повреждён." +"п╩п╦п╠п╬ я└п╟п╧п╩ п╠я▀п╩ п©п╬п╡я─п╣п╤п╢я▒п╫." -#: memline.c:903 +#: memline.c:904 #, c-format msgid "Using swap file \"%s\"" -msgstr "Используется своп-файл \"%s\"" +msgstr "п≤я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ я│п╡п╬п©-я└п╟п╧п╩ \"%s\"" -#: memline.c:909 +#: memline.c:910 #, c-format msgid "Original file \"%s\"" -msgstr "Исходный файл \"%s\"" +msgstr "п≤я│я┘п╬п╢п╫я▀п╧ я└п╟п╧п╩ \"%s\"" -#: memline.c:922 +#: memline.c:923 msgid "E308: Warning: Original file may have been changed" -msgstr "E308: Предупреждение: исходный файл мог быть изменён" +msgstr "E308: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п╦я│я┘п╬п╢п╫я▀п╧ я└п╟п╧п╩ п╪п╬пЁ п╠я▀я┌я▄ п╦п╥п╪п╣п╫я▒п╫" -#: memline.c:975 +#: memline.c:976 #, c-format msgid "E309: Unable to read block 1 from %s" -msgstr "E309: Невозможно прочитать блок 1 из %s" +msgstr "E309: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ п╠п╩п╬п╨ 1 п╦п╥ %s" -#: memline.c:979 +#: memline.c:980 msgid "???MANY LINES MISSING" -msgstr "???ОТСУТСТВУЕТ МНОГО СТРОК" +msgstr "???п·п╒п║пёп╒п║п╒п▓пёп∙п╒ п°п²п·п⌠п· п║п╒п═п·п " -#: memline.c:995 +#: memline.c:996 msgid "???LINE COUNT WRONG" -msgstr "???НЕПРАВИЛЬНОЕ ЗНАЧЕНИЕ СЧЕТЧИКА СТРОК" +msgstr "???п²п∙п÷п═п░п▓п≤п⌡п╛п²п·п∙ п≈п²п░п╖п∙п²п≤п∙ п║п╖п∙п╒п╖п≤п п░ п║п╒п═п·п " -#: memline.c:1002 +#: memline.c:1003 msgid "???EMPTY BLOCK" -msgstr "???ПУСТОЙ БЛОК" +msgstr "???п÷пёп║п╒п·п≥ п▒п⌡п·п " -#: memline.c:1028 +#: memline.c:1029 msgid "???LINES MISSING" -msgstr "???ОТСУТСТВУЮТ СТРОКИ" +msgstr "???п·п╒п║пёп╒п║п╒п▓пёп╝п╒ п║п╒п═п·п п≤" -#: memline.c:1060 +#: memline.c:1061 #, c-format msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: неправильный блок 1 ID (%s не является файлом .swp?)" +msgstr "E310: п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ п╠п╩п╬п╨ 1 ID (%s п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я└п╟п╧п╩п╬п╪ .swp?)" -#: memline.c:1065 +#: memline.c:1066 msgid "???BLOCK MISSING" -msgstr "???ПРОПУЩЕН БЛОК" +msgstr "???п÷п═п·п÷пёп╘п∙п² п▒п⌡п·п " -#: memline.c:1081 +#: memline.c:1082 msgid "??? from here until ???END lines may be messed up" -msgstr "???строки могут быть испорчены отсюда до ???КОНЦА" +msgstr "???я│я┌я─п╬п╨п╦ п╪п╬пЁя┐я┌ п╠я▀я┌я▄ п╦я│п©п╬я─я┤п╣п╫я▀ п╬я┌я│я▌п╢п╟ п╢п╬ ???п п·п²п╕п░" -#: memline.c:1097 +#: memline.c:1098 msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "???строки могли быть вставлены или удалены отсюда до ???КОНЦА" +msgstr "???я│я┌я─п╬п╨п╦ п╪п╬пЁп╩п╦ п╠я▀я┌я▄ п╡я│я┌п╟п╡п╩п╣п╫я▀ п╦п╩п╦ я┐п╢п╟п╩п╣п╫я▀ п╬я┌я│я▌п╢п╟ п╢п╬ ???п п·п²п╕п░" -#: memline.c:1117 +#: memline.c:1118 msgid "???END" -msgstr "???КОНЕЦ" +msgstr "???п п·п²п∙п╕" -#: memline.c:1143 +#: memline.c:1144 msgid "E311: Recovery Interrupted" -msgstr "E311: Восстановление прервано" +msgstr "E311: п▓п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦п╣ п©я─п╣я─п╡п╟п╫п╬" -#: memline.c:1148 +#: memline.c:1149 msgid "" "E312: Errors detected while recovering; look for lines starting with ???" msgstr "" -"E312: Во время восстановления обнаружены ошибки; см. строки, начинающиеся " -"с ???" +"E312: п▓п╬ п╡я─п╣п╪я▐ п╡п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦я▐ п╬п╠п╫п╟я─я┐п╤п╣п╫я▀ п╬я┬п╦п╠п╨п╦; я│п╪. я│я┌я─п╬п╨п╦, п╫п╟я┤п╦п╫п╟я▌я┴п╦п╣я│я▐ " +"я│ ???" -#: memline.c:1150 +#: memline.c:1151 msgid "See \":help E312\" for more information." -msgstr "См. дополнительную информацию в справочнике (\":help E312\")" +msgstr "п║п╪. п╢п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫я┐я▌ п╦п╫я└п╬я─п╪п╟я├п╦я▌ п╡ я│п©я─п╟п╡п╬я┤п╫п╦п╨п╣ (\":help E312\")" -#: memline.c:1155 +#: memline.c:1156 msgid "Recovery completed. You should check if everything is OK." -msgstr "Восстановление завершено. Проверьте, всё ли в порядке." +msgstr "п▓п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦п╣ п╥п╟п╡п╣я─я┬п╣п╫п╬. п÷я─п╬п╡п╣я─я▄я┌п╣, п╡я│я▒ п╩п╦ п╡ п©п╬я─я▐п╢п╨п╣." -#: memline.c:1156 +#: memline.c:1157 msgid "" "\n" "(You might want to write out this file under another name\n" msgstr "" "\n" -"(Можете записать файл под другим именем и сравнить его с исходным\n" +"(п°п╬п╤п╣я┌п╣ п╥п╟п©п╦я│п╟я┌я▄ я└п╟п╧п╩ п©п╬п╢ п╢я─я┐пЁп╦п╪ п╦п╪п╣п╫п╣п╪ п╦ я│я─п╟п╡п╫п╦я┌я▄ п╣пЁп╬ я│ п╦я│я┘п╬п╢п╫я▀п╪\n" -#: memline.c:1157 +#: memline.c:1158 msgid "and run diff with the original file to check for changes)\n" -msgstr "файлом при помощи программы diff).\n" +msgstr "я└п╟п╧п╩п╬п╪ п©я─п╦ п©п╬п╪п╬я┴п╦ п©я─п╬пЁя─п╟п╪п╪я▀ diff).\n" -#: memline.c:1158 +#: memline.c:1159 msgid "" "Delete the .swp file afterwards.\n" "\n" msgstr "" -"Затем удалите файл .swp.\n" +"п≈п╟я┌п╣п╪ я┐п╢п╟п╩п╦я┌п╣ я└п╟п╧п╩ .swp.\n" "\n" #. use msg() to start the scrolling properly -#: memline.c:1214 +#: memline.c:1215 msgid "Swap files found:" -msgstr "Обнаружены своп-файлы:" +msgstr "п·п╠п╫п╟я─я┐п╤п╣п╫я▀ я│п╡п╬п©-я└п╟п╧п╩я▀:" -#: memline.c:1392 +#: memline.c:1393 msgid " In current directory:\n" -msgstr " В текущем каталоге:\n" +msgstr " п▓ я┌п╣п╨я┐я┴п╣п╪ п╨п╟я┌п╟п╩п╬пЁп╣:\n" -#: memline.c:1394 +#: memline.c:1395 msgid " Using specified name:\n" -msgstr " С указанным именем:\n" +msgstr " п║ я┐п╨п╟п╥п╟п╫п╫я▀п╪ п╦п╪п╣п╫п╣п╪:\n" -#: memline.c:1398 +#: memline.c:1399 msgid " In directory " -msgstr " В каталоге " +msgstr " п▓ п╨п╟я┌п╟п╩п╬пЁп╣ " -#: memline.c:1416 +#: memline.c:1417 msgid " -- none --\n" -msgstr " -- нет --\n" +msgstr " -- п╫п╣я┌ --\n" -#: memline.c:1488 +#: memline.c:1489 msgid " owned by: " -msgstr " владелец: " +msgstr " п╡п╩п╟п╢п╣п╩п╣я├: " -#: memline.c:1490 +#: memline.c:1491 msgid " dated: " -msgstr " дата: " +msgstr " п╢п╟я┌п╟: " -#: memline.c:1494 memline.c:3684 +#: memline.c:1495 memline.c:3685 msgid " dated: " -msgstr " дата: " +msgstr " п╢п╟я┌п╟: " -#: memline.c:1510 +#: memline.c:1511 msgid " [from Vim version 3.0]" -msgstr " [от Vim версии 3.0]" +msgstr " [п╬я┌ Vim п╡п╣я─я│п╦п╦ 3.0]" -#: memline.c:1514 +#: memline.c:1515 msgid " [does not look like a Vim swap file]" -msgstr " [не является своп-файлом Vim]" +msgstr " [п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ я│п╡п╬п©-я└п╟п╧п╩п╬п╪ Vim]" -#: memline.c:1518 +#: memline.c:1519 msgid " file name: " -msgstr " имя файла: " +msgstr " п╦п╪я▐ я└п╟п╧п╩п╟: " -#: memline.c:1524 +#: memline.c:1525 msgid "" "\n" " modified: " msgstr "" "\n" -" изменён: " +" п╦п╥п╪п╣п╫я▒п╫: " -#: memline.c:1525 +#: memline.c:1526 msgid "YES" -msgstr "ДА" +msgstr "п■п░" -#: memline.c:1525 +#: memline.c:1526 msgid "no" -msgstr "нет" +msgstr "п╫п╣я┌" -#: memline.c:1529 +#: memline.c:1530 msgid "" "\n" " user name: " msgstr "" "\n" -" пользователь: " +" п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄: " -#: memline.c:1536 +#: memline.c:1537 msgid " host name: " -msgstr " компьютер: " +msgstr " п╨п╬п╪п©я▄я▌я┌п╣я─: " -#: memline.c:1538 +#: memline.c:1539 msgid "" "\n" " host name: " msgstr "" "\n" -" компьютер: " +" п╨п╬п╪п©я▄я▌я┌п╣я─: " -#: memline.c:1544 +#: memline.c:1545 msgid "" "\n" " process ID: " msgstr "" "\n" -" процесс: " +" п©я─п╬я├п╣я│я│: " -#: memline.c:1550 +#: memline.c:1551 msgid " (still running)" -msgstr " (ещё выполняется)" +msgstr " (п╣я┴я▒ п╡я▀п©п╬п╩п╫я▐п╣я┌я│я▐)" -#: memline.c:1562 +#: memline.c:1563 msgid "" "\n" " [not usable with this version of Vim]" msgstr "" "\n" -" [не пригоден для использования с данной версией Vim]" +" [п╫п╣ п©я─п╦пЁп╬п╢п╣п╫ п╢п╩я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦я▐ я│ п╢п╟п╫п╫п╬п╧ п╡п╣я─я│п╦п╣п╧ Vim]" -#: memline.c:1565 +#: memline.c:1566 msgid "" "\n" " [not usable on this computer]" msgstr "" "\n" -" [не пригоден для использования на этом компьютере]" +" [п╫п╣ п©я─п╦пЁп╬п╢п╣п╫ п╢п╩я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦я▐ п╫п╟ я█я┌п╬п╪ п╨п╬п╪п©я▄я▌я┌п╣я─п╣]" -#: memline.c:1570 +#: memline.c:1571 msgid " [cannot be read]" -msgstr " [не читается]" +msgstr " [п╫п╣ я┤п╦я┌п╟п╣я┌я│я▐]" -#: memline.c:1574 +#: memline.c:1575 msgid " [cannot be opened]" -msgstr " [не открывается]" +msgstr " [п╫п╣ п╬я┌п╨я─я▀п╡п╟п╣я┌я│я▐]" -#: memline.c:1764 +#: memline.c:1765 msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: Невозможно обновить своп-файл, поскольку он не обнаружен" +msgstr "E313: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬п╠п╫п╬п╡п╦я┌я▄ я│п╡п╬п©-я└п╟п╧п╩, п©п╬я│п╨п╬п╩я▄п╨я┐ п╬п╫ п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫" -#: memline.c:1817 +#: memline.c:1818 msgid "File preserved" -msgstr "Своп-файл обновлён" +msgstr "п║п╡п╬п©-я└п╟п╧п╩ п╬п╠п╫п╬п╡п╩я▒п╫" -#: memline.c:1819 +#: memline.c:1820 msgid "E314: Preserve failed" -msgstr "E314: Неудачная попытка обновления своп-файла" +msgstr "E314: п²п╣я┐п╢п╟я┤п╫п╟я▐ п©п╬п©я▀я┌п╨п╟ п╬п╠п╫п╬п╡п╩п╣п╫п╦я▐ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: memline.c:1890 +#: memline.c:1891 #, c-format msgid "E315: ml_get: invalid lnum: %ld" -msgstr "E315: ml_get: неправильное значение lnum: %ld" +msgstr "E315: ml_get: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ lnum: %ld" -#: memline.c:1916 +#: memline.c:1917 #, c-format msgid "E316: ml_get: cannot find line %ld" -msgstr "E316: ml_get: невозможно найти строку %ld" +msgstr "E316: ml_get: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╫п╟п╧я┌п╦ я│я┌я─п╬п╨я┐ %ld" -#: memline.c:2306 +#: memline.c:2307 msgid "E317: pointer block id wrong 3" -msgstr "неправильное значение указателя блока 3" +msgstr "п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я┐п╨п╟п╥п╟я┌п╣п╩я▐ п╠п╩п╬п╨п╟ 3" -#: memline.c:2386 +#: memline.c:2387 msgid "stack_idx should be 0" -msgstr "значение stack_idx должно быть равно 0" +msgstr "п╥п╫п╟я┤п╣п╫п╦п╣ stack_idx п╢п╬п╩п╤п╫п╬ п╠я▀я┌я▄ я─п╟п╡п╫п╬ 0" -#: memline.c:2448 +#: memline.c:2449 msgid "E318: Updated too many blocks?" -msgstr "E318: Обновлено слишком много блоков?" +msgstr "E318: п·п╠п╫п╬п╡п╩п╣п╫п╬ я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╠п╩п╬п╨п╬п╡?" -#: memline.c:2630 +#: memline.c:2631 msgid "E317: pointer block id wrong 4" -msgstr "E317: неправильное значение указателя блока 4" +msgstr "E317: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я┐п╨п╟п╥п╟я┌п╣п╩я▐ п╠п╩п╬п╨п╟ 4" -#: memline.c:2657 +#: memline.c:2658 msgid "deleted block 1?" -msgstr "удалён блок 1?" +msgstr "я┐п╢п╟п╩я▒п╫ п╠п╩п╬п╨ 1?" -#: memline.c:2857 +#: memline.c:2858 #, c-format msgid "E320: Cannot find line %ld" -msgstr "E320: Строка %ld не обнаружена" +msgstr "E320: п║я┌я─п╬п╨п╟ %ld п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╟" -#: memline.c:3100 +#: memline.c:3101 msgid "E317: pointer block id wrong" -msgstr "E317: неправильное значение указателя блока" +msgstr "E317: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я┐п╨п╟п╥п╟я┌п╣п╩я▐ п╠п╩п╬п╨п╟" -#: memline.c:3116 +#: memline.c:3117 msgid "pe_line_count is zero" -msgstr "значение pe_line_count равно нулю" +msgstr "п╥п╫п╟я┤п╣п╫п╦п╣ pe_line_count я─п╟п╡п╫п╬ п╫я┐п╩я▌" -#: memline.c:3145 +#: memline.c:3146 #, c-format msgid "E322: line number out of range: %ld past the end" -msgstr "E322: номер строки за пределами диапазона: %ld" +msgstr "E322: п╫п╬п╪п╣я─ я│я┌я─п╬п╨п╦ п╥п╟ п©я─п╣п╢п╣п╩п╟п╪п╦ п╢п╦п╟п©п╟п╥п╬п╫п╟: %ld" -#: memline.c:3149 +#: memline.c:3150 #, c-format msgid "E323: line count wrong in block %ld" -msgstr "E323: неправильное значение счётчика строк в блоке %ld" +msgstr "E323: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я│я┤я▒я┌я┤п╦п╨п╟ я│я┌я─п╬п╨ п╡ п╠п╩п╬п╨п╣ %ld" -#: memline.c:3198 +#: memline.c:3199 msgid "Stack size increases" -msgstr "Размер стека увеличен" +msgstr "п═п╟п╥п╪п╣я─ я│я┌п╣п╨п╟ я┐п╡п╣п╩п╦я┤п╣п╫" -#: memline.c:3244 +#: memline.c:3245 msgid "E317: pointer block id wrong 2" -msgstr "E317: неправильное значение указателя блока 2" +msgstr "E317: п╫п╣п©я─п╟п╡п╦п╩я▄п╫п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я┐п╨п╟п╥п╟я┌п╣п╩я▐ п╠п╩п╬п╨п╟ 2" -#: memline.c:3674 +#: memline.c:3675 msgid "E325: ATTENTION" -msgstr "E325: ВНИМАНИЕ" +msgstr "E325: п▓п²п≤п°п░п²п≤п∙" -#: memline.c:3675 +#: memline.c:3676 msgid "" "\n" "Found a swap file by the name \"" msgstr "" "\n" -"Обнаружен своп-файл с именем \"" +"п·п╠п╫п╟я─я┐п╤п╣п╫ я│п╡п╬п©-я└п╟п╧п╩ я│ п╦п╪п╣п╫п╣п╪ \"" -#: memline.c:3679 +#: memline.c:3680 msgid "While opening file \"" -msgstr "При открытии файла: \"" +msgstr "п÷я─п╦ п╬я┌п╨я─я▀я┌п╦п╦ я└п╟п╧п╩п╟: \"" -#: memline.c:3688 +#: memline.c:3689 msgid " NEWER than swap file!\n" -msgstr " Более СВЕЖИЙ, чем своп-файл!\n" +msgstr " п▒п╬п╩п╣п╣ п║п▓п∙п√п≤п≥, я┤п╣п╪ я│п╡п╬п©-я└п╟п╧п╩!\n" #. Some of these messages are long to allow translation to #. * other languages. -#: memline.c:3692 +#: memline.c:3693 msgid "" "\n" "(1) Another program may be editing the same file.\n" @@ -3966,63 +3975,63 @@ msgid "" " different instances of the same file when making changes.\n" msgstr "" "\n" -"(1) Возможно, редактирование файла выполняется в другой программе.\n" -" Если это так, то будьте внимательны при внесении изменений,\n" -" чтобы у вас не появилось два разных варианта одного и того же файла.\n" +"(1) п▓п╬п╥п╪п╬п╤п╫п╬, я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦п╣ я└п╟п╧п╩п╟ п╡я▀п©п╬п╩п╫я▐п╣я┌я│я▐ п╡ п╢я─я┐пЁп╬п╧ п©я─п╬пЁя─п╟п╪п╪п╣.\n" +" п∙я│п╩п╦ я█я┌п╬ я┌п╟п╨, я┌п╬ п╠я┐п╢я▄я┌п╣ п╡п╫п╦п╪п╟я┌п╣п╩я▄п╫я▀ п©я─п╦ п╡п╫п╣я│п╣п╫п╦п╦ п╦п╥п╪п╣п╫п╣п╫п╦п╧,\n" +" я┤я┌п╬п╠я▀ я┐ п╡п╟я│ п╫п╣ п©п╬я▐п╡п╦п╩п╬я│я▄ п╢п╡п╟ я─п╟п╥п╫я▀я┘ п╡п╟я─п╦п╟п╫я┌п╟ п╬п╢п╫п╬пЁп╬ п╦ я┌п╬пЁп╬ п╤п╣ я└п╟п╧п╩п╟.\n" -#: memline.c:3693 +#: memline.c:3694 msgid " Quit, or continue with caution.\n" -msgstr " Завершите работу или продолжайте с осторожностью.\n" +msgstr " п≈п╟п╡п╣я─я┬п╦я┌п╣ я─п╟п╠п╬я┌я┐ п╦п╩п╦ п©я─п╬п╢п╬п╩п╤п╟п╧я┌п╣ я│ п╬я│я┌п╬я─п╬п╤п╫п╬я│я┌я▄я▌.\n" -#: memline.c:3694 +#: memline.c:3695 msgid "" "\n" "(2) An edit session for this file crashed.\n" msgstr "" "\n" -"(2) Предыдущий сеанс редактирования этого файла завершён аварийно.\n" +"(2) п÷я─п╣п╢я▀п╢я┐я┴п╦п╧ я│п╣п╟п╫я│ я─п╣п╢п╟п╨я┌п╦я─п╬п╡п╟п╫п╦я▐ я█я┌п╬пЁп╬ я└п╟п╧п╩п╟ п╥п╟п╡п╣я─я┬я▒п╫ п╟п╡п╟я─п╦п╧п╫п╬.\n" -#: memline.c:3695 +#: memline.c:3696 msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " В этом случае, используйте команду \":recover\" или \"vim -r " +msgstr " п▓ я█я┌п╬п╪ я│п╩я┐я┤п╟п╣, п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ п╨п╬п╪п╟п╫п╢я┐ \":recover\" п╦п╩п╦ \"vim -r " -#: memline.c:3697 +#: memline.c:3698 msgid "" "\"\n" " to recover the changes (see \":help recovery\").\n" msgstr "" "\"\n" -" для восстановления изменений (см. \":help восстановление\").\n" +" п╢п╩я▐ п╡п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦я▐ п╦п╥п╪п╣п╫п╣п╫п╦п╧ (я│п╪. \":help п╡п╬я│я│я┌п╟п╫п╬п╡п╩п╣п╫п╦п╣\").\n" -#: memline.c:3698 +#: memline.c:3699 msgid " If you did this already, delete the swap file \"" -msgstr " Если вы уже выполняли эту операцию, удалите своп-файл \"" +msgstr " п∙я│п╩п╦ п╡я▀ я┐п╤п╣ п╡я▀п©п╬п╩п╫я▐п╩п╦ я█я┌я┐ п╬п©п╣я─п╟я├п╦я▌, я┐п╢п╟п╩п╦я┌п╣ я│п╡п╬п©-я└п╟п╧п╩ \"" -#: memline.c:3700 +#: memline.c:3701 msgid "" "\"\n" " to avoid this message.\n" msgstr "" "\"\n" -" чтобы избежать появления этого сообщения в будущем.\n" +" я┤я┌п╬п╠я▀ п╦п╥п╠п╣п╤п╟я┌я▄ п©п╬я▐п╡п╩п╣п╫п╦я▐ я█я┌п╬пЁп╬ я│п╬п╬п╠я┴п╣п╫п╦я▐ п╡ п╠я┐п╢я┐я┴п╣п╪.\n" -#: memline.c:3714 memline.c:3718 +#: memline.c:3715 memline.c:3719 msgid "Swap file \"" -msgstr "Своп-файл \"" +msgstr "п║п╡п╬п©-я└п╟п╧п╩ \"" -#: memline.c:3715 memline.c:3721 +#: memline.c:3716 memline.c:3722 msgid "\" already exists!" -msgstr "\" уже существует!" +msgstr "\" я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌!" -#: memline.c:3724 +#: memline.c:3725 msgid "VIM - ATTENTION" -msgstr "VIM - ВНИМАНИЕ" +msgstr "VIM - п▓п²п≤п°п░п²п≤п∙" -#: memline.c:3726 +#: memline.c:3727 msgid "Swap file already exists!" -msgstr "Своп-файл уже существует!" +msgstr "п║п╡п╬п©-я└п╟п╧п╩ я┐п╤п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌!" -#: memline.c:3730 +#: memline.c:3731 msgid "" "&Open Read-Only\n" "&Edit anyway\n" @@ -4030,13 +4039,13 @@ msgid "" "&Quit\n" "&Abort" msgstr "" -"&O Открыть для чтения\n" -"&E Редактировать\n" -"&R Восстановить\n" -"&Q Выход\n" -"&A Прервать" +"&O п·я┌п╨я─я▀я┌я▄ п╢п╩я▐ я┤я┌п╣п╫п╦я▐\n" +"&E п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄\n" +"&R п▓п╬я│я│я┌п╟п╫п╬п╡п╦я┌я▄\n" +"&Q п▓я▀я┘п╬п╢\n" +"&A п÷я─п╣я─п╡п╟я┌я▄" -#: memline.c:3732 +#: memline.c:3733 msgid "" "&Open Read-Only\n" "&Edit anyway\n" @@ -4045,40 +4054,40 @@ msgid "" "&Abort\n" "&Delete it" msgstr "" -"&O Открыть для чтения\n" -"&E Редактировать\n" -"&R Восстановить\n" -"&Q Выход\n" -"&A Прервать\n" -"&D Удалить" +"&O п·я┌п╨я─я▀я┌я▄ п╢п╩я▐ я┤я┌п╣п╫п╦я▐\n" +"&E п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄\n" +"&R п▓п╬я│я│я┌п╟п╫п╬п╡п╦я┌я▄\n" +"&Q п▓я▀я┘п╬п╢\n" +"&A п÷я─п╣я─п╡п╟я┌я▄\n" +"&D пёп╢п╟п╩п╦я┌я▄" -#: memline.c:3789 +#: memline.c:3790 msgid "E326: Too many swap files found" -msgstr "E326: Обнаружено слишком много своп-файлов" +msgstr "E326: п·п╠п╫п╟я─я┐п╤п╣п╫п╬ я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я│п╡п╬п©-я└п╟п╧п╩п╬п╡" #: menu.c:64 msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: Компонент пути к элементу меню не является подменю" +msgstr "E327: п п╬п╪п©п╬п╫п╣п╫я┌ п©я┐я┌п╦ п╨ я█п╩п╣п╪п╣п╫я┌я┐ п╪п╣п╫я▌ п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п©п╬п╢п╪п╣п╫я▌" #: menu.c:65 msgid "E328: Menu only exists in another mode" -msgstr "E328: Меню в этом режиме не существует" +msgstr "E328: п°п╣п╫я▌ п╡ я█я┌п╬п╪ я─п╣п╤п╦п╪п╣ п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" #: menu.c:66 msgid "E329: No menu of that name" -msgstr "E329: Нет меню с таким именем" +msgstr "E329: п²п╣я┌ п╪п╣п╫я▌ я│ я┌п╟п╨п╦п╪ п╦п╪п╣п╫п╣п╪" #: menu.c:525 msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: Путь к меню не должен вести к подменю" +msgstr "E330: п÷я┐я┌я▄ п╨ п╪п╣п╫я▌ п╫п╣ п╢п╬п╩п╤п╣п╫ п╡п╣я│я┌п╦ п╨ п©п╬п╢п╪п╣п╫я▌" #: menu.c:564 msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: Элементы меню нельзя добавлять непосредственно в полоску меню" +msgstr "E331: п╜п╩п╣п╪п╣п╫я┌я▀ п╪п╣п╫я▌ п╫п╣п╩я▄п╥я▐ п╢п╬п╠п╟п╡п╩я▐я┌я▄ п╫п╣п©п╬я│я─п╣п╢я│я┌п╡п╣п╫п╫п╬ п╡ п©п╬п╩п╬я│п╨я┐ п╪п╣п╫я▌" #: menu.c:570 msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: Разделители не могут быть компонентом пути к меню" +msgstr "E332: п═п╟п╥п╢п╣п╩п╦я┌п╣п╩п╦ п╫п╣ п╪п╬пЁя┐я┌ п╠я▀я┌я▄ п╨п╬п╪п©п╬п╫п╣п╫я┌п╬п╪ п©я┐я┌п╦ п╨ п╪п╣п╫я▌" #. Now we have found the matching menu, and we list the mappings #. Highlight title @@ -4088,91 +4097,91 @@ msgid "" "--- Menus ---" msgstr "" "\n" -"--- Меню ---" +"--- п°п╣п╫я▌ ---" #: menu.c:2019 msgid "Tear off this menu" -msgstr "Оторвать это меню" +msgstr "п·я┌п╬я─п╡п╟я┌я▄ я█я┌п╬ п╪п╣п╫я▌" #: menu.c:2084 msgid "E333: Menu path must lead to a menu item" -msgstr "E333: Путь к меню должен вести к элементу меню" +msgstr "E333: п÷я┐я┌я▄ п╨ п╪п╣п╫я▌ п╢п╬п╩п╤п╣п╫ п╡п╣я│я┌п╦ п╨ я█п╩п╣п╪п╣п╫я┌я┐ п╪п╣п╫я▌" #: menu.c:2104 #, c-format msgid "E334: Menu not found: %s" -msgstr "E334: Меню не найдено: %s" +msgstr "E334: п°п╣п╫я▌ п╫п╣ п╫п╟п╧п╢п╣п╫п╬: %s" #: menu.c:2173 #, c-format msgid "E335: Menu not defined for %s mode" -msgstr "E335: Меню не определено для режима %s" +msgstr "E335: п°п╣п╫я▌ п╫п╣ п╬п©я─п╣п╢п╣п╩п╣п╫п╬ п╢п╩я▐ я─п╣п╤п╦п╪п╟ %s" #: menu.c:2211 msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: Путь к меню должен вести к подменю" +msgstr "E336: п÷я┐я┌я▄ п╨ п╪п╣п╫я▌ п╢п╬п╩п╤п╣п╫ п╡п╣я│я┌п╦ п╨ п©п╬п╢п╪п╣п╫я▌" #: menu.c:2232 msgid "E337: Menu not found - check menu names" -msgstr "E337: Меню не найдено -- проверьте имена меню" +msgstr "E337: п°п╣п╫я▌ п╫п╣ п╫п╟п╧п╢п╣п╫п╬ -- п©я─п╬п╡п╣я─я▄я┌п╣ п╦п╪п╣п╫п╟ п╪п╣п╫я▌" #: message.c:414 #, c-format msgid "Error detected while processing %s:" -msgstr "Обнаружена ошибка при обработке %s:" +msgstr "п·п╠п╫п╟я─я┐п╤п╣п╫п╟ п╬я┬п╦п╠п╨п╟ п©я─п╦ п╬п╠я─п╟п╠п╬я┌п╨п╣ %s:" #: message.c:440 #, c-format msgid "line %4ld:" -msgstr "строка %4ld:" +msgstr "я│я┌я─п╬п╨п╟ %4ld:" #: message.c:647 msgid "[string too long]" -msgstr "[слишком длинная строка]" +msgstr "[я│п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫п╟я▐ я│я┌я─п╬п╨п╟]" #: message.c:797 msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>" msgstr "" -"Перевод сообщений на русский язык: Василий Рагозин <vrr@users.sourceforge." +"п÷п╣я─п╣п╡п╬п╢ я│п╬п╬п╠я┴п╣п╫п╦п╧ п╫п╟ я─я┐я│я│п╨п╦п╧ я▐п╥я▀п╨: п▓п╟я│п╦п╩п╦п╧ п═п╟пЁп╬п╥п╦п╫ <vrr@users.sourceforge." "net>" #: message.c:1025 msgid "Interrupt: " -msgstr "Прерывание: " +msgstr "п÷я─п╣я─я▀п╡п╟п╫п╦п╣: " #: message.c:1028 msgid "Hit ENTER to continue" -msgstr "Для продолжения нажмите ENTER" +msgstr "п■п╩я▐ п©я─п╬п╢п╬п╩п╤п╣п╫п╦я▐ п╫п╟п╤п╪п╦я┌п╣ ENTER" #: message.c:1030 msgid "Hit ENTER or type command to continue" -msgstr "Для продолжения нажмите ENTER или введите команду" +msgstr "п■п╩я▐ п©я─п╬п╢п╬п╩п╤п╣п╫п╦я▐ п╫п╟п╤п╪п╦я┌п╣ ENTER п╦п╩п╦ п╡п╡п╣п╢п╦я┌п╣ п╨п╬п╪п╟п╫п╢я┐" #: message.c:2351 msgid "-- More --" -msgstr "-- Продолжение следует --" +msgstr "-- п÷я─п╬п╢п╬п╩п╤п╣п╫п╦п╣ я│п╩п╣п╢я┐п╣я┌ --" #: message.c:2354 msgid " (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)" -msgstr " (RET/BS: строка, SPACE/b: страница, d/u: полстраницы, q: выход)" +msgstr " (RET/BS: я│я┌я─п╬п╨п╟, SPACE/b: я│я┌я─п╟п╫п╦я├п╟, d/u: п©п╬п╩я│я┌я─п╟п╫п╦я├я▀, q: п╡я▀я┘п╬п╢)" #: message.c:2355 msgid " (RET: line, SPACE: page, d: half page, q: quit)" -msgstr " (RET: строка, SPACE: страница, d: полстраницы, q: выход)" +msgstr " (RET: я│я┌я─п╬п╨п╟, SPACE: я│я┌я─п╟п╫п╦я├п╟, d: п©п╬п╩я│я┌я─п╟п╫п╦я├я▀, q: п╡я▀я┘п╬п╢)" -#: message.c:2976 message.c:2991 +#: message.c:2982 message.c:2997 msgid "Question" -msgstr "Вопрос" +msgstr "п▓п╬п©я─п╬я│" -#: message.c:2978 +#: message.c:2984 msgid "" "&Yes\n" "&No" msgstr "" -"&Да\n" -"&Нет" +"&п■п╟\n" +"&п²п╣я┌" -#: message.c:3011 +#: message.c:3017 msgid "" "&Yes\n" "&No\n" @@ -4180,65 +4189,65 @@ msgid "" "&Discard All\n" "&Cancel" msgstr "" -"&Да\n" -"&Нет\n" -"Сохранить &все\n" -"&Потерять все\n" -"О&тмена" +"&п■п╟\n" +"&п²п╣я┌\n" +"п║п╬я┘я─п╟п╫п╦я┌я▄ &п╡я│п╣\n" +"&п÷п╬я┌п╣я─я▐я┌я▄ п╡я│п╣\n" +"п·&я┌п╪п╣п╫п╟" -#: message.c:3052 +#: message.c:3058 msgid "Save File dialog" -msgstr "Сохранение файла" +msgstr "п║п╬я┘я─п╟п╫п╣п╫п╦п╣ я└п╟п╧п╩п╟" -#: message.c:3054 +#: message.c:3060 msgid "Open File dialog" -msgstr "Открытие файла" +msgstr "п·я┌п╨я─я▀я┌п╦п╣ я└п╟п╧п╩п╟" #. TODO: non-GUI file selector here -#: message.c:3125 +#: message.c:3131 msgid "E338: Sorry, no file browser in console mode" msgstr "" -"E338: Извините, но в консольном режиме нет проводника по файловой системе" +"E338: п≤п╥п╡п╦п╫п╦я┌п╣, п╫п╬ п╡ п╨п╬п╫я│п╬п╩я▄п╫п╬п╪ я─п╣п╤п╦п╪п╣ п╫п╣я┌ п©я─п╬п╡п╬п╢п╫п╦п╨п╟ п©п╬ я└п╟п╧п╩п╬п╡п╬п╧ я│п╦я│я┌п╣п╪п╣" #: misc1.c:2773 msgid "W10: Warning: Changing a readonly file" -msgstr "W10: Предупреждение: Изменение файла с правами только для чтения" +msgstr "W10: п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: п≤п╥п╪п╣п╫п╣п╫п╦п╣ я└п╟п╧п╩п╟ я│ п©я─п╟п╡п╟п╪п╦ я┌п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐" #: misc1.c:3021 msgid "1 more line" -msgstr "Добавлена одна строка" +msgstr "п■п╬п╠п╟п╡п╩п╣п╫п╟ п╬п╢п╫п╟ я│я┌я─п╬п╨п╟" #: misc1.c:3023 msgid "1 line less" -msgstr "Удалена одна строка" +msgstr "пёп╢п╟п╩п╣п╫п╟ п╬п╢п╫п╟ я│я┌я─п╬п╨п╟" #: misc1.c:3028 #, c-format msgid "%ld more lines" -msgstr "Добавлено строк: %ld" +msgstr "п■п╬п╠п╟п╡п╩п╣п╫п╬ я│я┌я─п╬п╨: %ld" #: misc1.c:3030 #, c-format msgid "%ld fewer lines" -msgstr "Удалено строк: %ld" +msgstr "пёп╢п╟п╩п╣п╫п╬ я│я┌я─п╬п╨: %ld" #: misc1.c:3033 msgid " (Interrupted)" -msgstr " (Прервано)" +msgstr " (п÷я─п╣я─п╡п╟п╫п╬)" #: misc1.c:7588 msgid "Vim: preserving files...\n" -msgstr "Vim: сохраняются файлы...\n" +msgstr "Vim: я│п╬я┘я─п╟п╫я▐я▌я┌я│я▐ я└п╟п╧п╩я▀...\n" #. close all memfiles, without deleting #: misc1.c:7598 msgid "Vim: Finished.\n" -msgstr "Vim: Готово.\n" +msgstr "Vim: п⌠п╬я┌п╬п╡п╬.\n" #: misc2.c:695 misc2.c:711 #, c-format msgid "ERROR: " -msgstr "ОШИБКА: " +msgstr "п·п╗п≤п▒п п░: " #: misc2.c:715 #, c-format @@ -4247,7 +4256,7 @@ msgid "" "[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n" msgstr "" "\n" -"[байт] всего выдел.-освоб. %lu-%lu, использ. %lu, макс. использ. %lu\n" +"[п╠п╟п╧я┌] п╡я│п╣пЁп╬ п╡я▀п╢п╣п╩.-п╬я│п╡п╬п╠. %lu-%lu, п╦я│п©п╬п╩я▄п╥. %lu, п╪п╟п╨я│. п╦я│п©п╬п╩я▄п╥. %lu\n" #: misc2.c:717 #, c-format @@ -4255,59 +4264,59 @@ msgid "" "[calls] total re/malloc()'s %lu, total free()'s %lu\n" "\n" msgstr "" -"[вызовы] re/malloc() всего %lu, free() всего %lu\n" +"[п╡я▀п╥п╬п╡я▀] re/malloc() п╡я│п╣пЁп╬ %lu, free() п╡я│п╣пЁп╬ %lu\n" "\n" #: misc2.c:772 msgid "E340: Line is becoming too long" -msgstr "E340: Строка становится слишком длинной" +msgstr "E340: п║я┌я─п╬п╨п╟ я│я┌п╟п╫п╬п╡п╦я┌я│я▐ я│п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫п╬п╧" #: misc2.c:816 #, c-format msgid "E341: Internal error: lalloc(%ld, )" -msgstr "E341: Внутренняя ошибка: lalloc(%ld, )" +msgstr "E341: п▓п╫я┐я┌я─п╣п╫п╫я▐я▐ п╬я┬п╦п╠п╨п╟: lalloc(%ld, )" #: misc2.c:924 #, c-format msgid "E342: Out of memory! (allocating %lu bytes)" -msgstr "E342: Не хватает памяти! (выделяется %lu байт)" +msgstr "E342: п²п╣ я┘п╡п╟я┌п╟п╣я┌ п©п╟п╪я▐я┌п╦! (п╡я▀п╢п╣п╩я▐п╣я┌я│я▐ %lu п╠п╟п╧я┌)" #: misc2.c:2594 #, c-format msgid "Calling shell to execute: \"%s\"" -msgstr "Вызов оболочки для исполнения: \"%s\"" +msgstr "п▓я▀п╥п╬п╡ п╬п╠п╬п╩п╬я┤п╨п╦ п╢п╩я▐ п╦я│п©п╬п╩п╫п╣п╫п╦я▐: \"%s\"" #: misc2.c:2816 msgid "E545: Missing colon" -msgstr "E545: Пропущено двоеточие" +msgstr "E545: п÷я─п╬п©я┐я┴п╣п╫п╬ п╢п╡п╬п╣я┌п╬я┤п╦п╣" #: misc2.c:2818 misc2.c:2845 msgid "E546: Illegal mode" -msgstr "E546: Недопустимый режим" +msgstr "E546: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я─п╣п╤п╦п╪" #: misc2.c:2884 msgid "E547: Illegal mouseshape" -msgstr "E547: Недопустимая форма курсора" +msgstr "E547: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╟я▐ я└п╬я─п╪п╟ п╨я┐я─я│п╬я─п╟" #: misc2.c:2924 msgid "E548: digit expected" -msgstr "E548: требуется ввести цифру" +msgstr "E548: я┌я─п╣п╠я┐п╣я┌я│я▐ п╡п╡п╣я│я┌п╦ я├п╦я└я─я┐" #: misc2.c:2929 msgid "E549: Illegal percentage" -msgstr "E549: Недопустимое значение процентов" +msgstr "E549: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п©я─п╬я├п╣п╫я┌п╬п╡" #: misc2.c:3239 msgid "Enter encryption key: " -msgstr "Введите пароль для шифрования: " +msgstr "п▓п╡п╣п╢п╦я┌п╣ п©п╟я─п╬п╩я▄ п╢п╩я▐ я┬п╦я└я─п╬п╡п╟п╫п╦я▐: " #: misc2.c:3240 msgid "Enter same key again: " -msgstr " Повторите ввод пароля:" +msgstr " п÷п╬п╡я┌п╬я─п╦я┌п╣ п╡п╡п╬п╢ п©п╟я─п╬п╩я▐:" #: misc2.c:3250 msgid "Keys don't match!" -msgstr "Введённые пароли не совпадают!" +msgstr "п▓п╡п╣п╢я▒п╫п╫я▀п╣ п©п╟я─п╬п╩п╦ п╫п╣ я│п╬п╡п©п╟п╢п╟я▌я┌!" #: misc2.c:3799 #, c-format @@ -4315,236 +4324,236 @@ msgid "" "E343: Invalid path: '**[number]' must be at the end of the path or be " "followed by '%s'." msgstr "" -"E343: Неправильно задан путь: '**[число]' должно быть либо в конце пути, " -"либо за ним должно следовать '%s'" +"E343: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╬ п╥п╟п╢п╟п╫ п©я┐я┌я▄: '**[я┤п╦я│п╩п╬]' п╢п╬п╩п╤п╫п╬ п╠я▀я┌я▄ п╩п╦п╠п╬ п╡ п╨п╬п╫я├п╣ п©я┐я┌п╦, " +"п╩п╦п╠п╬ п╥п╟ п╫п╦п╪ п╢п╬п╩п╤п╫п╬ я│п╩п╣п╢п╬п╡п╟я┌я▄ '%s'" #: misc2.c:5078 #, c-format msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: Каталог \"%s\" не найден в пути для смены каталога" +msgstr "E344: п п╟я┌п╟п╩п╬пЁ \"%s\" п╫п╣ п╫п╟п╧п╢п╣п╫ п╡ п©я┐я┌п╦ п╢п╩я▐ я│п╪п╣п╫я▀ п╨п╟я┌п╟п╩п╬пЁп╟" #: misc2.c:5081 #, c-format msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: Файл \"%s\" в известных каталогах не найден" +msgstr "E345: п╓п╟п╧п╩ \"%s\" п╡ п╦п╥п╡п╣я│я┌п╫я▀я┘ п╨п╟я┌п╟п╩п╬пЁп╟я┘ п╫п╣ п╫п╟п╧п╢п╣п╫" #: misc2.c:5087 #, c-format msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: В пути смены каталога больше нет каталогов \"%s\"" +msgstr "E346: п▓ п©я┐я┌п╦ я│п╪п╣п╫я▀ п╨п╟я┌п╟п╩п╬пЁп╟ п╠п╬п╩я▄я┬п╣ п╫п╣я┌ п╨п╟я┌п╟п╩п╬пЁп╬п╡ \"%s\"" #: misc2.c:5090 #, c-format msgid "E347: No more file \"%s\" found in path" -msgstr "E347: В известных каталогах больше нет файлов \"%s\"" +msgstr "E347: п▓ п╦п╥п╡п╣я│я┌п╫я▀я┘ п╨п╟я┌п╟п╩п╬пЁп╟я┘ п╠п╬п╩я▄я┬п╣ п╫п╣я┌ я└п╟п╧п╩п╬п╡ \"%s\"" #: misc2.c:5324 msgid "E550: Missing colon" -msgstr "E550: Пропущено двоеточие" +msgstr "E550: п÷я─п╬п©я┐я┴п╣п╫п╬ п╢п╡п╬п╣я┌п╬я┤п╦п╣" #: misc2.c:5336 msgid "E551: Illegal component" -msgstr "E551: Недопустимый компонент" +msgstr "E551: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╨п╬п╪п©п╬п╫п╣п╫я┌" #: misc2.c:5344 msgid "E552: digit expected" -msgstr "E552: Требуется указать цифру" +msgstr "E552: п╒я─п╣п╠я┐п╣я┌я│я▐ я┐п╨п╟п╥п╟я┌я▄ я├п╦я└я─я┐" #. Get here when the server can't be found. #: netbeans.c:396 msgid "Cannot connect to Netbeans #2" -msgstr "Невозможно соединиться с Netbeans #2" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╣п╢п╦п╫п╦я┌я▄я│я▐ я│ Netbeans #2" #: netbeans.c:404 msgid "Cannot connect to Netbeans" -msgstr "Невозможно соединиться с NetBeans" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╣п╢п╦п╫п╦я┌я▄я│я▐ я│ NetBeans" #: netbeans.c:450 #, c-format msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" msgstr "" -"E668: Неправильный режим доступа к информации о соединении с NetBeans: \"%s\"" +"E668: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я─п╣п╤п╦п╪ п╢п╬я│я┌я┐п©п╟ п╨ п╦п╫я└п╬я─п╪п╟я├п╦п╦ п╬ я│п╬п╣п╢п╦п╫п╣п╫п╦п╦ я│ NetBeans: \"%s\"" #: netbeans.c:749 msgid "read from Netbeans socket" -msgstr "чтение из гнезда NetBeans" +msgstr "я┤я┌п╣п╫п╦п╣ п╦п╥ пЁп╫п╣п╥п╢п╟ NetBeans" #: netbeans.c:1643 #, c-format msgid "E658: NetBeans connection lost for buffer %ld" -msgstr "E658: Потеряно соединение с NetBeans для буфера %ld" +msgstr "E658: п÷п╬я┌п╣я─я▐п╫п╬ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣ я│ NetBeans п╢п╩я▐ п╠я┐я└п╣я─п╟ %ld" -#: normal.c:2980 +#: normal.c:2983 msgid "Warning: terminal cannot highlight" -msgstr "Предупреждение: терминал не может выполнять подсветку" +msgstr "п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣: я┌п╣я─п╪п╦п╫п╟п╩ п╫п╣ п╪п╬п╤п╣я┌ п╡я▀п©п╬п╩п╫я▐я┌я▄ п©п╬п╢я│п╡п╣я┌п╨я┐" -#: normal.c:3276 +#: normal.c:3279 msgid "E348: No string under cursor" -msgstr "E348: Нет строки в позиции курсора" +msgstr "E348: п²п╣я┌ я│я┌я─п╬п╨п╦ п╡ п©п╬п╥п╦я├п╦п╦ п╨я┐я─я│п╬я─п╟" -#: normal.c:3278 +#: normal.c:3281 msgid "E349: No identifier under cursor" -msgstr "E349: Нет имени в позиции курсора" +msgstr "E349: п²п╣я┌ п╦п╪п╣п╫п╦ п╡ п©п╬п╥п╦я├п╦п╦ п╨я┐я─я│п╬я─п╟" -#: normal.c:4519 +#: normal.c:4522 msgid "E352: Cannot erase folds with current 'foldmethod'" msgstr "" -"E352: Невозможно стереть складки с текущим значением опции 'foldmethod'" +"E352: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│я┌п╣я─п╣я┌я▄ я│п╨п╩п╟п╢п╨п╦ я│ я┌п╣п╨я┐я┴п╦п╪ п╥п╫п╟я┤п╣п╫п╦п╣п╪ п╬п©я├п╦п╦ 'foldmethod'" -#: normal.c:6740 +#: normal.c:6743 msgid "E664: changelist is empty" -msgstr "E664: список изменений пустой" +msgstr "E664: я│п©п╦я│п╬п╨ п╦п╥п╪п╣п╫п╣п╫п╦п╧ п©я┐я│я┌п╬п╧" -#: normal.c:6742 +#: normal.c:6745 msgid "E662: At start of changelist" -msgstr "E662: В начале списка изменений" +msgstr "E662: п▓ п╫п╟я┤п╟п╩п╣ я│п©п╦я│п╨п╟ п╦п╥п╪п╣п╫п╣п╫п╦п╧" -#: normal.c:6744 +#: normal.c:6747 msgid "E663: At end of changelist" -msgstr "E662: В конце списка изменений" +msgstr "E662: п▓ п╨п╬п╫я├п╣ я│п©п╦я│п╨п╟ п╦п╥п╪п╣п╫п╣п╫п╦п╧" -#: normal.c:8005 +#: normal.c:8009 msgid "Type :quit<Enter> to exit Vim" -msgstr "Введите :quit<Enter> для выхода из Vim" +msgstr "п▓п╡п╣п╢п╦я┌п╣ :quit<Enter> п╢п╩я▐ п╡я▀я┘п╬п╢п╟ п╦п╥ Vim" #: ops.c:294 #, c-format msgid "1 line %sed 1 time" -msgstr "Изменены отступы в 1 строке (%s 1 раз)" +msgstr "п≤п╥п╪п╣п╫п╣п╫я▀ п╬я┌я│я┌я┐п©я▀ п╡ 1 я│я┌я─п╬п╨п╣ (%s 1 я─п╟п╥)" #: ops.c:296 #, c-format msgid "1 line %sed %d times" -msgstr "Изменены отступы в 1 строке (%s %d раз)" +msgstr "п≤п╥п╪п╣п╫п╣п╫я▀ п╬я┌я│я┌я┐п©я▀ п╡ 1 я│я┌я─п╬п╨п╣ (%s %d я─п╟п╥)" #: ops.c:301 #, c-format msgid "%ld lines %sed 1 time" -msgstr "Изменены отступы, %ld строк (%s 1 раз)" +msgstr "п≤п╥п╪п╣п╫п╣п╫я▀ п╬я┌я│я┌я┐п©я▀, %ld я│я┌я─п╬п╨ (%s 1 я─п╟п╥)" #: ops.c:304 #, c-format msgid "%ld lines %sed %d times" -msgstr "Изменены отступы, %ld строк (%s %d раз)" +msgstr "п≤п╥п╪п╣п╫п╣п╫я▀ п╬я┌я│я┌я┐п©я▀, %ld я│я┌я─п╬п╨ (%s %d я─п╟п╥)" #: ops.c:662 #, c-format msgid "%ld lines to indent... " -msgstr "Изменяются отступы строках (%ld)..." +msgstr "п≤п╥п╪п╣п╫я▐я▌я┌я│я▐ п╬я┌я│я┌я┐п©я▀ я│я┌я─п╬п╨п╟я┘ (%ld)..." #: ops.c:712 msgid "1 line indented " -msgstr "Изменён отступ в одной строке " +msgstr "п≤п╥п╪п╣п╫я▒п╫ п╬я┌я│я┌я┐п© п╡ п╬п╢п╫п╬п╧ я│я┌я─п╬п╨п╣ " #: ops.c:714 #, c-format msgid "%ld lines indented " -msgstr "Изменены отступы в строках (%ld) " +msgstr "п≤п╥п╪п╣п╫п╣п╫я▀ п╬я┌я│я┌я┐п©я▀ п╡ я│я┌я─п╬п╨п╟я┘ (%ld) " #. must display the prompt -#: ops.c:1675 +#: ops.c:1688 msgid "cannot yank; delete anyway" -msgstr "скопировать не удалось, удаление выполнено" +msgstr "я│п╨п╬п©п╦я─п╬п╡п╟я┌я▄ п╫п╣ я┐п╢п╟п╩п╬я│я▄, я┐п╢п╟п╩п╣п╫п╦п╣ п╡я▀п©п╬п╩п╫п╣п╫п╬" -#: ops.c:2261 +#: ops.c:2274 msgid "1 line changed" -msgstr "изменена 1 строка" +msgstr "п╦п╥п╪п╣п╫п╣п╫п╟ 1 я│я┌я─п╬п╨п╟" -#: ops.c:2263 +#: ops.c:2276 #, c-format msgid "%ld lines changed" -msgstr "изменено строк: %ld" +msgstr "п╦п╥п╪п╣п╫п╣п╫п╬ я│я┌я─п╬п╨: %ld" -#: ops.c:2647 +#: ops.c:2660 #, c-format msgid "freeing %ld lines" -msgstr "очищено строк: %ld" +msgstr "п╬я┤п╦я┴п╣п╫п╬ я│я┌я─п╬п╨: %ld" -#: ops.c:2928 +#: ops.c:2941 msgid "1 line yanked" -msgstr "скопирована одна строка" +msgstr "я│п╨п╬п©п╦я─п╬п╡п╟п╫п╟ п╬п╢п╫п╟ я│я┌я─п╬п╨п╟" -#: ops.c:2930 +#: ops.c:2943 #, c-format msgid "%ld lines yanked" -msgstr "скопировано строк: %ld" +msgstr "я│п╨п╬п©п╦я─п╬п╡п╟п╫п╬ я│я┌я─п╬п╨: %ld" -#: ops.c:3215 +#: ops.c:3228 #, c-format msgid "E353: Nothing in register %s" -msgstr "E353: В регистре %s ничего нет" +msgstr "E353: п▓ я─п╣пЁп╦я│я┌я─п╣ %s п╫п╦я┤п╣пЁп╬ п╫п╣я┌" #. Highlight title -#: ops.c:3766 +#: ops.c:3779 msgid "" "\n" "--- Registers ---" msgstr "" "\n" -"--- Регистры ---" +"--- п═п╣пЁп╦я│я┌я─я▀ ---" -#: ops.c:5075 +#: ops.c:5088 msgid "Illegal register name" -msgstr "Недопустимое имя регистра" +msgstr "п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ я─п╣пЁп╦я│я┌я─п╟" -#: ops.c:5163 +#: ops.c:5176 #, c-format msgid "" "\n" "# Registers:\n" msgstr "" "\n" -"# Регистры:\n" +"# п═п╣пЁп╦я│я┌я─я▀:\n" -#: ops.c:5213 +#: ops.c:5226 #, c-format msgid "E574: Unknown register type %d" -msgstr "E574: Неизвестный тип регистра %d" +msgstr "E574: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я┌п╦п© я─п╣пЁп╦я│я┌я─п╟ %d" -#: ops.c:5698 +#: ops.c:5711 #, c-format msgid "E354: Invalid register name: '%s'" -msgstr "E354: Недопустимое имя регистра: '%s'" +msgstr "E354: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ я─п╣пЁп╦я│я┌я─п╟: '%s'" -#: ops.c:6058 +#: ops.c:6071 #, c-format msgid "%ld Cols; " -msgstr "Колонок: %ld; " +msgstr "п п╬п╩п╬п╫п╬п╨: %ld; " -#: ops.c:6065 +#: ops.c:6078 #, c-format msgid "Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes" -msgstr "Выделено %s%ld из %ld строк; %ld из %ld слов; %ld из %ld байт" +msgstr "п▓я▀п╢п╣п╩п╣п╫п╬ %s%ld п╦п╥ %ld я│я┌я─п╬п╨; %ld п╦п╥ %ld я│п╩п╬п╡; %ld п╦п╥ %ld п╠п╟п╧я┌" -#: ops.c:6081 +#: ops.c:6094 #, c-format msgid "Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld" -msgstr "Кол. %s из %s; стр. %ld из %ld; слово %ld из %ld; байт %ld из %ld" +msgstr "п п╬п╩. %s п╦п╥ %s; я│я┌я─. %ld п╦п╥ %ld; я│п╩п╬п╡п╬ %ld п╦п╥ %ld; п╠п╟п╧я┌ %ld п╦п╥ %ld" -#: ops.c:6092 +#: ops.c:6105 #, c-format msgid "(+%ld for BOM)" -msgstr "(+%ld с учётом BOM)" +msgstr "(+%ld я│ я┐я┤я▒я┌п╬п╪ BOM)" #: option.c:1643 msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=Стр. %N" +msgstr "%<%f%h%m%=п║я┌я─. %N" #: option.c:2092 msgid "Thanks for flying Vim" -msgstr "Благодарим за использование Vim" +msgstr "п▒п╩п╟пЁп╬п╢п╟я─п╦п╪ п╥п╟ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ Vim" #: option.c:3419 option.c:3535 msgid "E518: Unknown option" -msgstr "E518: Неизвестная опция" +msgstr "E518: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╬п©я├п╦я▐" #: option.c:3432 msgid "E519: Option not supported" -msgstr "E519: Опция не поддерживается" +msgstr "E519: п·п©я├п╦я▐ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐" #: option.c:3457 msgid "E520: Not allowed in a modeline" -msgstr "E520: Не допускается в режимной строке" +msgstr "E520: п²п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡ я─п╣п╤п╦п╪п╫п╬п╧ я│я┌я─п╬п╨п╣" #: option.c:3522 msgid "" @@ -4552,319 +4561,319 @@ msgid "" "\tLast set from " msgstr "" "\n" -"\tВ последний раз опция изменена в " +"\tп▓ п©п╬я│п╩п╣п╢п╫п╦п╧ я─п╟п╥ п╬п©я├п╦я▐ п╦п╥п╪п╣п╫п╣п╫п╟ п╡ " #: option.c:3661 msgid "E521: Number required after =" -msgstr "E521: После = требуется указать число" +msgstr "E521: п÷п╬я│п╩п╣ = я┌я─п╣п╠я┐п╣я┌я│я▐ я┐п╨п╟п╥п╟я┌я▄ я┤п╦я│п╩п╬" #: option.c:3989 option.c:4619 msgid "E522: Not found in termcap" -msgstr "E522: Не обнаружено в termcap" +msgstr "E522: п²п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫п╬ п╡ termcap" #: option.c:4064 #, c-format msgid "E539: Illegal character <%s>" -msgstr "E539: Недопустимый символ <%s>" +msgstr "E539: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ <%s>" #: option.c:4611 msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: Значение опции 'term' не может быть пустой строкой" +msgstr "E529: п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'term' п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п©я┐я│я┌п╬п╧ я│я┌я─п╬п╨п╬п╧" #: option.c:4614 msgid "E530: Cannot change term in GUI" -msgstr "E530: В графическом интерфейсе изменять терминал невозможно" +msgstr "E530: п▓ пЁя─п╟я└п╦я┤п╣я│п╨п╬п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╣ п╦п╥п╪п╣п╫я▐я┌я▄ я┌п╣я─п╪п╦п╫п╟п╩ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬" #: option.c:4616 msgid "E531: Use \":gui\" to start the GUI" -msgstr "E531: Для запуска графического интерфейса используйте \":gui\"" +msgstr "E531: п■п╩я▐ п╥п╟п©я┐я│п╨п╟ пЁя─п╟я└п╦я┤п╣я│п╨п╬пЁп╬ п╦п╫я┌п╣я─я└п╣п╧я│п╟ п╦я│п©п╬п╩я▄п╥я┐п╧я┌п╣ \":gui\"" #: option.c:4645 msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: значения опций 'backupext' и 'patchmode' равны" +msgstr "E589: п╥п╫п╟я┤п╣п╫п╦я▐ п╬п©я├п╦п╧ 'backupext' п╦ 'patchmode' я─п╟п╡п╫я▀" #: option.c:4860 msgid "E617: Cannot be changed in the GTK+ 2 GUI" -msgstr "E617: Не может быть изменено в графическом интерфейсе GTK+ 2" +msgstr "E617: п²п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п╦п╥п╪п╣п╫п╣п╫п╬ п╡ пЁя─п╟я└п╦я┤п╣я│п╨п╬п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╣ GTK+ 2" #: option.c:5016 msgid "E524: Missing colon" -msgstr "E524: Пропущено двоеточие" +msgstr "E524: п÷я─п╬п©я┐я┴п╣п╫п╬ п╢п╡п╬п╣я┌п╬я┤п╦п╣" #: option.c:5018 msgid "E525: Zero length string" -msgstr "E525: Строка с нулевой длиной" +msgstr "E525: п║я┌я─п╬п╨п╟ я│ п╫я┐п╩п╣п╡п╬п╧ п╢п╩п╦п╫п╬п╧" #: option.c:5086 #, c-format msgid "E526: Missing number after <%s>" -msgstr "E526: Пропущено число после <%s>" +msgstr "E526: п÷я─п╬п©я┐я┴п╣п╫п╬ я┤п╦я│п╩п╬ п©п╬я│п╩п╣ <%s>" #: option.c:5100 msgid "E527: Missing comma" -msgstr "E527: Пропущена запятая" +msgstr "E527: п÷я─п╬п©я┐я┴п╣п╫п╟ п╥п╟п©я▐я┌п╟я▐" #: option.c:5107 msgid "E528: Must specify a ' value" -msgstr "E528: Необходимо указать значение для '" +msgstr "E528: п²п╣п╬п╠я┘п╬п╢п╦п╪п╬ я┐п╨п╟п╥п╟я┌я▄ п╥п╫п╟я┤п╣п╫п╦п╣ п╢п╩я▐ '" #: option.c:5148 msgid "E595: contains unprintable or wide character" -msgstr "E595: содержит непечатный символ или символ двойной ширины" +msgstr "E595: я│п╬п╢п╣я─п╤п╦я┌ п╫п╣п©п╣я┤п╟я┌п╫я▀п╧ я│п╦п╪п╡п╬п╩ п╦п╩п╦ я│п╦п╪п╡п╬п╩ п╢п╡п╬п╧п╫п╬п╧ я┬п╦я─п╦п╫я▀" #: option.c:5197 msgid "E596: Invalid font(s)" -msgstr "E596: Неправильные шрифты" +msgstr "E596: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╣ я┬я─п╦я└я┌я▀" #: option.c:5205 msgid "E597: can't select fontset" -msgstr "E597: невозможно выбрать шрифтовой набор" +msgstr "E597: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╠я─п╟я┌я▄ я┬я─п╦я└я┌п╬п╡п╬п╧ п╫п╟п╠п╬я─" #: option.c:5207 msgid "E598: Invalid fontset" -msgstr "E598: Неправильный шрифтовой набор" +msgstr "E598: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я┬я─п╦я└я┌п╬п╡п╬п╧ п╫п╟п╠п╬я─" #: option.c:5214 msgid "E533: can't select wide font" -msgstr "E533: невозможно выбрать шрифт с символами двойной ширины" +msgstr "E533: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╠я─п╟я┌я▄ я┬я─п╦я└я┌ я│ я│п╦п╪п╡п╬п╩п╟п╪п╦ п╢п╡п╬п╧п╫п╬п╧ я┬п╦я─п╦п╫я▀" #: option.c:5216 msgid "E534: Invalid wide font" -msgstr "E534: Неправильный шрифт с символами двойной ширины" +msgstr "E534: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я┬я─п╦я└я┌ я│ я│п╦п╪п╡п╬п╩п╟п╪п╦ п╢п╡п╬п╧п╫п╬п╧ я┬п╦я─п╦п╫я▀" #: option.c:5486 #, c-format msgid "E535: Illegal character after <%c>" -msgstr "E535: Неправильный символ после <%c>" +msgstr "E535: п²п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ я│п╦п╪п╡п╬п╩ п©п╬я│п╩п╣ <%c>" #: option.c:5597 msgid "E536: comma required" -msgstr "E536: требуется запятая" +msgstr "E536: я┌я─п╣п╠я┐п╣я┌я│я▐ п╥п╟п©я▐я┌п╟я▐" #: option.c:5607 #, c-format msgid "E537: 'commentstring' must be empty or contain %s" msgstr "" -"E537: Значение опция 'commentstring' должно быть пустой строкой или " -"содержать %s" +"E537: п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦я▐ 'commentstring' п╢п╬п╩п╤п╫п╬ п╠я▀я┌я▄ п©я┐я│я┌п╬п╧ я│я┌я─п╬п╨п╬п╧ п╦п╩п╦ " +"я│п╬п╢п╣я─п╤п╟я┌я▄ %s" -#: option.c:5679 +#: option.c:5682 msgid "E538: No mouse support" -msgstr "E538: Мышь не поддерживается" +msgstr "E538: п°я▀я┬я▄ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐" -#: option.c:5947 +#: option.c:5950 msgid "E540: Unclosed expression sequence" -msgstr "E540: Незакрытая последовательность выражения" +msgstr "E540: п²п╣п╥п╟п╨я─я▀я┌п╟я▐ п©п╬я│п╩п╣п╢п╬п╡п╟я┌п╣п╩я▄п╫п╬я│я┌я▄ п╡я▀я─п╟п╤п╣п╫п╦я▐" -#: option.c:5951 +#: option.c:5954 msgid "E541: too many items" -msgstr "E541: слишком много элементов" +msgstr "E541: я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я█п╩п╣п╪п╣п╫я┌п╬п╡" -#: option.c:5953 +#: option.c:5956 msgid "E542: unbalanced groups" -msgstr "E542: несбалансированные группы" +msgstr "E542: п╫п╣я│п╠п╟п╩п╟п╫я│п╦я─п╬п╡п╟п╫п╫я▀п╣ пЁя─я┐п©п©я▀" -#: option.c:6193 +#: option.c:6196 msgid "E590: A preview window already exists" -msgstr "E590: Окно предпросмотра уже есть" +msgstr "E590: п·п╨п╫п╬ п©я─п╣п╢п©я─п╬я│п╪п╬я┌я─п╟ я┐п╤п╣ п╣я│я┌я▄" -#: option.c:6450 +#: option.c:6453 msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" msgstr "" -"W17: Арабский требует использования UTF-8, введите ':set encoding=utf-8'" +"W17: п░я─п╟п╠я│п╨п╦п╧ я┌я─п╣п╠я┐п╣я┌ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦я▐ UTF-8, п╡п╡п╣п╢п╦я┌п╣ ':set encoding=utf-8'" -#: option.c:6783 +#: option.c:6786 #, c-format msgid "E593: Need at least %d lines" -msgstr "E593: Нужно хотя бы %d строк" +msgstr "E593: п²я┐п╤п╫п╬ я┘п╬я┌я▐ п╠я▀ %d я│я┌я─п╬п╨" -#: option.c:6793 +#: option.c:6796 #, c-format msgid "E594: Need at least %d columns" -msgstr "E594: Нужно хотя бы %d колонок" +msgstr "E594: п²я┐п╤п╫п╬ я┘п╬я┌я▐ п╠я▀ %d п╨п╬п╩п╬п╫п╬п╨" -#: option.c:7100 +#: option.c:7103 #, c-format msgid "E355: Unknown option: %s" -msgstr "E355: Неизвестная опция: %s" +msgstr "E355: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╬п©я├п╦я▐: %s" -#: option.c:7220 +#: option.c:7223 msgid "" "\n" "--- Terminal codes ---" msgstr "" "\n" -"--- Терминальные коды ---" +"--- п╒п╣я─п╪п╦п╫п╟п╩я▄п╫я▀п╣ п╨п╬п╢я▀ ---" -#: option.c:7222 +#: option.c:7225 msgid "" "\n" "--- Global option values ---" msgstr "" "\n" -"--- Глобальные значения опций ---" +"--- п⌠п╩п╬п╠п╟п╩я▄п╫я▀п╣ п╥п╫п╟я┤п╣п╫п╦я▐ п╬п©я├п╦п╧ ---" -#: option.c:7224 +#: option.c:7227 msgid "" "\n" "--- Local option values ---" msgstr "" "\n" -"--- Местные значения опций ---" +"--- п°п╣я│я┌п╫я▀п╣ п╥п╫п╟я┤п╣п╫п╦я▐ п╬п©я├п╦п╧ ---" -#: option.c:7226 +#: option.c:7229 msgid "" "\n" "--- Options ---" msgstr "" "\n" -"--- Опции ---" +"--- п·п©я├п╦п╦ ---" -#: option.c:7932 +#: option.c:7935 msgid "E356: get_varp ERROR" -msgstr "E356: ОШИБКА get_varp" +msgstr "E356: п·п╗п≤п▒п п░ get_varp" -#: option.c:8903 +#: option.c:8906 #, c-format msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': Нет соответствующего символа для %s" +msgstr "E357: 'langmap': п²п╣я┌ я│п╬п╬я┌п╡п╣я┌я│я┌п╡я┐я▌я┴п╣пЁп╬ я│п╦п╪п╡п╬п╩п╟ п╢п╩я▐ %s" -#: option.c:8937 +#: option.c:8940 #, c-format msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': Лишние символы после точки с запятой: %s" +msgstr "E358: 'langmap': п⌡п╦я┬п╫п╦п╣ я│п╦п╪п╡п╬п╩я▀ п©п╬я│п╩п╣ я┌п╬я┤п╨п╦ я│ п╥п╟п©я▐я┌п╬п╧: %s" #: os_amiga.c:280 msgid "cannot open " -msgstr "невозможно открыть " +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ " #: os_amiga.c:314 msgid "VIM: Can't open window!\n" -msgstr "VIM: Невозможно открыть окно!\n" +msgstr "VIM: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╬п╨п╫п╬!\n" #: os_amiga.c:338 msgid "Need Amigados version 2.04 or later\n" -msgstr "Необходима Amigados версии 2.04 или более поздней\n" +msgstr "п²п╣п╬п╠я┘п╬п╢п╦п╪п╟ Amigados п╡п╣я─я│п╦п╦ 2.04 п╦п╩п╦ п╠п╬п╩п╣п╣ п©п╬п╥п╢п╫п╣п╧\n" #: os_amiga.c:344 #, c-format msgid "Need %s version %ld\n" -msgstr "Необходима %s версии %ld\n" +msgstr "п²п╣п╬п╠я┘п╬п╢п╦п╪п╟ %s п╡п╣я─я│п╦п╦ %ld\n" #: os_amiga.c:416 msgid "Cannot open NIL:\n" -msgstr "Невозможно открыть NIL:\n" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ NIL:\n" #: os_amiga.c:427 msgid "Cannot create " -msgstr "Невозможно создать " +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ " #: os_amiga.c:905 #, c-format msgid "Vim exiting with %d\n" -msgstr "Прекращение работы Vim с кодом %d\n" +msgstr "п÷я─п╣п╨я─п╟я┴п╣п╫п╦п╣ я─п╟п╠п╬я┌я▀ Vim я│ п╨п╬п╢п╬п╪ %d\n" -#: os_amiga.c:937 +#: os_amiga.c:941 msgid "cannot change console mode ?!\n" -msgstr "невозможно сменить режим консоли?!\n" +msgstr "п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╪п╣п╫п╦я┌я▄ я─п╣п╤п╦п╪ п╨п╬п╫я│п╬п╩п╦?!\n" -#: os_amiga.c:1003 +#: os_amiga.c:1012 msgid "mch_get_shellsize: not a console??\n" -msgstr "mch_get_shellsize: не в консоли??\n" +msgstr "mch_get_shellsize: п╫п╣ п╡ п╨п╬п╫я│п╬п╩п╦??\n" #. if Vim opened a window: Executing a shell may cause crashes -#: os_amiga.c:1152 +#: os_amiga.c:1161 msgid "E360: Cannot execute shell with -f option" -msgstr "E360: Невозможно выполнить оболочку с аргументом -f" +msgstr "E360: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ п╬п╠п╬п╩п╬я┤п╨я┐ я│ п╟я─пЁя┐п╪п╣п╫я┌п╬п╪ -f" -#: os_amiga.c:1193 os_amiga.c:1283 +#: os_amiga.c:1202 os_amiga.c:1292 msgid "Cannot execute " -msgstr "Невозможно выполнить " +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ " -#: os_amiga.c:1196 os_amiga.c:1293 +#: os_amiga.c:1205 os_amiga.c:1302 msgid "shell " -msgstr "оболочка " +msgstr "п╬п╠п╬п╩п╬я┤п╨п╟ " -#: os_amiga.c:1216 os_amiga.c:1318 +#: os_amiga.c:1225 os_amiga.c:1327 msgid " returned\n" -msgstr " завершила работу\n" +msgstr " п╥п╟п╡п╣я─я┬п╦п╩п╟ я─п╟п╠п╬я┌я┐\n" -#: os_amiga.c:1459 +#: os_amiga.c:1468 msgid "ANCHOR_BUF_SIZE too small." -msgstr "слишком малая величина ANCHOR_BUF_SIZE." +msgstr "я│п╩п╦я┬п╨п╬п╪ п╪п╟п╩п╟я▐ п╡п╣п╩п╦я┤п╦п╫п╟ ANCHOR_BUF_SIZE." -#: os_amiga.c:1463 +#: os_amiga.c:1472 msgid "I/O ERROR" -msgstr "ОШИБКА ВВОДА/ВЫВОДА" +msgstr "п·п╗п≤п▒п п░ п▓п▓п·п■п░/п▓п╚п▓п·п■п░" -#: os_mswin.c:539 +#: os_mswin.c:548 msgid "...(truncated)" -msgstr "...(обрезано)" +msgstr "...(п╬п╠я─п╣п╥п╟п╫п╬)" -#: os_mswin.c:641 +#: os_mswin.c:650 msgid "'columns' is not 80, cannot execute external commands" -msgstr "Значение опции 'columns' не равно 80, внешние программы не выполняются" +msgstr "п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'columns' п╫п╣ я─п╟п╡п╫п╬ 80, п╡п╫п╣я┬п╫п╦п╣ п©я─п╬пЁя─п╟п╪п╪я▀ п╫п╣ п╡я▀п©п╬п╩п╫я▐я▌я┌я│я▐" -#: os_mswin.c:1973 +#: os_mswin.c:1982 msgid "E237: Printer selection failed" -msgstr "E327: Неудачное завершение выбора принтера" +msgstr "E327: п²п╣я┐п╢п╟я┤п╫п╬п╣ п╥п╟п╡п╣я─я┬п╣п╫п╦п╣ п╡я▀п╠п╬я─п╟ п©я─п╦п╫я┌п╣я─п╟" -#: os_mswin.c:2013 +#: os_mswin.c:2022 #, c-format msgid "to %s on %s" -msgstr "в %s на %s" +msgstr "п╡ %s п╫п╟ %s" -#: os_mswin.c:2028 +#: os_mswin.c:2037 #, c-format msgid "E613: Unknown printer font: %s" -msgstr "E613: Неизвестный шрифт принтера: %s" +msgstr "E613: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я┬я─п╦я└я┌ п©я─п╦п╫я┌п╣я─п╟: %s" -#: os_mswin.c:2077 os_mswin.c:2087 +#: os_mswin.c:2086 os_mswin.c:2096 #, c-format msgid "E238: Print error: %s" -msgstr "E238: Ошибка печати: %s" +msgstr "E238: п·я┬п╦п╠п╨п╟ п©п╣я┤п╟я┌п╦: %s" -#: os_mswin.c:2088 +#: os_mswin.c:2097 msgid "Unknown" -msgstr "Неизвестно" +msgstr "п²п╣п╦п╥п╡п╣я│я┌п╫п╬" -#: os_mswin.c:2115 +#: os_mswin.c:2124 #, c-format msgid "Printing '%s'" -msgstr "Печать '%s'" +msgstr "п÷п╣я┤п╟я┌я▄ '%s'" -#: os_mswin.c:3204 +#: os_mswin.c:3213 #, c-format msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -msgstr "E244: Недопустимое имя кодировки \"%s\" в имени шрифта \"%s\"" +msgstr "E244: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦п╪я▐ п╨п╬п╢п╦я─п╬п╡п╨п╦ \"%s\" п╡ п╦п╪п╣п╫п╦ я┬я─п╦я└я┌п╟ \"%s\"" -#: os_mswin.c:3212 +#: os_mswin.c:3221 #, c-format msgid "E245: Illegal char '%c' in font name \"%s\"" -msgstr "E245: Недопустимый символ '%c' в имени шрифта \"%s\"" +msgstr "E245: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ '%c' п╡ п╦п╪п╣п╫п╦ я┬я─п╦я└я┌п╟ \"%s\"" #: os_riscos.c:1259 msgid "E366: Invalid 'osfiletype' option - using Text" -msgstr "E366: Недопустимое значение опции 'osfiletype' -- используется Text" +msgstr "E366: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'osfiletype' -- п╦я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ Text" #: os_unix.c:927 msgid "Vim: Double signal, exiting\n" -msgstr "Vim: Двойной сигнал, завершение работы\n" +msgstr "Vim: п■п╡п╬п╧п╫п╬п╧ я│п╦пЁп╫п╟п╩, п╥п╟п╡п╣я─я┬п╣п╫п╦п╣ я─п╟п╠п╬я┌я▀\n" #: os_unix.c:933 #, c-format msgid "Vim: Caught deadly signal %s\n" -msgstr "Vim: Получен убийственный сигнал %s\n" +msgstr "Vim: п÷п╬п╩я┐я┤п╣п╫ я┐п╠п╦п╧я│я┌п╡п╣п╫п╫я▀п╧ я│п╦пЁп╫п╟п╩ %s\n" #: os_unix.c:936 #, c-format msgid "Vim: Caught deadly signal\n" -msgstr "Vim: Получен убийственный сигнал\n" +msgstr "Vim: п÷п╬п╩я┐я┤п╣п╫ я┐п╠п╦п╧я│я┌п╡п╣п╫п╫я▀п╧ я│п╦пЁп╫п╟п╩\n" #: os_unix.c:1199 #, c-format msgid "Opening the X display took %ld msec" -msgstr "Открытие дисплея X заняло %ld msec" +msgstr "п·я┌п╨я─я▀я┌п╦п╣ п╢п╦я│п©п╩п╣я▐ X п╥п╟п╫я▐п╩п╬ %ld msec" #: os_unix.c:1226 msgid "" @@ -4872,531 +4881,531 @@ msgid "" "Vim: Got X error\n" msgstr "" "\n" -"Vim: Ошибка X\n" +"Vim: п·я┬п╦п╠п╨п╟ X\n" -#: os_unix.c:1334 +#: os_unix.c:1338 msgid "Testing the X display failed" -msgstr "Проверка дисплея X завершена неудачно" +msgstr "п÷я─п╬п╡п╣я─п╨п╟ п╢п╦я│п©п╩п╣я▐ X п╥п╟п╡п╣я─я┬п╣п╫п╟ п╫п╣я┐п╢п╟я┤п╫п╬" -#: os_unix.c:1473 +#: os_unix.c:1477 msgid "Opening the X display timed out" -msgstr "Открытие дисплея X не выполнено в отведённое время" +msgstr "п·я┌п╨я─я▀я┌п╦п╣ п╢п╦я│п©п╩п╣я▐ X п╫п╣ п╡я▀п©п╬п╩п╫п╣п╫п╬ п╡ п╬я┌п╡п╣п╢я▒п╫п╫п╬п╣ п╡я─п╣п╪я▐" -#: os_unix.c:3227 os_unix.c:3907 +#: os_unix.c:3234 os_unix.c:3914 msgid "" "\n" "Cannot execute shell " msgstr "" "\n" -"Невозможно запустить оболочку " +"п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟п©я┐я│я┌п╦я┌я▄ п╬п╠п╬п╩п╬я┤п╨я┐ " -#: os_unix.c:3275 +#: os_unix.c:3282 msgid "" "\n" "Cannot execute shell sh\n" msgstr "" "\n" -"Невозможно запустить оболочку sh\n" +"п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟п©я┐я│я┌п╦я┌я▄ п╬п╠п╬п╩п╬я┤п╨я┐ sh\n" -#: os_unix.c:3279 os_unix.c:3913 +#: os_unix.c:3286 os_unix.c:3920 msgid "" "\n" "shell returned " msgstr "" "\n" -"Оболочка завершила работу " +"п·п╠п╬п╩п╬я┤п╨п╟ п╥п╟п╡п╣я─я┬п╦п╩п╟ я─п╟п╠п╬я┌я┐ " -#: os_unix.c:3414 +#: os_unix.c:3421 msgid "" "\n" "Cannot create pipes\n" msgstr "" "\n" -"Невозможно создать трубы\n" +"п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я┌я─я┐п╠я▀\n" -#: os_unix.c:3429 +#: os_unix.c:3436 msgid "" "\n" "Cannot fork\n" msgstr "" "\n" -"Невозможно выполнить fork()\n" +"п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ fork()\n" -#: os_unix.c:3920 +#: os_unix.c:3927 msgid "" "\n" "Command terminated\n" msgstr "" "\n" -"Выполнение команды прервано\n" +"п▓я▀п©п╬п╩п╫п╣п╫п╦п╣ п╨п╬п╪п╟п╫п╢я▀ п©я─п╣я─п╡п╟п╫п╬\n" -#: os_unix.c:4184 os_unix.c:4309 os_unix.c:5975 +#: os_unix.c:4191 os_unix.c:4316 os_unix.c:5982 msgid "XSMP lost ICE connection" -msgstr "XSMP утеряно соединение ICE" +msgstr "XSMP я┐я┌п╣я─я▐п╫п╬ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣ ICE" -#: os_unix.c:5558 +#: os_unix.c:5565 msgid "Opening the X display failed" -msgstr "Неудачное открытие дисплея X" +msgstr "п²п╣я┐п╢п╟я┤п╫п╬п╣ п╬я┌п╨я─я▀я┌п╦п╣ п╢п╦я│п©п╩п╣я▐ X" -#: os_unix.c:5880 +#: os_unix.c:5887 msgid "XSMP handling save-yourself request" -msgstr "XSMP обрабатывает запрос самосохранения" +msgstr "XSMP п╬п╠я─п╟п╠п╟я┌я▀п╡п╟п╣я┌ п╥п╟п©я─п╬я│ я│п╟п╪п╬я│п╬я┘я─п╟п╫п╣п╫п╦я▐" -#: os_unix.c:5999 +#: os_unix.c:6006 msgid "XSMP opening connection" -msgstr "XSMP открывает соединение" +msgstr "XSMP п╬я┌п╨я─я▀п╡п╟п╣я┌ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣" -#: os_unix.c:6018 +#: os_unix.c:6025 msgid "XSMP ICE connection watch failed" -msgstr "XSMP потеряно слежение за соединением ICE" +msgstr "XSMP п©п╬я┌п╣я─я▐п╫п╬ я│п╩п╣п╤п╣п╫п╦п╣ п╥п╟ я│п╬п╣п╢п╦п╫п╣п╫п╦п╣п╪ ICE" -#: os_unix.c:6038 +#: os_unix.c:6045 #, c-format msgid "XSMP SmcOpenConnection failed: %s" -msgstr "XSMP неудачно выполнено SmcOpenConnection: %s" +msgstr "XSMP п╫п╣я┐п╢п╟я┤п╫п╬ п╡я▀п©п╬п╩п╫п╣п╫п╬ SmcOpenConnection: %s" #: os_vms_mms.c:59 msgid "At line" -msgstr "В строке" +msgstr "п▓ я│я┌я─п╬п╨п╣" #: os_w32exe.c:65 msgid "Could not allocate memory for command line." -msgstr "Невозможно выделить память для командной строки." +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п╢п╣п╩п╦я┌я▄ п©п╟п╪я▐я┌я▄ п╢п╩я▐ п╨п╬п╪п╟п╫п╢п╫п╬п╧ я│я┌я─п╬п╨п╦." #: os_w32exe.c:66 os_w32exe.c:89 os_w32exe.c:100 msgid "VIM Error" -msgstr "Ошибка VIM" +msgstr "п·я┬п╦п╠п╨п╟ VIM" #: os_w32exe.c:89 msgid "Could not load vim32.dll!" -msgstr "Невозможно загрузить vim32.dll!" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟пЁя─я┐п╥п╦я┌я▄ vim32.dll!" #: os_w32exe.c:99 msgid "Could not fix up function pointers to the DLL!" -msgstr "Невозможно исправить указатели функций для DLL!" +msgstr "п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╦я│п©я─п╟п╡п╦я┌я▄ я┐п╨п╟п╥п╟я┌п╣п╩п╦ я└я┐п╫п╨я├п╦п╧ п╢п╩я▐ DLL!" -#: os_win16.c:342 os_win32.c:3216 +#: os_win16.c:342 os_win32.c:3248 #, c-format msgid "shell returned %d" -msgstr "завершение работы оболочки с кодом %d" +msgstr "п╥п╟п╡п╣я─я┬п╣п╫п╦п╣ я─п╟п╠п╬я┌я▀ п╬п╠п╬п╩п╬я┤п╨п╦ я│ п╨п╬п╢п╬п╪ %d" -#: os_win32.c:2674 +#: os_win32.c:2706 #, c-format msgid "Vim: Caught %s event\n" -msgstr "Vim: Перехвачено событие %s\n" +msgstr "Vim: п÷п╣я─п╣я┘п╡п╟я┤п╣п╫п╬ я│п╬п╠я▀я┌п╦п╣ %s\n" -#: os_win32.c:2676 +#: os_win32.c:2708 msgid "close" -msgstr "закрытие" +msgstr "п╥п╟п╨я─я▀я┌п╦п╣" -#: os_win32.c:2678 +#: os_win32.c:2710 msgid "logoff" -msgstr "отключение" +msgstr "п╬я┌п╨п╩я▌я┤п╣п╫п╦п╣" -#: os_win32.c:2679 +#: os_win32.c:2711 msgid "shutdown" -msgstr "завершение" +msgstr "п╥п╟п╡п╣я─я┬п╣п╫п╦п╣" -#: os_win32.c:3169 +#: os_win32.c:3201 msgid "E371: Command not found" -msgstr "E371: Команда не найдена" +msgstr "E371: п п╬п╪п╟п╫п╢п╟ п╫п╣ п╫п╟п╧п╢п╣п╫п╟" -#: os_win32.c:3182 +#: os_win32.c:3214 msgid "" "VIMRUN.EXE not found in your $PATH.\n" "External commands will not pause after completion.\n" "See :help win32-vimrun for more information." msgstr "" -"VIMRUN.EXE не найден в пути, заданном в $PATH.\n" -"Внешние команды не будут останавливаться после выполнения.\n" -"Дополнительная информация в :help win32-vimrun" +"VIMRUN.EXE п╫п╣ п╫п╟п╧п╢п╣п╫ п╡ п©я┐я┌п╦, п╥п╟п╢п╟п╫п╫п╬п╪ п╡ $PATH.\n" +"п▓п╫п╣я┬п╫п╦п╣ п╨п╬п╪п╟п╫п╢я▀ п╫п╣ п╠я┐п╢я┐я┌ п╬я│я┌п╟п╫п╟п╡п╩п╦п╡п╟я┌я▄я│я▐ п©п╬я│п╩п╣ п╡я▀п©п╬п╩п╫п╣п╫п╦я▐.\n" +"п■п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫п╟я▐ п╦п╫я└п╬я─п╪п╟я├п╦я▐ п╡ :help win32-vimrun" -#: os_win32.c:3185 +#: os_win32.c:3217 msgid "Vim Warning" -msgstr "Предупреждение Vim" +msgstr "п÷я─п╣п╢я┐п©я─п╣п╤п╢п╣п╫п╦п╣ Vim" #: quickfix.c:258 #, c-format msgid "E372: Too many %%%c in format string" -msgstr "E372: В строке формата слишком много %%%c" +msgstr "E372: п▓ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟ я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ %%%c" #: quickfix.c:271 #, c-format msgid "E373: Unexpected %%%c in format string" -msgstr "E373: Неожиданный элемент %%%c в строке формата" +msgstr "E373: п²п╣п╬п╤п╦п╢п╟п╫п╫я▀п╧ я█п╩п╣п╪п╣п╫я┌ %%%c п╡ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟" #: quickfix.c:325 msgid "E374: Missing ] in format string" -msgstr "E374: В строке формата пропущена ]" +msgstr "E374: п▓ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟ п©я─п╬п©я┐я┴п╣п╫п╟ ]" #: quickfix.c:339 #, c-format msgid "E375: Unsupported %%%c in format string" -msgstr "E375: %%%c не поддерживается в строке формата" +msgstr "E375: %%%c п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐ п╡ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟" #: quickfix.c:357 #, c-format msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: Недопустимый %%%c в приставке в строке формата" +msgstr "E376: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ %%%c п╡ п©я─п╦я│я┌п╟п╡п╨п╣ п╡ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟" #: quickfix.c:365 #, c-format msgid "E377: Invalid %%%c in format string" -msgstr "E377: Недопустимый %%%c в строке формата" +msgstr "E377: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ %%%c п╡ я│я┌я─п╬п╨п╣ я└п╬я─п╪п╟я┌п╟" #: quickfix.c:391 msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: В значении опции 'errorformat' отсутствует шаблон" +msgstr "E378: п▓ п╥п╫п╟я┤п╣п╫п╦п╦ п╬п©я├п╦п╦ 'errorformat' п╬я┌я│я┐я┌я│я┌п╡я┐п╣я┌ я┬п╟п╠п╩п╬п╫" #: quickfix.c:501 msgid "E379: Missing or empty directory name" -msgstr "E379: имя каталога не задано или равно пустой строке" +msgstr "E379: п╦п╪я▐ п╨п╟я┌п╟п╩п╬пЁп╟ п╫п╣ п╥п╟п╢п╟п╫п╬ п╦п╩п╦ я─п╟п╡п╫п╬ п©я┐я│я┌п╬п╧ я│я┌я─п╬п╨п╣" #: quickfix.c:990 msgid "E553: No more items" -msgstr "E553: Больше нет элементов" +msgstr "E553: п▒п╬п╩я▄я┬п╣ п╫п╣я┌ я█п╩п╣п╪п╣п╫я┌п╬п╡" #: quickfix.c:1229 #, c-format msgid "(%d of %d)%s%s: " -msgstr "(%d из %d)%s%s: " +msgstr "(%d п╦п╥ %d)%s%s: " #: quickfix.c:1231 msgid " (line deleted)" -msgstr " (строка удалена)" +msgstr " (я│я┌я─п╬п╨п╟ я┐п╢п╟п╩п╣п╫п╟)" #: quickfix.c:1444 msgid "E380: At bottom of quickfix stack" -msgstr "E380: Внизу стека быстрых исправлений" +msgstr "E380: п▓п╫п╦п╥я┐ я│я┌п╣п╨п╟ п╠я▀я│я┌я─я▀я┘ п╦я│п©я─п╟п╡п╩п╣п╫п╦п╧" #: quickfix.c:1453 msgid "E381: At top of quickfix stack" -msgstr "E381: Наверху стека быстрых исправлений" +msgstr "E381: п²п╟п╡п╣я─я┘я┐ я│я┌п╣п╨п╟ п╠я▀я│я┌я─я▀я┘ п╦я│п©я─п╟п╡п╩п╣п╫п╦п╧" #: quickfix.c:1465 #, c-format msgid "error list %d of %d; %d errors" -msgstr "список ошибок %d из %d; %d ошибок" +msgstr "я│п©п╦я│п╬п╨ п╬я┬п╦п╠п╬п╨ %d п╦п╥ %d; %d п╬я┬п╦п╠п╬п╨" #: quickfix.c:1943 msgid "E382: Cannot write, 'buftype' option is set" msgstr "" -"E382: Запись невозможна, значение опции 'buftype' не является пустой строкой" +"E382: п≈п╟п©п╦я│я▄ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╟, п╥п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'buftype' п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п©я┐я│я┌п╬п╧ я│я┌я─п╬п╨п╬п╧" #: regexp.c:319 #, c-format msgid "E369: invalid item in %s%%[]" -msgstr "E369: недопустимый элемент в %s%%[]" +msgstr "E369: п╫п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я█п╩п╣п╪п╣п╫я┌ п╡ %s%%[]" #: regexp.c:838 msgid "E339: Pattern too long" -msgstr "E339: Слишком длинный шаблон" +msgstr "E339: п║п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫я▀п╧ я┬п╟п╠п╩п╬п╫" #: regexp.c:1009 msgid "E50: Too many \\z(" -msgstr "E50: Слишком много \\z(" +msgstr "E50: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ \\z(" #: regexp.c:1020 #, c-format msgid "E51: Too many %s(" -msgstr "E51: Слишком много %s(" +msgstr "E51: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ %s(" #: regexp.c:1077 msgid "E52: Unmatched \\z(" -msgstr "E52: Нет пары для \\z(" +msgstr "E52: п²п╣я┌ п©п╟я─я▀ п╢п╩я▐ \\z(" #: regexp.c:1081 #, c-format msgid "E53: Unmatched %s%%(" -msgstr "E53: Нет пары для %s%%(" +msgstr "E53: п²п╣я┌ п©п╟я─я▀ п╢п╩я▐ %s%%(" #: regexp.c:1083 #, c-format msgid "E54: Unmatched %s(" -msgstr "E54: Нет пары для %s(" +msgstr "E54: п²п╣я┌ п©п╟я─я▀ п╢п╩я▐ %s(" #: regexp.c:1088 #, c-format msgid "E55: Unmatched %s)" -msgstr "E55: Нет пары для %s)" +msgstr "E55: п²п╣я┌ п©п╟я─я▀ п╢п╩я▐ %s)" #: regexp.c:1258 #, c-format msgid "E56: %s* operand could be empty" -msgstr "E56: возможно пустой операнд %s*" +msgstr "E56: п╡п╬п╥п╪п╬п╤п╫п╬ п©я┐я│я┌п╬п╧ п╬п©п╣я─п╟п╫п╢ %s*" #: regexp.c:1261 #, c-format msgid "E57: %s+ operand could be empty" -msgstr "E57: возможно пустой операнд %s+" +msgstr "E57: п╡п╬п╥п╪п╬п╤п╫п╬ п©я┐я│я┌п╬п╧ п╬п©п╣я─п╟п╫п╢ %s+" #: regexp.c:1316 #, c-format msgid "E59: invalid character after %s@" -msgstr "E59: недопустимый символ после %s@" +msgstr "E59: п╫п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ п©п╬я│п╩п╣ %s@" #: regexp.c:1344 #, c-format msgid "E58: %s{ operand could be empty" -msgstr "E58: возможно пустой операнд %s{" +msgstr "E58: п╡п╬п╥п╪п╬п╤п╫п╬ п©я┐я│я┌п╬п╧ п╬п©п╣я─п╟п╫п╢ %s{" #: regexp.c:1354 #, c-format msgid "E60: Too many complex %s{...}s" -msgstr "E60: Слишком много сложных конструкций %s{...}" +msgstr "E60: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я│п╩п╬п╤п╫я▀я┘ п╨п╬п╫я│я┌я─я┐п╨я├п╦п╧ %s{...}" #: regexp.c:1370 #, c-format msgid "E61: Nested %s*" -msgstr "E61: Вложенные %s*" +msgstr "E61: п▓п╩п╬п╤п╣п╫п╫я▀п╣ %s*" #: regexp.c:1373 #, c-format msgid "E62: Nested %s%c" -msgstr "E62: Вложенные %s%c" +msgstr "E62: п▓п╩п╬п╤п╣п╫п╫я▀п╣ %s%c" #: regexp.c:1491 msgid "E63: invalid use of \\_" -msgstr "E63: недопустимое использование \\_" +msgstr "E63: п╫п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ \\_" #: regexp.c:1536 #, c-format msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c ни за чем не следует" +msgstr "E64: %s%c п╫п╦ п╥п╟ я┤п╣п╪ п╫п╣ я│п╩п╣п╢я┐п╣я┌" #: regexp.c:1592 msgid "E65: Illegal back reference" -msgstr "E65: Недопустимая обратная ссылка" +msgstr "E65: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╟я▐ п╬п╠я─п╟я┌п╫п╟я▐ я│я│я▀п╩п╨п╟" #: regexp.c:1605 msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( не может быть использовано здесь" +msgstr "E66: \\z( п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╬ п╥п╢п╣я│я▄" #: regexp.c:1624 msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 и т.п. не могут быть использованы здесь" +msgstr "E67: \\z1 п╦ я┌.п©. п╫п╣ п╪п╬пЁя┐я┌ п╠я▀я┌я▄ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫я▀ п╥п╢п╣я│я▄" #: regexp.c:1635 msgid "E68: Invalid character after \\z" -msgstr "E68: Недопустимый символ после \\z" +msgstr "E68: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ п©п╬я│п╩п╣ \\z" #: regexp.c:1684 #, c-format msgid "E69: Missing ] after %s%%[" -msgstr "E69: Пропущена ] после %s%%[" +msgstr "E69: п÷я─п╬п©я┐я┴п╣п╫п╟ ] п©п╬я│п╩п╣ %s%%[" #: regexp.c:1700 #, c-format msgid "E70: Empty %s%%[]" -msgstr "E70: Пустое %s%%[]" +msgstr "E70: п÷я┐я│я┌п╬п╣ %s%%[]" #: regexp.c:1760 #, c-format msgid "E71: Invalid character after %s%%" -msgstr "E71: Недопустимый символ после %s%%" +msgstr "E71: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ п©п╬я│п╩п╣ %s%%" #: regexp.c:2557 #, c-format msgid "E554: Syntax error in %s{...}" -msgstr "E554: Синтаксическая ошибка в %s{...}" +msgstr "E554: п║п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╟я▐ п╬я┬п╦п╠п╨п╟ п╡ %s{...}" #: regexp.c:2863 regexp.c:3016 msgid "E361: Crash intercepted; regexp too complex?" msgstr "" -"E361: Предотвращено аварийное завершение: слишком сложное регулярное " -"выражение?" +"E361: п÷я─п╣п╢п╬я┌п╡я─п╟я┴п╣п╫п╬ п╟п╡п╟я─п╦п╧п╫п╬п╣ п╥п╟п╡п╣я─я┬п╣п╫п╦п╣: я│п╩п╦я┬п╨п╬п╪ я│п╩п╬п╤п╫п╬п╣ я─п╣пЁя┐п╩я▐я─п╫п╬п╣ " +"п╡я▀я─п╟п╤п╣п╫п╦п╣?" #: regexp.c:3004 regexp.c:3013 msgid "E363: pattern caused out-of-stack error" -msgstr "E363: применение шаблона привело к ошибке выхода за пределы стека" +msgstr "E363: п©я─п╦п╪п╣п╫п╣п╫п╦п╣ я┬п╟п╠п╩п╬п╫п╟ п©я─п╦п╡п╣п╩п╬ п╨ п╬я┬п╦п╠п╨п╣ п╡я▀я┘п╬п╢п╟ п╥п╟ п©я─п╣п╢п╣п╩я▀ я│я┌п╣п╨п╟" #: regexp.c:3258 msgid "External submatches:\n" -msgstr "Внешние подсоответствия:\n" +msgstr "п▓п╫п╣я┬п╫п╦п╣ п©п╬п╢я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐:\n" #: screen.c:2184 #, c-format msgid "+--%3ld lines folded " -msgstr "+--%3ld строк в складке" +msgstr "+--%3ld я│я┌я─п╬п╨ п╡ я│п╨п╩п╟п╢п╨п╣" -#: screen.c:7996 +#: screen.c:8000 msgid " VREPLACE" -msgstr " ВИРТУАЛЬНАЯ ЗАМЕНА" +msgstr " п▓п≤п═п╒пёп░п⌡п╛п²п░п╞ п≈п░п°п∙п²п░" -#: screen.c:8000 +#: screen.c:8004 msgid " REPLACE" -msgstr " ЗАМЕНА" +msgstr " п≈п░п°п∙п²п░" -#: screen.c:8005 +#: screen.c:8009 msgid " REVERSE" -msgstr " ОБРАТНАЯ" +msgstr " п·п▒п═п░п╒п²п░п╞" -#: screen.c:8007 +#: screen.c:8011 msgid " INSERT" -msgstr " ВСТАВКА" +msgstr " п▓п║п╒п░п▓п п░" -#: screen.c:8010 +#: screen.c:8014 msgid " (insert)" -msgstr " (вставка)" +msgstr " (п╡я│я┌п╟п╡п╨п╟)" -#: screen.c:8012 +#: screen.c:8016 msgid " (replace)" -msgstr " (замена)" +msgstr " (п╥п╟п╪п╣п╫п╟)" -#: screen.c:8014 +#: screen.c:8018 msgid " (vreplace)" -msgstr " (виртуальная замена)" +msgstr " (п╡п╦я─я┌я┐п╟п╩я▄п╫п╟я▐ п╥п╟п╪п╣п╫п╟)" -#: screen.c:8017 +#: screen.c:8021 msgid " Hebrew" -msgstr " Иврит" +msgstr " п≤п╡я─п╦я┌" -#: screen.c:8028 +#: screen.c:8032 msgid " Arabic" -msgstr " Арабский" +msgstr " п░я─п╟п╠я│п╨п╦п╧" -#: screen.c:8031 +#: screen.c:8035 msgid " (lang)" -msgstr " (язык)" +msgstr " (я▐п╥я▀п╨)" -#: screen.c:8035 +#: screen.c:8039 msgid " (paste)" -msgstr " (вклейка)" +msgstr " (п╡п╨п╩п╣п╧п╨п╟)" -#: screen.c:8048 +#: screen.c:8052 msgid " VISUAL" -msgstr " ВИЗУАЛЬНЫЙ РЕЖИМ" +msgstr " п▓п≤п≈пёп░п⌡п╛п²п╚п≥ п═п∙п√п≤п°" -#: screen.c:8049 +#: screen.c:8053 msgid " VISUAL LINE" -msgstr " ВИЗУАЛЬНАЯ СТРОКА" +msgstr " п▓п≤п≈пёп░п⌡п╛п²п░п╞ п║п╒п═п·п п░" -#: screen.c:8050 +#: screen.c:8054 msgid " VISUAL BLOCK" -msgstr " ВИЗУАЛЬНЫЙ БЛОК" +msgstr " п▓п≤п≈пёп░п⌡п╛п²п╚п≥ п▒п⌡п·п " -#: screen.c:8051 +#: screen.c:8055 msgid " SELECT" -msgstr " ВЫДЕЛЕНИЕ" +msgstr " п▓п╚п■п∙п⌡п∙п²п≤п∙" -#: screen.c:8052 +#: screen.c:8056 msgid " SELECT LINE" -msgstr " ВЫДЕЛЕНИЕ СТРОКИ" +msgstr " п▓п╚п■п∙п⌡п∙п²п≤п∙ п║п╒п═п·п п≤" -#: screen.c:8053 +#: screen.c:8057 msgid " SELECT BLOCK" -msgstr " ВЫДЕЛЕНИЕ БЛОКА" +msgstr " п▓п╚п■п∙п⌡п∙п²п≤п∙ п▒п⌡п·п п░" -#: screen.c:8068 screen.c:8131 +#: screen.c:8072 screen.c:8135 msgid "recording" -msgstr "запись" +msgstr "п╥п╟п©п╦я│я▄" #: search.c:37 msgid "search hit TOP, continuing at BOTTOM" -msgstr "поиск будет продолжен с КОНЦА документа" +msgstr "п©п╬п╦я│п╨ п╠я┐п╢п╣я┌ п©я─п╬п╢п╬п╩п╤п╣п╫ я│ п п·п²п╕п░ п╢п╬п╨я┐п╪п╣п╫я┌п╟" #: search.c:38 msgid "search hit BOTTOM, continuing at TOP" -msgstr "поиск будет продолжен с НАЧАЛА документа" +msgstr "п©п╬п╦я│п╨ п╠я┐п╢п╣я┌ п©я─п╬п╢п╬п╩п╤п╣п╫ я│ п²п░п╖п░п⌡п░ п╢п╬п╨я┐п╪п╣п╫я┌п╟" #: search.c:526 #, c-format msgid "E383: Invalid search string: %s" -msgstr "E383: Неправильная строка поиска: %s" +msgstr "E383: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╟я▐ я│я┌я─п╬п╨п╟ п©п╬п╦я│п╨п╟: %s" #: search.c:853 #, c-format msgid "E384: search hit TOP without match for: %s" -msgstr "E384: поиск закончен в НАЧАЛЕ документа; %s не найдено" +msgstr "E384: п©п╬п╦я│п╨ п╥п╟п╨п╬п╫я┤п╣п╫ п╡ п²п░п╖п░п⌡п∙ п╢п╬п╨я┐п╪п╣п╫я┌п╟; %s п╫п╣ п╫п╟п╧п╢п╣п╫п╬" #: search.c:856 #, c-format msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: поиск закончен в КОНЦЕ документа; %s не найдено" +msgstr "E385: п©п╬п╦я│п╨ п╥п╟п╨п╬п╫я┤п╣п╫ п╡ п п·п²п╕п∙ п╢п╬п╨я┐п╪п╣п╫я┌п╟; %s п╫п╣ п╫п╟п╧п╢п╣п╫п╬" #: search.c:1249 msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: После ';' ожидается ввод '?' или '/'" +msgstr "E386: п÷п╬я│п╩п╣ ';' п╬п╤п╦п╢п╟п╣я┌я│я▐ п╡п╡п╬п╢ '?' п╦п╩п╦ '/'" -#: search.c:3759 +#: search.c:3768 msgid " (includes previously listed match)" -msgstr " (включает раннее показанные соответствия)" +msgstr " (п╡п╨п╩я▌я┤п╟п╣я┌ я─п╟п╫п╫п╣п╣ п©п╬п╨п╟п╥п╟п╫п╫я▀п╣ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐)" #. cursor at status line -#: search.c:3779 +#: search.c:3788 msgid "--- Included files " -msgstr "--- Включённые файлы " +msgstr "--- п▓п╨п╩я▌я┤я▒п╫п╫я▀п╣ я└п╟п╧п╩я▀ " -#: search.c:3781 +#: search.c:3790 msgid "not found " -msgstr "не найдено " +msgstr "п╫п╣ п╫п╟п╧п╢п╣п╫п╬ " -#: search.c:3782 +#: search.c:3791 msgid "in path ---\n" -msgstr "по пути ---\n" +msgstr "п©п╬ п©я┐я┌п╦ ---\n" -#: search.c:3839 +#: search.c:3848 msgid " (Already listed)" -msgstr " (Уже показано)" +msgstr " (пёп╤п╣ п©п╬п╨п╟п╥п╟п╫п╬)" -#: search.c:3841 +#: search.c:3850 msgid " NOT FOUND" -msgstr " НЕ НАЙДЕНО" +msgstr " п²п∙ п²п░п≥п■п∙п²п·" -#: search.c:3893 +#: search.c:3902 #, c-format msgid "Scanning included file: %s" -msgstr "Просмотр включённых файлов: %s" +msgstr "п÷я─п╬я│п╪п╬я┌я─ п╡п╨п╩я▌я┤я▒п╫п╫я▀я┘ я└п╟п╧п╩п╬п╡: %s" -#: search.c:4111 +#: search.c:4120 msgid "E387: Match is on current line" -msgstr "E387: Соответствие в текущей строке" +msgstr "E387: п║п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣ п╡ я┌п╣п╨я┐я┴п╣п╧ я│я┌я─п╬п╨п╣" -#: search.c:4254 +#: search.c:4263 msgid "All included files were found" -msgstr "Найдены все включённые файлы" +msgstr "п²п╟п╧п╢п╣п╫я▀ п╡я│п╣ п╡п╨п╩я▌я┤я▒п╫п╫я▀п╣ я└п╟п╧п╩я▀" -#: search.c:4256 +#: search.c:4265 msgid "No included files" -msgstr "Включённых файлов нет" +msgstr "п▓п╨п╩я▌я┤я▒п╫п╫я▀я┘ я└п╟п╧п╩п╬п╡ п╫п╣я┌" -#: search.c:4272 +#: search.c:4281 msgid "E388: Couldn't find definition" -msgstr "E388: Определение не найдено" +msgstr "E388: п·п©я─п╣п╢п╣п╩п╣п╫п╦п╣ п╫п╣ п╫п╟п╧п╢п╣п╫п╬" -#: search.c:4274 +#: search.c:4283 msgid "E389: Couldn't find pattern" -msgstr "E389: Шаблон не найден" +msgstr "E389: п╗п╟п╠п╩п╬п╫ п╫п╣ п╫п╟п╧п╢п╣п╫" #: syntax.c:3050 #, c-format msgid "E390: Illegal argument: %s" -msgstr "E390: Недопустимый аргумент: %s" +msgstr "E390: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╟я─пЁя┐п╪п╣п╫я┌: %s" #: syntax.c:3230 #, c-format msgid "E391: No such syntax cluster: %s" -msgstr "E391: Синтаксический кластер %s не найден" +msgstr "E391: п║п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╦п╧ п╨п╩п╟я│я┌п╣я─ %s п╫п╣ п╫п╟п╧п╢п╣п╫" #: syntax.c:3394 msgid "No Syntax items defined for this buffer" -msgstr "Синтаксические элементы для данного буфера не определены" +msgstr "п║п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╦п╣ я█п╩п╣п╪п╣п╫я┌я▀ п╢п╩я▐ п╢п╟п╫п╫п╬пЁп╬ п╠я┐я└п╣я─п╟ п╫п╣ п╬п©я─п╣п╢п╣п╩п╣п╫я▀" #: syntax.c:3402 msgid "syncing on C-style comments" -msgstr "Синхронизация по комментариям в стиле языка C" +msgstr "п║п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦я▐ п©п╬ п╨п╬п╪п╪п╣п╫я┌п╟я─п╦я▐п╪ п╡ я│я┌п╦п╩п╣ я▐п╥я▀п╨п╟ C" #: syntax.c:3410 msgid "no syncing" -msgstr "без синхронизации" +msgstr "п╠п╣п╥ я│п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦п╦" #: syntax.c:3413 msgid "syncing starts " -msgstr "синхронизация начата " +msgstr "я│п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦я▐ п╫п╟я┤п╟я┌п╟ " #: syntax.c:3415 syntax.c:3490 msgid " lines before top line" -msgstr " строк перед верхней строкой" +msgstr " я│я┌я─п╬п╨ п©п╣я─п╣п╢ п╡п╣я─я┘п╫п╣п╧ я│я┌я─п╬п╨п╬п╧" #: syntax.c:3420 msgid "" @@ -5404,7 +5413,7 @@ msgid "" "--- Syntax sync items ---" msgstr "" "\n" -"--- Элементы синхронизации синтаксиса ---" +"--- п╜п╩п╣п╪п╣п╫я┌я▀ я│п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦п╦ я│п╦п╫я┌п╟п╨я│п╦я│п╟ ---" #: syntax.c:3425 msgid "" @@ -5412,7 +5421,7 @@ msgid "" "syncing on items" msgstr "" "\n" -"синхронизация по элементам" +"я│п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦я▐ п©п╬ я█п╩п╣п╪п╣п╫я┌п╟п╪" #: syntax.c:3431 msgid "" @@ -5420,214 +5429,214 @@ msgid "" "--- Syntax items ---" msgstr "" "\n" -"--- Синтаксические элементы ---" +"--- п║п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╦п╣ я█п╩п╣п╪п╣п╫я┌я▀ ---" #: syntax.c:3454 #, c-format msgid "E392: No such syntax cluster: %s" -msgstr "E392: Синтаксический кластер %s не найден" +msgstr "E392: п║п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╦п╧ п╨п╩п╟я│я┌п╣я─ %s п╫п╣ п╫п╟п╧п╢п╣п╫" #: syntax.c:3480 msgid "minimal " -msgstr "минимум " +msgstr "п╪п╦п╫п╦п╪я┐п╪ " #: syntax.c:3487 msgid "maximal " -msgstr "максимум " +msgstr "п╪п╟п╨я│п╦п╪я┐п╪ " #: syntax.c:3499 msgid "; match " -msgstr "; соответствие " +msgstr "; я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦п╣ " #: syntax.c:3501 msgid " line breaks" -msgstr " переносов строк" +msgstr " п©п╣я─п╣п╫п╬я│п╬п╡ я│я┌я─п╬п╨" #: syntax.c:4135 msgid "E393: group[t]here not accepted here" -msgstr "E393: здесь нельзя использовать group[t]here" +msgstr "E393: п╥п╢п╣я│я▄ п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ group[t]here" #: syntax.c:4159 #, c-format msgid "E394: Didn't find region item for %s" -msgstr "E394: Элемент области для %s не найден" +msgstr "E394: п╜п╩п╣п╪п╣п╫я┌ п╬п╠п╩п╟я│я┌п╦ п╢п╩я▐ %s п╫п╣ п╫п╟п╧п╢п╣п╫" #: syntax.c:4187 msgid "E395: contains argument not accepted here" -msgstr "E395: здесь нельзя использовать аргумент contains" +msgstr "E395: п╥п╢п╣я│я▄ п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╟я─пЁя┐п╪п╣п╫я┌ contains" #: syntax.c:4198 msgid "E396: containedin argument not accepted here" -msgstr "E396: здесь нельзя использовать аргумент containedin" +msgstr "E396: п╥п╢п╣я│я▄ п╫п╣п╩я▄п╥я▐ п╦я│п©п╬п╩я▄п╥п╬п╡п╟я┌я▄ п╟я─пЁя┐п╪п╣п╫я┌ containedin" #: syntax.c:4276 msgid "E397: Filename required" -msgstr "E397: Требуется указать имя файла" +msgstr "E397: п╒я─п╣п╠я┐п╣я┌я│я▐ я┐п╨п╟п╥п╟я┌я▄ п╦п╪я▐ я└п╟п╧п╩п╟" #: syntax.c:4614 #, c-format msgid "E398: Missing '=': %s" -msgstr "E398: Пропущено '=': %s" +msgstr "E398: п÷я─п╬п©я┐я┴п╣п╫п╬ '=': %s" #: syntax.c:4772 #, c-format msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: Не хватает аргументов: синтаксический регион %s" +msgstr "E399: п²п╣ я┘п╡п╟я┌п╟п╣я┌ п╟я─пЁя┐п╪п╣п╫я┌п╬п╡: я│п╦п╫я┌п╟п╨я│п╦я┤п╣я│п╨п╦п╧ я─п╣пЁп╦п╬п╫ %s" #: syntax.c:5103 msgid "E400: No cluster specified" -msgstr "E400: Кластер не указан" +msgstr "E400: п п╩п╟я│я┌п╣я─ п╫п╣ я┐п╨п╟п╥п╟п╫" #: syntax.c:5140 #, c-format msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: Не найден разделитель шаблонов: %s" +msgstr "E401: п²п╣ п╫п╟п╧п╢п╣п╫ я─п╟п╥п╢п╣п╩п╦я┌п╣п╩я▄ я┬п╟п╠п╩п╬п╫п╬п╡: %s" #: syntax.c:5215 #, c-format msgid "E402: Garbage after pattern: %s" -msgstr "E402: Мусор после шаблона: %s" +msgstr "E402: п°я┐я│п╬я─ п©п╬я│п╩п╣ я┬п╟п╠п╩п╬п╫п╟: %s" #: syntax.c:5305 msgid "E403: syntax sync: line continuations pattern specified twice" msgstr "" -"E403: синхронизация синтаксиса: шаблон продолжений строки указан дважды" +"E403: я│п╦п╫я┘я─п╬п╫п╦п╥п╟я├п╦я▐ я│п╦п╫я┌п╟п╨я│п╦я│п╟: я┬п╟п╠п╩п╬п╫ п©я─п╬п╢п╬п╩п╤п╣п╫п╦п╧ я│я┌я─п╬п╨п╦ я┐п╨п╟п╥п╟п╫ п╢п╡п╟п╤п╢я▀" #: syntax.c:5362 #, c-format msgid "E404: Illegal arguments: %s" -msgstr "E404: Недопустимые аргументы: %s" +msgstr "E404: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╣ п╟я─пЁя┐п╪п╣п╫я┌я▀: %s" #: syntax.c:5412 #, c-format msgid "E405: Missing equal sign: %s" -msgstr "E405: Пропущен знак равенства: %s" +msgstr "E405: п÷я─п╬п©я┐я┴п╣п╫ п╥п╫п╟п╨ я─п╟п╡п╣п╫я│я┌п╡п╟: %s" #: syntax.c:5418 #, c-format msgid "E406: Empty argument: %s" -msgstr "E406: Пустой аргумент: %s" +msgstr "E406: п÷я┐я│я┌п╬п╧ п╟я─пЁя┐п╪п╣п╫я┌: %s" #: syntax.c:5445 #, c-format msgid "E407: %s not allowed here" -msgstr "E407: %s не допускается в этом месте" +msgstr "E407: %s п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡ я█я┌п╬п╪ п╪п╣я│я┌п╣" #: syntax.c:5452 #, c-format msgid "E408: %s must be first in contains list" -msgstr "E408: %s должно быть первым в списке contains" +msgstr "E408: %s п╢п╬п╩п╤п╫п╬ п╠я▀я┌я▄ п©п╣я─п╡я▀п╪ п╡ я│п©п╦я│п╨п╣ contains" #: syntax.c:5522 #, c-format msgid "E409: Unknown group name: %s" -msgstr "E409: Неизвестная группа: %s" +msgstr "E409: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ пЁя─я┐п©п©п╟: %s" #: syntax.c:5755 #, c-format msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: Неправильная подкоманда :syntax: %s" +msgstr "E410: п²п╣п©я─п╟п╡п╦п╩я▄п╫п╟я▐ п©п╬п╢п╨п╬п╪п╟п╫п╢п╟ :syntax: %s" #: syntax.c:6136 #, c-format msgid "E411: highlight group not found: %s" -msgstr "E411: группа подсветки синтаксиса %s не найдена" +msgstr "E411: пЁя─я┐п©п©п╟ п©п╬п╢я│п╡п╣я┌п╨п╦ я│п╦п╫я┌п╟п╨я│п╦я│п╟ %s п╫п╣ п╫п╟п╧п╢п╣п╫п╟" #: syntax.c:6160 #, c-format msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: Не хватает аргументов: \":highlight link %s\"" +msgstr "E412: п²п╣ я┘п╡п╟я┌п╟п╣я┌ п╟я─пЁя┐п╪п╣п╫я┌п╬п╡: \":highlight link %s\"" #: syntax.c:6167 #, c-format msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: Слишком много аргументов: \":highlight link %s\"" +msgstr "E413: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╟я─пЁя┐п╪п╣п╫я┌п╬п╡: \":highlight link %s\"" #: syntax.c:6187 msgid "E414: group has settings, highlight link ignored" -msgstr "E414: у группы есть собственные настройки, ссылка игнорируется" +msgstr "E414: я┐ пЁя─я┐п©п©я▀ п╣я│я┌я▄ я│п╬п╠я│я┌п╡п╣п╫п╫я▀п╣ п╫п╟я│я┌я─п╬п╧п╨п╦, я│я│я▀п╩п╨п╟ п╦пЁп╫п╬я─п╦я─я┐п╣я┌я│я▐" #: syntax.c:6316 #, c-format msgid "E415: unexpected equal sign: %s" -msgstr "E415: неожиданный знак равенства: %s" +msgstr "E415: п╫п╣п╬п╤п╦п╢п╟п╫п╫я▀п╧ п╥п╫п╟п╨ я─п╟п╡п╣п╫я│я┌п╡п╟: %s" #: syntax.c:6352 #, c-format msgid "E416: missing equal sign: %s" -msgstr "E416: пропущен знак равенства: %s" +msgstr "E416: п©я─п╬п©я┐я┴п╣п╫ п╥п╫п╟п╨ я─п╟п╡п╣п╫я│я┌п╡п╟: %s" #: syntax.c:6380 #, c-format msgid "E417: missing argument: %s" -msgstr "E417: пропущен аргумент: %s" +msgstr "E417: п©я─п╬п©я┐я┴п╣п╫ п╟я─пЁя┐п╪п╣п╫я┌: %s" #: syntax.c:6417 #, c-format msgid "E418: Illegal value: %s" -msgstr "E418: Недопустимое значение: %s" +msgstr "E418: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣: %s" #: syntax.c:6536 msgid "E419: FG color unknown" -msgstr "E419: Неизвестный цвет текста" +msgstr "E419: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я├п╡п╣я┌ я┌п╣п╨я│я┌п╟" #: syntax.c:6547 msgid "E420: BG color unknown" -msgstr "E420: Неизвестный цвет фона" +msgstr "E420: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я├п╡п╣я┌ я└п╬п╫п╟" #: syntax.c:6608 #, c-format msgid "E421: Color name or number not recognized: %s" -msgstr "E421: Имя или номер цвета не известно: %s" +msgstr "E421: п≤п╪я▐ п╦п╩п╦ п╫п╬п╪п╣я─ я├п╡п╣я┌п╟ п╫п╣ п╦п╥п╡п╣я│я┌п╫п╬: %s" #: syntax.c:6814 #, c-format msgid "E422: terminal code too long: %s" -msgstr "E422: слишком длинный код терминала: %s" +msgstr "E422: я│п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫я▀п╧ п╨п╬п╢ я┌п╣я─п╪п╦п╫п╟п╩п╟: %s" #: syntax.c:6861 #, c-format msgid "E423: Illegal argument: %s" -msgstr "E423: Недопустимый аргумент: %s" +msgstr "E423: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╟я─пЁя┐п╪п╣п╫я┌: %s" #: syntax.c:7390 msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: Используется слишком много разных атрибутов подсветки синтаксиса" +msgstr "E424: п≤я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ я│п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я─п╟п╥п╫я▀я┘ п╟я┌я─п╦п╠я┐я┌п╬п╡ п©п╬п╢я│п╡п╣я┌п╨п╦ я│п╦п╫я┌п╟п╨я│п╦я│п╟" #: syntax.c:7911 msgid "E669: Unprintable character in group name" -msgstr "E669: Непечатный символ в имени группы" +msgstr "E669: п²п╣п©п╣я┤п╟я┌п╫я▀п╧ я│п╦п╪п╡п╬п╩ п╡ п╦п╪п╣п╫п╦ пЁя─я┐п©п©я▀" #. This is an error, but since there previously was no check only #. * give a warning. #: syntax.c:7918 msgid "W18: Invalid character in group name" -msgstr "W18: Недопустимый символ в имени группы" +msgstr "W18: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я│п╦п╪п╡п╬п╩ п╡ п╦п╪п╣п╫п╦ пЁя─я┐п©п©я▀" #: tag.c:90 msgid "E555: at bottom of tag stack" -msgstr "E555: внизу стека меток" +msgstr "E555: п╡п╫п╦п╥я┐ я│я┌п╣п╨п╟ п╪п╣я┌п╬п╨" #: tag.c:91 msgid "E556: at top of tag stack" -msgstr "E556: наверху стека меток" +msgstr "E556: п╫п╟п╡п╣я─я┘я┐ я│я┌п╣п╨п╟ п╪п╣я┌п╬п╨" #: tag.c:412 msgid "E425: Cannot go before first matching tag" -msgstr "E425: Невозможно перейти в позицию до первой совпадающей метки" +msgstr "E425: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╧я┌п╦ п╡ п©п╬п╥п╦я├п╦я▌ п╢п╬ п©п╣я─п╡п╬п╧ я│п╬п╡п©п╟п╢п╟я▌я┴п╣п╧ п╪п╣я┌п╨п╦" #: tag.c:550 #, c-format msgid "E426: tag not found: %s" -msgstr "E426: Метка не найдена: %s" +msgstr "E426: п°п╣я┌п╨п╟ п╫п╣ п╫п╟п╧п╢п╣п╫п╟: %s" #: tag.c:583 msgid " # pri kind tag" -msgstr " # при тип метка" +msgstr " # п©я─п╦ я┌п╦п© п╪п╣я┌п╨п╟" #: tag.c:586 msgid "file\n" -msgstr "файл\n" +msgstr "я└п╟п╧п╩\n" #. #. * Ask to select a tag from the list. @@ -5635,39 +5644,39 @@ msgstr "файл\n" #. #: tag.c:744 msgid "Enter nr of choice (<CR> to abort): " -msgstr "Выберите нужный номер (<CR> для отказа):" +msgstr "п▓я▀п╠п╣я─п╦я┌п╣ п╫я┐п╤п╫я▀п╧ п╫п╬п╪п╣я─ (<CR> п╢п╩я▐ п╬я┌п╨п╟п╥п╟):" #: tag.c:784 msgid "E427: There is only one matching tag" -msgstr "E427: Есть только одна совпадающая метка" +msgstr "E427: п∙я│я┌я▄ я┌п╬п╩я▄п╨п╬ п╬п╢п╫п╟ я│п╬п╡п©п╟п╢п╟я▌я┴п╟я▐ п╪п╣я┌п╨п╟" #: tag.c:786 msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: Невозможно перейти в позицию за последней совпадающей меткой" +msgstr "E428: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╣я─п╣п╧я┌п╦ п╡ п©п╬п╥п╦я├п╦я▌ п╥п╟ п©п╬я│п╩п╣п╢п╫п╣п╧ я│п╬п╡п©п╟п╢п╟я▌я┴п╣п╧ п╪п╣я┌п╨п╬п╧" #: tag.c:810 #, c-format msgid "File \"%s\" does not exist" -msgstr "Файл \"%s\" не существует" +msgstr "п╓п╟п╧п╩ \"%s\" п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" #. Give an indication of the number of matching tags #: tag.c:823 #, c-format msgid "tag %d of %d%s" -msgstr "метка %d из %d%s" +msgstr "п╪п╣я┌п╨п╟ %d п╦п╥ %d%s" #: tag.c:826 msgid " or more" -msgstr " и более" +msgstr " п╦ п╠п╬п╩п╣п╣" #: tag.c:828 msgid " Using tag with different case!" -msgstr " Используется метка с символами в другом регистре!" +msgstr " п≤я│п©п╬п╩я▄п╥я┐п╣я┌я│я▐ п╪п╣я┌п╨п╟ я│ я│п╦п╪п╡п╬п╩п╟п╪п╦ п╡ п╢я─я┐пЁп╬п╪ я─п╣пЁп╦я│я┌я─п╣!" #: tag.c:872 #, c-format msgid "E429: File \"%s\" does not exist" -msgstr "E429: Файл \"%s\" не существует" +msgstr "E429: п╓п╟п╧п╩ \"%s\" п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" #. Highlight title #: tag.c:941 @@ -5676,74 +5685,74 @@ msgid "" " # TO tag FROM line in file/text" msgstr "" "\n" -" # К метке ОТ стр. в файле/тексте" +" # п п╪п╣я┌п╨п╣ п·п╒ я│я┌я─. п╡ я└п╟п╧п╩п╣/я┌п╣п╨я│я┌п╣" #: tag.c:1363 #, c-format msgid "Searching tags file %s" -msgstr "Поиск в файле меток %s" +msgstr "п÷п╬п╦я│п╨ п╡ я└п╟п╧п╩п╣ п╪п╣я┌п╬п╨ %s" #: tag.c:1550 #, c-format msgid "E430: Tag file path truncated for %s\n" -msgstr "E430: Путь к файлу меток %s обрезан\n" +msgstr "E430: п÷я┐я┌я▄ п╨ я└п╟п╧п╩я┐ п╪п╣я┌п╬п╨ %s п╬п╠я─п╣п╥п╟п╫\n" #: tag.c:2203 #, c-format msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Ошибка формата в файле меток \"%s\"" +msgstr "E431: п·я┬п╦п╠п╨п╟ я└п╬я─п╪п╟я┌п╟ п╡ я└п╟п╧п╩п╣ п╪п╣я┌п╬п╨ \"%s\"" #: tag.c:2207 #, c-format msgid "Before byte %ld" -msgstr "Перед байтом %ld" +msgstr "п÷п╣я─п╣п╢ п╠п╟п╧я┌п╬п╪ %ld" #: tag.c:2240 #, c-format msgid "E432: Tags file not sorted: %s" -msgstr "E432: Файл меток не отсортирован: %s" +msgstr "E432: п╓п╟п╧п╩ п╪п╣я┌п╬п╨ п╫п╣ п╬я┌я│п╬я─я┌п╦я─п╬п╡п╟п╫: %s" #. never opened any tags file #: tag.c:2280 msgid "E433: No tags file" -msgstr "E433: Файл меток не обнаружен" +msgstr "E433: п╓п╟п╧п╩ п╪п╣я┌п╬п╨ п╫п╣ п╬п╠п╫п╟я─я┐п╤п╣п╫" #: tag.c:3016 msgid "E434: Can't find tag pattern" -msgstr "E434: Не найден шаблон метки" +msgstr "E434: п²п╣ п╫п╟п╧п╢п╣п╫ я┬п╟п╠п╩п╬п╫ п╪п╣я┌п╨п╦" #: tag.c:3027 msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Метка не найдена, пытаемся угадать!" +msgstr "E435: п°п╣я┌п╨п╟ п╫п╣ п╫п╟п╧п╢п╣п╫п╟, п©я▀я┌п╟п╣п╪я│я▐ я┐пЁп╟п╢п╟я┌я▄!" #: term.c:1759 msgid "' not known. Available builtin terminals are:" -msgstr "' не известен. Доступны встроенные терминалы:" +msgstr "' п╫п╣ п╦п╥п╡п╣я│я┌п╣п╫. п■п╬я│я┌я┐п©п╫я▀ п╡я│я┌я─п╬п╣п╫п╫я▀п╣ я┌п╣я─п╪п╦п╫п╟п╩я▀:" #: term.c:1783 msgid "defaulting to '" -msgstr "по умолчанию '" +msgstr "п©п╬ я┐п╪п╬п╩я┤п╟п╫п╦я▌ '" #: term.c:2141 msgid "E557: Cannot open termcap file" -msgstr "E557: Невозможно открыть файл termcap" +msgstr "E557: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ termcap" #: term.c:2145 msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: В terminfo нет записи об этом терминале" +msgstr "E558: п▓ terminfo п╫п╣я┌ п╥п╟п©п╦я│п╦ п╬п╠ я█я┌п╬п╪ я┌п╣я─п╪п╦п╫п╟п╩п╣" #: term.c:2147 msgid "E559: Terminal entry not found in termcap" -msgstr "E559: В termcap нет записи об этом терминале" +msgstr "E559: п▓ termcap п╫п╣я┌ п╥п╟п©п╦я│п╦ п╬п╠ я█я┌п╬п╪ я┌п╣я─п╪п╦п╫п╟п╩п╣" #: term.c:2306 #, c-format msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: В termcap нет записи \"%s\"" +msgstr "E436: п▓ termcap п╫п╣я┌ п╥п╟п©п╦я│п╦ \"%s\"" #: term.c:2780 msgid "E437: terminal capability \"cm\" required" -msgstr "E437: требуется способность терминала \"cm\"" +msgstr "E437: я┌я─п╣п╠я┐п╣я┌я│я▐ я│п©п╬я│п╬п╠п╫п╬я│я┌я▄ я┌п╣я─п╪п╦п╫п╟п╩п╟ \"cm\"" #. Highlight title #: term.c:4990 @@ -5752,907 +5761,905 @@ msgid "" "--- Terminal keys ---" msgstr "" "\n" -"--- Кнопки терминала ---" +"--- п п╫п╬п©п╨п╦ я┌п╣я─п╪п╦п╫п╟п╩п╟ ---" #: ui.c:258 msgid "new shell started\n" -msgstr "запуск новой оболочки\n" +msgstr "п╥п╟п©я┐я│п╨ п╫п╬п╡п╬п╧ п╬п╠п╬п╩п╬я┤п╨п╦\n" #: ui.c:1841 msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: Ошибка чтения ввода, выход...\n" +msgstr "Vim: п·я┬п╦п╠п╨п╟ я┤я┌п╣п╫п╦я▐ п╡п╡п╬п╢п╟, п╡я▀я┘п╬п╢...\n" #. must display the prompt #: undo.c:405 msgid "No undo possible; continue anyway" -msgstr "Отмена невозможна; продолжать выполнение" +msgstr "п·я┌п╪п╣п╫п╟ п╫п╣п╡п╬п╥п╪п╬п╤п╫п╟; п©я─п╬п╢п╬п╩п╤п╟я┌я▄ п╡я▀п©п╬п╩п╫п╣п╫п╦п╣" #: undo.c:561 msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: неправильные номера строк" +msgstr "E438: u_undo: п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╣ п╫п╬п╪п╣я─п╟ я│я┌я─п╬п╨" #: undo.c:757 msgid "1 change" -msgstr "Единственное изменение" +msgstr "п∙п╢п╦п╫я│я┌п╡п╣п╫п╫п╬п╣ п╦п╥п╪п╣п╫п╣п╫п╦п╣" #: undo.c:759 #, c-format msgid "%ld changes" -msgstr "Изменений: %ld" +msgstr "п≤п╥п╪п╣п╫п╣п╫п╦п╧: %ld" #: undo.c:812 msgid "E439: undo list corrupt" -msgstr "E439: Повреждён список отмены" +msgstr "E439: п÷п╬п╡я─п╣п╤п╢я▒п╫ я│п©п╦я│п╬п╨ п╬я┌п╪п╣п╫я▀" #: undo.c:844 msgid "E440: undo line missing" -msgstr "E440: потеряна строка отмены" +msgstr "E440: п©п╬я┌п╣я─я▐п╫п╟ я│я┌я─п╬п╨п╟ п╬я┌п╪п╣п╫я▀" #. Only MS VC 4.1 and earlier can do Win32s -#: version.c:721 +#: version.c:707 msgid "" "\n" "MS-Windows 16/32 bit GUI version" msgstr "" "\n" -"Версия с графическим интерфейсом для MS-Windows 16/32 бит" +"п▓п╣я─я│п╦я▐ я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ п╢п╩я▐ MS-Windows 16/32 п╠п╦я┌" -#: version.c:723 +#: version.c:709 msgid "" "\n" "MS-Windows 32 bit GUI version" msgstr "" "\n" -"Версия с графическим интерфейсом для MS-Windows 32 бит" +"п▓п╣я─я│п╦я▐ я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ п╢п╩я▐ MS-Windows 32 п╠п╦я┌" -#: version.c:726 +#: version.c:712 msgid " in Win32s mode" -msgstr " в режиме Win32s" +msgstr " п╡ я─п╣п╤п╦п╪п╣ Win32s" -#: version.c:728 +#: version.c:714 msgid " with OLE support" -msgstr " с поддержкой OLE" +msgstr " я│ п©п╬п╢п╢п╣я─п╤п╨п╬п╧ OLE" -#: version.c:731 +#: version.c:717 msgid "" "\n" "MS-Windows 32 bit console version" msgstr "" "\n" -"Консольная версия для MS-Windows 32 бит" +"п п╬п╫я│п╬п╩я▄п╫п╟я▐ п╡п╣я─я│п╦я▐ п╢п╩я▐ MS-Windows 32 п╠п╦я┌" -#: version.c:735 +#: version.c:721 msgid "" "\n" "MS-Windows 16 bit version" msgstr "" "\n" -"Версия для MS-Windows 16 бит" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MS-Windows 16 п╠п╦я┌" -#: version.c:739 +#: version.c:725 msgid "" "\n" "32 bit MS-DOS version" msgstr "" "\n" -"Версия для MS-DOS 32 бит" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MS-DOS 32 п╠п╦я┌" -#: version.c:741 +#: version.c:727 msgid "" "\n" "16 bit MS-DOS version" msgstr "" "\n" -"Версия для MS-DOS 16 бит" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MS-DOS 16 п╠п╦я┌" -#: version.c:747 +#: version.c:733 msgid "" "\n" "MacOS X (unix) version" msgstr "" "\n" -"Версия для MacOS X (unix)" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MacOS X (unix)" -#: version.c:749 +#: version.c:735 msgid "" "\n" "MacOS X version" msgstr "" "\n" -"Версия для MacOS X" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MacOS X" -#: version.c:752 +#: version.c:738 msgid "" "\n" "MacOS version" msgstr "" "\n" -"Версия для MacOS" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ MacOS" -#: version.c:757 +#: version.c:743 msgid "" "\n" "RISC OS version" msgstr "" "\n" -"Версия для RISC OS" +"п▓п╣я─я│п╦я▐ п╢п╩я▐ RISC OS" -#: version.c:767 +#: version.c:753 msgid "" "\n" "Included patches: " msgstr "" "\n" -"Заплатки: " +"п≈п╟п©п╩п╟я┌п╨п╦: " -#: version.c:793 version.c:1161 +#: version.c:779 version.c:1147 msgid "Modified by " -msgstr "С изменениями, внесёнными " +msgstr "п║ п╦п╥п╪п╣п╫п╣п╫п╦я▐п╪п╦, п╡п╫п╣я│я▒п╫п╫я▀п╪п╦ " -#: version.c:800 +#: version.c:786 msgid "" "\n" "Compiled " msgstr "" "\n" -"Скомпилирован " +"п║п╨п╬п╪п©п╦п╩п╦я─п╬п╡п╟п╫ " -#: version.c:803 +#: version.c:789 msgid "by " msgstr " " -#: version.c:815 +#: version.c:801 msgid "" "\n" "Huge version " msgstr "" "\n" -"Огромная версия " +"п·пЁя─п╬п╪п╫п╟я▐ п╡п╣я─я│п╦я▐ " -#: version.c:818 +#: version.c:804 msgid "" "\n" "Big version " msgstr "" "\n" -"Большая версия " +"п▒п╬п╩я▄я┬п╟я▐ п╡п╣я─я│п╦я▐ " -#: version.c:821 +#: version.c:807 msgid "" "\n" "Normal version " msgstr "" "\n" -"Обычная версия " +"п·п╠я▀я┤п╫п╟я▐ п╡п╣я─я│п╦я▐ " -#: version.c:824 +#: version.c:810 msgid "" "\n" "Small version " msgstr "" "\n" -"Малая версия " +"п°п╟п╩п╟я▐ п╡п╣я─я│п╦я▐ " -#: version.c:826 +#: version.c:812 msgid "" "\n" "Tiny version " msgstr "" "\n" -"Версия \"Кроха\" " +"п▓п╣я─я│п╦я▐ \"п я─п╬я┘п╟\" " -#: version.c:832 +#: version.c:818 msgid "without GUI." -msgstr "без графического интерфейса." +msgstr "п╠п╣п╥ пЁя─п╟я└п╦я┤п╣я│п╨п╬пЁп╬ п╦п╫я┌п╣я─я└п╣п╧я│п╟." -#: version.c:837 +#: version.c:823 msgid "with GTK2-GNOME GUI." -msgstr "с графическим интерфейсом GTK2-GNOME." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ GTK2-GNOME." -#: version.c:839 +#: version.c:825 msgid "with GTK-GNOME GUI." -msgstr "с графическим интерфейсом GTK-GNOME." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ GTK-GNOME." -#: version.c:843 +#: version.c:829 msgid "with GTK2 GUI." -msgstr "с графическим интерфейсом GTK2." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ GTK2." -#: version.c:845 +#: version.c:831 msgid "with GTK GUI." -msgstr "с графическим интерфейсом GTK." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ GTK." -#: version.c:850 +#: version.c:836 msgid "with X11-Motif GUI." -msgstr "с графическим интерфейсом X11-Motif." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ X11-Motif." -#: version.c:854 +#: version.c:840 msgid "with X11-neXtaw GUI." -msgstr "с графическим интерфейсом X11-neXtaw." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ X11-neXtaw." -#: version.c:856 +#: version.c:842 msgid "with X11-Athena GUI." -msgstr "с графическим интерфейсом X11-Athena." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ X11-Athena." -#: version.c:860 +#: version.c:846 msgid "with BeOS GUI." -msgstr "с графическим интерфейсом BeOS." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ BeOS." -#: version.c:863 +#: version.c:849 msgid "with Photon GUI." -msgstr "с графическим интерфейсом Photon." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ Photon." -#: version.c:866 +#: version.c:852 msgid "with GUI." -msgstr "с графическим интерфейсом." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪." -#: version.c:869 +#: version.c:855 msgid "with Carbon GUI." -msgstr "с графическим интерфейсом Carbon." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ Carbon." -#: version.c:872 +#: version.c:858 msgid "with Cocoa GUI." -msgstr "с графическим интерфейсом Cocoa." +msgstr "я│ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪ Cocoa." -#: version.c:875 +#: version.c:861 msgid "with (classic) GUI." -msgstr "с классическим графическим интерфейсом." +msgstr "я│ п╨п╩п╟я│я│п╦я┤п╣я│п╨п╦п╪ пЁя─п╟я└п╦я┤п╣я│п╨п╦п╪ п╦п╫я┌п╣я─я└п╣п╧я│п╬п╪." -#: version.c:886 +#: version.c:872 msgid " Features included (+) or not (-):\n" -msgstr " Включённые (+) и отключённые (-) особенности:\n" +msgstr " п▓п╨п╩я▌я┤я▒п╫п╫я▀п╣ (+) п╦ п╬я┌п╨п╩я▌я┤я▒п╫п╫я▀п╣ (-) п╬я│п╬п╠п╣п╫п╫п╬я│я┌п╦:\n" -#: version.c:898 +#: version.c:884 msgid " system vimrc file: \"" -msgstr " общесистемный файл vimrc: \"" +msgstr " п╬п╠я┴п╣я│п╦я│я┌п╣п╪п╫я▀п╧ я└п╟п╧п╩ vimrc: \"" -#: version.c:903 +#: version.c:889 msgid " user vimrc file: \"" -msgstr " пользовательский файл vimrc: \"" +msgstr " п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ vimrc: \"" -#: version.c:908 +#: version.c:894 msgid " 2nd user vimrc file: \"" -msgstr " второй пользовательский файл vimrc: \"" +msgstr " п╡я┌п╬я─п╬п╧ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ vimrc: \"" -#: version.c:913 +#: version.c:899 msgid " 3rd user vimrc file: \"" -msgstr " третий пользовательский файл vimrc: \"" +msgstr " я┌я─п╣я┌п╦п╧ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ vimrc: \"" -#: version.c:918 +#: version.c:904 msgid " user exrc file: \"" -msgstr " пользовательский файл exrc: \"" +msgstr " п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ exrc: \"" -#: version.c:923 +#: version.c:909 msgid " 2nd user exrc file: \"" -msgstr " второй пользовательский файл exrc: \"" +msgstr " п╡я┌п╬я─п╬п╧ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ exrc: \"" -#: version.c:929 +#: version.c:915 msgid " system gvimrc file: \"" -msgstr " общесистемный файл gvimrc: \"" +msgstr " п╬п╠я┴п╣я│п╦я│я┌п╣п╪п╫я▀п╧ я└п╟п╧п╩ gvimrc: \"" -#: version.c:933 +#: version.c:919 msgid " user gvimrc file: \"" -msgstr " пользовательский файл gvimrc: \"" +msgstr " п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ gvimrc: \"" -#: version.c:937 +#: version.c:923 msgid "2nd user gvimrc file: \"" -msgstr " второй пользовательский файл gvimrc: \"" +msgstr " п╡я┌п╬я─п╬п╧ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ gvimrc: \"" -#: version.c:942 +#: version.c:928 msgid "3rd user gvimrc file: \"" -msgstr " третий пользовательский файл gvimrc: \"" +msgstr " я┌я─п╣я┌п╦п╧ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩я▄я│п╨п╦п╧ я└п╟п╧п╩ gvimrc: \"" -#: version.c:949 +#: version.c:935 msgid " system menu file: \"" -msgstr " общесистемный файл меню: \"" +msgstr " п╬п╠я┴п╣я│п╦я│я┌п╣п╪п╫я▀п╧ я└п╟п╧п╩ п╪п╣п╫я▌: \"" -#: version.c:957 +#: version.c:943 msgid " fall-back for $VIM: \"" -msgstr " значение $VIM по умолчанию: \"" +msgstr " п╥п╫п╟я┤п╣п╫п╦п╣ $VIM п©п╬ я┐п╪п╬п╩я┤п╟п╫п╦я▌: \"" -#: version.c:963 +#: version.c:949 msgid " f-b for $VIMRUNTIME: \"" -msgstr " значение $VIMRUNTIME по умолчанию: \"" +msgstr " п╥п╫п╟я┤п╣п╫п╦п╣ $VIMRUNTIME п©п╬ я┐п╪п╬п╩я┤п╟п╫п╦я▌: \"" -#: version.c:967 +#: version.c:953 msgid "Compilation: " -msgstr "Параметры компиляции: " +msgstr "п÷п╟я─п╟п╪п╣я┌я─я▀ п╨п╬п╪п©п╦п╩я▐я├п╦п╦: " -#: version.c:973 +#: version.c:959 msgid "Compiler: " -msgstr "Компилятор: " +msgstr "п п╬п╪п©п╦п╩я▐я┌п╬я─: " -#: version.c:978 +#: version.c:964 msgid "Linking: " -msgstr "Сборка: " +msgstr "п║п╠п╬я─п╨п╟: " -#: version.c:983 +#: version.c:969 msgid " DEBUG BUILD" -msgstr " ОТЛАДОЧНАЯ СБОРКА" +msgstr " п·п╒п⌡п░п■п·п╖п²п░п╞ п║п▒п·п═п п░" -#: version.c:1022 +#: version.c:1008 msgid "VIM - Vi IMproved" -msgstr "VIM ::: Vi IMproved (Улучшенный Vi) ::: Русская версия" +msgstr "VIM ::: Vi IMproved (пёп╩я┐я┤я┬п╣п╫п╫я▀п╧ Vi) ::: п═я┐я│я│п╨п╟я▐ п╡п╣я─я│п╦я▐" -#: version.c:1024 +#: version.c:1010 msgid "version " -msgstr "версия " +msgstr "п╡п╣я─я│п╦я▐ " -#: version.c:1025 +#: version.c:1011 msgid "by Bram Moolenaar et al." -msgstr "Брам Мооленаар и другие" +msgstr "п▒я─п╟п╪ п°п╬п╬п╩п╣п╫п╟п╟я─ п╦ п╢я─я┐пЁп╦п╣" -#: version.c:1029 +#: version.c:1015 msgid "Vim is open source and freely distributable" -msgstr "Vim это свободно распространяемая программа с открытым кодом" +msgstr "Vim я█я┌п╬ я│п╡п╬п╠п╬п╢п╫п╬ я─п╟я│п©я─п╬я│я┌я─п╟п╫я▐п╣п╪п╟я▐ п©я─п╬пЁя─п╟п╪п╪п╟ я│ п╬я┌п╨я─я▀я┌я▀п╪ п╨п╬п╢п╬п╪" -#: version.c:1031 +#: version.c:1017 msgid "Help poor children in Uganda!" -msgstr "Бедным детям в Уганде нужна ваша помощь!" +msgstr "п▒п╣п╢п╫я▀п╪ п╢п╣я┌я▐п╪ п╡ пёпЁп╟п╫п╢п╣ п╫я┐п╤п╫п╟ п╡п╟я┬п╟ п©п╬п╪п╬я┴я▄!" -#: version.c:1032 +#: version.c:1018 msgid "type :help iccf<Enter> for information " -msgstr "наберите :help iccf<Enter> для дополнительной информации" +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help iccf<Enter> п╢п╩я▐ п╢п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫п╬п╧ п╦п╫я└п╬я─п╪п╟я├п╦п╦" -#: version.c:1034 +#: version.c:1020 msgid "type :q<Enter> to exit " -msgstr "наберите :q<Enter> чтобы выйти из программы " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :q<Enter> я┤я┌п╬п╠я▀ п╡я▀п╧я┌п╦ п╦п╥ п©я─п╬пЁя─п╟п╪п╪я▀ " -#: version.c:1035 +#: version.c:1021 msgid "type :help<Enter> or <F1> for on-line help" -msgstr "наберите :help<Enter> или <F1> для получения справки " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help<Enter> п╦п╩п╦ <F1> п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ я│п©я─п╟п╡п╨п╦ " -#: version.c:1036 +#: version.c:1022 msgid "type :help version6<Enter> for version info" -msgstr "наберите :help version6<Enter> чтобы узнать об этой версии " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help version6<Enter> я┤я┌п╬п╠я▀ я┐п╥п╫п╟я┌я▄ п╬п╠ я█я┌п╬п╧ п╡п╣я─я│п╦п╦ " -#: version.c:1039 +#: version.c:1025 msgid "Running in Vi compatible mode" -msgstr "Работа в Vi-совместимом режиме" +msgstr "п═п╟п╠п╬я┌п╟ п╡ Vi-я│п╬п╡п╪п╣я│я┌п╦п╪п╬п╪ я─п╣п╤п╦п╪п╣" -#: version.c:1040 +#: version.c:1026 msgid "type :set nocp<Enter> for Vim defaults" -msgstr "наберите :set nocp<Enter> для перехода в режим Vim " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :set nocp<Enter> п╢п╩я▐ п©п╣я─п╣я┘п╬п╢п╟ п╡ я─п╣п╤п╦п╪ Vim " -#: version.c:1041 +#: version.c:1027 msgid "type :help cp-default<Enter> for info on this" -msgstr "наберите :help cp-default<Enter> для дополнительной информации" +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help cp-default<Enter> п╢п╩я▐ п╢п╬п©п╬п╩п╫п╦я┌п╣п╩я▄п╫п╬п╧ п╦п╫я└п╬я─п╪п╟я├п╦п╦" -#: version.c:1056 +#: version.c:1042 msgid "menu Help->Orphans for information " -msgstr "меню Справка->Сироты для получения информации " +msgstr "п╪п╣п╫я▌ п║п©я─п╟п╡п╨п╟->п║п╦я─п╬я┌я▀ п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ " -#: version.c:1058 +#: version.c:1044 msgid "Running modeless, typed text is inserted" -msgstr "Безрежимная работы, вставка введённого текста" +msgstr "п▒п╣п╥я─п╣п╤п╦п╪п╫п╟я▐ я─п╟п╠п╬я┌я▀, п╡я│я┌п╟п╡п╨п╟ п╡п╡п╣п╢я▒п╫п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟" -#: version.c:1059 +#: version.c:1045 msgid "menu Edit->Global Settings->Toggle Insert Mode " -msgstr "меню Правка->Общие Настройки->Режим Вставки " +msgstr "п╪п╣п╫я▌ п÷я─п╟п╡п╨п╟->п·п╠я┴п╦п╣ п²п╟я│я┌я─п╬п╧п╨п╦->п═п╣п╤п╦п╪ п▓я│я┌п╟п╡п╨п╦ " -#: version.c:1060 +#: version.c:1046 msgid " for two modes " -msgstr " для двух режимов " +msgstr " п╢п╩я▐ п╢п╡я┐я┘ я─п╣п╤п╦п╪п╬п╡ " -#: version.c:1064 +#: version.c:1050 msgid "menu Edit->Global Settings->Toggle Vi Compatible" -msgstr "меню Правка->Общие Настройки->Совместимость с Vi " +msgstr "п╪п╣п╫я▌ п÷я─п╟п╡п╨п╟->п·п╠я┴п╦п╣ п²п╟я│я┌я─п╬п╧п╨п╦->п║п╬п╡п╪п╣я│я┌п╦п╪п╬я│я┌я▄ я│ Vi " -#: version.c:1065 +#: version.c:1051 msgid " for Vim defaults " -msgstr " для перехода в режим Vim " +msgstr " п╢п╩я▐ п©п╣я─п╣я┘п╬п╢п╟ п╡ я─п╣п╤п╦п╪ Vim " -#: version.c:1112 +#: version.c:1098 msgid "Sponsor Vim development!" -msgstr "Помогите в разработке Vim!" +msgstr "п÷п╬п╪п╬пЁп╦я┌п╣ п╡ я─п╟п╥я─п╟п╠п╬я┌п╨п╣ Vim!" -#: version.c:1113 +#: version.c:1099 msgid "Become a registered Vim user!" -msgstr "Станьте зарегистрированным пользователем Vim!" +msgstr "п║я┌п╟п╫я▄я┌п╣ п╥п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟п╫п╫я▀п╪ п©п╬п╩я▄п╥п╬п╡п╟я┌п╣п╩п╣п╪ Vim!" -#: version.c:1116 +#: version.c:1102 msgid "type :help sponsor<Enter> for information " -msgstr "наберите :help sponsor<Enter> для получения информации " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help sponsor<Enter> п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ " -#: version.c:1117 +#: version.c:1103 msgid "type :help register<Enter> for information " -msgstr "наберите :help register<Enter> для получения информации " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help register<Enter> п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ " -#: version.c:1119 +#: version.c:1105 msgid "menu Help->Sponsor/Register for information " -msgstr "меню Справка->Помощь/Регистрация для получения информации " +msgstr "п╪п╣п╫я▌ п║п©я─п╟п╡п╨п╟->п÷п╬п╪п╬я┴я▄/п═п╣пЁп╦я│я┌я─п╟я├п╦я▐ п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ " -#: version.c:1129 +#: version.c:1115 msgid "WARNING: Windows 95/98/ME detected" -msgstr "ПРЕДУПРЕЖДЕНИЕ: обнаружена Windows 95/98/ME" +msgstr "п÷п═п∙п■пёп÷п═п∙п√п■п∙п²п≤п∙: п╬п╠п╫п╟я─я┐п╤п╣п╫п╟ Windows 95/98/ME" -#: version.c:1132 +#: version.c:1118 msgid "type :help windows95<Enter> for info on this" -msgstr "наберите :help windows95<Enter> для получения информации " +msgstr "п╫п╟п╠п╣я─п╦я┌п╣ :help windows95<Enter> п╢п╩я▐ п©п╬п╩я┐я┤п╣п╫п╦я▐ п╦п╫я└п╬я─п╪п╟я├п╦п╦ " #: window.c:203 msgid "E441: There is no preview window" -msgstr "E441: Окно предпросмотра отсутствует" +msgstr "E441: п·п╨п╫п╬ п©я─п╣п╢п©я─п╬я│п╪п╬я┌я─п╟ п╬я┌я│я┐я┌я│я┌п╡я┐п╣я┌" #: window.c:581 msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: Окно не может быть одновременно слева вверху и справа внизу" +msgstr "E442: п·п╨п╫п╬ п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п╬п╢п╫п╬п╡я─п╣п╪п╣п╫п╫п╬ я│п╩п╣п╡п╟ п╡п╡п╣я─я┘я┐ п╦ я│п©я─п╟п╡п╟ п╡п╫п╦п╥я┐" #: window.c:1340 msgid "E443: Cannot rotate when another window is split" -msgstr "E443: Невозможно поменять местами, пока другое окно разделено" +msgstr "E443: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╬п╪п╣п╫я▐я┌я▄ п╪п╣я│я┌п╟п╪п╦, п©п╬п╨п╟ п╢я─я┐пЁп╬п╣ п╬п╨п╫п╬ я─п╟п╥п╢п╣п╩п╣п╫п╬" #: window.c:1836 msgid "E444: Cannot close last window" -msgstr "E444: Нельзя закрыть последнее окно" +msgstr "E444: п²п╣п╩я▄п╥я▐ п╥п╟п╨я─я▀я┌я▄ п©п╬я│п╩п╣п╢п╫п╣п╣ п╬п╨п╫п╬" #: window.c:2567 msgid "Already only one window" -msgstr "На экране всего одно окно" +msgstr "п²п╟ я█п╨я─п╟п╫п╣ п╡я│п╣пЁп╬ п╬п╢п╫п╬ п╬п╨п╫п╬" #: window.c:2614 msgid "E445: Other window contains changes" -msgstr "E445: В другом окне есть несохранённые изменения" +msgstr "E445: п▓ п╢я─я┐пЁп╬п╪ п╬п╨п╫п╣ п╣я│я┌я▄ п╫п╣я│п╬я┘я─п╟п╫я▒п╫п╫я▀п╣ п╦п╥п╪п╣п╫п╣п╫п╦я▐" #: window.c:4480 msgid "E446: No file name under cursor" -msgstr "E446: Нет имени файла в позиции курсора" +msgstr "E446: п²п╣я┌ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟ п╡ п©п╬п╥п╦я├п╦п╦ п╨я┐я─я│п╬я─п╟" #: window.c:4599 #, c-format msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: Файл \"%s\" не найден по известным путям" +msgstr "E447: п╓п╟п╧п╩ \"%s\" п╫п╣ п╫п╟п╧п╢п╣п╫ п©п╬ п╦п╥п╡п╣я│я┌п╫я▀п╪ п©я┐я┌я▐п╪" -#: if_perl.xs:326 globals.h:1232 +#: if_perl.xs:326 globals.h:1241 #, c-format msgid "E370: Could not load library %s" -msgstr "E370: Невозможно загрузить библиотеку %s" +msgstr "E370: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟пЁя─я┐п╥п╦я┌я▄ п╠п╦п╠п╩п╦п╬я┌п╣п╨я┐ %s" #: if_perl.xs:554 msgid "Sorry, this command is disabled: the Perl library could not be loaded." msgstr "" -"Извините, данная команда отключена: невозможно загрузить библиотеку Perl" +"п≤п╥п╡п╦п╫п╦я┌п╣, п╢п╟п╫п╫п╟я▐ п╨п╬п╪п╟п╫п╢п╟ п╬я┌п╨п╩я▌я┤п╣п╫п╟: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╥п╟пЁя─я┐п╥п╦я┌я▄ п╠п╦п╠п╩п╦п╬я┌п╣п╨я┐ Perl" #: if_perl.xs:607 msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" msgstr "" -"E299: Не допускается вычисление Perl в песочнице без модуля безопасности" +"E299: п²п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡я▀я┤п╦я│п╩п╣п╫п╦п╣ Perl п╡ п©п╣я│п╬я┤п╫п╦я├п╣ п╠п╣п╥ п╪п╬п╢я┐п╩я▐ п╠п╣п╥п╬п©п╟я│п╫п╬я│я┌п╦" #: GvimExt/gvimext.cpp:583 msgid "Edit with &multiple Vims" -msgstr "Редактировать в &разных Vim-ах" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ п╡ &я─п╟п╥п╫я▀я┘ Vim-п╟я┘" #: GvimExt/gvimext.cpp:589 msgid "Edit with single &Vim" -msgstr "Редактировать в &одном Vim" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ п╡ &п╬п╢п╫п╬п╪ Vim" #: GvimExt/gvimext.cpp:598 msgid "&Diff with Vim" -msgstr "&Сравнить с помощью Vim" +msgstr "&п║я─п╟п╡п╫п╦я┌я▄ я│ п©п╬п╪п╬я┴я▄я▌ Vim" #: GvimExt/gvimext.cpp:611 msgid "Edit with &Vim" -msgstr "Ре&дактировать с помощью Vim" +msgstr "п═п╣&п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ я│ п©п╬п╪п╬я┴я▄я▌ Vim" #. Now concatenate #: GvimExt/gvimext.cpp:633 msgid "Edit with existing Vim - &" -msgstr "Редактировать в запущенном Vim - &" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ п╡ п╥п╟п©я┐я┴п╣п╫п╫п╬п╪ Vim - &" #: GvimExt/gvimext.cpp:746 msgid "Edits the selected file(s) with Vim" -msgstr "Редактировать выделенные файлы с помощью Vim" +msgstr "п═п╣п╢п╟п╨я┌п╦я─п╬п╡п╟я┌я▄ п╡я▀п╢п╣п╩п╣п╫п╫я▀п╣ я└п╟п╧п╩я▀ я│ п©п╬п╪п╬я┴я▄я▌ Vim" #: GvimExt/gvimext.cpp:885 GvimExt/gvimext.cpp:966 msgid "Error creating process: Check if gvim is in your path!" -msgstr "Ошибка создания процесса: проверьте доступность gvim в пути!" +msgstr "п·я┬п╦п╠п╨п╟ я│п╬п╥п╢п╟п╫п╦я▐ п©я─п╬я├п╣я│я│п╟: п©я─п╬п╡п╣я─я▄я┌п╣ п╢п╬я│я┌я┐п©п╫п╬я│я┌я▄ gvim п╡ п©я┐я┌п╦!" #: GvimExt/gvimext.cpp:886 GvimExt/gvimext.cpp:900 GvimExt/gvimext.cpp:967 msgid "gvimext.dll error" -msgstr "ошибка gvimext.dll" +msgstr "п╬я┬п╦п╠п╨п╟ gvimext.dll" #: GvimExt/gvimext.cpp:899 msgid "Path length too long!" -msgstr "Слишком длинный путь!" +msgstr "п║п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫я▀п╧ п©я┐я┌я▄!" -#: globals.h:1022 +#: globals.h:1031 msgid "--No lines in buffer--" -msgstr "-- Нет строк в буфере --" +msgstr "-- п²п╣я┌ я│я┌я─п╬п╨ п╡ п╠я┐я└п╣я─п╣ --" #. #. * The error messages that can be shared are included here. #. * Excluded are errors that are only used once and debugging messages. #. -#: globals.h:1185 +#: globals.h:1194 msgid "E470: Command aborted" -msgstr "E470: Выполнение команды прервано" +msgstr "E470: п▓я▀п©п╬п╩п╫п╣п╫п╦п╣ п╨п╬п╪п╟п╫п╢я▀ п©я─п╣я─п╡п╟п╫п╬" -#: globals.h:1186 +#: globals.h:1195 msgid "E471: Argument required" -msgstr "E471: Требуется указать параметр" +msgstr "E471: п╒я─п╣п╠я┐п╣я┌я│я▐ я┐п╨п╟п╥п╟я┌я▄ п©п╟я─п╟п╪п╣я┌я─" -#: globals.h:1187 +#: globals.h:1196 msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: После \\ должен идти символ /, ? или &" +msgstr "E10: п÷п╬я│п╩п╣ \\ п╢п╬п╩п╤п╣п╫ п╦п╢я┌п╦ я│п╦п╪п╡п╬п╩ /, ? п╦п╩п╦ &" -#: globals.h:1189 +#: globals.h:1198 msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" msgstr "" -"E11: Недопустимо в окне командной строки; <CR> выполнение, CTRL-C выход" +"E11: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬ п╡ п╬п╨п╫п╣ п╨п╬п╪п╟п╫п╢п╫п╬п╧ я│я┌я─п╬п╨п╦; <CR> п╡я▀п©п╬п╩п╫п╣п╫п╦п╣, CTRL-C п╡я▀я┘п╬п╢" -#: globals.h:1191 +#: globals.h:1200 msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" msgstr "" -"E12: Команда не допускается в exrc/vimrc в текущем каталоге или поиске меток" +"E12: п п╬п╪п╟п╫п╢п╟ п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡ exrc/vimrc п╡ я┌п╣п╨я┐я┴п╣п╪ п╨п╟я┌п╟п╩п╬пЁп╣ п╦п╩п╦ п©п╬п╦я│п╨п╣ п╪п╣я┌п╬п╨" -#: globals.h:1193 +#: globals.h:1202 msgid "E171: Missing :endif" -msgstr "E171: Отсутствует команда :endif" +msgstr "E171: п·я┌я│я┐я┌я│я┌п╡я┐п╣я┌ п╨п╬п╪п╟п╫п╢п╟ :endif" -#: globals.h:1194 +#: globals.h:1203 msgid "E600: Missing :endtry" -msgstr "E600: Отсутствует команда :endtry" +msgstr "E600: п·я┌я│я┐я┌я│я┌п╡я┐п╣я┌ п╨п╬п╪п╟п╫п╢п╟ :endtry" -#: globals.h:1195 +#: globals.h:1204 msgid "E170: Missing :endwhile" -msgstr "E170: Отсутствует команда :endwhile" +msgstr "E170: п·я┌я│я┐я┌я│я┌п╡я┐п╣я┌ п╨п╬п╪п╟п╫п╢п╟ :endwhile" -#: globals.h:1196 +#: globals.h:1205 msgid "E588: :endwhile without :while" -msgstr "E588: Команда :endwhile без парной команды :while" +msgstr "E588: п п╬п╪п╟п╫п╢п╟ :endwhile п╠п╣п╥ п©п╟я─п╫п╬п╧ п╨п╬п╪п╟п╫п╢я▀ :while" -#: globals.h:1198 +#: globals.h:1207 msgid "E13: File exists (add ! to override)" -msgstr "E13: Файл существует (для перезаписи добавьте !)" +msgstr "E13: п╓п╟п╧п╩ я│я┐я┴п╣я│я┌п╡я┐п╣я┌ (п╢п╩я▐ п©п╣я─п╣п╥п╟п©п╦я│п╦ п╢п╬п╠п╟п╡я▄я┌п╣ !)" -#: globals.h:1199 +#: globals.h:1208 msgid "E472: Command failed" -msgstr "E472: Не удалось выполнить команду" +msgstr "E472: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╡я▀п©п╬п╩п╫п╦я┌я▄ п╨п╬п╪п╟п╫п╢я┐" -#: globals.h:1201 +#: globals.h:1210 #, c-format msgid "E234: Unknown fontset: %s" -msgstr "E234: Неизвестный шрифтовой набор: %s" +msgstr "E234: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я┬я─п╦я└я┌п╬п╡п╬п╧ п╫п╟п╠п╬я─: %s" -#: globals.h:1205 +#: globals.h:1214 #, c-format msgid "E235: Unknown font: %s" -msgstr "E235: Неизвестный шрифт: %s" +msgstr "E235: п²п╣п╦п╥п╡п╣я│я┌п╫я▀п╧ я┬я─п╦я└я┌: %s" -#: globals.h:1208 +#: globals.h:1217 #, c-format msgid "E236: Font \"%s\" is not fixed-width" -msgstr "E236: Шрифт \"%s\" не является моноширинным шрифтом" +msgstr "E236: п╗я─п╦я└я┌ \"%s\" п╫п╣ я▐п╡п╩я▐п╣я┌я│я▐ п╪п╬п╫п╬я┬п╦я─п╦п╫п╫я▀п╪ я┬я─п╦я└я┌п╬п╪" -#: globals.h:1210 +#: globals.h:1219 msgid "E473: Internal error" -msgstr "E473: Внутренняя ошибка" +msgstr "E473: п▓п╫я┐я┌я─п╣п╫п╫я▐я▐ п╬я┬п╦п╠п╨п╟" -#: globals.h:1211 +#: globals.h:1220 msgid "Interrupted" -msgstr "Прервано" +msgstr "п÷я─п╣я─п╡п╟п╫п╬" -#: globals.h:1212 +#: globals.h:1221 msgid "E14: Invalid address" -msgstr "E14: Недопустимый адрес" +msgstr "E14: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╟п╢я─п╣я│" -#: globals.h:1213 +#: globals.h:1222 msgid "E474: Invalid argument" -msgstr "E474: Недопустимый аргумент" +msgstr "E474: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╟я─пЁя┐п╪п╣п╫я┌" -#: globals.h:1214 +#: globals.h:1223 #, c-format msgid "E475: Invalid argument: %s" -msgstr "E475: Недопустимый аргумент: %s" +msgstr "E475: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╟я─пЁя┐п╪п╣п╫я┌: %s" -#: globals.h:1216 +#: globals.h:1225 #, c-format msgid "E15: Invalid expression: %s" -msgstr "E15: Недопустимое выражение: %s" +msgstr "E15: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╡я▀я─п╟п╤п╣п╫п╦п╣: %s" -#: globals.h:1218 +#: globals.h:1227 msgid "E16: Invalid range" -msgstr "E16: Недопустимый диапазон" +msgstr "E16: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ п╢п╦п╟п©п╟п╥п╬п╫" -#: globals.h:1219 +#: globals.h:1228 msgid "E476: Invalid command" -msgstr "E476: Недопустимая команда" +msgstr "E476: п²п╣п╢п╬п©я┐я│я┌п╦п╪п╟я▐ п╨п╬п╪п╟п╫п╢п╟" -#: globals.h:1221 +#: globals.h:1230 #, c-format msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" является каталогом" +msgstr "E17: \"%s\" я▐п╡п╩я▐п╣я┌я│я▐ п╨п╟я┌п╟п╩п╬пЁп╬п╪" -#: globals.h:1224 +#: globals.h:1233 msgid "E18: Unexpected characters before '='" -msgstr "E18: Перед '=' обнаружены неожиданные символы" +msgstr "E18: п÷п╣я─п╣п╢ '=' п╬п╠п╫п╟я─я┐п╤п╣п╫я▀ п╫п╣п╬п╤п╦п╢п╟п╫п╫я▀п╣ я│п╦п╪п╡п╬п╩я▀" -#: globals.h:1227 +#: globals.h:1236 #, c-format msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: Неудачный вызов функции \"%s()\" из библиотеки" +msgstr "E364: п²п╣я┐п╢п╟я┤п╫я▀п╧ п╡я▀п╥п╬п╡ я└я┐п╫п╨я├п╦п╦ \"%s()\" п╦п╥ п╠п╦п╠п╩п╦п╬я┌п╣п╨п╦" -#: globals.h:1233 +#: globals.h:1242 #, c-format msgid "E448: Could not load library function %s" -msgstr "E448: Не удалось загрузить функцию %s из библиотеки" +msgstr "E448: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╥п╟пЁя─я┐п╥п╦я┌я▄ я└я┐п╫п╨я├п╦я▌ %s п╦п╥ п╠п╦п╠п╩п╦п╬я┌п╣п╨п╦" -#: globals.h:1235 +#: globals.h:1244 msgid "E19: Mark has invalid line number" -msgstr "E19: Отметка указывает на неправильный номер строки" +msgstr "E19: п·я┌п╪п╣я┌п╨п╟ я┐п╨п╟п╥я▀п╡п╟п╣я┌ п╫п╟ п╫п╣п©я─п╟п╡п╦п╩я▄п╫я▀п╧ п╫п╬п╪п╣я─ я│я┌я─п╬п╨п╦" -#: globals.h:1236 +#: globals.h:1245 msgid "E20: Mark not set" -msgstr "Отметка не определена" +msgstr "п·я┌п╪п╣я┌п╨п╟ п╫п╣ п╬п©я─п╣п╢п╣п╩п╣п╫п╟" -#: globals.h:1237 +#: globals.h:1246 msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: Изменения невозможны, так как отключена опция 'modifiable'" +msgstr "E21: п≤п╥п╪п╣п╫п╣п╫п╦я▐ п╫п╣п╡п╬п╥п╪п╬п╤п╫я▀, я┌п╟п╨ п╨п╟п╨ п╬я┌п╨п╩я▌я┤п╣п╫п╟ п╬п©я├п╦я▐ 'modifiable'" -#: globals.h:1238 +#: globals.h:1247 msgid "E22: Scripts nested too deep" -msgstr "E22: Слишком глубоко вложенные сценарии" +msgstr "E22: п║п╩п╦я┬п╨п╬п╪ пЁп╩я┐п╠п╬п╨п╬ п╡п╩п╬п╤п╣п╫п╫я▀п╣ я│я├п╣п╫п╟я─п╦п╦" -#: globals.h:1239 +#: globals.h:1248 msgid "E23: No alternate file" -msgstr "E23: Соседний файл не существует" +msgstr "E23: п║п╬я│п╣п╢п╫п╦п╧ я└п╟п╧п╩ п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: globals.h:1240 +#: globals.h:1249 msgid "E24: No such abbreviation" -msgstr "E24: Нет такого сокращения" +msgstr "E24: п²п╣я┌ я┌п╟п╨п╬пЁп╬ я│п╬п╨я─п╟я┴п╣п╫п╦я▐" -#: globals.h:1241 +#: globals.h:1250 msgid "E477: No ! allowed" -msgstr "E477: ! не допускается" +msgstr "E477: ! п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐" -#: globals.h:1243 +#: globals.h:1252 msgid "E25: GUI cannot be used: Not enabled at compile time" msgstr "" -"E25: Возможность использования графического интерфейса выключена при " -"компиляции" +"E25: п▓п╬п╥п╪п╬п╤п╫п╬я│я┌я▄ п╦я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦я▐ пЁя─п╟я└п╦я┤п╣я│п╨п╬пЁп╬ п╦п╫я┌п╣я─я└п╣п╧я│п╟ п╡я▀п╨п╩я▌я┤п╣п╫п╟ п©я─п╦ " +"п╨п╬п╪п©п╦п╩я▐я├п╦п╦" -#: globals.h:1246 +#: globals.h:1255 msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -msgstr "E26: Иврит выключен при компиляции\n" +msgstr "E26: п≤п╡я─п╦я┌ п╡я▀п╨п╩я▌я┤п╣п╫ п©я─п╦ п╨п╬п╪п©п╦п╩я▐я├п╦п╦\n" -#: globals.h:1249 +#: globals.h:1258 msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -msgstr "E27: Фарси выключено при компиляции\n" +msgstr "E27: п╓п╟я─я│п╦ п╡я▀п╨п╩я▌я┤п╣п╫п╬ п©я─п╦ п╨п╬п╪п©п╦п╩я▐я├п╦п╦\n" -#: globals.h:1252 +#: globals.h:1261 msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -msgstr "E800: Арабский выключен при компиляции\n" +msgstr "E800: п░я─п╟п╠я│п╨п╦п╧ п╡я▀п╨п╩я▌я┤п╣п╫ п©я─п╦ п╨п╬п╪п©п╦п╩я▐я├п╦п╦\n" -#: globals.h:1255 +#: globals.h:1264 #, c-format msgid "E28: No such highlight group name: %s" -msgstr "E28: Группа подсветки синтаксиса %s не существует" +msgstr "E28: п⌠я─я┐п©п©п╟ п©п╬п╢я│п╡п╣я┌п╨п╦ я│п╦п╫я┌п╟п╨я│п╦я│п╟ %s п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: globals.h:1257 +#: globals.h:1266 msgid "E29: No inserted text yet" -msgstr "E29: Пока нет вставленного текста" +msgstr "E29: п÷п╬п╨п╟ п╫п╣я┌ п╡я│я┌п╟п╡п╩п╣п╫п╫п╬пЁп╬ я┌п╣п╨я│я┌п╟" -#: globals.h:1258 +#: globals.h:1267 msgid "E30: No previous command line" -msgstr "E30: Предыдущей командной строки нет" +msgstr "E30: п÷я─п╣п╢я▀п╢я┐я┴п╣п╧ п╨п╬п╪п╟п╫п╢п╫п╬п╧ я│я┌я─п╬п╨п╦ п╫п╣я┌" -#: globals.h:1259 +#: globals.h:1268 msgid "E31: No such mapping" -msgstr "E31: Такой привязки не существует" +msgstr "E31: п╒п╟п╨п╬п╧ п©я─п╦п╡я▐п╥п╨п╦ п╫п╣ я│я┐я┴п╣я│я┌п╡я┐п╣я┌" -#: globals.h:1260 +#: globals.h:1269 msgid "E479: No match" -msgstr "E479: Нет соответствия" +msgstr "E479: п²п╣я┌ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐" -#: globals.h:1261 +#: globals.h:1270 #, c-format msgid "E480: No match: %s" -msgstr "E480: Нет соответствия: %s" +msgstr "E480: п²п╣я┌ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐: %s" -#: globals.h:1262 +#: globals.h:1271 msgid "E32: No file name" -msgstr "E32: Нет имени файла" +msgstr "E32: п²п╣я┌ п╦п╪п╣п╫п╦ я└п╟п╧п╩п╟" -#: globals.h:1263 +#: globals.h:1272 msgid "E33: No previous substitute regular expression" -msgstr "E33: Нет предыдущего регулярного выражения для замены" +msgstr "E33: п²п╣я┌ п©я─п╣п╢я▀п╢я┐я┴п╣пЁп╬ я─п╣пЁя┐п╩я▐я─п╫п╬пЁп╬ п╡я▀я─п╟п╤п╣п╫п╦я▐ п╢п╩я▐ п╥п╟п╪п╣п╫я▀" -#: globals.h:1264 +#: globals.h:1273 msgid "E34: No previous command" -msgstr "E34: Нет предыдущей команды" +msgstr "E34: п²п╣я┌ п©я─п╣п╢я▀п╢я┐я┴п╣п╧ п╨п╬п╪п╟п╫п╢я▀" -#: globals.h:1265 +#: globals.h:1274 msgid "E35: No previous regular expression" -msgstr "E35: Нет предыдущего регулярного выражения" +msgstr "E35: п²п╣я┌ п©я─п╣п╢я▀п╢я┐я┴п╣пЁп╬ я─п╣пЁя┐п╩я▐я─п╫п╬пЁп╬ п╡я▀я─п╟п╤п╣п╫п╦я▐" -#: globals.h:1266 +#: globals.h:1275 msgid "E481: No range allowed" -msgstr "E481: Использование диапазона не допускается" +msgstr "E481: п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ п╢п╦п╟п©п╟п╥п╬п╫п╟ п╫п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐" -#: globals.h:1268 +#: globals.h:1277 msgid "E36: Not enough room" -msgstr "E36: Недостаточно места" +msgstr "E36: п²п╣п╢п╬я│я┌п╟я┌п╬я┤п╫п╬ п╪п╣я│я┌п╟" -#: globals.h:1271 +#: globals.h:1280 #, c-format msgid "E247: no registered server named \"%s\"" -msgstr "E247: сервер \"%s\" не зарегистрирован" +msgstr "E247: я│п╣я─п╡п╣я─ \"%s\" п╫п╣ п╥п╟я─п╣пЁп╦я│я┌я─п╦я─п╬п╡п╟п╫" -#: globals.h:1273 +#: globals.h:1282 #, c-format msgid "E482: Can't create file %s" -msgstr "E482: Невозможно создать файл %s" +msgstr "E482: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ я│п╬п╥п╢п╟я┌я▄ я└п╟п╧п╩ %s" -#: globals.h:1274 +#: globals.h:1283 msgid "E483: Can't get temp file name" -msgstr "E483: Невозможно получить имя временного файла" +msgstr "E483: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©п╬п╩я┐я┤п╦я┌я▄ п╦п╪я▐ п╡я─п╣п╪п╣п╫п╫п╬пЁп╬ я└п╟п╧п╩п╟" -#: globals.h:1275 +#: globals.h:1284 #, c-format msgid "E484: Can't open file %s" -msgstr "E484: Невозможно открыть файл %s" +msgstr "E484: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ %s" -#: globals.h:1276 +#: globals.h:1285 #, c-format msgid "E485: Can't read file %s" -msgstr "E485: Невозможно прочитать файл %s" +msgstr "E485: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ я└п╟п╧п╩ %s" -#: globals.h:1277 +#: globals.h:1286 msgid "E37: No write since last change (add ! to override)" -msgstr "E37: Изменения не сохранены (добавьте !, чтобы обойти проверку)" +msgstr "E37: п≤п╥п╪п╣п╫п╣п╫п╦я▐ п╫п╣ я│п╬я┘я─п╟п╫п╣п╫я▀ (п╢п╬п╠п╟п╡я▄я┌п╣ !, я┤я┌п╬п╠я▀ п╬п╠п╬п╧я┌п╦ п©я─п╬п╡п╣я─п╨я┐)" -#: globals.h:1278 +#: globals.h:1287 msgid "E38: Null argument" -msgstr "E38: Нулевой аргумент" +msgstr "E38: п²я┐п╩п╣п╡п╬п╧ п╟я─пЁя┐п╪п╣п╫я┌" -#: globals.h:1280 +#: globals.h:1289 msgid "E39: Number expected" -msgstr "E39: Требуется число" +msgstr "E39: п╒я─п╣п╠я┐п╣я┌я│я▐ я┤п╦я│п╩п╬" -#: globals.h:1283 +#: globals.h:1292 #, c-format msgid "E40: Can't open errorfile %s" -msgstr "E40: Не удалось открыть файл ошибок %s" +msgstr "E40: п²п╣ я┐п╢п╟п╩п╬я│я▄ п╬я┌п╨я─я▀я┌я▄ я└п╟п╧п╩ п╬я┬п╦п╠п╬п╨ %s" -#: globals.h:1286 +#: globals.h:1295 msgid "E233: cannot open display" -msgstr "E233: невозможно открыть дисплей" +msgstr "E233: п╫п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╬я┌п╨я─я▀я┌я▄ п╢п╦я│п©п╩п╣п╧" -#: globals.h:1288 +#: globals.h:1297 msgid "E41: Out of memory!" -msgstr "E41: Не хватает памяти!" +msgstr "E41: п²п╣ я┘п╡п╟я┌п╟п╣я┌ п©п╟п╪я▐я┌п╦!" -#: globals.h:1290 +#: globals.h:1299 msgid "Pattern not found" -msgstr "Шаблон не найден" +msgstr "п╗п╟п╠п╩п╬п╫ п╫п╣ п╫п╟п╧п╢п╣п╫" -#: globals.h:1292 +#: globals.h:1301 #, c-format msgid "E486: Pattern not found: %s" -msgstr "E486: Шаблон не найден: %s" +msgstr "E486: п╗п╟п╠п╩п╬п╫ п╫п╣ п╫п╟п╧п╢п╣п╫: %s" -#: globals.h:1293 +#: globals.h:1302 msgid "E487: Argument must be positive" -msgstr "E487: Параметр должен быть положительным числом" +msgstr "E487: п÷п╟я─п╟п╪п╣я┌я─ п╢п╬п╩п╤п╣п╫ п╠я▀я┌я▄ п©п╬п╩п╬п╤п╦я┌п╣п╩я▄п╫я▀п╪ я┤п╦я│п╩п╬п╪" -#: globals.h:1295 +#: globals.h:1304 msgid "E459: Cannot go back to previous directory" -msgstr "E459: Возврат в предыдущий каталог невозможен" +msgstr "E459: п▓п╬п╥п╡я─п╟я┌ п╡ п©я─п╣п╢я▀п╢я┐я┴п╦п╧ п╨п╟я┌п╟п╩п╬пЁ п╫п╣п╡п╬п╥п╪п╬п╤п╣п╫" -#: globals.h:1299 +#: globals.h:1308 msgid "E42: No Errors" -msgstr "E42: Ошибок нет" +msgstr "E42: п·я┬п╦п╠п╬п╨ п╫п╣я┌" -#: globals.h:1301 +#: globals.h:1310 msgid "E43: Damaged match string" -msgstr "E43: Повреждена строка соответствия" +msgstr "E43: п÷п╬п╡я─п╣п╤п╢п╣п╫п╟ я│я┌я─п╬п╨п╟ я│п╬п╬я┌п╡п╣я┌я│я┌п╡п╦я▐" -#: globals.h:1302 +#: globals.h:1311 msgid "E44: Corrupted regexp program" -msgstr "E44: Программа обработки регулярных выражений повреждена" +msgstr "E44: п÷я─п╬пЁя─п╟п╪п╪п╟ п╬п╠я─п╟п╠п╬я┌п╨п╦ я─п╣пЁя┐п╩я▐я─п╫я▀я┘ п╡я▀я─п╟п╤п╣п╫п╦п╧ п©п╬п╡я─п╣п╤п╢п╣п╫п╟" -#: globals.h:1303 +#: globals.h:1312 msgid "E45: 'readonly' option is set (add ! to override)" msgstr "" -"E45: Включена опция 'readonly' (добавьте !, чтобы не обращать внимания)" +"E45: п▓п╨п╩я▌я┤п╣п╫п╟ п╬п©я├п╦я▐ 'readonly' (п╢п╬п╠п╟п╡я▄я┌п╣ !, я┤я┌п╬п╠я▀ п╫п╣ п╬п╠я─п╟я┴п╟я┌я▄ п╡п╫п╦п╪п╟п╫п╦я▐)" -#: globals.h:1305 +#: globals.h:1314 #, c-format msgid "E46: Cannot set read-only variable \"%s\"" -msgstr "E46: Невозможно изменить доступную только для чтения переменную \"%s\"" +msgstr "E46: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╦п╥п╪п╣п╫п╦я┌я▄ п╢п╬я│я┌я┐п©п╫я┐я▌ я┌п╬п╩я▄п╨п╬ п╢п╩я▐ я┤я┌п╣п╫п╦я▐ п©п╣я─п╣п╪п╣п╫п╫я┐я▌ \"%s\"" -#: globals.h:1308 +#: globals.h:1317 msgid "E47: Error while reading errorfile" -msgstr "E47: Ошибка при чтении файла ошибок" +msgstr "E47: п·я┬п╦п╠п╨п╟ п©я─п╦ я┤я┌п╣п╫п╦п╦ я└п╟п╧п╩п╟ п╬я┬п╦п╠п╬п╨" -#: globals.h:1311 +#: globals.h:1320 msgid "E48: Not allowed in sandbox" -msgstr "E48: Не допускается в песочнице" +msgstr "E48: п²п╣ п╢п╬п©я┐я│п╨п╟п╣я┌я│я▐ п╡ п©п╣я│п╬я┤п╫п╦я├п╣" -#: globals.h:1313 +#: globals.h:1322 msgid "E523: Not allowed here" -msgstr "E523: Здесь не разрешено" +msgstr "E523: п≈п╢п╣я│я▄ п╫п╣ я─п╟п╥я─п╣я┬п╣п╫п╬" -#: globals.h:1316 +#: globals.h:1325 msgid "E359: Screen mode setting not supported" -msgstr "E359: Данный режим экрана не поддерживается" +msgstr "E359: п■п╟п╫п╫я▀п╧ я─п╣п╤п╦п╪ я█п╨я─п╟п╫п╟ п╫п╣ п©п╬п╢п╢п╣я─п╤п╦п╡п╟п╣я┌я│я▐" -#: globals.h:1318 +#: globals.h:1327 msgid "E49: Invalid scroll size" -msgstr "E49: Недопустимый размер прокрутки" +msgstr "E49: п²п╣п╢п╬п©я┐я│я┌п╦п╪я▀п╧ я─п╟п╥п╪п╣я─ п©я─п╬п╨я─я┐я┌п╨п╦" -#: globals.h:1319 +#: globals.h:1328 msgid "E91: 'shell' option is empty" -msgstr "E91: Значением опции 'shell' является пустая строка" +msgstr "E91: п≈п╫п╟я┤п╣п╫п╦п╣п╪ п╬п©я├п╦п╦ 'shell' я▐п╡п╩я▐п╣я┌я│я▐ п©я┐я│я┌п╟я▐ я│я┌я─п╬п╨п╟" -#: globals.h:1321 +#: globals.h:1330 msgid "E255: Couldn't read in sign data!" -msgstr "E255: Невозможно прочитать данные о значках!" +msgstr "E255: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п©я─п╬я┤п╦я┌п╟я┌я▄ п╢п╟п╫п╫я▀п╣ п╬ п╥п╫п╟я┤п╨п╟я┘!" -#: globals.h:1323 +#: globals.h:1332 msgid "E72: Close error on swap file" -msgstr "E72: Ошибка закрытия своп-файла" +msgstr "E72: п·я┬п╦п╠п╨п╟ п╥п╟п╨я─я▀я┌п╦я▐ я│п╡п╬п©-я└п╟п╧п╩п╟" -#: globals.h:1324 +#: globals.h:1333 msgid "E73: tag stack empty" -msgstr "E73: Стек меток пустой" +msgstr "E73: п║я┌п╣п╨ п╪п╣я┌п╬п╨ п©я┐я│я┌п╬п╧" -#: globals.h:1325 +#: globals.h:1334 msgid "E74: Command too complex" -msgstr "E74: Слишком сложная команда" +msgstr "E74: п║п╩п╦я┬п╨п╬п╪ я│п╩п╬п╤п╫п╟я▐ п╨п╬п╪п╟п╫п╢п╟" -#: globals.h:1326 +#: globals.h:1335 msgid "E75: Name too long" -msgstr "E75: Слишком длинное имя" +msgstr "E75: п║п╩п╦я┬п╨п╬п╪ п╢п╩п╦п╫п╫п╬п╣ п╦п╪я▐" -#: globals.h:1327 +#: globals.h:1336 msgid "E76: Too many [" -msgstr "E76: Слишком много символов [" +msgstr "E76: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ я│п╦п╪п╡п╬п╩п╬п╡ [" -#: globals.h:1328 +#: globals.h:1337 msgid "E77: Too many file names" -msgstr "E77: Слишком много имён файлов" +msgstr "E77: п║п╩п╦я┬п╨п╬п╪ п╪п╫п╬пЁп╬ п╦п╪я▒п╫ я└п╟п╧п╩п╬п╡" -#: globals.h:1329 +#: globals.h:1338 msgid "E488: Trailing characters" -msgstr "E488: Лишние символы на хвосте" +msgstr "E488: п⌡п╦я┬п╫п╦п╣ я│п╦п╪п╡п╬п╩я▀ п╫п╟ я┘п╡п╬я│я┌п╣" -#: globals.h:1330 +#: globals.h:1339 msgid "E78: Unknown mark" -msgstr "E78: Неизвестная отметка" +msgstr "E78: п²п╣п╦п╥п╡п╣я│я┌п╫п╟я▐ п╬я┌п╪п╣я┌п╨п╟" -#: globals.h:1331 +#: globals.h:1340 msgid "E79: Cannot expand wildcards" -msgstr "E79: Невозможно выполнить подстановку по маске" +msgstr "E79: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╡я▀п©п╬п╩п╫п╦я┌я▄ п©п╬п╢я│я┌п╟п╫п╬п╡п╨я┐ п©п╬ п╪п╟я│п╨п╣" -#: globals.h:1333 +#: globals.h:1342 msgid "E591: 'winheight' cannot be smaller than 'winminheight'" msgstr "" -"E591: Значение опции 'winheight' не может быть меньше значения 'winminheight'" +"E591: п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'winheight' п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п╪п╣п╫я▄я┬п╣ п╥п╫п╟я┤п╣п╫п╦я▐ 'winminheight'" -#: globals.h:1335 +#: globals.h:1344 msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" msgstr "" -"E592: Значение опции 'winwidth' не может быть меньше значения 'winminwidth'" +"E592: п≈п╫п╟я┤п╣п╫п╦п╣ п╬п©я├п╦п╦ 'winwidth' п╫п╣ п╪п╬п╤п╣я┌ п╠я▀я┌я▄ п╪п╣п╫я▄я┬п╣ п╥п╫п╟я┤п╣п╫п╦я▐ 'winminwidth'" -#: globals.h:1338 +#: globals.h:1347 msgid "E80: Error while writing" -msgstr "E80: Ошибка при записи" +msgstr "E80: п·я┬п╦п╠п╨п╟ п©я─п╦ п╥п╟п©п╦я│п╦" -#: globals.h:1339 +#: globals.h:1348 msgid "Zero count" -msgstr "Нулевое значение счётчика" +msgstr "п²я┐п╩п╣п╡п╬п╣ п╥п╫п╟я┤п╣п╫п╦п╣ я│я┤я▒я┌я┤п╦п╨п╟" -#: globals.h:1341 +#: globals.h:1350 msgid "E81: Using <SID> not in a script context" -msgstr "E81: Использование <SID> вне контекста сценария" +msgstr "E81: п≤я│п©п╬п╩я▄п╥п╬п╡п╟п╫п╦п╣ <SID> п╡п╫п╣ п╨п╬п╫я┌п╣п╨я│я┌п╟ я│я├п╣п╫п╟я─п╦я▐" -#: globals.h:1344 +#: globals.h:1353 msgid "E449: Invalid expression received" -msgstr "E449: Получено недопустимое выражение" +msgstr "E449: п÷п╬п╩я┐я┤п╣п╫п╬ п╫п╣п╢п╬п©я┐я│я┌п╦п╪п╬п╣ п╡я▀я─п╟п╤п╣п╫п╦п╣" -#: globals.h:1347 +#: globals.h:1356 msgid "E463: Region is guarded, cannot modify" -msgstr "E463: Невозможно изменить охраняемую область" +msgstr "E463: п²п╣п╡п╬п╥п╪п╬п╤п╫п╬ п╦п╥п╪п╣п╫п╦я┌я▄ п╬я┘я─п╟п╫я▐п╣п╪я┐я▌ п╬п╠п╩п╟я│я┌я▄" -#~ msgid "\"\n" -#~ msgstr "\"\n" diff --git a/src/search.c b/src/search.c index 924f9e4fa..9c6cc6dc1 100644 --- a/src/search.c +++ b/src/search.c @@ -1138,10 +1138,11 @@ do_search(oap, dirc, pat, count, options) /* * If there is a character offset, subtract it from the current * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2". + * Skip this if pos.col is near MAXCOL (closed fold). * This is not done for a line offset, because then we would not be vi * compatible. */ - if (!spats[0].off.line && spats[0].off.off) + if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2) { if (spats[0].off.off > 0) { @@ -1209,7 +1210,7 @@ do_search(oap, dirc, pat, count, options) retval = 2; /* pattern found, line offset added */ } - else + else if (pos.col < MAXCOL - 2) /* just in case */ { /* to the right, check for end of file */ if (spats[0].off.off > 0) @@ -4404,7 +4405,7 @@ read_viminfo_search_pattern(virp, force) if (lp[3] == 'L') off_line = TRUE; if (lp[4] == 'E') - off_end = TRUE; + off_end = SEARCH_END; lp += 5; off = getdigits(&lp); } diff --git a/src/structs.h b/src/structs.h index ac0a795cb..0edd729da 100644 --- a/src/structs.h +++ b/src/structs.h @@ -56,7 +56,7 @@ typedef struct growarray { int ga_len; /* current number of items used */ int ga_room; /* number of unused items at the end */ - int ga_itemsize; /* sizeof one item */ + int ga_itemsize; /* sizeof(item) */ int ga_growsize; /* number of items to grow each time */ void *ga_data; /* pointer to the first item */ } garray_T; |