24 lines
316 B
PHP
24 lines
316 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'confirmation' => 'Czy na pewno chcesz to zrobić?',
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Anuluj',
|
|
],
|
|
|
|
'confirm' => [
|
|
'label' => 'Potwierdź',
|
|
],
|
|
|
|
'submit' => [
|
|
'label' => 'Zatwierdź',
|
|
],
|
|
|
|
],
|
|
|
|
];
|