forked from Sovos-Compliance/convey-public-libs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kbmMemResFra.pas
56 lines (49 loc) · 2.83 KB
/
kbmMemResFra.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
unit kbmMemResFra;
interface
const
kbmMasterlinkErr = 'Le nombre de champs maîtres ne correspond pas au nombre de champs de l''index.';
kbmSelfRef = 'Référence circulaire dans une relation maître/détail non autorisée.';
kbmFindNearestErr = 'Ne peux effectuer une recherche par approximation (FindNearest) sur des données non triées.';
kbminternalOpen1Err = 'Définition de champ ';
kbminternalOpen2Err = 'Type de donnée "%d" n''est pas supporté.)';
kbmReadOnlyErr = 'Le champ %s est en lecture seule';
kbmVarArrayErr = 'Mauvais nombre de dimension d''un tableau Variant';
kbmVarReason1Err = 'Plus de champs que de valeurs';
kbmVarReason2Err = 'Il doit y avoir au moins un champ';
kbmBookmErr = 'Marqueur %d non trouvé.';
kbmUnknownFieldErr1 = 'Type de champ inconnu (%s)';
kbmUnknownFieldErr2 = ' dans le fichier CSV. (%s)';
kbmIndexErr = 'Ne peux indexer sur le champ %s';
kbmEditModeErr = 'L''ensemble de données n''est pas en mode édition.';
kbmDatasetRemoveLockedErr = 'Suppression de l''ensemble de données durant un Lock.';
kbmSetDatasetLockErr = 'Ensemble de données protégé (Lock). Modifications rejetées.';
kbmOutOfBookmarks = 'Le Compteur de marques est saturé. Fermez puis réouvrez la table.';
kbmIndexNotExist = 'L''Index %s n''existe pas';
kbmKeyFieldsChanged = 'Opération refusée : les champs de la clé ont été modifiés.';
kbmDupIndex = 'Opération refusée : création d''un doublon dans l''index.';
kbmMissingNames = 'Missing Name or FieldNames in IndexDef!';
kbmInvalidRecord = 'Invalid record ';
kbmTransactionVersioning = 'Transactioning requires multiversion versioning.';
kbmNoCurrentRecord = 'No current record.';
kbmCantAttachToSelf = 'Cant attach memorytable to it self.';
kbmCantAttachToSelf2 = 'Cant attach to another table which itself is an attachment.';
kbmUnknownOperator = 'Unknown operator (%d)';
kbmUnknownFieldType = 'Unknown fieldtype (%d)';
kbmOperatorNotSupported = 'Operator not supported (%d).';
kbmSavingDeltasBinary = 'Saving deltas is supported only in binary format.';
kbmCantCheckpointAttached = 'Cannot checkpoint attached table.';
kbmDeltaHandlerAssign = 'Delta handler is not assigned to any memorytables.';
kbmOutOfRange = 'Out of range (%d)';
kbmInvArgument = 'Invalid argument.';
kbmInvOptions = 'Invalid options.';
kbmTableMustBeClosed = 'Table must be closed for this operation.';
kbmChildrenAttached = 'Children are attached to this table.';
kbmIsAttached = 'Table is attached to another table.';
kbmInvalidLocale = 'Invalid locale.';
kbmInvFunction = 'Invalid function name %s';
kbmInvMissParam = 'Invalid or missing parameter for function %s';
kbmNoFormat = 'No format specified.';
kbmTooManyFieldDefs = 'Too many fielddefs. Please raise KBM_MAX_FIELDS value.';
kbmCannotMixAppendStructure = 'Cannot both append and copy structure.';
implementation
end.