-
-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathprofile.php
More file actions
65 lines (59 loc) · 2.21 KB
/
profile.php
File metadata and controls
65 lines (59 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
return [
/*
|--------------------------------------------------------------------------
| Profile page
|--------------------------------------------------------------------------
*/
'title' => 'Profile',
'login' => [
'header' => 'Profile',
'enter_current_password' => 'Enter your current password:',
'current_password' => 'Current password',
'credentials_update' => 'Your credentials will be changed to the following:',
'username' => 'Username',
'new_password' => 'New password',
'confirm_new_password' => 'Confirm new password',
'email_instruction' => 'Add your email below to enable receiving email notifications. To stop receiving emails, simply remove your email below.',
'email' => 'Email',
'change' => 'Change Login',
'api_token' => 'API Token ...',
'missing_fields' => 'Missing fields',
],
'register' => [
'username_exists' => 'Username already exists.',
'password_mismatch' => 'The passwords do not match.',
'signup' => 'Sign Up',
'error' => 'An error occurred while registering your account.',
'success' => 'Your account has been successfully created.',
],
'token' => [
'unavailable' => 'You have already viewed this token.',
'no_data' => 'No token API have been generated.',
'disable' => 'Disable',
'disabled' => 'Token disabled',
'warning' => 'This token will not be displayed again. Copy it and keep it in a safe place.',
'reset' => 'Reset the token',
'create' => 'Create a new token',
],
'oauth' => [
'header' => 'OAuth',
'header_not_available' => 'OAuth is not available',
'setup_env' => 'Set up the credentials in your .env',
'token_registered' => '%s token registered.',
'setup' => 'Set up %s',
'reset' => 'reset',
'credential_deleted' => 'Credential deleted!',
],
'u2f' => [
'header' => 'Passkey/MFA/2FA',
'info' => 'This only provides the ability to use WebAuthn to authenticate instead of username & password.',
'empty' => 'Credentials list is empty!',
'not_secure' => 'Environment not secured. U2F not available.',
'new' => 'Register new device.',
'credential_deleted' => 'Credential deleted!',
'credential_updated' => 'Credential updated!',
'credential_registred' => 'Registration successful!',
'5_chars' => 'At least 5 chars.',
],
];