Version: Unity 6.1 Alpha (6000.1)
LanguageEnglish
  • C#

SystemLanguage

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

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

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. "); } } }

Properties

AfrikaansIndicates that the operating system's language is Afrikaans.
ArabicIndicates that the operating system's language is Arabic.
BasqueIndicates that the operating system's language is Basque.
BelarusianIndicates that the operating system's language is Belarusian.
BulgarianIndicates that the operating system's language is Bulgarian.
CatalanIndicates that the operating system's language is Catalan.
ChineseIndicates that the operating system's language is Chinese.
CzechIndicates that the operating system's language is Czech.
DanishIndicates that the operating system's language is Danish.
DutchIndicates that the operating system's language is Dutch.
EnglishIndicates that the operating system's language is English.
EstonianIndicates that the operating system's language is Estonian.
FaroeseIndicates that the operating system's language is Faroese.
FinnishIndicates that the operating system's language is Finnish.
FrenchIndicates that the operating system's language is French.
GermanIndicates that the operating system's language is German.
GreekIndicates that the operating system's language is Greek.
HebrewIndicates that the operating system's language is Hebrew.
IcelandicIndicates that the operating system's language is Icelandic.
IndonesianIndicates that the operating system's language is Indonesian.
ItalianIndicates that the operating system's language is Italian.
JapaneseIndicates that the operating system's language is Japanese.
KoreanIndicates that the operating system's language is Korean.
LatvianIndicates that the operating system's language is Latvian.
LithuanianIndicates that the operating system's language is Lithuanian.
NorwegianIndicates that the operating system's language is Norwegian.
PolishIndicates that the operating system's language is Polish.
PortugueseIndicates that the operating system's language is Portuguese.
RomanianIndicates that the operating system's language is Romanian.
RussianIndicates that the operating system's language is Russian.
SerboCroatianIndicates that the operating system's language is Serbo-Croatian.
SlovakIndicates that the operating system's language is Slovak.
SlovenianIndicates that the operating system's language is Slovenian.
SpanishIndicates that the operating system's language is Spanish.
SwedishIndicates that the operating system's language is Swedish.
ThaiIndicates that the operating system's language is Thai.
TurkishIndicates that the operating system's language is Turkish.
UkrainianIndicates that the operating system's language is Ukrainian.
VietnameseIndicates that the operating system's language is Vietnamese.
ChineseSimplifiedIndicates that the operating system's language is ChineseSimplified.
ChineseTraditionalIndicates that the operating system's language is ChineseTraditional.
HindiIndicates that the operating system's language is Hindi.
UnknownIndicates that the operating system's language is unknown.
HungarianIndicates that the operating system's language is Hungarian.