ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
return array(
'accessory_category' => 'Kategória príslušenstva',
'accessory_name' => 'Názov príslušenstva',
'checkout' => 'Vrátiť príslušenstvo',
'checkin' => 'Prevziať príslušenstvo',
'create' => 'Vytvoriť príslušenstvo',
'edit' => 'Upraviť príslušenstvo',
'eula_text' => 'Kategória EULA',
'eula_text_help' => 'Toto políčko umožňuje prispôsobiť dokument EULA špecifickému typu majetku. Ak máte iba jeden dokument EULA pre všetky typy majetku, môžete označiť možnosť nižšie, aby sa použil predvolený dokument.',
'require_acceptance' => 'Vyžadovať od používateľov, aby potvrdili prijatie majetku v tejto kategórii.',
'no_default_eula' => 'Žiaden predvolený EULA dokument nebol nájdený. Pridajte nový v Nastaveniach.',
'total' => 'Celkom',
'remaining' => 'Dostupných',
'update' => 'Upraviť príslušenstvo',
'use_default_eula' => 'Použiť <a href="#" data-toggle="modal" data-target="#eulaModal">predvolený dokument EULA</a> namiesto aktuálneho.',
'use_default_eula_disabled' => '<del>Použiť namiesto aktuálneho predvolený dokument EULA.</del> Predvolený dokument EULA nie je nastavený. Prosím vyberte predvolený dokument v Nastaveniach.',
'clone' => 'Clone Accessory',
'delete_disabled' => 'This accessory cannot be deleted yet because some items are still checked out.',
);

View File

@ -0,0 +1,39 @@
<?php
return array(
'does_not_exist' => 'Príslušenstvo [:id] neexistuje.',
'not_found' => 'That accessory was not found.',
'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ',
'create' => array(
'error' => 'The accessory was not created, please try again.',
'success' => 'The accessory was successfully created.'
),
'update' => array(
'error' => 'The accessory was not updated, please try again',
'success' => 'The accessory was updated successfully.'
),
'delete' => array(
'confirm' => 'Are you sure you wish to delete this accessory?',
'error' => 'There was an issue deleting the accessory. Please try again.',
'success' => 'The accessory was deleted successfully.'
),
'checkout' => array(
'error' => 'Accessory was not checked out, please try again',
'success' => 'Accessory checked out successfully.',
'unavailable' => 'Accessory is not available for checkout. Check quantity available',
'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.'
),
'checkin' => array(
'error' => 'Accessory was not checked in, please try again',
'success' => 'Accessory checked in successfully.',
'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'dl_csv' => 'Stiahnuť CSV',
'eula_text' => 'EULA',
'id' => 'ID',
'require_acceptance' => 'Akceptácia',
'title' => 'Názov príslušenstva',
);