How to select or change language from CMS siteIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> How to select or change language from CMS site Problem Translation as it relates to the CMS is documented within product documentation. According to product documentation, when a user logs in, the language for the instance session is determined by the following logic: If the language selection at login is enabled, that language is used.If not, the language preference selected using the language picker in the header bar is used.If not, the user's language setting in the User [sys_user] table is used. If none of the above are true, the system default language is used. An end user can be granted the ability to populate the Language field in their profile [sys_user] record within CMS. This can be done by configuring the self-service view of the User [sys_user] form and adding the Language field; however, this does not change the language displayed in CMS for that user. Based on the above, here are the two supported methods for allowing users to select or change their language in ServiceNow:From the login screen, select the language and log in: Or click the gear icon in the top-right: Without the options above, users who get redirected to the CMS site or bypass the login page may have issues selecting or changing the language within the CMS. Resolution These UI macros are created when the language plugin [I18N: Internationalization] is activated: login_language_select - displays a list of available languages on the login page to the userui_language_select - displays a list of available languages to the user and lets them select one There is no base system language picker for use with a CMS site; however, customers may choose to customize their CMS code to call the ui_language_select UI macro to meet their needs. There is no documented method for accomplishing this from the base system. In this case, customers are advised to pursue solutions through the Community. The following post (https://community.servicenow.com/thread/166553) is provided as one such example: To enable the language picker within a CMS site: Modify the UI macro cms_header_login to call the ui_language_select UI macro by adding the script above the login link:<g:ui_language_select /><script></script>This macro displays the header on the ESS Portal:Select a different language to display the language selected in the CMS: Warning: Altering the base system cms_header_login UI macro causes it to be "customized" and potentially skipped by future ServiceNow upgrades. See Overwriting_Customizations_During_Upgrades for more information. Note: Solutions implementation from the Community are outside the scope of Technical Support, which is a break/fix issues in the base platform. Customers may implement at their own risk but are responsible for maintaining the solutions.