mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 15:09:40 -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
22 lines
1.8 KiB
PHP
22 lines
1.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'துறை இல்லை.',
|
|
'assoc_users' => 'இந்தத் துறை தற்போது குறைந்தது ஒரு பயனருடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. தயவுசெய்து உங்கள் துறையை இனி இந்த துறையை குறிப்பிடாமல் புதுப்பிக்கவும் மற்றும் மீண்டும் முயற்சிக்கவும்.',
|
|
'create' => [
|
|
'error' => 'துறை உருவாக்கப்பட்டது இல்லை, மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'துறை வெற்றிகரமாக உருவாக்கப்பட்டது.',
|
|
],
|
|
'update' => [
|
|
'error' => 'துறை புதுப்பிக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்',
|
|
'success' => 'துறை வெற்றிகரமாக புதுப்பிக்கப்பட்டது.',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'இந்தத் துறையை நிச்சயமாக நீக்க விரும்புகிறீர்களா?',
|
|
'error' => 'திணைக்களம் நீக்கப்பட்ட ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'துறை வெற்றிகரமாக நீக்கப்பட்டது.',
|
|
],
|
|
|
|
];
|