Attribute VB_Name = "LM" Option Explicit ' ' NOTES TO TRANSLATORS ' -------------------- ' This file is a Visual Basic source code file that contains a set of string ' values for text that may be displayed to the user of a generated ' application. The strings that require translating are within double ' quotes at the end of each line that starts "Global Const..." ' The rest of this file must remain unchanged. ' ' Each of the strings to be translated is accompanied with a comment ' regarding its usage. These comments are prefixed with a word indicating ' the type of text as one of: ' Message: The text forms whole or part of a message issued to the user ' Caption: The text forms the caption/prompt for a control. ' Display: The text is displayed on the form. ' ' Constant Prefixes ' ----------------- ' glmt - used in tpl files ' glmg - used in lg.bas ' glmd - used in ld.bas ' glmv - used in LOV dialogs ' glma - used in About dialog ' glms - used in Server error dialog ' glml - used in Logon dialog ' glmo - used in Options dialog ' glmw - used in template windows ' ********************************************************************** ' GENERAL BUTTON CAPTIONS ' ********************************************************************** ' Caption: OK button Global Const glmgOK = "OK" ' Caption: Cancel button Global Const glmgCANCEL = "Annuler" ' ********************************************************************** ' MESSAGE STRINGS USED IN TEMPLATE FILES ' ********************************************************************** ' Message: The value cannot be updated' Global Const glmtCTRL_NOT_UPDATABLE = "Mise à jour de contrôle non autorisée" ' Message: The row being manipulated has been deleted by another user. Global Const glmtRECORD_NO_LONGER_EXISTS = "Cet enregistrement n'existe plus dans la base de données" ' Message: The row being changed has been locked by another user. Global Const glmtROW_LOCKED = "Ligne verrouillée par un autre utilisateur" ' Message: The row being changed has been modified by another user Global Const glmtROW_MODIFIED = " Ligne modifiée par un autre utilisateur" ' Question: Ask user to confirm row deletion Global Const glmtCONFIRM_DELETE = "Voulez-vous supprimer cette ligne de la base de données ?" ' Question: Ask user to confirm row deletion Global Const glmtCONFIRM_MULTI_DELETE = "Voulez-vous supprimer ces

lignes de la base de données ?" ' Message: Confirm row has been deleted Global Const glmtROW_DELETED = "Ligne supprimée" ' Message: Confirm rows have been deleted Global Const glmtROWS_DELETED = "

ligne(s) supprimée(s)." ' Message: This message follows another error message to indicate that becuase ' of the previous message, the form displayed cannot be used. Global Const glmtFORM_NOT_USABLE = "Ce formulaire n'est pas utilisable" ' Question: Ask user to confirm that changes are to be undone Global Const glmtUNDO_CHANGES = "Voulez-vous annuler les modifications ?" ' Message: The query submitted returned no rows. Global Const glmtNO_ROWS_FOUND = "Aucun enregistrement trouvé" ' Message: The value entered is too long.

is a placeholder for the total ' number of characters permitted. Global Const glmtTOO_MANY_CHARS = "La valeur indiquée ne peut contenir plus de

caractères" ' Question: The query has already returned the given number of rows. Does the user want ' to continue fetching, or stop the query.

is a placeholder for the ' number of rows fetched. Global Const glmtCONTINUE_FETCHING = "

lignes extraites. Voulez-vous continuer ?" ' Question: The user is performing an action that would clear the current row, but ' there are still some outstanding changes. Should those changes be saved? '

is a placeholder for the name of the zone, e.g. Employees. Global Const glmtSAVE_CHANGES = "Voulez-vous enregistrer les modifications en cours dans la zone '

'" ' Message: User has requested online help but the help file cannot be found. Global Const glmtFileNotFound = "Le fichier d'aide n'existe pas" ' ********************************************************************** ' STRINGS USED IN LG.BAS ' ********************************************************************** ' Display: Titles used in Message Boxes used for different types of messages Global Const glmgTITLE_FATAL = "ERREUR" Global Const glmgTITLE_INFO = "Informations" Global Const glmgTITLE_WARN = "Avertissement" Global Const glmgTITLE_ERROR = "Erreur" Global Const glmgTITLE_QUESTION = "Question" ' Message: User attempting to use Edit/Cut,Copy, etc on a control that does not ' support this operation. Global Const glmgNO_SELTEXT_PROP = "Les opérations d'édition ne sont pas disponibles ici" ' Message: Issued if control trying to be set (programatically) to an invalid ' value, e.g. when a record queried from the database, in the form ' of a prefix (one of 3 control types) and the suffix.

is a ' placeholder for the control's value. Global Const glmgCTRL_CHECKBOX = "Contrôle Case à cocher: " Global Const glmgCTRL_LIST = "Contrôle Liste : " Global Const glmgCTRL_RADIO = "Contrôle Groupe de boutons d'option : " Global Const glmgCTRL_SET_BAD_VALUE = "La valeur '

