mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Updated strings
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
2ef45afb2b
commit
eb9f17122e
|
@ -42,9 +42,9 @@
|
||||||
<!-- The fileinput-button span is used to style the file input field as button -->
|
<!-- The fileinput-button span is used to style the file input field as button -->
|
||||||
@if (!config('app.lock_passwords'))
|
@if (!config('app.lock_passwords'))
|
||||||
<span class="btn btn-primary fileinput-button">
|
<span class="btn btn-primary fileinput-button">
|
||||||
<span>{{ trans('admin/importer/general.select_import_file') }}</span>
|
<span>{{ trans('button.select_file') }}</span>
|
||||||
<!-- The file input field used as target for the file upload widget -->
|
<!-- The file input field used as target for the file upload widget -->
|
||||||
<label for="files[]"><span class="sr-only">{{ trans('admin/importer/general.select_file') }}</span></label>
|
<label for="files[]"><span class="sr-only">{{ trans('button.select_file') }}</span></label>
|
||||||
<input id="fileupload" type="file" name="files[]" data-url="{{ route('api.imports.index') }}" accept="text/csv" aria-label="files[]">
|
<input id="fileupload" type="file" name="files[]" data-url="{{ route('api.imports.index') }}" accept="text/csv" aria-label="files[]">
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
|
@ -67,11 +67,10 @@
|
||||||
class="col-md-12 table table-striped snipe-table">
|
class="col-md-12 table table-striped snipe-table">
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th class="col-md-6">{{ trans('admin/importer/table.file') }}</th>
|
<th class="col-md-6">{{ trans('general.file_name') }}</th>
|
||||||
<th class="col-md-3">{{ trans('admin/importer/table.created') }}</th>
|
<th class="col-md-3">{{ trans('general.created_at') }}</th>
|
||||||
<th class="col-md-1">{{ trans('admin/importer/table.size') }}</th>
|
<th class="col-md-1">{{ trans('general.filesize') }}</th>
|
||||||
<th class="col-md-1 text-right"><span class="sr-only">{{ trans('admin/importer/table.process') }}</span></th>
|
<th class="col-md-1 text-right"><span class="sr-only">{{ trans('general.actions') }}</span></th>
|
||||||
<th class="col-md-1 text-right"><span class="sr-only">{{ trans('admin/importer/table.delete') }}</span></th>
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<template v-for="currentFile in files">
|
<template v-for="currentFile in files">
|
||||||
|
@ -81,10 +80,10 @@
|
||||||
<td class="col-md-1">@{{ currentFile.filesize }}</td>
|
<td class="col-md-1">@{{ currentFile.filesize }}</td>
|
||||||
<td class="col-md-1 text-right">
|
<td class="col-md-1 text-right">
|
||||||
<button class="btn btn-sm btn-info" @click="toggleEvent(currentFile.id)">
|
<button class="btn btn-sm btn-info" @click="toggleEvent(currentFile.id)">
|
||||||
{{ trans('admin/importer/button.process') }}
|
<i class="fas fa-cloud-download-alt fa-fw" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{ trans('general.import') }}</span>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
|
||||||
<td class="col-md-1 text-right">
|
|
||||||
<button class="btn btn-sm btn-danger" @click="deleteFile(currentFile)">
|
<button class="btn btn-sm btn-danger" @click="deleteFile(currentFile)">
|
||||||
<i class="fas fa-trash icon-white" aria-hidden="true"></i><span class="sr-only"></span></button>
|
<i class="fas fa-trash icon-white" aria-hidden="true"></i><span class="sr-only"></span></button>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -580,7 +580,7 @@
|
||||||
@can('import')
|
@can('import')
|
||||||
<li{!! (Request::is('import/*') ? ' class="active"' : '') !!}>
|
<li{!! (Request::is('import/*') ? ' class="active"' : '') !!}>
|
||||||
<a href="{{ route('imports.index') }}">
|
<a href="{{ route('imports.index') }}">
|
||||||
<i class="fas fa-cloud-download-alt fa-fw"></i>
|
<i class="fas fa-cloud-download-alt fa-fw" aria-hidden="true"></i>
|
||||||
<span>{{ trans('general.import') }}</span>
|
<span>{{ trans('general.import') }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in a new issue