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' => 'Resend verification email',
9 'set' => 'Set password',
10 'start' => 'Start',
11 ],
12
13 'error' => [
14 'contact_support' => 'Please contact support to recover account.',
15 'expired' => 'Verification code has expired.',
16 'invalid' => 'Unexpected error in verification code.',
17 'is_privileged' => 'Please contact a high level admin to recover account.',
18 'missing_key' => 'Required.',
19 'too_many_tries' => 'Too many failed attempts.',
20 'user_not_found' => 'Requested user does not exist.',
21 'wrong_key' => 'Incorrect code.',
22 ],
23
24 'notice' => [
25 'sent' => 'Check your email for the verification code.',
26 'saved' => 'New password saved!',
27 ],
28
29 'started' => [
30 'password' => 'New password',
31 'password_confirmation' => 'Password confirmation',
32 'title' => 'Resetting password for account <strong>:username</strong>.',
33 'verification_key' => 'Verification code',
34 ],
35
36 'starting' => [
37 'username' => 'Enter email address or username',
38
39 'reason' => [
40 'inactive_different_country' => "Your account hasn't been used in a long time. To ensure your account security please reset your password.",
41 ],
42 'support' => [
43 '_' => 'Need further assistance? Contact us via our :button.',
44 'button' => 'support system',
45 ],
46 ],
47];