---
title: "Run Shogun Live in Simplified Chinese"
canonical: "https://help.vicon.com/space/ShogunLive121/1253212466/Run%20Shogun%20Live%20in%20Simplified%20Chinese"
format: markdown
---
In Shogun Live 1.18 and later, you can use one of the following methods to change the language displayed in Shogun Live to Simplified Chinese:

> Macro (toc)

> ✅ **Which method?**  
> ✅ If you change the Windows settings, this may also affect the language displayed in other applications on your PC.   
> ✅ If you want to change the language displayed for Shogun Live only, use a JSON file instead.

## Use Windows settings to control the display language

> ℹ️ **Note**  
> ℹ️ If you use a Chinese version of Windows, Simplified Chinese may already be the default language configuration and you may not need to use the following instructions.

To display Shogun Live in Simplified Chinese, ensure the following settings are selected in Windows.

1. Within the **Language & Region** settings, ensure that you have installed the **Chinese (Simplified, Mainland China)** language pack on your machine.
2. Change the **Regional format** to **Chinese (Simplified, Mainland China)**.

> ⚠️ **Note**  
> ⚠️ Following these steps may also affect the language displayed in other applications on your PC. If you want to keep Windows in another language but display Shogun Live in Simplified Chinese, see [Use a JSON file to change the language for Shogun Live](#JSONfile).

> Macro (anchor)



## Use a JSON file to change the language for Shogun Live

To keep Windows in its default language and change only the language used for Shogun Live, use a JSON file to specify the required language as described in the following steps:

1. Create an empty JSON file called *ShogunLive.json* in the following location:   
*C:\Users\*<username>*\AppData\Roaming\Vicon\Settings\*  
If the *Settings* folder does not exist in this path, create the folder.  
:check_mark: **Tip**: If you can’t see the *AppData* folder, it may be hidden. To display the *AppData* folder, in the File Explorer in Windows 11, on the menu bar, click **View,** point to **Show** and ensure **Hidden Items** is selected.
2. Copy the content from the relevant example in [Example JSON files to display Shogun Live in other languages](#JSON-example) into the *ShogunLive.json* file that you created in the previous step and save it.

If you are not sure how to create the JSON file or would like the file to be provided for you, please contact [Vicon Support](mailto:support@vicon.com).

> ⚠️ **Note**  
> ⚠️ Repeat this method for each subsequent user who wants to display Shogun Live in a language that is different from the language used for Windows.

> Macro (anchor)



### Example JSON files to display Shogun Live in other languages

> ✅ **Tip**  
> ✅ For instructions on how to create a *ShogunLive.json* file, see [Use a JSON file to change the language for Shogun Live](#JSONfile).

To display Shogun Live in Simplified Chinese, copy the contents of the following example into your *ShogunLive.json* file:

#### ShogunLive.json example for Simplified Chinese

```json
[
    { 
        "Version": [ 
            1,
               0, 
            0
        ]
    }, 
    {
        "LocaleCode": "zh-CN"
    }
]
```

> Macro (scroll-pagebreak)

To display Shogun Live in English (UK), copy the contents of the following example into your *ShogunLive.json* file:

#### ShogunLive.json example for English (UK)

```json
[
    { 
        "Version": [ 
            1,
               0, 
            0
        ]
    }, 
    {
        "LocaleCode": "en-GB"
    }
]
```