forked from Wolfcast/ccr-exif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCCR.Exif.Consts.pas
68 lines (57 loc) · 3.91 KB
/
CCR.Exif.Consts.pas
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{**************************************************************************************************}
{ }
{ CCR Exif }
{ https://github.com/Wolfcast/ccr-exif }
{ Copyright (c) 2009-2014 Chris Rolliston. All Rights Reserved. }
{ }
{ This file is part of CCR Exif which is released under the terms of the Mozilla Public License, }
{ v. 2.0. See file LICENSE.txt or go to https://mozilla.org/MPL/2.0/ for full license details. }
{ }
{**************************************************************************************************}
{ }
{ This unit contains general constants and resource strings used within the project. }
{ }
{**************************************************************************************************}
{ }
{ Version: 1.5.4 }
{ Last modified: 2024-01-13 }
{ Contributors: Chris Rolliston }
{ }
{**************************************************************************************************}
unit CCR.Exif.Consts;
interface
const
CCRExifVersion = '1.5.4';
resourcestring
SInvalidHexString = 'Invalid hex string (%s)';
SStreamIsReadOnly = 'Stream is read-only';
SUnsupportedGraphicFormat = 'Unsupported graphic format';
SInvalidJPEGHeader = 'JPEG header is not valid';
SInvalidPSDHeader = 'Photoshop (PSD) file header is not valid';
SFileIsNotAValidJPEG = '"%s" is not a valid JPEG file';
SInvalidTiffData = 'Invalid TIFF data';
SInvalidOffsetTag = 'Tag does not specify an offset';
SInvalidExifData = 'Malformed EXIF data';
SAsciiValueCannotBeArray = 'An ASCII tag cannot be an array';
SUndefinedValueMustBeBeArray = 'An undefined tag must be an array';
SInvalidFraction = '''%s'' is not a valid fraction';
STagAlreadyExists = 'Tag with ID of "%d" already exists in section';
SNoFileOpenError = 'No file is open';
SIllegalEditOfExifData = 'Illegal attempt to edit the Exif data in such ' +
'a way that it would change the file structure';
STagCanContainOnlyASCII = 'Tag may contain only ASCII string data';
SInvalidMakerNoteFormat = 'Invalid MakerNote format';
SCannotRewriteOldStyleTiffJPEG = 'Cannot rewrite old style TIFF-JPEG';
SInvalidXMPPacket = 'XMP packet is not valid';
SSubPropertiesMustBeNamed = 'Sub-properties must be named';
SSubPropertiesNotSupported = 'Property type does not support sub-properties';
SCannotWriteSingleValueToStructureProperty = 'Cannot assign a single value to a structure property';
SPreferredPrefixMustBeSet = 'The schema''s PreferredPrefix property must be set before a new item can be added';
SInvalidAdobeSegment = 'Invalid Adobe metadata segment';
SInvalidIPTCTagSizeField = 'Invalid IPTC tag size field (%d)';
SAboveSeaLevelValue = '%s above sea level';
SBelowSeaLevelValue = '%s below sea level';
STrueNorthValue = '%s° true north';
SMagneticNorthValue = '%s° magnetic north';
implementation
end.