Admin.XMLReportConfiguration.xml
The Admin.XMLReportConfiguration.xml file is used to configure the translation report and the workflow report.
Changelog
| File version | Content Manager version | Notes |
|---|---|---|
| 1.0 | 15.0.0 | n/a |
Overview
This configuration file is accessible from Organize Space under
XML elements
The Admin.XMLReportConfiguration.xml file contains the root element translationReport and workflowReport.
Within translationReport and workflowReport, the XML elements configure the following:
- < baselineResolutions>
-
The
baselineResolutionsspecify available resolutions for baselines intranslationReport.<baselineResolutions> <baselineResolution id="VRESHIGH"> </baselineResolution > <baselineResolution id="VRESLOW"> </baselineResolution > </baselineResolutions>
- <statistics>
-
The
Statisticsspecifies possible statuses instatusGroupsforsourceLanguageStatusGroupsandtargetLanguageStatusGroups:<statistics> <sourceLanguageStatusGroups> <statusGroup name="Draft"> <status ref="VSTATUSDRAFT" /> <status ref="VSTATUSTOBEREVIEWED" /> </statusGroup> </sourceLanguageStatusGroups> <targetLanguageStatusGroups> <statusGroup name="To be translated"> <status ref="VSTATUSTOBETRANSLATED"> <nextStatus ref="VSTATUSINTRANSLATION" /> </status> </statusGroup> </targetLanguageStatusGroups> </statistics>- <sourceLanguageStatusGroup>
-
Name Description statusGroup Defines a group with a specific name for possible statuses of a language object. statusGroup \status The status that can be assigned to a language object. statusGroup \status \ nextStatus The next status that can be transited from the current status. - <targetLanguageStatusGroup>
-
Elements configuration in
targetLanguageStatusGroupsis the same withsourceLanguageStatusGroups
Example
<infoShareReportConfig version="1.0">
<translationReport>
<baselineResolutions>
<baselineResolution ref="VRESHIGH"/>
<baselineResolution ref="VRESLOW"/>
</baselineResolutions>
<statistics>
<sourceLanguageStatusGroups>
<statusGroup name="Draft">
<status ref="VSTATUSDRAFT" />
<status ref="VSTATUSTOBEREVIEWED" />
</statusGroup>
...
</sourceLanguageStatusGroups>
<targetLanguageStatusGroups>
<statusGroup name="To be translated">
<status ref="VSTATUSTOBETRANSLATED">
<nextStatus ref="VSTATUSINTRANSLATION" />
</status>
</statusGroup>
...
</targetLanguageStatusGroups>
</statistics>
</translationReport>
<workflowReport>
<baselineResolutions>
<baselineResolution ref="VRESHIGH"/>
<baselineResolution ref="VRESLOW"/>
</baselineResolutions>
<statistics>
<sourceLanguageStatusGroups>
<statusGroup name="Draft">
<status ref="VSTATUSDRAFT">
<nextStatus ref="VSTATUSTOBEREVIEWED"/>
</status>
</statusGroup>
...
<targetLanguageStatusGroups>
<statusGroup name="To be translated">
<status ref="VSTATUSTOBETRANSLATED"/>
</statusGroup>
...
</targetLanguageStatusGroups>
</statistics>
</workflowReport>
</infoShareReportConfig>