Tools__Inspector2.st
changeset 18496 74702babe6bb
parent 18494 4cc60a44f50d
child 18622 00e53ab225bf
--- a/Tools__Inspector2.st	Sat Oct 27 19:16:19 2018 +0200
+++ b/Tools__Inspector2.st	Sat Oct 27 19:17:30 2018 +0200
@@ -1311,7 +1311,8 @@
 menuSetMaxValueDisplayStringLength
     |s n|
 
-    s := Dialog request:'Set the max. length of displayed value strings (0 for unlimited):'
+    s := Dialog 
+            request:(resources string:'Set the max. length of displayed value strings (0 for unlimited):')
             initialAnswer:(InspectorView defaultMaxValueDisplayStringLength) printString.
     s notEmptyOrNil ifTrue:[
         n := Integer readFrom:s onError:[
@@ -1321,6 +1322,8 @@
         InspectorView defaultMaxValueDisplayStringLength:n.
         InspectorView allInstancesDo:[:i | i maxValueDisplayStringLength:nil].
     ].
+
+    "Modified: / 27-10-2018 / 19:16:00 / Claus Gittinger"
 !
 
 openDocumentation