[core] Add Tamil TTS support

This PR adds TTS voice instruction support for the Tamil language.

Co-authored-by: thesupertechie <thesupertechie1@gmail.com>
Co-committed-by: thesupertechie <thesupertechie1@gmail.com>
This commit is contained in:
thesupertechie
2026-01-05 10:42:53 +01:00
committed by Konstantin Pastbin
parent fc96d17ed7
commit 3e75e5e802
2 changed files with 110 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ namespace routing::turns::sound
* - All other variants default to `zh-Hans` (Simplified Chinese).
*
*/
std::array<std::pair<std::string_view, std::string_view>, 42> constexpr kLanguageList = {{
std::array<std::pair<std::string_view, std::string_view>, 43> constexpr kLanguageList = {{
{"en", "English"},
{"id", "Bahasa Indonesia"},
{"ca", "Català"},
@@ -82,5 +82,6 @@ std::array<std::pair<std::string_view, std::string_view>, 42> constexpr kLanguag
#endif
{"ja", "日本語"},
{"ko", "한국어"},
{"ta", "தமிழ்"},
}};
} // namespace routing::turns::sound