30 lines
608 B
PHP
30 lines
608 B
PHP
<?php
|
||
|
||
return [
|
||
|
||
'downloads' => [
|
||
'nodownloads' => 'There are no downloads!',
|
||
],
|
||
|
||
'emails' => [
|
||
'whoops' => 'Whoops',
|
||
'hello' => 'Hello',
|
||
'regards' => 'Regards',
|
||
'buttontroubles' => [
|
||
'If you’re having trouble clicking the ":actiontext" button,',
|
||
'copy and paste the URL below into your web browser:',
|
||
],
|
||
'allrightsreserved' => 'All Rights Reserved',
|
||
],
|
||
|
||
'home' => [
|
||
|
||
],
|
||
|
||
'nav' => [
|
||
'login' => 'Login',
|
||
'administration' => 'Administration',
|
||
'logout' => 'Log Out',
|
||
],
|
||
];
|