the browser-facing portion of osu!
at master 30 lines 1.3 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 'box' => [ 8 'sent' => '一封包含验证码的邮件已经发送到 :mail ,请输入该验证码。', 9 'title' => '账户认证', 10 'verifying' => '认证中', 11 'issuing' => '正在生成新的验证码', 12 13 'info' => [ 14 'check_spam' => "如果找不到这封邮件,请检查垃圾箱。", 15 'recover' => "无法登录邮箱或者忘记了所使用的邮箱?:link.", 16 'recover_link' => '点击此处', 17 'reissue' => '也可以 :reissue_link 或者 :logout_link.', 18 'reissue_link' => '重发验证码', 19 'logout_link' => '登出', 20 ], 21 ], 22 23 'errors' => [ 24 'expired' => '该验证码已经过期,新验证码已经重新发送。', 25 'incorrect_key' => '验证码错误。', 26 'retries_exceeded' => '验证码错误次数超过限定次数,新验证码已经重新发送。', 27 'reissued' => '新验证码已经重新发送。', 28 'unknown' => '发生了未知的错误,新验证码已经重新发送。', 29 ], 30];