SmallSense__SettingsAppl.st
branchcvs_MAIN
changeset 410 cad61db5b686
parent 320 5242593726f0
child 414 16c4716f03a7
--- a/SmallSense__SettingsAppl.st	Sun Mar 01 22:36:38 2015 +0100
+++ b/SmallSense__SettingsAppl.st	Sun Mar 01 22:54:06 2015 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
 Copyright (C) 2013-2014 Jan Vrany
@@ -180,20 +182,22 @@
                    extent: (Point 536 22)
                  )
                 (CheckBoxSpec
-                   label: 'Enable Code Completion (using SmallSense Completion Engine)'
+                   label: 'Code Completion using SmallSense Completion Engine'
                    name: 'CheckBox4'
                    enableChannel: smallSenseEnabled
                    model: smallSenseCompletionEnabled
                    extent: (Point 536 22)
                    activeHelpKey: smallSenseCompletionEnabled
+                   translateLabel: true
                  )
                 (CheckBoxSpec
-                   label: 'Auto-complete when Completion is Unambiguous'
+                   label: 'Auto-Complete when Unambiguous'
                    name: 'CheckBox5'
                    enableChannel: smallSenseEnabledAndCompletionEnabled
                    model: smallSenseCompleteIfUnambiguous
                    extent: (Point 536 22)
                    activeHelpKey: smallSenseCompleteIfUnambiguous
+                   translateLabel: true
                  )
                 )
 
@@ -321,7 +325,11 @@
      in the doc/online/<language>/help directory.
      Or nil, if no help is available."
 
-    ^ self shouldImplement
+    ^ (self class packageDirectory) / 'resources/doc/%(lang)/SmallSenseSettings.html'
+
+    "
+     self classResources
+    "
 ! !
 
 !SettingsAppl methodsFor:'queries'!
@@ -337,13 +345,21 @@
 
 !SettingsAppl class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/smallsense/SmallSense__SettingsAppl.st,v 1.2 2015-03-01 21:54:06 cg Exp $'
+!
+
+version_CVS
+    ^ '$Path: stx/goodies/smallsense/SmallSense__SettingsAppl.st, Version: 1.0, User: cg, Time: 2015-03-01T22:54:31.545+01$'
+!
+
 version_HG
 
     ^ '$Changeset: <not expanded> $'
 !
 
 version_SVN
-    ^ '$Id$'
+    ^ '$Id: SmallSense__SettingsAppl.st,v 1.2 2015-03-01 21:54:06 cg Exp $'
 ! !