Spaces:
Running
on
Zero
Running
on
Zero
Create topic_translator.py
Browse files- topic_translator.py +24 -0
topic_translator.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# topic_translator.py
|
2 |
+
|
3 |
+
translate_topics = {
|
4 |
+
'Agriculture': '농업',
|
5 |
+
'Climate Change': '기후변화',
|
6 |
+
'Economic Growth': '경제성장',
|
7 |
+
'Education': '교육',
|
8 |
+
'Energy': '에너지',
|
9 |
+
'Environment': '환경',
|
10 |
+
'Finance': '금융',
|
11 |
+
'Gender': '성평등',
|
12 |
+
'Governance': '거버넌스',
|
13 |
+
'Health': '보건',
|
14 |
+
'Infrastructure': '인프라',
|
15 |
+
'Labor': '노동',
|
16 |
+
'Macroeconomics': '거시경제',
|
17 |
+
'Poverty': '빈곤',
|
18 |
+
'Private Sector Development': '민간부문 개발',
|
19 |
+
'Public Sector': '공공부문',
|
20 |
+
'Social Development': '사회개발',
|
21 |
+
'Social Protection': '사회보호',
|
22 |
+
'Trade': '무역',
|
23 |
+
'Urban Development': '도시개발'
|
24 |
+
}
|