mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
translation strings
This commit is contained in:
parent
2a352619f7
commit
8cbff0179c
|
@ -10,6 +10,7 @@ return [
|
||||||
'bulk_update' => 'Bulk Update Assets',
|
'bulk_update' => 'Bulk Update Assets',
|
||||||
'bulk_update_help' => 'This form allows you to update multiple assets at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged. ',
|
'bulk_update_help' => 'This form allows you to update multiple assets at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged. ',
|
||||||
'bulk_update_warn' => 'You are about to edit the properties of a single asset.|You are about to edit the properties of :asset_count assets.',
|
'bulk_update_warn' => 'You are about to edit the properties of a single asset.|You are about to edit the properties of :asset_count assets.',
|
||||||
|
'bulk_update_with_custom_field' => 'made up of :asset_model_count models.',
|
||||||
'checkedout_to' => 'Checked Out To',
|
'checkedout_to' => 'Checked Out To',
|
||||||
'checkout_date' => 'Checkout Date',
|
'checkout_date' => 'Checkout Date',
|
||||||
'checkin_date' => 'Checkin Date',
|
'checkin_date' => 'Checkin Date',
|
||||||
|
|
|
@ -364,6 +364,7 @@ return [
|
||||||
'licenses_count' => 'Licenses Count',
|
'licenses_count' => 'Licenses Count',
|
||||||
'notification_error' => 'Error:',
|
'notification_error' => 'Error:',
|
||||||
'notification_error_hint' => 'Please check the form below for errors',
|
'notification_error_hint' => 'Please check the form below for errors',
|
||||||
|
'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:',
|
||||||
'notification_success' => 'Success:',
|
'notification_success' => 'Success:',
|
||||||
'notification_warning' => 'Warning:',
|
'notification_warning' => 'Warning:',
|
||||||
'notification_info' => 'Info:',
|
'notification_info' => 'Info:',
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<div class="callout callout-warning">
|
<div class="callout callout-warning">
|
||||||
<i class="fas fa-exclamation-triangle"></i> {{ trans_choice('admin/hardware/form.bulk_update_warn', count($assets), ['asset_count' => count($assets)]) }}
|
<i class="fas fa-exclamation-triangle"></i> {{ trans_choice('admin/hardware/form.bulk_update_warn', count($assets), ['asset_count' => count($assets)]) }}
|
||||||
@if (count($models) > 0)
|
@if (count($models) > 0)
|
||||||
made up of {{count($models)}} models
|
{{ trans_choice('admin/hardware/form.bulk_update_with_custom_field', count($models), ['asset_model_count' => count($models)]) }}
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||||
<i class="fas fa-exclamation-triangle faa-pulse animated"></i>
|
<i class="fas fa-exclamation-triangle faa-pulse animated"></i>
|
||||||
<strong>{{ trans('general.notification_error') }} </strong>
|
<strong>{{ trans('general.notification_error') }} </strong>
|
||||||
The following fields had validation errors and were not edited:
|
trans('general.notification_bulk_error_hint')
|
||||||
@foreach($messages as $message)
|
@foreach($messages as $message)
|
||||||
<br> {{ $message }}
|
<br> {{ $message }}
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
Loading…
Reference in a new issue