1
0
forked from aniani/vim

More runtime file fixes for 'compatible' mode.

This commit is contained in:
Bram Moolenaar
2012-05-01 21:14:34 +02:00
parent 2d0b92f8f9
commit 8071607aa5
52 changed files with 264 additions and 59 deletions

View File

@@ -15,14 +15,11 @@
" Help Page: compiler-decada " Help Page: compiler-decada
"------------------------------------------------------------------------------ "------------------------------------------------------------------------------
let s:keepcpo= &cpo if (exists("current_compiler") && current_compiler == "decada") || version < 700
set cpo&vim
if (exists("current_compiler") &&
\ current_compiler == "decada") ||
\ version < 700
finish finish
endif endif
let s:keepcpo= &cpo
set cpo&vim
let current_compiler = "decada" let current_compiler = "decada"

View File

@@ -1,4 +1,4 @@
*change.txt* For Vim version 7.3. Last change: 2012 Apr 25 *change.txt* For Vim version 7.3. Last change: 2012 Apr 30
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -260,6 +260,12 @@ r{char} Replace the character under the cursor with {char}.
<CR>. CTRL-V <NL> replaces with a <Nul>. <CR>. CTRL-V <NL> replaces with a <Nul>.
{Vi: CTRL-V <CR> still replaces with a line break, {Vi: CTRL-V <CR> still replaces with a line break,
cannot replace something with a <CR>} cannot replace something with a <CR>}
If {char} is CTRL-E or CTRL-Y the character from the
line below or above is used, just like with |i_CTRL-E|
and |i_CTRL-Y|. This also works with a count, thus
`10r<C-E>` copies 10 characters from the line below.
If you give a [count], Vim replaces [count] characters If you give a [count], Vim replaces [count] characters
with [count] {char}s. When {char} is a <CR> or <NL>, with [count] {char}s. When {char} is a <CR> or <NL>,
however, Vim inserts only one <CR>: "5r<CR>" replaces however, Vim inserts only one <CR>: "5r<CR>" replaces

View File

@@ -1,4 +1,4 @@
*eval.txt* For Vim version 7.3. Last change: 2012 Apr 25 *eval.txt* For Vim version 7.3. Last change: 2012 Apr 30
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -5964,6 +5964,8 @@ undofile({name}) *undofile()*
the undo file exists. the undo file exists.
{name} is always expanded to the full path, since that is what {name} is always expanded to the full path, since that is what
is used internally. is used internally.
If {name} is empty undofile() returns an empty string, since a
buffer without a file name will not write an undo file.
Useful in combination with |:wundo| and |:rundo|. Useful in combination with |:wundo| and |:rundo|.
When compiled without the +persistent_undo option this always When compiled without the +persistent_undo option this always
returns an empty string. returns an empty string.

View File

@@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.3. Last change: 2012 Apr 30 *todo.txt* For Vim version 7.3. Last change: 2012 May 01
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -34,6 +34,8 @@ not be repeated below, unless there is extra information.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
patch to fix helphelp.txt from Ken Takata. https://gist.github.com/2559599
Go through more coverity reports. Go through more coverity reports.
Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10) Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
@@ -41,9 +43,6 @@ Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
Stack trace of crash: http://vpaste.net/GBt9S Stack trace of crash: http://vpaste.net/GBt9S
(Alexandre Provencio) (Alexandre Provencio)
Once syntax and other runtime files have been fixed: add "set cp" to
check.vim. Use a function to run both with 'cp' and 'nocp'.
GTK: problem with 'L' in 'guioptions' changing the window width. GTK: problem with 'L' in 'guioptions' changing the window width.
(Aaron Cornelius, 2012 Feb 6) (Aaron Cornelius, 2012 Feb 6)
@@ -54,10 +53,6 @@ Win32: When a directory name contains an exclamation mark, completion doesn't
complete the contents of the directory. No escaping for the "!"? (Jan complete the contents of the directory. No escaping for the "!"? (Jan
Stocker, 2012 Jan 5) Stocker, 2012 Jan 5)
Patch for crash involving curwin->w_s. (Christian Brabandt, 2012 Apr 20)
What is the cause? Leaks memory? Other solution?
More debug info Apr 26. Patch with proper fix Apr 26. Update 28 Apr.
Issue 54: document behavior of -complete, also expands arg. Issue 54: document behavior of -complete, also expands arg.
Cursor on wrong line after ":copen". (John Beckett, 2012 Apr 30) Cursor on wrong line after ":copen". (John Beckett, 2012 Apr 30)
@@ -81,12 +76,6 @@ When running Vim in silent ex mode, an existing swapfile causes Vim to wait
for a user action without a prompt. (Maarten Billemont, 2012 Feb 3) for a user action without a prompt. (Maarten Billemont, 2012 Feb 3)
Do give the prompt? Quit with an error? Do give the prompt? Quit with an error?
Patch for undofile(). (Christian Brabandt, 2012 Apr 27)
Patch for: (Christian Brabandt, 2011 Aug 22)
- Make it possible to enter "r<C-E>" and "r<C-Y>" (get character from line
below/above).
Patch for: (Christian Brabandt, 2011 Aug 24, updated patch) Patch for: (Christian Brabandt, 2011 Aug 24, updated patch)
8 ":sign unplace * file={filename}" should work. Also: ":sign unplace * 8 ":sign unplace * file={filename}" should work. Also: ":sign unplace *
buffer={bufnr}". So one can remove all signs for one file/buffer. buffer={bufnr}". So one can remove all signs for one file/buffer.
@@ -101,8 +90,6 @@ Name it "CompleteFuncDone".
Patch for Make_mvc.mak and Make_ming.mak for Ruby support. (Yasuhiro Patch for Make_mvc.mak and Make_ming.mak for Ruby support. (Yasuhiro
Matsumoto, 2012 Jan 30) Matsumoto, 2012 Jan 30)
Patch to add completion for :history command. (Dominique Pelle, 2012 Feb 26)
Patch for 'backupcopy' default behavior for symlinks on Windows. (David Pope, Patch for 'backupcopy' default behavior for symlinks on Windows. (David Pope,
2012 Mar 21, update Mar 31) 2012 Mar 21, update Mar 31)

