mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 06:59:41 -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
918 B
PHP
25 lines
918 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Níl an rang dímheasa ann.',
|
|
'assoc_users' => 'Tá an dímheas seo bainteach le samhlacha amháin nó níos mó faoi láthair agus ní féidir í a scriosadh. Scrios na samhlacha, agus ansin déan iarracht a scriosadh arís.',
|
|
|
|
'create' => [
|
|
'error' => 'Níor cruthaíodh rang dímheasa, déan iarracht arís. :(',
|
|
'success' => 'An rang dímheasa a cruthaíodh go rathúil. :)',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Níor nuashonraíodh an rang dímheasa, déan iarracht arís',
|
|
'success' => 'Rang dímheasta cothrom le dáta go rathúil.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'An bhfuil tú cinnte gur mian leat an rang dímheasa seo a scriosadh?',
|
|
'error' => 'Bhí ceist ann a scriosadh an rang dímheasa. Arís, le d\'thoil.',
|
|
'success' => 'Scriosadh an rang dímheasa go rathúil.',
|
|
],
|
|
|
|
];
|