Localization message in MessageBox


https://www.nevron.com/Forum/Topic11845.aspx
Print Topic | Close Window

By Pawel Pietrzak - 8 Years Ago
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:
https://www.nevron.com/forum/uploads/images/8ade6a0b-0f5c-425e-8aa9-2cd5.png

I want this message override.
Best regards
Pawel
By Nevron Support - 8 Years Ago
Hello Pawel,

Unfortunately this text is not localizable.
We will fix it for the next release.

Sorry for the inconvenience.