mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -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
20 lines
1.4 KiB
PHP
20 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'does_not_exist' => 'ไม่มี บริษัท',
|
|
'assoc_users' => 'บริษัท นี้เชื่อมโยงกับโมเดลอย่างน้อยหนึ่งรายการและไม่สามารถลบได้ โปรดอัปเดตโมเดลของคุณเพื่อไม่ให้ บริษัท นี้อ้างอิงอีกต่อไปและลองอีกครั้ง',
|
|
'create' => [
|
|
'error' => 'บริษัท ไม่ได้สร้างโปรดลองอีกครั้ง',
|
|
'success' => 'บริษัท สร้างสำเร็จแล้ว',
|
|
],
|
|
'update' => [
|
|
'error' => 'บริษัท ไม่ได้รับการปรับปรุงโปรดลองอีกครั้ง',
|
|
'success' => 'อัปเดต บริษัท สำเร็จแล้ว',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'คุณแน่ใจหรือไม่ว่าต้องการลบ บริษัท นี้',
|
|
'error' => 'เกิดปัญหาในการลบ บริษัท กรุณาลองอีกครั้ง.',
|
|
'success' => 'บริษัท ถูกลบเรียบร้อยแล้ว',
|
|
],
|
|
];
|