spconst.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. {*******************************************************************}
  2. {                                                                   }
  3. {       Almediadev Visual Component Library                         }
  4. {       DynamicSkinForm                                             }
  5. {       Version 5.60                                                }
  6. {                                                                   }
  7. {       Copyright (c) 2000-2003 Almediadev                          }
  8. {       ALL RIGHTS RESERVED                                         }
  9. {                                                                   }
  10. {       Home:  http://www.almdev.com                                }
  11. {       Support: support@almdev.com                                 }
  12. {                                                                   }
  13. {*******************************************************************}
  14. unit spconst;
  15. interface
  16. resourcestring
  17.   SP_MI_MINCAPTION = 'Mi&nimize';
  18.   SP_MI_MAXCAPTION = 'Ma&ximize';
  19.   SP_MI_CLOSECAPTION = '&Close';
  20.   SP_MI_RESTORECAPTION = '&Restore';
  21.   SP_MI_MINTOTRAYCAPTION = 'Minimize to &Tray';
  22.   SP_MI_ROLLUPCAPTION = 'Ro&llUp';
  23.   SP_Edit_Undo = 'Undo';
  24.   SP_Edit_Copy = 'Copy';
  25.   SP_Edit_Cut = 'Cut';
  26.   SP_Edit_Paste = 'Paste';
  27.   SP_Edit_Delete = 'Delete';
  28.   SP_Edit_SelectAll = 'Select All';
  29.   SP_MSG_BTN_YES = '&Yes';
  30.   SP_MSG_BTN_NO = '&No';
  31.   SP_MSG_BTN_OK = 'OK';
  32.   SP_MSG_BTN_CANCEL = 'Cancel';
  33.   SP_MSG_BTN_ABORT = '&Abort';
  34.   SP_MSG_BTN_RETRY = '&Retry';
  35.   SP_MSG_BTN_IGNORE = '&Ignore';
  36.   SP_MSG_BTN_ALL = '&All';
  37.   SP_MSG_BTN_NOTOALL = 'N&oToAll';
  38.   SP_MSG_BTN_YESTOALL = '&YesToAll';
  39.   SP_MSG_BTN_HELP = '&Help';
  40.   SP_MSG_BTN_OPEN = '&Open';
  41.   SP_MSG_BTN_SAVE = '&Save';
  42.   SP_MSG_FILENAME = 'File name:';
  43.   SP_MSG_FILETYPE = 'File type:';
  44.   SP_MSG_CAP_WARNING = 'Warning';
  45.   SP_MSG_CAP_ERROR = 'Error';
  46.   SP_MSG_CAP_INFORMATION = 'Information';
  47.   SP_MSG_CAP_CONFIRM = 'Confirm';
  48.   SP_CALC_CAP = 'Calculator';
  49.   SP_ERROR = 'Error';
  50.   SP_COLORGRID_CAP = 'Basic colors';
  51.   SP_FONTDLG_COLOR = 'Color:';
  52.   SP_FONTDLG_NAME = 'Name:';
  53.   SP_FONTDLG_SIZE = 'Size:';
  54.   SP_FONTDLG_HEIGHT = 'Height:';
  55.   SP_FONTDLG_EXAMPLE = 'Example:';
  56.   SP_FONTDLG_STYLE = 'Style:';
  57.   SP_NODISKINDRIVE = 'There is no disk in Drive or Drive is not ready';
  58.   SP_NOVALIDDRIVEID = 'Not a valid Drive ID';
  59.   SP_FLV_NAME = 'Name';
  60.   SP_FLV_SIZE = 'Size';
  61.   SP_FLV_TYPE = 'Type';
  62.   SP_FLV_MODIFIED = 'Modified';
  63.   SP_FLV_ATTRIBUTES = 'Attributes';
  64.   SP_FLV_DISKSIZE = 'Disk Size';
  65.   SP_FLV_FREESPACE = 'Free Space';
  66. implementation
  67. end.