Use the following format: [!loc:string_id:loc!]
For example: <formula>@If(@IsNewDoc;"[!loc:FRM_ACCOUNT_WINDOW_TITLE_NEW:loc!]";"[!loc:FRM_ACCOUNT_WINDOW_TITLE_EXISTING:loc!]: " + Name)</formula>
where:
FRM_ACCOUNT_WINDOW_TITLE_NEW is an example of resource Id.
In another example, assume the user must use a string value instead of resource Id, and that this string contains a double quote ("). For example: aaa"bbb
In this situation, you must add a backslash (\) immediately before the double quote. For example: <formula>@If(@IsNewDoc;"aaa\"bbb";"[!loc:FRM_ACCOUNT_WINDOW_TITLE_EXISTING:loc!]: " + Name)</formula>
|