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