- 30 Jan 2023
- 1 Minute To Read
-
Print
-
DarkLight
-
PDF
Enabling Whatfix to detect the language of my app
- Updated On 30 Jan 2023
- 1 Minute To Read
-
Print
-
DarkLight
-
PDF
Whatfix content can be created in any language. The content is created in English, by default, when creating Smart tips, Flows, etc. This content can also be translated and displayed according to the language that is being displayed on the application.
Here's how the same tip looks like in another language.
-
Navigate to the Whatfix Dashboard.
-
On the top right, click the Settings icon.
-
Click Configuration.
-
Click Advanced Customization
English |
|
French |
|
To see the full list of languages supported by Whatfix, see Languages Supported by Whatfix.
There are three ways by which you can enable Whatfix to detect the language of your application. Use the following steps to configure Whatfix to detect your language
Use one of the methods below:
window._wfx_settings={"locale" : "fr"};
The following HTML pages set the language information to French. These are examples:
<html>
<head>
</head>
<body>
<!-- Your HTML Code -->
</body>
<script language='javascript'>
window._wfx_settings={ "locale" : "fr"};
</script>
</html>
<html>
<head>
</head>
<body>
<!-- Your HTML Code -->
</body>
<script language='javascript'>
window._wfx_settings={ "language" : "fr"};
</script>
</html>
This style is suitable for formal deployments.
Whatfix uses wfx_locale query parameter to decide the language to be used. You can pass on language codes using this parameter. The following example triggers the french language when live mode tips are shown on this page,
http://whatfix.com/?wfx_locale=fr
This style is useful for quick testing.
Set meta tag in the pages where the live mode will run or the embed script is included.
<meta name="gwt:property" content="locale=x">
For example, the following HTML page sets locale to french
<html>
<head>
<meta name="gwt:property" content="locale=fr">
</head>
<body>
<!-- Your HTML Code -->
</body>
</html>