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

From Fcitx
Jump to navigation Jump to search
(Created page with "<nowiki>├── CMakeLists.txt ├── LICENSES │ └── BSD-3-Clause.txt # License for this project ├── po # Optional I18n...")
 
(No difference)

Latest revision as of 03:26, 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>├── CMakeLists.txt
├── LICENSES
│   └── BSD-3-Clause.txt        # License for this project
├── po                          # Optional I18n
│   ├── CMakeLists.txt
│   ├── fcitx5-quwei.pot
│   ├── LINGUAS
│   └── zh_CN.po
└── src
   ├── CMakeLists.txt
   ├── quwei-addon.conf.in.in  # Addon registration file
   ├── quwei.conf.in          # Input method registration file
   ├── quwei.cpp              # Engine implementation
   └── quwei.h                # Engine implementation
</nowiki>
Translation<nowiki>├── CMakeLists.txt
├── LICENSES
│  └── BSD-3-Clause.txt        # License for this project
├── po                          # Optional I18n
│  ├── CMakeLists.txt
│  ├── fcitx5-quwei.pot
│  ├── LINGUAS
│  └── zh_CN.po
└── src
   ├── CMakeLists.txt
   ├── quwei-addon.conf.in.in  # Addon registration file
   ├── quwei.conf.in          # Input method registration file
   ├── quwei.cpp              # Engine implementation
   └── quwei.h                # Engine implementation
</nowiki>

├── CMakeLists.txt ├── LICENSES │ └── BSD-3-Clause.txt # License for this project ├── po # Optional I18n │ ├── CMakeLists.txt │ ├── fcitx5-quwei.pot │ ├── LINGUAS │ └── zh_CN.po └── src ├── CMakeLists.txt ├── quwei-addon.conf.in.in # Addon registration file ├── quwei.conf.in # Input method registration file ├── quwei.cpp # Engine implementation └── quwei.h # Engine implementation