Author: ek.kato
Date: Thu Mar 26 20:54:02 2009
New Revision: 5943

Modified:
   trunk/scm/anthy-custom.scm
   trunk/scm/anthy-key-custom.scm
   trunk/scm/anthy-utf8-custom.scm
   trunk/scm/social-ime-key-custom.scm
   trunk/scm/yahoo-jp-key-custom.scm

Log:
* anthy-custom.scm
* anthy-utf8-custom.scm
  - (anthy-prediction)
  - (anthy-use-prediction?)
  - (anthy-select-prediction-by-numeral-key?)
  - (anthy-use-implicit-commit-prediction?)
  - (anthy-prediction-start-char-count)
* anthy-key-custom.scm
  - (anthy-ntext-prediction-key)
  - (anthy-prev-prediction-key)
* anthy-utf8-custom.scm
  - (anthy-prediction)
  - (anthy-use-prediction?)
* yahoo-jp-key-custom.scm
  - (yahoo-jp-next-prediction-key)
  - (yahoo-jp-prev-prediction-key)
* social-ime-key-custom.scm
  - (social-ime-next-prediction-key)
  - (social-ime-prev-prediction-key)
    - Use IM's own prediction groups ([uim-ja 137]).


Modified: trunk/scm/anthy-custom.scm
==============================================================================
--- trunk/scm/anthy-custom.scm  (original)
+++ trunk/scm/anthy-custom.scm  Thu Mar 26 20:54:02 2009
@@ -43,7 +43,7 @@
                     (N_ "Anthy (advanced)")
                     (N_ "Advanced settings for Anthy"))

-(define-custom-group 'prediction
+(define-custom-group 'anthy-prediction
                     (N_ "Prediction")
                     (N_ "long description will be here."))

@@ -296,25 +296,25 @@
                   (anthy-configure-widgets)))

 (define-custom 'anthy-use-prediction? #f
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Enable input prediction")
   (N_ "long description will be here."))

 (define-custom 'anthy-select-prediction-by-numeral-key? #f
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Select prediction candidate by numeral keys")
   (N_ "long description will be here."))

 (define-custom 'anthy-use-implicit-commit-prediction? #t
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Show selected prediction candidate in preedit area")
   (N_ "long description will be here."))

 (define-custom 'anthy-prediction-start-char-count 1
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(integer 1 65535)
   (N_ "Character count to start input prediction")
   (N_ "long description will be here."))

Modified: trunk/scm/anthy-key-custom.scm
==============================================================================
--- trunk/scm/anthy-key-custom.scm      (original)
+++ trunk/scm/anthy-key-custom.scm      Thu Mar 26 20:54:02 2009
@@ -271,13 +271,13 @@
               (N_ "long description will be here"))

(define-custom 'anthy-next-prediction-key '("tab" "down" "<IgnoreCase><Control>n" "<IgnoreCase><Control>i")
-               '(anthy-keys4 prediction)
+               '(anthy-keys4 anthy-prediction)
               '(key)
               (N_ "[Anthy] Next prediction candidate")
               (N_ "long description will be here"))

 (define-custom 'anthy-prev-prediction-key '(generic-prev-candidate-key)
-               '(anthy-keys4 prediction)
+               '(anthy-keys4 anthy-prediction)
               '(key)
               (N_ "[Anthy] Previous prediction candidate")
               (N_ "long description will be here"))

Modified: trunk/scm/anthy-utf8-custom.scm
==============================================================================
--- trunk/scm/anthy-utf8-custom.scm     (original)
+++ trunk/scm/anthy-utf8-custom.scm     Thu Mar 26 20:54:02 2009
@@ -50,7 +50,7 @@
                     (N_ "Anthy (advanced)")
                     (N_ "Advanced settings for Anthy"))

-(define-custom-group 'prediction
+(define-custom-group 'anthy-prediction
                     (N_ "Prediction")
                     (N_ "long description will be here."))

@@ -303,25 +303,25 @@
                   (anthy-utf8-configure-widgets)))

 (define-custom 'anthy-use-prediction? #f
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Enable input prediction")
   (N_ "long description will be here."))

 (define-custom 'anthy-select-prediction-by-numeral-key? #f
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Select prediction candidate by numeral keys")
   (N_ "long description will be here."))

 (define-custom 'anthy-use-implicit-commit-prediction? #t
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(boolean)
   (N_ "Show selected prediction candidate in preedit area")
   (N_ "long description will be here."))

 (define-custom 'anthy-prediction-start-char-count 1
-  '(anthy-advanced prediction)
+  '(anthy-advanced anthy-prediction)
   '(integer 1 65535)
   (N_ "Character count to start input prediction")
   (N_ "long description will be here."))

Modified: trunk/scm/social-ime-key-custom.scm
==============================================================================
--- trunk/scm/social-ime-key-custom.scm (original)
+++ trunk/scm/social-ime-key-custom.scm Thu Mar 26 20:54:02 2009
@@ -269,13 +269,13 @@
               (N_ "long description will be here"))

(define-custom 'social-ime-next-prediction-key '("tab" "down" "<IgnoreCase><Control>n" "<IgnoreCase><Control>i")
-               '(social-ime-keys4 prediction)
+               '(social-ime-keys4 social-ime-prediction)
                '(key)
                (N_ "[Social-IME] Next prediction candidate")
                (N_ "long description will be here"))

(define-custom 'social-ime-prev-prediction-key '(generic-prev-candidate-key)
-               '(social-ime-keys4 prediction)
+               '(social-ime-keys4 social-ime-prediction)
                '(key)
                (N_ "[Social-IME] Previous prediction candidate")
                (N_ "long description will be here"))

Modified: trunk/scm/yahoo-jp-key-custom.scm
==============================================================================
--- trunk/scm/yahoo-jp-key-custom.scm   (original)
+++ trunk/scm/yahoo-jp-key-custom.scm   Thu Mar 26 20:54:02 2009
@@ -269,13 +269,13 @@
               (N_ "long description will be here"))

(define-custom 'yahoo-jp-next-prediction-key '("tab" "down" "<IgnoreCase><Control>n" "<IgnoreCase><Control>i")
-               '(yahoo-jp-keys4 prediction)
+               '(yahoo-jp-keys4 yahoo-jp-prediction)
                '(key)
                (N_ "[Yahoo-Jp] Next prediction candidate")
                (N_ "long description will be here"))

 (define-custom 'yahoo-jp-prev-prediction-key '(generic-prev-candidate-key)
-               '(yahoo-jp-keys4 prediction)
+               '(yahoo-jp-keys4 yahoo-jp-prediction)
                '(key)
                (N_ "[Yahoo-Jp] Previous prediction candidate")
-               (N_ "long description will be here"))
\ No newline at end of file
+               (N_ "long description will be here"))

Reply via email to