2017-07-20 11:51:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UIInfoSuite
|
|
|
|
|
{
|
|
|
|
|
static class LanguageKeys
|
|
|
|
|
{
|
|
|
|
|
public const string Days = "Days";
|
|
|
|
|
public const string DaysToMature = "DaysToMature";
|
|
|
|
|
public const string Hours = "Hours";
|
|
|
|
|
public const string Minutes = "Minutes";
|
|
|
|
|
public const string ReadyToHarvest = "ReadyToHarvest";
|
|
|
|
|
public const string TodaysRecipe = "TodaysRecipe";
|
|
|
|
|
public const string MaybeStayHome = "MaybeStayHome";
|
|
|
|
|
public const string NotFeelingLuckyAtAll = "NotFeelingLuckyAtAll";
|
|
|
|
|
public const string LuckyButNotTooLucky = "LuckyButNotTooLucky";
|
|
|
|
|
public const string FeelingLucky = "FeelingLucky";
|
|
|
|
|
public const string TravelingMerchantIsInTown = "TravelingMerchantIsInTown";
|
|
|
|
|
public const string HarvestPrice = "HarvestPrice";
|
|
|
|
|
public const string LevelUp = "LevelUp";
|
|
|
|
|
public const string Calendar = "Calendar";
|
|
|
|
|
public const string Billboard = "Billboard";
|
2017-11-28 13:27:52 +08:00
|
|
|
|
public const string DaysUntilToolIsUpgraded = "DaysUntilToolIsUpgraded";
|
|
|
|
|
public const string ToolIsFinishedBeingUpgraded = "ToolIsFinishedBeingUpgraded";
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|