Skip to content

Commit

Permalink
Fix Austrian/Swiss Babel languages not recognized
Browse files Browse the repository at this point in the history
Fixes #213, closes #214.
  • Loading branch information
valentjn committed Feb 12, 2023
1 parent 85fd1f2 commit 1a903cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<action type="fix" issue="#178" due-to="Stanley F (@sfo)">
Fix plural dummy in German languages
</action>
<action type="fix" issue="#213,#214" due-to="@casenull">
Fix Babel languages `austrian`, `naustrian`, `swissgerman`, and `nswissgerman` not recognized
</action>
</release>
<release version="15.2.0" date="2021-11-28">
<action type="add" issue="#120">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,12 @@ class LatexFragmentizer(codeLanguageId: String) : CodeFragmentizer(codeLanguageI
map["brazilian"] = "pt-BR"
map["catalan"] = "ca-ES"
map["danish"] = "da-DK"
map["austrian"] = "de-AT"
map["naustrian"] = "de-AT"
map["german"] = "de-DE"
map["ngerman"] = "de-DE"
map["nswissgerman"] = "de-CH"
map["swissgerman"] = "de-CH"
map["greek"] = "el-GR"
map["british"] = "en-GB"
map["UKenglish"] = "en-GB"
Expand Down

0 comments on commit 1a903cd

Please sign in to comment.