This repository was archived by the owner on Aug 22, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcp.php
More file actions
41 lines (37 loc) · 1.63 KB
/
cp.php
File metadata and controls
41 lines (37 loc) · 1.63 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
<?php
declare(strict_types=1);
return [
'links' => [
'expire_time' => 'Expire time',
'links' => 'Links',
'no_links' => 'No links created yet.',
'pw_protected' => 'Password protected',
'redirect_to' => 'Redirect to',
],
'settings' => [
'headline' => 'MagicLink',
'configure_your_needs' => 'Configure MagicLink after your needs.',
'ml_enabled' => 'MagicLink enabled?',
'ml_enabled_instructions' => 'Activate or deactivate the usage of magic links.',
'ml_expire_time' => 'Expire time',
'ml_expire_time_instructions' => 'Time the login link is valid. Default is 30 minutes.',
'ml_allowed_addresses' => 'Allowed addresses',
'ml_allowed_addresses_instructions' => 'Allowed addresses to request a magic link for viewing protected content. Enter one address in each field.',
'ml_allowed_domains' => 'Allowed domains',
'ml_allowed_domains_instructions' => 'Allowed domains to request a magic link for. _Example:_ example.com',
'settings' => 'Settings',
'updated_successfully' => 'Settings updated successfully.',
],
'permissions' => [
'settings' => 'MagicLink Settings',
'view_links' => 'View links',
'view_links_description' => 'Grants access to see magic links',
'view_settings' => 'View settings',
'view_settings_description' => 'Grants access to see settings',
],
'email' => [
'email' => 'Email',
'new_link_subject' => 'Your login link',
],
'unable_to_save' => 'Unable to save settings. Please correct the wrong fields and try again.',
];