1.37 Translations

For the configuration of the translation groups offered in the backend, the following block exists in the configuration file:

<translations>
    <group type="SOLR_FIELD_NAMES" name="translation__group_name_solr-fields"  description="translation__group_description_solr-fields">
        <key>DC</key>
        <key>ACCESSCONDITION</key>
        <key>BOOL_IMAGEAVAILABLE</key>
        <key>FULLTEXTAVAILABLE</key>
        <!-- List all MD_ fields except the ones that end with _UNTOKENIZED -->
        <key regex="true">MD_.*(?&lt;!_UNTOKENIZED)$</key>
        <!-- List all MD_ fields except the ones that contain CODICOLOGICAL,
             DATE_SEARCH, NAME_SEARCH, PLACE_SEARCH and ent with _UNTOKENIZED
        <key regex="true">MD_(?!.*CODICOLOGICAL)(?!.*DATE_SEARCH)(?!.*NAME_SEARCH)(?!.*PLACE_SEARCH).*(?&lt;!_UNTOKENIZED)$</key>
        -->
    </group>
    <group type="SOLR_FIELD_VALUES" name="translation__group_name_collections"  description="translation__group_description_collections">
        <key>DC</key>
    </group>
    <group type="CORE_STRINGS" name="translation__group_name_email" description="translation__group_description_email">
        <key>commentChangedNotificationEmailBody</key>
        <key>commentChangedNotificationEmailSubject</key>
        <key regex="true">commentNewNotificationEmail.*</key>
        <key regex="true">feedbackEmail.*</key>
        <key regex="true">user_activationEmail.*</key>
        <key regex="true">user_retrieveAccountConfirmationEmail.*</key>
        <key regex="true">user_retrieveAccountNewPasswordEmail.*</key>
    </group>
    <group type="LOCAL_STRINGS" name="translation__group_local_messages" description="translation__group_description_local_messages">
        <key regex="true">.*</key>
    </group>
</translations>

The parameters are explained in detail in the following table:

Last updated