-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
25 lines (20 loc) · 1.19 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace unscramble
{
class Constants
{
public const string OptionsOnHowToEnterScrambledWords = "Enter scrambleds words(s) manually or as a file: F - file / M - manual";
public const string OptionsOnContinuingTheProgram = "Would you like to continue? Y/N: ";
public const string EnterScrambledWordsViaFile = "Enter full path including the file name: ";
public const string EnterScrambledWordsManually = "Enter word(s) manually (separated by commas if multiple): ";
public const string EnterScrambledWordsOptionNotRecognised = "This option was not reconised.";
public const string ErrorScrambledWordsCannotBeLoaded = "Scrambled words were not loaded beacause there was an error: ";
public const string ErrorProgramWillBeTerminated = "The program will be terminated: ";
public const string MatchFound = "MATCH FOUND FOR {0}: {1}";
public const string MatchNotFound = "NO MATCHES HAVE BEEN FOUND";
public const string Yes = "Y";
public const string No = "N";
public const string File = "F";
public const string Manual = "M";
public const string WordListFileName = "wordlist.txt";
}
}