This question is locked. New answers and comments are not allowed.
Hello,
I have implemented the localization successfully, but there is a problem with localizaton of Pause and Resume buttons. Their captions still remains the same - "Pause", "Resume". Can you help me? I'm using build 2011.1.419.1040 Trial.
Thank you
Michal
I have implemented the localization successfully, but there is a problem with localizaton of Pause and Resume buttons. Their captions still remains the same - "Pause", "Resume". Can you help me? I'm using build 2011.1.419.1040 Trial.
public class CustomLocalizationManager : LocalizationManager { public override string GetStringOverride(string key) { switch (key) { case "UploadResume": return "bla bla"; case "UploadPause": return "bla bla"; } return base.GetStringOverride(key); }...Thank you
Michal