Captions translations

How to give captions if they are common like OK or CANCEL
Now i need to specify like package/OK and package/CANCEL for each one in all screens
Can i do like adding this in message.properties
common_captions_OK = OK
common_captions_CANCEL = CANCEL

and use like

<button caption="msg://common_captions_OK" id="okBtn"/>
<button caption="msg://common_captions_CANCEL" id="closeBtn"/>
msg:///actions.Ok

Notice the 3 slashes, see Message Bundles :: Jmix Documentation, “messages without group”

Actions.Ok in the framework resource bundle

2 Likes

Thanks. It worked