Documentation Center

Admin.XMLReportConfiguration.xml

The Admin.XMLReportConfiguration.xml file is used to configure the translation report and the workflow report.

Changelog

File versionContent Manager versionNotes
1.015.0.0n/a

Overview

This configuration file is accessible from Organize Space under Settings > XML Settings > Reports

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 baselineResolutions specify available resolutions for baselines in translationReport.

<baselineResolutions>
   <baselineResolution id="VRESHIGH">
   </baselineResolution >
   <baselineResolution id="VRESLOW">
   </baselineResolution >
 </baselineResolutions>
<statistics>

The Statistics specifies possible statuses in statusGroups for sourceLanguageStatusGroups and targetLanguageStatusGroups:

<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>
NameDescription
statusGroupDefines a group with a specific name for possible statuses of a language object.
statusGroup \statusThe status that can be assigned to a language object.
statusGroup \status \ nextStatusThe next status that can be transited from the current status.
<targetLanguageStatusGroup>
Elements configuration in targetLanguageStatusGroups is the same with sourceLanguageStatusGroups

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>