mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
translations done
This commit is contained in:
parent
d5d50264c3
commit
b84eaaf61a
|
@ -2,8 +2,11 @@
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'bulk_delete' => 'Confirm Bulk Delete Assets',
|
'bulk_delete' => 'Confirm Bulk Delete Assets',
|
||||||
|
'bulk_restore' => 'Confirm Bulk Restore Assets',
|
||||||
'bulk_delete_help' => 'Review the assets for bulk deletion below. Once deleted, these assets can be restored, but they will no longer be associated with any users they are currently assigned to.',
|
'bulk_delete_help' => 'Review the assets for bulk deletion below. Once deleted, these assets can be restored, but they will no longer be associated with any users they are currently assigned to.',
|
||||||
|
'bulk_restore_help' => 'Review the assets for bulk restoration below. Once restored, these assets will not be associated with any users they were previously assigned to.',
|
||||||
'bulk_delete_warn' => 'You are about to delete :asset_count assets.',
|
'bulk_delete_warn' => 'You are about to delete :asset_count assets.',
|
||||||
|
'bulk_restore_warn' => 'You are about to restore :asset_count assets.',
|
||||||
'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.',
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{{-- Page title --}}
|
{{-- Page title --}}
|
||||||
@section('title')
|
@section('title')
|
||||||
{{ trans('admin/hardware/form.bulk_delete') }}
|
{{ trans('admin/hardware/form.bulk_restore') }}
|
||||||
@parent
|
@parent
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<!-- left column -->
|
<!-- left column -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<p>{{ trans('admin/hardware/form.bulk_delete_help') }}</p>
|
<p>{{ trans('admin/hardware/form.bulk_restore_help') }}</p>
|
||||||
<form class="form-horizontal" method="post" action="{{ route('hardware/bulkrestore') }}" autocomplete="off" role="form">
|
<form class="form-horizontal" method="post" action="{{ route('hardware/bulkrestore') }}" autocomplete="off" role="form">
|
||||||
{{csrf_field()}}
|
{{csrf_field()}}
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
<div class="box-footer text-right">
|
<div class="box-footer text-right">
|
||||||
<a class="btn btn-link" href="{{ URL::previous() }}" method="post" enctype="multipart/form-data">{{ trans('button.cancel') }}</a>
|
<a class="btn btn-link" href="{{ URL::previous() }}" method="post" enctype="multipart/form-data">{{ trans('button.cancel') }}</a>
|
||||||
<button type="submit" class="btn btn-success" id="submit-button"><i class="fas fa-check icon-white" aria-hidden="true"></i> {{ trans('button.delete') }}</button>
|
<button type="submit" class="btn btn-success" id="submit-button"><i class="fas fa-check icon-white" aria-hidden="true"></i> {{ trans('button.restore') }}</button>
|
||||||
</div><!-- /.box-footer -->
|
</div><!-- /.box-footer -->
|
||||||
</div><!-- /.box -->
|
</div><!-- /.box -->
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue