annotate runtime/lang/menu_zh_cn.utf-8.vim @ 33566:e1e3805fcd96 v9.0.2028

patch 9.0.2028: confusing build dependencies Commit: https://github.com/vim/vim/commit/5d03525cdef5db1b1cedfa26c6f8a21aaa207ec0 Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Sun Oct 15 09:50:53 2023 +0200 patch 9.0.2028: confusing build dependencies Problem: confusing build dependencies Solution: clean them up, make them parallelizable Separate vim binary and unittest dependencies, make them parallelizable Clean up make dependencies so Vim and unit test binaries only depend on the object files they need. This fixes an existing issue where after running unit tests, the Vim binary would be invalidated, which results in it having to be linked again when running script tests, even though Vim was already previously built. Make link.sh (script we use to link those binaries) generate namespaced temporary files for each app to avoid them colliding with each other. This allows `unittesttargets` to be built in parallel. These fixes are useful when using link-time-optimization as the link phase could now take minutes rather than a few seconds. closes: #13344 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Sun, 15 Oct 2023 10:00:03 +0200
parents 21bbe5d23739
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6292
31f7581068a9 Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 3507
diff changeset
1 " Menu Translations: Simplified Chinese
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
2 " Maintainer: Ada (Haowen) Yu <me@yuhaowen.com>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
3 " Previous Maintainer: Shun Bai <baishunde@gmail.com>, Yuheng Xie <elephant@linux.net.cn>
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
4 " Last Change: 2022 July 9
27788
a1effd6bb5ba patch 8.2.4420: menu translations are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 20146
diff changeset
5 " Original translations
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
6 "
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
7 " Generated with the scripts from:
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
8 "
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
9 " https://github.com/adaext/vim-menutrans-helper
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 " Quit when menu translations have already been done.
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
12
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 if exists("did_menu_trans")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 let did_menu_trans = 1
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
17 let s:keepcpo = &cpo
3507
8201108e9cf0 More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents: 1122
diff changeset
18 set cpo&vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 scriptencoding utf-8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 " Help menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
23 menutrans &Help 帮助(&H)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
24 " Help menuitems and dialog {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
25 menutrans &Overview<Tab><F1> 概述(&O)<Tab><F1>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
26 menutrans &User\ Manual 用户手册(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
27 menutrans &How-to\ Links 如何使用(&H)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
28 menutrans &Find\.\.\. 查找(&F)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
29 menutrans &Credits 致谢(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
30 menutrans Co&pying 版权(&P)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
31 menutrans &Sponsor/Register 赞助/注册(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
32 menutrans O&rphans 拯救孤儿(&R)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
33 menutrans &Version 版本(&V)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
34 menutrans &About 关于(&A)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
35
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
36 " fun! s:Helpfind()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
37 if !exists("g:menutrans_help_dialog")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
38 let g:menutrans_help_dialog = "输入命令或单词以获得帮助:\n\n前缀 i_ 表示输入模式下的命令(如: i_CTRL-X)\n前缀 c_ 表示命令行下的编辑命令(如: c_<Del>)\n前缀 ' 表示选项名(如: 'shiftwidth')"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
39 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
40 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 " File menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
43 menutrans &File 文件(&F)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
44 " File menuitems {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
45 menutrans &Open\.\.\.<Tab>:e 打开(&O)\.\.\.<Tab>:e
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
46 menutrans Sp&lit-Open\.\.\.<Tab>:sp 在拆分窗口打开(&L)\.\.\.<Tab>:sp
33180
21bbe5d23739 runtime(menu): Fix "Open &Tab..." CJK translations to have shortcut key (#13031)
Christian Brabandt <cb@256bit.org>
parents: 33105
diff changeset
47 menutrans Open\ &Tab\.\.\.<Tab>:tabnew 在标签页打开(&T)\.\.\.<Tab>:tabnew
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
48 menutrans &New<Tab>:enew 新建(&N)<Tab>:enew
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
49 menutrans &Close<Tab>:close 关闭(&C)<Tab>:close
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
50 menutrans &Save<Tab>:w 保存(&S)<Tab>:w
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
51 menutrans Save\ &As\.\.\.<Tab>:sav 另存为(&A)\.\.\.<Tab>:sav
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
52 menutrans Split\ &Diff\ With\.\.\. 拆分窗口以对比差异(Diff)(&D)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
53 menutrans Split\ Patched\ &By\.\.\. 拆分窗口以进行修补(Patch)(&B)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
54 menutrans &Print 打印(&P)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
55 menutrans Sa&ve-Exit<Tab>:wqa 保存并退出(&V)<Tab>:wqa
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
56 menutrans E&xit<Tab>:qa 退出(&X)<Tab>:qa
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
57 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 " Edit menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
60 menutrans &Edit 编辑(&E)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
61 " Edit menuitems {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
62 menutrans &Undo<Tab>u 撤销(&U)<Tab>u
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
63 menutrans &Redo<Tab>^R 恢复(&R)<Tab>^R
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
64 menutrans Rep&eat<Tab>\. 重复(&E)<Tab>\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
65 menutrans Cu&t<Tab>"+x 剪切(&T)<Tab>"+x
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
66 menutrans &Copy<Tab>"+y 复制(&C)<Tab>"+y
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
67 menutrans &Paste<Tab>"+gP 粘贴(&P)<Tab>"+gP
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
68 menutrans Put\ &Before<Tab>[p 粘贴到光标前(&B)<Tab>[p
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
69 menutrans Put\ &After<Tab>]p 粘贴到光标后(&A)<Tab>]p
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
70 menutrans &Delete<Tab>x 删除(&D)<Tab>x
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
71 menutrans &Select\ All<Tab>ggVG 全选(&S)<Tab>ggVG
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
72 menutrans &Find\.\.\. 查找(&F)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
73 menutrans Find\ and\ Rep&lace\.\.\. 查找和替换(&L)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
74 menutrans &Find<Tab>/ 查找(&F)<Tab>/
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
75 menutrans Find\ and\ Rep&lace<Tab>:%s 查找和替换(&L)<Tab>:%s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
76 menutrans Find\ and\ Rep&lace<Tab>:s 查找和替换(&L)<Tab>:s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
77 menutrans Settings\ &Window 设置窗口(&W)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
78 menutrans Startup\ &Settings 启动设置(&S)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79
837
6bb1fa855dc9 updated for version 7.0e03
vimboss
parents: 7
diff changeset
80 " Edit/Global Settings
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
81 menutrans &Global\ Settings 全局设置(&G)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
82 " Edit.Global Settings menuitems and dialogs {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
83 menutrans Toggle\ Pattern\ &Highlight<Tab>:set\ hls! 开/关高亮查找内容(&H)<Tab>:set\ hls!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
84 menutrans Toggle\ &Ignoring\ Case<Tab>:set\ ic! 开/关忽略大小写(&I)<Tab>:set\ ic!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
85 menutrans Toggle\ &Showing\ Matched\ Pairs<Tab>:set\ sm! 开/关显示括号匹配(&S)<Tab>:set\ sm!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
86 menutrans &Context\ Lines 上下文行数(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
87 menutrans &Virtual\ Edit 虚拟编辑(&V)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
88 " Edit.Global Settings.Virtual Edit menuitems {{{3
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
89 menutrans Never 从不
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
90 menutrans Block\ Selection 只在选定矩形块时
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
91 menutrans Insert\ Mode 只在插入模式时
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
92 menutrans Block\ and\ Insert 在选定矩形块和插入模式时
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
93 menutrans Always 始终
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
94 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
95 menutrans Toggle\ Insert\ &Mode<Tab>:set\ im! 开/关插入模式(&M)<Tab>:set\ im!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
96 menutrans Toggle\ Vi\ C&ompatibility<Tab>:set\ cp! 开/关\ Vi\ 兼容性(&O)<Tab>:set\ cp!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
97 menutrans Search\ &Path\.\.\. 搜索路径(&P)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
98 menutrans Ta&g\ Files\.\.\. 标记文件(Tags)(&G)\.\.\.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 " GUI options
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
101 menutrans Toggle\ &Toolbar 开/关工具栏(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
102 menutrans Toggle\ &Bottom\ Scrollbar 开/关底部滚动条(&B)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
103 menutrans Toggle\ &Left\ Scrollbar 开/关左侧滚动条(&L)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
104 menutrans Toggle\ &Right\ Scrollbar 开/关右侧滚动条(&R)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
105
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
106 " fun! s:SearchP()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
107 if !exists("g:menutrans_path_dialog")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
108 let g:menutrans_path_dialog = "输入搜索路径。\n用逗号分隔目录名。"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
109 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
110
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
111 " fun! s:TagFiles()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
112 if !exists("g:menutrans_tags_dialog")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
113 let g:menutrans_tags_dialog = "输入标记文件(Tags)名称。\n用逗号分隔文件名。"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
114 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
115 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 " Edit/File Settings
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
118 menutrans F&ile\ Settings 文件设置(&I)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
119 " Edit.File Settings menuitems and dialogs {{{2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 " Boolean options
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
121 menutrans Toggle\ Line\ &Numbering<Tab>:set\ nu! 开/关行号(&N)<Tab>:set\ nu!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
122 menutrans Toggle\ Relati&ve\ Line\ Numbering<Tab>:set\ rnu! 开/关相对行号(&V)<Tab>:set\ rnu!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
123 menutrans Toggle\ &List\ Mode<Tab>:set\ list! 开/关列表模式(&L)<Tab>:set\ list!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
124 menutrans Toggle\ Line\ &Wrapping<Tab>:set\ wrap! 开/关换行(&W)<Tab>:set\ wrap!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
125 menutrans Toggle\ W&rapping\ at\ Word<Tab>:set\ lbr! 开/关词尾换行(&R)<Tab>:set\ lbr!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
126 menutrans Toggle\ Tab\ &Expanding<Tab>:set\ et! 开/关制表符扩展(&E)<Tab>:set\ et!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
127 menutrans Toggle\ &Auto\ Indenting<Tab>:set\ ai! 开/关自动缩进(&A)<Tab>:set\ ai!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
128 menutrans Toggle\ &C-Style\ Indenting<Tab>:set\ cin! 开/关\ C\ 语言式缩进(&C)<Tab>:set\ cin!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 " other options
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
131 menutrans &Shiftwidth 缩进宽度(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
132 menutrans Soft\ &Tabstop 软制表位宽度(Soft\ Tabstop)(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
133 menutrans Te&xt\ Width\.\.\. 文本宽度(&X)\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
134 menutrans &File\ Format\.\.\. 文件格式(&F)\.\.\.
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
135
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
136 " fun! s:TextWidth()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
137 if !exists("g:menutrans_textwidth_dialog")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
138 let g:menutrans_textwidth_dialog = "输入文本宽度(每行最大字符数,0 表示禁用):"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
139 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
140
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
141 " fun! s:FileFormat()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
142 if !exists("g:menutrans_fileformat_dialog")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
143 let g:menutrans_fileformat_dialog = "选择文件的保存格式:"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
144 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
145 if !exists("g:menutrans_fileformat_choices")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
146 let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n取消(&C)"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
147 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
148 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
149 menutrans Show\ C&olor\ Schemes\ in\ Menu 在菜单中显示配色方案(&O)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
150 menutrans C&olor\ Scheme 配色方案(&O)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
151 menutrans Show\ &Keymaps\ in\ Menu 在菜单中显示键盘映射(&K)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
152 menutrans &Keymap 键盘映射(&K)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
153 menutrans Select\ Fo&nt\.\.\. 选择字体(&N)\.\.\.
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
154 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 " Programming menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
157 menutrans &Tools 工具(&T)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
158 " Tools menuitems {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
159 menutrans &Jump\ to\ This\ Tag<Tab>g^] 跳转到这个标记(Tag)(&J)<Tab>g^]
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
160 menutrans Jump\ &Back<Tab>^T 跳转回(&B)<Tab>^T
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
161 menutrans Build\ &Tags\ File 生成标记文件(Tags)(&T)
837
6bb1fa855dc9 updated for version 7.0e03
vimboss
parents: 7
diff changeset
162
6bb1fa855dc9 updated for version 7.0e03
vimboss
parents: 7
diff changeset
163 " Tools.Spelling Menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
164 menutrans &Spelling 拼写检查(&S)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
165 " Tools.Spelling menuitems and dialog {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
166 menutrans &Spell\ Check\ On 打开拼写检查(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
167 menutrans Spell\ Check\ &Off 关闭拼写检查(&O)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
168 menutrans To\ &Next\ Error<Tab>]s 上一个错误(&N)<Tab>]s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
169 menutrans To\ &Previous\ Error<Tab>[s 下一个错误(&P)<Tab>[s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
170 menutrans Suggest\ &Corrections<Tab>z= 更正建议(&C)<Tab>z=
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
171 menutrans &Repeat\ Correction<Tab>:spellrepall 更正全部同类错误(&R)<Tab>:spellrepall
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
172 menutrans Set\ Language\ to\ "en" 设置语言为\ "en"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
173 menutrans Set\ Language\ to\ "en_au" 设置语言为\ "en_au"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
174 menutrans Set\ Language\ to\ "en_ca" 设置语言为\ "en_ca"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
175 menutrans Set\ Language\ to\ "en_gb" 设置语言为\ "en_gb"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
176 menutrans Set\ Language\ to\ "en_nz" 设置语言为\ "en_nz"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
177 menutrans Set\ Language\ to\ "en_us" 设置语言为\ "en_us"
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
178 menutrans &Find\ More\ Languages 查找更多语言(&F)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
179
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
180 " func! s:SpellLang()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
181 if !exists("g:menutrans_set_lang_to")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
182 let g:menutrans_set_lang_to = "设置语言为"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
183 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
184 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 " Tools.Fold Menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
187 menutrans &Folding 折叠(&F)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
188 " Tools.Fold menuitems {{{2
837
6bb1fa855dc9 updated for version 7.0e03
vimboss
parents: 7
diff changeset
189 " open close folds
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
190 menutrans &Enable/Disable\ Folds<Tab>zi 启用/禁用折叠(&E)<Tab>zi
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
191 menutrans &View\ Cursor\ Line<Tab>zv 展开光标所在行(&V)<Tab>zv
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
192 menutrans Vie&w\ Cursor\ Line\ Only<Tab>zMzx 只展开光标所在行(&W)<Tab>zMzx
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
193 menutrans C&lose\ More\ Folds<Tab>zm 折叠一级(&L)<Tab>zm
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
194 menutrans &Close\ All\ Folds<Tab>zM 折叠全部(&C)<Tab>zM
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
195 menutrans O&pen\ More\ Folds<Tab>zr 展开一级(&P)<Tab>zr
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
196 menutrans &Open\ All\ Folds<Tab>zR 展开全部(&O)<Tab>zR
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 " fold method
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
198 menutrans Fold\ Met&hod 折叠方式(&H)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
199 " Tools.Fold.Fold Method menuitems {{{3
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
200 menutrans M&anual 手动(&A)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
201 menutrans I&ndent 缩进(&N)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
202 menutrans E&xpression 表达式(&X)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
203 menutrans S&yntax 语法(&Y)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
204 menutrans &Diff 差异(Diff)(&D)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
205 menutrans Ma&rker 记号(Marker)(&R)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
206 " }}}
837
6bb1fa855dc9 updated for version 7.0e03
vimboss
parents: 7
diff changeset
207 " create and delete folds
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
208 menutrans Create\ &Fold<Tab>zf 创建折叠(&F)<Tab>zf
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
209 menutrans &Delete\ Fold<Tab>zd 删除折叠(&D)<Tab>zd
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
210 menutrans Delete\ &All\ Folds<Tab>zD 删除全部折叠(&A)<Tab>zD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 " moving around in folds
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
212 menutrans Fold\ Col&umn\ Width 折叠操作栏宽度(&W)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
213 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 " Tools.Diff Menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
216 menutrans &Diff 差异(Diff)(&D)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
217 " Tools.Diff menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
218 menutrans &Update 刷新(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
219 menutrans &Get\ Block 采用对侧文本块(&G)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
220 menutrans &Put\ Block 采用本侧文本块(&P)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
221 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
223 menutrans &Make<Tab>:make 生成(Make)(&M)<Tab>:make
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
224 menutrans &List\ Errors<Tab>:cl 列出错误(&L)<Tab>:cl
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
225 menutrans L&ist\ Messages<Tab>:cl! 列出消息(&I)<Tab>:cl!
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
226 menutrans &Next\ Error<Tab>:cn 下一个错误(&N)<Tab>:cn
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
227 menutrans &Previous\ Error<Tab>:cp 上一个错误(&P)<Tab>:cp
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
228 menutrans &Older\ List<Tab>:cold 较旧的错误列表(&O)<Tab>:cold
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
229 menutrans N&ewer\ List<Tab>:cnew 较新的错误列表(&E)<Tab>:cnew
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
230 menutrans Error\ &Window 错误窗口(&W)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
231 " Tools.Error Window menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
232 menutrans &Update<Tab>:cwin 刷新(&U)<Tab>:cwin
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
233 menutrans &Open<Tab>:copen 打开(&O)<Tab>:copen
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
234 menutrans &Close<Tab>:cclose 关闭(&C)<Tab>:cclose
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
235 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
236 menutrans Show\ Compiler\ Se&ttings\ in\ Menu 在菜单中显示编译器设置(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
237 menutrans Se&t\ Compiler 设置编译器(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
238 menutrans &Convert\ to\ HEX<Tab>:%!xxd 转换成十六进制(&C)<Tab>:%!xxd
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
239 menutrans Conve&rt\ Back<Tab>:%!xxd\ -r 转换回(&R)<Tab>:%!xxd\ -r
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
240 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
242 " Buffer menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
243 menutrans &Buffers 缓冲区(&B)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
244 " Buffer menuitems and dialog {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
245 menutrans &Refresh\ Menu 刷新本菜单(&R)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
246 menutrans &Delete 删除(&D)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
247 menutrans &Alternate 切换(&A)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
248 menutrans &Next 下一个(&N)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
249 menutrans &Previous 上一个(&P)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
250
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
251 " func! s:BMMunge(fname, bnum)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
252 if !exists("g:menutrans_no_file")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
253 let g:menutrans_no_file = "[无文件]"
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
254 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
255 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 " Window menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
258 menutrans &Window 窗口(&W)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
259 " Window menuitems {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
260 menutrans &New<Tab>^Wn 新建(&N)<Tab>^Wn
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
261 menutrans S&plit<Tab>^Ws 拆分(&P)<Tab>^Ws
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
262 menutrans Sp&lit\ To\ #<Tab>^W^^ 拆分并显示缓冲区\ #(&L)<Tab>^W^^
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
263 menutrans Split\ &Vertically<Tab>^Wv 垂直拆分(&V)<Tab>^Wv
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
264 menutrans Split\ File\ E&xplorer 拆分并打开文件浏览器(&X)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
265 menutrans &Close<Tab>^Wc 关闭(&C)<Tab>^Wc
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
266 menutrans Close\ &Other(s)<Tab>^Wo 除此之外全部关闭(&O)<Tab>^Wo
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
267 menutrans Move\ &To 移动到(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
268 menutrans &Top<Tab>^WK 顶端(&T)<Tab>^WK
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
269 menutrans &Bottom<Tab>^WJ 底端(&B)<Tab>^WJ
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
270 menutrans &Left\ Side<Tab>^WH 左边(&L)<Tab>^WH
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
271 menutrans &Right\ Side<Tab>^WL 右边(&R)<Tab>^WL
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
272 menutrans Rotate\ &Up<Tab>^WR 向上轮换(&U)<Tab>^WR
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
273 menutrans Rotate\ &Down<Tab>^Wr 向下轮换(&D)<Tab>^Wr
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
274 menutrans &Equal\ Size<Tab>^W= 平均分布(&E)<Tab>^W=
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
275 menutrans &Max\ Height<Tab>^W_ 最大高度(&M)<Tab>^W
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
276 menutrans M&in\ Height<Tab>^W1_ 最小高度(&I)<Tab>^W1_
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
277 menutrans Max\ &Width<Tab>^W\| 最大宽度(&W)<Tab>^W\|
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
278 menutrans Min\ Widt&h<Tab>^W1\| 最小宽度(&H)<Tab>^W1\|
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
279 " }}}
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
280
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
281 " The popup menu {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
282 menutrans &Undo 撤销(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
283 menutrans Cu&t 剪切(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
284 menutrans &Copy 复制(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
285 menutrans &Paste 粘贴(&P)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
286 menutrans &Delete 删除(&D)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
287 menutrans Select\ Blockwise 改为选定矩形块
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
288 menutrans Select\ &Word 选定单词(&W)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
289 menutrans Select\ &Sentence 选定句(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
290 menutrans Select\ Pa&ragraph 选定段落(&R)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
291 menutrans Select\ &Line 选定行(&L)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
292 menutrans Select\ &Block 选定矩形块(&B)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
293 menutrans Select\ &All 全选(&A)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
294
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
295 " func! <SID>SpellPopup()
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
296 if !exists("g:menutrans_spell_change_ARG_to")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
297 let g:menutrans_spell_change_ARG_to = '将\ "%s"\ 更改为'
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
298 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
299 if !exists("g:menutrans_spell_add_ARG_to_word_list")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
300 let g:menutrans_spell_add_ARG_to_word_list = '将\ "%s"\ 添加到词典'
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
301 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
302 if !exists("g:menutrans_spell_ignore_ARG")
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
303 let g:menutrans_spell_ignore_ARG = '忽略\ "%s"'
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
304 endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
305 " }}}
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
306
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
307 " The GUI toolbar {{{1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 if has("toolbar")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 if exists("*Do_toolbar_tmenu")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 delfun Do_toolbar_tmenu
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 fun Do_toolbar_tmenu()
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
313 let did_toolbar_tmenu = 1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
314 tmenu ToolBar.Open 打开文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
315 tmenu ToolBar.Save 保存当前文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
316 tmenu ToolBar.SaveAll 全部保存
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
317 tmenu ToolBar.Print 打印
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
318 tmenu ToolBar.Undo 撤销
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
319 tmenu ToolBar.Redo 恢复
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
320 tmenu ToolBar.Cut 剪切到剪贴板
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
321 tmenu ToolBar.Copy 复制到剪贴板
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
322 tmenu ToolBar.Paste 从剪贴板粘贴
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
323 if !has("gui_athena")
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
324 tmenu ToolBar.Replace 查找和替换...
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
325 tmenu ToolBar.FindNext 查找下一个
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
326 tmenu ToolBar.FindPrev 查找上一个
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
327 endif
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
328 tmenu ToolBar.LoadSesn 加载会话
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
329 tmenu ToolBar.SaveSesn 保存当前会话
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
330 tmenu ToolBar.RunScript 运行 Vim 脚本
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
331 tmenu ToolBar.Make 生成当前项目 (:make)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
332 tmenu ToolBar.RunCtags 在当前目录生成标记(Tags) (!ctags -R .)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
333 tmenu ToolBar.TagJump 跳转到光标所在标记(Tag)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
334 tmenu ToolBar.Help Vim 帮助
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
335 tmenu ToolBar.FindHelp 在 Vim 帮助中查找
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 endfun
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337 endif
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
338 " }}}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 " Syntax menu
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
341 menutrans &Syntax 语法(&S)
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
342 " Syntax menuitems {{{1
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
343 menutrans &Show\ File\ Types\ in\ Menu 在菜单中显示文件类型(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
344 menutrans &Off 关闭(&O)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
345 menutrans &Manual 手动(&M)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
346 menutrans A&utomatic 自动(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
347 menutrans On/Off\ for\ &This\ File 只对这个文件开/关(&T)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
348 menutrans Co&lor\ Test 色彩测试(&L)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
349 menutrans &Highlight\ Test 高亮测试(&H)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
350 menutrans &Convert\ to\ HTML 转换成\ HTML(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
351
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
352 " From synmenu.vim
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
353 menutrans Set\ '&syntax'\ Only 只设置\ 'syntax'(&S)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
354 menutrans Set\ '&filetype'\ Too 也设置\ 'filetype'(&F)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
355 menutrans Oracle\ config Oracle\ 配置文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
356 menutrans Vim\ help\ file Vim\ 帮助文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
357 menutrans Vim\ script Vim\ 脚本
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
358 menutrans Viminfo\ file Vim\ 信息文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
359 menutrans Virata\ config Virata\ 配置文件
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
360 menutrans Whitespace\ (add) 增加加亮空格
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
361 " }}}
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
362
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
363 " Netrw menu {{{1
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
364 " Plugin loading may be after menu translation
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
365 " So giveup testing if Netrw Plugin is loaded
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
366 " if exists("g:loaded_netrwPlugin")
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
367 menutrans Help<tab><F1> 帮助<tab><F1>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
368 menutrans Bookmarks 书签
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
369 menutrans History 历史记录
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
370 menutrans Go\ Up\ Directory<tab>- 向上一级<tab>-
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
371 menutrans Apply\ Special\ Viewer<tab>x 用默认程序打开<tab>x
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
372 menutrans Bookmarks\ and\ History 书签和历史记录
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
373 " Netrw.Bookmarks and History menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
374 menutrans Bookmark\ Current\ Directory<tab>mb 添加书签<tab>mb
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
375 menutrans Bookmark\ Delete 移除书签
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
376 menutrans Goto\ Prev\ Dir\ (History)<tab>u 后退(历史记录)<tab>u
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
377 menutrans Goto\ Next\ Dir\ (History)<tab>U 前进(历史记录)<tab>U
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
378 menutrans List<tab>qb 完整列表<tab>qb
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
379 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
380 menutrans Browsing\ Control 控制
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
381 " Netrw.Browsing Control menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
382 menutrans Horizontal\ Split<tab>o 在拆分窗口打开<tab>o
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
383 menutrans Vertical\ Split<tab>v 在垂直拆分窗口打开<tab>v
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
384 menutrans New\ Tab<tab>t 在标签页打开<tab>t
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
385 menutrans Preview<tab>p 预览<tab>p
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
386 menutrans Edit\ File\ Hiding\ List<tab><ctrl-h> 编辑隐藏条件(Hiding\ List)<tab><ctrl-h>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
387 menutrans Edit\ Sorting\ Sequence<tab>S 编辑排序条件(Sorting\ Sequence)<tab>S
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
388 menutrans Quick\ Hide/Unhide\ Dot\ Files<tab>gh 快速隐藏/显示以\.开头的文件<tab>gh
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
389 menutrans Refresh\ Listing<tab><ctrl-l> 刷新<tab><ctrl-l>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
390 menutrans Settings/Options<tab>:NetrwSettings 设置/选项<tab>:NetrwSettings
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
391 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
392 menutrans Delete\ File/Directory<tab>D 删除文件/目录<tab>D
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
393 menutrans Edit\ File/Dir 编辑文件/目录
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
394 " Netrw.Edit File menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
395 menutrans Create\ New\ File<tab>% 新建文件<tab>%
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
396 menutrans In\ Current\ Window<tab><cr> 在当前窗口<tab><cr>
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
397 menutrans Preview\ File/Directory<tab>p 预览文件/目录<tab>p
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
398 menutrans In\ Previous\ Window<tab>P 在上一个窗口<tab>P
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
399 menutrans In\ New\ Window<tab>o 在新窗口<tab>o
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
400 menutrans In\ New\ Tab<tab>t 在新标签页<tab>t
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
401 menutrans In\ New\ Vertical\ Window<tab>v 在新垂直窗口<tab>v
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
402 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
403 menutrans Explore 浏览
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
404 " Netrw.Explore menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
405 menutrans Directory\ Name 指定目录名
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
406 menutrans Filenames\ Matching\ Pattern\ (curdir\ only)<tab>:Explore\ */ 匹配指定文件名模式(当前目录)<tab>:Explore\ */
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
407 menutrans Filenames\ Matching\ Pattern\ (+subdirs)<tab>:Explore\ **/ 匹配指定文件名模式(含子目录)<tab>:Explore\ **/
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
408 menutrans Files\ Containing\ String\ Pattern\ (curdir\ only)<tab>:Explore\ *// 内容包含指定字符串模式(当前目录)<tab>:Explore\ *//
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
409 menutrans Files\ Containing\ String\ Pattern\ (+subdirs)<tab>:Explore\ **// 内容包含指定字符串模式(含子目录)<tab>:Explore\ **//
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
410 menutrans Next\ Match<tab>:Nexplore 下一个匹配项<tab>:Nexplore
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
411 menutrans Prev\ Match<tab>:Pexplore 上一个匹配项<tab>:Pexplore
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
412 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
413 menutrans Make\ Subdirectory<tab>d 新建子目录<tab>d
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
414 menutrans Marked\ Files 选定的(Marked)文件
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
415 " Netrw.Marked Files menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
416 menutrans Mark\ File<tab>mf 选定(Mark)/取消<tab>mf
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
417 menutrans Mark\ Files\ by\ Regexp<tab>mr 用正则表达式(Regexp)选定<tab>mr
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
418 menutrans Hide-Show-List\ Control<tab>a 隐藏/显示<tab>a
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
419 menutrans Copy\ To\ Target<tab>mc 复制到目标<tab>mc
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
420 menutrans Delete<tab>D 删除<tab>D
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
421 menutrans Diff<tab>md 差异(Diff)<tab>md
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
422 menutrans Edit<tab>me 编辑<tab>me
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
423 menutrans Exe\ Cmd<tab>mx 作为参数运行命令<tab>mx
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
424 menutrans Move\ To\ Target<tab>mm 移动到目标<tab>mm
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
425 menutrans Obtain<tab>O 获取<tab>O
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
426 menutrans Print<tab>mp 打印<tab>mp
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
427 menutrans Replace<tab>R 替换<tab>R
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
428 menutrans Set\ Target<tab>mt 设置目标<tab>mt
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
429 menutrans Tag<tab>mT 生成标记文件(Tags)<tab>mT
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
430 menutrans Zip/Unzip/Compress/Uncompress<tab>mz 压缩/解压缩<tab>mz
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
431 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
432 menutrans Obtain\ File<tab>O 获取文件<tab>O
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
433 menutrans Style 显示风格
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
434 " Netrw.Style menuitems {{{2
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
435 menutrans Listing 列表形式
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
436 " Netrw.Style.Listing menuitems {{{3
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
437 menutrans thin<tab>i 紧凑<thin)<tab>i
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
438 menutrans long<tab>i 详细(long)<tab>i
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
439 menutrans wide<tab>i 多列(wide)<tab>i
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
440 menutrans tree<tab>i 树状(tree)<tab>i
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
441 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
442 menutrans Normal-Hide-Show 显示/隐藏
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
443 " Netrw.Style.Normal-Hide_show menuitems {{{3
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
444 menutrans Show\ All<tab>a 显示全部
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
445 menutrans Normal<tab>a 不显示隐藏文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
446 menutrans Hidden\ Only<tab>a 只显示隐藏文件
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
447 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
448 menutrans Reverse\ Sorting\ Order<tab>r 升序/降序<tab>r
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
449 menutrans Sorting\ Method 排序方式
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
450 " Netrw.Style.Sorting Method menuitems {{{3
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
451 menutrans Name<tab>s 文件名<tab>s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
452 menutrans Time<tab>s 修改时间<tab>s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
453 menutrans Size<tab>s 大小<tab>s
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
454 menutrans Exten<tab>s 扩展名<tab>s
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
455 " }}}
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
456 " }}}
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
457 menutrans Rename\ File/Directory<tab>R 重命名文件/目录<tab>R
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
458 menutrans Set\ Current\ Directory<tab>c 设置\ Vim\ 工作目录<tab>c
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
459 menutrans Targets 目标
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
460 " endif
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
461 " }}}
3507
8201108e9cf0 More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents: 1122
diff changeset
462
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
463 " Shellmenu menu
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
464 " Shellmenu menuitems {{{1
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
465 " From shellmenu.vim
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
466 menutrans ShellMenu Shell\ 菜单
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
467 menutrans Statements 语句
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
468 menutrans Test 测试
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
469 menutrans Existence 存在
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
470 menutrans Existence\ -\ file 存在\ -\ 文件
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
471 menutrans Existence\ -\ file\ (not\ empty) 存在\ -\ 文件(非空)
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
472 menutrans Existence\ -\ directory 存在\ -\ 目录
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
473 menutrans Existence\ -\ executable 存在\ -\ 可执行
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
474 menutrans Existence\ -\ readable 存在\ -\ 可读
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
475 menutrans Existence\ -\ writable 存在\ -\ 可写
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
476 menutrans String\ is\ empty 字符串为空
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
477 menutrans String\ is\ not\ empty 字符串非空
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
478 menutrans Strings\ are\ equal 字符串值相等
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
479 menutrans Strings\ are\ not\ equal 字符串值不相等
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
480 menutrans Value\ is\ greater\ than 值大于
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
481 menutrans Value\ is\ greater\ equal 值大于等于
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
482 menutrans Values\ are\ equal 值相等
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
483 menutrans Values\ are\ not\ equal 值不相等
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
484 menutrans Value\ is\ less\ than 值小于
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
485 menutrans Value\ is\ less\ equal 值小于等于
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
486 menutrans ParmSub 参数替换
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
487 menutrans Substitute\ word\ if\ parm\ not\ set 如果参数没设置就替换该词
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
488 menutrans Set\ parm\ to\ word\ if\ not\ set 参数未设置就设为该词
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
489 menutrans Substitute\ word\ if\ parm\ set\ else\ nothing 如果参数设置就替换该词,否则什么都不做
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
490 menutrans If\ parm\ not\ set\ print\ word\ and\ exit 如果参数没有设置就打印该词并退出
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
491 menutrans SpShVars Shell\ 特殊变量
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
492 menutrans Number\ of\ positional\ parameters 位置参数的数目
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
493 menutrans All\ positional\ parameters\ (quoted\ spaces) 所有位置参数(quoted\ spaces)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
494 menutrans All\ positional\ parameters\ (unquoted\ spaces) 所有位置参数(unquoted\ spaces)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
495 menutrans Flags\ set 设置标志
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
496 menutrans Return\ code\ of\ last\ command 返回前一条命令的代码
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
497 menutrans Process\ number\ of\ this\ shell shell\ 自身进程号
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
498 menutrans Process\ number\ of\ last\ background\ command 前一条后台命令的进程号
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
499 menutrans Environ 环境变量
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
500 menutrans Mark\ created\ or\ modified\ variables\ for\ export 标记修改的或者创建的变量为导出
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
501 menutrans Exit\ when\ command\ returns\ non-zero\ status 当命令返回非零状态时退出
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
502 menutrans Disable\ file\ name\ expansion 禁用文件名拓展
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
503 menutrans Locate\ and\ remember\ commands\ when\ being\ looked\ up 当查询命令时定位并记住该命令
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29403
diff changeset
504 menutrans All\ assignment\ statements\ are\ placed\ in\ the\ environment\ for\ a\ command 所有的赋值参数被放在命令的环境中
29403
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
505 menutrans Read\ commands\ but\ do\ not\ execute\ them 读命令但是不要执行
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
506 menutrans Exit\ after\ reading\ and\ executing\ one\ command 读并执行一个命令之后退出
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
507 menutrans Treat\ unset\ variables\ as\ an\ error\ when\ substituting 替换时把未设置命令视为错误
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
508 menutrans Print\ shell\ input\ lines\ as\ they\ are\ read 读\ shell\ 输入行的时候打印
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
509 menutrans Print\ commands\ and\ their\ arguments\ as\ they\ are\ executed 被执行时打印命令和参数
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
510 " }}}
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
511
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
512 " termdebug menu
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
513 " termdebug menuitems {{{1
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
514 " From termdebug.vim
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
515 menutrans Set\ breakpoint 设置断点
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
516 menutrans Clear\ breakpoint 清除断点
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
517 menutrans Run\ until 运行到
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
518 menutrans Evaluate 求值
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
519 menutrans WinBar 工具条
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
520 menutrans Step 单步
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
521 menutrans Next 下一个
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
522 menutrans Finish 结束
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
523 menutrans Cont 继续
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
524 menutrans Stop 停止
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
525 " }}}
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
526
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
527 " debchangelog menu
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
528 " debchangelog menuitems {{{1
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
529 " From debchangelog.vim
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
530 menutrans &Changelog 更新日志(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
531 menutrans &New\ Version 新版本(&N)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
532 menutrans &Add\ Entry 添加条目(&A)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
533 menutrans &Close\ Bug 关闭\ Bug(&C)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
534 menutrans Set\ &Distribution 设置发行版(&D)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
535 menutrans &unstable 不稳定(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
536 menutrans Set\ &Urgency 设置紧急(&U)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
537 menutrans &low 低(&L)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
538 menutrans &medium 中(&M)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
539 menutrans &high 高(&H)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
540 menutrans U&nfinalise 未完成(&N)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
541 menutrans &Finalise 完成(&F)
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
542 " }}}
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
543
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
544 " ada menu
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
545 " ada menuitems {{{1
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
546 " From ada.vim
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
547 menutrans Tag 标签
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
548 menutrans List 列表
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
549 menutrans Jump 跳转
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
550 menutrans Create\ File 创建文件
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
551 menutrans Create\ Dir 创建目录
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
552 menutrans Highlight 高亮
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
553 menutrans Toggle\ Space\ Errors 切换空格错误
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
554 menutrans Toggle\ Lines\ Errors 切换行错误
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
555 menutrans Toggle\ Rainbow\ Color 切换彩虹颜色
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
556 menutrans Toggle\ Standard\ Types 切换标准类型
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
557 " }}}
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
558
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
559 " gnat menu
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
560 " gnat menuitems {{{1
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
561 " From gnat.vim
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
562 menutrans Build 构建
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
563 menutrans Pretty\ Print 重新格式化代码
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
564 menutrans Find 查找
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
565 menutrans Set\ Projectfile\.\.\. 设置项目文件\.\.\.
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
566 " }}}
03e3b0034e31 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27788
diff changeset
567
3507
8201108e9cf0 More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents: 1122
diff changeset
568 let &cpo = s:keepcpo
8201108e9cf0 More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents: 1122
diff changeset
569 unlet s:keepcpo
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
570
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 6292
diff changeset
571 " vim: set ts=4 sw=4 noet fdm=marker fdc=4 :