diff --git a/miniprogram/i18n/locales/autoScan.js b/miniprogram/i18n/locales/autoScan.js new file mode 100644 index 0000000..602777b --- /dev/null +++ b/miniprogram/i18n/locales/autoScan.js @@ -0,0 +1,5 @@ +// Strings for the autoScan page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/bindSuccess.js b/miniprogram/i18n/locales/bindSuccess.js new file mode 100644 index 0000000..834031a --- /dev/null +++ b/miniprogram/i18n/locales/bindSuccess.js @@ -0,0 +1,5 @@ +// Strings for the bindSuccess page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/bleConnect.js b/miniprogram/i18n/locales/bleConnect.js new file mode 100644 index 0000000..3fc321c --- /dev/null +++ b/miniprogram/i18n/locales/bleConnect.js @@ -0,0 +1,5 @@ +// Strings for the bleConnect page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/contact.js b/miniprogram/i18n/locales/contact.js new file mode 100644 index 0000000..fa9d11e --- /dev/null +++ b/miniprogram/i18n/locales/contact.js @@ -0,0 +1,5 @@ +// Strings for the contact page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/help.js b/miniprogram/i18n/locales/help.js new file mode 100644 index 0000000..f5ba7af --- /dev/null +++ b/miniprogram/i18n/locales/help.js @@ -0,0 +1,5 @@ +// Strings for the help page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/index.js b/miniprogram/i18n/locales/index.js index 303e7f2..271af7c 100644 --- a/miniprogram/i18n/locales/index.js +++ b/miniprogram/i18n/locales/index.js @@ -9,6 +9,21 @@ var manual = require('./manual') var report = require('./report') var home = require('./home') var history = require('./history') +var login = require('./login') +var register = require('./register') +var scan = require('./scan') +var bleConnect = require('./bleConnect') +var bindSuccess = require('./bindSuccess') +var wearCheck = require('./wearCheck') +var autoScan = require('./autoScan') +var setup = require('./setup') +var treating = require('./treating') +var treatmentDone = require('./treatmentDone') +var subPrompt = require('./subPrompt') +var subPlans = require('./subPlans') +var subSuccess = require('./subSuccess') +var help = require('./help') +var contact = require('./contact') var namespaces = { common: common, @@ -17,7 +32,22 @@ var namespaces = { manual: manual, report: report, home: home, - history: history + history: history, + login: login, + register: register, + scan: scan, + bleConnect: bleConnect, + bindSuccess: bindSuccess, + wearCheck: wearCheck, + autoScan: autoScan, + setup: setup, + treating: treating, + treatmentDone: treatmentDone, + subPrompt: subPrompt, + subPlans: subPlans, + subSuccess: subSuccess, + help: help, + contact: contact } var zh = {} diff --git a/miniprogram/i18n/locales/login.js b/miniprogram/i18n/locales/login.js new file mode 100644 index 0000000..b09a6bc --- /dev/null +++ b/miniprogram/i18n/locales/login.js @@ -0,0 +1,5 @@ +// Strings for the login page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/register.js b/miniprogram/i18n/locales/register.js new file mode 100644 index 0000000..5ec9264 --- /dev/null +++ b/miniprogram/i18n/locales/register.js @@ -0,0 +1,5 @@ +// Strings for the register page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/scan.js b/miniprogram/i18n/locales/scan.js new file mode 100644 index 0000000..aafd93f --- /dev/null +++ b/miniprogram/i18n/locales/scan.js @@ -0,0 +1,5 @@ +// Strings for the scan page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/setup.js b/miniprogram/i18n/locales/setup.js new file mode 100644 index 0000000..5acc645 --- /dev/null +++ b/miniprogram/i18n/locales/setup.js @@ -0,0 +1,5 @@ +// Strings for the setup page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/subPlans.js b/miniprogram/i18n/locales/subPlans.js new file mode 100644 index 0000000..01f4b2d --- /dev/null +++ b/miniprogram/i18n/locales/subPlans.js @@ -0,0 +1,5 @@ +// Strings for the subPlans page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/subPrompt.js b/miniprogram/i18n/locales/subPrompt.js new file mode 100644 index 0000000..e7f2212 --- /dev/null +++ b/miniprogram/i18n/locales/subPrompt.js @@ -0,0 +1,5 @@ +// Strings for the subPrompt page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/subSuccess.js b/miniprogram/i18n/locales/subSuccess.js new file mode 100644 index 0000000..5a936c6 --- /dev/null +++ b/miniprogram/i18n/locales/subSuccess.js @@ -0,0 +1,5 @@ +// Strings for the subSuccess page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/treating.js b/miniprogram/i18n/locales/treating.js new file mode 100644 index 0000000..1e46344 --- /dev/null +++ b/miniprogram/i18n/locales/treating.js @@ -0,0 +1,5 @@ +// Strings for the treating page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/treatmentDone.js b/miniprogram/i18n/locales/treatmentDone.js new file mode 100644 index 0000000..ba7cb31 --- /dev/null +++ b/miniprogram/i18n/locales/treatmentDone.js @@ -0,0 +1,5 @@ +// Strings for the treatmentDone page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +} diff --git a/miniprogram/i18n/locales/wearCheck.js b/miniprogram/i18n/locales/wearCheck.js new file mode 100644 index 0000000..b40215a --- /dev/null +++ b/miniprogram/i18n/locales/wearCheck.js @@ -0,0 +1,5 @@ +// Strings for the wearCheck page. Fill zh/en with identical key structure. +module.exports = { + zh: {}, + en: {} +}