mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-03 18:07:41 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
26 lines
1.2 KiB
PHP
26 lines
1.2 KiB
PHP
<?php
|
||
|
||
return [
|
||
|
||
'does_not_exist' => 'קטגוריה לא קיימת.',
|
||
'assoc_models' => 'קטגוריה זו משויכת כרגע לדגם אחד לפחות ולא ניתן למחוק אותה. אנא עדכן את הדגמים שלך כדי לא להתייחס עוד לקטגוריה זו ונסה שוב.',
|
||
'assoc_items' => 'קטגוריה זו משויכת כרגע עם לפחות אחד: type_type ולא ניתן למחוק אותה. עדכן את: הנכס_ typepe כדי לא להתייחס עוד לקטגוריה זו ונסה שוב.',
|
||
|
||
'create' => [
|
||
'error' => 'הקטגוריה לא נוצרה, נסה שוב.',
|
||
'success' => 'קטגוריה נוצר בהצלחה.',
|
||
],
|
||
|
||
'update' => [
|
||
'error' => 'הקטגוריה לא עודכנה, נסה שוב',
|
||
'success' => 'קטגוריה עודכנה בהצלחה.',
|
||
],
|
||
|
||
'delete' => [
|
||
'confirm' => 'האם אתה בטוח שברצונך למחוק קטגוריה זו?',
|
||
'error' => 'היתה בעיה במחיקת הקטגוריה. בבקשה נסה שוב.',
|
||
'success' => 'הקטגוריה נמחקה בהצלחה.',
|
||
],
|
||
|
||
];
|