From ce8be339ecbcc79654e35d5eff4b7f8e9a8f28f0 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 10 Oct 2005 10:57:15 +0000 Subject: [PATCH] Added Chinese language files. SVN revision: 1505 --- elcode_zh-CN.html | 319 ++++++++++++++++++++++++++++++++++ elogd-zh_CN-GB2312.cfg | 14 ++ elogd-zh_CN-UTF8.cfg | 26 +++ eloglang.zh_CN-GB2312 | 381 +++++++++++++++++++++++++++++++++++++++++ eloglang.zh_CN-UTF8 | 381 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 1121 insertions(+) create mode 100644 elcode_zh-CN.html create mode 100644 elogd-zh_CN-GB2312.cfg create mode 100644 elogd-zh_CN-UTF8.cfg create mode 100644 eloglang.zh_CN-GB2312 create mode 100644 eloglang.zh_CN-UTF8 diff --git a/elcode_zh-CN.html b/elcode_zh-CN.html new file mode 100644 index 00000000..8dc34d6f --- /dev/null +++ b/elcode_zh-CN.html @@ -0,0 +1,319 @@ + + + + +ELCode 帮助 + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

ELCode 帮助


+ELCode 是一组特殊的标记,用于格式化一条 ELOG 记录。它和 HTML 语法类似, +但更简单。标记包含在方括号 [ 和 ] 之间,而不是 < 和 >。一些标记 +用于改变文本格式,比如粗体、大小和颜色,另一些标记允许嵌入 URL 和图片。 +ELCode 标记和 BBCode +类似,有时也称为 vB code

+

文本格式化


如后的 ELCode 标记用于基本的文本格式化:

+ + + + + + + + + + + + + + +
[b]Hello[/b] + 将会生成粗体文本 Hello
[u]Hello[/u] + 将会生成带下划线的文本 Hello
[i]Hello[/i] + 将会生成斜体文本 Hello
[color=red]Hello[/color]
+[color=#FF0000]Hello[/color] +
都会生成这样的文本 Hello。 +你可以指定已知的颜色名称,比如 white, red, green, lightgreen 或者一个十六进制的 +RGB 值,其头两位数字 (00-FF) 表示红色部分,第二部分表示绿色,第三部分表示蓝色。 +
[size=5]Hello[/size] + 将会生成这样的文本 Hello。 +文本的大小用象素表示,范围从 1 到 29 。这儿是一些例子: +size=1, +size=2, +size=3, +size=4, +size=5, +size=6. +
[font=comic]Hello[/font] + 会改变字体。这儿是一些示例: +comic, +courier, +arial, +tahoma, +times, +verdana
+(译注:这些字体对于中文显示没有什么变化,仅对英文而言。) +
[center]Hello[/center] +
会使文本中心对齐。

+ +标记可以嵌套,比如

+ +[size=5][color=red][b]Hello[/b][/color][/size]

+ +将会生成 Hello。 +注意,标记的嵌套必须按正确的顺序进行,这样写

+ +[b][color=red]这是错误的![/b][/color]

+ +是错误的,因为 [b] 标记先开始的,因此也必须最后结束它,应该在 + [/color] 标识之后,比如这样

+ +[b][color=red]这是正确的[/color][/b]

+ +

回避标记字符


+有时,你并不想 ELCode 标记被解释,比如在论坛里想解释一些标记的示例时。 +为避免解释这些标记,你要在标记前加上反斜杆 "\",比如用 \[b] 来代替 [b]。 +

+

表情符


+笑脸或表情是用简短的代码表达一些感情的图象,比如 :) 表示高兴。它们在 + elog 里被自动转换成小的图象,比如

+ + + +

