mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
ddfa5776c5
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>
23 lines
801 B
PHP
23 lines
801 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'group_exists' => 'Taka grupa już istnieje!',
|
|
'group_not_found' => 'Grupa [:id] nie istnieje.',
|
|
'group_name_required' => 'Nazwa jest polem obowiązkowym',
|
|
|
|
'success' => array(
|
|
'create' => 'Grupa została poprawnie utworzona.',
|
|
'update' => 'Grupa została poprawnie zaktualizowana.',
|
|
'delete' => 'Grupa została usunięta.',
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Czy na pewno chcesz usunąć tą grupę ?',
|
|
'create' => 'Wystąpił problem podczas tworzenia grupy. Proszę spróbować ponownie.',
|
|
'update' => 'Wystąpił problem podczas aktualizacji grupy. Proszę spróbować ponownie.',
|
|
'delete' => 'Wystąpił problem podczas usuwania grupy. Proszę spróbować ponownie.',
|
|
),
|
|
|
|
);
|