mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Create the language string to show in the importer GUI indicating the file is empty
This commit is contained in:
parent
49f6eef9df
commit
0c5d54dfde
|
@ -30,5 +30,6 @@ return [
|
||||||
'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.',
|
'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.',
|
||||||
|
|
||||||
'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
|
'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
|
||||||
|
|
||||||
|
'empty_file' => 'The importer detects that this file is empty.'
|
||||||
];
|
];
|
||||||
|
|
|
@ -241,7 +241,7 @@
|
||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
@php
|
@php
|
||||||
$statusText = trans('general.empty_file');
|
$statusText = trans('help.empty_file');
|
||||||
$statusType = 'info';
|
$statusType = 'info';
|
||||||
@endphp
|
@endphp
|
||||||
@endif
|
@endif
|
||||||
|
|
Loading…
Reference in a new issue