diff 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
line wrap: on
line diff
--- a/src/text_multilang.asm	Wed Jan 09 21:53:02 2019 +0100
+++ b/src/text_multilang.asm	Wed Jan 30 16:27:56 2019 +0100
@@ -1,6 +1,6 @@
 ;=============================================================================
 ;
-;   File text_multilang.asm												V2.99c
+;   File text_multilang.asm											V2.99-9
 ;
 ;   Implementation text in various selectable languages.
 ;
@@ -25,22 +25,22 @@
 #define		TCODE	TCODE_1
 
  IF _language_1==en
- MESSG		"1st Laguage: English"
+ MESSG		"1st Language: English"
 #include	"text_english.inc"
  ELSE
  IF _language_1==de
- MESSG		"1st Laguage: German"
+ MESSG		"1st Language: German"
 #include	"text_german.inc"
  ELSE
  IF _language_1==fr
- MESSG		"1st Laguage: French"
+ MESSG		"1st Language: French"
 #include	"text_french.inc"
  ELSE
  IF _language_1==it
- MESSG		"1st Laguage: Italian"
-#include	"text_english.inc"
+ MESSG		"1st Language: Italian"
+#include	"text_italian.inc"
  ELSE
- MESSG		"1st Laguage: Default (English)"
+ MESSG		"1st Language: Default (English)"
 #include	"text_english.inc"
  ENDIF
  ENDIF
@@ -63,7 +63,7 @@
 #include	"text_french.inc"
  ELSE
  IF _language_1==it
-#include	"text_english.inc"
+#include	"text_italian.inc"
  ELSE
 #include	"text_english.inc"
  ENDIF
@@ -85,22 +85,22 @@
 #define		TCODE	TCODE_1
 
  IF _language_2==en
- MESSG		"2nd Laguage: English"
+ MESSG		"2nd Language: English"
 #include	"text_english.inc"
  ELSE
  IF _language_2==de
- MESSG		"2nd Laguage: German"
+ MESSG		"2nd Language: German"
 #include	"text_german.inc"
  ELSE
  IF _language_2==fr
- MESSG		"2nd Laguage: French"
+ MESSG		"2nd Language: French"
 #include	"text_french.inc"
  ELSE
  IF _language_2==it
- MESSG		"2nd Laguage: Italian"
-#include	"text_english.inc"
+ MESSG		"2nd Language: Italian"
+#include	"text_italian.inc"
  ELSE
- MESSG		"2nd Laguage: Default (English)"
+ MESSG		"2nd Language: Default (English)"
 #include	"text_english.inc"
  ENDIF
  ENDIF
@@ -123,7 +123,7 @@
 #include	"text_french.inc"
  ELSE
  IF _language_2==it
-#include	"text_english.inc"
+#include	"text_italian.inc"
  ELSE
 #include	"text_english.inc"
  ENDIF