Описание
Голландский.
using UnityEngine;
public class Example : MonoBehaviour
{
void Start()
{
//This checks if your computer's operating system is in the Dutch language
if (Application.systemLanguage == SystemLanguage.Dutch)
{
//Outputs into console that the system is in Dutch
Debug.Log("This system is in Dutch. ");
}
}
}