23 lines
741 B
PHP
Executable File
23 lines
741 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'group_exists' => 'Skupina již existuje!',
|
|
'group_not_found' => 'Skupina [:id] neexistuje.',
|
|
'group_name_required' => 'Název je vyžadován',
|
|
|
|
'success' => array(
|
|
'create' => 'Skupina byla úspěšně vytvořena.',
|
|
'update' => 'Skupina byla úspěšně upravena.',
|
|
'delete' => 'Skupina byla úspěšně odstraněna.',
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Určitě chcete odstranit tuto skupinu?',
|
|
'create' => 'There was an issue creating the group. Please try again.',
|
|
'update' => 'There was an issue updating the group. Please try again.',
|
|
'delete' => 'There was an issue deleting the group. Please try again.',
|
|
),
|
|
|
|
);
|