30 lines
1.2 KiB
C#
30 lines
1.2 KiB
C#
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";
|
|
public const string DaysUntilToolIsUpgraded = "DaysUntilToolIsUpgraded";
|
|
public const string ToolIsFinishedBeingUpgraded = "ToolIsFinishedBeingUpgraded";
|
|
}
|
|
}
|