Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
*/
yesInLanguage: string;
/**
* Equivalent of "No" in Culture Model's Language.
* @example
* "No"
*/
noInLanguage: string;
}
/**
* Class container for currently-supported Culture Models in Confirm and Choice Prompt.
*/
export class PromptCultureModels {
public static Chinese: PromptCultureModel = {
locale: Culture.Chinese,
separator: ', ',
inlineOr: ' 要么 ',
inlineOrMore: ', 要么 ',
yesInLanguage: '是的',
noInLanguage: '不',
}
public static Dutch: PromptCultureModel = {
locale: Culture.Dutch,
separator: ', ',
inlineOr: ' of ',
inlineOrMore: ', of ',
yesInLanguage: 'Ja',
noInLanguage: 'Nee',
}