在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):SEL-Columbia/formhub开源软件地址(OpenSource Url):https://github.com/SEL-Columbia/formhub开源编程语言(OpenSource Language):JavaScript 39.4%开源软件介绍(OpenSource Introduction):FormhubGetting Started
ContributingIf you would like to contribute code please read Contributing Code to Formhub. Code StructureFormhub is written in Python, using the Django Web Framework. In Django terms, an "app" is a bundle of Django code, including models and views, that lives together in a single Python package and represents a full Django application. Formhub consists of three Django apps:
Internationalization and LocalizationFormhub can be presented in specific languages and formats, customized for specific audiences. These examples were derived from Django's Internationalization and Localization Documentation and there is also a good explanation in The Django Book's Chapter on Internationalization. To generate a locale from scratch, e.g. Spanish: $ django-admin.py makemessages -l es -e py,html,email,txt ;
$ for app in {main,odk_viewer} ; do cd ${app} && django-admin.py makemessages -d djangojs -l es && cd - ; done To update PO files $ django-admin.py makemessages -a ;
$ for app in {main,odk_viewer} ; do cd ${app} && django-admin.py makemessages -d djangojs -a && cd - ; done To compile MO files and update live translations $ django-admin.py compilemessages ;
$ for app in {main,odk_viewer} ; do cd ${app} && django-admin.py compilemessages && cd - ; done |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论