Apply i18n

This commit is contained in:
Takeshi Kimata
2024-05-04 16:15:29 +09:00
parent 9c390ef305
commit 520f6a98dd
12 changed files with 181 additions and 44 deletions

View File

@@ -40,11 +40,41 @@
"Cases": {
"test_cases": "Test Cases",
"id": "ID",
"name": "Name",
"title": "Title",
"priority": "Priority",
"actions": "Actions",
"delete_case": "Delete test case",
"delete": "Delete",
"new_test_case": "New Test Case"
"new_test_case": "New Test Case",
"status": "Status",
"critical": "Critical",
"high": "High",
"medium": "Medium",
"low": "Low"
},
"Case": {
"critical": "Critical",
"high": "High",
"medium": "Medium",
"low": "Low"
},
"Runs": {
"id": "ID",
"title": "Title",
"priority": "Priority",
"status": "Status",
"actions": "Actions",
"critical": "Critical",
"high": "High",
"medium": "Medium",
"low": "Low",
"untested": "Untested",
"passed": "Passed",
"failed": "Failed",
"retest": "Retest",
"skipped": "Skipped",
"include_in_run": "Include in run",
"exclude_from_run": "Exclude from run",
"no_cases_found": "No cases found"
}
}

View File

@@ -45,6 +45,36 @@
"actions": "アクション",
"delete_case": "テストケースを削除",
"delete": "削除",
"new_test_case": "新規テストケース"
"new_test_case": "新規テストケース",
"status": "ステータス",
"critical": "致",
"high": "高",
"medium": "中",
"low": "低"
},
"Case": {
"critical": "致",
"high": "高",
"medium": "中",
"low": "低"
},
"Runs": {
"id": "ID",
"title": "タイトル",
"priority": "優先度",
"status": "ステータス",
"actions": "アクション",
"critical": "致",
"high": "高",
"medium": "中",
"low": "低",
"untested": "未実行",
"passed": "成功",
"failed": "失敗",
"retest": "再テスト",
"skipped": "スキップ",
"include_in_run": "テストランに含める",
"exclude_from_run": "テストランから除外する",
"no_cases_found": "テストケースが見つかりません"
}
}