@zeppos/zeus-cli 1.1.8 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/{cli.js → main.js} +11 -7
- package/bin/post-command.js +3 -5
- package/index.js +0 -3
- package/modules/bridge.js +18 -21
- package/modules/build.js +86 -215
- package/modules/create.js +244 -0
- package/modules/help.js +16 -16
- package/modules/run.js +23 -83
- package/package.json +41 -51
- package/{api → private-modules/zeppos-app-utils/dist/api}/index.js +64 -98
- package/private-modules/zeppos-app-utils/dist/config/device.js +247 -0
- package/private-modules/zeppos-app-utils/dist/config/index.js +18 -0
- package/private-modules/zeppos-app-utils/dist/config/project.js +104 -0
- package/{utils → private-modules/zeppos-app-utils/dist}/hm-analytics.js +6 -6
- package/private-modules/zeppos-app-utils/dist/index.js +38 -0
- package/private-modules/zeppos-app-utils/dist/logger/index.js +54 -0
- package/private-modules/zeppos-app-utils/dist/logger/my-logger.js +69 -0
- package/private-modules/zeppos-app-utils/dist/modules/build.js +334 -0
- package/{modules → private-modules/zeppos-app-utils/dist/modules}/config.js +31 -57
- package/private-modules/zeppos-app-utils/dist/modules/create/index.js +254 -0
- package/{modules → private-modules/zeppos-app-utils/dist/modules}/create/local-app.js +10 -10
- package/{modules → private-modules/zeppos-app-utils/dist/modules}/create/yeoman-app.js +2 -2
- package/private-modules/zeppos-app-utils/dist/modules/index.js +21 -0
- package/{modules → private-modules/zeppos-app-utils/dist/modules}/login.js +17 -45
- package/{modules → private-modules/zeppos-app-utils/dist/modules}/status.js +32 -42
- package/{public → private-modules/zeppos-app-utils/dist/public}/scripts/png2vglite.py +0 -0
- package/{public → private-modules/zeppos-app-utils/dist/public}/scripts/requirements.txt +0 -0
- package/{public/template/package.json → private-modules/zeppos-app-utils/dist/public/template/v1/_package.json} +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/app-side/i18n/en-US.po +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/app-side/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/app.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/app.json +1 -1
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/assets/default/icon.png +0 -0
- package/{public/template/empty/pages → private-modules/zeppos-app-utils/dist/public/template/v1/empty/page}/i18n/en-US.po +0 -0
- package/{public/template/empty/pages → private-modules/zeppos-app-utils/dist/public/template/v1/empty/page}/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/setting/i18n/en-US.po +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/setting/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/empty/watchface/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/app-side/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/app.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/app.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gtr3/icon.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gtr3/image/logo.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gtr3-pro/icon.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gtr3-pro/image/logo.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gts3/icon.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/assets/gts3/image/logo.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3/home/index.page.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3/home/index.page.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3/home/index.style.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3-pro/home/index.page.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3-pro/home/index.page.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gtr3-pro/home/index.style.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gts3/home/index.page.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gts3/home/index.page.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/gts3/home/index.style.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/page/i18n/en-US.po +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/setting/i18n/en-US.po +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/setting/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/hello-world/utils/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/jsconfig.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/app.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/app.json +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bg/bg.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/0.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/1.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/2.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/3.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/4.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/5.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/6.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/7.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/8.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/9.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/bigNum/sp.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/btn/back.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/btn/lv.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/btn/red.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/bg.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/bottom.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/center.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/h.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/left.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/m.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/right.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/point/s.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/preview.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/second/second.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/0.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/1.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/2.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/3.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/4.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/5.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/6.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/7.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/8.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/9.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/d.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/smallNum/n.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/1.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/2.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/3.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/4.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/5.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/6.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_ch/7.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/1.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/2.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/3.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/4.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/5.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/6.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/assets/gtr-3-pro/images/week_en/7.png +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/buffer.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/device-polyfill.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/global.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/js-module.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/logger.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/shared/setTimeout.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/watchface/gtr-3-pro/index.js +0 -0
- package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/watchface/round/index.js +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/_package.json +14 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/app.js +28 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/app.json +56 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/consume.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/beer.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/cake.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/chocolate.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/coffee.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/cookies.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/ham.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/hamburger.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/ice cream.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/pizza.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/sausage.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/multiply.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/selected.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/unselected.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/page/gts/food-list.js +113 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/page/gts/index.js +126 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/page/i18n/en-US.po +42 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/page/i18n/zh-CN.po +42 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/utils/constants.js +54 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/utils/storage.js +42 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/utils/styles-gts-3.js +141 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/utils/styles.js +142 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/app-side/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/app-side/index.js +13 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/app.js +10 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/app.json +60 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/assets/default/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/page/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/page/index.js +7 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/setting/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/setting/index.js +7 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/empty/watchface/index.js +13 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/app-side/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/app-side/index.js +57 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/app.js +23 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/app.json +65 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/assets/common/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/pages/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/pages/index.js +55 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/data.js +67 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/defer.js +35 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/device-polyfill.js +6 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/es6-promise.js +1149 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/event.js +42 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/message-side.js +1145 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/shared/message.js +1151 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/utils/config/constants.js +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/fetch-api/utils/config/device.js +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/app-side/index.js +11 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/app.js +10 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/app.json +101 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/assets/gtr/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/assets/gtr/image/logo.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/assets/gts/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/assets/gts/image/logo.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gtr/home/index.page.js +20 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gtr/home/index.page.json +1 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gtr/home/index.style.js +18 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gts/home/index.page.js +21 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gts/home/index.page.json +1 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/gts/home/index.style.js +17 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/page/i18n/en-US.po +3 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/setting/i18n/en-US.po +2 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/setting/index.js +5 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/hello-world/utils/index.js +3 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/jsconfig.json +14 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/.prettierrc.js +6 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/app-side/index.js +48 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/app.js +25 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/app.json +75 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/assets/gts/icon.png +0 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/page/home/index.page.js +155 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/page/home/index.page.json +1 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/page/home/index.style.js +93 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/page/i18n/en-US.po +8 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/setting/i18n/en-US.po +5 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/setting/index.js +145 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/data.js +67 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/defer.js +35 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/device-polyfill.js +6 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/es6-promise.js +1149 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/event.js +42 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/message-side.js +1145 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/shared/message.js +1151 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/utils/constants.js +3 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/utils/fs.js +38 -0
- package/private-modules/zeppos-app-utils/dist/public/template/v2/todo-list/utils/index.js +38 -0
- package/private-modules/zeppos-app-utils/dist/simulator.js +58 -0
- package/{modules/storage.js → private-modules/zeppos-app-utils/dist/storage/index.js} +2 -1
- package/private-modules/zeppos-app-utils/dist/tools/index.js +133 -0
- package/private-modules/zeppos-app-utils/dist/websocket.js +165 -0
- package/private-modules/zeppos-app-utils/package.json +51 -0
- package/utils/pre-check.js +9 -35
- package/config/device.js +0 -122
- package/config/project.js +0 -48
- package/font-icon.js +0 -27
- package/modules/create/index.js +0 -358
- package/modules/simulator.js +0 -82
- package/modules/websocket.js +0 -112
- package/utils/common.js +0 -138
- package/utils/logger.js +0 -31
- package/utils/md5.js +0 -11
- package/utils/sleep.js +0 -8
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/jsconfig.json
RENAMED
|
File without changes
|
package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/app.js
RENAMED
|
File without changes
|
package/{public/template → private-modules/zeppos-app-utils/dist/public/template/v1}/timer/app.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "empty",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "app.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"author": "",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@zeppos/device-types": "^2.0.0"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { log as Logger } from '@zos/utils'
|
|
2
|
+
import LocalStorage from './utils/storage'
|
|
3
|
+
|
|
4
|
+
const logger = Logger.getLogger('calories-app')
|
|
5
|
+
const fileName = 'calorie_data.txt'
|
|
6
|
+
|
|
7
|
+
App({
|
|
8
|
+
globalData: {
|
|
9
|
+
foodType: 'chocolate',
|
|
10
|
+
localStorage: null
|
|
11
|
+
},
|
|
12
|
+
onCreate() {
|
|
13
|
+
try {
|
|
14
|
+
this.globalData.localStorage = new LocalStorage(fileName)
|
|
15
|
+
const { foodType = 'chocolate' } = this.globalData.localStorage.get()
|
|
16
|
+
this.globalData.foodType = foodType
|
|
17
|
+
|
|
18
|
+
} catch (e) {
|
|
19
|
+
logger.log('--->e:', e)
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
onDestroy() {
|
|
24
|
+
this.globalData.localStorage.set({
|
|
25
|
+
foodType: getApp()._options.globalData.foodType
|
|
26
|
+
})
|
|
27
|
+
},
|
|
28
|
+
})
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"configVersion": "v2",
|
|
3
|
+
"app": {
|
|
4
|
+
"appId": 20001,
|
|
5
|
+
"appName": "Calories",
|
|
6
|
+
"appType": "app",
|
|
7
|
+
"version": {
|
|
8
|
+
"code": 1,
|
|
9
|
+
"name": "1.0.0"
|
|
10
|
+
},
|
|
11
|
+
"icon": "icon.png",
|
|
12
|
+
"vender": "zepp",
|
|
13
|
+
"description": "calories application"
|
|
14
|
+
},
|
|
15
|
+
"permissions": [
|
|
16
|
+
"data:os.device.info",
|
|
17
|
+
"device:os.local_storage",
|
|
18
|
+
"data:user.hd.calorie"
|
|
19
|
+
],
|
|
20
|
+
"runtime": {
|
|
21
|
+
"apiVersion": {
|
|
22
|
+
"compatible": "2.0.0",
|
|
23
|
+
"target": "2.0.0",
|
|
24
|
+
"minVersion": "2.0.0"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"targets": {
|
|
28
|
+
"gts": {
|
|
29
|
+
"module": {
|
|
30
|
+
"page": {
|
|
31
|
+
"pages": [
|
|
32
|
+
"page/gts/index",
|
|
33
|
+
"page/gts/food-list"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"platforms": [
|
|
38
|
+
{
|
|
39
|
+
"name": "gts4",
|
|
40
|
+
"deviceSource": 7995648
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "gts4-w",
|
|
44
|
+
"deviceSource": 7995649
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"designWidth": 390
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"i18n": {
|
|
51
|
+
"en-US": {
|
|
52
|
+
"appName": "Calories"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"defaultLanguage": "en-US"
|
|
56
|
+
}
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/consume.png
ADDED
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/beer.png
ADDED
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/cake.png
ADDED
|
Binary file
|
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/coffee.png
ADDED
|
Binary file
|
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/ham.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/food/pizza.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/multiply.png
ADDED
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/selected.png
ADDED
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/assets/gts/unselected.png
ADDED
|
Binary file
|
package/private-modules/zeppos-app-utils/dist/public/template/v2/calories/page/gts/food-list.js
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as hmUI from '@zos/ui'
|
|
2
|
+
import { back } from '@zos/router'
|
|
3
|
+
import { log as Logger, px } from '@zos/utils'
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
FOOD_LIST_Y,
|
|
7
|
+
FOOD_LIST_ITEM_MARGIN,
|
|
8
|
+
FOOD_LIST_ITEM_HEIGHT,
|
|
9
|
+
FOOD_LIST_RADIOGROUP,
|
|
10
|
+
FOOD_LIST_RADIO_ITEM,
|
|
11
|
+
FOOD_LIST_RADIO_ITEM_TEXT,
|
|
12
|
+
DEVICE_WIDTH,
|
|
13
|
+
} from '../../utils/styles-gts-3'
|
|
14
|
+
import { FOOD_CALORIES } from '../../utils/constants'
|
|
15
|
+
const logger = Logger.getLogger('calories')
|
|
16
|
+
const globalData = getApp()._options.globalData
|
|
17
|
+
|
|
18
|
+
Page({
|
|
19
|
+
state: {
|
|
20
|
+
activeIndex: -1,
|
|
21
|
+
isFinishInit: false,
|
|
22
|
+
radioGroup: null,
|
|
23
|
+
radioButtonsArray: [],
|
|
24
|
+
},
|
|
25
|
+
onInit() {
|
|
26
|
+
logger.log('onInit')
|
|
27
|
+
},
|
|
28
|
+
setPrograms(index) {
|
|
29
|
+
this.state.activeIndex = index
|
|
30
|
+
globalData.foodType = FOOD_CALORIES[index].type
|
|
31
|
+
back()
|
|
32
|
+
},
|
|
33
|
+
buildFoodList() {
|
|
34
|
+
let activeIndex = 0
|
|
35
|
+
const radioGroup = hmUI.createWidget(hmUI.widget.RADIO_GROUP, {
|
|
36
|
+
...FOOD_LIST_RADIOGROUP,
|
|
37
|
+
check_func: (group, index, checked) => {
|
|
38
|
+
if (checked) {
|
|
39
|
+
this.state.isFinishInit && this.setPrograms(index)
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
this.state.radioGroup = radioGroup
|
|
45
|
+
|
|
46
|
+
for (let index = 0; index < FOOD_CALORIES.length; index++) {
|
|
47
|
+
this.buildRadioButton(index)
|
|
48
|
+
this.buildRadioText(index)
|
|
49
|
+
activeIndex =
|
|
50
|
+
FOOD_CALORIES[index].type === globalData.foodType ? index : activeIndex
|
|
51
|
+
}
|
|
52
|
+
this.state.activeIndex = activeIndex
|
|
53
|
+
this.initRadioGroup()
|
|
54
|
+
},
|
|
55
|
+
buildElement() {
|
|
56
|
+
hmUI.createWidget(hmUI.widget.FILL_RECT, {
|
|
57
|
+
x: 0,
|
|
58
|
+
y: 0,
|
|
59
|
+
w: DEVICE_WIDTH,
|
|
60
|
+
h: px(
|
|
61
|
+
FOOD_LIST_Y +
|
|
62
|
+
(FOOD_CALORIES.length + 1) *
|
|
63
|
+
(FOOD_LIST_ITEM_HEIGHT + FOOD_LIST_ITEM_MARGIN),
|
|
64
|
+
),
|
|
65
|
+
})
|
|
66
|
+
this.buildFoodList()
|
|
67
|
+
},
|
|
68
|
+
buildRadioButton(index) {
|
|
69
|
+
const radio = this.state.radioGroup.createWidget(hmUI.widget.STATE_BUTTON, {
|
|
70
|
+
...FOOD_LIST_RADIO_ITEM.styles,
|
|
71
|
+
y: px(index * (FOOD_LIST_ITEM_HEIGHT + FOOD_LIST_ITEM_MARGIN)),
|
|
72
|
+
})
|
|
73
|
+
this.state.radioButtonsArray.push(radio)
|
|
74
|
+
},
|
|
75
|
+
buildRadioText(index) {
|
|
76
|
+
const text = hmUI.createWidget(hmUI.widget.TEXT, {
|
|
77
|
+
...FOOD_LIST_RADIO_ITEM_TEXT,
|
|
78
|
+
y: px(
|
|
79
|
+
FOOD_LIST_Y + index * (FOOD_LIST_ITEM_HEIGHT + FOOD_LIST_ITEM_MARGIN),
|
|
80
|
+
),
|
|
81
|
+
text: `${FOOD_CALORIES[index].name[0].toUpperCase()}${FOOD_CALORIES[
|
|
82
|
+
index
|
|
83
|
+
].name.slice(1)}`,
|
|
84
|
+
})
|
|
85
|
+
text.addEventListener(hmUI.event.SELECT, () => {
|
|
86
|
+
this.state.radioGroup.setProperty(
|
|
87
|
+
hmUI.prop.CHECKED,
|
|
88
|
+
this.state.radioButtonsArray[index],
|
|
89
|
+
)
|
|
90
|
+
})
|
|
91
|
+
},
|
|
92
|
+
initRadioGroup() {
|
|
93
|
+
this.state.radioGroup.setProperty(
|
|
94
|
+
hmUI.prop.INIT,
|
|
95
|
+
this.state.radioButtonsArray[0],
|
|
96
|
+
)
|
|
97
|
+
this.state.radioGroup.setProperty(
|
|
98
|
+
hmUI.prop.CHECKED,
|
|
99
|
+
this.state.radioButtonsArray[this.state.activeIndex],
|
|
100
|
+
)
|
|
101
|
+
this.state.isFinishInit = true
|
|
102
|
+
},
|
|
103
|
+
build() {
|
|
104
|
+
this.buildElement()
|
|
105
|
+
},
|
|
106
|
+
onReady() {},
|
|
107
|
+
|
|
108
|
+
onShow() {},
|
|
109
|
+
|
|
110
|
+
onHide() {},
|
|
111
|
+
|
|
112
|
+
onDestroy() {},
|
|
113
|
+
})
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import * as hmUI from '@zos/ui'
|
|
2
|
+
import { push } from '@zos/router'
|
|
3
|
+
import { getText } from '@zos/i18n'
|
|
4
|
+
import { Calorie } from '@zos/sensor'
|
|
5
|
+
import { log as Logger, px } from '@zos/utils'
|
|
6
|
+
|
|
7
|
+
import {
|
|
8
|
+
CALORIE_TEXT,
|
|
9
|
+
CALORIE_TEXT_SIZE,
|
|
10
|
+
UNIT_TEXT,
|
|
11
|
+
UNIT_TEXT_SIZE,
|
|
12
|
+
TOTAL_CONSUME_TEXT,
|
|
13
|
+
CONSUME_ICON,
|
|
14
|
+
CONSUME_ICON_WIDTH,
|
|
15
|
+
ALIGN_DESC_GROUP,
|
|
16
|
+
IMGAE_CALORIES_MARIN,
|
|
17
|
+
CALORIES_UNIT_MARIN,
|
|
18
|
+
EQUIVALENT_TO_BUTTON,
|
|
19
|
+
EQUIVALENT_TO_FOOD_ICON,
|
|
20
|
+
DEVICE_WIDTH,
|
|
21
|
+
EQUIVALENT_MORE_X,
|
|
22
|
+
EQUIVALENT_MARGIN,
|
|
23
|
+
EQUIVALENT_TO_FOOD_ICON_WIDTH,
|
|
24
|
+
EQUIVALENT_MORE_FOOD_ICON,
|
|
25
|
+
EQUIVALENT_MORE_FOOD_NUM,
|
|
26
|
+
} from '../../utils/styles-gts-3'
|
|
27
|
+
import { FOOD_CALORIES } from '../../utils/constants'
|
|
28
|
+
const logger = Logger.getLogger('calories')
|
|
29
|
+
const globalData = getApp()._options.globalData
|
|
30
|
+
|
|
31
|
+
Page({
|
|
32
|
+
buildTopContent(calories) {
|
|
33
|
+
const { width: w1 } = hmUI.getTextLayout('' + calories, {
|
|
34
|
+
text_size: CALORIE_TEXT_SIZE,
|
|
35
|
+
text_width: 0,
|
|
36
|
+
wrapped: 0
|
|
37
|
+
})
|
|
38
|
+
const { width: w2 } = hmUI.getTextLayout(getText('unit'), {
|
|
39
|
+
text_size: UNIT_TEXT_SIZE,
|
|
40
|
+
text_width: 0,
|
|
41
|
+
wrapped: 0
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
const w =
|
|
45
|
+
w1 + w2 + CONSUME_ICON_WIDTH + IMGAE_CALORIES_MARIN + CALORIES_UNIT_MARIN
|
|
46
|
+
const x = Math.round((DEVICE_WIDTH - w) / 2)
|
|
47
|
+
|
|
48
|
+
const group = hmUI.createWidget(hmUI.widget.GROUP, {
|
|
49
|
+
...ALIGN_DESC_GROUP,
|
|
50
|
+
x,
|
|
51
|
+
w,
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
group.createWidget(hmUI.widget.TEXT, {
|
|
55
|
+
...CALORIE_TEXT,
|
|
56
|
+
text: `${calories}`,
|
|
57
|
+
x: CONSUME_ICON_WIDTH + IMGAE_CALORIES_MARIN,
|
|
58
|
+
w: w1,
|
|
59
|
+
})
|
|
60
|
+
group.createWidget(hmUI.widget.TEXT, {
|
|
61
|
+
...UNIT_TEXT,
|
|
62
|
+
x: w - w2,
|
|
63
|
+
w: w2,
|
|
64
|
+
})
|
|
65
|
+
group.createWidget(hmUI.widget.IMG, CONSUME_ICON)
|
|
66
|
+
},
|
|
67
|
+
build() {
|
|
68
|
+
let calories = new Calorie().getCurrent() // Math.floor(Math.random() * 1000)
|
|
69
|
+
let currentFood = globalData.foodType
|
|
70
|
+
|
|
71
|
+
hmUI.createWidget(hmUI.widget.TEXT, TOTAL_CONSUME_TEXT)
|
|
72
|
+
|
|
73
|
+
this.buildTopContent(calories)
|
|
74
|
+
|
|
75
|
+
let activeIndex = FOOD_CALORIES.findIndex(
|
|
76
|
+
(item) => item.type === currentFood,
|
|
77
|
+
)
|
|
78
|
+
this.calculate(calories, FOOD_CALORIES[activeIndex])
|
|
79
|
+
hmUI.createWidget(hmUI.widget.BUTTON, {
|
|
80
|
+
...EQUIVALENT_TO_BUTTON,
|
|
81
|
+
click_func: () => {
|
|
82
|
+
push({
|
|
83
|
+
url: 'page/gts/food-list',
|
|
84
|
+
})
|
|
85
|
+
},
|
|
86
|
+
})
|
|
87
|
+
},
|
|
88
|
+
calculate(currentCalories, foodData) {
|
|
89
|
+
let { value, type } = foodData
|
|
90
|
+
let count = Math.floor(currentCalories / value)
|
|
91
|
+
if (count === 1 || count === 2 || count === 3) {
|
|
92
|
+
let x =
|
|
93
|
+
(DEVICE_WIDTH -
|
|
94
|
+
EQUIVALENT_TO_FOOD_ICON_WIDTH * count -
|
|
95
|
+
EQUIVALENT_MARGIN * (count - 1)) /
|
|
96
|
+
2
|
|
97
|
+
for (let index = 0; index < count; index++) {
|
|
98
|
+
this.drawFood(
|
|
99
|
+
x + (EQUIVALENT_MARGIN + EQUIVALENT_TO_FOOD_ICON_WIDTH) * index,
|
|
100
|
+
type,
|
|
101
|
+
) // icon
|
|
102
|
+
}
|
|
103
|
+
} else {
|
|
104
|
+
this.drawFood(EQUIVALENT_MORE_X, type) // icon
|
|
105
|
+
hmUI.createWidget(hmUI.widget.IMG, EQUIVALENT_MORE_FOOD_ICON)
|
|
106
|
+
hmUI.createWidget(hmUI.widget.TEXT, {
|
|
107
|
+
...EQUIVALENT_MORE_FOOD_NUM,
|
|
108
|
+
text: `${count}`,
|
|
109
|
+
})
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
drawFood(x, type) {
|
|
113
|
+
hmUI.createWidget(hmUI.widget.IMG, {
|
|
114
|
+
...EQUIVALENT_TO_FOOD_ICON,
|
|
115
|
+
x: px(x),
|
|
116
|
+
src: `food/${type}.png`,
|
|
117
|
+
})
|
|
118
|
+
},
|
|
119
|
+
onReady() {},
|
|
120
|
+
|
|
121
|
+
onShow() {},
|
|
122
|
+
|
|
123
|
+
onHide() {},
|
|
124
|
+
|
|
125
|
+
onDestroy() {},
|
|
126
|
+
})
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
msgid "unit"
|
|
3
|
+
msgstr "KCAL"
|
|
4
|
+
|
|
5
|
+
msgid "cake"
|
|
6
|
+
msgstr "Cake"
|
|
7
|
+
|
|
8
|
+
msgid "coffee"
|
|
9
|
+
msgstr "Coffee"
|
|
10
|
+
|
|
11
|
+
msgid "calories"
|
|
12
|
+
msgstr "Calories"
|
|
13
|
+
|
|
14
|
+
msgid "beer"
|
|
15
|
+
msgstr "Beer"
|
|
16
|
+
|
|
17
|
+
msgid "iceCream"
|
|
18
|
+
msgstr "Ice cream"
|
|
19
|
+
|
|
20
|
+
msgid "equivalent"
|
|
21
|
+
msgstr "Equivalent to"
|
|
22
|
+
|
|
23
|
+
msgid "hamburger"
|
|
24
|
+
msgstr "Hamburger"
|
|
25
|
+
|
|
26
|
+
msgid "pizza"
|
|
27
|
+
msgstr "Pizza"
|
|
28
|
+
|
|
29
|
+
msgid "chocolate"
|
|
30
|
+
msgstr "Chocolate"
|
|
31
|
+
|
|
32
|
+
msgid "consumption"
|
|
33
|
+
msgstr "Consumption Today"
|
|
34
|
+
|
|
35
|
+
msgid "sausage"
|
|
36
|
+
msgstr "Sausage"
|
|
37
|
+
|
|
38
|
+
msgid "ham"
|
|
39
|
+
msgstr "Ham"
|
|
40
|
+
|
|
41
|
+
msgid "cookie"
|
|
42
|
+
msgstr "Cookie"
|