snipe-it/resources/lang/pl/admin/custom_fields/message.php
snipe ddfa5776c5 Updated language strings
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();`

I'll try to fix it. :(

FML

Signed-off-by: snipe <snipe@snipe.net>
2022-01-13 21:27:29 -08:00

58 lines
1.7 KiB
PHP

<?php
return array(
'field' => array(
'invalid' => 'Pole nie istnieje.',
'already_added' => 'Pole już istnieje',
'create' => array(
'error' => 'Pole nie zostało utworzone. Spróbuj ponownie.',
'success' => 'Pole utworzone pomyślnie.',
'assoc_success' => 'Pole pomyślnie dadane do zestawu pól.'
),
'update' => array(
'error' => 'Pole nie zostało zaktualizowane, spróbuj ponownie',
'success' => 'Pole zaktualizowane pomyślnie.'
),
'delete' => array(
'confirm' => 'Czy na pewno chcesz usunąć to pole?',
'error' => 'Wystąpił błąd podczas usuwania pola. Spróbuj ponownie.',
'success' => 'Pole zostało usunięte pomyślnie.',
'in_use' => 'Pole jest wciąż w użytku.',
)
),
'fieldset' => array(
'does_not_exist' => 'Zestaw pól nie istnieje',
'create' => array(
'error' => 'Zestaw pól nie został utworzony, spróbuj ponownie.',
'success' => 'Zestaw pól utworzono pomyślnie.'
),
'update' => array(
'error' => 'Zestaw pól nie został zaktualizowany, spróbuj ponownie',
'success' => 'Zestaw pól zaktualizowany pomyślnie.'
),
'delete' => array(
'confirm' => 'Czy na pewno chcesz usunąć ten zestaw pól?',
'error' => 'Wystąpił błąd podczas usuwania zestawu pól. Spróbuj ponownie.',
'success' => 'Zestaw pól usunięto pomyślnie.',
'in_use' => 'Zestaw pól jest nadal w użyciu.',
)
),
);