#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Wed, 11 Mar 2020 10:09:01 +0100
changeset 25334 8f44c9352333
parent 25333 b501078702f8
child 25335 de6ea4d4a5d0
#BUGFIX by stefan class: Smalltalk class changed: #hello Fix welcome messages for kanguages != #en
Smalltalk.st
--- a/Smalltalk.st	Mon Mar 09 17:35:47 2020 +0100
+++ b/Smalltalk.st	Wed Mar 11 10:09:01 2020 +0100
@@ -9000,23 +9000,22 @@
      but I don't use it here, to allow mini-systems without
      Resource-stuff."
 
-    |proto lang bit bitsPerWordString|
+    |proto lang bitsPerWordString|
 
     lang := Language.
-    bit := 'bit'.
 
     (lang == #de) ifTrue:[
-        proto := 'Willkommen bei %1 (%4Version %2 von %3)'. bit := 'Bit'.
+        proto := 'Willkommen bei %1 (%3Bit Version %2 von %4)'. 
     ] ifFalse:[ (lang == #fr) ifTrue:[
-        proto := 'Salut, Bienvenue à %1 (%4version %2 de %3)'
+        proto := 'Salut, Bienvenue à%1 (%3Bit version %2 de %4)'
     ] ifFalse:[ (lang == #it) ifTrue:[
-        proto := 'Ciao, benvenuto al %1 (%4versione %2 di %3)'
+        proto := 'Ciao, benvenuto al %1 (%3Bit versione %2 di %4)'
     ] ifFalse:[ (lang == #es) ifTrue:[
-        proto := 'Hola, bienvenida a %1 (%4version %2 de %3)'
+        proto := 'Hola, bienvenida a %1 (%3Bit version %2 de %4)'
     ] ifFalse:[ (lang == #pt) ifTrue:[
-        proto := 'Olá!!, mem-vindo a %1 (%4version %2 de %3)'
+        proto := 'Olá!!, mem-vindo a %1 (%3Bit version %2 de %4)'
     ] ifFalse:[ (lang == #no) ifTrue:[
-        proto := 'Hei, verdenmottakelse til %1 (%4versjon %2 av %3)'
+        proto := 'Hei, verdenmottakelse til %1 (%3Bit versjon %2 av %4)'
     ]]]]]].
 
     "/ ... more needed here ...
@@ -9045,7 +9044,8 @@
      Stdout showCR:(Smalltalk hello)
     "
 
-    "Modified: 18.5.1996 / 14:25:13 / cg"
+    "Modified: / 18-05-1996 / 14:25:13 / cg"
+    "Modified: / 11-03-2020 / 10:07:21 / Stefan Vogel"
 !
 
 imageRestartTime