strings.php
5.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
return [
/*
|--------------------------------------------------------------------------
| Strings Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used in strings throughout the system.
| Regardless where it is placed, a string can be listed here so it is easily
| found in a intuitive way.
|
*/
'backend' => [
'access' => [
'users' => [
'delete_user_confirm' => 'Are you sure you want to delete this user permanently? Anywhere in the application that references this user\'s id will most likely error. Proceed at your own risk. This can not be un-done.',
'if_confirmed_off' => '(If confirmed is off)',
'restore_user_confirm' => 'Restore this user to its original state?',
],
],
'dashboard' => [
'title' => 'Administrative Dashboard',
'welcome' => 'Welcome',
],
'general' => [
'all_rights_reserved' => 'All Rights Reserved.',
'are_you_sure' => 'Are you sure you want to do this?',
'boilerplate_link' => 'Laravel 5 Boilerplate',
'continue' => 'Continue',
'member_since' => 'Member since',
'minutes' => ' minutes',
'search_placeholder' => 'Search...',
'timeout' => 'You were automatically logged out for security reasons since you had no activity in ',
'see_all' => [
'messages' => 'See all messages',
'notifications' => 'View all',
'tasks' => 'View all tasks',
],
'status' => [
'online' => 'Online',
'offline' => 'Offline',
],
'you_have' => [
'messages' => '{0} You don\'t have messages|{1} You have 1 message|[2,Inf] You have :number messages',
'notifications' => '{0} You don\'t have notifications|{1} You have 1 notification|[2,Inf] You have :number notifications',
'tasks' => '{0} You don\'t have tasks|{1} You have 1 task|[2,Inf] You have :number tasks',
],
],
'search' => [
'empty' => 'Please enter a search term.',
'incomplete' => 'You must write your own search logic for this system.',
'title' => 'Search Results',
'results' => 'Search Results for :query',
],
'welcome' => '',
],
'emails' => [
'auth' => [
'account_confirmed' => 'Your account has been confirmed.',
'error' => 'Whoops!',
'greeting' => 'Hello!',
'regards' => 'Regards,',
'trouble_clicking_button' => 'If you’re having trouble clicking the ":action_text" button, copy and paste the URL below into your web browser:',
'thank_you_for_using_app' => 'Thank you for using our application!',
'password_reset_subject' => 'Reset Password',
'password_cause_of_email' => 'You are receiving this email because we received a password reset request for your account.',
'password_if_not_requested' => 'If you did not request a password reset, no further action is required.',
'reset_password' => 'Click here to reset your password',
'click_to_confirm' => 'Click here to confirm your account:',
],
'contact' => [
'email_body_title' => 'You have a new contact form request: Below are the details:',
'subject' => 'A new :app_name contact form submission!',
],
],
'frontend' => [
'test' => 'Test',
'tests' => [
'based_on' => [
'permission' => 'Permission Based - ',
'role' => 'Role Based - ',
],
'js_injected_from_controller' => 'Javascript Injected from a Controller',
'using_blade_extensions' => 'Using Blade Extensions',
'using_access_helper' => [
'array_permissions' => 'Using Access Helper with Array of Permission Names or ID\'s where the user does have to possess all.',
'array_permissions_not' => 'Using Access Helper with Array of Permission Names or ID\'s where the user does not have to possess all.',
'array_roles' => 'Using Access Helper with Array of Role Names or ID\'s where the user does have to possess all.',
'array_roles_not' => 'Using Access Helper with Array of Role Names or ID\'s where the user does not have to possess all.',
'permission_id' => 'Using Access Helper with Permission ID',
'permission_name' => 'Using Access Helper with Permission Name',
'role_id' => 'Using Access Helper with Role ID',
'role_name' => 'Using Access Helper with Role Name',
],
'view_console_it_works' => 'View console, you should see \'it works!\' which is coming from FrontendController@index',
'you_can_see_because' => 'You can see this because you have the role of \':role\'!',
'you_can_see_because_permission' => 'You can see this because you have the permission of \':permission\'!',
],
'user' => [
'change_email_notice' => 'If you change your e-mail you will be logged out until you confirm your new e-mail address.',
'email_changed_notice' => 'You must confirm your new e-mail address before you can log in again.',
'profile_updated' => 'Profile successfully updated.',
'password_updated' => 'Password successfully updated.',
],
'welcome_to' => 'Welcome to :place',
],
];