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,22 @@
<?php
return array(
'does_not_exist' => 'המחלקה לא קיימת.',
'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ',
'assoc_users' => 'מחלקה זו משויכת כרגע למשתמש אחד לפחות ולא ניתן למחוק אותה. עדכן את המשתמשים שלך כדי לא להפנות עוד למחלקה זו ונסה שוב.',
'create' => array(
'error' => 'המחלקה לא נוצרה, נסה שוב.',
'success' => 'המחלקה נוצרה בהצלחה.'
),
'update' => array(
'error' => 'המחלקה לא עודכנה, נסה שוב',
'success' => 'המחלקה עודכנה בהצלחה.'
),
'delete' => array(
'confirm' => 'האם אתה בטוח שברצונך למחוק מחלקה זו?',
'error' => 'היתה בעיה במחיקת המחלקה. בבקשה נסה שוב.',
'success' => 'המחלקה נמחקה בהצלחה.'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'id' => 'תְעוּדַת זֶהוּת',
'name' => 'שם מחלקה',
'manager' => 'מנהל',
'location' => 'מקום',
'create' => 'יצירת המחלקה',
'update' => 'עדכון המחלקה',
);