discourse-data-explorer/config/locales/client.zh_CN.yml

81 lines
4.2 KiB
YAML
Raw Normal View History

2020-08-05 09:25:51 -04:00
# WARNING: Never edit this file.
# It will be overwritten when translations are pulled from Crowdin.
2017-12-07 17:54:31 -05:00
#
# To work with us on translations, join this project:
2020-08-05 09:25:51 -04:00
# https://translate.discourse.org/
2017-12-07 17:54:31 -05:00
2018-04-24 10:32:08 -04:00
zh_CN:
js:
errors:
explorer:
2021-12-28 08:13:54 -05:00
no_semicolons: "从查询中移除分号。"
dirty: "您必须先保存查询,然后才能运行。"
2018-04-24 10:32:08 -04:00
explorer:
2021-12-28 08:13:54 -05:00
or: "或者"
admins_only: "数据浏览器仅供管理员使用。"
allow_groups: "允许群组访问此查询"
2021-12-14 08:53:31 -05:00
title: "数据浏览器"
create: "创建新查询"
2021-12-28 08:13:54 -05:00
create_placeholder: "查询名称…"
description_placeholder: "在此处输入描述"
2019-01-31 16:44:02 -05:00
import:
label: "导入"
2021-12-28 08:13:54 -05:00
modal: "导入查询"
2021-12-14 08:53:31 -05:00
unparseable_json: "无法解析的 JSON 文件。"
2021-12-28 08:13:54 -05:00
wrong_json: "错误的 JSON 文件。JSON 文件应包含一个 'query' 对象,该对象至少应具有一个 'sql' 属性。"
2021-12-14 08:53:31 -05:00
help:
label: "帮助"
modal_title: "数据浏览器帮助"
2021-12-28 08:13:54 -05:00
auto_resolution: "<h2>自动实体解析</h2> <p>当您的查询返回实体 ID 时,数据浏览器可能会自动将其替换为查询结果中的实体名称和其他有用信息。自动解析适用于 <i><b>USER_ID</b></i>、<i><b>GROUP_ID</b></i>、<i><b>topic_id</b></i>、<i><b>CATEGORY_ID</b></i> 和 <i><b>badge_id</b></i>。要尝试此操作,请运行以下查询:</p> <pre><code>SELECT user_id\nFROM posts</code></pre>"
custom_params: "<h2>创建自定义参数</h2> <p>要为您的查询创建自定义参数,请将其放在查询的顶部并遵循以下格式:</p> <pre><code>-- [params]\n-- int :num = 1\n\nSELECT :num</code></pre> <p><i>注意:包含 [params] 以及它前面的两个破折号和您要声明的每个自定义参数的第一行是必需的。</i></p>"
default_values: "<h3>默认值</h3> <p>您可以声明带或不带默认值的参数。默认值将显示在查询编辑器下方的文本字段中,您可以根据需要对其进行编辑。没有默认值声明的参数仍将生成一个文本字段,但将为空并以红色突出显示。</p> <pre><code>-- [params]\n-- text :username = my_username\n-- int :age</code></pre>"
data_types: "<h3>数据类型</h3> <p>以下是您可以使用的常见数据类型:</p> <ul> <li><b>整数</b> - 有符号四字节整数</li> <li><b>文本</b> - 可变长度字符字符串</li> <li><b>布尔值</b> true/false</li> <li><b>日期</b> - 日历日期(年、月、日)</li> </ul> <p>有关数据类型的更多信息,请访问<a href='http://www.postgresql.org/docs/9.3/static/datatype.html#DATATYPE-TABLE' target='_blank'>此网站</a>。</p>"
2018-04-24 10:32:08 -04:00
schema:
2021-12-28 08:13:54 -05:00
title: "数据库架构"
filter: "搜索…"
sensitive: "此列的内容可能包含特别敏感或私人的信息。使用此列的内容时请谨慎。"
2018-04-24 10:32:08 -04:00
types:
bool:
2020-08-05 09:25:51 -04:00
yes: "是"
no: "否"
2018-04-24 10:32:08 -04:00
null_: "空"
export: "导出"
2021-12-28 08:13:54 -05:00
save: "保存变更"
saverun: "保存变更并运行"
2019-05-30 11:31:55 -04:00
run: "运行"
2021-12-28 08:13:54 -05:00
undo: "舍弃变更"
2018-04-24 10:32:08 -04:00
edit: "编辑"
delete: "删除"
2021-12-28 08:13:54 -05:00
recover: "取消删除查询"
2018-04-24 10:32:08 -04:00
download_json: "JSON"
download_csv: "CSV"
2021-12-28 08:13:54 -05:00
show_table: "表"
2021-12-14 08:53:31 -05:00
show_graph: "图表"
2021-12-28 08:13:54 -05:00
others_dirty: "查询具有未保存的更改,如果您离开,这些更改将丢失。"
run_time: "查询在 %{value} 毫秒内完成。"
2019-01-31 16:44:02 -05:00
result_count:
2021-12-28 08:13:54 -05:00
other: "%{count} 个结果。"
2022-02-08 08:13:10 -05:00
max_result_count:
other: "显示前 %{count} 个结果。"
2019-06-17 13:57:46 -04:00
query_name: "查询"
2019-10-10 11:26:02 -04:00
query_groups: "群组"
2021-12-28 08:13:54 -05:00
link: "链接"
2020-02-25 10:33:22 -05:00
report_name: "报告"
2019-01-31 16:44:02 -05:00
query_description: "描述"
query_time: "最后运行"
2021-12-28 08:13:54 -05:00
query_user: "创建者"
column: "第 %{number} 列"
2019-06-17 13:57:46 -04:00
explain_label: "包括查询计划?"
2021-12-28 08:13:54 -05:00
save_params: "设置默认值"
2019-01-31 16:44:02 -05:00
reset_params: "重置"
2021-12-28 08:13:54 -05:00
search_placeholder: "搜索…"
no_search_results: "抱歉,我们找不到任何与您的文本匹配的结果。"
2019-10-10 11:26:02 -04:00
group:
reports: "报告"
2022-02-08 08:13:10 -05:00
admin:
api:
scopes:
descriptions:
data_explorer:
run_queries: "运行数据资源管理器查询。通过指定查询 ID 将 API 密钥限制为一组查询。"