]> BookStack Code Mirror - bookstack/blob - resources/lang/zh_CN/errors.php
Fix "Declaration of Middleware\TrustProxies::handle should be compatible with Fidelop...
[bookstack] / resources / lang / zh_CN / errors.php
1 <?php
2 /**
3  * Text shown in error messaging.
4  */
5 return [
6
7     // Permissions
8     'permission' => '您无权访问所请求的页面。',
9     'permissionJson' => '您无权执行所请求的操作。',
10
11     // Auth
12     'error_user_exists_different_creds' => 'Email为 :email 的用户已经存在,但具有不同的凭据。',
13     'email_already_confirmed' => 'Email已被确认,请尝试登录。',
14     'email_confirmation_invalid' => '此确认令牌无效或已被使用,请重新注册。',
15     'email_confirmation_expired' => '确认令牌已过期,已发送新的确认电子邮件。',
16     'ldap_fail_anonymous' => '使用匿名绑定的LDAP访问失败。',
17     'ldap_fail_authed' => '带有标识名称和密码的LDAP访问失败。',
18     'ldap_extension_not_installed' => '未安装LDAP PHP扩展程序',
19     'ldap_cannot_connect' => '无法连接到ldap服务器,初始连接失败',
20     'social_no_action_defined' => '没有定义行为',
21     'social_login_bad_response' => "在 :socialAccount 登录时遇到错误:\n:error",
22     'social_account_in_use' => ':socialAccount 账户已被使用,请尝试通过 :socialAccount 选项登录。',
23     'social_account_email_in_use' => 'Email :email 已经被使用。如果您已有帐户,则可以在个人资料设置中绑定您的 :socialAccount。',
24     'social_account_existing' => ':socialAccount已经被绑定到您的账户。',
25     'social_account_already_used_existing' => ':socialAccount账户已经被其他用户使用。',
26     'social_account_not_used' => ':socialAccount账户没有绑定到任何用户,请在您的个人资料设置中绑定。',
27     'social_account_register_instructions' => '如果您还没有帐户,您可以使用 :socialAccount 选项注册账户。',
28     'social_driver_not_found' => '未找到社交驱动程序',
29     'social_driver_not_configured' => '您的:socialAccount社交设置不正确。',
30     'invite_token_expired' => 'This invitation link has expired. You can instead try to reset your account password.',
31
32     // System
33     'path_not_writable' => '无法上传到文件路径“:filePath”,请确保它可写入服务器。',
34     'cannot_get_image_from_url' => '无法从 :url 中获取图片',
35     'cannot_create_thumbs' => '服务器无法创建缩略图,请检查您是否安装了GD PHP扩展。',
36     'server_upload_limit' => '服务器不允许上传此大小的文件。 请尝试较小的文件。',
37     'uploaded'  => 'The server does not allow uploads of this size. Please try a smaller file size.',
38     'image_upload_error' => '上传图片时发生错误',
39     'image_upload_type_error' => '上传的图像类型无效',
40     'file_upload_timeout' => '文件上传已超时。',
41
42     // Attachments
43     'attachment_page_mismatch' => '附件更新期间的页面不匹配',
44     'attachment_not_found' => '找不到附件',
45
46     // Pages
47     'page_draft_autosave_fail' => '无法保存草稿,确保您在保存页面之前已经连接到互联网',
48     'page_custom_home_deletion' => '无法删除一个被设置为主页的页面',
49
50     // Entities
51     'entity_not_found' => '未找到实体',
52     'bookshelf_not_found' => '未找到书架',
53     'book_not_found' => '未找到图书',
54     'page_not_found' => '未找到页面',
55     'chapter_not_found' => '未找到章节',
56     'selected_book_not_found' => '选中的书未找到',
57     'selected_book_chapter_not_found' => '未找到所选的图书或章节',
58     'guests_cannot_save_drafts' => '访客不能保存草稿',
59
60     // Users
61     'users_cannot_delete_only_admin' => '您不能删除唯一的管理员账户',
62     'users_cannot_delete_guest' => '您不能删除访客用户',
63
64     // Roles
65     'role_cannot_be_edited' => '无法编辑该角色',
66     'role_system_cannot_be_deleted' => '无法删除系统角色',
67     'role_registration_default_cannot_delete' => '无法删除设置为默认注册的角色',
68     'role_cannot_remove_only_admin' => 'This user is the only user assigned to the administrator role. Assign the administrator role to another user before attempting to remove it here.',
69
70     // Comments
71     'comment_list' => '提取评论时出现错误。',
72     'cannot_add_comment_to_draft' => '您不能为草稿添加评论。',
73     'comment_add' => '添加/更新评论时发生错误。',
74     'comment_delete' => '删除评论时发生错误。',
75     'empty_comment' => '不能添加空的评论。',
76
77     // Error pages
78     '404_page_not_found' => '无法找到页面',
79     'sorry_page_not_found' => '对不起,无法找到您想访问的页面。',
80     'return_home' => '返回主页',
81     'error_occurred' => '出现错误',
82     'app_down' => ':appName现在正在关闭',
83     'back_soon' => '请耐心等待网站的恢复。',
84
85 ];