tethys/resources/lang/en/exceptions.php

43 lines
1.7 KiB
PHP
Raw Normal View History

2018-09-06 15:58:54 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Exception Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used in Exceptions thrown throughout the system.
| Regardless where it is placed, a button can be listed here so it is easily
| found in a intuitive way.
|
*/
2019-04-08 16:31:40 +00:00
'publish' => [
'release' => [
'update_error' => 'There was a problem rleasing this dataset. Please try again.',
],
2019-04-10 08:54:15 +00:00
'accept' => [
'update_error' => 'There was a problem accepting this dataset. Please try again.',
],
2019-04-08 16:31:40 +00:00
],
2018-09-06 15:58:54 +00:00
'backend' => [
'pages' => [
'already_exists' => 'That Page already exists. Please choose a different name.',
'create_error' => 'There was a problem creating this Page. Please try again.',
'delete_error' => 'There was a problem deleting this Page. Please try again.',
'not_found' => 'That Page does not exist.',
'update_error' => 'There was a problem updating this Page. Please try again.',
],
2018-09-12 15:30:42 +00:00
'licenses' => [
'already_exists' => 'That License already exists. Please choose a different name.',
'create_error' => 'There was a problem creating this License. Please try again.',
'delete_error' => 'There was a problem deleting this License. Please try again.',
'not_found' => 'That License does not exist.',
'update_error' => 'There was a problem updating this License. Please try again.',
],
2018-09-06 15:58:54 +00:00
],
'frontend' => [],
];