summaryrefslogtreecommitdiffstats
path: root/engine
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2008-06-27 15:09:09 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2008-06-27 15:09:09 +0800
commitdaecff5078ffdda3f89aacf79d228cc498cdefb8 (patch)
tree5411b4f5c90be312d64a347109696574f5de16ac /engine
parentdad14cfdd17e838decc31bf16d03a2e68ca66552 (diff)
downloadibus-daecff5078ffdda3f89aacf79d228cc498cdefb8.tar.gz
ibus-daecff5078ffdda3f89aacf79d228cc498cdefb8.tar.xz
ibus-daecff5078ffdda3f89aacf79d228cc498cdefb8.zip
Add WideLatin Input Mode.
Diffstat (limited to 'engine')
-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)