mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 22:19:41 -08:00
Merge pull request #11025 from snipe/fixes/missed_a_few_trans_strings
Fixed #10890 - Missed a few hard coded english strings
This commit is contained in:
commit
f91be34baf
|
@ -26,6 +26,7 @@
|
|||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Assets',
|
||||
'assigned_to' => 'Assigned to :name',
|
||||
'avatar_delete' => 'Delete Avatar',
|
||||
'avatar_upload' => 'Upload Avatar',
|
||||
'back' => 'Back',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Assigned to {{ $show_user->present()->fullName() }}</title>
|
||||
<title>{{ trans('general.assigned_to', ['name' => $show_user->present()->fullName()]) }}</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Arial, Helvetica", sans-serif;
|
||||
|
@ -49,7 +49,7 @@
|
|||
@endif
|
||||
@endif
|
||||
|
||||
<h2>Assigned to {{ $show_user->present()->fullName() }}</h4>
|
||||
<h2>{{ trans('general.assigned_to', ['name' => $show_user->present()->fullName()]) }}</h4>
|
||||
|
||||
@if ($assets->count() > 0)
|
||||
@php
|
||||
|
@ -69,7 +69,7 @@
|
|||
<th style="width: 10%;">{{ trans('general.category') }}</th>
|
||||
<th style="width: 20%;">{{ trans('admin/hardware/form.model') }}</th>
|
||||
<th style="width: 20%;">{{ trans('admin/hardware/form.serial') }}</th>
|
||||
<th style="width: 10%;">Checked Out</th>
|
||||
<th style="width: 10%;">{{ trans('admin/hardware/table.checkout_date') }}</th>
|
||||
<th data-formatter="imageFormatter" style="width: 20%;">{{ trans('general.signature') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -104,8 +104,7 @@
|
|||
<td>{{ $asset->model->category->name }}</td>
|
||||
<td>{{ $asset->model->name }}</td>
|
||||
<td>{{ $asset->serial }}</td>
|
||||
<td>
|
||||
{{ $asset->last_checkout }}</td>
|
||||
<td>{{ $asset->last_checkout }}</td>
|
||||
<td><img style="width:auto;height:100px;" src="{{ asset('/') }}display-sig/{{ $asset->assetlog->first()->accept_signature }}"></td>
|
||||
</tr>
|
||||
@php
|
||||
|
|
Loading…
Reference in a new issue