在JS脚本中添加翻译选项,并将其作为变量传递给Prestasip。示例代码:
// 添加翻译选项
const translations = {
en: {
greeting: 'Hello!',
},
fr: {
greeting: 'Bonjour!',
},
};
// 将选项作为变量传递给Prestasip
const options = {
translations,
};
// 实例化Prestasip
const prestasip = new Prestasip(options);
// 使用翻译选项
prestasip.translate('greeting');