the browser-facing portion of osu!
at master 47 lines 1.6 kB view raw
1<?php 2 3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 4// See the LICENCE file in the repository root for full licence text. 5 6return [ 7 'button' => [ 8 'resend' => '重新发送确认邮件', 9 'set' => '设置密码', 10 'start' => '开始', 11 ], 12 13 'error' => [ 14 'contact_support' => '请联系支持团队以找回账户。', 15 'expired' => '验证码已过期。', 16 'invalid' => '发送验证码时出现意外错误。', 17 'is_privileged' => '联系 peppy(笑)', 18 'missing_key' => '必填', 19 'too_many_tries' => '重试次数过多', 20 'user_not_found' => '请求的用户不存在', 21 'wrong_key' => '验证码不正确。', 22 ], 23 24 'notice' => [ 25 'sent' => '检查您邮箱中的验证码', 26 'saved' => '新密码已经保存!', 27 ], 28 29 'started' => [ 30 'password' => '新密码', 31 'password_confirmation' => '确认新密码', 32 'title' => '重置 <strong>:username</strong> 的密码', 33 'verification_key' => '验证码', 34 ], 35 36 'starting' => [ 37 'username' => '输入邮箱或用户名', 38 39 'reason' => [ 40 'inactive_different_country' => "您的账户已经很长时间没有被使用。为了确保您的账户安全,请重置密码。", 41 ], 42 'support' => [ 43 '_' => '需要进一步的帮助?通过我们的 :button 联系我们。', 44 'button' => '支持系统', 45 ], 46 ], 47];