本文整理汇总了TypeScript中@dojo/framework/i18n/i18n.switchLocale函数的典型用法代码示例。如果您正苦于以下问题:TypeScript switchLocale函数的具体用法?TypeScript switchLocale怎么用?TypeScript switchLocale使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了switchLocale函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getProperties
function getProperties(themeContext: Injector) {
return {
changeTheme(wantsPirate: boolean) {
if (wantsPirate) {
switchLocale('en-PR');
themeContext.set(pirateThemeStyles);
}
else {
switchLocale('en');
themeContext.set(undefined);
}
}
};
}
示例2: it
it('should localize the clocks', () => {
switchLocale('ar');
return i18n(bundle, 'ar').then((messages) => {
const h = harness(() => w(App, {}), getDateComparators());
h.expect(() =>
getExpectedRender(messages as any, 'ar')
);
});
});
示例3: setLocaleData
export default function setLocaleData() {
loadCldrData(cldrData);
switchLocale('en');
}
示例4: afterEach
afterEach(() => {
switchLocale(systemLocale);
});