Skip to content

Commit

Permalink
feat(locale): add Korean
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Jan 4, 2025
1 parent b893a8b commit 16631b3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ editing the `conf` file in a text editor. Use the examples as reference.
@endcode</td>
</tr>
<tr>
<td rowspan="17">Choices</td>
<td rowspan="18">Choices</td>
<td>bg</td>
<td>Bulgarian</td>
</tr>
Expand Down Expand Up @@ -93,6 +93,10 @@ editing the `conf` file in a text editor. Use the examples as reference.
<td>ja</td>
<td>Japanese</td>
</tr>
<tr>
<td>ko</td>
<td>Korean</td>
</tr>
<tr>
<td>pl</td>
<td>Polish</td>
Expand Down
6 changes: 6 additions & 0 deletions scripts/_locale.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

# target locales
target_locales = [
'bg', # Bulgarian
'de', # German
'en', # English
'en_GB', # English (United Kingdom)
Expand All @@ -32,9 +33,14 @@
'fr', # French
'it', # Italian
'ja', # Japanese
'ko', # Korean
'pl', # Polish
'pt', # Portuguese
'pt_BR', # Portuguese (Brazil)
'ru', # Russian
'sv', # Swedish
'tr', # Turkish
'uk', # Ukrainian
'zh', # Chinese
]

Expand Down
1 change: 1 addition & 0 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1127,6 +1127,7 @@ namespace config {
"fr"sv, // French
"it"sv, // Italian
"ja"sv, // Japanese
"ko"sv, // Korean
"pl"sv, // Polish
"pt"sv, // Portuguese
"pt_BR"sv, // Portuguese (Brazilian)
Expand Down
1 change: 1 addition & 0 deletions src_assets/common/assets/web/configs/tabs/General.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ function removeCmd(index) {
<option value="fr">Français (French)</option>
<option value="it">Italiano (Italian)</option>
<option value="ja">日本語 (Japanese)</option>
<option value="ko">한국어 (Korean)</option>
<option value="pl">Polski (Polish)</option>
<option value="pt">Português (Portuguese)</option>
<option value="pt_BR">Português, Brasileiro (Portuguese, Brazilian)</option>
Expand Down

0 comments on commit 16631b3

Please sign in to comment.