+ +
:) + :( + ;) +
:)) + :D + ?) +
;( + :] + :O +
8)8o + X( +
:P +

+ +

引用


有两种引用方式,带参考的和不带参考的:

+ +
    + +
  • [quote]原始文本[/quote] 方式包含一些文本会生成一个 +不带参考的引用,例如:

    + + + + +
    Quote:
    原始文本
    + +

  • [quote="Mr. Bean"]原始文本[/quote] 方式包含一 +些文本会生成带参考的引用,例如:

    + + + + +
    Mr. Bean wrote: +
    原始文本

    + +注:使用参考的引用必须要在引用标识里给出参考 "Mr. Bean" 。

    +

+ + +

固定宽度文本


+为使用类似 Courier 字体输出固定宽度的文本,将它包含在如后标记中

+ +[code]Hello[/code]

+ +这可能会在计算机代码列表或者含有制表符以方便阅读的时候有用,比如

+ + +

+Item                Price     Availability
+====                =====     ============
+
+Apples               0.50     1000
+Grapefruits          2.50     100
+Sun-dried Tomatos   12.50     20
+

+versus

+ +Item Price Availability
+==== ===== ============
+
+Apples 0.50 1000
+Grapefruits 2.50 100
+Sun-dried Tomatos 12.50 20
+

+ + +

Lists


+一列没有排序的列表可以象这样使用标记 [list][/list]

+ +[list]
+[*]Ocean
+[*]Forest
+[*]Desert
+[/list]
+

+ +来生成

+ +

    +
  • Ocean +
  • Forest +
  • Desert +
+

+ +在排序列表中,你可以指定在每个项目前使用什么标识。为了生成带数字的列表, +你可以这样使用 [list=1][/list]:

+ +[list=1]
+[*]Ocean
+[*]Forest
+[*]Desert
+[/list]
+

+ +来生成

+ +

    +
  1. Ocean +
  2. Forest +
  3. Desert +
+

+ +为生成按字母排序的列表,这样使用 [list=a][/list]

+ +[list=a]
+[*]Ocean
+[*]Forest
+[*]Desert
+[/list]
+

+ +to produce

+ +

    +
  1. Ocean +
  2. Forest +
  3. Desert +
+

+ +其它可用的选项,如 [list=A] 使用大写字母,[list=I] 用于使用罗马 +字母数字。

+ + +

创建链接


+超链接或统一格式的资源地址 (URL) 可以用多种方式生成:

+ +

    + +
  • 任何语法正确的 URL 会自动被转换成链接,甚至不需要加上开头的 http://。 +因此 midas.psi.ch/elog 会变成 +midas.psi.ch/elog,而 +http://www.cern.ch 会变成 +http://www.cern.ch.

    + +

  • 为显式指定一个 URL,将它这样包含即可 +[url]www.cern.ch[/url]

    + +

  • 如果链接需要包含一些不同于 URL 的文本,需这样指定 +[url=http://www.cern.ch]Text[/url],比如

    + +进入 [url=http://www.cern.ch]CERN[/url]

    + +会生成:

    + +进入 CERN

    + +

  • 电子邮件的地址与此类似。它们可以这样 +[email]john.doe@domain.org[/email] 写,或者简单地这样 +john.dow@domain.org 都会转换成 +john.doe@domain.org

    + +

嵌入图像


有两种方式在文本中嵌入图像:

+ +

    + +
  • 图像可以用标记 [img]URL[/img] 嵌入到文本中,此处的 URL 必须 +指向一个在网络上可用的图象。注意,这仅对那些可以通过 Web 浏览器可访问的图象而 +言。如果你没有运行一个公共的 Web 服务,你本地硬盘上的图象不可以从外部访问。你 +可以这样嵌入 elog 的图标:

    + +[img]http://midas.psi.ch/elogs/elog.png[/img]

    + +它将会生成 + +

  • 你可以上载一幅图像作为你的 elog 记录的附件并用这样的方式链接

    + +[img]elog:/1[/img]

    + +此处的 elog:/1 表示第一个附件,elog:/2表示第二个,以此类推。如果 +你用这种方式参考你的附件图像,它们就不会再在记录的结尾出现了。

    + +

+ + +
+ +
+ +ELOG 主页 +
+ + diff --git a/elogd-zh_CN-GB2312.cfg b/elogd-zh_CN-GB2312.cfg new file mode 100644 index 00000000..e9ebaaf7 --- /dev/null +++ b/elogd-zh_CN-GB2312.cfg @@ -0,0 +1,14 @@ +[global] +port = 8080 +Language = zh_CN-GB2312 +charset = gb2312 + +[电子记录本演示] +Theme = default +Comment = 实验记录本演示 +Attributes = 作者, 类别 +Options 类别 = 仪器调试, 实验设置, 值班安排, 数据采集, 数据分析, 结果讨论, 其它 +Required Attributes = 作者, 类别 +Page Title = ELOG - $subject +Reverse sort = 1 +Quick filter = Date, Type diff --git a/elogd-zh_CN-UTF8.cfg b/elogd-zh_CN-UTF8.cfg new file mode 100644 index 00000000..7c7c3edc --- /dev/null +++ b/elogd-zh_CN-UTF8.cfg @@ -0,0 +1,26 @@ +[global] +port = 8080 +Language = zh_CN-UTF8 +charset = utf-8 + +[鐢靛瓙璁板綍鏈紨绀篯 +Theme = default +Comment = 瀹為獙璁板綍鏈紨绀 +Attributes = 浣滆, 绫诲埆 +Options 绫诲埆 = 浠櫒璋冭瘯, 瀹為獙璁剧疆, 鍊肩彮瀹夋帓, 鏁版嵁閲囬泦, 鏁版嵁鍒嗘瀽, 缁撴灉璁ㄨ, 鍏跺畠 +Required Attributes = 浣滆, 绫诲埆 +Page Title = ELOG - $subject +Reverse sort = 1 +Quick filter = Date, Type + +[demo] +Theme = default +Comment = General linux tips & tricks +Attributes = Author, Type, Category, Subject +Options Type = Routine, Software Installation, Problem Fixed, Configuration, Other +Options Category = General, Hardware, Software, Network, Other +Extendable Options = Category +Required Attributes = Author, Type +Page Title = ELOG - $subject +Reverse sort = 1 +Quick filter = Date, Type diff --git a/eloglang.zh_CN-GB2312 b/eloglang.zh_CN-GB2312 new file mode 100644 index 00000000..809d4bc1 --- /dev/null +++ b/eloglang.zh_CN-GB2312 @@ -0,0 +1,381 @@ +# +# Chinese (Simplified) translation by Exaos.Lee@gmail.com +# + +New = 新建 +Edit = 编辑 +Delete = 删除 +Reply = 回复 +Find = 查找 +Last day = 最近一天 +Last 10 = 最近 10 条 +Config = 配置 +Change password = 修改密码 +Logout = 注销 +Help = 帮助 +Back = 返回 +Submit = 提交 +First = 最先 +First entry = 第一条 +Last = 最后 +Last entry = 最后一条 +Previous = 前一条 +Previous entry = 前一条记录 +Next = 下一条 +Next entry = 下一条记录 +Copy to = 拷贝到 +Move to = 移动到 +Save = 保存 +Cancel = 取消 +Go to = 跳转 +Wrong password = 密码错误 +Please login = 请登陆 +Username = 用户 +Password = 密码 +Old password = 旧密码 +New password = 亲密码 +ELOG password = ELOG 密码 +ELOG change password = ELOG 修改密码 +Please enter password to obtain write access = 请输入密码以获得修改权限 +Please enter password to obtain administration access = 请输入密码以获得管理权限 +Several logbooks are defined on this host = 此主机打开了多个记录本 +Please select the one to connect to = 请选择链接其一 +Change password for user = 修改用户密码 +Logged in as = 登陆为: +Entry date = 记录日期 +with = 和 +This is the last entry = 这是最后一条记录 +This is the first entry = 这是第一条记录 +Email sent to = 发送电子邮件到 +Email notification suppressed = Email 通知被挂起 +please select = 请选择 +Submit as HTML text = 以 HTML 方式提交 +Suppress Email notification = 挂起 Email 通知 +Resubmit as new entry = 重新提交为新记录 +Attachment = 附件 +Attachments = 附件 +Reply to this = 回复此内容 +In reply to = 此回复是针对 +Fields marked with = 内容标识为 +are required = 是必须的 +Please check that it exists and elogd has write access = 请检查它是否存在并且 elogd 有修改的权限 +Error: Attribute %s not supplied = 错误:没有提供 %s 属性 +Please go back and enter the %s field = 请返回并填写 %s 内容 +Please use your browser's back button to go back = 请使用你浏览器的返回按钮返回 +Only user %s can edit this entry = 只有用户 %s 可以修改这条记录 +ELOG find = ELOG 查找 +Find = 查找 +Search = 搜索 +Reset Form = 重置表单 +Summary only = 仅显示摘要 +Show attachments = 显示附件 +Printable output = 打印输出 +Sort in reverse order = 按逆序排序 +Start date = 开始日期 +End date = 结束日期 +Year = 年 +Text = 文本 +Search all logbooks = 搜索所有的记录本 +Last %d days = 最近 %d 天 +Last %d entries = 最近 %d 条记录 +No entries found = 未发现记录 +A new entry has been submitted on %s = 新的记录已经提交到 %s +Logbook = 记录本 +Copy ELog entry = 拷贝 Elog 记录 +Yes = 确定 +No = 取消 +Error deleting message: status = 删除记录错误:状态 +Error: Command "%s" not allowed = 错误:命令 "%s" 被禁止 +Cannot open file %s = 无法打开文件 %s +Cannot write to %s = 无法写入文件 %s +No SMTP host defined in [global] section of configuration file = 配置文件的 [global] 区域中没有定义 SMTP 主机 +Only user %s can edit this entry = 只有用户 %s 可以编辑此条记录 +Display threads = 显示主题 +Logbook is empty = 记录本是空的 +Download = 下载 +and all its replies = 和它所有的回复 +Message ID = 记录的 ID +Not logged in = 没有登陆 +Login = 登陆 +Page %d of %d = 第 %d 页/共 %d 页 +all entries = 所有记录 +Login name = 登陆名称 +Full name = 全名 +ELOG user config = ELOG 用户配置 +ELOG new user = ELOG 新用户 +Admin = 管理 +Select user = 选择用户 +Remove user = 删除用户 +New user = 创建新用户 +Retype new password = 再次输入新密码 +New passwords do not match, please retype = 两次输入的新密码不匹配,请重新输入 +Retype password = 重新输入密码 +exists already = 已经存在 +Register as new user = 注册新用户 +A new ELOG user has been registered on %s = 在 %s 有新的用户注册 +Email = 电子邮件 +User "%s" registered on logbook "%s" = 用户 "%s" 已经在记录本 "%s" 上注册 +User [%s] has been deleted = 用户 [%s] 已被删除 +Hit following URL to activate that account = 点击下面的 URL 来激活相应帐号 +ELOG registration = ELOG 注册 +Your ELOG account has been activated on host = 你的 ELOG 帐号已经在主机上激活 +You can access it at = 你可以访问 +Are you sure to delete these messages? = 你真的决定删除这些记录吗? +Select = 选择 +All entries = 所有记录 +Day = 天 +Week = 周 +Month = 月 +Show last = 显示最近 +Goto page = 跳到页面 +All = 所有 +Display = 显示 +entries per page = 记录每页 +Toggle all = 反向选择全部 +Selected entries = 已选记录 +Enable email notifications = 打开电子邮件通报 +A old entry has been updated on %s = %s 里的一条旧记录已经被更新 +Collapse = 折叠 +Expand = 展开 +Full = 全文 +Summary = 摘要 +Threaded = 主题 +Filters = 过滤条件 +Mode = 模式 +Options = 选项 +Error: start date after end date = 错误:开始日期在结束日期之后 +and all their replies = 和它们所有的回复 +Upload = 上载 +Requested = 请求的 +Registration request on logbook "%s" = 记录本 "%s" 里的注册请求 +A new ELOG user wants to register on "%s" = 新的 ELOG 用户希望注册到 "%s" +%d messages = %d 条记录 +and its replies = 和它的回复 +and their replies = 和它们的回复 +moved successfully from "%s" to "%s" = 成功地将 "%s" 移动到 "%s" +copied successfully from "%s" to "%s" = 成功地将 "%s" 拷贝到 "%s" +Only user %s can delete this entry = 只有用户 %s 可以删除此记录 +Search text also in attributes = 同时搜索属性中的文本 +Goto logbook selection page = 返回到记录本选择页 +Login as different user = 以另一用户登陆 +User "%s" has no access to logbook "%s" = 用户 "%s" 没有访问记录本 "%s" 的权限 +Date = 日期 +ID = ID +Remember me on this computer = 在此计算机上记录我的信息 +Forgot password? = 忘记密码了吧? +Email address "%s" not registered = 电子邮件地址 "%s" 没有被注册 +ELOG password recovery = ELOG 密码恢复 +No Email address registered with user name "%s" = 用户 "%s" 没有提供电子邮件地址 +Error sending Email via "%s" = 无法通过 "%s" 发送电子邮件 +A new password for user "%s" has been sent to %s = 用户 "%s" 的新密码已经发送到 %s +Forgot = 忘记 +User "%s" registered on host "%s" = 用户 "%s" 注册到机器 "%s" +Registration request on host "%s" = 注册请求来自机器 "%s" +A new password has been created for you on host %s = 已经为你在机器 %s 上创建了一个新的密码 +Enter your user name or email address = 编辑你的用户名或者电子邮件地址 +Password recovery for ELOG %s = ELOG %s 的密码恢复 +Host = 主机 +Your ELOG account has been activated = 你的 ELOG 帐号已经被激活 +Maximum number of attachments reached = 达到最大附件数 +Invalid user name "%s" = 无效的用户名 "%s" +on = 在 +Entry is currently edited by = 记录正在被编辑,编辑者为 +recipients = 回执 +Suppress shell execution = 禁止执行脚本 +Maximum number of replies (%d) exceeded = 超过最大的回复数 (%d) +Update = 更新 +Change %s = 修改 %s +Add new option here = 新的选项 +Add %s = 增加 %s +User name "%s" not registered = 用户 "%s" 没有注册 +Synchronization = 同步 +Error: Value %s not allowed for boolean attributes = 错误:值 %s 不允许为布尔属性 +Error: Attribute option %s not existing = 错误:属性选项 %s 不存在 +Last submission = 最近子任务 +Expand all = 展开所有 +Synchronize = 同步 +No mirror server defined in configuration file = 配置文件中没有定义镜像服务器 +user = 用户 +Entry can only be edited %1.2lg hours after creation = 记录只能在被创建 %1.2lg 小时之后才能够再编辑 +Display full entries = 显示全部记录内容 +No entry selected for deletion = 没有选择要删除的记录 +Cannot read entry from local logbook = 无法从本地记录本中读取记录 +Cannot create socket = 无法创建端口 +Cannot resolve host name "%s" = 无法解析主机名 "%s" +Cannot connect to host %s, port %d = 无法连接到主机 %s 端口 %d +Cannot receive "%s" = 无法接收 "%s" +Received wrong entry id "%d" = 收到错误的记录 ID 号 "%d" +Entry #%d is locked on remote server = 记录 #%d 被远程服务器锁定 +Cannot save remote entry locally = 无法将远程记录保存在本地 +local = 本地 +remote = 远程 +Please delete %s or %s entry to resolve conflict = 请选择删除记录 %s 或 %s 以解决冲突问题 +Error sending local entry = 发送本地记录错误 +Local entry submitted = 本地记录已提交 +Error deleting remote entry = 删除远程记录错误 +New entry cannot be written to directory "%s" = 新记录无法写入路径 "%s" +Entry %s cannot be read from logbook "%s" = 记录 "%s" 无法从记录本 "%s" 中读取 +No entry selected = 没有选择记录 +One entry = 一条记录 +This entry has been deleted = 此记录已被删除 +by = 通过 +Entries = 记录 +Cannot connect to remote server "%s" = 无法连接远程服务器 "%s" +Remote server is not an ELOG server = 远程服务器不是 ELOG 服务器 +Incorrect remote ELOG server version %s = 不正确的远程服务版本 %s +User "%s" has no access to remote logbook = 用户 "%s" 没有访问远程记录本的权限 +Passwords for user "%s" do not match locally and remotely = 用户 "%s" 本地和远程的密码不匹配 +Error accessing remote logbook = 访问远程记录本错误 +Invalid HTTP header = 无效的 HTTP 字头 +No user name supplied to access remote logbook = 未提供访问远程记录本的用户名 +Synchronizing logbook %s with server "%s" = 将记录本 %s 与服务器 "%s" 同步 +Configuration has been changed locally and remotely = 本地和远程的配置已经改变 +Please merge manually to resolve conflict = 请手动合并以解决冲突 +Logbook "%s" does not exist on remote server = 记录本 "%s" 并不存在于远程服务器上 +Entry has been changed locally and remotely = 本地和远程的记录已经改变 +Entry deleted locally = 已删除本地记录 +Changed local entry ID to %d = 改变本地记录 ID 号为 %d +Entry deleted remotely = 已删除远程记录 +All entries identical = 所有记录匹配 +Invalid mirror_id or entry_date = 无效的 mirror_id 或 entry_date +Synchronize all logbooks = 同步所有的记录本 +Calendar = 日历 +Remote entry received = 已接收远程记录 +Pick a date = 选择一个日期 +Please select at least one '%s' = 请选择至少一个 '%s' +Please select a '%s' = 请选择一个 '%s' +Please enter month for attribute '%s' = 请为属性 '%s' 输入月份 +Please enter day for attribute '%s' = 请为属性 '%s' 输入日期 +Please enter year for attribute '%s' = 请为属性 '%s' 输入年份 +Please enter attribute '%s' = 请输入属性 '%s' +Entry time = 记录时间 +Start = 开始 +End = 结束 +After = 之后 +to = 到 +Before = 之前 +Previous Year = 前一年 +Next Year = 后一年 +Please enter numeric value for '%s' = 请为 '%s' 键入数值 +Error: Attribute %s must be numeric = 错误:属性 %s 必须是数值 +3 Months = 3 个月 +6 Months = 6 个月 +Error sending local message = 发送本地消息错误 +Error receiving message = 接收消息错误 +Are you sure to delete this entry? = 你决定要删除此记录吗? +Import = 导入 +CSV filename = CSV 文件名 +Field separator = 分隔符 +Edit entry = 编辑记录 +Delete entry = 删除记录 +CSV Import = 导入 CSV +ELOG CSV import = 导入 ELOG CSV +Derive attributes from CSV file = 从 CSV 文件中获取属性 +Comma = 逗号 +Semicolon = 分号 +Ignore first line = 忽略第一行 +Preview import = 输入预览 +CSV import preview of %s = %s 的 CSV 输入预览 +Too many attributes in CSV file = CSV 文件中有太多的属性 +%d entries successfully imported = 成功导入 %d 条记录 +No 'Attributes' option present in %s = 在 %s 不存在 'Attributes' 项目 +CSV ("," separated) = CSV (以 "," 分隔) +CSV (";" separated) = CSV (以 ";" 分隔) +Auto detect = 自动探测 +From = 来自 +text = 文本 +Column header '%s' must be present in CSV file = 列字头 '%s' 必须存在于 CSV 文件中 +Fill text body = 填写文本内容 +Please re-enter filename = 请重新输入文件名 +Last x = 最后的 x +Activate = 激活 +Entry has been modified = 记录已被修改 +No attachment file specified = 没有指定附件文件 +Submit modified ELOG entry? = 提交修改后的 ELOG 记录吗? +Delete this logbook = 删除此记录本 +Rename this logbook = 重命名此记录本 +Create new logbook = 创建新的记录本 +Syntax error in config file = 配置文件中语法错误 +Email notification = 电子邮件通知 +Are you sure to delete logbook "%s"? = 你决定删除记录本 "%s" 吗? +Logbook "%s" exists already, please choose different name = 记录本 "%s" 已经存在,请选择其它名称 +Rename logbook = 重命名记录本 +Enter new logbook name = 输入新的记录本名称 +Logbook name = 记录本名称 +Use existing logbook as template = 使用现有的记录本作为模板 +none = 无 +URL is redirected to: = URL 重导向到: +Remote config should be received = 应该接收远程配置 +Local entry should be submitted = 应该提交本地记录 +Remote entry should be received = 应该接收远程记录 +Local entry = 本地记录 +%s should be deleted = %s 应该被删除 +Entry should be deleted locally = 应该删除本地记录 +Local entry ID should be changed to %d = 本地记录 ID 应该更改为 %d +Remote entry = 远程记录 +Entry should be deleted remotely = 应该删除远程记录 +Click here to delete this entry = 点出此处删除此记录 +Maximum number of attribute options exceeded = 超过最大允许的属性项目个数 +Please increase MAX_N_LIST in elogd.c and recompile = 请增加 elogd.c 文件中 MAX_N_LIST 的值,然后重新编译 +You can "steal" the lock by editing this entry = 你可以通过编辑此记录“悄悄”移去锁定属性 +Several logbooks groups are defined on this host = 此主机已经定义了几个记录本的组 +Please select one to list the logbooks in that group = 请选择一个组来显示其中的记录本 +No logbook defined on this server = 此服务器没有定义记录本 +Goto ELOG home page = 跳转到 ELOG 主页 +Please enter "%s" = 请输入 "%s" +Change config file = 修改配置文件 +Click here to delete %d entries = 请点击此处删除 %d 条记录 +Please check that it exists and elogd has write access and disk is not full = 请检查它是否存在及 elogd 是否有对它修改的权限并且磁盘是否已满 +Show = 显示 +Hide = 隐藏 +Hide all = 隐藏所有 +Show all = 显示所有 +This logbook requires authentication = 此记录本需要认证 +Attachment file "%s" empty or not found = 附件文件 "%s" 为空或者没有找到 +Case sensitive = 大小写敏感 +List = 列表 +Date must be between 1970 and 2037 = 日期必须在 1970 到 2037 之间 +up = 向上 +down = 向下 +stop = 停止 +Entry = 记录 +name may not contain blanks = 名称不应该包括空格 +regular expressions = 正则表达式 +Text fields are treated as %s = 文本区域作为 %s +Subscribe to logbooks = 订阅记录本 +enable automatic email notifications = 打开自动电子邮件通知功能 +Set all = 设置所有 +Set none = 设置无 +Set current time = 设置当前时间 +Please enter hour for attribute '%s' = 请为属性 '%s' 输入小时 +Please enter minute for attribute '%s' = 请为属性 '%s' 输入分钟 +Please enter second for attribute '%s' = 请为属性 '%s' 输入秒 +No admin user has been defined in configuration file = 配置文件中没有定义管理用户名 +Duplicate = 重复 +Preview = 预览 +Show only new entries = 仅显示新的记录 +New entries since = 自此时间以来的新记录 +Author = 作者 +Type = 类型 +Catogery = 类别 +Subject = 主题 +Show all entries = 显示所有记录 +Enter name of hypelink = 输入超链接名称 +Enter URL of hypelink = 输入超链接的 URL +bold text = 粗体文本 +italics text = 斜体文本 +underlined text = 下划线文本 +centered text = 中央对齐文本 +insert hyperlink = 插入超文本 +insert email = 插入电子邮件 +insert quote = 插入引用 +insert list = 插入列表 +insert code = 插入代码 +insert image = 插入图片 +show the smiley bar = 显示表情符列表条 +FONT = 字体 +SIZE = 大小 +COLOR = 颜色 +Encoding = 编码格式 +Hide attachments = 隐藏附件 +HelpELCode = ELCode帮助 diff --git a/eloglang.zh_CN-UTF8 b/eloglang.zh_CN-UTF8 new file mode 100644 index 00000000..302c6c95 --- /dev/null +++ b/eloglang.zh_CN-UTF8 @@ -0,0 +1,381 @@ +# +# Chinese (Simplified) translation by Exaos.Lee@gmail.com +# + +New = 鏂板缓 +Edit = 缂栬緫 +Delete = 鍒犻櫎 +Reply = 鍥炲 +Find = 鏌ユ壘 +Last day = 鏈杩戜竴澶 +Last 10 = 鏈杩 10 鏉 +Config = 閰嶇疆 +Change password = 淇敼瀵嗙爜 +Logout = 娉ㄩ攢 +Help = 甯姪 +Back = 杩斿洖 +Submit = 鎻愪氦 +First = 鏈鍏 +First entry = 绗竴鏉 +Last = 鏈鍚 +Last entry = 鏈鍚庝竴鏉 +Previous = 鍓嶄竴鏉 +Previous entry = 鍓嶄竴鏉¤褰 +Next = 涓嬩竴鏉 +Next entry = 涓嬩竴鏉¤褰 +Copy to = 鎷疯礉鍒 +Move to = 绉诲姩鍒 +Save = 淇濆瓨 +Cancel = 鍙栨秷 +Go to = 璺宠浆 +Wrong password = 瀵嗙爜閿欒 +Please login = 璇风櫥闄 +Username = 鐢ㄦ埛 +Password = 瀵嗙爜 +Old password = 鏃у瘑鐮 +New password = 浜插瘑鐮 +ELOG password = ELOG 瀵嗙爜 +ELOG change password = ELOG 淇敼瀵嗙爜 +Please enter password to obtain write access = 璇疯緭鍏ュ瘑鐮佷互鑾峰緱淇敼鏉冮檺 +Please enter password to obtain administration access = 璇疯緭鍏ュ瘑鐮佷互鑾峰緱绠$悊鏉冮檺 +Several logbooks are defined on this host = 姝や富鏈烘墦寮浜嗗涓褰曟湰 +Please select the one to connect to = 璇烽夋嫨閾炬帴鍏朵竴 +Change password for user = 淇敼鐢ㄦ埛瀵嗙爜 +Logged in as = 鐧婚檰涓猴細 +Entry date = 璁板綍鏃ユ湡 +with = 鍜 +This is the last entry = 杩欐槸鏈鍚庝竴鏉¤褰 +This is the first entry = 杩欐槸绗竴鏉¤褰 +Email sent to = 鍙戦佺數瀛愰偖浠跺埌 +Email notification suppressed = Email 閫氱煡琚寕璧 +please select = 璇烽夋嫨 +Submit as HTML text = 浠 HTML 鏂瑰紡鎻愪氦 +Suppress Email notification = 鎸傝捣 Email 閫氱煡 +Resubmit as new entry = 閲嶆柊鎻愪氦涓烘柊璁板綍 +Attachment = 闄勪欢 +Attachments = 闄勪欢 +Reply to this = 鍥炲姝ゅ唴瀹 +In reply to = 姝ゅ洖澶嶆槸閽堝 +Fields marked with = 鍐呭鏍囪瘑涓 +are required = 鏄繀椤荤殑 +Please check that it exists and elogd has write access = 璇锋鏌ュ畠鏄惁瀛樺湪骞朵笖 elogd 鏈変慨鏀圭殑鏉冮檺 +Error: Attribute %s not supplied = 閿欒锛氭病鏈夋彁渚 %s 灞炴 +Please go back and enter the %s field = 璇疯繑鍥炲苟濉啓 %s 鍐呭 +Please use your browser's back button to go back = 璇蜂娇鐢ㄤ綘娴忚鍣ㄧ殑杩斿洖鎸夐挳杩斿洖 +Only user %s can edit this entry = 鍙湁鐢ㄦ埛 %s 鍙互淇敼杩欐潯璁板綍 +ELOG find = ELOG 鏌ユ壘 +Find = 鏌ユ壘 +Search = 鎼滅储 +Reset Form = 閲嶇疆琛ㄥ崟 +Summary only = 浠呮樉绀烘憳瑕 +Show attachments = 鏄剧ず闄勪欢 +Printable output = 鎵撳嵃杈撳嚭 +Sort in reverse order = 鎸夐嗗簭鎺掑簭 +Start date = 寮濮嬫棩鏈 +End date = 缁撴潫鏃ユ湡 +Year = 骞 +Text = 鏂囨湰 +Search all logbooks = 鎼滅储鎵鏈夌殑璁板綍鏈 +Last %d days = 鏈杩 %d 澶 +Last %d entries = 鏈杩 %d 鏉¤褰 +No entries found = 鏈彂鐜拌褰 +A new entry has been submitted on %s = 鏂扮殑璁板綍宸茬粡鎻愪氦鍒 %s +Logbook = 璁板綍鏈 +Copy ELog entry = 鎷疯礉 Elog 璁板綍 +Yes = 纭畾 +No = 鍙栨秷 +Error deleting message: status = 鍒犻櫎璁板綍閿欒锛氱姸鎬 +Error: Command "%s" not allowed = 閿欒锛氬懡浠 "%s" 琚姝 +Cannot open file %s = 鏃犳硶鎵撳紑鏂囦欢 %s +Cannot write to %s = 鏃犳硶鍐欏叆鏂囦欢 %s +No SMTP host defined in [global] section of configuration file = 閰嶇疆鏂囦欢鐨 [global] 鍖哄煙涓病鏈夊畾涔 SMTP 涓绘満 +Only user %s can edit this entry = 鍙湁鐢ㄦ埛 %s 鍙互缂栬緫姝ゆ潯璁板綍 +Display threads = 鏄剧ず涓婚 +Logbook is empty = 璁板綍鏈槸绌虹殑 +Download = 涓嬭浇 +and all its replies = 鍜屽畠鎵鏈夌殑鍥炲 +Message ID = 璁板綍鐨 ID +Not logged in = 娌℃湁鐧婚檰 +Login = 鐧婚檰 +Page %d of %d = 绗 %d 椤/鍏 %d 椤 +all entries = 鎵鏈夎褰 +Login name = 鐧婚檰鍚嶇О +Full name = 鍏ㄥ悕 +ELOG user config = ELOG 鐢ㄦ埛閰嶇疆 +ELOG new user = ELOG 鏂扮敤鎴 +Admin = 绠$悊 +Select user = 閫夋嫨鐢ㄦ埛 +Remove user = 鍒犻櫎鐢ㄦ埛 +New user = 鍒涘缓鏂扮敤鎴 +Retype new password = 鍐嶆杈撳叆鏂板瘑鐮 +New passwords do not match, please retype = 涓ゆ杈撳叆鐨勬柊瀵嗙爜涓嶅尮閰嶏紝璇烽噸鏂拌緭鍏 +Retype password = 閲嶆柊杈撳叆瀵嗙爜 +exists already = 宸茬粡瀛樺湪 +Register as new user = 娉ㄥ唽鏂扮敤鎴 +A new ELOG user has been registered on %s = 鍦 %s 鏈夋柊鐨勭敤鎴锋敞鍐 +Email = 鐢靛瓙閭欢 +User "%s" registered on logbook "%s" = 鐢ㄦ埛 "%s" 宸茬粡鍦ㄨ褰曟湰 "%s" 涓婃敞鍐 +User [%s] has been deleted = 鐢ㄦ埛 [%s] 宸茶鍒犻櫎 +Hit following URL to activate that account = 鐐瑰嚮涓嬮潰鐨 URL 鏉ユ縺娲荤浉搴斿笎鍙 +ELOG registration = ELOG 娉ㄥ唽 +Your ELOG account has been activated on host = 浣犵殑 ELOG 甯愬彿宸茬粡鍦ㄤ富鏈轰笂婵娲 +You can access it at = 浣犲彲浠ヨ闂 +Are you sure to delete these messages? = 浣犵湡鐨勫喅瀹氬垹闄よ繖浜涜褰曞悧锛 +Select = 閫夋嫨 +All entries = 鎵鏈夎褰 +Day = 澶 +Week = 鍛 +Month = 鏈 +Show last = 鏄剧ず鏈杩 +Goto page = 璺冲埌椤甸潰 +All = 鎵鏈 +Display = 鏄剧ず +entries per page = 璁板綍姣忛〉 +Toggle all = 鍙嶅悜閫夋嫨鍏ㄩ儴 +Selected entries = 宸查夎褰 +Enable email notifications = 鎵撳紑鐢靛瓙閭欢閫氭姤 +A old entry has been updated on %s = %s 閲岀殑涓鏉℃棫璁板綍宸茬粡琚洿鏂 +Collapse = 鎶樺彔 +Expand = 灞曞紑 +Full = 鍏ㄦ枃 +Summary = 鎽樿 +Threaded = 涓婚 +Filters = 杩囨护鏉′欢 +Mode = 妯″紡 +Options = 閫夐」 +Error: start date after end date = 閿欒锛氬紑濮嬫棩鏈熷湪缁撴潫鏃ユ湡涔嬪悗 +and all their replies = 鍜屽畠浠墍鏈夌殑鍥炲 +Upload = 涓婅浇 +Requested = 璇锋眰鐨 +Registration request on logbook "%s" = 璁板綍鏈 "%s" 閲岀殑娉ㄥ唽璇锋眰 +A new ELOG user wants to register on "%s" = 鏂扮殑 ELOG 鐢ㄦ埛甯屾湜娉ㄥ唽鍒 "%s" +%d messages = %d 鏉¤褰 +and its replies = 鍜屽畠鐨勫洖澶 +and their replies = 鍜屽畠浠殑鍥炲 +moved successfully from "%s" to "%s" = 鎴愬姛鍦板皢 "%s" 绉诲姩鍒 "%s" +copied successfully from "%s" to "%s" = 鎴愬姛鍦板皢 "%s" 鎷疯礉鍒 "%s" +Only user %s can delete this entry = 鍙湁鐢ㄦ埛 %s 鍙互鍒犻櫎姝よ褰 +Search text also in attributes = 鍚屾椂鎼滅储灞炴т腑鐨勬枃鏈 +Goto logbook selection page = 杩斿洖鍒拌褰曟湰閫夋嫨椤 +Login as different user = 浠ュ彟涓鐢ㄦ埛鐧婚檰 +User "%s" has no access to logbook "%s" = 鐢ㄦ埛 "%s" 娌℃湁璁块棶璁板綍鏈 "%s" 鐨勬潈闄 +Date = 鏃ユ湡 +ID = ID +Remember me on this computer = 鍦ㄦ璁$畻鏈轰笂璁板綍鎴戠殑淇℃伅 +Forgot password? = 蹇樿瀵嗙爜浜嗗惂锛 +Email address "%s" not registered = 鐢靛瓙閭欢鍦板潃 "%s" 娌℃湁琚敞鍐 +ELOG password recovery = ELOG 瀵嗙爜鎭㈠ +No Email address registered with user name "%s" = 鐢ㄦ埛 "%s" 娌℃湁鎻愪緵鐢靛瓙閭欢鍦板潃 +Error sending Email via "%s" = 鏃犳硶閫氳繃 "%s" 鍙戦佺數瀛愰偖浠 +A new password for user "%s" has been sent to %s = 鐢ㄦ埛 "%s" 鐨勬柊瀵嗙爜宸茬粡鍙戦佸埌 %s +Forgot = 蹇樿 +User "%s" registered on host "%s" = 鐢ㄦ埛 "%s" 娉ㄥ唽鍒版満鍣 "%s" +Registration request on host "%s" = 娉ㄥ唽璇锋眰鏉ヨ嚜鏈哄櫒 "%s" +A new password has been created for you on host %s = 宸茬粡涓轰綘鍦ㄦ満鍣 %s 涓婂垱寤轰簡涓涓柊鐨勫瘑鐮 +Enter your user name or email address = 缂栬緫浣犵殑鐢ㄦ埛鍚嶆垨鑰呯數瀛愰偖浠跺湴鍧 +Password recovery for ELOG %s = ELOG %s 鐨勫瘑鐮佹仮澶 +Host = 涓绘満 +Your ELOG account has been activated = 浣犵殑 ELOG 甯愬彿宸茬粡琚縺娲 +Maximum number of attachments reached = 杈惧埌鏈澶ч檮浠舵暟 +Invalid user name "%s" = 鏃犳晥鐨勭敤鎴峰悕 "%s" +on = 鍦 +Entry is currently edited by = 璁板綍姝e湪琚紪杈戯紝缂栬緫鑰呬负 +recipients = 鍥炴墽 +Suppress shell execution = 绂佹鎵ц鑴氭湰 +Maximum number of replies (%d) exceeded = 瓒呰繃鏈澶х殑鍥炲鏁 (%d) +Update = 鏇存柊 +Change %s = 淇敼 %s +Add new option here = 鏂扮殑閫夐」 +Add %s = 澧炲姞 %s +User name "%s" not registered = 鐢ㄦ埛 "%s" 娌℃湁娉ㄥ唽 +Synchronization = 鍚屾 +Error: Value %s not allowed for boolean attributes = 閿欒锛氬 %s 涓嶅厑璁镐负甯冨皵灞炴 +Error: Attribute option %s not existing = 閿欒锛氬睘鎬ч夐」 %s 涓嶅瓨鍦 +Last submission = 鏈杩戝瓙浠诲姟 +Expand all = 灞曞紑鎵鏈 +Synchronize = 鍚屾 +No mirror server defined in configuration file = 閰嶇疆鏂囦欢涓病鏈夊畾涔夐暅鍍忔湇鍔″櫒 +user = 鐢ㄦ埛 +Entry can only be edited %1.2lg hours after creation = 璁板綍鍙兘鍦ㄨ鍒涘缓 %1.2lg 灏忔椂涔嬪悗鎵嶈兘澶熷啀缂栬緫 +Display full entries = 鏄剧ず鍏ㄩ儴璁板綍鍐呭 +No entry selected for deletion = 娌℃湁閫夋嫨瑕佸垹闄ょ殑璁板綍 +Cannot read entry from local logbook = 鏃犳硶浠庢湰鍦拌褰曟湰涓鍙栬褰 +Cannot create socket = 鏃犳硶鍒涘缓绔彛 +Cannot resolve host name "%s" = 鏃犳硶瑙f瀽涓绘満鍚 "%s" +Cannot connect to host %s, port %d = 鏃犳硶杩炴帴鍒颁富鏈 %s 绔彛 %d +Cannot receive "%s" = 鏃犳硶鎺ユ敹 "%s" +Received wrong entry id "%d" = 鏀跺埌閿欒鐨勮褰 ID 鍙 "%d" +Entry #%d is locked on remote server = 璁板綍 #%d 琚繙绋嬫湇鍔″櫒閿佸畾 +Cannot save remote entry locally = 鏃犳硶灏嗚繙绋嬭褰曚繚瀛樺湪鏈湴 +local = 鏈湴 +remote = 杩滅▼ +Please delete %s or %s entry to resolve conflict = 璇烽夋嫨鍒犻櫎璁板綍 %s 鎴 %s 浠ヨВ鍐冲啿绐侀棶棰 +Error sending local entry = 鍙戦佹湰鍦拌褰曢敊璇 +Local entry submitted = 鏈湴璁板綍宸叉彁浜 +Error deleting remote entry = 鍒犻櫎杩滅▼璁板綍閿欒 +New entry cannot be written to directory "%s" = 鏂拌褰曟棤娉曞啓鍏ヨ矾寰 "%s" +Entry %s cannot be read from logbook "%s" = 璁板綍 "%s" 鏃犳硶浠庤褰曟湰 "%s" 涓鍙 +No entry selected = 娌℃湁閫夋嫨璁板綍 +One entry = 涓鏉¤褰 +This entry has been deleted = 姝よ褰曞凡琚垹闄 +by = 閫氳繃 +Entries = 璁板綍 +Cannot connect to remote server "%s" = 鏃犳硶杩炴帴杩滅▼鏈嶅姟鍣 "%s" +Remote server is not an ELOG server = 杩滅▼鏈嶅姟鍣ㄤ笉鏄 ELOG 鏈嶅姟鍣 +Incorrect remote ELOG server version %s = 涓嶆纭殑杩滅▼鏈嶅姟鐗堟湰 %s +User "%s" has no access to remote logbook = 鐢ㄦ埛 "%s" 娌℃湁璁块棶杩滅▼璁板綍鏈殑鏉冮檺 +Passwords for user "%s" do not match locally and remotely = 鐢ㄦ埛 "%s" 鏈湴鍜岃繙绋嬬殑瀵嗙爜涓嶅尮閰 +Error accessing remote logbook = 璁块棶杩滅▼璁板綍鏈敊璇 +Invalid HTTP header = 鏃犳晥鐨 HTTP 瀛楀ご +No user name supplied to access remote logbook = 鏈彁渚涜闂繙绋嬭褰曟湰鐨勭敤鎴峰悕 +Synchronizing logbook %s with server "%s" = 灏嗚褰曟湰 %s 涓庢湇鍔″櫒 "%s" 鍚屾 +Configuration has been changed locally and remotely = 鏈湴鍜岃繙绋嬬殑閰嶇疆宸茬粡鏀瑰彉 +Please merge manually to resolve conflict = 璇锋墜鍔ㄥ悎骞朵互瑙e喅鍐茬獊 +Logbook "%s" does not exist on remote server = 璁板綍鏈 "%s" 骞朵笉瀛樺湪浜庤繙绋嬫湇鍔″櫒涓 +Entry has been changed locally and remotely = 鏈湴鍜岃繙绋嬬殑璁板綍宸茬粡鏀瑰彉 +Entry deleted locally = 宸插垹闄ゆ湰鍦拌褰 +Changed local entry ID to %d = 鏀瑰彉鏈湴璁板綍 ID 鍙蜂负 %d +Entry deleted remotely = 宸插垹闄よ繙绋嬭褰 +All entries identical = 鎵鏈夎褰曞尮閰 +Invalid mirror_id or entry_date = 鏃犳晥鐨 mirror_id 鎴 entry_date +Synchronize all logbooks = 鍚屾鎵鏈夌殑璁板綍鏈 +Calendar = 鏃ュ巻 +Remote entry received = 宸叉帴鏀惰繙绋嬭褰 +Pick a date = 閫夋嫨涓涓棩鏈 +Please select at least one '%s' = 璇烽夋嫨鑷冲皯涓涓 '%s' +Please select a '%s' = 璇烽夋嫨涓涓 '%s' +Please enter month for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆鏈堜唤 +Please enter day for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆鏃ユ湡 +Please enter year for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆骞翠唤 +Please enter attribute '%s' = 璇疯緭鍏ュ睘鎬 '%s' +Entry time = 璁板綍鏃堕棿 +Start = 寮濮 +End = 缁撴潫 +After = 涔嬪悗 +to = 鍒 +Before = 涔嬪墠 +Previous Year = 鍓嶄竴骞 +Next Year = 鍚庝竴骞 +Please enter numeric value for '%s' = 璇蜂负 '%s' 閿叆鏁板 +Error: Attribute %s must be numeric = 閿欒锛氬睘鎬 %s 蹇呴』鏄暟鍊 +3 Months = 3 涓湀 +6 Months = 6 涓湀 +Error sending local message = 鍙戦佹湰鍦版秷鎭敊璇 +Error receiving message = 鎺ユ敹娑堟伅閿欒 +Are you sure to delete this entry? = 浣犲喅瀹氳鍒犻櫎姝よ褰曞悧锛 +Import = 瀵煎叆 +CSV filename = CSV 鏂囦欢鍚 +Field separator = 鍒嗛殧绗 +Edit entry = 缂栬緫璁板綍 +Delete entry = 鍒犻櫎璁板綍 +CSV Import = 瀵煎叆 CSV +ELOG CSV import = 瀵煎叆 ELOG CSV +Derive attributes from CSV file = 浠 CSV 鏂囦欢涓幏鍙栧睘鎬 +Comma = 閫楀彿 +Semicolon = 鍒嗗彿 +Ignore first line = 蹇界暐绗竴琛 +Preview import = 杈撳叆棰勮 +CSV import preview of %s = %s 鐨 CSV 杈撳叆棰勮 +Too many attributes in CSV file = CSV 鏂囦欢涓湁澶鐨勫睘鎬 +%d entries successfully imported = 鎴愬姛瀵煎叆 %d 鏉¤褰 +No 'Attributes' option present in %s = 鍦 %s 涓嶅瓨鍦 'Attributes' 椤圭洰 +CSV ("," separated) = CSV (浠 "," 鍒嗛殧) +CSV (";" separated) = CSV (浠 ";" 鍒嗛殧) +Auto detect = 鑷姩鎺㈡祴 +From = 鏉ヨ嚜 +text = 鏂囨湰 +Column header '%s' must be present in CSV file = 鍒楀瓧澶 '%s' 蹇呴』瀛樺湪浜 CSV 鏂囦欢涓 +Fill text body = 濉啓鏂囨湰鍐呭 +Please re-enter filename = 璇烽噸鏂拌緭鍏ユ枃浠跺悕 +Last x = 鏈鍚庣殑 x +Activate = 婵娲 +Entry has been modified = 璁板綍宸茶淇敼 +No attachment file specified = 娌℃湁鎸囧畾闄勪欢鏂囦欢 +Submit modified ELOG entry? = 鎻愪氦淇敼鍚庣殑 ELOG 璁板綍鍚楋紵 +Delete this logbook = 鍒犻櫎姝よ褰曟湰 +Rename this logbook = 閲嶅懡鍚嶆璁板綍鏈 +Create new logbook = 鍒涘缓鏂扮殑璁板綍鏈 +Syntax error in config file = 閰嶇疆鏂囦欢涓娉曢敊璇 +Email notification = 鐢靛瓙閭欢閫氱煡 +Are you sure to delete logbook "%s"? = 浣犲喅瀹氬垹闄よ褰曟湰 "%s" 鍚楋紵 +Logbook "%s" exists already, please choose different name = 璁板綍鏈 "%s" 宸茬粡瀛樺湪锛岃閫夋嫨鍏跺畠鍚嶇О +Rename logbook = 閲嶅懡鍚嶈褰曟湰 +Enter new logbook name = 杈撳叆鏂扮殑璁板綍鏈悕绉 +Logbook name = 璁板綍鏈悕绉 +Use existing logbook as template = 浣跨敤鐜版湁鐨勮褰曟湰浣滀负妯℃澘 +none = 鏃 +URL is redirected to: = URL 閲嶅鍚戝埌锛 +Remote config should be received = 搴旇鎺ユ敹杩滅▼閰嶇疆 +Local entry should be submitted = 搴旇鎻愪氦鏈湴璁板綍 +Remote entry should be received = 搴旇鎺ユ敹杩滅▼璁板綍 +Local entry = 鏈湴璁板綍 +%s should be deleted = %s 搴旇琚垹闄 +Entry should be deleted locally = 搴旇鍒犻櫎鏈湴璁板綍 +Local entry ID should be changed to %d = 鏈湴璁板綍 ID 搴旇鏇存敼涓 %d +Remote entry = 杩滅▼璁板綍 +Entry should be deleted remotely = 搴旇鍒犻櫎杩滅▼璁板綍 +Click here to delete this entry = 鐐瑰嚭姝ゅ鍒犻櫎姝よ褰 +Maximum number of attribute options exceeded = 瓒呰繃鏈澶у厑璁哥殑灞炴ч」鐩釜鏁 +Please increase MAX_N_LIST in elogd.c and recompile = 璇峰鍔 elogd.c 鏂囦欢涓 MAX_N_LIST 鐨勫硷紝鐒跺悗閲嶆柊缂栬瘧 +You can "steal" the lock by editing this entry = 浣犲彲浠ラ氳繃缂栬緫姝よ褰曗滄倓鎮勨濈Щ鍘婚攣瀹氬睘鎬 +Several logbooks groups are defined on this host = 姝や富鏈哄凡缁忓畾涔変簡鍑犱釜璁板綍鏈殑缁 +Please select one to list the logbooks in that group = 璇烽夋嫨涓涓粍鏉ユ樉绀哄叾涓殑璁板綍鏈 +No logbook defined on this server = 姝ゆ湇鍔″櫒娌℃湁瀹氫箟璁板綍鏈 +Goto ELOG home page = 璺宠浆鍒 ELOG 涓婚〉 +Please enter "%s" = 璇疯緭鍏 "%s" +Change config file = 淇敼閰嶇疆鏂囦欢 +Click here to delete %d entries = 璇风偣鍑绘澶勫垹闄 %d 鏉¤褰 +Please check that it exists and elogd has write access and disk is not full = 璇锋鏌ュ畠鏄惁瀛樺湪鍙 elogd 鏄惁鏈夊瀹冧慨鏀圭殑鏉冮檺骞朵笖纾佺洏鏄惁宸叉弧 +Show = 鏄剧ず +Hide = 闅愯棌 +Hide all = 闅愯棌鎵鏈 +Show all = 鏄剧ず鎵鏈 +This logbook requires authentication = 姝よ褰曟湰闇瑕佽璇 +Attachment file "%s" empty or not found = 闄勪欢鏂囦欢 "%s" 涓虹┖鎴栬呮病鏈夋壘鍒 +Case sensitive = 澶у皬鍐欐晱鎰 +List = 鍒楄〃 +Date must be between 1970 and 2037 = 鏃ユ湡蹇呴』鍦 1970 鍒 2037 涔嬮棿 +up = 鍚戜笂 +down = 鍚戜笅 +stop = 鍋滄 +Entry = 璁板綍 +name may not contain blanks = 鍚嶇О涓嶅簲璇ュ寘鎷┖鏍 +regular expressions = 姝e垯琛ㄨ揪寮 +Text fields are treated as %s = 鏂囨湰鍖哄煙浣滀负 %s +Subscribe to logbooks = 璁㈤槄璁板綍鏈 +enable automatic email notifications = 鎵撳紑鑷姩鐢靛瓙閭欢閫氱煡鍔熻兘 +Set all = 璁剧疆鎵鏈 +Set none = 璁剧疆鏃 +Set current time = 璁剧疆褰撳墠鏃堕棿 +Please enter hour for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆灏忔椂 +Please enter minute for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆鍒嗛挓 +Please enter second for attribute '%s' = 璇蜂负灞炴 '%s' 杈撳叆绉 +No admin user has been defined in configuration file = 閰嶇疆鏂囦欢涓病鏈夊畾涔夌鐞嗙敤鎴峰悕 +Duplicate = 閲嶅 +Preview = 棰勮 +Show only new entries = 浠呮樉绀烘柊鐨勮褰 +New entries since = 鑷鏃堕棿浠ユ潵鐨勬柊璁板綍 +Author = 浣滆 +Type = 绫诲瀷 +Catogery = 绫诲埆 +Subject = 涓婚 +Show all entries = 鏄剧ず鎵鏈夎褰 +Enter name of hypelink = 杈撳叆瓒呴摼鎺ュ悕绉 +Enter URL of hypelink = 杈撳叆瓒呴摼鎺ョ殑 URL +bold text = 绮椾綋鏂囨湰 +italics text = 鏂滀綋鏂囨湰 +underlined text = 涓嬪垝绾挎枃鏈 +centered text = 涓ぎ瀵归綈鏂囨湰 +insert hyperlink = 鎻掑叆瓒呮枃鏈 +insert email = 鎻掑叆鐢靛瓙閭欢 +insert quote = 鎻掑叆寮曠敤 +insert list = 鎻掑叆鍒楄〃 +insert code = 鎻掑叆浠g爜 +insert image = 鎻掑叆鍥剧墖 +show the smiley bar = 鏄剧ず琛ㄦ儏绗﹀垪琛ㄦ潯 +FONT = 瀛椾綋 +SIZE = 澶у皬 +COLOR = 棰滆壊 +Encoding = 缂栫爜鏍煎紡 +Hide attachments = 闅愯棌闄勪欢 +HelpELCode = ELCode甯姪