mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
25 lines
849 B
PHP
25 lines
849 B
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
'does_not_exist' => 'Producent nie istnieje.',
|
||
|
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ',
|
||
|
|
||
|
'create' => array(
|
||
|
'error' => 'Producent nie został stworzony, spróbuj ponownie.',
|
||
|
'success' => 'Producent stworzony pomyślnie.'
|
||
|
),
|
||
|
|
||
|
'update' => array(
|
||
|
'error' => 'Producent nie został zaktualizowany, spróbuj ponownie',
|
||
|
'success' => 'Producent zaktualizowany pomyślnie.'
|
||
|
),
|
||
|
|
||
|
'delete' => array(
|
||
|
'confirm' => 'Czy na pewno usunąć danego producenta?',
|
||
|
'error' => 'Podczas usuwania producenta wystąpił błąd. Spróbuj ponownie.',
|
||
|
'success' => 'Producent usunięty pomyślnie.'
|
||
|
)
|
||
|
|
||
|
);
|