Skip to content

Commit

Permalink
ISO639codes: be clearer aboput zh/cn for tmdb with zh being simplifie…
Browse files Browse the repository at this point in the history
…d chinese
  • Loading branch information
courville committed Aug 11, 2024
1 parent ac2da39 commit 7be6af6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/com/archos/mediacenter/utils/ISO639codes.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ public class ISO639codes {

// cf. https://github.com/nova-video-player/aos-AVP/issues/1129
//missingISO6391ToISO6393.put("cn", "yue"); // take yue = Cantonese (cn is used for tmdb)
missingISO6391ToISO6393.put("cn", "s_traditional_chinese"); // take yue = Cantonese (cn is used for tmdb)
// zh = Mandarin -> Chinese Simplified (zh-cn) or Chinese
// cn = Cantonese -> Chinese Traditional (zh-tw)
missingISO6391ToISO6393.put("cn", "s_traditional_chinese");
missingISO6391ToISO6393.put("zh", "s_chinese_simplified");
// Moldavian is now officially Romanian since 202303 mo -> ron
// {"iso_639_1":"mo","english_name":"Moldavian","name":""}
missingISO6391ToISO6393.put("mo", "ron"); // Moldovian != Romanian it is an issue (mo is used for tmdb)
Expand Down

0 comments on commit 7be6af6

Please sign in to comment.