FreshRSS/app/i18n/zh-cn/admin.php

222 lines
7.8 KiB
PHP
Raw Normal View History

2017-05-23 09:58:14 +02:00
<?php
/******************************************************************************/
/* Each entry of that file can be associated with a comment to indicate its */
/* state. When there is no comment, it means the entry is fully translated. */
/* The recognized comments are (comment matching is case-insensitive): */
/* + TODO: the entry has never been translated. */
/* + DIRTY: the entry has been translated but needs to be updated. */
/* + IGNORE: the entry does not need to be translated. */
/* When a comment is not recognized, it is discarded. */
/******************************************************************************/
2017-05-23 09:58:14 +02:00
return array(
'auth' => array(
2019-12-28 12:30:47 +01:00
'allow_anonymous' => '允许匿名阅读默认用户(%s的文章',
2017-05-23 09:58:14 +02:00
'allow_anonymous_refresh' => '允许匿名刷新文章',
2019-12-28 12:30:47 +01:00
'api_enabled' => '允许 <abbr>API</abbr> 访问 <small>(用于手机应用)</small>',
'form' => '网页表单(传统方式, 需要 JavaScript)',
'http' => 'HTTP面向启用 HTTPS 的高级用户)',
'none' => '无(危险)',
2017-05-23 09:58:14 +02:00
'title' => '认证',
'token' => '认证口令',
2017-10-26 12:46:53 +02:00
'token_help' => '用于不经认证访问默认用户的 RSS 输出:',
2017-05-23 09:58:14 +02:00
'type' => '认证方式',
'unsafe_autologin' => '允许不安全的自动登陆方式:',
),
'check_install' => array(
'cache' => array(
'nok' => '请检查 <em>./data/cache</em> 目录权限HTTP 服务器必须拥有写入权限。',
2019-12-28 12:30:47 +01:00
'ok' => 'cache 目录权限正常',
2017-05-23 09:58:14 +02:00
),
'categories' => array(
2019-12-28 12:30:47 +01:00
'nok' => 'Category 表配置错误',
'ok' => 'Category 表正常',
2017-05-23 09:58:14 +02:00
),
'connection' => array(
2019-12-28 12:30:47 +01:00
'nok' => '数据库连接失败',
'ok' => '数据库连接正常',
2017-05-23 09:58:14 +02:00
),
'ctype' => array(
2019-12-28 12:30:47 +01:00
'nok' => '找不到字符类型检测库php-ctype',
'ok' => '已找到字符类型检测库ctype',
2017-05-23 09:58:14 +02:00
),
'curl' => array(
'nok' => '找不到 cURL 库php-curl 包)',
'ok' => '已找到 cURL 库',
2017-05-23 09:58:14 +02:00
),
'data' => array(
'nok' => '请检查 <em>./data</em> 目录权限HTTP 服务器必须拥有写入权限。',
2019-12-28 12:30:47 +01:00
'ok' => 'data 目录权限正常',
2017-05-23 09:58:14 +02:00
),
'database' => '数据库安装',
2017-05-23 09:58:14 +02:00
'dom' => array(
'nok' => '找不到用于浏览 DOM 的库php-xml 包)',
'ok' => '已找到用于浏览 DOM 的库',
2017-05-23 09:58:14 +02:00
),
'entries' => array(
2019-12-28 12:30:47 +01:00
'nok' => 'Entry 表配置错误',
'ok' => 'Entry 表配置正常',
2017-05-23 09:58:14 +02:00
),
'favicons' => array(
'nok' => '请检查 <em>./data/favicons</em> 目录权限HTTP 服务器必须拥有写入权限。',
2019-12-28 12:30:47 +01:00
'ok' => 'favicons 目录权限正常',
2017-05-23 09:58:14 +02:00
),
'feeds' => array(
2019-12-28 12:30:47 +01:00
'nok' => 'Feed 表配置错误',
'ok' => 'Feed 表正常',
2017-05-23 09:58:14 +02:00
),
'fileinfo' => array(
'nok' => '找不到 PHP fileinfo 库php-fileinfo 包)',
'ok' => '已找到 fileinfo 库',
2017-05-23 09:58:14 +02:00
),
'files' => '文件相关',
'json' => array(
'nok' => '找不到 JSON 扩展php-json 包)',
'ok' => '已找到 JSON 扩展',
2017-05-23 09:58:14 +02:00
),
'mbstring' => array(
'nok' => '找不到推荐用于 Unicode 的 mbstring 库',
'ok' => '已找到推荐用于 Unicode 的 mbstring 库',
),
2017-05-23 09:58:14 +02:00
'pcre' => array(
2019-12-28 12:30:47 +01:00
'nok' => '找不到正则表达式解析库php-pcre',
'ok' => '已找到正则表达式解析库PCRE',
2017-05-23 09:58:14 +02:00
),
'pdo' => array(
'nok' => '找不到 PDO 或其中一种支持的驱动pdo_mysql、pdo_sqlite、pdo_pgsql',
'ok' => '已找到 PDO 和至少一种支持的驱动pdo_mysql、pdo_sqlite、pdo_pgsql',
2017-05-23 09:58:14 +02:00
),
'php' => array(
'_' => 'PHP 安装',
2019-12-28 12:30:47 +01:00
'nok' => '你的 PHP 版本为 %s但 FreshRSS 最低需要 %s',
'ok' => '你的 PHP 版本为 %s与 FreshRSS 兼容',
2017-05-23 09:58:14 +02:00
),
'tables' => array(
2019-12-28 12:30:47 +01:00
'nok' => '数据库中缺少一个或多个表',
'ok' => '数据库中存在正确的表',
2017-05-23 09:58:14 +02:00
),
'title' => '环境检查',
'tokens' => array(
'nok' => '请检查 <em>./data/tokens</em> 目录权限HTTP 服务器必须拥有写入权限。',
2019-12-28 12:30:47 +01:00
'ok' => 'tokens 目录权限正常',
2017-05-23 09:58:14 +02:00
),
'users' => array(
'nok' => '请检查 <em>./data/users</em> 目录权限HTTP 服务器必须拥有写入权限。',
2019-12-28 12:30:47 +01:00
'ok' => 'users 目录权限正常',
2017-05-23 09:58:14 +02:00
),
'zip' => array(
'nok' => '找不到 ZIP 扩展php-zip 包)',
2019-12-28 12:30:47 +01:00
'ok' => '已找到 ZIP 扩展',
2017-05-23 09:58:14 +02:00
),
),
'extensions' => array(
'author' => '作者',
'community' => '可用的社区扩展',
'description' => '描述',
2017-05-23 09:58:14 +02:00
'disabled' => '已禁用',
'empty_list' => '没有已安装的扩展',
'enabled' => '已启用',
'latest' => '已安装',
'name' => '名称',
'no_configure_view' => '此扩展无法配置。',
2017-05-23 09:58:14 +02:00
'system' => array(
'_' => '系统扩展',
'no_rights' => '系统扩展(你没有所需权限)',
2017-05-23 09:58:14 +02:00
),
'title' => '扩展',
'update' => '更新可用',
2017-05-23 09:58:14 +02:00
'user' => '用户扩展',
'version' => '版本',
2017-05-23 09:58:14 +02:00
),
'stats' => array(
'_' => '统计数据',
2019-12-28 12:30:47 +01:00
'all_feeds' => '所有订阅源',
2017-05-23 09:58:14 +02:00
'category' => '分类',
2019-12-28 12:30:47 +01:00
'entry_count' => '文章数',
'entry_per_category' => '各分类文章数',
'entry_per_day' => '每日文章数(近三十日)',
'entry_per_day_of_week' => '一周中(平均:%.2f 条消息)',
'entry_per_hour' => '各小时(平均:%.2f 条消息)',
'entry_per_month' => '各月(平均:%.2f 条消息)',
2019-12-28 12:30:47 +01:00
'entry_repartition' => '文章分布',
'feed' => '订阅源',
'feed_per_category' => '各分类订阅源数',
'idle' => '长期无更新订阅源',
'main' => '主要统计数据',
2017-05-23 09:58:14 +02:00
'main_stream' => '首页',
2019-12-28 12:30:47 +01:00
'no_idle' => '订阅源近期皆有更新!',
2017-05-23 09:58:14 +02:00
'number_entries' => '%d 篇文章',
'percent_of_total' => '%%',
'repartition' => '文章分布',
'status_favorites' => '收藏',
'status_read' => '已读',
'status_total' => '总计',
'status_unread' => '未读',
'title' => '统计',
2019-12-28 12:30:47 +01:00
'top_feed' => '前十订阅源',
2017-05-23 09:58:14 +02:00
),
'system' => array(
'_' => '系统配置',
'auto-update-url' => '自动更新服务器 URL',
'cookie-duration' => array(
'help' => '单位:秒',
2019-03-18 10:55:50 +01:00
'number' => '保持登录的时长',
),
2019-12-28 12:30:47 +01:00
'force_email_validation' => '强制验证邮箱地址',
'instance-name' => '实例名称',
2019-12-28 12:30:47 +01:00
'max-categories' => '各用户分类数限制',
'max-feeds' => '各用户订阅源数限制',
2017-05-23 09:58:14 +02:00
'registration' => array(
2019-12-28 12:30:47 +01:00
'number' => '最大用户数',
'select' => array(
'label' => '注册表单',
'option' => array(
'noform' => '禁用,无注册表单',
'nolimit' => '启用,且无账户限制',
'setaccountsnumber' => '设置用户数的最大值',
),
),
'status' => array(
'disabled' => '注册表单已禁用',
'enabled' => '注册表单已启用',
),
'title' => '用户注册表单',
2017-05-23 09:58:14 +02:00
),
'tos' => array(
'disabled' => 'is not given', // TODO
'enabled' => '<a href="./?a=tos">is enabled</a>', // TODO
'help' => 'How to <a href="https://freshrss.github.io/FreshRSS/en/admins/12_User_management.html#enable-terms-of-service-tos" target="_blank">enable the Terms of Service</a>', // TODO
),
2017-05-23 09:58:14 +02:00
),
'update' => array(
'_' => '更新系统',
2017-05-23 09:58:14 +02:00
'apply' => '应用',
'check' => '检查更新',
2021-02-23 03:52:04 +01:00
'current_version' => '当前 FreshRSS 版本为 %s。',
'last' => '上次检查:%s',
2017-05-23 09:58:14 +02:00
'none' => '没有可用更新',
'title' => '更新系统',
2017-05-23 09:58:14 +02:00
),
'user' => array(
'admin' => '管理员',
2019-12-28 12:30:47 +01:00
'article_count' => '文章数',
'back_to_manage' => '← 返回用户列表',
2017-05-23 09:58:14 +02:00
'create' => '创建新用户',
2019-12-28 12:30:47 +01:00
'database_size' => '数据库大小',
'email' => '邮箱地址',
2021-02-23 03:52:04 +01:00
'enabled' => '已启用',
2019-12-28 12:30:47 +01:00
'feed_count' => '订阅源数',
'is_admin' => '管理员',
2017-05-23 09:58:14 +02:00
'language' => '语言',
2021-02-23 03:52:04 +01:00
'last_user_activity' => '上次用户活跃',
2019-12-28 12:30:47 +01:00
'list' => '用户列表',
2019-03-18 10:55:50 +01:00
'number' => '已有 %d 个用户',
'numbers' => '已有 %d 个用户',
2019-12-28 12:30:47 +01:00
'password_form' => '密码<br /><small>(用于网页表单登录方式)</small>',
2017-05-23 09:58:14 +02:00
'password_format' => '至少 7 个字符',
'title' => '用户管理',
'username' => '用户名',
),
);