24 lines
317 B
PHP
24 lines
317 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'confirmation' => 'Are you sure you would like to do this?',
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Cancel',
|
|
],
|
|
|
|
'confirm' => [
|
|
'label' => 'Confirm',
|
|
],
|
|
|
|
'submit' => [
|
|
'label' => 'Submit',
|
|
],
|
|
|
|
],
|
|
|
|
];
|