Smalltalk.st
changeset 23408 559e80ba680d
parent 23177 1f49ca31ecc8
child 23414 c10ead3a5a86
--- a/Smalltalk.st	Sun Oct 07 21:49:45 2018 +0200
+++ b/Smalltalk.st	Tue Oct 09 12:18:26 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -6032,24 +6034,37 @@
     "scan all packages and install all classes found there as
      autoloaded. This takes some time ..."
 
-    |dirsConsulted|
-
-    dirsConsulted := Set new.
-
-    self
-	recursiveInstallAutoloadedClassesFrom:aTopDirectory
-	rememberIn:dirsConsulted
-	maxLevels:15
-	noAutoload:false
-	packageTop:nil
-	showSplashInLevels:-1.
-
+    self recursiveInstallAutoloadedClassesFrom:aTopDirectory maxLevels:15
 
     "
      Smalltalk recursiveInstallAutoloadedClassesFrom:'..\..\..\cg\private\euler'
     "
 
     "Created: / 31-07-2012 / 15:27:40 / cg"
+    "Modified: / 09-10-2018 / 11:10:25 / Claus Gittinger"
+!
+
+recursiveInstallAutoloadedClassesFrom:aTopDirectory maxLevels:maxLevels
+    "scan all packages and install all classes found there as
+     autoloaded. This takes some time ..."
+
+    |dirsConsulted|
+
+    dirsConsulted := Set new.
+
+    self
+        recursiveInstallAutoloadedClassesFrom:aTopDirectory
+        rememberIn:dirsConsulted
+        maxLevels:maxLevels
+        noAutoload:false
+        packageTop:nil
+        showSplashInLevels:-1.
+
+    "
+     Smalltalk recursiveInstallAutoloadedClassesFrom:'..\..\..\cg\private\euler'
+    "
+
+    "Created: / 09-10-2018 / 11:10:06 / Claus Gittinger"
 !
 
 recursiveInstallAutoloadedClassesFrom:aDirectory rememberIn:dirsConsulted maxLevels:maxLevels noAutoload:noAutoloadIn packageTop:packageTopPath
@@ -8799,13 +8814,13 @@
     (lang == #de) ifTrue:[
         proto := 'Willkommen bei %1 (%4Version %2 von %3)'. bit := 'Bit'.
     ] ifFalse:[ (lang == #fr) ifTrue:[
-        proto := 'Salut, Bienvenue à %1 (%4version %2 de %3)'
+        proto := 'Salut, Bienvenue à %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #it) ifTrue:[
         proto := 'Ciao, benvenuto al %1 (%4versione %2 di %3)'
     ] ifFalse:[ (lang == #es) ifTrue:[
         proto := 'Hola, bienvenida a %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #pt) ifTrue:[
-        proto := 'Olá!!, mem-vindo a %1 (%4version %2 de %3)'
+        proto := 'Olá!!, mem-vindo a %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #no) ifTrue:[
         proto := 'Hei, verdenmottakelse til %1 (%4versjon %2 av %3)'
     ]]]]]].