mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
'does_not_exist' => 'Místo neexistuje.',
|
||
|
'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ',
|
||
|
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
|
||
|
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
|
||
|
|
||
|
|
||
|
'create' => array(
|
||
|
'error' => 'Místo nebylo vytvořeno, zkuste to znovu prosím.',
|
||
|
'success' => 'Místo bylo úspěšně vytvořeno.'
|
||
|
),
|
||
|
|
||
|
'update' => array(
|
||
|
'error' => 'Místo nebylo aktualizováno, zkuste to znovu prosím',
|
||
|
'success' => 'Místo úspěšně aktualizováno.'
|
||
|
),
|
||
|
|
||
|
'delete' => array(
|
||
|
'confirm' => 'Opravdu si želáte vymazat tohle místo na trvalo?',
|
||
|
'error' => 'Vyskytl se problém při mazání místa. Zkuste to znovu prosím.',
|
||
|
'success' => 'Místo bylo úspěšně smazáno.'
|
||
|
)
|
||
|
|
||
|
);
|