mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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
27 lines
1.6 KiB
PHP
27 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'المورد غير مجود.',
|
|
|
|
'create' => [
|
|
'error' => 'لم يتم إنشاء المورد، الرجاء المحاولة مرة أخرى.',
|
|
'success' => 'تم إنشاء المورد بنجاح.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'لم يتم تحديث المورد، يرجى إعادة المحاولة',
|
|
'success' => 'تم تحديث المورد بنجاح.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'هل أنت متأكد من رغبتك في حذف هذا المورد؟',
|
|
'error' => 'حدثت مشكلة أثناء حذف المورد. حاول مرة اخرى.',
|
|
'success' => 'تم حذف المورد بنجاح.',
|
|
'assoc_assets' => 'هذا المورد مرتبط حاليا مع :asset_count من الأصول على الاقل ولا يمكن حذفه. الرجاء تحديث الأصول لكي لا تشير الى هذا المورد ثم حاول مرة أخرى. ',
|
|
'assoc_licenses' => 'هذا المورد مرتبط حاليا مع :licenses_count من التراخيص ولا يمكن حذفه. الرجاء تحديث التراخيص الخاصة بك لكي لا تشير الى هذا المورد وحاول مرة أخرى. ',
|
|
'assoc_maintenances' => 'هذا المورد مرتبط حاليا مع :asset_maintenances_count من سندات صيانة الأصول ولا يمكن حذفه. الرجاء تحديث سندات صيانة الأصول الخاصة بك لكي لا تشير الى هذا المورد وحاول مرة أخرى. ',
|
|
],
|
|
|
|
];
|