How to add another language?private Dictionary<object, string> langMessages = new Dictionary<object, string>
{
{MessageType.LimitBuilding, "You reached limit at that building! Used: {used}, Limit: {limit}"},
{MessageType.LimitGlobal, "You reached global limit! Used: {used}, Limit: {limit}"},
{MessageType.LimitBuildingWarning, "You used {used} that type of building parts in that building, {left} available..."},
{MessageType.LimitGlobalWarning, "You used {used} that type of building parts in whole world, {left} available..."},
{MessageType.LimitsList, "Your global limits:\n{global}\nYour building limits:\n{building}"},
};