-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotices.cs
31 lines (27 loc) · 1.01 KB
/
Notices.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
26
27
28
29
30
31
/**
* File Mask
*
* An open source application written in C# to facilitate the
* merging and extraction of files and/from images.
*
* @author ***REMOVED***
* @version 1.0.2
*/
namespace File_Mask
{
/**
* Error message dictionary.
*/
internal class Notices
{
public const string MissingFileAndImage = "You must select a file and an image.";
public const string MissingResource = "The selected image and/or file does not exist.";
public const string MissingImage = "The selected image does not exist.";
public const string MissingAes = "You must specify an image, hash, and key.";
public const string MissingAction = "You must select an action to perform.";
public const string TooLittlePixels =
"The selected image contains too few pixels.\nFor best results please choose a larger image.";
public const string InvalidFileFormat = "Please select a BMP/JPEG/JPG/PNG/TIFF image.";
public const string InvalidDimensions = "The selected image does not meet the required dimension properties.";
}
}