Difference between revisions of "Translations:Develop an simple input method/83/zh-cn"

From Fcitx
Jump to navigation Jump to search
(Created page with "<nowiki>FCITX_CONFIGURATION( ClipboardConfig, KeyListOption triggerKey{this, "TriggerKey",...")
 
(No difference)

Latest revision as of 03:45, 19 April 2023

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Develop an simple input method)
<nowiki>FCITX_CONFIGURATION(
   ClipboardConfig, KeyListOption triggerKey{this,
                                             "TriggerKey",
                                             _("Trigger Key"),
                                             {Key("Control+semicolon")},
                                             KeyListConstrain()};
   KeyListOption pastePrimaryKey{
       this, "PastePrimaryKey", _("Paste Primary"), {}, KeyListConstrain()};
   Option<int, IntConstrain> numOfEntries{this, "Number of entries",
                                           _("Number of entries"), 5,
                                           IntConstrain(3, 30)};);</nowiki>
Translation<nowiki>FCITX_CONFIGURATION(
   ClipboardConfig, KeyListOption triggerKey{this,
                                             "TriggerKey",
                                             _("Trigger Key"),
                                             {Key("Control+semicolon")},
                                             KeyListConstrain()};
   KeyListOption pastePrimaryKey{
       this, "PastePrimaryKey", _("Paste Primary"), {}, KeyListConstrain()};
   Option<int, IntConstrain> numOfEntries{this, "Number of entries",
                                           _("Number of entries"), 5,
                                           IntConstrain(3, 30)};);</nowiki>

FCITX_CONFIGURATION( ClipboardConfig, KeyListOption triggerKey{this, "TriggerKey", _("Trigger Key"), {Key("Control+semicolon")}, KeyListConstrain()}; KeyListOption pastePrimaryKey{ this, "PastePrimaryKey", _("Paste Primary"), {}, KeyListConstrain()}; Option<int, IntConstrain> numOfEntries{this, "Number of entries", _("Number of entries"), 5, IntConstrain(3, 30)};);