summaryrefslogtreecommitdiffstats
path: root/engine/anthy/engine.py
diff options
context:
space:
mode:
Diffstat (limited to 'engine/anthy/engine.py')
-rw-r--r--engine/anthy/engine.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/anthy/engine.py b/engine/anthy/engine.py
index 7e73809..8bbb60c 100644
--- a/engine/anthy/engine.py
+++ b/engine/anthy/engine.py
@@ -54,22 +54,22 @@ class Engine (interface.IEngine):
label = "あ",
tooltip = "Switch input mode")
mode_props = ibus.PropList ()
- mode_props.append (ibus.Property (name = "InputModeHiragana",
+ mode_props.append (ibus.Property (name = "InputMode.Hiragana",
type = ibus.PROP_TYPE_RADIO,
label = "Hiragana",
state = ibus.PROP_STATE_CHECKED))
- mode_props.append (ibus.Property (name = "InputModeKatagana",
+ mode_props.append (ibus.Property (name = "InputMode.Katagana",
type = ibus.PROP_TYPE_RADIO,
label = "Katagana"))
- mode_props.append (ibus.Property (name = "InputModeHalfWidthHiragana",
- type = ibus.PROP_TYPE_RADIO,
- label = "Half width hiragana"))
- mode_props.append (ibus.Property (name = "InputModeHalfWidthKatagana",
+ mode_props.append (ibus.Property (name = "InputMode.HalfWidthKatagana",
type = ibus.PROP_TYPE_RADIO,
label = "Half width katagana"))
- mode_props.append (ibus.Property (name = "InputModeLatin",
+ mode_props.append (ibus.Property (name = "InputMode.Latin",
+ type = ibus.PROP_TYPE_RADIO,
+ label = "Latin"))
+ mode_props.append (ibus.Property (name = "InputMode.WideLatin",
type = ibus.PROP_TYPE_RADIO,
- label = "Direct input"))
+ label = "Wide Latin"))
mode_prop.set_sub_props (mode_props)
props.append (mode_prop)