* feat: lang support * fix: type errors * feat: select voice agent * refactor: address feedback * refactor: address feedback * refactor: missing import * fix: types * feat: add inbound calls * chore: formatting * chore * feat: finish inbound call * chore: formatting * fix: update bug * fix: types * refactor: Agent Configuration Sheet (#23930) * refactor: agent configuration sheet * chore: use default phone numbre * refactor: improvements * refactor: improvements * fix: types * fix: feedback * chore: * fix: feedback * fix: prompt * fix: review * fix: review * refactor: class * refactor: class * refactor: rename * Update apps/web/public/static/locales/en/common.json * Update apps/web/public/static/locales/en/common.json * chore: update set value * fix: remove index * fix: type error * fix: update tetss * fix: use logger * refactor: don't use static * fix: type * fix: schema * refactor: --------- Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com>
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
export const LANGUAGE_OPTIONS = [
|
|
{ value: "en-US", label: "English (US)" },
|
|
{ value: "en-IN", label: "English (India)" },
|
|
{ value: "en-GB", label: "English (UK)" },
|
|
{ value: "en-AU", label: "English (Australia)" },
|
|
{ value: "en-NZ", label: "English (New Zealand)" },
|
|
{ value: "de-DE", label: "German" },
|
|
{ value: "es-ES", label: "Spanish (Spain)" },
|
|
{ value: "es-419", label: "Spanish (Latin America)" },
|
|
{ value: "hi-IN", label: "Hindi" },
|
|
{ value: "fr-FR", label: "French (France)" },
|
|
{ value: "fr-CA", label: "French (Canada)" },
|
|
{ value: "ja-JP", label: "Japanese" },
|
|
{ value: "pt-PT", label: "Portuguese (Portugal)" },
|
|
{ value: "pt-BR", label: "Portuguese (Brazil)" },
|
|
{ value: "zh-CN", label: "Chinese (Simplified)" },
|
|
{ value: "ru-RU", label: "Russian" },
|
|
{ value: "it-IT", label: "Italian" },
|
|
{ value: "ko-KR", label: "Korean" },
|
|
{ value: "nl-NL", label: "Dutch (Netherlands)" },
|
|
{ value: "nl-BE", label: "Dutch (Belgium)" },
|
|
{ value: "pl-PL", label: "Polish" },
|
|
{ value: "tr-TR", label: "Turkish" },
|
|
{ value: "th-TH", label: "Thai" },
|
|
{ value: "vi-VN", label: "Vietnamese" },
|
|
{ value: "ro-RO", label: "Romanian" },
|
|
{ value: "bg-BG", label: "Bulgarian" },
|
|
{ value: "ca-ES", label: "Catalan" },
|
|
{ value: "da-DK", label: "Danish" },
|
|
{ value: "fi-FI", label: "Finnish" },
|
|
{ value: "el-GR", label: "Greek" },
|
|
{ value: "hu-HU", label: "Hungarian" },
|
|
{ value: "id-ID", label: "Indonesian" },
|
|
{ value: "no-NO", label: "Norwegian" },
|
|
{ value: "sk-SK", label: "Slovak" },
|
|
{ value: "sv-SE", label: "Swedish" },
|
|
{ value: "multi", label: "Multilingual" },
|
|
];
|