2020-10-14 23:19:41 +02:00
< ? php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user . You are free to modify
| these language lines according to your application ' s requirements .
|
*/
2022-07-12 21:42:36 +02:00
'service' => '服务' ,
'account' => '账户' ,
'icon' => '图标' ,
2024-09-25 17:56:22 +02:00
'icon_to_illustrate_the_account' => '账户对应的图标' ,
2022-10-14 15:54:24 +02:00
'remove_icon' => '移除图标' ,
2024-09-25 17:56:22 +02:00
'no_account_here' => '无 2FA 账户!' ,
'add_first_account' => '选择一个添加方法,创建您的第一个账户' ,
'use_full_form' => '或通过填写表单创建' ,
2022-07-12 21:42:36 +02:00
'add_one' => '添加一个' ,
2024-09-25 17:56:22 +02:00
'show_qrcode' => '显示二维码' ,
2022-07-12 21:42:36 +02:00
'no_service' => '- 无服务 -' ,
2024-09-25 17:56:22 +02:00
'account_created' => '账户创建成功' ,
'account_updated' => '账户更新成功' ,
'accounts_deleted' => '账户删除成功' ,
'accounts_moved' => '账户移动成功' ,
2024-11-08 16:21:02 +01:00
'export_selected_accounts' => 'Export selected accounts' ,
'twofauth_export_format' => '2FAuth format' ,
'twofauth_export_format_sub' => 'Export data using the 2FAuth json schema' ,
'twofauth_export_format_desc' => 'You should prefer this option if you need to create a backup that can be restored. This format takes care of the icons.' ,
'twofauth_export_format_url' => 'The schema definition is described here:' ,
'twofauth_export_schema' => '2FAuth export schema' ,
'otpauth_export_format' => 'otpauth URIs' ,
'otpauth_export_format_sub' => 'Export data as a list of otpauth URIs' ,
'otpauth_export_format_desc' => 'otpauth URI is the most common format used to exchange 2FA data, for example in the form of a QR code when you enable 2FA on a web site. Select this if you want to switch from 2FAuth.' ,
2024-01-19 15:47:47 +01:00
'reveal' => '显示' ,
2020-10-14 23:19:41 +02:00
'forms' => [
'service' => [
2024-09-25 17:56:22 +02:00
'placeholder' => '服务名称' ,
2020-10-14 23:19:41 +02:00
],
'account' => [
2024-09-25 17:56:22 +02:00
'placeholder' => '账户名称' ,
2020-10-14 23:19:41 +02:00
],
2022-07-12 21:42:36 +02:00
'new_account' => '新建账户' ,
'edit_account' => '编辑账户' ,
2020-10-14 23:19:41 +02:00
'otp_uri' => 'OTP Uri' ,
2024-09-25 17:56:22 +02:00
'scan_qrcode' => '扫描二维码' ,
'upload_qrcode' => '上传二维码' ,
2022-07-12 21:42:36 +02:00
'use_advanced_form' => '使用高级表单' ,
2024-09-25 17:56:22 +02:00
'prefill_using_qrcode' => '使用二维码来填写' ,
2020-10-14 23:19:41 +02:00
'use_qrcode' => [
2024-09-25 17:56:22 +02:00
'val' => '使用二维码' ,
'title' => '使用二维码来自动填写表单' ,
2020-10-14 23:19:41 +02:00
],
'unlock' => [
2022-07-12 21:42:36 +02:00
'val' => '解锁' ,
2024-09-25 17:56:22 +02:00
'title' => '解锁 (注意安全风险)' ,
2020-10-14 23:19:41 +02:00
],
'lock' => [
2022-07-12 21:42:36 +02:00
'val' => '锁定' ,
2024-09-25 17:56:22 +02:00
'title' => '锁定' ,
2020-10-14 23:19:41 +02:00
],
2022-10-14 15:54:24 +02:00
'choose_image' => '上传' ,
2023-09-13 09:18:41 +02:00
'i_m_lucky' => '手气不错' ,
2024-09-25 17:56:22 +02:00
'i_m_lucky_legend' => '“手气不错” 功能可以尝试获取此服务的官方图标。若要提高成功率,请在 “服务名称” 栏中以英文输入服务名。(测试中的功能)' ,
2022-07-12 21:42:36 +02:00
'test' => '测试' ,
2024-09-25 17:56:22 +02:00
'group' => [
2024-10-12 18:24:35 +02:00
'label' => '分组' ,
'help' => '此账户要移动到的组'
2024-09-25 17:56:22 +02:00
],
2020-11-23 00:53:03 +01:00
'secret' => [
2022-07-12 21:42:36 +02:00
'label' => '密钥' ,
'help' => '用于生成安全码的密钥'
2020-11-23 00:53:03 +01:00
],
2022-07-12 21:42:36 +02:00
'plain_text' => '纯文本' ,
2020-11-23 00:53:03 +01:00
'otp_type' => [
2024-09-25 17:56:22 +02:00
'label' => '选择要创建的 <abbr title="One-Time Password">OTP</abbr> 令牌类型' ,
'help' => 'TOTP, HOTP 或 Steam OTP'
2020-11-23 00:53:03 +01:00
],
'digits' => [
2022-07-12 21:42:36 +02:00
'label' => '码长' ,
2024-09-25 17:56:22 +02:00
'help' => '生成的验证码位数'
2020-11-23 00:53:03 +01:00
],
'algorithm' => [
2022-07-12 21:42:36 +02:00
'label' => '算法' ,
2024-09-25 17:56:22 +02:00
'help' => '验证码的加密算法'
2020-11-23 00:53:03 +01:00
],
2021-10-09 19:23:24 +02:00
'period' => [
2022-07-12 21:42:36 +02:00
'label' => '周期' ,
2024-09-25 17:56:22 +02:00
'placeholder' => '默认为 30' ,
'help' => '验证码的有效期 (秒)'
2020-11-23 00:53:03 +01:00
],
2021-10-09 19:23:24 +02:00
'counter' => [
2022-07-12 21:42:36 +02:00
'label' => '计数器' ,
2024-09-25 17:56:22 +02:00
'placeholder' => '默认为 0' ,
'help' => '计数器的初始值' ,
'help_lock' => '如果计数器设置错误,可能会导致此验证码与账户校验失败,如果您不了解此功能,请勿随意编辑。您可以点击 “锁定” 图标来解锁编辑,但请务必小心。'
2020-11-23 00:53:03 +01:00
],
2021-10-09 19:23:24 +02:00
'image' => [
2022-10-14 15:54:24 +02:00
'label' => '图像' ,
2020-11-23 00:53:03 +01:00
'placeholder' => 'http://...' ,
2024-09-25 17:56:22 +02:00
'help' => '图像 URL, 用作账户图标'
2020-11-23 00:53:03 +01:00
],
2024-09-25 17:56:22 +02:00
'options_help' => '如果您不了解下列选项,请将对应选项留空来使用默认配置。' ,
2022-10-14 15:54:24 +02:00
'alternative_methods' => '备选方法' ,
2024-09-25 17:56:22 +02:00
'spaces_are_ignored' => '无用的空格将被自动删除'
2020-10-14 23:19:41 +02:00
],
'stream' => [
2024-09-25 17:56:22 +02:00
'live_scan_cant_start' => '无法启动扫描 :(' ,
2020-11-24 23:29:50 +01:00
'need_grant_permission' => [
2022-10-14 15:54:24 +02:00
'reason' => '2FAuth 没有权限访问您的相机' ,
2024-09-25 17:56:22 +02:00
'solution' => '2FAuth 需要您的授权才能使用此设备上的相机。如果您已点击过 “拒绝”,且您的浏览器没有再次提示您进行授权,请查找浏览器的文档以了解如何重新授权。' ,
'click_camera_icon' => '通常情况下,您可以点击浏览器地址栏中 (或旁边) 的相机图标来继续。' ,
2020-11-24 23:29:50 +01:00
],
'not_readable' => [
2024-09-25 17:56:22 +02:00
'reason' => '扫描启动失败' ,
'solution' => '摄像头是否已被占用?请确保没有其他应用正在使用您的摄像头,并再试一次'
2020-11-24 23:29:50 +01:00
],
'no_cam_on_device' => [
2022-10-14 15:54:24 +02:00
'reason' => '此设备上没有摄像头' ,
2024-09-25 17:56:22 +02:00
'solution' => '或许您忘了连接摄像头'
2020-11-24 23:29:50 +01:00
],
'secured_context_required' => [
2024-09-25 17:56:22 +02:00
'reason' => '需要 secure 字段' ,
'solution' => '扫描需要通过 HTTPS 协议通信。如果您是在电脑上运行 2FAuth 实例,请不要使用除了本地外的其他虚拟主机'
2020-11-24 23:29:50 +01:00
],
2022-10-14 15:54:24 +02:00
'https_required' => '摄像机需要 HTTPS' ,
2020-11-24 23:29:50 +01:00
'camera_not_suitable' => [
2024-09-25 17:56:22 +02:00
'reason' => '已安装的摄像头不适用' ,
2022-10-14 15:54:24 +02:00
'solution' => '请使用其他摄像头或更换设备'
2020-11-24 23:29:50 +01:00
],
'stream_api_not_supported' => [
2022-10-14 15:54:24 +02:00
'reason' => '此浏览器不支持 Stream API' ,
2024-09-25 17:56:22 +02:00
'solution' => '请换用新版浏览器'
2020-11-24 23:29:50 +01:00
],
2020-10-14 23:19:41 +02:00
],
'confirm' => [
2024-09-25 17:56:22 +02:00
'delete' => '您确定要删除此账户吗?' ,
'cancel' => '将放弃所有更改,确定要继续吗?' ,
'discard' => '您确定要丢弃此账户吗?' ,
'discard_all' => '您确定要丢弃所有账户吗?' ,
'discard_duplicates' => '您确定要丢弃所有重复账户吗?' ,
2022-07-12 21:42:36 +02:00
],
'import' => [
2022-10-14 15:54:24 +02:00
'import' => '导入' ,
'to_import' => '导入' ,
2024-09-25 17:56:22 +02:00
'import_legend' => '2FAuth 支持从各类 2FA 应用导入数据。' ,
'import_legend_afterpart' => '使用这些应用的 “导出” 功能来获取迁移资源,例如二维码或 JSON 文件,然后在 2FAuth 中导入。' ,
2022-10-14 15:54:24 +02:00
'upload' => '上传' ,
'scan' => '扫描' ,
2024-09-25 17:56:22 +02:00
'supported_formats_for_qrcode_upload' => '支持格式: jpg、jpeg、png、bmp、gif、svg 或 webp' ,
'supported_formats_for_file_upload' => '支持格式: json, 2fas 或纯文本' ,
'expected_format_for_direct_input' => '应为:一个包含 otpauth URI 的列表,每行一条' ,
2022-10-14 15:54:24 +02:00
'supported_migration_formats' => '支持的迁移格式' ,
'qr_code' => '二维码' ,
2024-01-19 15:47:47 +01:00
'text_file' => '文本文件' ,
2024-03-16 11:41:31 +01:00
'direct_input' => '直接输入' ,
2022-10-14 15:54:24 +02:00
'plain_text' => '纯文本' ,
2024-09-25 17:56:22 +02:00
'parsing_data' => '正在解析数据…' ,
'issuer' => '签发方' ,
2022-10-14 15:54:24 +02:00
'imported' => '已导入' ,
'failure' => '失败' ,
2024-09-25 17:56:22 +02:00
'x_valid_accounts_found' => '找到 :count 个有效账户' ,
'submitted_data_parsed_now_accounts_are_awaiting_import' => '在导入的数据中找到了下列 2FA 账户,且没有被添加到 2FAuth 过。' ,
'use_buttons_to_save_or_discard' => '点击亮起的按钮,即可选择丢弃这些账户,或将其保存到您的 2FA 列表中。' ,
2022-10-14 15:54:24 +02:00
'import_all' => '全部导入' ,
'import_this_account' => '导入此账户' ,
'discard_all' => '全部丢弃' ,
'discard_duplicates' => '丢弃重复项' ,
2024-09-25 17:56:22 +02:00
'discard_this_account' => '丢弃此账户' ,
'generate_a_test_password' => '生成测试密码' ,
'possible_duplicate' => '已存在相同数据的账户' ,
2022-10-14 15:54:24 +02:00
'invalid_account' => '- 无效账户 -' ,
'invalid_service' => '- 无效服务 -' ,
2024-09-25 17:56:22 +02:00
'do_not_set_password_or_encryption' => '如果您需要从其他 2FA 应用导出数据到 2FAuth, 请务必在导出前关闭加密保护, 否则 2FAuth 将无法解密数据。' ,
2020-10-14 23:19:41 +02:00
],
];