0
使用WinJS.Resources.processAll WinJS使用的是系統語言,這很好。此MSDN網站上的示例顯示如何更改語言/上下文以更改單個字符串:http://msdn.microsoft.com/en-us/library/windows/apps/hh465248.aspx#loading_strings_for_a_specific_language_or_context。如何切換WinJS.Resources.processAll的語言?
但是,只要WinJS.Resources.processAll會改變一大堆字符串,怎麼可能改變語言呢?
// (?) switch language just for the next call (?)
WinJS.Resources.processAll(target).next(function() {
// (?) switch language back (?)
});
明確地看起來很有趣。我嘗試了一些,回到你身邊,如果/如何運作。非常感謝! – matths
因此,我打算覆蓋WinJS.Resources.processAll(target,context)接受一個上下文參數來爲那個調用改變語言。 – matths