Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions airflow-core/src/airflow/ui/src/i18n/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import { initReactI18next } from "react-i18next";

import enCommon from "./locales/en/common.json";
import enDashboard from "./locales/en/dashboard.json";
import koCommon from "./locales/ko/common.json";
import koDashboard from "./locales/ko/dashboard.json";
import zhTWCommon from "./locales/zh_TW/common.json";
import zhTWDashboard from "./locales/zh_TW/dashboard.json";

Expand All @@ -30,6 +32,7 @@ import zhTWDashboard from "./locales/zh_TW/dashboard.json";

export const supportedLanguages = [
{ code: "en", name: "English" },
{ code: "ko", name: "한국어" },
{ code: "zh_TW", name: "繁體中文" },
] as const;

Expand All @@ -41,6 +44,10 @@ const resources = {
common: enCommon,
dashboard: enDashboard,
},
ko: {
common: koCommon,
dashboard: koDashboard,
},
zh_TW: {
common: zhTWCommon,
dashboard: zhTWDashboard,
Expand Down
79 changes: 79 additions & 0 deletions airflow-core/src/airflow/ui/src/i18n/locales/ko/common.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"defaultToGraphView": "그래프 뷰 기본 보기",
"defaultToGridView": "그리드 뷰 기본 보기",
"logout": "로그아웃",
"switchToDarkMode": "다크 모드로 전환",
"switchToLightMode": "라이트 모드로 전환",
"timezone": "시간대",
"user": "사용자",
"language": {
"chinese": "중국어 번체",
"english": "영어",
"korean": "한국어",
"german": "독일어",
"select": "언어 선택"
},
"nav": {
"home": "홈",
"assets": "에셋",
"browse": "탐색",
"admin": "관리자",
"docs": "문서",
"plugins": "플러그인"
},
"browse": {
"auditLog": "감사 로그",
"xcoms": "XComs"
},
"admin": {
"Variables": "변수들",
"Pools": "Pools",
"Providers": "제공자들",
"Plugins": "플러그인들",
"Connections": "연결들",
"Config": "설정"
},
"timeRange": {
"duration": "지속 시간",
"lastHour": "지난 1시간",
"last12Hours": "지난 12 시간",
"last24Hours": "지난 24 시간",
"pastWeek": "지난 주"
},
"docs": {
"documentation": "문서",
"githubRepo": "GitHub 저장소",
"restApiReference": "REST API 참조"
},
"states": {
"queued": "대기 중",
"running": "실행 중",
"success": "성공",
"failed": "실패",
"skipped": "건너뜀",
"removed": "제거됨",
"scheduled": "예약됨",
"restarting": "다시 시작 중",
"up_for_retry": "재시도 대기 중",
"up_for_reschedule": "재예약 대기 중",
"upstream_failed": "업스트림 실패",
"deferred": "연기됨",
"no_status": "상태 없음"
},
"dagRun_one": "Dag 실행",
"dagRun_other": "Dag 실행들",
"taskInstance_one": "작업 인스턴스",
"taskInstance_other": "작업 인스턴스들",
"assetEvent_one": "에셋 이벤트",
"assetEvent_other": "에셋 이벤트들",
"triggered": "트리거됨",
"pools": {
"open": "열림",
"running": "실행 중",
"queued": "대기 중",
"scheduled": "예약됨",
"deferred": "연기됨",
"pools_one": "pool",
"pools_other": "pools"
}
}
38 changes: 38 additions & 0 deletions airflow-core/src/airflow/ui/src/i18n/locales/ko/dashboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"welcome": "환영합니다",
"stats": {
"stats": "통계",
"failedDags": "실패한 Dags",
"runningDags": "실행 중인 Dags",
"activeDags": "활성 Dags",
"queuedDags": "대기 중인 Dags"
},
"health": {
"health": "상태",
"metaDatabase": "메타데이터베이스",
"scheduler": "스케줄러",
"triggerer": "트리거러",
"dagProcessor": "Dag 프로세서",
"status": "상태",
"lastHeartbeat": "마지막 Heartbeat",
"healthy": "정상",
"unhealthy": "비정상"
},
"importErrors": {
"searchByFile": "파일로 검색",
"dagImportError_one": "Dag 가져오기 오류",
"dagImportError_other": "Dag 가져오기 오류들",
"timestamp": "타임스탬프"
},
"poolSlots": "Pool 슬롯",
"managePools": "Pools 관리",
"history": "기록",
"sortBy": {
"newestFirst": "최신순",
"oldestFirst": "오래된 순"
},
"source": "소스",
"group": "그룹",
"uri": "Uri",
"noAssetEvents": "자산 이벤트를 찾을 수 없습니다."
}