home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 7.3 Bilingual Manifest Constants
- Author: Greg Lief
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- #ifdef FRENCH
- #define M_NETERR "Dossier entrain d'ĂȘtre utiliser, ne pouvez pas modifier"
- #define M_CONTINUE "Voulez-vous continuer? (O/N)"
- #define M_TOF "Commencement de fichier!"
- #define M_BOF "Fin de fichier!"
- #define M_PRINT "Imprimante ou fichier?"
- #define M_CONFIRM "Etes-vous sur?"
- #define M_NOTFOUND "Pas Trouver!"
- #define M_ADDING "Ajoute dossier - ^W pour sauver; Esc pour sortir"
- #define M_EDITING "Modifie dossier - ^W pour sauver; Esc pour sortir"
- #else
- #define M_NETERR "Could not lock record at this time - edits not saved"
- #define M_CONTINUE "Would you like to continue? (Y/N)"
- #define M_TOF "Top of file!"
- #define M_BOF "Bottom of file!"
- #define M_PRINT "Print to printer or file?"
- #define M_CONFIRM "Are you sure?"
- #define M_NOTFOUND "Not Found!"
- #define M_ADDING "Add record - ^W to save; Esc to exit"
- #define M_EDITING "Edit record- ^W to save; Esc to exit"
- #endif
-
- // end of file CHP0703.CH
-