home *** CD-ROM | disk | FTP | other *** search
/ PC Open 19 / pcopen19.iso / Zipped / CALMIR21.ZIP / SOURCE.ZIP / SRC / EMBED.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-02-20  |  2.3 KB  |  51 lines

  1. {**************************************************************************}
  2. {                                                                          }
  3. {    Calmira shell for Microsoft« Windows(TM) 3.1                          }
  4. {    Source Release 2.0                                                    }
  5. {    Copyright (C) 1997-1998 Li-Hsin Huang                                 }
  6. {                                                                          }
  7. {    This program is free software; you can redistribute it and/or modify  }
  8. {    it under the terms of the GNU General Public License as published by  }
  9. {    the Free Software Foundation; either version 2 of the License, or     }
  10. {    (at your option) any later version.                                   }
  11. {                                                                          }
  12. {    This program is distributed in the hope that it will be useful,       }
  13. {    but WITHOUT ANY WARRANTY; without even the implied warranty of        }
  14. {    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         }
  15. {    GNU General Public License for more details.                          }
  16. {                                                                          }
  17. {    You should have received a copy of the GNU General Public License     }
  18. {    along with this program; if not, write to the Free Software           }
  19. {    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.             }
  20. {                                                                          }
  21. {**************************************************************************}
  22.  
  23.  
  24. unit Embed;
  25.  
  26. interface
  27.  
  28. const
  29.   SSSelectedItems = 'Selected %d items  %s';
  30.   SSSelectedOneItem = 'Selected %d item  %s';
  31.   SSNumObjects = '%d object%s  %s';
  32.   SSNoDescription       = '(No description)';
  33.   SSNoNetConnection     = '(None)';
  34.   SSItemsFound = '%d items found';
  35.   SSFoundSelected = '%d selected';
  36.   SSDrive = 'Drive (%s:)¼%s';
  37.   SSParallelPort = 'Parallel port LPT%s¼%s';
  38.  
  39.   SSUnknownDrive = 'Unknown (%s:)';
  40.   SSNoDrive = 'No drive! (%s:)';
  41.   SSFloppyDrive = 'Floppy (%s:)';
  42.   SSFixedDrive = 'Fixed (%s:)';
  43.   SSNetworkDrive = 'Network (%s:)';
  44.   SSCDROMDrive = 'CDROM (%s:)';
  45.   SSRamDrive = 'RAMdisk (%s:)';
  46.  
  47.  
  48. implementation
  49.  
  50. end.
  51.