the browser-facing portion of osu!
at master 30 lines 1.4 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' => 'An email has been sent to :mail with a verification code. Enter the code.', 9 'title' => 'Account Verification', 10 'verifying' => 'Verifying...', 11 'issuing' => 'Issuing new code...', 12 13 'info' => [ 14 'check_spam' => "Make sure to check your spam folder if you can't find the email.", 15 'recover' => "If you can't access your email or have forgotten what you used, please follow the :link.", 16 'recover_link' => 'email recovery process here', 17 'reissue' => 'You can also :reissue_link or :logout_link.', 18 'reissue_link' => 'request another code', 19 'logout_link' => 'sign out', 20 ], 21 ], 22 23 'errors' => [ 24 'expired' => 'Verification code expired, new verification email sent.', 25 'incorrect_key' => 'Incorrect verification code.', 26 'retries_exceeded' => 'Incorrect verification code. Retry limit exceeded, new verification email sent.', 27 'reissued' => 'Verification code reissued, new verification email sent.', 28 'unknown' => 'Unknown problem occurred, new verification email sent.', 29 ], 30];