home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kompon / D34567 / SMDBG / SMDBGRID.ZIP / SMCnst.pas < prev    next >
Pascal/Delphi Source File  |  2000-06-12  |  4KB  |  151 lines

  1. unit SMCnst;
  2.  
  3. interface
  4.  
  5. {English strings}
  6. const
  7.   strMessage = 'Print...';
  8.   strSaveChanges = 'Do you really want to save a changes on the Database Server?';
  9.   strErrSaveChanges = 'Can''t save a data! Check a Server connection or data validation.';
  10.   strDeleteWarning = 'Do you really want to delete a table %s?';
  11.   strEmptyWarning = 'Do you really want to empty a table %s?';
  12.  
  13. const
  14.   PopUpCaption: array [0..22] of string[33] =
  15.    ('Add record',
  16.     'Insert record',
  17.     'Edit record',
  18.     'Delete record',
  19.     '-',
  20.     'Print ...',
  21.     'Export ...',
  22.     '-',
  23.     'Save changes',
  24.     'Discard changes',
  25.     'Refresh',
  26.     '-',
  27.     'Select/Unselect records',
  28.        'Select record',
  29.        'Select All records',
  30.        '-',
  31.        'UnSelect record',
  32.        'UnSelect All records',
  33.     '-',
  34.     'Save column layout',
  35.     'Restore column layout',
  36.     '-',
  37.     'Setup...');
  38.  
  39. const //for TSMSetDBGridDialog
  40.   SgbTitle = ' Title ';
  41.   SgbData = ' Data ';
  42.   STitleCaption = 'Caption:';
  43.   STitleAlignment = 'Alignment:';
  44.   STitleColor = 'Background:'; 
  45.   STitleFont = 'Font:';
  46.   SWidth = 'Width:';
  47.   SWidthFix = 'characters';
  48.   SAlignLeft = 'left';
  49.   SAlignRight = 'right';
  50.   SAlignCenter = 'center';
  51.   
  52. const //for TSMDBFilterDialog
  53.   strEqual = 'equal';
  54.   strNonEqual = 'not equal';
  55.   strNonMore = 'no greater';
  56.   strNonLess = 'no less';
  57.   strLessThan = 'less than';
  58.   strLargeThan = 'greater than';
  59.   strExist = 'empty';
  60.   strNonExist = 'not empty';
  61.   strIn = 'in list';
  62.   strBetween = 'between';
  63.  
  64.   strOR = 'OR';
  65.   strAND = 'AND';
  66.  
  67.   strField = 'Field';
  68.   strCondition = 'Condition';
  69.   strValue = 'Value';
  70.  
  71.   strAddCondition = ' Define the additional condition:';
  72.   strSelection = ' Select the records by the next conditions:';
  73.  
  74.   strAddToList = 'Add to list';
  75.   strDeleteFromList = 'Delete from list';
  76.  
  77.   strTemplate = 'Filter template dialog';
  78.   strFLoadFrom = 'Load from...';
  79.   strFSaveAs = 'Save as..';
  80.   strFDescription = 'Description';
  81.   strFFileName = 'File name';
  82.   strFCreate = 'Created: %s';
  83.   strFModify = 'Modified: %s';
  84.   strFProtect = 'Protect for rewrite';
  85.   strFProtectErr = 'File is protected!';
  86.  
  87. const //for SMDBNavigator
  88.   SFirstRecord = 'First record';
  89.   SPriorRecord = 'Prev record';
  90.   SNextRecord = 'Next record';
  91.   SLastRecord = 'Last record';
  92.   SInsertRecord = 'Insert record';
  93.   SCopyRecord = 'Copy record';
  94.   SDeleteRecord = 'Delete record';
  95.   SEditRecord = 'Edit record';
  96.   SFilterRecord = 'Filter conditions';
  97.   SFindRecord = 'Search of the record';
  98.   SPrintRecord = 'Print of the records';
  99.   SExportRecord = 'Export of the records';
  100.   SPostEdit = 'Save changes';
  101.   SCancelEdit = 'Cancel changes';
  102.   SRefreshRecord = 'Refresh data';
  103.   SChoice = 'Choose a record';
  104.   SClear = 'Clear a record choose';
  105.   SDeleteRecordQuestion = 'Delete a record?';
  106.   SDeleteMultipleRecordsQuestion = 'Do you really want to delete a selected records?';
  107.   SRecordNotFound = 'Record not found';
  108.  
  109.   SFirstName = 'First';
  110.   SPriorName = 'Prev';
  111.   SNextName = 'Next';
  112.   SLastName = 'Last';
  113.   SInsertName = 'Insert';
  114.   SCopyName = 'Copy';
  115.   SDeleteName = 'Delete';
  116.   SEditName = 'Edit';
  117.   SFilterName = 'Filter';
  118.   SFindName = 'Find';
  119.   SPrintName = 'Print';
  120.   SExportName = 'Export';
  121.   SPostName = 'Save';
  122.   SCancelName = 'Cancel';
  123.   SRefreshName = 'Refresh';
  124.   SChoiceName = 'Choose';
  125.   SClearName = 'Clear';
  126.  
  127.   SBtnOk = '&OK';
  128.   SBtnCancel = '&Cancel';
  129.   SBtnLoad = 'Load';
  130.   SBtnSave = 'Save';
  131.   SBtnCopy = 'Copy';
  132.   SBtnPaste = 'Paste';
  133.   SBtnClear = 'Clear';
  134.  
  135.   SRecNo = 'rec.';
  136.   SRecOf = ' of ';
  137.  
  138. const //for EditTyped
  139.   etValidNumber = 'valid number';
  140.   etValidInteger = 'valid integer number';
  141.   etValidDateTime = 'valid date/time';
  142.   etValidDate = 'valid date';
  143.   etValidTime = 'valid time';
  144.   etValid = 'valid';
  145.   etIsNot = 'is not a';
  146.   etOutOfRange = 'Value %s out of range %s..%s';
  147.  
  148. implementation
  149.  
  150. end.
  151.