-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLanguage.h
79 lines (55 loc) · 1.83 KB
/
Language.h
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
// Language
// © 2020 Patrick Lafarguette
#ifndef LANGUAGUE_H_
#define LANGUAGUE_H_
#if ENGLISH
#define TIME_ELAPSED "Time elapsed "
#define TFT_INITIALIZED "TFT initialized 0x"
#define INSERT_SD_CARD "Insert an SD card"
#define MENU_LOGIC "Logic"
#define MENU_MEMORY "Memory"
#define MAIN_MENU "Main menu"
#define IDENTIFY_LOGIC "Identify logic"
#define LOGIC_TEST "Logic test"
#define LOAD_MEMORY "Load memory"
#define LOAD_LOGIC "Load logic"
#define MEMORY_FOUND "Memory found"
#define LOGIC_FOUND "Logic found"
#define MEMORY_TEST "Memory test"
#define FRAM_OPTION "FRAM option"
#define ROM_OPTION "ROM option"
#define WRITE_FILE "Write file"
#define CYCLES " cycles, "
#define PASSED "% passed"
#define UNRELIABLE "Unreliable"
#define GOOD "Good!!!"
#define BAD "Bad!!!"
#define NO_MATCH_FOUND "No match found"
#define MATCH_FOUND "Match found"
#define LOGIC_LOW "L"
#define LOGIC_HIGH "H"
#define LOGIC_SPACE " "
#elif FRENCH
#define TIME_ELAPSED "Temps écoulé "
#define TFT_INITIALIZED "TFT initialisé 0x"
#define INSERT_SD_CARD "Insérez une carte SD"
#define IDENTIFY_LOGIC "identifier un circuit logique"
#define TEST_LOGIC "tester un circuit logique"
#define TEST_RAM "tester un composant mémoire"
#define DIP14_PACKAGE "Boîtier DIP 14"
#define DIP16_PACKAGE "Boîtier DIP 16"
#define IDENTIFY_LOGIC__ "Identification de circuit logique"
#define TEST_LOGIC_ "Test de circuit logique"
#define TEST_RAM_ "Test de composant mémoire"
#define CYCLES " cycles, "
#define PASSED "% corrects"
#define UNRELIABLE "Non fiable"
#define GOOD "Bon"
#define BAD "Défectueux"
#define NO_MATCH_FOUND "Aucune correspondance"
#define MATCH_FOUND "Correspondance trouvée"
#define LOGIC_LOW "L"
#define LOGIC_HIGH "H"
#define SPACE " "
#endif
#endif /* LANGUAGUE_H_ */