mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Fixed #16402 - Localize “each” in string
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
83855d44d0
commit
369a68fe57
|
@ -599,5 +599,6 @@ return [
|
||||||
'generic_model_not_found' => 'That :model was not found or you do not have permission to access it',
|
'generic_model_not_found' => 'That :model was not found or you do not have permission to access it',
|
||||||
'deleted_models' => 'Deleted Asset Models',
|
'deleted_models' => 'Deleted Asset Models',
|
||||||
'deleted_users' => 'Deleted Users',
|
'deleted_users' => 'Deleted Users',
|
||||||
|
'cost_each' => ':amount each',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -1211,7 +1211,7 @@
|
||||||
<a href="{{ route('components.show', $component->id) }}">{{ $component->name }}</a>
|
<a href="{{ route('components.show', $component->id) }}">{{ $component->name }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ $component->pivot->assigned_qty }}</td>
|
<td>{{ $component->pivot->assigned_qty }}</td>
|
||||||
<td>{{ Helper::formatCurrencyOutput($component->purchase_cost) }} each</td>
|
<td>{{ trans('general.cost_each', ['amount' => Helper::formatCurrencyOutput($component->purchase_cost)]) }} </td>
|
||||||
<td>{{ $component->serial }}</td>
|
<td>{{ $component->serial }}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ route('components.checkin.show', $component->pivot->id) }}" class="btn btn-sm bg-purple hidden-print" data-tooltip="true">{{ trans('general.checkin') }}</a>
|
<a href="{{ route('components.checkin.show', $component->pivot->id) }}" class="btn btn-sm bg-purple hidden-print" data-tooltip="true">{{ trans('general.checkin') }}</a>
|
||||||
|
|
Loading…
Reference in a new issue