
Hello,
In the latest build, the "ActiproSoftware.Products.Shared.SRName" enum has entries like:
- UICloseButtonToolTip
- UIMaximizeButtonToolTip
- UIMinimizeButtonToolTip
- UIMoveButtonToolTip
- UIRestoreButtonToolTip
- UISizeButtonToolTip
- UICommandCloseWindowText
- UICommandMaximizeWindowText
- UICommandMinimizeWindowText
- UICommandMoveWindowText
- UICommandRestoreWindowText
- UICommandSizeWindowText
The "ToolTip" resources are used for tooltips by the window caption buttons (minimize, maximize, close, etc.). The "Text" resources are used as the primary text for buttons or menu options.
So if you're trying to change the tooltip of the close caption button in the titlebar of the themed messagebox, you'd change the "UICloseButtonToolTip" resource. If you wanted to change the label of a close button shown as one of the response buttons of the themed messagebox, you'd change the "UICommandCloseWindowText".
Some string resources are only loaded once during an application session and cannot be changed after they are applied, so it's important to make sure you customize the string resources before you load any UI elements. If you aren't seeing the localization being applied, that could be why.
If you are still not seeing your localized strings applied, please let us know exactly which UI element you are trying to localize and we can confirm which string resource should apply there.