home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP07.EXE / CHP0703.CH < prev    next >
Encoding:
Text File  |  1991-04-30  |  1.3 KB  |  34 lines

  1. /*
  2.    Listing 7.3 Bilingual Manifest Constants
  3.    Author: Greg Lief
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11. #ifdef FRENCH
  12.    #define M_NETERR    "Dossier entrain d'ĂȘtre utiliser, ne pouvez pas modifier"
  13.    #define M_CONTINUE  "Voulez-vous continuer? (O/N)"
  14.    #define M_TOF       "Commencement de fichier!"
  15.    #define M_BOF       "Fin de fichier!"
  16.    #define M_PRINT     "Imprimante ou fichier?"
  17.    #define M_CONFIRM   "Etes-vous sur?"
  18.    #define M_NOTFOUND  "Pas Trouver!"
  19.    #define M_ADDING    "Ajoute dossier - ^W pour sauver; Esc pour sortir"
  20.    #define M_EDITING   "Modifie dossier - ^W pour sauver; Esc pour sortir"
  21. #else
  22.    #define M_NETERR    "Could not lock record at this time - edits not saved"
  23.    #define M_CONTINUE  "Would you like to continue? (Y/N)"
  24.    #define M_TOF       "Top of file!"
  25.    #define M_BOF       "Bottom of file!"
  26.    #define M_PRINT     "Print to printer or file?"
  27.    #define M_CONFIRM   "Are you sure?"
  28.    #define M_NOTFOUND  "Not Found!"
  29.    #define M_ADDING    "Add record - ^W to save; Esc to exit"
  30.    #define M_EDITING   "Edit record- ^W to save; Esc to exit"
  31. #endif
  32.  
  33. // end of file CHP0703.CH
  34.