hello
I have a questions.
How can I write a message to this display compatible with my location.
I have already seen the documentation, but I found no answers:
I make Dictionary with:
public static Dictionary<string, string> nativeDictionary = new Dictionary<string, string>()
{
{"XXX_Nevron_ActiveTabs", "Active Tabs"},
...
}
And after:
public static void ApplyDictionary()
{
string curLang = WSConfigurationManager.GetInstance.ApplicationLanguage.Name.ToUpper();
if (curLang.Equals("EN"))
return;
NDictionary dict = new NDictionary();
foreach (KeyValuePair<string, string> kvp in nativeDictionary)
{
string text = WSResourceManager.GetString(kvp.Key);
dict.Add(kvp.Value, text);
}
NLocalizationManager.Instance.SyncDictionary(dict);
}
From Nevron gets worning:
I want this message override.
Best regards
Pawel