the browser-facing portion of osu!
at master 47 lines 1.7 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' => 'Verstuur verificatie e-mail opnieuw', 9 'set' => 'Wachtwoord instellen', 10 'start' => 'Start', 11 ], 12 13 'error' => [ 14 'contact_support' => 'Contacteer support om je account te herstellen.', 15 'expired' => 'Verificatiecode is verlopen.', 16 'invalid' => 'Onverwachte fout in verificatiecode.', 17 'is_privileged' => 'Neem contact op met een beheerder van een hoog niveau om je account te herstellen.', 18 'missing_key' => 'Vereist.', 19 'too_many_tries' => 'Te veel mislukte pogingen.', 20 'user_not_found' => 'Deze gebruiker bestaat niet.', 21 'wrong_key' => 'Onjuiste code.', 22 ], 23 24 'notice' => [ 25 'sent' => 'Controleer uw e-mail voor de verificatiecode.', 26 'saved' => 'Het nieuwe wachtwoord is opgeslagen!', 27 ], 28 29 'started' => [ 30 'password' => 'Nieuw wachtwoord', 31 'password_confirmation' => 'Wacthwoordbevestiging', 32 'title' => 'Opnieuw instellen van het wachtwoord van account <strong>:username</strong>.', 33 'verification_key' => 'Verificatiecode', 34 ], 35 36 'starting' => [ 37 'username' => 'Vul e-mail adres of gebruikersnaam in', 38 39 'reason' => [ 40 'inactive_different_country' => "Uw account is een lange tijd niet gebruikt. Om uw accountbeveiliging te verzekeren, reset uw wachtwoord.", 41 ], 42 'support' => [ 43 '_' => 'Meer hulp nodig? Neem contact met ons op via onze :button.', 44 'button' => 'ondersteuningssysteem', 45 ], 46 ], 47];