# SystemLanguage

> The language the user's operating system is running in. Returned by Application.systemLanguage.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public enum SystemLanguage
```

## Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    void Start()
    {
        //This checks if your computer's operating system is in the French language
        if (Application.systemLanguage == SystemLanguage.French)
        {
            //Outputs into console that the system is French
            Debug.Log("This system is in French. ");
        }
        //Otherwise, if the system is English, output the message in the console
        else if (Application.systemLanguage == SystemLanguage.English)
        {
            Debug.Log("This system is in English. ");
        }
    }
}
```

## Fields

| Value                                                                                                  | Description                                                           |
| ------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------- |
| [Afrikaans](/engine/6000.7/script-reference/unityengine/systemlanguage/afrikaans.md)                   | Indicates that the operating system's language is Afrikaans.          |
| [Arabic](/engine/6000.7/script-reference/unityengine/systemlanguage/arabic.md)                         | Indicates that the operating system's language is Arabic.             |
| [Basque](/engine/6000.7/script-reference/unityengine/systemlanguage/basque.md)                         | Indicates that the operating system's language is Basque.             |
| [Belarusian](/engine/6000.7/script-reference/unityengine/systemlanguage/belarusian.md)                 | Indicates that the operating system's language is Belarusian.         |
| [Bulgarian](/engine/6000.7/script-reference/unityengine/systemlanguage/bulgarian.md)                   | Indicates that the operating system's language is Bulgarian.          |
| [Catalan](/engine/6000.7/script-reference/unityengine/systemlanguage/catalan.md)                       | Indicates that the operating system's language is Catalan.            |
| [Chinese](/engine/6000.7/script-reference/unityengine/systemlanguage/chinese.md)                       | Indicates that the operating system's language is Chinese.            |
| [ChineseSimplified](/engine/6000.7/script-reference/unityengine/systemlanguage/chinesesimplified.md)   | Indicates that the operating system's language is ChineseSimplified.  |
| [ChineseTraditional](/engine/6000.7/script-reference/unityengine/systemlanguage/chinesetraditional.md) | Indicates that the operating system's language is ChineseTraditional. |
| [Czech](/engine/6000.7/script-reference/unityengine/systemlanguage/czech.md)                           | Indicates that the operating system's language is Czech.              |
| [Danish](/engine/6000.7/script-reference/unityengine/systemlanguage/danish.md)                         | Indicates that the operating system's language is Danish.             |
| [Dutch](/engine/6000.7/script-reference/unityengine/systemlanguage/dutch.md)                           | Indicates that the operating system's language is Dutch.              |
| [English](/engine/6000.7/script-reference/unityengine/systemlanguage/english.md)                       | Indicates that the operating system's language is English.            |
| [Estonian](/engine/6000.7/script-reference/unityengine/systemlanguage/estonian.md)                     | Indicates that the operating system's language is Estonian.           |
| [Faroese](/engine/6000.7/script-reference/unityengine/systemlanguage/faroese.md)                       | Indicates that the operating system's language is Faroese.            |
| [Finnish](/engine/6000.7/script-reference/unityengine/systemlanguage/finnish.md)                       | Indicates that the operating system's language is Finnish.            |
| [French](/engine/6000.7/script-reference/unityengine/systemlanguage/french.md)                         | Indicates that the operating system's language is French.             |
| [German](/engine/6000.7/script-reference/unityengine/systemlanguage/german.md)                         | Indicates that the operating system's language is German.             |
| [Greek](/engine/6000.7/script-reference/unityengine/systemlanguage/greek.md)                           | Indicates that the operating system's language is Greek.              |
| [Hebrew](/engine/6000.7/script-reference/unityengine/systemlanguage/hebrew.md)                         | Indicates that the operating system's language is Hebrew.             |
| [Hindi](/engine/6000.7/script-reference/unityengine/systemlanguage/hindi.md)                           | Indicates that the operating system's language is Hindi.              |
| [Hungarian](/engine/6000.7/script-reference/unityengine/systemlanguage/hungarian.md)                   | Indicates that the operating system's language is Hungarian.          |
| [Icelandic](/engine/6000.7/script-reference/unityengine/systemlanguage/icelandic.md)                   | Indicates that the operating system's language is Icelandic.          |
| [Indonesian](/engine/6000.7/script-reference/unityengine/systemlanguage/indonesian.md)                 | Indicates that the operating system's language is Indonesian.         |
| [Italian](/engine/6000.7/script-reference/unityengine/systemlanguage/italian.md)                       | Indicates that the operating system's language is Italian.            |
| [Japanese](/engine/6000.7/script-reference/unityengine/systemlanguage/japanese.md)                     | Indicates that the operating system's language is Japanese.           |
| [Korean](/engine/6000.7/script-reference/unityengine/systemlanguage/korean.md)                         | Indicates that the operating system's language is Korean.             |
| [Latvian](/engine/6000.7/script-reference/unityengine/systemlanguage/latvian.md)                       | Indicates that the operating system's language is Latvian.            |
| [Lithuanian](/engine/6000.7/script-reference/unityengine/systemlanguage/lithuanian.md)                 | Indicates that the operating system's language is Lithuanian.         |
| [Norwegian](/engine/6000.7/script-reference/unityengine/systemlanguage/norwegian.md)                   | Indicates that the operating system's language is Norwegian.          |
| [Polish](/engine/6000.7/script-reference/unityengine/systemlanguage/polish.md)                         | Indicates that the operating system's language is Polish.             |
| [Portuguese](/engine/6000.7/script-reference/unityengine/systemlanguage/portuguese.md)                 | Indicates that the operating system's language is Portuguese.         |
| [Romanian](/engine/6000.7/script-reference/unityengine/systemlanguage/romanian.md)                     | Indicates that the operating system's language is Romanian.           |
| [Russian](/engine/6000.7/script-reference/unityengine/systemlanguage/russian.md)                       | Indicates that the operating system's language is Russian.            |
| [SerboCroatian](/engine/6000.7/script-reference/unityengine/systemlanguage/serbocroatian.md)           | Indicates that the operating system's language is Serbo-Croatian.     |
| [Slovak](/engine/6000.7/script-reference/unityengine/systemlanguage/slovak.md)                         | Indicates that the operating system's language is Slovak.             |
| [Slovenian](/engine/6000.7/script-reference/unityengine/systemlanguage/slovenian.md)                   | Indicates that the operating system's language is Slovenian.          |
| [Spanish](/engine/6000.7/script-reference/unityengine/systemlanguage/spanish.md)                       | Indicates that the operating system's language is Spanish.            |
| [Swedish](/engine/6000.7/script-reference/unityengine/systemlanguage/swedish.md)                       | Indicates that the operating system's language is Swedish.            |
| [Thai](/engine/6000.7/script-reference/unityengine/systemlanguage/thai.md)                             | Indicates that the operating system's language is Thai.               |
| [Turkish](/engine/6000.7/script-reference/unityengine/systemlanguage/turkish.md)                       | Indicates that the operating system's language is Turkish.            |
| [Ukrainian](/engine/6000.7/script-reference/unityengine/systemlanguage/ukrainian.md)                   | Indicates that the operating system's language is Ukrainian.          |
| [Unknown](/engine/6000.7/script-reference/unityengine/systemlanguage/unknown.md)                       | Indicates that the operating system's language is unknown.            |
| [Vietnamese](/engine/6000.7/script-reference/unityengine/systemlanguage/vietnamese.md)                 | Indicates that the operating system's language is Vietnamese.         |
