mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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
37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'الملحق [:id] غير موجود.',
|
|
'assoc_users' => 'تم إخراج :count عنصر من هذا الملحق للمستخدمين، الرجاء ادخال بعض الملحقات ثم حاول مرة أخرى. ',
|
|
|
|
'create' => [
|
|
'error' => 'لم يتم انشاء الملحق، الرجاء المحاولة مرة اخرى.',
|
|
'success' => 'تم انشاء الملحق بنجاح.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'لم يتم تحديث الملحق، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'تم تحديث الملحق بنجاح.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'هل أنت متأكد من رغبتك في حذف هذا الملحق؟',
|
|
'error' => 'حدث خطأ أثناء محاولة حذف الملحق. الرجاء المحاولة مرة أخرى.',
|
|
'success' => 'تم حذف الملحق بنجاح.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'لم يتم إخراج الملحق، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'تم إخراج الملحق بنجاح.',
|
|
'user_does_not_exist' => 'هذا المستخدم خاطئ، الرجاء المحاولة مرة أخرى.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'لم يتم ادخال الملحق، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'تم ادخال الملحق بنجاح.',
|
|
'user_does_not_exist' => 'هذا المستخدم غير صحيح. الرجاء المحاولة مرة أخرى.',
|
|
],
|
|
|
|
];
|