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
53 lines
2.4 KiB
PHP
53 lines
2.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'field' => [
|
|
'invalid' => 'ฟิลด์นั้นไม่มีอยู่',
|
|
'already_added' => 'ฟิลด์ถูกเพิ่มแล้ว',
|
|
|
|
'create' => [
|
|
'error' => 'ไม่ได้สร้างฟิลด์โปรดลองอีกครั้ง',
|
|
'success' => 'สร้างฟิลด์สำเร็จแล้ว',
|
|
'assoc_success' => 'ฟิลด์ถูกเพิ่มเข้าไปใน fieldset สำเร็จแล้ว',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'ฟิลด์ไม่ได้รับการอัปเดตโปรดลองอีกครั้ง',
|
|
'success' => 'ปรับปรุงข้อมูลสำเร็จแล้ว',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลนี้',
|
|
'error' => 'เกิดปัญหาในการนำออกฟิลด์ กรุณาลองอีกครั้ง.',
|
|
'success' => 'ฟิลด์ถูกลบเรียบร้อยแล้ว',
|
|
'in_use' => 'ฟิลด์ยังคงใช้งานอยู่',
|
|
],
|
|
|
|
],
|
|
|
|
'fieldset' => [
|
|
|
|
'does_not_exist' => 'ไม่พบ Fieldset',
|
|
|
|
'create' => [
|
|
'error' => 'ไม่ได้สร้าง Fieldset โปรดลองอีกครั้ง',
|
|
'success' => 'สร้างฟิลด์สำเร็จแล้ว',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'ไม่ได้อัปเดต Fieldset โปรดลองอีกครั้ง',
|
|
'success' => 'อัปเดตฟิลด์สำเร็จแล้ว',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'คุณแน่ใจหรือไม่ว่าต้องการลบชุดข้อมูลฟิลด์นี้',
|
|
'error' => 'เกิดปัญหาในการลบ fieldset กรุณาลองอีกครั้ง.',
|
|
'success' => 'ฟิลด์ถูกลบเรียบร้อยแล้ว',
|
|
'in_use' => 'Fieldset ยังคงใช้อยู่',
|
|
],
|
|
|
|
],
|
|
|
|
];
|