View File

@@ -1,7 +1,7 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Vim's quickfix window " Language: Vim's quickfix window
" Maintainer: Lech Lorens <Lech.Lorens@gmail.com> " Maintainer: Lech Lorens <Lech.Lorens@gmail.com>
" Last Changed: 18 Dec 2010 " Last Changed: 30 Apr 2012
if exists("b:did_ftplugin") if exists("b:did_ftplugin")
finish finish
@@ -13,4 +13,4 @@ let b:did_ftplugin = 1
let b:undo_ftplugin = "set stl<" let b:undo_ftplugin = "set stl<"
" Display the command that produced the list in the quickfix window: " Display the command that produced the list in the quickfix window:
setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''} setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P

View File

@@ -28,8 +28,6 @@
if exists("b:did_indent") || version < 700 if exists("b:did_indent") || version < 700
finish finish
endif endif
let s:keepcpo= &cpo
set cpo&vim
let b:did_indent = 45 let b:did_indent = 45
@@ -41,6 +39,8 @@ setlocal indentkeys+=0=~then,0=~end,0=~elsif,0=~when,0=~exception,0=~begin,0=~is
if exists("*GetAdaIndent") if exists("*GetAdaIndent")
finish finish
endif endif
let s:keepcpo= &cpo
set cpo&vim
if exists("g:ada_with_gnat_project_files") if exists("g:ada_with_gnat_project_files")
let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)' let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)'

View File

@@ -2,15 +2,13 @@
" Language: Python " Language: Python
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu> " Original Author: David Bustos <bustos@caltech.edu>
" Last Change: 2012 Apr 30 " Last Change: 2012 May 01
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")
finish finish
endif endif
let b:did_indent = 1 let b:did_indent = 1
let s:keepcpo= &cpo
set cpo&vim
" Some preliminary settings " Some preliminary settings
setlocal nolisp " Make sure lisp indenting doesn't supersede us setlocal nolisp " Make sure lisp indenting doesn't supersede us
@@ -23,6 +21,8 @@ setlocal indentkeys+=<:>,=elif,=except
if exists("*GetPythonIndent") if exists("*GetPythonIndent")
finish finish
endif endif
let s:keepcpo= &cpo
set cpo&vim
" Come here when loading the script the first time. " Come here when loading the script the first time.

View File

