This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,11 @@
<?php
return array(
'checkout' => 'Checkout מתכלה למשתמש',
'consumable_name' => 'שם מתכלה',
'create' => 'צור מתכלים',
'item_no' => 'פריט מספר.',
'remaining' => 'נוֹתָר',
'total' => 'סה"כ',
'update' => 'עדכון מתכלה',
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => 'הצריכה אינה קיימת.',
'create' => array(
'error' => 'הצריכה לא נוצרה, נסה שוב.',
'success' => 'הצריכה נוצרה בהצלחה.'
),
'update' => array(
'error' => 'הצריכה לא עודכנה, נסה שוב',
'success' => 'הצריכה עודכנה בהצלחה.'
),
'delete' => array(
'confirm' => 'האם אתה בטוח שברצונך למחוק את הפריט המתכלה הזה?',
'error' => 'היתה בעיה במחיקת המתכלים. בבקשה נסה שוב.',
'success' => 'המתכלים נמחקו בהצלחה.'
),
'checkout' => array(
'error' => 'הצריכה לא נבדקה, נסה שוב',
'success' => 'הצריכה נשללה בהצלחה.',
'user_does_not_exist' => 'משתמש זה אינו חוקי. בבקשה נסה שוב.',
'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ',
),
'checkin' => array(
'error' => 'הצריכה לא נבדקה, נסה שוב',
'success' => 'הצריכה נבדקה בהצלחה.',
'user_does_not_exist' => 'משתמש זה אינו חוקי. בבקשה נסה שוב.'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => 'שם מתכלה',
);