Translate all printed messages in english.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 15 Nov 2017 20:29:02 +0000 (21:29 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 15 Nov 2017 20:29:02 +0000 (21:29 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
lexer/lexical_analyzer.c
lexer/main.c
lexer/print_helper.h

index 36acd5e214098b47d2078cac42a2bb4d4779c15a..905647e932e358ea510ad4d9c601bbb182f8fd68 100644 (file)
@@ -200,11 +200,13 @@ FIN:
 
 error:
     if (tokenType == MOT || tokenType == MOTCLE) {
-        wpr_error(L"Scanner error with token type: %s and value: %ls\n",
+        wpr_error(L"%s error with token type: %s and value: %ls\n",
+                  __func__,
                   tokenTypestr[tokenType],
                   token[tokenFound].value);
     } else {
-        wpr_error(L"Scanner error with token type: %s\n",
+        wpr_error(L"%s error with token type: %s\n",
+                  __func__,
                   tokenTypestr[tokenType]);
     }
     tokenType = FIN;
index c5a04576a1c9de4f9f505601af492d6a58054af9..d3f086ec00fa41b4d6c096273c2e7efe0b764fcb 100644 (file)
@@ -101,7 +101,7 @@ int main(int argc, char **argv) {
         // Ouvre le fichier source en lecture seulement (le fichier doit exister) :
         source = fopen(in_file, "r+");
         if (source == NULL) {
-            pr_error("Impossible d'ouvrir le fichier %s\n", in_file);
+            pr_error("Fail to open file %s\n", in_file);
             return EXIT_FAILURE;
         }
     } else {
@@ -113,7 +113,7 @@ int main(int argc, char **argv) {
         // avec suppression du contenu au prealable :
         target = fopen(out_file, "w+");
         if (target == NULL) {
-            pr_error("Impossible d'ouvrir le fichier %s\n", out_file);
+            pr_error("Fail to open file %s\n", out_file);
             return EXIT_FAILURE;
         }
     } else {
index 1015199f85e39ae62f56344827b83f5db1f2ad7b..e92cc844387ada53516baf747bf2d42a0ba7e5dd 100644 (file)
@@ -7,4 +7,4 @@ void pr_error(const char *format, ...);
 void wpr_warning(const wchar_t *format, ...);
 void wpr_error(const wchar_t *format, ...);
 
-#endif
+#endif /* PRINT_HELPER_H_ */