" Menu Translations: Afrikaas " Maintainer: Danie Roux " Last Change: 2012 May 01 " Quit when menu translations have already been done. if exists("did_menu_trans") finish endif let did_menu_trans = 1 let s:keepcpo= &cpo set cpo&vim " The translations below are in latin1, but they work for cp1252 and " iso-8859-15 without conversion as well. if &enc != "cp1252" && &enc != "iso-8859-15" scriptencoding latin1 endif " Help menu menutrans &Help &Hulp menutrans &Overview &Oorsig menutrans &How-to\ links &How-to\ Indeks "menutrans &GUI &GUI menutrans &Credits &Met\ dank\ aan menutrans Co&pying &Kopiereg menutrans &Find\.\.\. &Soek\.\.\. menutrans &Version &Weergawe menutrans &About &Inleiding\ skerm " File menu menutrans &File &Lêer menutrans &Open\.\.\.:e &Open\.\.\.:e menutrans Sp&lit-Open\.\.\.:sp Maak\ oop\ in\ nuwe\ &venster\.\.\.:sp menutrans &New:enew &Nuut:enew menutrans &Close:close Maak\ &Toe:close menutrans &Save:w &Skryf:w menutrans Save\ &As\.\.\.:w Skryf\ &as\.\.\.:w menutrans &Print &Druk menutrans Sa&ve-Exit:wqa Skryf\ en\ verlaat:wqa menutrans E&xit:qa &Verlaat:qa " Edit menu menutrans &Edit &Wysig menutrans &Undou Terugu menutrans &Redo^R Voo&ruit^R menutrans Rep&eat\. &Herhaal\. menutrans Cu&t"+x &Knip"+x menutrans &Copy"+y &Kopiëer"+y menutrans &Paste"+gP Plak"+gP menutrans Put\ &Before[p Voeg\ &Voor\ in[p menutrans Put\ &After]p Voeg\ A>er\ in]p menutrans &Select\ allggVG Kies\ &AllesggVG menutrans &Find\.\.\. &Soek\.\.\. menutrans Find\ and\ Rep&lace\.\.\. Soek\ en\ Vervang\.\.\. menutrans Options\.\.\. Opsies\.\.\. " Programming menu menutrans &Tools &Gereedskap menutrans &Jump\ to\ this\ tagg^] &Spring\ na\ Etiketg^] menutrans Jump\ &back^T Spring\ &Terug^T menutrans Build\ &Tags\ File Genereer\ &Etiket\ Leêr menutrans &Make:make Voer\ &Make\ uit:make menutrans &List\ Errors:cl &Foutlys:cl menutrans L&ist\ Messages:cl! &Boodskaplys:cl! menutrans &Next\ Error:cn Volgende\ Fout:cn menutrans &Previous\ Error:cp Vorige\ Fout:cp menutrans &Older\ List:cold &Ouer\ Lys:cold menutrans N&ewer\ List:cnew &Nuwer\ Lys:cnew menutrans Error\ &Window:cwin Foute\ Venster:cwin menutrans Convert\ to\ HEX:%!xxd Verwissel\ na\ HEX:%!xxd menutrans Convert\ back:%!xxd\ -r Verwissel\ terug:%!xxd\ -r " Names for buffer menu. menutrans &Buffers &Buffers menutrans Refresh Verfris menutrans Delete Verwyder menutrans Alternate Vorige menutrans [No\ File] [Geen\ Leêr] " Window menu menutrans &Window &Venster menutrans &New^Wn &Nuut^Wn menutrans S&plit^Ws Ver&deel^Ws menutrans Sp&lit\ To\ #^W^^ Verdeel\ N&a\ #^W^^ menutrans Split\ &Vertically^Wv Verdeel\ Vertikaal^Wv menutrans &Close^Wc &Maak\ toe^Wc menutrans Close\ &Other(s)^Wo Maak\ &Ander\ Toe^Wo menutrans Ne&xt^Ww Volgende^Ww menutrans P&revious^WW &Vorige^WW menutrans &Equal\ Size^W= &Gelyke\ hoogte^W= menutrans &Max\ Height^W_ &Maksimale\ hoogte^W_ menutrans M&in\ Height^W1_ Mi&nimale\ hoogte^W1_ menutrans Max\ Width^W\| Maksimale\ breedte^W\| menutrans Min\ Width^W1\| Minimale\ breedte^W1\| menutrans Rotate\ &Up^WR Roteer\ na\ &bo^WR menutrans Rotate\ &Down^Wr Roteer\ na\ &onder^Wr menutrans Select\ Fo&nt\.\.\. Kies\ font\.\.\. " The popup menu menutrans &Undo &Terug menutrans Cu&t Knip menutrans &Copy &Kopiëer menutrans &Paste &Plak menutrans &Delete &Verwyder menutrans Select\ Blockwise Kies\ per\ Blok menutrans Select\ &Word Kies\ een\ &Woord menutrans Select\ &Line Kies\ een\ &Reël menutrans Select\ &Block Kies\ een\ &Blok menutrans Select\ &All Kies\ &Alles " The GUI toolbar if has("toolbar") if exists("*Do_toolbar_tmenu") delfun Do_toolbar_tmenu endif fun Do_toolbar_tmenu() tmenu ToolBar.Open Maak leêr oop tmenu ToolBar.Save Skryf leêr tmenu ToolBar.SaveAll Skryf alle leêrs tmenu ToolBar.Print Druk tmenu ToolBar.Undo Terug tmenu ToolBar.Redo Vooruit tmenu ToolBar.Cut Knip tmenu ToolBar.Copy Kopiëer tmenu ToolBar.Paste Plak tmenu ToolBar.Find Soek... tmenu ToolBar.FindNext Soek volgende tmenu ToolBar.FindPrev Soek vorige tmenu ToolBar.Replace Soek en vervang... tmenu ToolBar.LoadSesn Laai sessie tmenu ToolBar.SaveSesn Stoor sessie tmenu ToolBar.RunScript Voer vim skrip uit tmenu ToolBar.Make Voer make uit tmenu ToolBar.Shell Begin dop tmenu ToolBar.RunCtags Genereer etikette tmenu ToolBar.TagJump Spring na etiket tmenu ToolBar.Help Hulp tmenu ToolBar.FindHelp Soek hulp... endfun endif " Syntax menu menutrans &Syntax &Sintaks menutrans Set\ 'syntax'\ only Stel\ slegs\ 'syntax' menutrans Set\ 'filetype'\ too Verander\ 'filetype'\ ook menutrans &Off &Af menutrans &Manual &Met\ die\ hand menutrans A&utomatic O&utomaties menutrans o&n\ (this\ file) Aa&n\ (die\ leêr) menutrans o&ff\ (this\ file) &Af\ (die\ leêr) menutrans Co&lor\ test Toets\ die\ &kleure menutrans &Highlight\ test Toets\ die\ verligting menutrans &Convert\ to\ HTML Verwissel\ na\ HTML let &cpo = s:keepcpo unlet s:keepcpo