@@ -1,6 +1,6 @@
" Menu Translations: Afrikaas " Menu Translations: Afrikaas
" Maintainer: Danie Roux <droux@tuks.co.za> " Maintainer: Danie Roux <droux@tuks.co.za>
" Last Change: 2012 Apr 30 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@@ -153,5 +153,5 @@ menutrans Co&lor\ test Toets\ die\ &kleure
menutrans &Highlight\ test Toets\ die\ verligting menutrans &Highlight\ test Toets\ die\ verligting
menutrans &Convert\ to\ HTML Verwissel\ na\ HTML menutrans &Convert\ to\ HTML Verwissel\ na\ HTML
let s:keepcpo= &cpo let &cpo = s:keepcpo
set cpo&vim unlet s:keepcpo

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252, " The translations below are in latin1, but they work for cp1252,
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -311,3 +313,5 @@ menutrans Config Configuraci
menutrans Set\ '&syntax'\ only Nom<EFBFBD>s\ el\ ressalt\ de\ sintaxi menutrans Set\ '&syntax'\ only Nom<EFBFBD>s\ el\ ressalt\ de\ sintaxi
menutrans Set\ '&filetype'\ too Carrega\ tamb<EFBFBD>\ els\ plugins menutrans Set\ '&filetype'\ too Carrega\ tamb<EFBFBD>\ els\ plugins
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp936 scriptencoding cp936
@@ -261,3 +263,6 @@ menutrans &Highlight\ test
menutrans &Convert\ to\ HTML ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ HTML(&C) menutrans &Convert\ to\ HTML ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ HTML(&C)
menutrans Set\ '&syntax'\ only <09><><EFBFBD>\ 'syntax'(&S) menutrans Set\ '&syntax'\ only <09><><EFBFBD>\ 'syntax'(&S)
menutrans Set\ '&filetype'\ too Ҳ<EFBFBD>\ 'filetype'(&F) menutrans Set\ '&filetype'\ too Ҳ<EFBFBD>\ 'filetype'(&F)
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,6 +1,6 @@
" Menu Translations: Traditional Chinese " Menu Translations: Traditional Chinese
" Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw> " Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw>
" Last Change: 2005/01/28 02:51:38 " Last Change: 2012 May 01
" {{{ Quit when menu translations have already been done. " {{{ Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@@ -8,6 +8,8 @@ if exists("did_menu_trans")
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
" }}} " }}}
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp950 scriptencoding cp950
@@ -282,4 +284,7 @@ if has("toolbar")
endif endif
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo
" vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1 " vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding ISO-8859-2 scriptencoding ISO-8859-2
@@ -262,3 +264,6 @@ if has("toolbar")
endfun endfun
endif endif
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp1250 scriptencoding cp1250
@@ -262,3 +264,6 @@ if has("toolbar")
endfun endfun
endif endif
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -9,8 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" {{{ File menu " {{{ File menu
menutrans &File &Soubor menutrans &File &Soubor
@@ -262,3 +262,6 @@ if has("toolbar")
endfun endfun
endif endif
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -10,6 +10,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252 and " The translations below are in latin1, but they work for cp1252 and
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -302,3 +304,6 @@ let g:menutrans_tags_dialog = "Geben Sie die Namen der 'tag'-Dateien ein.\nTrenn
let g:menutrans_textwidth_dialog = "Geben Sie eine neue Text-Breite ein (oder 0, um die Formatierung abzuschalten)" let g:menutrans_textwidth_dialog = "Geben Sie eine neue Text-Breite ein (oder 0, um die Formatierung abzuschalten)"
let g:menutrans_fileformat_dialog = "W<>hlen Sie ein Datei-Format aus" let g:menutrans_fileformat_dialog = "W<>hlen Sie ein Datei-Format aus"
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Esperanto " Menu Translations: Esperanto
" Maintainer: Dominique PELLE <dominique.pelle@free.fr> " Maintainer: Dominique PELLE <dominique.pelle@free.fr>
" Last Change: 2008 Mar 01 " Last Change: 2012 May 01
" "
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -455,3 +457,6 @@ menutrans &Off M&alŝaltita
menutrans Co&lor\ test Testo\ de\ &koloroj menutrans Co&lor\ test Testo\ de\ &koloroj
menutrans &Highlight\ test Testo\ de\ &emfazo menutrans &Highlight\ test Testo\ de\ &emfazo
menutrans &Convert\ to\ HTML Konverti\ al\ &HTML menutrans &Convert\ to\ HTML Konverti\ al\ &HTML
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -2,7 +2,7 @@
" Previous translator: Alejandro L<>pez-Valencia <dradul@users.sourceforge.net> " Previous translator: Alejandro L<>pez-Valencia <dradul@users.sourceforge.net>
" Last translator: Omar Campagne Polaino <ocampagne@gmail.com> " Last translator: Omar Campagne Polaino <ocampagne@gmail.com>
" Version: 7.2.245 " Version: 7.2.245
" Last Change: 2009 Sep 03 " Last Change: 2012 May 01
" "
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
@@ -10,6 +10,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252, " The translations below are in latin1, but they work for cp1252,
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -316,3 +318,6 @@ menutrans &Convert\ to\ HTML &Convertir\ a\ HTML
" Find Help dialog text " Find Help dialog text
let g:menutrans_help_dialog = "Introduzca un nombre de comando o palabra para obtener ayuda;\n\nAnteponga i_ para comandos de entrada (e.g.: i_CTRL-X)\nAnteponga c_ para comandos de la l<>nea de comandos (e.g.: c_<Del>)\nAnteponga ` para un nombre de opci<63>n (e.g.: `shiftwidth`)" let g:menutrans_help_dialog = "Introduzca un nombre de comando o palabra para obtener ayuda;\n\nAnteponga i_ para comandos de entrada (e.g.: i_CTRL-X)\nAnteponga c_ para comandos de la l<>nea de comandos (e.g.: c_<Del>)\nAnteponga ` para un nombre de opci<63>n (e.g.: `shiftwidth`)"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Finnish " Menu Translations: Finnish
" Maintainer: Flammie Pirinen <flammie@iki.fi> " Maintainer: Flammie Pirinen <flammie@iki.fi>
" Last Change: 2007 Sep 04 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" Translations should be in latin1, if it requires latin9 or even unicode, " Translations should be in latin1, if it requires latin9 or even unicode,
" change this: " change this:
@@ -470,4 +472,7 @@ fun! Do_toolbar_tmenu()
tmenu ToolBar.FindHelp Etsi ohjeesta tmenu ToolBar.FindHelp Etsi ohjeesta
endfun endfun
let &cpo = s:keepcpo
unlet s:keepcpo
" vim: set fileencoding=latin1 " vim: set fileencoding=latin1

View File

@@ -2,13 +2,15 @@
" Maintainer: Adrien Beau <version.francaise@free.fr> " Maintainer: Adrien Beau <version.francaise@free.fr>
" First Version: Francois Thunus <thunus@systran.fr> " First Version: Francois Thunus <thunus@systran.fr>
" Last Modification: David Blanchet <david.blanchet@free.fr> " Last Modification: David Blanchet <david.blanchet@free.fr>
" Last Change: 2006 Apr 30 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252 and " The translations below are in latin1, but they work for cp1252 and
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -466,3 +468,6 @@ menutrans &Off &Off
menutrans Co&lor\ test Tester\ les\ co&uleurs menutrans Co&lor\ test Tester\ les\ co&uleurs
menutrans &Highlight\ test Tester\ les\ g&roupes\ de\ surbrillance menutrans &Highlight\ test Tester\ les\ g&roupes\ de\ surbrillance
menutrans &Convert\ to\ HTML Con&vertir\ en\ HTML menutrans &Convert\ to\ HTML Con&vertir\ en\ HTML
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,7 +1,7 @@
" Menu Translations: Hungarian (Magyar) " Menu Translations: Hungarian (Magyar)
" Original Translation: Zolt<6C>n <20>rp<72>dffy " Original Translation: Zolt<6C>n <20>rp<72>dffy
" Maintained By: Kontra Gergely <kgergely@mcl.hu> " Maintained By: Kontra Gergely <kgergely@mcl.hu>
" Last Change: 2003 May 31 " Last Change: 2012 May 01
" I'm working on defining (unaccented) hotkeys for everything. " I'm working on defining (unaccented) hotkeys for everything.
" I want to remove y and z hotkeys, because on the hungarian keymap they're at " I want to remove y and z hotkeys, because on the hungarian keymap they're at
" a differrent place. " a differrent place.
@@ -27,6 +27,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso-8859-2 scriptencoding iso-8859-2
@@ -256,3 +258,6 @@ let g:menutrans_path_dialog = "
let g:menutrans_tags_dialog = "<22>rd be a tag f<>jl lehets<74>ges el<65>r<EFBFBD>si <20>tjait, vessz<73>vel elv<6C>lasztva" let g:menutrans_tags_dialog = "<22>rd be a tag f<>jl lehets<74>ges el<65>r<EFBFBD>si <20>tjait, vessz<73>vel elv<6C>lasztva"
let g:menutrans_textwidth_dialog = "<22>rd be a sz<73>veg sz<73>less<73>g<EFBFBD>t (0 = form<72>z<EFBFBD>s kikapcsolva)" let g:menutrans_textwidth_dialog = "<22>rd be a sz<73>veg sz<73>less<73>g<EFBFBD>t (0 = form<72>z<EFBFBD>s kikapcsolva)"
let g:menutrans_fileformat_dialog = "V<>laszd ki a f<>jl form<72>tum<75>t" let g:menutrans_fileformat_dialog = "V<>laszd ki a f<>jl form<72>tum<75>t"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,7 +1,7 @@
" Menu Translations: Hungarian (Magyar) " Menu Translations: Hungarian (Magyar)
" Original Translation: Zoltán Árpádffy " Original Translation: Zoltán Árpádffy
" Maintained By: Kontra Gergely <kgergely@mcl.hu> " Maintained By: Kontra Gergely <kgergely@mcl.hu>
" Last Change: 2004 Jun 10 " Last Change: 2012 May 01
" "
" This file was converted from menu_hu_hu.iso_8859-2.vim. See there for " This file was converted from menu_hu_hu.iso_8859-2.vim. See there for
" remarks. " remarks.
@@ -11,6 +11,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -240,3 +242,6 @@ let g:menutrans_path_dialog = "Írd be a keresett fájl lehetséges elérési ú
let g:menutrans_tags_dialog = "Írd be a tag fájl lehetséges elérési útjait, vesszővel elválasztva" let g:menutrans_tags_dialog = "Írd be a tag fájl lehetséges elérési útjait, vesszővel elválasztva"
let g:menutrans_textwidth_dialog = "Írd be a szöveg szélességét (0 = formázás kikapcsolva)" let g:menutrans_textwidth_dialog = "Írd be a szöveg szélességét (0 = formázás kikapcsolva)"
let g:menutrans_fileformat_dialog = "Válaszd ki a fájl formátumát" let g:menutrans_fileformat_dialog = "Válaszd ki a fájl formátumát"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -2,13 +2,15 @@
" Maintainer: Antonio Colombo <azc100@gmail.com> " Maintainer: Antonio Colombo <azc100@gmail.com>
" Vlad Sandrini <vlad.gently@gmail.com> " Vlad Sandrini <vlad.gently@gmail.com>
" Luciano Montanaro <mikelima@cirulla.net> " Luciano Montanaro <mikelima@cirulla.net>
" Last Change: 2010 Ago 13 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso-8859-1 scriptencoding iso-8859-1
@@ -348,4 +350,7 @@ endif
endfun endfun
endif endif
let &cpo = s:keepcpo
unlet s:keepcpo
" vim: set sw=2 : " vim: set sw=2 :

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding euc-jp scriptencoding euc-jp
@@ -334,7 +336,8 @@ if has('iconv')
an 10.396.120.130 &File.<2E><><EFBFBD>󥳡<EFBFBD><F3A5B3A1>ɻ<EFBFBD><EFBFBD><EFBFBD>(&E)\.\.\..<2E><>¸(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR> an 10.396.120.130 &File.<2E><><EFBFBD>󥳡<EFBFBD><F3A5B3A1>ɻ<EFBFBD><EFBFBD><EFBFBD>(&E)\.\.\..<2E><>¸(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR>
endif endif
let &cpo = s:keepcpo
unlet s:keepcpo
" filler to avoid the line above being recognized as a modeline " filler to avoid the line above being recognized as a modeline
" filler " filler
" filler
" filler

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -334,7 +336,8 @@ if has('iconv')
an 10.396.120.130 &File.エンコード指定(&E)\.\.\..保存(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR> an 10.396.120.130 &File.エンコード指定(&E)\.\.\..保存(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR>
endif endif
let &cpo = s:keepcpo
unlet s:keepcpo
" filler to avoid the line above being recognized as a modeline " filler to avoid the line above being recognized as a modeline
" filler " filler
" filler
" filler

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp932 scriptencoding cp932
@@ -334,7 +336,8 @@ if has('iconv')
an 10.396.120.130 &File.<2E>G<EFBFBD><EFBFBD><EFBFBD>R<EFBFBD>[<5B>h<EFBFBD>w<EFBFBD><EFBFBD>(&E)\.\.\..<2E>ۑ<EFBFBD>(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR> an 10.396.120.130 &File.<2E>G<EFBFBD><EFBFBD><EFBFBD>R<EFBFBD>[<5B>h<EFBFBD>w<EFBFBD><EFBFBD>(&E)\.\.\..<2E>ۑ<EFBFBD>(&S)\.\.\..UTF-8(&8)<Tab>fenc=utf-8 :set fenc=utf-8 \| w<CR>
endif endif
let &cpo = s:keepcpo
unlet s:keepcpo
" filler to avoid the line above being recognized as a modeline " filler to avoid the line above being recognized as a modeline
" filler " filler
" filler
" filler

View File

@@ -1,12 +1,14 @@
" Menu Translations: Korean " Menu Translations: Korean
" Maintainer: SungHyun Nam <goweol@gmail.com> " Maintainer: SungHyun Nam <goweol@gmail.com>
" Last Change: 2011 Mar 22 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding euc-kr scriptencoding euc-kr
@@ -259,3 +261,5 @@ menutrans Co&lor\ test
menutrans &Highlight\ test Highlight\ <20><><EFBFBD><EFBFBD>(&H) menutrans &Highlight\ test Highlight\ <20><><EFBFBD><EFBFBD>(&H)
menutrans &Convert\ to\ HTML HTML<EFBFBD><EFBFBD>\ <20><>ȯ(&C) menutrans &Convert\ to\ HTML HTML<EFBFBD><EFBFBD>\ <20><>ȯ(&C)
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Korean " Menu Translations: Korean
" Maintainer: SungHyun Nam <goweol@gmail.com> " Maintainer: SungHyun Nam <goweol@gmail.com>
" Last Change: 2011 Mar 22 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -259,3 +261,5 @@ menutrans Co&lor\ test 색\ 시험(&l)
menutrans &Highlight\ test Highlight\ 시험(&H) menutrans &Highlight\ test Highlight\ 시험(&H)
menutrans &Convert\ to\ HTML HTML로\ 변환(&C) menutrans &Convert\ to\ HTML HTML로\ 변환(&C)
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Nederlands " Menu Translations: Nederlands
" Maintainer: Bram Moolenaar " Maintainer: Bram Moolenaar
" Last Change: 2004 May 05 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252 and " The translations below are in latin1, but they work for cp1252 and
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -238,3 +240,6 @@ let g:menutrans_path_dialog = "Typ het zoekpad voor bestanden.\nGebruik commas t
let g:menutrans_tags_dialog = "Typ namen van tag bestanden.\nGebruik commas tussen de namen." let g:menutrans_tags_dialog = "Typ namen van tag bestanden.\nGebruik commas tussen de namen."
let g:menutrans_textwidth_dialog = "Typ de nieuwe tekst breedte (0 om formatteren uit the schakelen): " let g:menutrans_textwidth_dialog = "Typ de nieuwe tekst breedte (0 om formatteren uit the schakelen): "
let g:menutrans_fileformat_dialog = "Selecteer formaat voor het schrijven van het bestand" let g:menutrans_fileformat_dialog = "Selecteer formaat voor het schrijven van het bestand"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,6 +1,6 @@
" Menu Translations: Norwegian / Norsk (Bokm<6B>l) " Menu Translations: Norwegian / Norsk (Bokm<6B>l)
" Maintainer: <09>yvind A. Holm <sunny@sunbase.org> " Maintainer: <09>yvind A. Holm <sunny@sunbase.org>
" Last Change: 2004-05-16 20:00:52 +0200 " Last Change: 2012 May 01
" menu_no_no.latin1.vim 289 2004-05-16 18:00:52Z sunny " menu_no_no.latin1.vim 289 2004-05-16 18:00:52Z sunny
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in ISO-8859-1, but they work for ISO-8859-15 and " The translations below are in ISO-8859-1, but they work for ISO-8859-15 and
" CP1252 without conversion as well. " CP1252 without conversion as well.
@@ -229,5 +231,8 @@ endif
let g:menutrans_textwidth_dialog = "Velg ny tekstbredde (0 for <20> forhindre formatering): " let g:menutrans_textwidth_dialog = "Velg ny tekstbredde (0 for <20> forhindre formatering): "
let g:menutrans_fileformat_dialog = "Velg filformat som filen skal lagres med" let g:menutrans_fileformat_dialog = "Velg filformat som filen skal lagres med"
let &cpo = s:keepcpo
unlet s:keepcpo
" vim: set ts=8 sw=8 : " vim: set ts=8 sw=8 :
" vim600: set fdm=indent : " vim600: set fdm=indent :

View File

@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso-8859-2 scriptencoding iso-8859-2
@@ -285,3 +287,6 @@ let g:menutrans_tags_dialog = "Podaj nazwy plik
let g:menutrans_textwidth_dialog = "Wprowad<61> now<6F> szeroko<6B><6F> tekstu (0 wy<77><79>cza przewijanie): " let g:menutrans_textwidth_dialog = "Wprowad<61> now<6F> szeroko<6B><6F> tekstu (0 wy<77><79>cza przewijanie): "
let g:menutrans_fileformat_dialog = "Wybierz format w kt<6B>rym ten plik ma by<62> zapisany" let g:menutrans_fileformat_dialog = "Wybierz format w kt<6B>rym ten plik ma by<62> zapisany"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -285,3 +287,6 @@ let g:menutrans_tags_dialog = "Podaj nazwy plików tagów.\nProszę rozdzielać
let g:menutrans_textwidth_dialog = "Wprowadź nową szerokość tekstu (0 wyłącza przewijanie): " let g:menutrans_textwidth_dialog = "Wprowadź nową szerokość tekstu (0 wyłącza przewijanie): "
let g:menutrans_fileformat_dialog = "Wybierz format w którym ten plik ma być zapisany" let g:menutrans_fileformat_dialog = "Wybierz format w którym ten plik ma być zapisany"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp1250 scriptencoding cp1250
@@ -285,3 +287,6 @@ let g:menutrans_tags_dialog = "Podaj nazwy plik
let g:menutrans_textwidth_dialog = "Wprowad<61> now<6F> szeroko<6B><6F> tekstu (0 wy<77><79>cza przewijanie): " let g:menutrans_textwidth_dialog = "Wprowad<61> now<6F> szeroko<6B><6F> tekstu (0 wy<77><79>cza przewijanie): "
let g:menutrans_fileformat_dialog = "Wybierz format w kt<6B>rym ten plik ma by<62> zapisany" let g:menutrans_fileformat_dialog = "Wybierz format w kt<6B>rym ten plik ma by<62> zapisany"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,6 +1,6 @@
" Menu Translations: Portugu<67>s do Brasil " Menu Translations: Portugu<67>s do Brasil
" Maintainer: Jos<6F> de Paula <jose@infoviaweb.com> " Maintainer: Jos<6F> de Paula <jose@infoviaweb.com>
" Last Change: 2006-09-19 02:30:00-03:00 " Last Change: 2012 May 01
" "
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" Translations in latin1 (ISO-8859-1), and should work in " Translations in latin1 (ISO-8859-1), and should work in
" latin9 (ISO-8859-15) " latin9 (ISO-8859-15)
@@ -283,3 +285,6 @@ menutrans &Convert\ to\ HTML &Converter\ para\ HTML
" Find Help dialog text " Find Help dialog text
let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_<Del>)\nAnteponha ` para um nome de op<6F><70>o (ex.: `shiftwidth`)" let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_<Del>)\nAnteponha ` para um nome de op<6F><70>o (ex.: `shiftwidth`)"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -7,6 +7,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" Translations in latin1 (ISO-8859-1), and should work in " Translations in latin1 (ISO-8859-1), and should work in
" latin9 (ISO-8859-15) " latin9 (ISO-8859-15)
@@ -262,3 +264,6 @@ menutrans &Convert\ to\ HTML &Converter\ para\ HTML
" Find Help dialog text " Find Help dialog text
let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_<Del>)\nAnteponha ` para um nome de op<6F><70>o (ex.: `shiftwidth`)" let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_<Del>)\nAnteponha ` para um nome de op<6F><70>o (ex.: `shiftwidth`)"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -16,6 +16,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding koi8-r scriptencoding koi8-r
@@ -294,3 +296,6 @@ let g:menutrans_fileformat_dialog = "
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n<>&<26><><EFBFBD><EFBFBD><EFBFBD>" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n<>&<26><><EFBFBD><EFBFBD><EFBFBD>"
" "
let menutrans_no_file = "[<5B><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>]" let menutrans_no_file = "[<5B><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -16,6 +16,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -294,3 +296,6 @@ let g:menutrans_fileformat_dialog = "Выберите формат файла."
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\nО&тмена" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\nО&тмена"
" "
let menutrans_no_file = "[Нет файла]" let menutrans_no_file = "[Нет файла]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Slovak " Menu Translations: Slovak
" Translated By: Martin Lacko <lacko@host.sk> " Translated By: Martin Lacko <lacko@host.sk>
" Last Change: 2003 Mar 30 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso-8859-2 scriptencoding iso-8859-2
@@ -230,3 +232,6 @@ menutrans on/off\ for\ &This\ file Zapn
menutrans Co&lor\ test Test\ &farieb menutrans Co&lor\ test Test\ &farieb
menutrans &Highlight\ test &Test\ zv<EFBFBD>raz<EFBFBD>ovania menutrans &Highlight\ test &Test\ zv<EFBFBD>raz<EFBFBD>ovania
menutrans &Convert\ to\ HTML &Previes<EFBFBD>\ do\ HTML menutrans &Convert\ to\ HTML &Previes<EFBFBD>\ do\ HTML
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -11,6 +11,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp1250 scriptencoding cp1250
@@ -292,3 +294,6 @@ let g:menutrans_textwidth_dialog = "Vnesite novo
let g:menutrans_fileformat_dialog = "Izberite format datoteke" let g:menutrans_fileformat_dialog = "Izberite format datoteke"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekli<6C>i" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekli<6C>i"
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -11,6 +11,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding latin2 scriptencoding latin2
@@ -292,3 +294,6 @@ let g:menutrans_textwidth_dialog = "Vnesite novo
let g:menutrans_fileformat_dialog = "Izberite format datoteke" let g:menutrans_fileformat_dialog = "Izberite format datoteke"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekli<6C>i" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekli<6C>i"
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -11,6 +11,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -292,3 +294,6 @@ let g:menutrans_textwidth_dialog = "Vnesite novo širino besedila (ali 0 za izkl
let g:menutrans_fileformat_dialog = "Izberite format datoteke" let g:menutrans_fileformat_dialog = "Izberite format datoteke"
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekliči" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Prekliči"
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,12 +1,14 @@
" Menu Translations: Slovak " Menu Translations: Slovak
" Translated By: Martin Lacko <lacko@host.sk> " Translated By: Martin Lacko <lacko@host.sk>
" Last Change: 2006 Jun 17 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp1250 scriptencoding cp1250
@@ -230,3 +232,6 @@ menutrans on/off\ for\ &This\ file Zapn
menutrans Co&lor\ test Test\ &farieb menutrans Co&lor\ test Test\ &farieb
menutrans &Highlight\ test &Test\ zv<EFBFBD>raz<EFBFBD>ovania menutrans &Highlight\ test &Test\ zv<EFBFBD>raz<EFBFBD>ovania
menutrans &Convert\ to\ HTML &Previes<EFBFBD>\ do\ HTML menutrans &Convert\ to\ HTML &Previes<EFBFBD>\ do\ HTML
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -7,6 +7,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" Help menu " Help menu
menutrans &Help Pomo&c menutrans &Help Pomo&c
@@ -256,3 +258,6 @@ let g:menutrans_textwidth_dialog = "Unesite novu sirinu teksta (0 sprecava prelo
let g:menutrans_fileformat_dialog = "Izaberite vrstu datoteke" let g:menutrans_fileformat_dialog = "Izaberite vrstu datoteke"
let menutrans_no_file = "[Nema datoteke]" let menutrans_no_file = "[Nema datoteke]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -7,6 +7,9 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso8859-2 scriptencoding iso8859-2
" Help menu " Help menu
@@ -257,3 +260,6 @@ let g:menutrans_textwidth_dialog = "Unesite novu
let g:menutrans_fileformat_dialog = "Izaberite vrstu datoteke" let g:menutrans_fileformat_dialog = "Izaberite vrstu datoteke"
let menutrans_no_file = "[Nema datoteke]" let menutrans_no_file = "[Nema datoteke]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -7,6 +7,9 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding iso8859-5 scriptencoding iso8859-5
" Help menu " Help menu
@@ -257,3 +260,6 @@ let g:menutrans_textwidth_dialog = "
let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
let menutrans_no_file = "[<5B><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]" let menutrans_no_file = "[<5B><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -7,6 +7,9 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
" Help menu " Help menu
@@ -258,4 +261,7 @@ let g:menutrans_fileformat_dialog = "Изаберите врсту датоте
let menutrans_no_file = "[Нема датотеке]" let menutrans_no_file = "[Нема датотеке]"
let &cpo = s:keepcpo
unlet s:keepcpo
" vim: tw=0 keymap=serbian " vim: tw=0 keymap=serbian

View File

@@ -1,12 +1,14 @@
" Menu Translations: Swedish " Menu Translations: Swedish
" Maintainer: Johan Svedberg <johan@svedberg.com> " Maintainer: Johan Svedberg <johan@svedberg.com>
" Last Change: 2006 Apr 13 " Last Change: 2012 May 01
" Quit when menu translations have already been done. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" The translations below are in latin1, but they work for cp1252 and " The translations below are in latin1, but they work for cp1252 and
" iso-8859-15 without conversion as well. " iso-8859-15 without conversion as well.
@@ -248,3 +250,6 @@ let g:menutrans_path_dialog = "Skriv in s
let g:menutrans_tags_dialog = "Skriv in namn p<> taggfiler.\nSeparera namn med komma." let g:menutrans_tags_dialog = "Skriv in namn p<> taggfiler.\nSeparera namn med komma."
let g:menutrans_textwidth_dialog = "V<>lj ny textbredd (0 f<>r att f<>rhindra formatering): " let g:menutrans_textwidth_dialog = "V<>lj ny textbredd (0 f<>r att f<>rhindra formatering): "
let g:menutrans_fileformat_dialog = "V<>lj filformat som filen ska sparas med" let g:menutrans_fileformat_dialog = "V<>lj filformat som filen ska sparas med"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -12,6 +12,9 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding cp1251 scriptencoding cp1251
" Help menu " Help menu
@@ -244,3 +247,5 @@ let g:menutrans_tags_dialog = "
let g:menutrans_textwidth_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (0 <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)" let g:menutrans_textwidth_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (0 <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)"
let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>" let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -12,6 +12,9 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding koi8-u scriptencoding koi8-u
" Help menu " Help menu
@@ -244,3 +247,5 @@ let g:menutrans_tags_dialog = "
let g:menutrans_textwidth_dialog = "<22><><EFBFBD>֦<EFBFBD><D6A6> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (0 <20><><EFBFBD> צ<>ͦ<EFBFBD><CDA6> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)" let g:menutrans_textwidth_dialog = "<22><><EFBFBD>֦<EFBFBD><D6A6> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (0 <20><><EFBFBD> צ<>ͦ<EFBFBD><CDA6> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)"
let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD>Ҧ<EFBFBD><D2A6> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>" let g:menutrans_fileformat_dialog = "<22><><EFBFBD><EFBFBD>Ҧ<EFBFBD><D2A6> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -14,6 +14,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -327,3 +329,6 @@ let g:menutrans_fileformat_dialog = "Hãy chọn định dạng tập tin."
let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Hủy bỏ" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Hủy bỏ"
" "
let menutrans_no_file = "[không có tập tin]" let menutrans_no_file = "[không có tập tin]"
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
" This causes trouble for a broken iconv (symptom: last character is always " This causes trouble for a broken iconv (symptom: last character is always
" ??). Without this it works fine anyway, because gbk/cp936 is a superset of " ??). Without this it works fine anyway, because gbk/cp936 is a superset of
@@ -264,3 +266,6 @@ menutrans &Highlight\ test
menutrans &Convert\ to\ HTML ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ HTML(&C) menutrans &Convert\ to\ HTML ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ HTML(&C)
menutrans Set\ '&syntax'\ only <09><><EFBFBD>\ 'syntax'(&S) menutrans Set\ '&syntax'\ only <09><><EFBFBD>\ 'syntax'(&S)
menutrans Set\ '&filetype'\ too Ҳ<EFBFBD>\ 'filetype'(&F) menutrans Set\ '&filetype'\ too Ҳ<EFBFBD>\ 'filetype'(&F)
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -9,6 +9,8 @@ if exists("did_menu_trans")
finish finish
endif endif
let did_menu_trans = 1 let did_menu_trans = 1
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
@@ -261,3 +263,6 @@ menutrans &Highlight\ test 高亮测试(&H)
menutrans &Convert\ to\ HTML 转换成\ HTML(&C) menutrans &Convert\ to\ HTML 转换成\ HTML(&C)
menutrans Set\ '&syntax'\ only 仅设定\ 'syntax'(&S) menutrans Set\ '&syntax'\ only 仅设定\ 'syntax'(&S)
menutrans Set\ '&filetype'\ too 也设定\ 'filetype'(&F) menutrans Set\ '&filetype'\ too 也设定\ 'filetype'(&F)
let &cpo = s:keepcpo
unlet s:keepcpo

View File

@@ -1,6 +1,6 @@
" Menu Translations: Traditional Chinese " Menu Translations: Traditional Chinese
" Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw> " Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw>
" Last Change: 2005/01/28 02:51:38 " Last Change: 2012 May 01
" {{{ Quit when menu translations have already been done. " {{{ Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
@@ -9,6 +9,9 @@ endif
let did_menu_trans = 1 let did_menu_trans = 1
" }}} " }}}
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8 scriptencoding utf-8
" {{{ Help menu: complete " {{{ Help menu: complete
@@ -282,4 +285,7 @@ if has("toolbar")
endif endif
" }}} " }}}
let &cpo = s:keepcpo
unlet s:keepcpo
" vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1 " vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1