diff options
author | Peng Wu <alexepico@gmail.com> | 2012-12-17 16:03:31 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2012-12-17 16:03:31 +0800 |
commit | e1f9e271092e07381afc2abe3f767f10435765e2 (patch) | |
tree | e2ae660990872f2e321b3803cd4ab44842ce5b30 /src | |
parent | 382c9a706be19c3b4466afba8b964d50ece5c254 (diff) | |
download | ibus-libpinyin-e1f9e271092e07381afc2abe3f767f10435765e2.tar.gz ibus-libpinyin-e1f9e271092e07381afc2abe3f767f10435765e2.tar.bz2 ibus-libpinyin-e1f9e271092e07381afc2abe3f767f10435765e2.zip |
fixes letter labels
Diffstat (limited to 'src')
-rw-r--r-- | src/PYPinyinProperties.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/PYPinyinProperties.cc b/src/PYPinyinProperties.cc index a8e1da7..0a77163 100644 --- a/src/PYPinyinProperties.cc +++ b/src/PYPinyinProperties.cc @@ -47,14 +47,14 @@ PinyinProperties::PinyinProperties (Config & config) m_prop_full ("mode.full", PROP_TYPE_NORMAL, StaticText (m_mode_full ? - _("Full Width Letters") : - _("Half Width Letters")), + _("Full Width Letter") : + _("Half Width Letter")), m_mode_full ? PKGDATADIR"/icons/full.svg" : PKGDATADIR"/icons/half.svg", StaticText (m_mode_full ? - _("Switch to Half Width Letters Mode"): - _("Switch to Full Width Letters Mode"))), + _("Switch to Half Width Letter Mode"): + _("Switch to Full Width Letter Mode"))), m_prop_full_punct ("mode.full_punct", PROP_TYPE_NORMAL, StaticText (m_mode_full_punct ? @@ -115,14 +115,14 @@ PinyinProperties::toggleModeFull (void) { m_mode_full = !m_mode_full; m_prop_full.setLabel (m_mode_full ? - _("Full Width Letters") : - _("Half Width Letters")); + _("Full Width Letter") : + _("Half Width Letter")); m_prop_full.setIcon (m_mode_full ? PKGDATADIR"/icons/full.svg" : PKGDATADIR"/icons/half.svg"); m_prop_full.setTooltip (m_mode_full ? - _("Switch to Half Width Letters Mode"): - _("Switch to Full Width Letters Mode")); + _("Switch to Half Width Letter Mode"): + _("Switch to Full Width Letter Mode")); updateProperty (m_prop_full); } |