handle abbreviated LANG settings (such as 'de', 'fr' and 'en')
authorClaus Gittinger <cg@exept.de>
Wed, 22 Nov 1995 17:44:26 +0100
changeset 121 ec8cb1bdfc9b
parent 120 719d6c8c3b39
child 122 fe90d99734b7
handle abbreviated LANG settings (such as 'de', 'fr' and 'en')
resources/ApplicationModel.rs
--- a/resources/ApplicationModel.rs	Wed Nov 22 16:14:27 1995 +0100
+++ b/resources/ApplicationModel.rs	Wed Nov 22 17:44:26 1995 +0100
@@ -6,12 +6,12 @@
 ; for convenience and to avoid having them dublicated
 ; in every subclass.
 ;
-; $Header: /cvs/stx/stx/libview2/resources/Attic/ApplicationModel.rs,v 1.3 1995-10-23 17:00:19 cg Exp $
+; $Header: /cvs/stx/stx/libview2/resources/Attic/ApplicationModel.rs,v 1.4 1995-11-22 16:44:26 cg Exp $
 ;
 ; this file may contain 8bit national characters;
 ; DONT EDIT this file with an old vi !
 
-#if (Language == #german)
+#if (Language == #german) or:[Language == #de]
 
 yes                     'ja'
 no                      'nein'
@@ -22,7 +22,7 @@
 
 #endif
 
-#if (Language == #french)
+#if (Language == #french) or:[Language == #fr]
 
 yes                     'oui'
 no                      'non'
@@ -33,19 +33,19 @@
 
 #endif
 
-#if (Language == #spanish)
+#if (Language == #spanish) or:[Language == #es]
 abort                   'cancelar'
 cancel                  'cancelar'
 #endif
 
-#if (Language == #italian)
+#if (Language == #italian) or:[Language == #it]
 yes                     'si'
 no                      'non'
 abort                   'annulla'
 cancel                  'annulla'
 #endif
 
-#if (Language == #swedish)
+#if (Language == #swedish) 
 abort                   'avbryt'
 cancel                  'avbryt'
 #endif