---
title: "Enable Whatfix to detect the language of my app"
slug: "enable-whatfix-to-detect-the-language-of-my-app"
updated: 2024-10-11T02:29:32Z
published: 2024-10-11T02:29:32Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://support.whatfix.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Enable Whatfix to detect the language of my app

Create Whatfix content in the language of your choice. The default language of content is automatically set to English. However, you can [change the primary language](/studio/docs/change-the-default-language-for-auto-translating-content){target="_blank"} to your preferred language. 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 appears in another language:  

<table class="wrapped confluenceTable">
   <colgroup>
      <col style="width: 70.0px;">
      <col style="width: 256.0px;">
   </colgroup>
   <tbody>
      <tr>
         <td class="confluenceTd">English</td>
         <td class="confluenceTd">
            <div class="content-wrapper">
               <p><span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="https://cdn.document360.io/a268766e-d74d-4619-9613-e2472f809ffb/Images/Documentation/tip_english%281%29.png" width="300" ></span></p>
            </div>
         </td>
      </tr>
      <tr>
         <td class="confluenceTd">French</td>
         <td class="confluenceTd">
            <div class="content-wrapper">
               <p><span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="https://cdn.document360.io/a268766e-d74d-4619-9613-e2472f809ffb/Images/Documentation/tip_french%281%29.png" width="300"></span></p>
            </div>
         </td>
      </tr>
   </tbody>
</table>

To see the full list of languages supported by Whatfix, see [Languages Supported by Whatfix](/studio/docs/languages-supported-by-whatfix){target="_blank"}. 
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:

{{snippet.click_settings_ac}}

In the Advanced Customization screen, you can write your own code snippet for a desired action, paste it in the window, and then click the **Save** button.
 ![CLMDashboard_ac](https://cdn.document360.io/a268766e-d74d-4619-9613-e2472f809ffb/Images/Documentation/CLMDashboard_ac.png){height="" width="500"}

You can detect the language of your application using one of the three methods below:

:::(Info) (your title goes here)
- The following code snippets are for the French language. To detect any other languge, replace the locale code to the respective language. 
    
- Based on your requirements, choose the method that best suits you and copy the code to paste it in the Advanced Customization code window.
    
- Some locale codes contain a dash (**-**) and uppercase letters, for e.g. Brazilian Portuguese (**pt-BR**). While referencing a locale code in AC code however, the dash must be omitted and the uppercase letters must be made lowercase. For e.g. **pt-BR** should be written as **ptbr**.
:::
    
<div class="accordion">
<div class="accordion-toggle">Expose a global variable that holds language information within your Javascript  </div>
<div class="accordion-content">
<p>

```
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.
</p></div></div>
<div class="accordion">
    <div class="accordion-toggle">Use URL query String</div>
    <div class="accordion-content">
     <p>
         
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
```
         
@(Info)(info)(Every page that is traversed in the flow of live run must have this parameter (wfx_locale) for whatfix to understand the locale.)

This style is useful for quick testing. 
</p></div></div>
<div class="accordion">
<div class="accordion-toggle">Use Meta tag</div>
<div class="accordion-content">
<p>
 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>
```
 </p></div></div>
 
3. Copy the respective code snippet, paste it in the Advanced Customization code window, and then click  <b>Save</b>.</li>

## Related

- [Languages supported by Whatfix](/languages-supported-by-whatfix.md)
