Fixed barcode lookup disabled hint was not localized

This commit is contained in:
Bernd Bestel 2018-07-22 10:18:03 +02:00
parent c6310d636d
commit 12eaa8c074
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -6,7 +6,7 @@
@php if(empty($prefillByName)) { $prefillByName = ''; } @endphp
<div class="form-group" data-next-input-selector="{{ $nextInputSelector }}" data-disallow-add-product-workflows="{{ BoolToString($disallowAddProductWorkflows) }}" data-prefill-by-name="{{ $prefillByName }}">
<label for="product_id">{{ $L('Product') }} <i class="fas fa-barcode"></i><span id="barcode-lookup-disabled-hint" class="small text-muted d-none"> Barcode lookup is disabled</span></label>
<label for="product_id">{{ $L('Product') }} <i class="fas fa-barcode"></i><span id="barcode-lookup-disabled-hint" class="small text-muted d-none"> {{ $L('Barcode lookup is disabled') }}</span></label>
<select class="form-control combobox" id="product_id" name="product_id" required>
<option value=""></option>
@foreach($products as $product)