String
| Keyword | String | 
|---|---|
| Description | You can use a string variable to load text from a string resource file in the currently selected language. | 
Example
Loading text with the Issue. Title ID from the following resource file
Resources\strings.default.xml
        XML
    
    <resources version="1.0.0.0">
  ...
  <strings>
    <!-- Create Support Case -->
    <string id="Issue.Title">
      Support case
    </string>
  </strings>
  ...
</resources>the following varaible is used
        XML
    
    {%String.Issue.Title%}A shortened notation can be used for string variables. Here the string keyword and the % character are omitted.
        XML
    
    {Issue.Title}