mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Model nie istnieje.',
|
|
'assoc_users' => 'This model is currently associated with one or more assets and cannot be deleted. Please delete the assets, and then try deleting again. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Model nie został stworzony. Spróbuj ponownie.',
|
|
'success' => 'Model utworzony pomyślnie.',
|
|
'duplicate_set' => 'An asset model with that name, manufacturer and model number already exists.',
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Model nie został zaktualizowany, spróbuj ponownie',
|
|
'success' => 'Model zaktualizowany pomyślnie.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this asset model?',
|
|
'error' => 'Wystąpił błąd podczas usuwania modelu. Spróbuj ponownie.',
|
|
'success' => 'Model usunięty poprawnie.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Model nie został przywrócony, spróbuj ponownie',
|
|
'success' => 'Model został przywrócony pomyślnie.'
|
|
),
|
|
|
|
);
|