' définie n'est pas une valeur valide" ' Caption: Textbox used to enter search criteria before bringing up a list ' of values.

is the caption of the control that the search ' will be applied against. Global Const glmgLOV_ENTER_CRITERIA = "Entrer le critère de réduction" Global Const glmgLOV_ENTER_CRITERIA_FOR = "Entrer le critère de réduction pour

" ' Message: Location and error number of unhandled VB errors Global Const glmgERR_LOCATION = "Emplacement : " Global Const glmgVB_ERROR = "Erreur VB " ' Display: Strings to build up the "Record n of m" record status display Global Const glmgRECORD_N = "Enregistrement " Global Const glmgOF_M = " de " ' Display: Date & Time shown in the status panel Global Const glmgDATE = "Date: " Global Const glmgTIME = "Heure: " ' Message: User has entered an "invalid value" type errors... Global Const glmgERROR_RANGE = "Valeur hors de la plage autorisée (

)" Global Const glmgERROR_PRECISION = "La valeur ne peut comporter plus de

chiffres avant la décimale" Global Const glmgERROR_NO_SCALE = "La valeur ne peut pas comporter de positions décimales" Global Const glmgERROR_LARGE_SCALE = "La valeur ne peut comporter plus de

chiffres décimaux" Global Const glmgERROR_NOT_IN_LIST = "'

' ne figure pas dans la liste des valeurs autorisées" Global Const glmgERROR_NOT_A_DATE = "'

' n'est pas une date valide" Global Const glmgERROR_NOT_A_NUMBER = "'

' n'est pas un nombre valide" Global Const glmgERROR_MUST_BE_ENTERED = "Une valeur est nécessaire" ' Display: This string is added as an extra item in a ListBox/ComboBox, ' to allow the user to specify that the correct value is unknown ' at this point. Global Const glmgDV_UNKNOWN_OPT_STRING = "Inconnue" ' Display: Text used in the window title of a detail form that does not ' have a current master record (i.e. detail form is disabled). Global Const glmgDISABLED_DETAIL_CONTEXT = " : Pas dans le contexte" ' ********************************************************************** ' MESSAGE STRINGS USED IN LD.BAS ' ********************************************************************** ' Message: Attempting to run an application without Oracle Objects for OLE ' being installed on the PC. Global Const glmdOO4O_INIT_LINE1 = "Impossible d'initialiser Oracle Objects for OLE" Global Const glmdOO4O_INIT_LINE2 = "Vérifiez qu'il est correctement installé sur le PC" ' Message: Cannot load application because no more windows timers are available Global Const glmdNO_TIMER_LINE1 = "Impossible de charger l'application - contrôle horloge indisponible." Global Const glmdNO_TIMER_LINE2 = "Essayez de fermer d'autres applications qui utilisent une horloge." ' Message: Attempting to log onto a database that is not currently running Global Const glmdORACLE_NOT_AVAIL_LINE1 = "Le serveur de base de données auquel vous tentez de vous connecter n'est pas disponible pour le moment." Global Const glmdORACLE_NOT_AVAIL_LINE2 = "Contactez votre administrateur de base de données." ' Message: Invalid username and password Global Const glmdINVALID_LOGIN = "Nom tilisateur/mot de passe non valide" Global Const glmdACCESS_DENIED = "Nom tilisateur/mot de passe non valide; accès refusé" ' Message: These errors should not normally be issued, and do not require ' correction by the user. Hence could remain untranslated. Global Const glmdNULL_TABLENAME = "TableName Null passé à fonction ldNextIdcc" Global Const glmdRESET_TRANS = "Annulation impossible - Réinitialisation transaction" Global Const glmdPARAM_FAIL = "Impossible de créer paramètre '

' dans emplacement ldSetParamVal" Global Const glmdNO_LOCK = "Impossible d'obtenir verrou sur ligne, dans table compteur '

'" Global Const glmdTABLE_NOT_SETUP = "Table compteur '

' non définie sur serveur" Global Const glmdNO_CC_ROWS_FOUND = "Pas de ligne trouvée pour table compteur '

'" Global Const glmdNO_DV_ROWS_FOUND = "Pas de ligne trouvée pour table/domaine LOV '

'" ' ********************************************************************** ' STRINGS USED IN LDLOV.FRM AND LGDVLOV.FRM LIST OF VALUES FORM ' ********************************************************************** ' Message: LOV has returned no rows. Global Const glmvNO_RECORDS_MATCH = "Aucun enregistrement correspond à ce critère de sélection" ' Message: User choses OK before selecting a record in the list. Global Const glmvCHOSE_ENTRY = "Vous devez choisir une entrée dans la liste" ' Display: Default title for the LOV dialog. Global Const glmvDEFAULT_LOV_TITLE = "Liste de valeurs" ' Message: Query has returned more rows than the design limit.

