1# Copyright 2007-2020 Mitchell. See LICENSE.
2# Chinese localization file for Textadept.
3#
4# When translating this file into your native language, all translated text must
5# be encoded in UTF-8. For each "key = value" line, please replace the "value"
6# part with the translation of "key". Any whitespace around '=' is ignored.
7#
8# Note: for languages that support it, buttons and menu items may have a "_"
9# before any single letter, which means that pressing the "Alt" modifier key
10# along with that letter will activate (click) the button or menu item. You are
11# free to use or omit these "_" mnemonics from your translations as you see fit.
12
13# [core/file_io.lua]
14# The title of dialogs prompting the user to open a file.
15Open File = Open File
16# The error message displayed when a file's text encoding could not be detected
17# and when that text cannot be converted into UTF-8 for display.
18Encoding conversion failed. = Encoding conversion failed.
19# The title of dialogs prompting the user to save a file.
20Save File = Save File
21# The text displayed for untitled and unsaved buffers.
22Untitled = Untitled
23# The text displayed in a dialog when the user attempts to close a file with
24# unsaved changes.
25Close without saving? = 关闭而不保存?
26There are unsaved changes in = 有未保存的更改于
27Cancel = 取消(_C)
28Close without saving = 关闭而不保存(_W)
29# The text displayed in a dialog when a file has been externally modified.
30Reload? = Reload?
31Reload modified file? = Reload modified file?
32has been modified. Reload it? = has been modified. Reload it?
33Yes = 是(_Y)
34No = 否(_N)
35# The column label for lists of filenames in dialogs.
36Filename = 文件
37# The text displayed in a dialog when more than X files were found in the quick
38# open dialog.
39files or more were found. Showing the first = files or more were found. Showing the first
40File Limit Exceeded = File Limit Exceeded
41OK = 确定(_O)
42
43# [core/keys.lua]
44# The statusbar text shown when the user has pressed a key that is part of a key
45# chain (e.g. "Ctrl+Alt+V" followed by "S"). Textadept is waiting for another
46# keypress.
47Keychain: = Keychain:
48# The statusbar text shown when the user started a key chain, but the next
49# keypress was unrecognized. Thus the key sequence is invalid.
50Invalid sequence = Invalid sequence
51
52# [core/ui.lua]
53# The name of the buffer Textadept prints messages and error messages to.
54[Message Buffer] = [消息缓冲区]
55# The column label for lists of buffer names in dialogs.
56Name = 名称
57# The title of the dialog for switching between open buffers.
58Switch Buffers = 切换缓冲区
59# The line-ending, indentation, and positional buffer information shown in the
60# statusbar.
61CRLF = CRLF
62LF = LF
63Tabs: = Tabs:
64Spaces: = 空格:
65Line: = 行:
66Col: = 列:
67# The statusbar text shown when the user resets Textadept's internal Lua state.
68Lua reset = 重置Lua
69# The text displayed in a dialog when the user attempts to quit Textadept with
70# unsaved changes in open buffers.
71Quit without saving? = 不保存直接退出?
72The following buffers are unsaved: = 以下缓冲区未保存:
73Quit without saving = 不保存直接退出(_W)
74
75# [modules/textadept/bookmarks.lua]
76# The text displayed in the dialog for selecting a bookmark to jump to.
77Select Bookmark = 选择书签
78Bookmark = 书签
79
80# [modules/textadept/editing.lua]
81# The text displayed in the dialog for jumping to a particular line.
82Go To = Go To
83Line Number: = 行号:
84# The statusbar message displayed when a shell command used to filter text
85# through returns a non-zero status (indicating failure).
86returned non-zero status = returned non-zero status
87
88# [modules/textadept/find.lua]
89# The text displayed in the find & replace pane.
90Find: = 查找(_F):
91Replace: = 替换(_E):
92Filter: = Filt_er:
93# The button text displayed in the GUI find & replace pane.
94Find Next = 查找下一个(_N)
95Find Prev = 查找上一个(_P)
96Replace = 替换(_R)
97Replace All = 替换所有(_A)
98Match case = 区分大小写(_M)
99Whole word = 整个单词(_W)
100Regex = 正则(_X)
101In files = 在文件中(_I)
102# The button text displayed in the terminal version's find & replace pane.
103# These should be as short as possible, as most terminals are 80 characters in
104# width.
105[Next] = [下一个]
106[Prev] = [上一个]
107[Replace] = [替换]
108[All] = [所有]
109Case(F1) = 大小写(F1)
110Word(F2) = 单词(F2)
111Regex(F3) = 正则(F3)
112Files(F4) = 文件(F4)
113# The statusbar text shown when a search has wrapped back to the beginning of
114# the buffer.
115Search wrapped = Search wrapped
116# Part of the statusbar text "Match X/Y" shown during searches.
117Match = Match
118# The statusbar text shown when the text to search for was not found.
119No results found = 未找到结果
120# The title of the dialog for selecting files to search in.
121Select Directory = 在文件中查找
122# The name of the buffer Textadept prints "Find in Files" results to.
123[Files Found Buffer] = [Files Found Buffer]
124# The "Find in Files" label for the directory searched.
125Directory: = Directory:
126# The "Find in Files" result for text found in a binary file. This result is
127# shown in place of binary buffer text.
128Binary file matches. = 二进制文件匹配。
129# The message displayed when a "Find in Files" search is aborted by the user.
130Find in Files aborted = 在文件中查找已中止
131# The statusbar text shown after performing a "Replace All".
132replacement(s) made = replacement(s) made
133
134# [modules/textadept/macros.lua]
135# The message displayed in the statusbar while a macro is being recorded.
136Macro recording = Macro recording
137# The message displayed in the statusbar when finished recording a macro.
138Macro stopped recording = Macro stopped recording
139# The title of the dialog for selecting a file to save a recorded macro in.
140Save Macro = Save Macro
141# The title of the dialog for selecting a file to load a recorded macro from.
142Load Macro = Load Macro
143
144# [modules/textadept/menu.lua]
145# Typical "File" menu items for creating new files, opening, saving, and closing
146# existing files, opening and saving sessions, and quitting Textadept.
147File = 文件(_F)
148New = 新建(_N)
149Open = 打开(_O)
150Open Recent... = 打开最近文件(_R)...
151Reload = 重新载入(_L)
152Save = 保存(_S)
153Save As = 另存为(_A)
154Save All = 全部保存
155Close = 关闭(_C)
156Close All = 关闭所有
157Load Session... = 读取会话(_D)...
158Save Session... = 保存会话(_E)...
159Quit = 退出(_Q)
160# Typical "Edit" menu items for manipulating buffer text and source code.
161Edit = 编辑(_E)
162Undo = 撤销(_U)
163Redo = 恢复(_R)
164Cut = 剪切(_T)
165Copy = 复制(_C)
166Paste = 粘贴(_P)
167Paste Reindent = Paste Re_indent
168Duplicate Line = 重复该行(_L)
169Delete = 删除(_D)
170Delete Word = 删除单词(_E)
171Select All = 全选(_A)
172Match Brace = 匹配括号(_M)
173Complete Word = 补全单词(_W)
174Toggle Block Comment = 设置区块注释(_B)
175Transpose Characters = 颠倒字符(_R)
176Join Lines = 合并行(_J)
177# The menu item for filtering text through a shell command and replacing input
178# text with that command's output text.
179Filter Through = _Filter Through
180# Menu items for selecting text and entities.
181Select = 选择(_S)
182Select between Matching Delimiters = 选择匹配分隔符之间的部分(_M)
183Select between XML Tags = 选择_XML标签之间的部分
184Select in XML Tag = 选择XML标签内的部分(_T)
185Select Word = 选择单词(_W)
186Select Line = 选择行(_L)
187Select Paragraph = 选择段落(_G)
188# Menu items for transforming selected text.
189Selection = 选区(_N)
190Upper Case Selection = 大写选区(_U)
191Lower Case Selection = 小写选区(_L)
192Enclose as XML Tags = 包裹为成对的_XML标签
193Enclose as Single XML Tag = 包裹为单一的XML标签(_T)
194Enclose in Single Quotes = 用单引号包裹(_Q)
195Enclose in Double Quotes = 用双引号包裹(_D)
196Enclose in Parentheses = 用圆括号包裹(_P)
197Enclose in Brackets = 用方括号包裹(_B)
198Enclose in Braces = 用花括号包裹(_R)
199Move Selected Lines Up = 上移选中行(_M)
200Move Selected Lines Down = 下移选中行(_W)
201# Menu items for navigating through position history.
202History = _History
203Navigate Backward = Navigate _Backward
204Navigate Forward = Navigate _Forward
205Record Location = _Record Location
206Clear History = _Clear History
207# Menu item for opening user preferences.
208Preferences = Pre_ferences
209# Menu items for searching and replacing text within buffers and files.
210Search = 搜索(_S)
211Find = 查找(_F)
212Find Previous = 查找上一个(_P)
213Find Incremental = 增量查找(_I)
214Find in Files = 在文件中查找(_L)
215Goto Next File Found = 转到下一个找到的文件(_T)
216Goto Previous File Found = 转到上一个找到的文件(_S)
217# Menu item for jumping to a specific line in a buffer.
218Jump to = 跳转到(_J)
219# Menu items for various tools and utilities for editing and working with source
220# code.
221Tools = 工具(_T)
222# Menu item for opening Textadept's Lua command entry.
223Command Entry = 命令输入(_E)
224# Menu item for selecting a menu command to run.
225Select Command = 选择命令(_M)
226# Menu items for running or compiling the current source file.
227Run = 运行(_R)
228Compile = 编译(_C)
229# Menu item for setting command line arguments for run and compile commands.
230Set Arguments... = 设置参数(_A)...
231# The text displayed in the dialog for specifying command line arguments for run
232# and compile commands.
233Command line arguments = 命令行参数
234For Run: = 运行参数:
235For Compile: = 编译参数:
236# Menu item for building the current project.
237Build = 构建(_D)
238# Menu item for running the current project's tests/test suite.
239Run tests = R_un tests
240# Menu item for stopping a run, compile, build, or test shell command.
241Stop = 停止(_T)
242# Menu items for navigating through recognized shell command errors.
243Next Error = 下一个错误(_N)
244Previous Error = 上一个错误(_P)
245# Menu items for working with bookmarked lines in buffers.
246Bookmarks = 书签(_B)
247Toggle Bookmark = 设置书签(_T)
248Clear Bookmarks = 清空书签(_C)
249Next Bookmark = 下一个书签(_N)
250Previous Bookmark = 上一个书签(_P)
251Goto Bookmark... = 转到书签(_G)...
252# Menu items for recording, playing back, saving, and loading macros.
253Macros = _Macros
254Start/Stop Recording = Start/Stop _Recording
255Play = _Play
256Save... = Sa_ve...
257Load... = _Load...
258# Menu items for launching a quick open dialog in order to open files in certain
259# directories. A quick open dialog lists all files in a directory and its
260# subdirectories and filters the list down as the user types.
261Quick Open = 快速打开(_O)
262Quickly Open User Home = 快速打开用户主文件夹(_U)
263Quickly Open Textadept Home = 快速打开_Textadept主文件夹
264Quickly Open Current Directory = 快速打开当前目录(_C)
265Quickly Open Current Project = 快速打开当前工程(_P)
266# Menu items for working with snippets, insert-able pieces of code that act like
267# templates with placeholders for user input.
268Snippets = 片段(_S)
269Insert Snippet... = _Insert Snippet...
270Expand Snippet/Next Placeholder = _Expand Snippet/Next Placeholder
271Previous Snippet Placeholder = _Previous Snippet Placeholder
272Cancel Snippet = _Cancel Snippet
273Complete Trigger Word = Complete Trigger _Word
274# Menu items for auto-completing programming language symbols and showing
275# documentation for them (e.g. typing `textadept.editing.` followed by a
276# "Complete Symbol" would show all possible completions for that symbol).
277Complete Symbol = 自动完成符号(_C)
278Show Documentation = 查看文档(_D)
279# Menu item for inspecting the character under the caret. The character's byte
280# information, the lexer used to syntax-highlight that character, and the
281# character's lexical style (e.g. string, comment, number, etc.) are shown.
282Show Style = 查看样式(_Y)
283Lexer = Lexer
284Style = 样式
285# Menu items for navigating between open buffers.
286Buffer = 缓冲区(_B)
287Next Buffer = 下一缓冲区(_N)
288Previous Buffer = 上一缓冲区(_P)
289Switch to Buffer... = 切换缓冲区(_S)...
290# Menu items for changing the indentation settings for the current buffer.
291Indentation = 缩进(_I)
292Tab width: 2 = Tab宽度: _2
293Tab width: 3 = Tab宽度: _3
294Tab width: 4 = Tab宽度: _4
295Tab width: 8 = Tab宽度: _8
296Toggle Use Tabs = 使用Tab(_T)
297Convert Indentation = 转换缩进(_C)
298# Menu item for changing the end-of-line mode for the current buffer.
299EOL Mode = _EOL模式
300# Menu items for changing the encoding of the current buffer's text.
301Encoding = 编码(_N)
302UTF-8 Encoding = _UTF-8编码
303ASCII Encoding = _ASCII编码
304CP-1252 Encoding = _CP-1252编码
305UTF-16 Encoding = UTF-1_6编码
306# Menu items for changing the way the current buffer is displayed.
307Toggle Wrap Mode = 自动换行(_W)
308Toggle View Whitespace = 显示/隐藏空格(_S)
309# Menu items for changing the syntax-highlighting language for the current
310# buffer.
311Select Lexer... = 选择_Lexer...
312# Menu items for navigating between views, splitting them, closing them, and
313# resizing them.
314View = 视图(_V)
315Next View = 下一视图(_N)
316Previous View = 上一视图(_P)
317Split View Horizontal = 横向拆分视图(_H)
318Split View Vertical = 纵向拆分视图(_V)
319Unsplit View = 合并视图(_U)
320Unsplit All Views = 合并所有视图(_A)
321Grow View = 扩大视图区域(_G)
322Shrink View = 缩小视图区域(_K)
323# Menu item for folding (showing/hiding) the block of code the starts on the
324# current line. Fold-able blocks of code are typically classes, functions, and
325# control structures.
326Toggle Current Fold = 折叠/展开(_F)
327# Menu item for showing line indentation markers.
328Toggle Show Indent Guides = Toggle Show In_dent Guides
329# Menu item for allowing the caret to move beyond line ends and into "virtual
330# space".
331Toggle Virtual Space = 开启/关闭虚拟空格(_V)
332# Menu items for changing the zoom factor of displayed buffer text.
333Zoom In = 放大(_I)
334Zoom Out = 缩小(_O)
335Reset Zoom = 重置缩放(_R)
336# Menu items for getting help on Textadept and its Lua API documentation.
337Help = 帮助(_H)
338Show Manual = 打开手册(_M)
339Show LuaDoc = 打开_LuaDoc
340About = 关于(_A)
341# The text displayed in the dialog for running an arbitrary menu command. Any
342# key binding associated with commands are also shown.
343Run Command = 运行命令
344Command = 命令
345Key Binding = 按键绑定
346
347# [modules/textadept/file_types.lua]
348# The title of the dialog for selecting a lexer for the current buffer. Lexers
349# perform syntax highlighting of source code.
350Select Lexer = 选择Lexer
351
352# [modules/textadept/session.lua]
353# The title of the dialog for selecting a session file to load.
354Load Session = 读取会话
355# The text displayed in a dialog when files in a loaded session were not found.
356Session Files Not Found = 找不到会话文件
357The following session files were not found = 找不到以下会话文件
358# The title of the dialog for selecting a session file to save.
359Save Session = 保存会话
360
361# [modules/textadept/snippets.lua]
362# The text displayed in the dialog for selecting a snippet to insert. Snippets
363# have a trigger word (pressing the "Tab" key after that word inserts the
364# snippet) and snippet text.
365Select Snippet = 选择片段
366Trigger = 触发
367Snippet Text = 片段文本
368# The message displayed in the statusbar while a snippet is being inserted.
369Snippet active = Snippet active
370