comparison runtime/lang/menu_nl_nl.latin1.vim @ 3507:8201108e9cf0

More runtime file fixes for 'compatible' mode.
author Bram Moolenaar <bram@vim.org>
date Tue, 01 May 2012 21:14:34 +0200
parents 3fc0f57ecb91
children a1effd6bb5ba
comparison
equal deleted inserted replaced
3506:273fbf501965 3507:8201108e9cf0
1 " Menu Translations: Nederlands 1 " Menu Translations: Nederlands
2 " Maintainer: Bram Moolenaar 2 " Maintainer: Bram Moolenaar
3 " Last Change: 2004 May 05 3 " Last Change: 2012 May 01
4 4
5 " Quit when menu translations have already been done. 5 " Quit when menu translations have already been done.
6 if exists("did_menu_trans") 6 if exists("did_menu_trans")
7 finish 7 finish
8 endif 8 endif
9 let did_menu_trans = 1 9 let did_menu_trans = 1
10 let s:keepcpo= &cpo
11 set cpo&vim
10 12
11 " The translations below are in latin1, but they work for cp1252 and 13 " The translations below are in latin1, but they work for cp1252 and
12 " iso-8859-15 without conversion as well. 14 " iso-8859-15 without conversion as well.
13 if &enc != "cp1252" && &enc != "iso-8859-15" 15 if &enc != "cp1252" && &enc != "iso-8859-15"
14 scriptencoding latin1 16 scriptencoding latin1
236 let menutrans_help_dialog = "Typ een commando of woord om help voor te vinden:\n\nVoeg i_ in voor Input mode commandos (bijv. i_CTRL-X)\nVoeg c_ in voor een commando-regel edit commando (bijv. c_<Del>)\nVoeg ' in \voor een optie naam (bijv. 'shiftwidth')" 238 let menutrans_help_dialog = "Typ een commando of woord om help voor te vinden:\n\nVoeg i_ in voor Input mode commandos (bijv. i_CTRL-X)\nVoeg c_ in voor een commando-regel edit commando (bijv. c_<Del>)\nVoeg ' in \voor een optie naam (bijv. 'shiftwidth')"
237 let g:menutrans_path_dialog = "Typ het zoekpad voor bestanden.\nGebruik commas tussen de padnamen." 239 let g:menutrans_path_dialog = "Typ het zoekpad voor bestanden.\nGebruik commas tussen de padnamen."
238 let g:menutrans_tags_dialog = "Typ namen van tag bestanden.\nGebruik commas tussen de namen." 240 let g:menutrans_tags_dialog = "Typ namen van tag bestanden.\nGebruik commas tussen de namen."
239 let g:menutrans_textwidth_dialog = "Typ de nieuwe tekst breedte (0 om formatteren uit the schakelen): " 241 let g:menutrans_textwidth_dialog = "Typ de nieuwe tekst breedte (0 om formatteren uit the schakelen): "
240 let g:menutrans_fileformat_dialog = "Selecteer formaat voor het schrijven van het bestand" 242 let g:menutrans_fileformat_dialog = "Selecteer formaat voor het schrijven van het bestand"
243
244 let &cpo = s:keepcpo
245 unlet s:keepcpo