Skip to content

Commit

Permalink
fixing Norwegian languages
Browse files Browse the repository at this point in the history
  • Loading branch information
slorello89 committed Nov 19, 2020
1 parent 0db8382 commit 493f68f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public enum TextToSpeechLanguage {
ITALIAN("it-IT"),
JAPANESE("ja-JP"),
KOREAN("ko-KR"),
NORWEGIAN("nb-NO"),
NORWEGIAN("no-NO"),
NORWEGIAN_BOKMAL("nb-NO"),
DUTCH("nl-NL"),
POLISH("pl-PL"),
BRAZILIAN_PORTUGUESE("pt-BR"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public void testLanguageNames(){
assertEquals("it-IT",TextToSpeechLanguage.ITALIAN.getLanguage());
assertEquals("ja-JP",TextToSpeechLanguage.JAPANESE.getLanguage());
assertEquals("ko-KR",TextToSpeechLanguage.KOREAN.getLanguage());
assertEquals("nb-NO", TextToSpeechLanguage.NORWEGIAN.getLanguage());
assertEquals("nb-NO",TextToSpeechLanguage.NORWEGIAN_BOKMAL.getLanguage());
assertEquals("no-NO", TextToSpeechLanguage.NORWEGIAN.getLanguage());
assertEquals("nl-NL", TextToSpeechLanguage.DUTCH.getLanguage());
assertEquals("pl-PL",TextToSpeechLanguage.POLISH.getLanguage());
assertEquals("pt-BR",TextToSpeechLanguage.BRAZILIAN_PORTUGUESE.getLanguage());
Expand Down

0 comments on commit 493f68f

Please sign in to comment.