-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPascalType.ResourceStrings.pas
More file actions
106 lines (99 loc) · 6.02 KB
/
PascalType.ResourceStrings.pas
File metadata and controls
106 lines (99 loc) · 6.02 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
unit PascalType.ResourceStrings;
////////////////////////////////////////////////////////////////////////////////
// //
// Version: MPL 1.1 or LGPL 2.1 with linking exception //
// //
// The contents of this file are subject to the Mozilla Public License //
// Version 1.1 (the "License"); you may not use this file except in //
// compliance with the License. You may obtain a copy of the License at //
// http://www.mozilla.org/MPL/ //
// //
// Software distributed under the License is distributed on an "AS IS" //
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the //
// License for the specific language governing rights and limitations under //
// the License. //
// //
// Alternatively, the contents of this file may be used under the terms of //
// the Free Pascal modified version of the GNU Lesser General Public //
// License Version 2.1 (the "FPC modified LGPL License"), in which case the //
// provisions of this license are applicable instead of those above. //
// Please see the file LICENSE.txt for additional information concerning //
// this license. //
// //
// The code is part of the PascalType Project //
// //
// The initial developer of this code is Christian-W. Budde //
// //
// Portions created by Christian-W. Budde are Copyright (C) 2010-2017 //
// by Christian-W. Budde. All Rights Reserved. //
// //
////////////////////////////////////////////////////////////////////////////////
interface
{$I PT_Compiler.inc}
resourcestring
RCStrAddendumTableUndefined = 'Addendum Table undefined!';
RCStrCFFErrorWrongNibble = 'CFF Error: Wrong Nibble found (%d)';
RCStrCFFErrorWrongToken = 'CFF Error: Wrong Token found (%d)';
RCStrCFFStackUnderflow = 'CFF stack underflow';
RCStrCFFIndexFirstOffsetError = 'CFF Index: First Offset Error (%d)';
RCStrCharMapError = 'Error in character map';
RCStrCharMapErrorEndCount = 'Error in Character Map: wrong end count (%d)';
RCStrCharMapErrorIdDelta = 'Error in Character Map: wrong ID delta (%d)';
RCStrCharMapErrorReserved = 'Error in Character Map: wrong reserved value (%d)';
RCStrCharMapErrorStartCount = 'Error in Character Map: wrong start count (%d)';
RCStrChecksumError = 'Checksum error at table ''%s''';
RCStrCodePageRangeTableUndefined = 'Code Page Range Table undefined!';
RCStrCompositeGlyphFlagError = 'Composite Glyph Flag Error';
RCStrErrorInKerningSubTable = 'Error in kerning subtable format 0';
RCStrGlyphDataFlagRepeatError = 'Flag repeat error: %d / %d';
RCStrGlyphDataFlagReservedError = 'Flag ''Reserved'' error at point: %d / %d';
RCStrHeaderFlagError = 'Header flag error';
RCStrHorizontalHeaderReserved = 'Horizontal Header Reserved Value <> 0';
RCStrIndexOutOfBounds = 'Index out of bounds (%d)';
RCStrValueOutOfBounds = 'Value out of bounds (%d)';
RCStrInvalidGlyphData = 'Invalid glyph data';
RCStrInvalidInstruction = 'Invalid Instruction';
RCStrLocationOffsetError = 'Location offsets must be in ascending order!';
RCStrNoCharacterMapTable = 'Character map table not found!';
RCStrNoGlyphDataTable = 'Glyph data table not found!';
RCStrNoHeaderTable = 'Header table not found!';
RCStrNoHorizontalHeader = 'Horizontal header not found';
RCStrNoHorizontalHeaderTable = 'Horizontal header table not found!';
RCStrNoHorizontalMetricsTable = 'Horizontal metrics table not found!';
RCStrNoIndexToLocationTable = 'Index to Location table not found!';
RCStrNoMagic = 'There is no magic in it!';
RCStrRecursionLimitExceeded = 'Recursion limit exceeded';
RCStrNoMaximumProfileTable = 'Maximum profile table not found!';
RCStrNoNameTable = 'Name table not found!';
RCStrNoOperandSpecified = 'No operand specified';
RCStrNoOS2Table = 'OS/2 table not found!';
RCStrNoPostscriptTable = 'Postscript table not found!';
RCStrNotImplemented = 'not implemented';
RCStrNoVerticalHeader = 'Vertical header not found';
RCStrPaddingByteError = 'Padding Byte <> 0!';
RCStrReservedValueError = 'Wrong reserved value (%d)';
RCStrTableIncomplete = 'Could not load the table entirely!';
RCStrTablesMissing = 'Not all required tables are present!';
RCStrTooFewMetamorphosisChains = 'At least one chain expected';
RCStrTooManyContours = 'Too many contours (%d / %d)';
RCStrTooManyInstructions = 'Too many instructions (%d)';
RCStrTooManyPoints = 'Too many points (%d)';
RCStrUnknownClassDefinition = 'Unknown class definition format';
RCStrUnknownFormat = 'Unknown format!';
RCStrUnknownGlyphDataType = 'Unknown glyph data type (%d)';
RCStrUnknownOpcode = 'Unknown opcode (%d)';
RCStrUnknownVersion = 'Unknown version (%d)';
RCStrUnsupportedPlatform = 'Unsupported Platform ID (%d)';
RCStrUnsupportedVersion = 'Unsupported version';
RCStrWrongChainLength = 'Chain length must be a multiple of 4!';
RCStrWrongCharacterIndex = 'Wrong character index!';
RCStrWrongFilesize = 'Wrong file size!';
RCStrWrongFormat = 'Wrong Format';
RCStrWrongIndexToLocFormat = 'Wrong IndexToLocFormat (%d)';
RCStrWrongMajorVersion = 'Wrong major version (%d)';
RCStrInvalidLookupType = 'Invalid lookup type (%d)';
{$IFDEF ValidateEveryReadOperation}
RCStrStreamReadError = 'Stream read error!';
{$ENDIF}
implementation
end.