Mark string translatable in View logs

and update messages.po
This commit is contained in:
fabrixxm 2021-10-01 16:45:34 +02:00
commit 0638e23f7a
4 changed files with 123 additions and 44 deletions

View file

@ -8,33 +8,33 @@
</div>
{{else}}
<form method="get" class="row">
<div class="col-xs-10">
<div class="col-xs-8">
<div class="form-group form-group-search">
<input accesskey="s" id="nav-search-input-field" class="form-control form-search"
type="text" name="q" data-toggle="tooltip" title="Search in logs"
placeholder="Search" value="{{$q}}">
type="text" name="q" data-toggle="tooltip" title="{{$l10n.Search_in_logs}}"
placeholder="{{$l10n.Search}}" value="{{$q}}">
<button class="btn btn-default btn-sm form-button-search"
type="submit">Search</button>
type="submit">{{$l10n.Search}}</button>
</div>
</div>
<div class="xol-xs-2">
<a href="/admin/logs/view" class="btn btn-default">Show all</a>
<div class="xol-xs-4">
<a href="/admin/logs/view" class="btn btn-default">{{$l10n.Show_all}}</a>
</div>
</form>
<table class="table table-hover">
<thead>
<tr>
<th>Date</th>
<th>{{$l10n.Date}}</th>
<th class="dropdown">
<a class="dropdown-toggle text-nowrap" type="button" id="level" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Level {{if $filters.level}}({{$filters.level}}){{/if}}<span class="caret"></span>
{{$l10n.Level}} {{if $filters.level}}({{$filters.level}}){{/if}}<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="level">
{{foreach $filtersvalues.level as $v }}
<li {{if $filters.level == $v}}class="active"{{/if}}>
<a href="/admin/logs/view?level={{$v}}" data-filter="level" data-filter-value="{{$v}}">
{{if $v == ""}}ALL{{/if}}{{$v}}
{{if $v == ""}}{{$l10n.ALL}}{{/if}}{{$v}}
</a>
</li>
{{/foreach}}
@ -42,26 +42,26 @@
</th>
<th class="dropdown">
<a class="dropdown-toggle text-nowrap" type="button" id="context" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Context {{if $filters.context}}({{$filters.context}}){{/if}}<span class="caret"></span>
{{$l10n.Context}} {{if $filters.context}}({{$filters.context}}){{/if}}<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="context">
{{foreach $filtersvalues.context as $v }}
<li {{if $filters.context == $v}}class="active"{{/if}}>
<a href="/admin/logs/view?context={{$v}}" data-filter="context" data-filter-value="{{$v}}">
{{if $v == ""}}ALL{{/if}}{{$v}}
{{if $v == ""}}{{$l10n.ALL}}{{/if}}{{$v}}
</a>
</li>
{{/foreach}}
</ul>
</th>
<th>Message</th>
<th>{{$l10n.Message}}</th>
</tr>
</thead>
<tbody>
{{foreach $data as $row}}
<tr id="ev-{{$row->id}}" class="log-event"
role="button" tabIndex="0"
aria-label="View details" aria-haspopup="true" aria-expanded="false"
aria-label="{{$l10n.View_details}}" aria-haspopup="true" aria-expanded="false"
data-data="{{$row->data}}" data-source="{{$row->source}}">
<td>{{$row->date}}</td>
<td class="
@ -86,16 +86,16 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Event details</h4>
<h4 class="modal-title">{{$l10n.Event_details}}</h4>
</div>
<div class="modal-body">
<table class="table main-data">
<thead>
<tr>
<th>Date</th>
<th>Level</th>
<th>Context</th>
<th>Message</th>
<th>{{$l10n.Date}}</th>
<th>{{$l10n.Level}}</th>
<th>{{$l10n.Context}}</th>
<th>{{$l10n.Message}}</th>
</tr>
</thead>
<tbody><tr></tr></tbody>
@ -103,11 +103,11 @@
<table class="table source-data">
<thead>
<tr>
<th>File</th>
<th>Line</th>
<th>Function</th>
<th>UID</th>
<th>Process ID</th>
<th>{{$l10n.File}}</th>
<th>{{$l10n.Line}}</th>
<th>{{$l10n.Function}}</th>
<th>{{$l10n.UID}}</th>
<th>{{$l10n.Process_ID}}</th>
</tr>
</thead>
<tbody>
@ -131,7 +131,7 @@
<div class="modal-footer">
<button type="button" class="btn btn-default" data-previous>&lt;</button>
<button type="button" class="btn btn-default" data-next>&gt;</button>
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" data-dismiss="modal">{{$l10n.Close}}</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->