How to change Monogame game language

You can change the language by changing current C# culture:


  using System.Threading;

  public class Game1 : Game
  {
    public Game1()
    {
      Thread.CurrentThread.CurrentUICulture=new System.Globalization.CultureInfo("ru-RU");
    }
  }