Browse Source

Small layout fixes.

pull/816/head
Sebastian 4 years ago
parent
commit
c0ae3ff80b
  1. 1
      backend/i18n/frontend_en.json
  2. 1
      backend/i18n/frontend_it.json
  3. 1
      backend/i18n/frontend_nl.json
  4. 1
      backend/i18n/frontend_zh.json
  5. 1
      backend/i18n/source/frontend_en.json
  6. 2
      frontend/app/features/content/shared/preview-button.component.html
  7. 2
      frontend/app/features/rules/pages/rules/rule.component.html

1
backend/i18n/frontend_en.json

@ -298,6 +298,7 @@
"common.label": "Label",
"common.language": "Language",
"common.languages": "Languages",
"common.lastExecuted": "Last Executed",
"common.latitudeShort": "Lat",
"common.loading": "Loading",
"common.logout": "Logout",

1
backend/i18n/frontend_it.json

@ -298,6 +298,7 @@
"common.label": "Etichetta",
"common.language": "Lingua",
"common.languages": "Lingue",
"common.lastExecuted": "Last Executed",
"common.latitudeShort": "Lat",
"common.loading": "Caricamento",
"common.logout": "Esci",

1
backend/i18n/frontend_nl.json

@ -298,6 +298,7 @@
"common.label": "Label",
"common.language": "Language",
"common.languages": "Talen",
"common.lastExecuted": "Last Executed",
"common.latitudeShort": "Lat",
"common.loading": "Laden",
"common.logout": "Uitloggen",

1
backend/i18n/frontend_zh.json

@ -298,6 +298,7 @@
"common.label": "标签",
"common.language": "语言",
"common.languages": "语言",
"common.lastExecuted": "Last Executed",
"common.latitudeShort": "纬度",
"common.loading": "正在加载",
"common.logout": "注销",

1
backend/i18n/source/frontend_en.json

@ -298,6 +298,7 @@
"common.label": "Label",
"common.language": "Language",
"common.languages": "Languages",
"common.lastExecuted": "Last Executed",
"common.latitudeShort": "Lat",
"common.loading": "Loading",
"common.logout": "Logout",

2
frontend/app/features/content/shared/preview-button.component.html

@ -1,5 +1,5 @@
<ng-container *ngIf="snapshot.previewNameSelected">
<span>{{ 'common.preview' | sqxTranslate }}: </span>
<span class="ms-2">{{ 'common.preview' | sqxTranslate }}: </span>
<div class="btn-group ms-2" #buttonGroup>
<button type="button" class="btn btn-secondary" (click)="follow(snapshot.previewNameSelected)">

2
frontend/app/features/rules/pages/rules/rule.component.html

@ -107,7 +107,7 @@
<span class="badge badge-danger rounded-pill" *ngIf="rule.numFailed > 0">{{rule.numFailed}}</span>
</div>
<div class="col">
{{ 'common.executed' | sqxTranslate }}: <span>{{rule.lastExecuted | sqxFromNow:'-'}}</span>
{{ 'common.lastExecuted' | sqxTranslate }}: <span>{{rule.lastExecuted | sqxFromNow:'-'}}</span>
</div>
<div class="col-auto">
<a routerLink="events" [queryParams]="{ ruleId: rule.id }" *ngIf="rule.canTrigger">

Loading…
Cancel
Save