Enable translation on Eventlog & Component-status widgets (#14180)

* translate component-status

* translate eventlog
This commit is contained in:
Peca Nesovanovic 2022-08-05 10:12:44 +02:00 committed by GitHub
parent c25629343f
commit 8b012c0a27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -2,8 +2,8 @@
<table id="component-status" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="status" data-order="desc">Status</th>
<th data-column-id="count">Count</th>
<th data-column-id="status" data-order="desc">{{ __('Status') }}</th>
<th data-column-id="count">{{ __('Count') }}</th>
</tr>
</thead>
<tbody>

View File

@ -2,11 +2,11 @@
<table id="eventlog" class="table table-hover table-condensed table-striped" data-ajax="true">
<thead>
<tr>
<th data-column-id="datetime" data-order="desc">Timestamp</th>
<th data-column-id="type">Type</th>
<th data-column-id="device_id">Hostname</th>
<th data-column-id="message">Message</th>
<th data-column-id="username">User</th>
<th data-column-id="datetime" data-order="desc">{{ __('Timestamp') }}</th>
<th data-column-id="type">{{ __('Type') }}</th>
<th data-column-id="device_id">{{ __('Hostname') }}</th>
<th data-column-id="message">{{ __('Message') }}</th>
<th data-column-id="username">{{ __('User') }}</th>
</tr>
</thead>
</table>