41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'visit_store' => 'Visit Store',
|
|
'form' => [
|
|
'please_select' => 'Please Select',
|
|
],
|
|
'buttons' => [
|
|
'save' => 'Save',
|
|
'delete' => 'Delete',
|
|
'cancel' => 'Cancel',
|
|
],
|
|
'table' => [
|
|
'id' => 'ID',
|
|
'status' => 'Status',
|
|
'created' => 'Created',
|
|
'date' => 'Date',
|
|
],
|
|
'pagination' => [
|
|
'previous' => 'Previous',
|
|
'next' => 'Next',
|
|
],
|
|
'delete' => [
|
|
'confirmation' => 'Confirmation',
|
|
'confirmation_message' => 'Are you sure you want to delete?',
|
|
],
|
|
'shortcuts' => [
|
|
'available_shortcuts' => 'Available keyboard shortcuts on this page',
|
|
'this_menu' => 'This Menu',
|
|
'back_to_index' => 'Back to :name Index',
|
|
],
|
|
'errors' => [
|
|
'404' => '404',
|
|
'404_title' => 'Oops! This page was not found',
|
|
'404_description' => 'The page you are looking for was not found.',
|
|
'500' => '500',
|
|
'500_title' => 'Oops! Something went wrong',
|
|
'500_description' => 'An administrator was notified.',
|
|
],
|
|
];
|