/** @module Languages */ /** * SurveyLangauge enumerates all possible languages the Survey may be translated into for use in survey taking. * See https://www.qualtrics.com/support/survey-platform/survey-module/survey-tools/translate-survey/#AvailableLanguageCodes */ export declare enum SurveyTakingLanguage { AR = "ar", ASM = "as", "AZ-AZ" = "az", BEL = "be", BG = "bg", BN = "bn", BS = "bs", CA = "ca", CEB = "ceb", CS = "cs", CY = "cy", DA = "da", DE = "de", EL = "el", EN = "en", "EN-GB" = "en-GB", EO = "eo", ES = "es-419", "ES-ES" = "es", ET = "et", FA = "fa", "FR-CA" = "fr-CA", FI = "fi", FR = "fr", GU = "gu", HE = "he", HI = "hi", HIL = "hil", HR = "hr", HU = "hu", HYE = "hy", ID = "id", ISL = "is", IT = "it", JA = "ja", KAN = "kn", KAT = "ka", KAZ = "kk", KM = "km", KO = "ko", LT = "lt", LV = "lv", MAL = "ml", MAR = "mr", MK = "mk", MN = "mn", MS = "ms", MY = "my", NL = "nl", NO = "no", ORI = "or", "PA-IN" = "pa", PB = "pb", PL = "pl", PT = "pt", "PT-BR" = "pt-BR", "RI-GI" = "ri-GI", RO = "ro", RU = "ru", SIN = "si", SK = "sk", SL = "sl", SQI = "sq", SR = "sr", "SR-ME" = "cnr", SV = "sv", SW = "sw", TA = "ta", TEL = "te", TGL = "tl", TH = "th", TR = "tr", UK = "uk", UR = "ur", VI = "vi", "ZH-S" = "zh-HANS", "ZH-T" = "zh-HANT" } /** * SurveyBuilderUILangauge enumerates all possible languages the Survey Builder product must be able to translate into for a Qualtrics User. * The end-user's current language is stored in the plugin Context.language * See "XM Platform" column in https://www.qualtrics.com/support/survey-platform/getting-started/languages-in-qualtrics/#LanguagesAvailable, * and use the link from SurveyTakingLanguage to understand which language a given language code refers to. */ export declare enum SurveyBuilderLanguage { EN = "en", "EN-GB" = "en-gb", DA = "da", DE = "de", FI = "fi", PT = "pt", ES = "es-la", "ES-ES" = "es", "PT-BR" = "pt-br", FR = "fr", IT = "it", KO = "ko", JA = "ja", RO = "ro", SV = "sv", TH = "th", "ZH-T" = "zh-t", "ZH-S" = "zh-S" } /** * BaseQuestionTranslation represents the fields available to all translatable questions for supporting multiple languages in survey taking. */ export interface BaseQuestionTranslation { readonly QuestionText?: string; } /** * SelectionTranslation represents the fields available to Selections (Choices or Answers) for supporting multiple languages in survey taking. */ export interface SelectionTranslation { readonly Display?: string; } /** * ChoicesTranslations represent the fields available to questions with translatable Choices for supporting multiple languages in survey taking. */ export interface ChoicesTranslation { readonly Choices?: Record; } /** * AnswerTranslations represent the fields available to questions with Answers for supporting multiple languages in survey taking. */ export interface AnswersTranslation { readonly Answers?: Record; } /** * QuestionTranslations represent the fields available to translatable questions for supporting multiple languages in survey taking. */ export interface QuestionTranslations { readonly Language?: Record; } //# sourceMappingURL=translation.d.ts.map