mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
25 lines
822 B
PHP
25 lines
822 B
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
'does_not_exist' => 'Dodavatel neexistuje.',
|
||
|
'assoc_users' => 'This supplier is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this supplier and try again. ',
|
||
|
|
||
|
'create' => array(
|
||
|
'error' => 'Supplier was not created, please try again.',
|
||
|
'success' => 'Dodavatel úspěšně vytvořen.'
|
||
|
),
|
||
|
|
||
|
'update' => array(
|
||
|
'error' => 'Supplier was not updated, please try again',
|
||
|
'success' => 'Dodavatel úspěšně aktualizován.'
|
||
|
),
|
||
|
|
||
|
'delete' => array(
|
||
|
'confirm' => 'Are you sure you wish to delete this supplier?',
|
||
|
'error' => 'There was an issue deleting the supplier. Please try again.',
|
||
|
'success' => 'Dodavatel byl úspěšně smazán.'
|
||
|
)
|
||
|
|
||
|
);
|