Symptoms

Note: The instructions below are applicable only for configurations without IDP module. For configurations with IDP module, refer to this article.

In order to change title of login page, provider added customized locale file in PCP > System > Settings > Locales > ${Choose your language} > Customized Locale Files with the following content:

<?xml version="1.0" encoding="UTF-8"?>
<locale code="en_US">
 <section>
    <name>PanelBundle.properties</name>
        <data>
           <entry>
                <keyword>BRANDED.BROWSER_WINDOW_TITLE</keyword>
                <phrase>Example</phrase>
                <comment></comment>
           </entry>
      </data>
 </section>
</locale>

However, the title of login page of Odin Automation was not changed.

Cause

Due to software-related issue POA-111287, localized BRANDED.BROWSER_WINDOW_TITLE is not recognized on login page in OA version 7.0. This issue was passed for further investigation to the Engineering team.

Resolution

In order to change title of login page, please create an XML file with the following content and add it to System > Settings > Locales > ${Choose your language} > Customized Locale Files. Please note that in addition to OA 6.0, the file should contain additional variable declarations:

<?xml version="1.0" encoding="UTF-8"?>
<locale code="en_US">
<section>
<name>PanelBundle.properties</name>
    <data>
            <entry>
                <keyword>BRANDED.BROWSER_WINDOW_TITLE</keyword>
                <phrase>Example</phrase>
                <comment></comment>
            </entry>
            <entry>
                <keyword>LOGIN.CAPTION</keyword>
                <phrase>example</phrase>
                <comment></comment>
            </entry>
    </data>
 </section>
</locale>

Internal content

Link on internal Article