-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.cpp
More file actions
84 lines (50 loc) · 3.03 KB
/
string.cpp
File metadata and controls
84 lines (50 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include "mpaMain.hpp"
const char *strVersion = "1.5.1.1";
const char *strMPAURL = "https://mbtpdfasm.codeplex.com/";
/* *********************************************************************************************** */
const char *strHLAuthor = "Author";
const char *strHLKW = "keywords";
const char *strHLSubject = "Subject";
const char *strHLTitle = "Title";
#ifdef LANG_FR
const char *strDebTrait = "debut du traitement de %s...\r\n";
const char *strAjout = "%s ajoute. (%u page(s))\r\n";
const char *strResImp = "impossible d'initialiser %s <--------------\r\n";
const char *strNoMFile = "pas de fichiers correspondant au masque <--------------\r\n";
const char *strErrSignet = "impossible d'intégrer les signets <--------------\r\n";
const char *strErrFile = "erreur avec le fichier %s <--------------\r\n";
const char *strCantOpenScript = "impossible d'ouvrir le fichier de script %s <--------------\r\n";
const char *strPageInserted = "page %u du fichier %s inseree...\r\n";
const char *strCantInsertPage = "impossible d'inserer page %u du fichier %s <--------------\r\n";
const char *strFinAsm = "\nfin de l'assemblage, %u page(s) assemblee(s)\n";
const char *strErrEncrypt = "impossible d'assembler un fichier comportant des restrictions d'acces <-----\r\n";
const char *strErrEncryptVer = "impossible de decrypter ce fichier <-----\r\n";
const char *strHLFileName = "nom du fichier";
const char *strHLNumberOfPages = "nombre de pages";
const char *strHLEFilter = "pilote de chiffrement";
const char *strHLEKeyLength = "longueur de la clé";
const char *strHLUserMdp = "mdp utilisateur";
const char *strUpdateRes = "fichier %s mis à jour\r\n";
const char *strUpdateResErr = "mise a jour de %s impossible <---------\r\n";
/* *********************************************************************************************** */
#elif defined(LANG_EN)
const char *strDebTrait = "begining of insertion of %s...\r\n";
const char *strAjout = "%s inserted (%u page(s)).\r\n";
const char *strResImp = "can't initialize <--------------%s\r\n";
const char *strNoMFile = "no matching file <--------------\r\n";
const char *strErrSignet = "outlines error <--------------\r\n";
const char *strErrFile = "error with file %s <--------------\r\n";
const char *strCantOpenScript = "can't open script file %s <--------------\r\n";
const char *strPageInserted ="page %u of file %s inserted...\r\n";
const char *strCantInsertPage ="can't insert page %u of file %s <--------------\r\n";
const char *strFinAsm = "\nend of process, %u page(s) assembled\n";
const char *strErrEncrypt = "can't insert a file having access restriction <---------\r\n";
const char *strErrEncryptVer = "can't handle encryption specifications <-----\r\n";
const char *strHLFileName = "file name";
const char *strHLNumberOfPages = "number of pages";
const char *strHLEFilter = "security handler";
const char *strHLEKeyLength = "key length";
const char *strHLUserMdp = "user password";
const char *strUpdateRes = "file %s updated\r\n";
const char *strUpdateResErr = "update of %s impossible <---------\r\n";
#endif