Mercurial > vim
annotate runtime/lang/menu_ja_jp.euc-jp.vim @ 23396:b9d94953d3e6 v8.2.2241
patch 8.2.2241: Build with Ruby and clang may fail
Commit: https://github.com/vim/vim/commit/864a28b6a6ae4f1a56e230be26bc6d13e3f8b3d9
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 28 21:36:56 2020 +0100
patch 8.2.2241: Build with Ruby and clang may fail
Problem: Build with Ruby and clang may fail.
Solution: Adjust congigure and sed script. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7566)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 28 Dec 2020 21:45:04 +0100 |
parents | f8b0f1e42f2c |
children | a1effd6bb5ba |
rev | line source |
---|---|
7 | 1 " vi:set ts=8 sts=8 sw=8 tw=0: |
2 " | |
3 " Menu Translations: Japanese (EUC-JP) | |
7876
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
4502
diff
changeset
|
4 " Last Translator: MURAOKA Taro <koron.kaoriya@gmail.com> |
15033 | 5 " Last Change: 18-Jul-2018. |
3682 | 6 " |
15033 | 7 " Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>, |
14372 | 8 " vim-jp <http://vim-jp.org/> |
7876
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
4502
diff
changeset
|
9 " |
3682 | 10 " THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. |
7 | 11 |
12 " Quit when menu translations have already been done. | |
13 if exists("did_menu_trans") | |
14 finish | |
15 endif | |
16 let did_menu_trans = 1 | |
3507
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
17 let s:keepcpo= &cpo |
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
18 set cpo&vim |
7 | 19 |
20 scriptencoding euc-jp | |
21 | |
22 " Help menu | |
23 menutrans &Help ヘルプ(&H) | |
24 menutrans &Overview<Tab><F1> 概略(&O)<Tab><F1> | |
7876
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
4502
diff
changeset
|
25 menutrans &User\ Manual ユーザーマニュアル(&U) |
7 | 26 menutrans &How-to\ links &How-toリンク |
27 menutrans &Credits クレジット(&C) | |
28 menutrans Co&pying 著作権情報(&P) | |
29 menutrans &Sponsor/Register スポンサー/登録(&S) | |
30 menutrans O&rphans 孤児(&R) | |
31 menutrans &Version バージョン情報(&V) | |
32 menutrans &About Vimについて(&A) | |
33 | |
34 let g:menutrans_help_dialog = "ヘルプを検索したいコマンドもしくは単語を入力してください:\n\n挿入モードのコマンドには i_ を先頭に付加します. (例: i_CTRL-X)\nコマンドライン編集コマンドには c_ を先頭に付加します. (例: c_<Del>)\nオプションの名前には ' を付加します. (例: 'shiftwidth')" | |
35 | |
36 " File menu | |
37 menutrans &File ファイル(&F) | |
38 menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e | |
39 menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp | |
816 | 40 menutrans Open\ Tab\.\.\.<Tab>:tabnew タブページで開く<Tab>:tabnew |
7 | 41 menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew |
42 menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close | |
43 menutrans &Save<Tab>:w 保存(&S)<Tab>:w | |
44 menutrans Save\ &As\.\.\.<Tab>:sav 名前を付けて保存(&A)\.\.\.<Tab>:sav | |
45 menutrans Split\ &Diff\ with\.\.\. 差分表示(&D)\.\.\. | |
46 menutrans Split\ Patched\ &By\.\.\. パッチ結果を表示(&B)\.\.\. | |
47 menutrans &Print 印刷(&P) | |
48 menutrans Sa&ve-Exit<Tab>:wqa 保存して終了(&V)<Tab>:wqa | |
49 menutrans E&xit<Tab>:qa 終了(&X)<Tab>:qa | |
50 | |
51 " Edit menu | |
52 menutrans &Edit 編集(&E) | |
53 menutrans &Undo<Tab>u 取り消す(&U)<Tab>u | |
54 menutrans &Redo<Tab>^R もう一度やる(&R)<Tab>^R | |
55 menutrans Rep&eat<Tab>\. 繰り返す(&E)<Tab>\. | |
56 menutrans Cu&t<Tab>"+x 切り取り(&T)<Tab>"+x | |
57 menutrans &Copy<Tab>"+y コピー(&C)<Tab>"+y | |
58 menutrans &Paste<Tab>"+gP 貼り付け(&P)<Tab>"+gP | |
59 menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p | |
60 menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p | |
61 menutrans &Delete<Tab>x 消す(&D)<Tab>x | |
816 | 62 menutrans &Select\ All<Tab>ggVG 全て選択(&S)<Tab>ggVG |
7 | 63 menutrans &Find\.\.\. 検索(&F)\.\.\. |
64 menutrans &Find<Tab>/ 検索(&F)<Tab>/ | |
65 menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\. | |
66 menutrans Find\ and\ Rep&lace<Tab>:%s 置換(&L)<Tab>:%s | |
67 menutrans Find\ and\ Rep&lace<Tab>:s 置換(&L)<Tab>:s | |
68 "menutrans Options\.\.\. オプション(&O)\.\.\. | |
69 menutrans Settings\ &Window 設定ウィンドウ(&W) | |
836 | 70 menutrans Startup\ &Settings 起動時の設定(&S) |
7 | 71 |
72 " Edit/Global Settings | |
73 menutrans &Global\ Settings 全体設定(&G) | |
74 menutrans Toggle\ Pattern\ &Highlight<Tab>:set\ hls! | |
75 \ パターン強調切替(&H)<Tab>:set\ hls! | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
76 menutrans Toggle\ &Ignoring\ Case<Tab>:set\ ic! |
7 | 77 \ 大小文字区別切替(&I)<Tab>:set\ ic! |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
78 menutrans Toggle\ &Showing\ Matched\ Pairs<Tab>:set\ sm! |
7 | 79 \ マッチ表示切替(&S)<Tab>:set\ sm! |
80 menutrans &Context\ lines カーソル周辺行数(&C) | |
81 menutrans &Virtual\ Edit 仮想編集(&V) | |
82 menutrans Never 無効 | |
83 menutrans Block\ Selection ブロック選択時 | |
84 menutrans Insert\ mode 挿入モード時 | |
85 menutrans Block\ and\ Insert ブロック/挿入モード時 | |
86 menutrans Always 常時 | |
87 menutrans Toggle\ Insert\ &Mode<Tab>:set\ im! | |
88 \ 挿入(初心者)モード切替(&M)<Tab>:set\ im! | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
89 menutrans Toggle\ Vi\ C&ompatibility<Tab>:set\ cp! |
7 | 90 \ Vi互換モード切替(&O)<Tab>:set\ cp! |
91 menutrans Search\ &Path\.\.\. 検索パス(&P)\.\.\. | |
92 menutrans Ta&g\ Files\.\.\. タグファイル(&G)\.\.\. | |
93 " | |
94 " GUI options | |
95 menutrans Toggle\ &Toolbar ツールバー表示切替(&T) | |
96 menutrans Toggle\ &Bottom\ Scrollbar スクロールバー(下)表示切替(&B) | |
97 menutrans Toggle\ &Left\ Scrollbar スクロールバー(左)表示切替(&L) | |
98 menutrans Toggle\ &Right\ Scrollbar スクロールバー(右)表示切替(&R) | |
99 | |
100 let g:menutrans_path_dialog = "ファイルの検索パスを入力してください:\nディレクトリ名はカンマ ( , ) で区切ってください." | |
101 let g:menutrans_tags_dialog = "タグファイルの名前を入力してください:\n名前はカンマ ( , ) で区切ってください." | |
102 | |
103 " Edit/File Settings | |
104 | |
105 " Boolean options | |
106 menutrans F&ile\ Settings ファイル設定(&I) | |
107 menutrans Toggle\ Line\ &Numbering<Tab>:set\ nu! | |
108 \ 行番号表示切替(&N)<Tab>:set\ nu! | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
109 menutrans Toggle\ Relati&ve\ Line\ Numbering<Tab>:set\ rnu! |
2751 | 110 \ 相対行番号表示切替(&V)<Tab>:set\ rnu! |
7 | 111 menutrans Toggle\ &List\ Mode<Tab>:set\ list! |
112 \ リストモード切替(&L)<Tab>:set\ list! | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
113 menutrans Toggle\ Line\ &Wrapping<Tab>:set\ wrap! |
7 | 114 \ 行折返し切替(&W)<Tab>:set\ wrap! |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
115 menutrans Toggle\ W&rapping\ at\ word<Tab>:set\ lbr! |
7 | 116 \ 単語折返し切替(&R)<Tab>:set\ lbr! |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
117 menutrans Toggle\ Tab\ &Expanding<Tab>:set\ et! |
7 | 118 \ タブ展開切替(&E)<Tab>:set\ et! |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
119 menutrans Toggle\ &Auto\ Indenting<Tab>:set\ ai! |
7 | 120 \ 自動字下げ切替(&A)<Tab>:set\ ai! |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
121 menutrans Toggle\ &C-Style\ Indenting<Tab>:set\ cin! |
7 | 122 \ C言語字下げ切替(&C)<Tab>:set\ cin! |
123 | |
124 " other options | |
125 menutrans &Shiftwidth シフト幅(&S) | |
126 menutrans Soft\ &Tabstop ソフトウェアタブ幅(&T) | |
127 menutrans Te&xt\ Width\.\.\. テキスト幅(&X)\.\.\. | |
128 menutrans &File\ Format\.\.\. 改行記号選択(&F)\.\.\. | |
129 | |
130 let g:menutrans_textwidth_dialog = "テキストの幅('textwidth')を設定してください (0で整形を無効化):" | |
131 let g:menutrans_fileformat_dialog = "ファイル出力の際の改行記号の形式を選んでください." | |
132 let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\nキャンセル(&C)" | |
133 | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
134 menutrans Show\ C&olor\ Schemes\ in\ Menu 色テーマをメニューに表示(&O) |
7 | 135 menutrans C&olor\ Scheme 色テーマ選択(&O) |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
136 menutrans Show\ &Keymaps\ in\ Menu キーマップをメニューに表示(&K) |
7 | 137 menutrans &Keymap キーマップ(&K) |
138 menutrans None なし | |
139 | |
140 " Programming menu | |
141 menutrans &Tools ツール(&T) | |
142 menutrans &Jump\ to\ this\ tag<Tab>g^] タグジャンプ(&J)<Tab>g^] | |
143 menutrans Jump\ &back<Tab>^T 戻る(&B)<Tab>^T | |
144 menutrans Build\ &Tags\ File タグファイル作成(&T) | |
7876
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
4502
diff
changeset
|
145 menutrans &Make<Tab>:make ビルド(&M)<Tab>:make |
7 | 146 menutrans &List\ Errors<Tab>:cl エラーリスト(&L)<Tab>:cl |
147 menutrans L&ist\ Messages<Tab>:cl! メッセージリスト(&I)<Tab>:cl! | |
148 menutrans &Next\ Error<Tab>:cn 次のエラーへ(&N)<Tab>:cn | |
149 menutrans &Previous\ Error<Tab>:cp 前のエラーへ(&P)<Tab>:cp | |
150 menutrans &Older\ List<Tab>:cold 古いリスト(&O)<Tab>:cold | |
151 menutrans N&ewer\ List<Tab>:cnew 新しいリスト(&E)<Tab>:cnew | |
152 menutrans Error\ &Window エラーウィンドウ(&W) | |
153 menutrans &Update<Tab>:cwin 更新(&U)<Tab>:cwin | |
154 menutrans &Open<Tab>:copen 開く(&O)<Tab>:copen | |
155 menutrans &Close<Tab>:cclose 閉じる(&C)<Tab>:cclose | |
156 menutrans &Convert\ to\ HEX<Tab>:%!xxd HEXへ変換(&C)<Tab>:%!xxd | |
157 menutrans Conve&rt\ back<Tab>:%!xxd\ -r HEXから逆変換(&R)<Tab>%!xxd\ -r | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
158 menutrans Show\ Compiler\ Se&ttings\ in\ Menu コンパイラ設定をメニューに表示(&T) |
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
159 menutrans Se&t\ Compiler コンパイラ設定(&T) |
657 | 160 |
161 " Tools.Spelling Menu | |
162 menutrans &Spelling スペリング(&S) | |
163 menutrans &Spell\ Check\ On スペルチェック有効(&S) | |
2751 | 164 menutrans Spell\ Check\ &Off スペルチェック無効(&O) |
657 | 165 menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s |
166 menutrans To\ &Previous\ error<Tab>[s 前のエラー(&P)<Tab>[s | |
816 | 167 menutrans Suggest\ &Corrections<Tab>z= 修正候補(&C)<Tab>z= |
657 | 168 menutrans &Repeat\ correction<Tab>:spellrepall 修正を繰り返す(&R)<Tab>:spellrepall |
169 menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する | |
170 menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する | |
171 menutrans Set\ language\ to\ "en_ca" 言語を\ "en_ca"\ に設定する | |
172 menutrans Set\ language\ to\ "en_gb" 言語を\ "en_gb"\ に設定する | |
173 menutrans Set\ language\ to\ "en_nz" 言語を\ "en_nz"\ に設定する | |
174 menutrans Set\ language\ to\ "en_us" 言語を\ "en_us"\ に設定する | |
175 menutrans &Find\ More\ Languages 他の言語を検索する(&F) | |
7 | 176 |
14372 | 177 let g:menutrans_spell_change_ARG_to = '"%s"\ を変更' |
178 let g:menutrans_spell_add_ARG_to_word_list = '"%s"\ を単語リストに追加' | |
179 let g:menutrans_spell_ignore_ARG = '"%s"\ を無視' | |
180 | |
7 | 181 " Tools.Fold Menu |
182 menutrans &Folding 折畳み(&F) | |
183 " open close folds | |
184 menutrans &Enable/Disable\ folds<Tab>zi 有効/無効切替(&E)<Tab>zi | |
185 menutrans &View\ Cursor\ Line<Tab>zv カーソル行を表示(&V)<Tab>zv | |
186 menutrans Vie&w\ Cursor\ Line\ only<Tab>zMzx カーソル行だけを表示(&W)<Tab>zMzx | |
187 menutrans C&lose\ more\ folds<Tab>zm 折畳みを閉じる(&L)<Tab>zm | |
188 menutrans &Close\ all\ folds<Tab>zM 全折畳みを閉じる(&C)<Tab>zM | |
189 menutrans O&pen\ more\ folds<Tab>zr 折畳みを開く(&P)<Tab>zr | |
190 menutrans &Open\ all\ folds<Tab>zR 全折畳みを開く(&O)<Tab>zR | |
191 " fold method | |
192 menutrans Fold\ Met&hod 折畳み方法(&H) | |
193 menutrans M&anual 手動(&A) | |
194 menutrans I&ndent インデント(&N) | |
195 menutrans E&xpression 式評価(&X) | |
196 menutrans S&yntax シンタックス(&Y) | |
197 menutrans &Diff 差分(&D) | |
198 menutrans Ma&rker マーカー(&R) | |
199 " create and delete folds | |
200 menutrans Create\ &Fold<Tab>zf 折畳み作成(&F)<Tab>zf | |
201 menutrans &Delete\ Fold<Tab>zd 折畳み削除(&D)<Tab>zd | |
202 menutrans Delete\ &All\ Folds<Tab>zD 全折畳み削除(&A)<Tab>zD | |
203 " moving around in folds | |
204 menutrans Fold\ col&umn\ width 折畳みカラム幅(&U) | |
205 | |
206 menutrans &Update 更新(&U) | |
207 menutrans &Get\ Block ブロック抽出(&G) | |
208 menutrans &Put\ Block ブロック適用(&P) | |
209 | |
210 " Names for buffer menu. | |
211 menutrans &Buffers バッファ(&B) | |
212 menutrans &Refresh\ menu メニュー再読込(&R) | |
213 menutrans &Delete 削除(&D) | |
214 menutrans &Alternate 裏へ切替(&A) | |
215 menutrans &Next 次のバッファ(&N) | |
216 menutrans &Previous 前のバッファ(&P) | |
14372 | 217 let g:menutrans_no_file = "[無名]" |
7 | 218 |
219 " Window menu | |
220 menutrans &Window ウィンドウ(&W) | |
221 menutrans &New<Tab>^Wn 新規作成(&N)<Tab>^Wn | |
222 menutrans S&plit<Tab>^Ws 分割(&P)<Tab>^Ws | |
223 menutrans Sp&lit\ To\ #<Tab>^W^^ 裏バッファへ分割(&L)<Tab>^W^^ | |
224 menutrans Split\ &Vertically<Tab>^Wv 垂直分割(&V)<Tab>^Wv | |
225 menutrans Split\ File\ E&xplorer ファイルエクスプローラ(&X) | |
226 menutrans &Close<Tab>^Wc 閉じる(&C)<Tab>^Wc | |
227 menutrans Move\ &To 移動(&T) | |
228 menutrans &Top<Tab>^WK 上(&T)<Tab>^WK | |
229 menutrans &Bottom<Tab>^WJ 下(&B)<Tab>^WJ | |
230 menutrans &Left\ side<Tab>^WH 左(&L)<Tab>^WH | |
231 menutrans &Right\ side<Tab>^WL 右(&R)<Tab>^WL | |
232 menutrans Close\ &Other(s)<Tab>^Wo 他を閉じる(&O)<Tab>^Wo | |
233 menutrans Ne&xt<Tab>^Ww 次へ(&X)<Tab>^Ww | |
234 menutrans P&revious<Tab>^WW 前へ(&R)<Tab>^WW | |
235 menutrans &Equal\ Size<Tab>^W= 同じ高さに(&E)<Tab>^W= | |
236 menutrans &Max\ Height<Tab>^W_ 最大高に(&M)<Tab>^W_ | |
237 menutrans M&in\ Height<Tab>^W1_ 最小高に(&i)<Tab>^W1_ | |
238 menutrans Max\ &Width<Tab>^W\| 最大幅に(&W)<Tab>^W\| | |
239 menutrans Min\ Widt&h<Tab>^W1\| 最小幅に(&H)<Tab>^W1\| | |
240 menutrans Rotate\ &Up<Tab>^WR 上にローテーション(&U)<Tab>^WR | |
241 menutrans Rotate\ &Down<Tab>^Wr 下にローテーション(&D)<Tab>^Wr | |
242 menutrans Select\ Fo&nt\.\.\. フォント設定(&N)\.\.\. | |
243 | |
244 " The popup menu | |
245 menutrans &Undo 取り消す(&U) | |
246 menutrans Cu&t 切り取り(&T) | |
247 menutrans &Copy コピー(&C) | |
248 menutrans &Paste 貼り付け(&P) | |
249 menutrans &Delete 削除(&D) | |
250 menutrans Select\ Blockwise 矩形ブロック選択 | |
251 menutrans Select\ &Word 単語選択(&W) | |
4186 | 252 menutrans Select\ &Sentence 文選択(&S) |
253 menutrans Select\ Pa&ragraph 段落選択(&R) | |
7 | 254 menutrans Select\ &Line 行選択(&L) |
255 menutrans Select\ &Block ブロック選択(&B) | |
256 menutrans Select\ &All すべて選択(&A) | |
257 | |
258 " The GUI toolbar (for Win32 or GTK) | |
259 if has("toolbar") | |
260 if exists("*Do_toolbar_tmenu") | |
261 delfun Do_toolbar_tmenu | |
262 endif | |
263 fun Do_toolbar_tmenu() | |
264 tmenu ToolBar.Open ファイルを開く | |
265 tmenu ToolBar.Save 現在のファイルを保存 | |
266 tmenu ToolBar.SaveAll すべてのファイルを保存 | |
267 tmenu ToolBar.Print 印刷 | |
268 tmenu ToolBar.Undo 取り消し | |
269 tmenu ToolBar.Redo もう一度やる | |
270 tmenu ToolBar.Cut クリップボードへ切り取り | |
271 tmenu ToolBar.Copy クリップボードへコピー | |
272 tmenu ToolBar.Paste クリップボードから貼り付け | |
273 tmenu ToolBar.Find 検索... | |
274 tmenu ToolBar.FindNext 次を検索 | |
275 tmenu ToolBar.FindPrev 前を検索 | |
276 tmenu ToolBar.Replace 置換... | |
277 if 0 " disabled; These are in the Windows menu | |
278 tmenu ToolBar.New 新規ウィンドウ作成 | |
279 tmenu ToolBar.WinSplit ウィンドウ分割 | |
280 tmenu ToolBar.WinMax ウィンドウ最大化 | |
281 tmenu ToolBar.WinMin ウィンドウ最小化 | |
282 tmenu ToolBar.WinClose ウィンドウを閉じる | |
283 endif | |
284 tmenu ToolBar.LoadSesn セッション読込 | |
285 tmenu ToolBar.SaveSesn セッション保存 | |
286 tmenu ToolBar.RunScript Vimスクリプト実行 | |
287 tmenu ToolBar.Make プロジェクトをMake | |
288 tmenu ToolBar.Shell シェルを開く | |
289 tmenu ToolBar.RunCtags tags作成 | |
290 tmenu ToolBar.TagJump タグジャンプ | |
291 tmenu ToolBar.Help Vimヘルプ | |
292 tmenu ToolBar.FindHelp Vimヘルプ検索 | |
293 endfun | |
294 endif | |
295 | |
296 " Syntax menu | |
297 menutrans &Syntax シンタックス(&S) | |
13967
acc62d455f90
Runtime file and translation updates.
Christian Brabandt <cb@256bit.org>
parents:
7876
diff
changeset
|
298 menutrans &Show\ File\ Types\ in\ Menu 対応形式をメニューに表示(&S) |
7 | 299 menutrans Set\ '&syntax'\ only 'syntax'だけ設定(&S) |
300 menutrans Set\ '&filetype'\ too 'filetype'も設定(&F) | |
301 menutrans &Off 無効化(&O) | |
302 menutrans &Manual 手動設定(&M) | |
303 menutrans A&utomatic 自動設定(&U) | |
304 menutrans on/off\ for\ &This\ file | |
305 \ オン/オフ切替(&T) | |
306 menutrans Co&lor\ test カラーテスト(&L) | |
307 menutrans &Highlight\ test ハイライトテスト(&H) | |
308 menutrans &Convert\ to\ HTML HTMLへコンバート(&C) | |
309 | |
3507
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
310 let &cpo = s:keepcpo |
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
311 unlet s:keepcpo |
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
312 |
818 | 313 " filler to avoid the line above being recognized as a modeline |
314 " filler |