Soluling home   Document home

Tags

Tags

Use this sheet to configure how tagging is used in your code.

Tag usage

Specifies how tags are used. Possible values are:

Value Description
Localize all but exclude tagged strings

Soluling localizes all strings except those that have an exclude tag.
Check this if you want to scan most of your source code files' strings and add exclude-tags after those strings that you don't want to localize.
Learn more about this.

Localize only tagged strings

Soluling localizes only those strings that have an include tag.
Check this if you want to scan only some of your source code files' strings and add include-tags after those strings that you want to localize.
Learn more about this.

Apply range

Specifies the range where a tag is used. Possible values are:

Value Description
To all strings in the line

All strings in the line are localized or excluded.

For example

str = Sample("One", "Two"); //loc

Both strings are localized or excluded.

Only the string following the tag

Only the string following the line is localized or excluded.

For example

str = Sample(/*loc*/"One", "Two");

Only the first string ("One") is localized or excluded.

The apply range is used with include, property, and exclude tags but not with block exclude tags.

Include/Property tags

Specifies a list of strings that are used as include or property tags. Separate multiple items with a semicolon (;) or click the ... button to edit the list.

Exclude tags

Specifies a list of strings that are used as exclude-tags. Separate multiple items with a semicolon (;) or click the ... button to edit the list.

Block exclude tags

Specifies a list of strings that are used as block exclude tags. Separate multiple items with a semicolon (;) or click the ... button to edit the list.