[web-app]i18n for alert center
This commit is contained in:
@@ -3,12 +3,12 @@
|
|||||||
<nz-breadcrumb-item>
|
<nz-breadcrumb-item>
|
||||||
<a [routerLink]="['/']">
|
<a [routerLink]="['/']">
|
||||||
<i nz-icon nzType="home"></i>
|
<i nz-icon nzType="home"></i>
|
||||||
<span>仪表盘</span>
|
<span>{{ 'menu.dashboard' | i18n }}</span>
|
||||||
</a>
|
</a>
|
||||||
</nz-breadcrumb-item>
|
</nz-breadcrumb-item>
|
||||||
<nz-breadcrumb-item>
|
<nz-breadcrumb-item>
|
||||||
<i nz-icon nzType="alert"></i>
|
<i nz-icon nzType="alert"></i>
|
||||||
<span>告警中心</span>
|
<span>{{ 'menu.alert.center' | i18n }}</span>
|
||||||
</nz-breadcrumb-item>
|
</nz-breadcrumb-item>
|
||||||
</nz-breadcrumb>
|
</nz-breadcrumb>
|
||||||
<nz-divider></nz-divider>
|
<nz-divider></nz-divider>
|
||||||
@@ -16,26 +16,28 @@
|
|||||||
<div>
|
<div>
|
||||||
<button nz-button nzType="primary" (click)="onDeleteAlerts()">
|
<button nz-button nzType="primary" (click)="onDeleteAlerts()">
|
||||||
<i nz-icon nzType="delete" nzTheme="outline"></i>
|
<i nz-icon nzType="delete" nzTheme="outline"></i>
|
||||||
删除告警
|
{{ 'alert.center.delete' | i18n }}
|
||||||
</button>
|
</button>
|
||||||
<button nz-button nzType="primary" (click)="onMarkReadAlerts()">
|
<button nz-button nzType="primary" (click)="onMarkReadAlerts()">
|
||||||
<i nz-icon nzType="down-circle" nzTheme="outline"></i>
|
<i nz-icon nzType="down-circle" nzTheme="outline"></i>
|
||||||
标记已处理
|
{{ 'alert.center.deal' | i18n }}
|
||||||
</button>
|
</button>
|
||||||
<button nz-button nzType="primary" (click)="onMarkUnReadAlerts()">
|
<button nz-button nzType="primary" (click)="onMarkUnReadAlerts()">
|
||||||
<i nz-icon nzType="up-circle" nzTheme="outline"></i>
|
<i nz-icon nzType="up-circle" nzTheme="outline"></i>
|
||||||
标记未处理
|
{{ 'alert.center.no-deal' | i18n }}
|
||||||
</button>
|
</button>
|
||||||
<button nz-button nzType="primary" (click)="sync()" nz-tooltip nzTooltipTitle="刷新">
|
<button nz-button nzType="primary" (click)="sync()" nz-tooltip [nzTooltipTitle]="'common.refresh' | i18n">
|
||||||
<i nz-icon nzType="sync" nzTheme="outline"></i>
|
<i nz-icon nzType="sync" nzTheme="outline"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button style="margin-right: 25px; float: right" nz-button nzType="primary" (click)="onFilterSearchAlerts()"> 搜索 </button>
|
<button style="margin-right: 25px; float: right" nz-button nzType="primary" (click)="onFilterSearchAlerts()">
|
||||||
|
{{ 'common.search' | i18n }}
|
||||||
|
</button>
|
||||||
<input
|
<input
|
||||||
style="margin-right: 5px; float: right; width: 150px; border-radius: 9px; text-align: center"
|
style="margin-right: 5px; float: right; width: 150px; border-radius: 9px; text-align: center"
|
||||||
nz-input
|
nz-input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="搜索告警内容"
|
[placeholder]="'alert.center.search' | i18n"
|
||||||
nzSize="default"
|
nzSize="default"
|
||||||
(keyup.enter)="onFilterSearchAlerts()"
|
(keyup.enter)="onFilterSearchAlerts()"
|
||||||
[(ngModel)]="filterContent"
|
[(ngModel)]="filterContent"
|
||||||
@@ -43,23 +45,24 @@
|
|||||||
<nz-select
|
<nz-select
|
||||||
style="margin-right: 10px; float: right; width: 120px"
|
style="margin-right: 10px; float: right; width: 120px"
|
||||||
nzAllowClear
|
nzAllowClear
|
||||||
[nzPlaceHolder]="'告警状态过滤'"
|
[nzPlaceHolder]="'alert.center.filter-status' | i18n"
|
||||||
[(ngModel)]="filterStatus"
|
[(ngModel)]="filterStatus"
|
||||||
>
|
>
|
||||||
<nz-option nzLabel="全部状态" nzValue="9"></nz-option>
|
<nz-option [nzLabel]="'alert.status.all' | i18n" nzValue="9"></nz-option>
|
||||||
<nz-option nzLabel="未处理" nzValue="0"></nz-option>
|
<nz-option [nzLabel]="'alert.status.0' | i18n" nzValue="0"></nz-option>
|
||||||
<nz-option nzLabel="已处理" nzValue="3"></nz-option>
|
<nz-option [nzLabel]="'alert.status.2' | i18n" nzValue="2"></nz-option>
|
||||||
|
<nz-option [nzLabel]="'alert.status.3' | i18n" nzValue="3"></nz-option>
|
||||||
</nz-select>
|
</nz-select>
|
||||||
<nz-select
|
<nz-select
|
||||||
style="margin-right: 10px; float: right; width: 120px"
|
style="margin-right: 10px; float: right; width: 120px"
|
||||||
nzAllowClear
|
nzAllowClear
|
||||||
[nzPlaceHolder]="'告警级别过滤'"
|
[nzPlaceHolder]="'alert.center.filter-priority' | i18n"
|
||||||
[(ngModel)]="filterPriority"
|
[(ngModel)]="filterPriority"
|
||||||
>
|
>
|
||||||
<nz-option nzLabel="全部级别" nzValue="9"></nz-option>
|
<nz-option [nzLabel]="'alert.priority.all' | i18n" nzValue="9"></nz-option>
|
||||||
<nz-option nzLabel="警告级别" nzValue="2"></nz-option>
|
<nz-option [nzLabel]="'alert.priority.2' | i18n" nzValue="2"></nz-option>
|
||||||
<nz-option nzLabel="严重级别" nzValue="1"></nz-option>
|
<nz-option [nzLabel]="'alert.priority.1' | i18n" nzValue="1"></nz-option>
|
||||||
<nz-option nzLabel="紧急级别" nzValue="0"></nz-option>
|
<nz-option [nzLabel]="'alert.priority.0' | i18n" nzValue="0"></nz-option>
|
||||||
</nz-select>
|
</nz-select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -81,13 +84,13 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th nzAlign="center" nzLeft nzWidth="4%" [(nzChecked)]="checkedAll" (nzCheckedChange)="onAllChecked($event)"></th>
|
<th nzAlign="center" nzLeft nzWidth="4%" [(nzChecked)]="checkedAll" (nzCheckedChange)="onAllChecked($event)"></th>
|
||||||
<th nzAlign="center" nzLeft>告警指标</th>
|
<th nzAlign="center" nzLeft>{{ 'alert.center.target' | i18n }}</th>
|
||||||
<th nzAlign="center">所属监控</th>
|
<th nzAlign="center">{{ 'alert.center.monitor' | i18n }}</th>
|
||||||
<th nzAlign="center">级别</th>
|
<th nzAlign="center">{{ 'alert.center.priority' | i18n }}</th>
|
||||||
<th nzAlign="center">告警内容</th>
|
<th nzAlign="center">{{ 'alert.center.content' | i18n }}</th>
|
||||||
<th nzAlign="center">状态</th>
|
<th nzAlign="center">{{ 'alert.center.status' | i18n }}</th>
|
||||||
<th nzAlign="center">告警时间</th>
|
<th nzAlign="center">{{ 'alert.center.time' | i18n }}</th>
|
||||||
<th nzAlign="center">操作</th>
|
<th nzAlign="center">{{ 'common.edit' | i18n }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -102,30 +105,36 @@
|
|||||||
<td nzAlign="center">
|
<td nzAlign="center">
|
||||||
<nz-tag *ngIf="data.priority == 0" nzColor="red">
|
<nz-tag *ngIf="data.priority == 0" nzColor="red">
|
||||||
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
||||||
<span>紧急告警</span>
|
<span>{{ 'alert.priority.0' | i18n }}</span>
|
||||||
</nz-tag>
|
</nz-tag>
|
||||||
<nz-tag *ngIf="data.priority == 1" nzColor="orange">
|
<nz-tag *ngIf="data.priority == 1" nzColor="orange">
|
||||||
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
||||||
<span>严重告警</span>
|
<span>{{ 'alert.priority.1' | i18n }}</span>
|
||||||
</nz-tag>
|
</nz-tag>
|
||||||
<nz-tag *ngIf="data.priority == 2" nzColor="yellow">
|
<nz-tag *ngIf="data.priority == 2" nzColor="yellow">
|
||||||
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
<i nz-icon nzType="bell" nzTheme="outline"></i>
|
||||||
<span>警告告警</span>
|
<span>{{ 'alert.priority.2' | i18n }}</span>
|
||||||
</nz-tag>
|
</nz-tag>
|
||||||
</td>
|
</td>
|
||||||
<td nzAlign="center">{{ data.content }}</td>
|
<td nzAlign="center">{{ data.content }}</td>
|
||||||
<td nzAlign="center">
|
<td nzAlign="center">
|
||||||
{{ data.status === 0 ? '未处理' : '已处理' }}
|
{{ 'alert.status.' + data.status | i18n }}
|
||||||
</td>
|
</td>
|
||||||
<td nzAlign="center">{{ data.gmtCreate | date: 'YYYY-MM-dd HH:mm:ss' }}</td>
|
<td nzAlign="center">{{ data.gmtCreate | date: 'YYYY-MM-dd HH:mm:ss' }}</td>
|
||||||
<td nzAlign="center">
|
<td nzAlign="center">
|
||||||
<button nz-button nzType="primary" (click)="onDeleteOneAlert(data.id)" nz-tooltip nzTooltipTitle="删除告警">
|
<button nz-button nzType="primary" (click)="onDeleteOneAlert(data.id)" nz-tooltip [nzTooltipTitle]="'alert.center.delete' | i18n">
|
||||||
<i nz-icon nzType="delete" nzTheme="outline"></i>
|
<i nz-icon nzType="delete" nzTheme="outline"></i>
|
||||||
</button>
|
</button>
|
||||||
<button nz-button nzType="primary" (click)="onMarkReadOneAlert(data.id)" nz-tooltip nzTooltipTitle="标记已处理">
|
<button nz-button nzType="primary" (click)="onMarkReadOneAlert(data.id)" nz-tooltip [nzTooltipTitle]="'alert.center.deal' | i18n">
|
||||||
<i nz-icon nzType="down-circle" nzTheme="outline"></i>
|
<i nz-icon nzType="down-circle" nzTheme="outline"></i>
|
||||||
</button>
|
</button>
|
||||||
<button nz-button nzType="primary" (click)="onMarkUnReadOneAlert(data.id)" nz-tooltip nzTooltipTitle="标记未处理">
|
<button
|
||||||
|
nz-button
|
||||||
|
nzType="primary"
|
||||||
|
(click)="onMarkUnReadOneAlert(data.id)"
|
||||||
|
nz-tooltip
|
||||||
|
[nzTooltipTitle]="'alert.center.no-deal' | i18n"
|
||||||
|
>
|
||||||
<i nz-icon nzType="up-circle" nzTheme="outline"></i>
|
<i nz-icon nzType="up-circle" nzTheme="outline"></i>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
@@ -133,4 +142,4 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</nz-table>
|
</nz-table>
|
||||||
|
|
||||||
<ng-template #rangeTemplate> 总量 {{ total }} </ng-template>
|
<ng-template #rangeTemplate> {{ 'common.total' | i18n }} {{ total }} </ng-template>
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, Inject, OnInit } from '@angular/core';
|
||||||
|
import { I18NService } from '@core';
|
||||||
|
import { ALAIN_I18N_TOKEN } from '@delon/theme';
|
||||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||||
import { NzNotificationService } from 'ng-zorro-antd/notification';
|
import { NzNotificationService } from 'ng-zorro-antd/notification';
|
||||||
import { NzTableQueryParams } from 'ng-zorro-antd/table';
|
import { NzTableQueryParams } from 'ng-zorro-antd/table';
|
||||||
@@ -12,7 +14,12 @@ import { AlertService } from '../../../service/alert.service';
|
|||||||
styles: []
|
styles: []
|
||||||
})
|
})
|
||||||
export class AlertCenterComponent implements OnInit {
|
export class AlertCenterComponent implements OnInit {
|
||||||
constructor(private notifySvc: NzNotificationService, private modal: NzModalService, private alertSvc: AlertService) {}
|
constructor(
|
||||||
|
private notifySvc: NzNotificationService,
|
||||||
|
private modal: NzModalService,
|
||||||
|
private alertSvc: AlertService,
|
||||||
|
@Inject(ALAIN_I18N_TOKEN) private i18nSvc: I18NService
|
||||||
|
) {}
|
||||||
|
|
||||||
pageIndex: number = 1;
|
pageIndex: number = 1;
|
||||||
pageSize: number = 8;
|
pageSize: number = 8;
|
||||||
@@ -87,13 +94,13 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
|
|
||||||
onDeleteAlerts() {
|
onDeleteAlerts() {
|
||||||
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
||||||
this.notifySvc.warning('未选中任何待删除项!', '');
|
this.notifySvc.warning(this.i18nSvc.fanyi('alert.center.notify.no-delete'), '');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否批量删除!',
|
nzTitle: this.i18nSvc.fanyi('alert.center.confirm.delete-batch'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.deleteAlerts(this.checkedAlertIds)
|
nzOnOk: () => this.deleteAlerts(this.checkedAlertIds)
|
||||||
@@ -102,13 +109,13 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
|
|
||||||
onMarkReadAlerts() {
|
onMarkReadAlerts() {
|
||||||
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
||||||
this.notifySvc.warning('未选中任何待标记项!', '');
|
this.notifySvc.warning(this.i18nSvc.fanyi('alert.center.notify.no-mark'), '');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否批量标记已处理!',
|
nzTitle: this.i18nSvc.fanyi('alert.center.confirm.mark-done-batch'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.updateAlertsStatus(this.checkedAlertIds, 3)
|
nzOnOk: () => this.updateAlertsStatus(this.checkedAlertIds, 3)
|
||||||
@@ -116,13 +123,13 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
onMarkUnReadAlerts() {
|
onMarkUnReadAlerts() {
|
||||||
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
if (this.checkedAlertIds == null || this.checkedAlertIds.size === 0) {
|
||||||
this.notifySvc.warning('未选中任何待标记项!', '');
|
this.notifySvc.warning(this.i18nSvc.fanyi('alert.center.notify.no-mark'), '');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否批量标记未处理!',
|
nzTitle: this.i18nSvc.fanyi('alert.center.confirm.mark-no-batch'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.updateAlertsStatus(this.checkedAlertIds, 0)
|
nzOnOk: () => this.updateAlertsStatus(this.checkedAlertIds, 0)
|
||||||
@@ -133,9 +140,9 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
let alerts = new Set<number>();
|
let alerts = new Set<number>();
|
||||||
alerts.add(alertId);
|
alerts.add(alertId);
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否删除!',
|
nzTitle: this.i18nSvc.fanyi('common.confirm.delete'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.deleteAlerts(alerts)
|
nzOnOk: () => this.deleteAlerts(alerts)
|
||||||
@@ -146,9 +153,9 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
let alerts = new Set<number>();
|
let alerts = new Set<number>();
|
||||||
alerts.add(alertId);
|
alerts.add(alertId);
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否标记已处理!',
|
nzTitle: this.i18nSvc.fanyi('alert.center.confirm.mark-done'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.updateAlertsStatus(alerts, 3)
|
nzOnOk: () => this.updateAlertsStatus(alerts, 3)
|
||||||
@@ -159,9 +166,9 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
let alerts = new Set<number>();
|
let alerts = new Set<number>();
|
||||||
alerts.add(alertId);
|
alerts.add(alertId);
|
||||||
this.modal.confirm({
|
this.modal.confirm({
|
||||||
nzTitle: '请确认是否标记未处理!',
|
nzTitle: this.i18nSvc.fanyi('alert.center.confirm.mark-no'),
|
||||||
nzOkText: '确定',
|
nzOkText: this.i18nSvc.fanyi('common.button.ok'),
|
||||||
nzCancelText: '取消',
|
nzCancelText: this.i18nSvc.fanyi('common.button.cancel'),
|
||||||
nzOkDanger: true,
|
nzOkDanger: true,
|
||||||
nzOkType: 'primary',
|
nzOkType: 'primary',
|
||||||
nzOnOk: () => this.updateAlertsStatus(alerts, 0)
|
nzOnOk: () => this.updateAlertsStatus(alerts, 0)
|
||||||
@@ -174,17 +181,17 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
message => {
|
message => {
|
||||||
deleteAlerts$.unsubscribe();
|
deleteAlerts$.unsubscribe();
|
||||||
if (message.code === 0) {
|
if (message.code === 0) {
|
||||||
this.notifySvc.success('删除成功!', '');
|
this.notifySvc.success(this.i18nSvc.fanyi('common.notify.delete-success'), '');
|
||||||
this.loadAlertsTable();
|
this.loadAlertsTable();
|
||||||
} else {
|
} else {
|
||||||
this.tableLoading = false;
|
this.tableLoading = false;
|
||||||
this.notifySvc.error('删除失败!', message.msg);
|
this.notifySvc.error(this.i18nSvc.fanyi('common.notify.delete-fail'), message.msg);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
error => {
|
error => {
|
||||||
this.tableLoading = false;
|
this.tableLoading = false;
|
||||||
deleteAlerts$.unsubscribe();
|
deleteAlerts$.unsubscribe();
|
||||||
this.notifySvc.error('删除失败!', error.msg);
|
this.notifySvc.error(this.i18nSvc.fanyi('common.notify.delete-fail'), error.msg);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -195,17 +202,17 @@ export class AlertCenterComponent implements OnInit {
|
|||||||
message => {
|
message => {
|
||||||
markAlertsStatus$.unsubscribe();
|
markAlertsStatus$.unsubscribe();
|
||||||
if (message.code === 0) {
|
if (message.code === 0) {
|
||||||
this.notifySvc.success('标记成功!', '');
|
this.notifySvc.success(this.i18nSvc.fanyi('common.notify.mark-success'), '');
|
||||||
this.loadAlertsTable();
|
this.loadAlertsTable();
|
||||||
} else {
|
} else {
|
||||||
this.tableLoading = false;
|
this.tableLoading = false;
|
||||||
this.notifySvc.error('标记失败!', message.msg);
|
this.notifySvc.error(this.i18nSvc.fanyi('common.notify.mark-fail'), message.msg);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
error => {
|
error => {
|
||||||
this.tableLoading = false;
|
this.tableLoading = false;
|
||||||
markAlertsStatus$.unsubscribe();
|
markAlertsStatus$.unsubscribe();
|
||||||
this.notifySvc.error('标记失败!', error.msg);
|
this.notifySvc.error(this.i18nSvc.fanyi('common.notify.mark-fail'), error.msg);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,4 +162,4 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</nz-table>
|
</nz-table>
|
||||||
|
|
||||||
<ng-template #rangeTemplate> {{ 'monitors.total' | i18n }} {{ total }} </ng-template>
|
<ng-template #rangeTemplate> {{ 'common.total' | i18n }} {{ total }} </ng-template>
|
||||||
|
|||||||
@@ -80,17 +80,39 @@
|
|||||||
"": "Alert",
|
"": "Alert",
|
||||||
"status": {
|
"status": {
|
||||||
"": "Alert Status",
|
"": "Alert Status",
|
||||||
|
"all": "All Status",
|
||||||
"0": "Pending",
|
"0": "Pending",
|
||||||
"2": "Restored",
|
"2": "Restored",
|
||||||
"3": "Processed"
|
"3": "Processed"
|
||||||
},
|
},
|
||||||
"priority": {
|
"priority": {
|
||||||
"": "Alarm Level",
|
"": "Alarm Priority",
|
||||||
|
"all": "All Priority",
|
||||||
"0": "Emergency",
|
"0": "Emergency",
|
||||||
"1": "Critical",
|
"1": "Critical",
|
||||||
"2": "Warning"
|
"2": "Warning"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"alert.center.delete": "Delete Alerts",
|
||||||
|
"alert.center.deal": "Mark Processed",
|
||||||
|
"alert.center.no-deal": "Mark Pending",
|
||||||
|
"alert.center.search": "Search Alert Content",
|
||||||
|
"alert.center.filter-status": "Filter Alert Status",
|
||||||
|
"alert.center.filter-priority": "Filter Alert Priority",
|
||||||
|
"alert.center.target": "Metric Target",
|
||||||
|
"alert.center.monitor": "Belong Monitor",
|
||||||
|
"alert.center.priority": "Priority",
|
||||||
|
"alert.center.content": "Alert Content",
|
||||||
|
"alert.center.status": "Status",
|
||||||
|
"alert.center.time": "Alert Time",
|
||||||
|
"alert.center.notify.no-delete": "No items selected for deletion!",
|
||||||
|
"alert.center.confirm.delete": "Please confirm whether to delete!",
|
||||||
|
"alert.center.confirm.delete-batch": "Please confirm whether to delete in batch!",
|
||||||
|
"alert.center.notify.no-mark": "No items selected for mark!",
|
||||||
|
"alert.center.confirm.mark-done-batch": "Please confirm whether to mark processed in batch!",
|
||||||
|
"alert.center.confirm.mark-done": "Please confirm whether to mark processed!",
|
||||||
|
"alert.center.confirm.mark-no-batch": "Please confirm whether to mark Pending in batch!",
|
||||||
|
"alert.center.confirm.mark-no": "Please confirm whether to mark Pending!",
|
||||||
"dashboard.alerts.title": "Recently Alerts List",
|
"dashboard.alerts.title": "Recently Alerts List",
|
||||||
"dashboard.alerts.enter": "Go Alert Center",
|
"dashboard.alerts.enter": "Go Alert Center",
|
||||||
"dashboard.alerts.distribute": "The Distribution Of Alerts",
|
"dashboard.alerts.distribute": "The Distribution Of Alerts",
|
||||||
@@ -151,6 +173,7 @@
|
|||||||
"common.edit-time": "Last Update Time",
|
"common.edit-time": "Last Update Time",
|
||||||
"common.new-time": "Create Time",
|
"common.new-time": "Create Time",
|
||||||
"common.edit": "Operate",
|
"common.edit": "Operate",
|
||||||
|
"common.total": "Total",
|
||||||
"common.notify.no-select-edit": "No items selected for editing!",
|
"common.notify.no-select-edit": "No items selected for editing!",
|
||||||
"common.notify.one-select-edit": "Only one selection can be edited!",
|
"common.notify.one-select-edit": "Only one selection can be edited!",
|
||||||
"common.confirm.delete": "Please confirm whether to delete!",
|
"common.confirm.delete": "Please confirm whether to delete!",
|
||||||
@@ -163,6 +186,8 @@
|
|||||||
"common.confirm.cancel": "Please confirm whether to cancel monitor!",
|
"common.confirm.cancel": "Please confirm whether to cancel monitor!",
|
||||||
"common.notify.cancel-success": "Cancel Success!",
|
"common.notify.cancel-success": "Cancel Success!",
|
||||||
"common.notify.cancel-fail": "Cancel Failed!",
|
"common.notify.cancel-fail": "Cancel Failed!",
|
||||||
|
"common.notify.mark-success": "Mark Success!",
|
||||||
|
"common.notify.mark-fail": "Mark Failed!",
|
||||||
"common.notify.no-select-enable": "No items selected for enable!",
|
"common.notify.no-select-enable": "No items selected for enable!",
|
||||||
"common.confirm.enable-batch": "Please confirm whether to enable monitor in batches!",
|
"common.confirm.enable-batch": "Please confirm whether to enable monitor in batches!",
|
||||||
"common.confirm.enable": "Please confirm whether to enable monitor!",
|
"common.confirm.enable": "Please confirm whether to enable monitor!",
|
||||||
|
|||||||
@@ -80,17 +80,39 @@
|
|||||||
"": "告警",
|
"": "告警",
|
||||||
"status": {
|
"status": {
|
||||||
"": "告警状态",
|
"": "告警状态",
|
||||||
"0": "待处理",
|
"all": "全部状态",
|
||||||
|
"0": "未处理",
|
||||||
"2": "已恢复",
|
"2": "已恢复",
|
||||||
"3": "已处理"
|
"3": "已处理"
|
||||||
},
|
},
|
||||||
"priority": {
|
"priority": {
|
||||||
"": "告警级别",
|
"": "告警级别",
|
||||||
|
"all": "全部级别",
|
||||||
"0": "紧急告警",
|
"0": "紧急告警",
|
||||||
"1": "严重告警",
|
"1": "严重告警",
|
||||||
"2": "警告告警"
|
"2": "警告告警"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"alert.center.delete": "删除告警",
|
||||||
|
"alert.center.deal": "标记已处理",
|
||||||
|
"alert.center.no-deal": "标记未处理",
|
||||||
|
"alert.center.search": "搜索告警内容",
|
||||||
|
"alert.center.filter-status": "告警状态过滤",
|
||||||
|
"alert.center.filter-priority": "告警级别过滤",
|
||||||
|
"alert.center.target": "告警指标",
|
||||||
|
"alert.center.monitor": "所属监控",
|
||||||
|
"alert.center.priority": "级别",
|
||||||
|
"alert.center.content": "告警内容",
|
||||||
|
"alert.center.status": "状态",
|
||||||
|
"alert.center.time": "告警时间",
|
||||||
|
"alert.center.notify.no-delete": "未选中任何待删除项!",
|
||||||
|
"alert.center.confirm.delete": "请确认是否删除!",
|
||||||
|
"alert.center.confirm.delete-batch": "请确认是否批量删除!",
|
||||||
|
"alert.center.notify.no-mark": "未选中任何待标记项!",
|
||||||
|
"alert.center.confirm.mark-done-batch": "请确认是否批量标记已处理!",
|
||||||
|
"alert.center.confirm.mark-done": "请确认是否标记已处理!",
|
||||||
|
"alert.center.confirm.mark-no-batch": "请确认是否批量标记未处理!",
|
||||||
|
"alert.center.confirm.mark-no": "请确认是否标记未处理!",
|
||||||
"dashboard.alerts.title": "最近告警列表",
|
"dashboard.alerts.title": "最近告警列表",
|
||||||
"dashboard.alerts.enter": "进入告警中心",
|
"dashboard.alerts.enter": "进入告警中心",
|
||||||
"dashboard.alerts.distribute": "告警分布",
|
"dashboard.alerts.distribute": "告警分布",
|
||||||
@@ -151,6 +173,7 @@
|
|||||||
"common.edit-time": "更新时间",
|
"common.edit-time": "更新时间",
|
||||||
"common.new-time": "创建时间",
|
"common.new-time": "创建时间",
|
||||||
"common.edit": "操作",
|
"common.edit": "操作",
|
||||||
|
"common.total": "总量",
|
||||||
"common.notify.no-select-edit": "未选中任何待编辑项!",
|
"common.notify.no-select-edit": "未选中任何待编辑项!",
|
||||||
"common.notify.one-select-edit": "只能对一个选中项进行编辑!",
|
"common.notify.one-select-edit": "只能对一个选中项进行编辑!",
|
||||||
"common.confirm.delete": "请确认是否删除!",
|
"common.confirm.delete": "请确认是否删除!",
|
||||||
@@ -158,6 +181,8 @@
|
|||||||
"common.confirm.delete-batch": "请确认是否批量删除!",
|
"common.confirm.delete-batch": "请确认是否批量删除!",
|
||||||
"common.notify.delete-success": "删除成功!",
|
"common.notify.delete-success": "删除成功!",
|
||||||
"common.notify.delete-fail": "删除失败!",
|
"common.notify.delete-fail": "删除失败!",
|
||||||
|
"common.notify.mark-success": "标记成功!",
|
||||||
|
"common.notify.mark-fail": "标记失败!",
|
||||||
"common.notify.no-select-cancel": "未选中任何待取消项!",
|
"common.notify.no-select-cancel": "未选中任何待取消项!",
|
||||||
"common.confirm.cancel-batch": "请确认是否批量取消监控!",
|
"common.confirm.cancel-batch": "请确认是否批量取消监控!",
|
||||||
"common.confirm.cancel": "请确认是否取消监控!",
|
"common.confirm.cancel": "请确认是否取消监控!",
|
||||||
|
|||||||
Reference in New Issue
Block a user