Mercurial > public > hwos_code
comparison src/text_multilang.asm @ 613:8077ee960199
fix for italian and french language
author | heinrichsweikamp |
---|---|
date | Wed, 30 Jan 2019 16:27:56 +0100 |
parents | ca4556fb60b9 |
children | c40025d8e750 |
comparison
equal
deleted
inserted
replaced
612:6dd6b37da7c8 | 613:8077ee960199 |
---|---|
1 ;============================================================================= | 1 ;============================================================================= |
2 ; | 2 ; |
3 ; File text_multilang.asm V2.99c | 3 ; File text_multilang.asm V2.99-9 |
4 ; | 4 ; |
5 ; Implementation text in various selectable languages. | 5 ; Implementation text in various selectable languages. |
6 ; | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | 7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. |
8 ;============================================================================= | 8 ;============================================================================= |
23 tcode_idx set 0 | 23 tcode_idx set 0 |
24 LANG set 0 | 24 LANG set 0 |
25 #define TCODE TCODE_1 | 25 #define TCODE TCODE_1 |
26 | 26 |
27 IF _language_1==en | 27 IF _language_1==en |
28 MESSG "1st Laguage: English" | 28 MESSG "1st Language: English" |
29 #include "text_english.inc" | 29 #include "text_english.inc" |
30 ELSE | 30 ELSE |
31 IF _language_1==de | 31 IF _language_1==de |
32 MESSG "1st Laguage: German" | 32 MESSG "1st Language: German" |
33 #include "text_german.inc" | 33 #include "text_german.inc" |
34 ELSE | 34 ELSE |
35 IF _language_1==fr | 35 IF _language_1==fr |
36 MESSG "1st Laguage: French" | 36 MESSG "1st Language: French" |
37 #include "text_french.inc" | 37 #include "text_french.inc" |
38 ELSE | 38 ELSE |
39 IF _language_1==it | 39 IF _language_1==it |
40 MESSG "1st Laguage: Italian" | 40 MESSG "1st Language: Italian" |
41 #include "text_english.inc" | 41 #include "text_italian.inc" |
42 ELSE | 42 ELSE |
43 MESSG "1st Laguage: Default (English)" | 43 MESSG "1st Language: Default (English)" |
44 #include "text_english.inc" | 44 #include "text_english.inc" |
45 ENDIF | 45 ENDIF |
46 ENDIF | 46 ENDIF |
47 ENDIF | 47 ENDIF |
48 ENDIF | 48 ENDIF |
61 ELSE | 61 ELSE |
62 IF _language_1==fr | 62 IF _language_1==fr |
63 #include "text_french.inc" | 63 #include "text_french.inc" |
64 ELSE | 64 ELSE |
65 IF _language_1==it | 65 IF _language_1==it |
66 #include "text_english.inc" | 66 #include "text_italian.inc" |
67 ELSE | 67 ELSE |
68 #include "text_english.inc" | 68 #include "text_english.inc" |
69 ENDIF | 69 ENDIF |
70 ENDIF | 70 ENDIF |
71 ENDIF | 71 ENDIF |
83 tcode_idx set 0 | 83 tcode_idx set 0 |
84 LANG set 1 | 84 LANG set 1 |
85 #define TCODE TCODE_1 | 85 #define TCODE TCODE_1 |
86 | 86 |
87 IF _language_2==en | 87 IF _language_2==en |
88 MESSG "2nd Laguage: English" | 88 MESSG "2nd Language: English" |
89 #include "text_english.inc" | 89 #include "text_english.inc" |
90 ELSE | 90 ELSE |
91 IF _language_2==de | 91 IF _language_2==de |
92 MESSG "2nd Laguage: German" | 92 MESSG "2nd Language: German" |
93 #include "text_german.inc" | 93 #include "text_german.inc" |
94 ELSE | 94 ELSE |
95 IF _language_2==fr | 95 IF _language_2==fr |
96 MESSG "2nd Laguage: French" | 96 MESSG "2nd Language: French" |
97 #include "text_french.inc" | 97 #include "text_french.inc" |
98 ELSE | 98 ELSE |
99 IF _language_2==it | 99 IF _language_2==it |
100 MESSG "2nd Laguage: Italian" | 100 MESSG "2nd Language: Italian" |
101 #include "text_english.inc" | 101 #include "text_italian.inc" |
102 ELSE | 102 ELSE |
103 MESSG "2nd Laguage: Default (English)" | 103 MESSG "2nd Language: Default (English)" |
104 #include "text_english.inc" | 104 #include "text_english.inc" |
105 ENDIF | 105 ENDIF |
106 ENDIF | 106 ENDIF |
107 ENDIF | 107 ENDIF |
108 ENDIF | 108 ENDIF |
121 ELSE | 121 ELSE |
122 IF _language_2==fr | 122 IF _language_2==fr |
123 #include "text_french.inc" | 123 #include "text_french.inc" |
124 ELSE | 124 ELSE |
125 IF _language_2==it | 125 IF _language_2==it |
126 #include "text_english.inc" | 126 #include "text_italian.inc" |
127 ELSE | 127 ELSE |
128 #include "text_english.inc" | 128 #include "text_english.inc" |
129 ENDIF | 129 ENDIF |
130 ENDIF | 130 ENDIF |
131 ENDIF | 131 ENDIF |