mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-27 06:29:47 -08:00
Translated strings
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
65c2d75c04
commit
b8887bd3e3
|
@ -214,12 +214,12 @@ class ImporterFile extends Component
|
||||||
public function mount()
|
public function mount()
|
||||||
{
|
{
|
||||||
$this->importTypes = [
|
$this->importTypes = [
|
||||||
'asset' => 'Assets', // TODO - translate!
|
'asset' => trans('general.assets'),
|
||||||
'accessory' => 'Accessories',
|
'accessory' => trans('general.accessories'),
|
||||||
'consumable' => 'Consumables',
|
'consumable' => trans('general.consumables'),
|
||||||
'component' => 'Components',
|
'component' => trans('general.components'),
|
||||||
'license' => 'Licenses',
|
'license' => trans('general.licenses'),
|
||||||
'user' => 'Users'
|
'user' => trans('general.users'),
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->columnOptions[''] = $this->getColumns(''); //blank mode? I don't know what this is supposed to mean
|
$this->columnOptions[''] = $this->getColumns(''); //blank mode? I don't know what this is supposed to mean
|
||||||
|
@ -238,7 +238,7 @@ class ImporterFile extends Component
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$this->statusType = 'pending';
|
$this->statusType = 'pending';
|
||||||
$this->statusText = "Processing...";
|
$this->statusText = trans('admin/hardware/form.processing_spinner');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue