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
20 lines
1.8 KiB
PHP
20 lines
1.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
'does_not_exist' => 'நிறுவனம் இல்லை.',
|
|
'assoc_users' => 'இந்த நிறுவனம் தற்போது குறைந்தது ஒரு மாதிரியுடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. இந்த நிறுவனத்தை இனி குறிப்பிடாமல் உங்கள் மாடல்களை புதுப்பிக்கவும் மீண்டும் முயற்சிக்கவும்.',
|
|
'create' => [
|
|
'error' => 'நிறுவனம் உருவாக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'நிறுவனம் வெற்றிகரமாக உருவாக்கப்பட்டது.',
|
|
],
|
|
'update' => [
|
|
'error' => 'நிறுவனம் புதுப்பிக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்',
|
|
'success' => 'நிறுவனம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது.',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'இந்த நிறுவனத்தை நிச்சயமாக நீக்க விரும்புகிறீர்களா?',
|
|
'error' => 'நிறுவனத்தை நீக்குவதில் ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'நிறுவனம் வெற்றிகரமாக நீக்கப்பட்டது.',
|
|
],
|
|
];
|