mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
25 lines
829 B
PHP
25 lines
829 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Dostawca nie istnieje.',
|
|
'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' => 'Dostawca nie został utworzony, spróbuj ponownie.',
|
|
'success' => 'Dostawca utworzony pomyślnie.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Dostawca nie został zaktualizowany, spróbuj ponownie',
|
|
'success' => 'Dostawca zaktualizowany pomyślnie.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Czy na pewno usunąć tego dostawcę?',
|
|
'error' => 'Podczas usuwania dostawcy napotkano błąd. Spróbuj ponownie.',
|
|
'success' => 'Dostawca usunięty pomyślnie.'
|
|
)
|
|
|
|
);
|