annotate runtime/lang/menu_da.utf-8.vim @ 27788:a1effd6bb5ba v8.2.4420

patch 8.2.4420: menu translations are inconsistent Commit: https://github.com/vim/vim/commit/a42535340a906d33173e8b3e82085c161a0524c8 Author: Ada <me@yuhaowen.com> Date: Sat Feb 19 12:06:09 2022 +0000 patch 8.2.4420: menu translations are inconsistent Problem: Menu translations are inconsistent. Solution: Add a Makefile to convert between encodings. (Ada (Haowen) Yu, closes #9801)
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Feb 2022 13:15:03 +0100
parents d1bcb0b721cc
children 20cf2080f1ee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
1 " Menu Translations: Danish
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 " Maintainer: scootergrisen
20146
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
3 " Last Change: 2020 Apr 23
27788
a1effd6bb5ba patch 8.2.4420: menu translations are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 20146
diff changeset
4 " Original translations
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 " Quit when menu translations have already been done.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 if exists("did_menu_trans")
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 finish
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 endif
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 let did_menu_trans = 1
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 let s:keepcpo= &cpo
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 set cpo&vim
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 scriptencoding utf-8
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 " Help menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 menut &Help Hjælp
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 menut &Overview<Tab><F1> Overblik<Tab><F1>
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 menut &User\ Manual Brugermanual
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 menut &How-to\ links How-to-links
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 menut &Find\.\.\. Find\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 menut &Credits Anerkendelser
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 menut Co&pying Kopiering
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 menut &Sponsor/Register Sponsorer/registrer
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 menut O&rphans Forældreløse\ børn
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 menut &Version Version
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 menut &About Om
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 let g:menutrans_help_dialog = "Indtast en kommando eller ord for at finde hjælp om:\n\nStart med i_ for kommandoer til inputtilstand (f.eks.: i_CTRL-X)\nStart med c_ for kommandoer til redigering af kommandolinje (f.eks.: c_<Del>)\nStart med ' for et tilvalgsnavn (f.eks.: 'shiftwidth')"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 " File menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 menut &File Fil
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 menut &Open\.\.\.<Tab>:e Åbn\.\.\.<Tab>:e
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 menut Sp&lit-Open\.\.\.<Tab>:sp Opdel-åbn\.\.\.<Tab>:sp
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 menut Open\ Tab\.\.\.<Tab>:tabnew Åbn\ faneblad\.\.\.<Tab>:tabnew
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 menut &New<Tab>:enew Ny<Tab>:enew
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 menut &Close<Tab>:close Luk<Tab>:close
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 menut &Save<Tab>:w Gem<Tab>:w
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 menut Save\ &As\.\.\.<Tab>:sav Gem\ som\.\.\.<Tab>:sav
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 menut Split\ &Diff\ with\.\.\. Opdel\ diff\ med\.\.\.
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
47 menut Split\ Patched\ &By\.\.\. Opdel\ patchet\ af\.\.\.
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 " -SEP3-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 menut &Print Udskriv
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 " -SEP4-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 menut Sa&ve-Exit<Tab>:wqa Gem-afslut
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
52 menut E&xit<Tab>:qa Afslut
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
54 " Edit menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55 menut &Edit Rediger
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 menut &Undo<Tab>u Fortryd<Tab>u
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 menut &Redo<Tab>^R Omgør<Tab>^R
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 menut Rep&eat<Tab>\. Gentag<Tab>\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 menut Cu&t<Tab>"+x Klip<Tab>"+x
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 menut &Copy<Tab>"+y Kopiér<Tab>"+y
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63 menut &Paste<Tab>"+gP Indsæt<Tab>"+gP
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 menut Put\ &Before<Tab>[p Indsæt\ inden\ (put)<Tab>[p
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 menut Put\ &After<Tab>]p Indsæt\ efter\ (put)<Tab>]p
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
66 menut &Delete<Tab>x Slet<Tab>x
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67 menut &Select\ all<Tab>ggVG Markér\ alt<Tab>ggVG
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 menut &Find\.\.\. Find\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70 menut &Find\.\.\.<Tab>/ Find\.\.\.<Tab>/
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 menut Find\ and\ Rep&lace\.\.\. Find\ og\ erstat\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 menut Find\ and\ Rep&lace\.\.\.<Tab>:%s Find\ og\ erstat\.\.\.<Tab>:%s
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73 menut Find\ and\ Rep&lace\.\.\.<Tab>:s Find\ og\ erstat\.\.\.<Tab>:s
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74 " -SEP3-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75 menut Settings\ &Window Indstillinger-vindue
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76 menut Startup\ &Settings Opstartsindstillinger
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 menut &Global\ Settings Globale\ indstillinger
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 menut Question Spørgsmål
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80 " Edit
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 menut Toggle\ Pattern\ &Highlight<Tab>:set\ hls! Fremhævning\ af\ mønster\ til/fra<Tab>:set\ hls!
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
83 menut Toggle\ &Ignoring\ Case<Tab>:set\ ic! Ignorerer\ forskel\ på\ store\ og\ små\ bogstaver\ til/fra<Tab>:set\ ic!
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84 menut Toggle\ &Showing\ Matched\ Pairs<Tab>:set\ sm! Viser\ matchende\ par\ til/fra<Tab>:set\ sm!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 menut &Context\ lines Kontekstlinjer
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88 menut &Virtual\ Edit Virtuel\ redigering
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89 menut Never Aldrig
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 menut Block\ Selection Blokmarkering
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 menut Insert\ mode Indsæt-tilstand
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92 menut Block\ and\ Insert Blok\ og\ indsæt
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 menut Always Altid
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 menut Toggle\ Insert\ &Mode<Tab>:set\ im! Indsæt-tilstand\ til/fra<Tab>:set\ im!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96 menut Toggle\ Vi\ C&ompatibility<Tab>:set\ cp! Vi-kompatibel\ til/fra<Tab>:set\ cp!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 menut Search\ &Path\.\.\. Søgesti\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 menut Ta&g\ Files\.\.\. Tag-filer\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 menut Toggle\ &Toolbar Værktøjslinje\ til/fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 menut Toggle\ &Bottom\ Scrollbar Nederste\ rullebjælke\ til/fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 menut Toggle\ &Left\ Scrollbar Venstre\ rullebjælke\ til/fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 menut Toggle\ &Right\ Scrollbar Højre\ rullebjælke\ til/fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 let g:menutrans_path_dialog = "Indtast søgesti til filer.\nSeparer mappenavne med et komma."
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 let g:menutrans_tags_dialog = "Indtast navne på tag-filer.\nSeparer navnene med et komma."
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 " Edit/File Settings
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 menut F&ile\ Settings Filindstillinger
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 " Boolean options
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 menut Toggle\ Line\ &Numbering<Tab>:set\ nu! Linjenummerering\ til/fra<Tab>:set\ nu!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 menut Toggle\ Relati&ve\ Line\ Numbering<Tab>:set\ rnu! Relativ\ linjenummerering\ til/fra<Tab>:set\ rnu!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 menut Toggle\ &List\ Mode<Tab>:set\ list! Listetilstand\ til/fra<Tab>:set\ list!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 menut Toggle\ Line\ &Wrapping<Tab>:set\ wrap! Linjeombrydning\ til/fra<Tab>:set\ wrap!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116 menut Toggle\ W&rapping\ at\ word<Tab>:set\ lbr! Ombrydning\ ved\ ord\ til/fra<Tab>:set\ lbr!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117 menut Toggle\ Tab\ &expanding<Tab>:set\ et! Udvidelse\ af\ tabulator\ til/fra<Tab>:set\ et!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
118 menut Toggle\ &Auto\ Indenting<Tab>:set\ ai! Automatisk\ indrykning\ til/fra<Tab>:set\ ai!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 menut Toggle\ &C-Style\ Indenting<Tab>:set\ cin! Indrykning\ i\ &C-stil\ til/fra<Tab>:set\ cin!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 " -SEP2-
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
121 menut &Shiftwidth Shiftwidth
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
122 " menut &Shiftwidth.2<Tab>:set\ sw=2\ sw?<CR> Shiftwidth.2<Tab>:set\ sw=2\ sw?<CR>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
123 " menut &Shiftwidth.3<Tab>:set\ sw=3\ sw?<CR> Shiftwidth.3<Tab>:set\ sw=3\ sw?<CR>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
124 " menut &Shiftwidth.4<Tab>:set\ sw=4\ sw?<CR> Shiftwidth.4<Tab>:set\ sw=4\ sw?<CR>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
125 " menut &Shiftwidth.5<Tab>:set\ sw=5\ sw?<CR> Shiftwidth.5<Tab>:set\ sw=5\ sw?<CR>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
126 " menut &Shiftwidth.6<Tab>:set\ sw=6\ sw?<CR> Shiftwidth.6<Tab>:set\ sw=6\ sw?<CR>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
127 " menut &Shiftwidth.8<Tab>:set\ sw=8\ sw?<CR> Shiftwidth.8<Tab>:set\ sw=8\ sw?<CR>
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
128 menut Soft\ &Tabstop Blødt\ tabulatorstop
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
129 " menut Soft\ &Tabstop.2<Tab>:set\ sts=2\ sts? Blødt\ Tabstop.2<Tab>:set\ sts=2\ sts?
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
130 " menut Soft\ &Tabstop.3<Tab>:set\ sts=3\ sts? Blødt\ Tabstop.3<Tab>:set\ sts=3\ sts?
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
131 " menut Soft\ &Tabstop.4<Tab>:set\ sts=4\ sts? Blødt\ Tabstop.4<Tab>:set\ sts=4\ sts?
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
132 " menut Soft\ &Tabstop.5<Tab>:set\ sts=5\ sts? Blødt\ Tabstop.5<Tab>:set\ sts=5\ sts?
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
133 " menut Soft\ &Tabstop.6<Tab>:set\ sts=6\ sts? Blødt\ Tabstop.6<Tab>:set\ sts=6\ sts?
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
134 " menut Soft\ &Tabstop.8<Tab>:set\ sts=8\ sts? Blødt\ Tabstop.8<Tab>:set\ sts=8\ sts?
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
135 menut Te&xt\ Width\.\.\. Tekstbredde\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
136 menut &File\ Format\.\.\. Filformat\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
137
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
138 let g:menutrans_textwidth_dialog = "Indtast ny tekstbredde (0 for at deaktivere formatering): "
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
139 let g:menutrans_fileformat_dialog = "Vælg format til skrivning af filen"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
140 let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Annuller"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
141
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
142 menut Show\ C&olor\ Schemes\ in\ Menu Vis\ farveskemaer\ i\ menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
143 menut C&olor\ Scheme Farveskema
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
144
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
145 " menut blue blå
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
146 " menut darkblue mørkeblå
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
147 " menut desert ørken
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
148 " menut elflord elverherre
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
149 " menut evening aften
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
150 " menut industry industri
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
151 " menut morning morgen
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
152 " menut peachpuff fersken
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
153 " menut shine skær
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
154 " menut slate skiffer
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
155 " menut default standard
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
156 " menut torte tærte
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
157 " menut zellner ???
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
158 " menut delek ???
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
159 " menut koehler ???
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
160 " menut murphy ???
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
161 " menut pablo ???
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
162 " menut ron ron
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
163
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
164 menut Show\ &Keymaps\ in\ Menu Vis\ tastaturlayouts\ i\ menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 menut &Keymap Tastaturlayout
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
166
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
167 menut None Intet
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
168 " menut accents Diakritiske\ tegn
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 " menut arabic arabisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 " menut armenian-eastern armensk\ (østlig)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
171 " menut armenian-western armensk\ (vestlig)
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
172 " menut belarusian-jcuken hviderussisk\ [belarusian-jcuken]
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
173 " menut czech tjekkisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174 " menut greek græsk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 " menut hebrew hebraisk
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
176 " menut hebrewp hebraisk\ [hebrewp]
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
177 " menut magyar ungarsk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178 " menut persian persisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 " menut serbian serbisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 " menut serbian-latin serbisk\ (latinsk)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
181 " menut slovak slovakisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
182
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
183 menut Select\ Fo&nt\.\.\. Vælg\ skrifttype\.\.\.
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
184
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 " Programming menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
186 menut &Tools Værktøjer
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
187
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
188 menut &Jump\ to\ this\ tag<Tab>g^] Hop\ til\ tagget<Tab>g^]
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189 menut Jump\ &back<Tab>^T Hop\ tilbage<Tab>^T
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 menut Build\ &Tags\ File Build\ tags-fil
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
191 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
192 " Tools.Spelling Menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
193 menut &Spelling Stavning
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
194 menut &Spell\ Check\ On Stavekontrol\ til
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
195 menut Spell\ Check\ &Off Stavekontrol\ fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
196 menut To\ &Next\ error<Tab>]s Til\ næste\ fejl<Tab>]s
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
197 menut To\ &Previous\ error<Tab>[s Til\ forrige\ fejl<Tab>[s
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
198 menut Suggest\ &Corrections<Tab>z= Foreslå\ rettelse<Tab>z=
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199 menut &Repeat\ correction<Tab>:spellrepall Gentag\ rettelse<Tab>:spellrepall
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200 menut Set\ language\ to\ "en" Sæt\ sprog\ til\ "en"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
201 menut Set\ language\ to\ "en_au" Sæt\ sprog\ til\ "en_au"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
202 menut Set\ language\ to\ "en_ca" Sæt\ sprog\ til\ "en_ca"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
203 menut Set\ language\ to\ "en_gb" Sæt\ sprog\ til\ "en_gb"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
204 menut Set\ language\ to\ "en_nz" Sæt\ sprog\ til\ "en_nz"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
205 menut Set\ language\ to\ "en_us" Sæt\ sprog\ til\ "en_us"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
206 menut &Find\ More\ Languages Find\ flere\ sprog
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
207
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
208 " Tools.Fold Menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
209 menut &Folding Foldning
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
210 " open close folds
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
211 menut &Enable/Disable\ folds<Tab>zi Aktivér/deaktivér\ sammenfoldninger<Tab>zi
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
212 menut &View\ Cursor\ Line<Tab>zv Vis\ markørlinje<Tab>zv
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
213 menut Vie&w\ Cursor\ Line\ only<Tab>zMzx Vis\ kun\ markørlinje<Tab>zMzx
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
214 menut C&lose\ more\ folds<Tab>zm Luk\ flere\ sammenfoldninger<Tab>zm
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
215 menut &Close\ all\ folds<Tab>zM Luk\ alle\ sammenfoldninger<Tab>zM
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
216 menut O&pen\ more\ folds<Tab>zr Åbn\ flere\ sammenfoldninger<Tab>zr
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
217 menut &Open\ all\ folds<Tab>zR Åbn\ alle\ sammenfoldninger<Tab>zR
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
218 " fold method
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
219 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
220 menut Fold\ Met&hod Sammenfoldningsmetode
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
221 menut M&anual Manuelt
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
222 menut I&ndent Indryk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
223 menut E&xpression Udtryk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
224 menut S&yntax Syntaks
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
225 menut &Diff Diff
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
226 menut Ma&rker Markør
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
227 " create and delete folds
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
228 menut Create\ &Fold<Tab>zf Opret\ sammenfoldning<Tab>zf
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
229 menut &Delete\ Fold<Tab>zd Slet\ sammenfoldning<Tab>zd
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
230 menut Delete\ &All\ Folds<Tab>zD Slet\ alle\ sammenfoldninger<Tab>zD
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
231 " moving around in folds
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
232 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
233 menut Fold\ col&umn\ width Kolonnebredde\ for\ sammenfoldning
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
234
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
235 menut &Diff Diff
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
236 "
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
237 menut &Update Opdater
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238 menut &Get\ Block Hent\ blok\ (get)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
239 menut &Put\ Block Indsæt\ blok\ (put)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
240
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
241 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
242 menut &Make<Tab>:make &Make<Tab>:make
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
243
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
244 menut &List\ Errors<Tab>:cl Oplist\ fejl<Tab>:cl
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
245 menut L&ist\ Messages<Tab>:cl! Oplist\ meddelelser<Tab>:cl!
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
246 menut &Next\ Error<Tab>:cn Næste\ fejl<Tab>:cn
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
247 menut &Previous\ Error<Tab>:cp Forrige\ fejl<Tab>:cp
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
248 menut &Older\ List<Tab>:cold Ældre\ liste<Tab>:cold
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
249 menut N&ewer\ List<Tab>:cnew Nyere\ liste<Tab>:cnew
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
250
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
251 menut Error\ &Window Fejl-vindue
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
252
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
253 menut &Update<Tab>:cwin Opdater<Tab>:cwin
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
254 menut &Open<Tab>:copen Åbn<Tab>:copen
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
255 menut &Close<Tab>:cclose Luk<Tab>:cclose
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
256
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
257 " -SEP3-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
258 menut &Convert\ to\ HEX<Tab>:%!xxd Konvertér\ til\ HEX<Tab>:%!xxd
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
259 menut Conve&rt\ back<Tab>:%!xxd\ -r Konvertér\ tilbage<Tab>:%!xxd\ -r
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
260
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
261 menut Se&T\ Compiler Sæt\ kompiler
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
262
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
263 " Buffers menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
264 menut &Buffers Buffere
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
265
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
266 menut &Refresh\ menu Genopfrisk\ menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
267 menut &Delete Slet
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
268 menut &Alternate Skift
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
269 menut &Next Næste
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
270 menut &Previous Forrige
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
271 menut [No\ File] [Ingen\ fil]
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
272
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
273 " Syntax menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
274 menut &Syntax Syntaks
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
275
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
276 menut &Show\ File\ Types\ in\ menu Vis\ filtyper\ i\ menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
277 menut Set\ '&syntax'\ only Sæt\ kun\ 'syntax'
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
278 menut Set\ '&filetype'\ too Sæt\ også\ 'filetype'
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
279 menut &Off Fra
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
280 menut &Manual Manuelt
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
281 menut A&utomatic Automatisk
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
282 menut On/Off\ for\ &This\ File Til/fra\ for\ denne\ fil
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
283 menut Co&lor\ test Farvetest
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
284 menut &Highlight\ test Fremhævningstest
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
285 menut &Convert\ to\ HTML Konvertér\ til\ HTML
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
286
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
287 let g:menutrans_no_file = "[Ingen fil]"
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
288
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
289 " Window menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
290 menut &Window Vindue
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
291
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
292 menut &New<Tab>^Wn Nyt<Tab>^Wn
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
293 menut S&plit<Tab>^Ws Opdel<Tab>^Ws
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
294 menut Sp&lit\ To\ #<Tab>^W^^ Opdel\ til\ #<Tab>^W^^
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
295 menut Split\ &Vertically<Tab>^Wv Opdel\ lodret<Tab>^Wv
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
296 menut Split\ File\ E&xplorer Opdel\ filbrowser
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
297 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
298 menut &Close<Tab>^Wc Luk<Tab>^Wc
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
299 menut Close\ &Other(s)<Tab>^Wo Luk\ andre<Tab>^Wo
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
300 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
301 menut Move\ &To Flyt\ til
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
302
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
303 menut &Top<Tab>^WK Øverst<Tab>^WK
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
304 menut &Bottom<Tab>^WJ Nederst<Tab>^WJ
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
305 menut &Left\ side<Tab>^WH Venstre\ side<Tab>^WH
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
306 menut &Right\ side<Tab>^WL Højre\ side<Tab>^WL
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
307 menut Rotate\ &Up<Tab>^WR Roter\ op<Tab>^WR
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
308 menut Rotate\ &Down<Tab>^Wr Roter\ ned<Tab>^Wr
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
309 " -SEP3-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
310 menut &Equal\ Size<Tab>^W= Samme\ størrelse<Tab>^W=
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
311 menut &Max\ Height<Tab>^W_ Maks\.\ højde<Tab>^W_
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
312 menut M&in\ Height<Tab>^W1_ Min\.\ højde<Tab>^W1_
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
313 menut Max\ &Width<Tab>^W\| Maks\.\ bredde<Tab>^W\|
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
314 menut Min\ Widt&h<Tab>^W1\| Min\.\ bredde<Tab>^W1\|
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
315
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
316 " The popup menu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
317 menut &Undo Fortryd
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
318 " -SEP1-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
319 menut Cu&t Klip
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
320 menut &Copy Kopiér
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
321 menut &Paste Indsæt
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
322 menut &Delete Slet
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
323 " -SEP2-
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
324 menut Select\ Blockwise Markér\ blokvis
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
325 menut Select\ &Word Markér\ ord
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
326
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
327 menut Select\ &Sentence Markér\ sætning
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
328 menut Select\ Pa&ragraph Markér\ afsnit
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
329
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
330 menut Select\ &Line Markér\ linje
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
331 menut Select\ &Block Markér\ blok
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
332 menut Select\ &All Markér\ alt
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
333
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
334 " The GUI toolbar
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
335 if has("toolbar")
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
336 if exists("*Do_toolbar_tmenu")
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
337 delfun Do_toolbar_tmenu
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
338 endif
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
339 fun Do_toolbar_tmenu()
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
340 tmenu ToolBar.Open Åbn fil
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
341 tmenu ToolBar.Save Gem nuværende fil
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
342 tmenu ToolBar.SaveAll Gem alle filer
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
343 tmenu ToolBar.Print Udskriv
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
344 tmenu ToolBar.Undo Fortryd
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
345 tmenu ToolBar.Redo Omgør
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
346 tmenu ToolBar.Cut Klip til udklipsholder
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
347 tmenu ToolBar.Copy Kopiér til udklipsholder
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
348 tmenu ToolBar.Paste Indsæt fra udklipsholder
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
349 if !has("gui_athena")
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
350 tmenu ToolBar.Replace Find/erstat...
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
351 tmenu ToolBar.FindNext Find næste
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
352 tmenu ToolBar.FindPrev Find forrige
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
353 endif
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
354 tmenu ToolBar.LoadSesn Vælg en session som skal indlæses
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
355 tmenu ToolBar.SaveSesn Gem nuværende session
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
356 tmenu ToolBar.RunScript Vælg et Vim-script som skal køres
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
357 tmenu ToolBar.Make Make nuværende projekt (:make)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
358 tmenu ToolBar.RunCtags Build tags i nuværende mappetræ (!ctags -R .)
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
359 tmenu ToolBar.TagJump Hop til tag under markør
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
360 tmenu ToolBar.Help Vim hjælp
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
361 tmenu ToolBar.FindHelp Søg i Vim hjælp
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
362 endfun
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
363 endif
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
364
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
365 let g:menutrans_set_lang_to = "Sæt sprog til"
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
366
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
367 " stavegenvejsmenu pop op ting
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
368 let g:menutrans_spell_change_ARG_to = 'Ændr\ "%s"\ til'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14193
diff changeset
369 let g:menutrans_spell_add_ARG_to_word_list = 'Tilføj\ "%s"\ til\ ordliste'
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
370 let g:menutrans_spell_ignore_ARG = 'Ignorer "%s"'
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
371
15878
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
372
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
373
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
374 " Forsøg på at oversætte netrw-menuen
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
375 menut Help<tab><F1> Hjælp<tab><F1>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
376 " -Sep1-
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
377 menut Go\ Up\ Directory<tab>- Gå\ mappe\ op<tab>-
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
378 menut Apply\ Special\ Viewer<tab>x Anvend\ speciel\ fremviser<tab>x
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
379
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
380 menut Bookmarks\ and\ History Bogmærker\ og\ historik<tab>:echo "(disabled)"
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
381 menut Bookmark\ Current\ Directory<tab>mb Sæt\ bogmærke\ for\ nuværende\ mappe<tab>mb
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
382 menut Goto\ Prev\ Dir\ (History)<tab>u Gå\ til\ forrige\ mappe\ (historik)<tab>u
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
383 menut Goto\ Next\ Dir\ (History)<tab>U Gå\ til\ næste\ mappe\ (historik)<tab>U
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
384 menut List<tab>qb Oplist<tab>qb
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
385
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
386 menut Browsing\ Control Gennemgangskontol
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
387 menut Horizontal\ Split<tab>o Vandret\ opdeling<tab>o
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
388 menut Vertical\ Split<tab>v Lodret\ opdeling<tab>v
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
389 menut New\ Tab<tab>t Nyt\ faneblad<tab>t
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
390 menut Preview<tab>p Forhåndsvis<tab>p
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
391 menut Edit\ File\ Hiding\ List<tab><ctrl-h> Rediger\ liste\ til\ filskjulning
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
392 menut Edit\ Sorting\ Sequence<tab>S Rediger\ sorteringssekvens<tab>S
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
393 menut Quick\ Hide/Unhide\ Dot\ Files<tab>gh Hurtig\ skjul/vis\ punktum-filer<tab>gh
20146
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
394 menut Refresh\ Listing<tab><ctrl-l> Genopfrisk\ oplistning<tab>\<c-l>\ ikke\ sikker\ det\ med\ er\ korrekt
15878
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
395 menut Settings/Options<tab>:NetrwSettings Indstillinger/valgmuligheder<tab>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
396
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
397 menut Delete\ File/Directory<tab>D Slet\ fil/mappe<tab>D
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
398
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
399 menut Edit\ File/Dir Rediger\ fil/mappe
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
400 menut Create\ New\ File<tab>% Opret\ ny\ fil<tab>%
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
401 menut In\ Current\ Window<tab><cr> I\ nuværende\ vindue<tab>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
402 menut Preview\ File/Directory<tab>p Forhåndsvis\ fil/mappe<tab>p
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
403 menut In\ Previous\ Window<tab>P I\ forrige\ vindue<tab>P
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
404 menut In\ New\ Window<tab>o I\ nyt\ vindue<tab>o
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
405 menut In\ New\ Tab<tab>t I\ nyt\ faneblad<tab>t
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
406 menut In\ New\ Vertical\ Window<tab>v I\ nyt\ lodret\ vindue<tab>v
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
407
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
408 menut Explore Gennemse
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
409 menut Directory\ Name Mappenavn<tab>:Explore
20146
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
410 menut Filenames\ Matching\ Pattern\ (curdir\ only)<tab>:Explore\ */ test29<tab>:Explore\ */
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
411 menut Filenames\ Matching\ Pattern\ (+subdirs)<tab>:Explore\ **/ test30<tab>:Explore\ **/
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
412 menut Files\ Containing\ String\ Pattern\ (curdir\ only)<tab>:Explore\ *// test31<tab>:Explore\ *//
d1bcb0b721cc patch 8.2.0628: error in menu translations
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
413 menut Files\ Containing\ String\ Pattern\ (+subdirs)<tab>:Explore\ **// test32<tab>:Explore\ **//
15878
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
414 menut Next\ Match<tab>:Nexplore Næste\ match<tab>:Nexplore<cr>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
415 menut Prev\ Match<tab>:Pexplore Forrige\ match<tab>:Pexplore<cr>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
416
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
417 menut Make\ Subdirectory<tab>d Opret\ undermappe<tab>d
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
418
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
419 menut Marked\ Files Mærkede\ filer
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
420 menut Mark\ File<tab>mf Mærk\ fil<tab>mf
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
421 menut Mark\ Files\ by\ Regexp<tab>mr Mærk\ filer\ efter\ regulært\ udtrk<tab>mr
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
422 menut Hide-Show-List\ Control<tab>a test38<tab>a
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
423 menut Copy\ To\ Target<tab>mc Kopiér\ til\ mål<tab>mc
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
424 menut Delete<tab>D Slet<tab>D
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
425 menut Diff<tab>md Diff<tab>md
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
426 menut Edit<tab>me Rediger<tab>me
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
427 menut Exe\ Cmd<tab>mx test43<tab>mx
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
428 menut Move\ To\ Target<tab>mm Flyt\ til\ mål<tab>mm
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
429 menut Obtain<tab>O Indhent<tab>O
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
430 menut Print<tab>mp Udskriv<tab>mp
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
431 menut Replace<tab>R Erstat<tab>R
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
432 menut Set\ Target<tab>mt Sæt\ mål<tab>mt
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
433 menut Tag<tab>mT test49<tab>mT
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
434 menut Zip/Unzip/Compress/Uncompress<tab>mz Zip/unzip/komprimér/udpak<tab>mz
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
435
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
436 menut Obtain\ File<tab>O Indhent\ fil<tab>O
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
437
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
438 menut Style Stile
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
439 menut Listing Oplisting
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
440 menut thin<tab>i tynd
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
441 menut long<tab>i lang
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
442 menut wide<tab>i bred
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
443 menut tree<tab>i træ
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
444 menut Normal-Hide-Show Normal-skjul-vis
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
445 menut Show\ All<tab>a Vis\ alle<tab>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
446 menut Normal<tab>a Normal<tab>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
447 menut Hidden\ Only<tab>a Kun\ skulte<tab>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
448 menut Reverse\ Sorting\ Order<tab> Omvendt\ sorteringsrækkefølge
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
449 menut Sorting\ Method Sorteringsmetode
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
450 menut Name<tab>s Navn
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
451 menut Time<tab>s Tidspunkt
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
452 menut Size<tab>s Størrelse
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
453 menut Exten<tab>s Endelse
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
454 menut Rename\ File/Directory<tab>R Omdøb\ fil/mappe<tab>R
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
455 menut Set\ Current\ Directory<tab>c Sæt\ nuværende\ mappe<tab>c
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
456
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
457 menut History Historik
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
458
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
459 menut Targets Mål
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
460
14193
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
461 let &cpo = s:keepcpo
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
462 unlet s:keepcpo
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
463
c460506890ba Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
464 " vim: set sw=2 :