File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
8
8
## [ Unreleased]
9
+ ### Added
10
+ * New language available: Ukrainian (` 'uk' ` ). Add language code constant and tests.
11
+
12
+ Note: older library versions also support new languages, this update only adds new code constant.
9
13
### Changed
10
14
* Add note and workaround to README about Poetry error on Ubuntu 22.04.
11
15
* Pull request [ #48 ] ( https://github.com/DeepLcom/deepl-python/pull/48 )
12
16
thanks to [ FOehlschlaeger] ( https://github.com/FOehlschlaeger ) .
13
17
18
+
14
19
## [ 1.9.0] - 2022-07-07
15
20
### Added
16
21
* Add ` Translator.create_glossary_from_csv() ` allowing glossaries downloaded
Original file line number Diff line number Diff line change @@ -369,6 +369,7 @@ def remove_regional_variant(language: Union[str]) -> str:
369
369
SLOVENIAN = "sl"
370
370
SWEDISH = "sv"
371
371
TURKISH = "tr"
372
+ UKRAINIAN = "uk"
372
373
CHINESE = "zh"
373
374
374
375
Original file line number Diff line number Diff line change @@ -395,5 +395,6 @@ def output_document_path(tmpdir):
395
395
"SL" : "protonski žarek" ,
396
396
"SV" : "protonstråle" ,
397
397
"TR" : "proton ışını" ,
398
+ "UK" : "протонний пучок" ,
398
399
"ZH" : "质子束" ,
399
400
}
You can’t perform that action at this time.
0 commit comments