mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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
25 lines
1.9 KiB
PHP
25 lines
1.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'தேய்மானம் வகுப்பு இல்லை.',
|
|
'assoc_users' => 'இந்த தேய்மானம் ஒன்று ஒன்று அல்லது அதற்கு மேற்பட்ட மாதிரிகளுடன் தொடர்புடையது, மேலும் நீக்கப்பட முடியாது. மாதிரிகள் நீக்கி, மீண்டும் நீக்கி முயற்சிக்கவும்.',
|
|
|
|
'create' => [
|
|
'error' => 'தேய்மானம் வகுப்பு உருவாக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும். :(',
|
|
'success' => 'தேய்மானம் வகுப்பு வெற்றிகரமாக உருவாக்கப்பட்டது. :)',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'தேய்மானம் தரமதிப்பு புதுப்பிக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்',
|
|
'success' => 'துடைக்கும் வர்க்கம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'இந்த தேய்மானத் தரத்தை நிச்சயமாக நீக்க விரும்புகிறீர்களா?',
|
|
'error' => 'தேய்மானம் வகுப்பை நீக்குவதில் ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'தேய்மானம் வகுப்பு வெற்றிகரமாக நீக்கப்பட்டது.',
|
|
],
|
|
|
|
];
|