Skip to content

Commit 5e91a3f

Browse files
Add Korean language support for UI.
1 parent 5277f70 commit 5e91a3f

File tree

8 files changed

+2823
-4
lines changed

8 files changed

+2823
-4
lines changed

CHANGELOG.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni
1111

1212
=== Added
1313

14+
- Added Korean language support for UI, experimental.
1415
- Added option ``caret style`` to change insert caret to `block` or `line` in Text Editor, by editing ``settings.cfg``.
1516
The color of the caret is the same as `setting` and will be adjusted for better contrast with the background.
1617

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work w
4040

4141
`pip install -U robotframework-ride`
4242

43-
(3.8 <= python <= 3.12) Install current development version (**2.1dev67**) with:
43+
(3.8 <= python <= 3.12) Install current development version (**2.1dev68**) with:
4444

4545
`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`
4646

src/robotide/application/releasenotes.py

+2
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ def set_content(self, html_win, content):
158158
<li>This version supports Python 3.8 up to 3.12.</li>
159159
<li>There are some changes, or known issues:<ul>
160160
<li>❌ - Removed support for Python 3.6 and 3.7</li>
161+
<li>✔ - Added Korean language support for UI, experimental.</li>
161162
<li>✔ - Added <b>caret style</b> to change insert caret to 'block' or 'line' in Text Editor, by editing
162163
<em>settings.cfg</em>. The color of the caret is the same as 'setting' and will be adjusted for better contrast with the
163164
background.</li>
@@ -196,6 +197,7 @@ def set_content(self, html_win, content):
196197
</ul>
197198
<p><strong>New Features and Fixes Highlights</strong></p>
198199
<ul class="simple">
200+
<li>Added Korean language support for UI, experimental.</li>
199201
<li>Fixed wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.</li>
200202
<li>Fixed delete variable from Test Suite settings remaining in Project Explorer.</li>
201203
<li>Added <b>caret style</b> to change insert caret to 'block' or 'line' in Text Editor, by editing

src/robotide/lib/compat/parsing/languages.py

+45
Original file line numberDiff line numberDiff line change
@@ -1300,3 +1300,48 @@ class Ja(Language):
13001300
but_prefixes = ['ただし', '但し']
13011301
true_strings = ['真', '有効', 'はい', 'オン']
13021302
false_strings = ['偽', '無効', 'いいえ', 'オフ']
1303+
1304+
1305+
class Ko(Language):
1306+
"""Korean
1307+
1308+
New in NEXT Robot Framework after 7.0.1.
1309+
"""
1310+
settings_header = '설정'
1311+
variables_header = '변수'
1312+
test_cases_header = '테스트 사례'
1313+
tasks_header = '작업'
1314+
keywords_header = '키워드'
1315+
comments_header = '의견'
1316+
library_setting = '라이브러리'
1317+
resource_setting = '자료'
1318+
variables_setting = '변수'
1319+
name_setting = '이름'
1320+
documentation_setting = '문서'
1321+
metadata_setting = '메타데이터'
1322+
suite_setup_setting = '스위트 설정'
1323+
suite_teardown_setting = '스위트 중단'
1324+
test_setup_setting = '테스트 설정'
1325+
task_setup_setting = '작업 설정'
1326+
test_teardown_setting = '테스트 중단'
1327+
task_teardown_setting = '작업 중단'
1328+
test_template_setting = '테스트 템플릿'
1329+
task_template_setting = '작업 템플릿'
1330+
test_timeout_setting = '테스트 시간 초과'
1331+
task_timeout_setting = '작업 시간 초과'
1332+
test_tags_setting = '테스트 태그'
1333+
task_tags_setting = '작업 태그'
1334+
keyword_tags_setting = '키워드 태그'
1335+
setup_setting = '설정'
1336+
teardown_setting = '중단'
1337+
template_setting = '템플릿'
1338+
tags_setting = '태그'
1339+
timeout_setting = '시간 초과'
1340+
arguments_setting = '주장'
1341+
given_prefixes = ['주어진']
1342+
when_prefixes = ['때']
1343+
then_prefixes = ['보다']
1344+
and_prefixes = ['그리고']
1345+
but_prefixes = ['하지만']
1346+
true_strings = ['참', '네', '켜기']
1347+
false_strings = ['거짓', '아니오', '끄기']

src/robotide/localization/TRANSLATORS.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ ifdef::env-github[:outfilesuffix: .adoc]
33

44
- https://github.com/HelioGuilherme66[Hélio Guilherme]: Portuguese, Brazilian Portuguese
55
- https://github.com/JFoederer[J. Foederer]: Dutch
6-
- Nataliya Umanska: Ukrainian
6+
- Hyeonho Kang: Korean
77
- Unknown: Pirates
Binary file not shown.

0 commit comments

Comments
 (0)