54 lines
2.3 KiB
TypeScript
54 lines
2.3 KiB
TypeScript
import { IncidentTranslations } from '../types/incident';
|
|
|
|
export const incidentTranslations: IncidentTranslations = {
|
|
incidentManagement: 'インシデント管理',
|
|
incidentsManagementDesc: 'サービスのインシデントとその解決を追跡・管理する',
|
|
unresolvedIncidents: '未解決',
|
|
resolvedIncidents: '解決済み',
|
|
activeIncidents: 'アクティブなインシデント',
|
|
criticalIssues: '重要な問題',
|
|
avgResolutionTime: '平均解決時間',
|
|
noIncidents: 'アクティブなインシデントはありません',
|
|
createIncident: 'インシデントを作成',
|
|
investigating: '調査中',
|
|
identified: '特定済み',
|
|
monitoring: '監視中',
|
|
resolved: '解決済み',
|
|
scheduleIncidentManagement: 'スケジュール・インシデント管理',
|
|
incidentName: 'インシデント名',
|
|
incidentStatus: 'インシデントステータス',
|
|
highPriority: '高優先度',
|
|
configurationSettings: '設定',
|
|
incidentCreatedSuccess: 'インシデントが正常に作成されました',
|
|
basicInfo: '基本情報',
|
|
serviceId: 'サービスID',
|
|
assignedTo: '担当者',
|
|
unassigned: '未割り当て',
|
|
timeline: 'タイムライン',
|
|
incidentTime: 'インシデント発生時刻',
|
|
resolutionTime: '解決時刻',
|
|
systems: 'システム',
|
|
noSystems: '影響を受けるシステムはありません',
|
|
impactAnalysis: '影響分析',
|
|
rootCause: '根本原因',
|
|
resolutionSteps: '解決手順',
|
|
lessonsLearned: '学んだ教訓',
|
|
resolutionDetails: '解決詳細',
|
|
assignment: '割り当て',
|
|
download: 'ダウンロード',
|
|
downloadPdf: 'PDFダウンロード',
|
|
print: '印刷',
|
|
confidentialNote: 'この文書は機密情報であり、内部使用のみを目的としています。',
|
|
generatedOn: '生成日時',
|
|
enterResolutionSteps: 'インシデント解決のために取った手順を入力してください',
|
|
enterLessonsLearned: 'このインシデントから学んだ教訓を入力してください',
|
|
editIncident: 'インシデントを編集',
|
|
editIncidentDesc: 'このインシデントの詳細を更新',
|
|
updating: '更新中...',
|
|
update: '更新',
|
|
create: '作成',
|
|
creating: '作成中...',
|
|
configuration: '設定',
|
|
failedToUpdateStatus: 'ステータスの更新に失敗しました',
|
|
inProgress: '進行中',
|
|
}; |