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
23 lines
1.5 KiB
PHP
23 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'group_exists' => 'குழு ஏற்கனவே உள்ளது!',
|
|
'group_not_found' => 'குழு [: id] இல்லை.',
|
|
'group_name_required' => 'பெயர் புலம் தேவை',
|
|
|
|
'success' => [
|
|
'create' => 'குழு வெற்றிகரமாக உருவாக்கப்பட்டது.',
|
|
'update' => 'குழு வெற்றிகரமாக புதுப்பிக்கப்பட்டது.',
|
|
'delete' => 'குழு வெற்றிகரமாக நீக்கப்பட்டது.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'இந்த குழுவையை நிச்சயமாக நீக்க விரும்புகிறீர்களா?',
|
|
'create' => 'குழுவை உருவாக்கும் ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'update' => 'குழுவை புதுப்பிப்பதில் சிக்கல் ஏற்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'delete' => 'குழுவை நீக்குவதில் ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
],
|
|
|
|
];
|