Use Internationalization resources as format strings

The Radzen .resx files generated, when internationalization is enabled, would be a useful place to store format strings as these could then be included in generic methods for translation. Example: "My name is {0}". There is the issue of how to get the string into the resx file and how to use it in expressions for display on pages.

To get the string into the resx file I can just create an invisible label e.g. labFormat, with the string as its Text property. The resource is then called labFormat.Text.

But I'm not sure how to extract the resource and use it in String.Format() to generate a string variable for display.

You can do that similar to all other localized keys:

${L["labFormat.Text"]}

The localizer is called L and is injected in every page: