Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
inlineOrMore: ', ou ',
yesInLanguage: 'Oui',
noInLanguage: 'Non',
}
public static German: PromptCultureModel = {
locale: Culture.German,
separator: ', ',
inlineOr: ' oder ',
inlineOrMore: ', oder ',
yesInLanguage: 'Ja',
noInLanguage: 'Nein',
}
public static Japanese: PromptCultureModel = {
locale: Culture.Japanese,
separator: '、 ',
inlineOr: ' または ',
inlineOrMore: '、 または ',
yesInLanguage: 'はい',
noInLanguage: 'いいえ',
}
public static Portuguese: PromptCultureModel = {
locale: Culture.Portuguese,
separator: ', ',
inlineOr: ' ou ',
inlineOrMore: ', ou ',
yesInLanguage: 'Sim',
noInLanguage: 'Não',
}