Enable the linguistic review process

The linguistic review process removes the @translate="no" attribute from all content (including auto-translated text) when preparing the localization kit.

About this task

Note: For this procedure to work, the auto-translation feature must be enabled.

The linguistic review process works as follows:

  1. The user runs the Prepare Localization Kit command on localized content that is in Localization:review.
  2. The IXIA CCMS looks up the linguisticreview.xml file, which lists the elements that should keep the @translate="no" attribute (for example, <codeblock> elements).
  3. IXIA CCMS prepares the localization kit and removes the @translate="no" attribute from all elements, except for those in the linguisticreview.xml file.

Linguistic review is available only in CCMS Desktop.

Important: Make configuration changes in a test environment and confirm they work before copying them to a production environment.

Procedure

  1. In the TEXTML Administration perspective, connect to your server.
  2. Check out and open the /system/conf/accessrights.xml file.
  3. Configure the Prepare kit access right to include maps.

    For example:

    <current>
       <type name="map">
          <statuses>
             <status>Localization:tb translated</status>
             <status>Localization:in translation</status>
             <status>Localization:review</status>
          </statuses>
       </type>
       <type name="topic">
          <statuses>
             <status>Localization:tb translated</status>
             <status>Localization:in translation</status>
          </statuses>
       </type>
    </current>
  4. Configure the prepareLocalizationPackage_api access right to include maps:

    For example:

    <current>
       <type name="*">
          <statuses>
             <status>Localization:tb translated</status>
             <status>Localization:in translation</status>
             <status>Localization:review</status>
    
          </statuses>
       </type>
    </current>
  5. Just before the line <!-- ********************** API METHODS DO NOT MODIFY ********************** -->, add the following to set access rights for the linguistic review process:
       <!-- Linguistic Review -->
       <method name="LinguisticReview" type="api">
          <notify enabled="false"/>
          <conditionset operator="any">
             <condition>
                <current>
                   <type name="topic">
                      <statuses>
                         <status>Localization:review</status>
                      </statuses>
                   </type>
                   <type name="map">
                      <statuses>
                         <status>Localization:review</status>
                      </statuses>
                   </type>
                </current>
                <users>
                   <groups>
                      <group name="Everyone"/>
                   </groups>
                </users>
             </condition>
          </conditionset>
       </method>
  6. Save, close, and check in the file.
  7. Check out and open the /system/conf/linguisticReview.xmlfile.
  8. Change the value of the @enabled attribute from false to true:
    <linguisticReview enabled="true">
  9. Add new <class> elements to specify the classes of any elements that you do not want translated.

    To find an element's class, select the element in your XML editor and view its attributes. For example, to add <codeblock> to the list of elements not to translate, add the following line:

    <class name="+topic/pre pr-d/codeblock "/>

    Be sure to preserve the initial - or + as well as the trailing space before the closing quotes.

  10. Save, close, and check in the file.
  11. Inform users of the changes.
    The changes are automatically applied once users close and then reopen their CCMS Desktop. Users can also apply the changes without restarting their CCMS Desktop by clicking IXIA CCMS > Synchronize Configuration. Additionally, refresh IXIA CCMS Web so that users see the change reflected there.