"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SEVERITY_TITLE = exports.MEDIUM = exports.LOW = exports.HIGH = exports.CRITICAL = exports.ALL_SEVERITIES = void 0; var _i18n = require("@kbn/i18n"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const LOW = _i18n.i18n.translate('xpack.cases.severity.low', { defaultMessage: 'Low' }); exports.LOW = LOW; const MEDIUM = _i18n.i18n.translate('xpack.cases.severity.medium', { defaultMessage: 'Medium' }); exports.MEDIUM = MEDIUM; const HIGH = _i18n.i18n.translate('xpack.cases.severity.high', { defaultMessage: 'High' }); exports.HIGH = HIGH; const CRITICAL = _i18n.i18n.translate('xpack.cases.severity.critical', { defaultMessage: 'Critical' }); exports.CRITICAL = CRITICAL; const SEVERITY_TITLE = _i18n.i18n.translate('xpack.cases.severity.title', { defaultMessage: 'Severity' }); exports.SEVERITY_TITLE = SEVERITY_TITLE; const ALL_SEVERITIES = _i18n.i18n.translate('xpack.cases.severity.all', { defaultMessage: 'All severities' }); exports.ALL_SEVERITIES = ALL_SEVERITIES;