mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 09: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
42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Níl múnla ann.',
|
|
'assoc_users' => 'Tá an tsamhail seo bainteach le sócmhainní amháin nó níos mó faoi láthair agus ní féidir é a scriosadh. Scrios na sócmhainní, agus ansin déan iarracht a scriosadh arís.',
|
|
|
|
'create' => [
|
|
'error' => 'Níor cruthaíodh an tsamhail, déan iarracht arís.',
|
|
'success' => 'Múnla cruthaithe go rathúil.',
|
|
'duplicate_set' => 'Tá múnla sócmhainne leis an ainm sin, an monaróir agus an uimhir samhail ann cheana féin.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Níor nuashonraíodh an tsamhail, déan iarracht arís',
|
|
'success' => 'Modúl nuashonraithe go rathúil',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'An bhfuil tú cinnte gur mian leat an tsamhail sócmhainne seo a scriosadh?',
|
|
'error' => 'Bhí ceist ann a scriosadh an tsamhail. Arís, le d\'thoil.',
|
|
'success' => 'Scriosadh an tsamhail go rathúil.',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => 'Níor athchóiríodh an tsamhail, déan iarracht arís',
|
|
'success' => 'Múnla curtha ar ais go rathúil.',
|
|
],
|
|
|
|
'bulkedit' => [
|
|
'error' => 'Níor athraíodh aon réimsí, mar sin níor nuashonraíodh aon rud.',
|
|
'success' => 'Modhanna nuashonraithe.',
|
|
],
|
|
|
|
'bulkdelete' => [
|
|
'error' => 'No models were selected, so nothing was deleted.',
|
|
'success' => ':success_count model(s) deleted!',
|
|
'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.',
|
|
],
|
|
|
|
];
|