is the ' number of records fetched. Global Const glmvROW_LIMIT = "Le nombre d'enregistrements trouvés a dépassé la limite d'affichage." Global Const glmvRECORDS_DISPLAYED = "Seul(s)

enregistrement(s) sera(ont) affiché(s)" ' Caption: Captions for the buttons. ' Find = Go to the first row that starts with the given string ' Filter = Reduce the list according to the filter condition ' Refresh = Requery the list Global Const glmvFIND_FILTER = "&Trouver:.&Filtrer:" Global Const glmvFILTER = "Filtrer" Global Const glmvREFRESH = "&Régénérer" ' ********************************************************************** ' STRINGS USED IN LGABOUT.FRM - ABOUT BOX ' ********************************************************************** #If Win32 Then ' Caption: How much memory (prefix). Keep this string the same size. Global Const glmaMEMORY = "Mémoire physique totale: " ' Caption: memory (suffix). Keep the preceding space. Global Const glmaKB = " Ko" ' Caption: how much allocated memory (suffix). Keep the preceding space and size. Global Const glmaRESOURCES = " Mémoire physique allouée " #Else ' Caption: How much memory (prefix). Keep this string the same size. Global Const glmaMEMORY = "Mémoire: " ' Caption: how much memory (suffix). Keep the preceding space. Global Const glmaKBFREE = " Ko libres" ' Caption: How much system resources. Keep this string the same size. Global Const glmaRESOURCES = "Ressources système: " #End If ' Caption: Title for the connect information Global Const glmaCONNECTION = "Informations de connexion:" ' Caption: Amount of User space Global Const glmaUSER = "Utilisateur: " Global Const glmaFREE = "% libre" ' Caption: String preceding Oracle Objects version number Global Const glmaSERVER = "Accès au serveur: Oracle Objects pour OLE Version" ' Display: Title of the about box Global Const glmaTITLE = "A propos de " ' Caption: Preceding name and version number of the generator Global Const glmaGENERATOR = "Cette application a été générée par:" ' Caption: Version number Global Const glmaVERSION = " Version " ' ********************************************************************** ' STRINGS USED IN LGSE.FRM - Server Error Dialog ' ********************************************************************** ' Caption: Location of the error Global Const glmsLOCATION = "Emplacement:" ' Caption: Oracle error number Global Const glmsERRNUM = "Numéro d'erreur:" ' Caption: The text of the error Global Const glmsERRTXT = "Texte d'erreur:" ' Caption: The SQL statement in error Global Const glmsSQLSTMT = "Instruction SQL:" ' Caption: Buttons to show/hide the SQL statement Global Const glmsSHOWSQL = "SQL >>" Global Const glmsHIDESQL = "SQL <<" 'Display: The title of the window Global Const glmsTITLE = "Erreur du serveur" ' ********************************************************************** ' STRINGS USED IN LDLOGON.FRM - Server Logon Dialog ' ********************************************************************** ' Display: Title of the logon window Global Const glmlTITLE = "Connexion à Oracle" ' Caption: fields to enter user, password and database information Global Const glmlUSERNAME = "Nom &utilisateur:" Global Const glmlPASSWORD = "&Mot de passe:" Global Const glmlDATABASE = "&Base de données:" ' Caption: Enable SQL Trace? Global Const glmlSQL_TRACE = "&Trace SQL?" ' Caption: Connect to Oracle, or Cancel from the app Global Const glmlCONNECT = "Connecter" Global Const glmlCANCEL = "Annuler" ' ********************************************************************** ' STRINGS USED IN LGOPTION.FRM - Run time Options Dialog ' ********************************************************************** ' Caption: Option to Auto commit changes instead of ask for confirmation Global Const glmoAUTO_COMMIT = "Validation &auto des modifications en attente" ' Caption: Option to only requery/coordinate detail windows when they ' are activated, rather than automatically Global Const glmoCOORD_DET = "&Coordonner les formulaires de détails uniquement sur activation" ' Caption: Option to close detail forms when they are disabled. Global Const glmoCLOSE_DET = "&Fermer les formulaires de détails désactivés" ' Caption: Option for displaying 'tool-tip' type hint text when the user ' moves the mouse over a control. Global Const glmoHINT_TEXT = "Ligne d'aide" Global Const glmoHINT_SHORT = "Délai &réduit" Global Const glmoHINT_LONG = "Délai &long" Global Const glmoHINT_OFF = "&Désactivé" ' Caption: Title of the Options dialog window. Global Const glmoTITLE = "Options" ' ********************************************************************** ' STRINGS USED IN TEMPLATE WINDOWS ' ********************************************************************** ' Message: Does the user want to quit from the application Global Const glmwASK_QUIT = "Voulez-vous vraiment quitter l'application?"