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
22 lines
2 KiB
PHP
22 lines
2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'not_found' => 'நீங்கள் தேடிக்கொண்டிருக்கும் சொத்து பராமரிப்பு இல்லை!',
|
|
'delete' => [
|
|
'confirm' => 'நிச்சயமாக இந்த சொத்து பராமரிப்பு நீக்க வேண்டுமா?',
|
|
'error' => 'சொத்து பராமரிப்பு நீக்கப்பட்ட ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'சொத்து பராமரிப்பு வெற்றிகரமாக நீக்கப்பட்டது.',
|
|
],
|
|
'create' => [
|
|
'error' => 'சொத்து பராமரிப்பு உருவாக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'சொத்து பராமரிப்பு வெற்றிகரமாக உருவாக்கப்பட்டது.',
|
|
],
|
|
'edit' => [
|
|
'error' => 'சொத்து பராமரிப்பு திருத்தப்படவில்லை, மீண்டும் முயற்சிக்கவும்.',
|
|
'success' => 'சொத்து பராமரிப்பு வெற்றிகரமாக திருத்தப்பட்டது.',
|
|
],
|
|
'asset_maintenance_incomplete' => 'இதுவரையிலும் முடிக்கப்படவில்லை',
|
|
'warranty' => 'உத்தரவாதத்தை',
|
|
'not_warranty' => 'உத்தரவாதம் இல்லை',
|
|
];
|