From f5eaf05067eb0bc9d3fb3a1e6594e38ec46107f9 Mon Sep 17 00:00:00 2001 From: Guoguo Date: Sun, 19 Jul 2026 05:45:09 -0700 Subject: [PATCH] =?UTF-8?q?chore(i18n):=20=E4=B8=BA=E5=89=A9=E4=BD=9915?= =?UTF-8?q?=E9=A1=B5=E9=A2=84=E5=BB=BA=E5=91=BD=E5=90=8D=E7=A9=BA=E9=97=B4?= =?UTF-8?q?=20stub=20=E5=B9=B6=E6=B3=A8=E5=86=8C(=E5=B9=B6=E8=A1=8C=20retr?= =?UTF-8?q?ofit=20=E8=84=9A=E6=89=8B=E6=9E=B6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- miniprogram/i18n/locales/autoScan.js | 5 ++++ miniprogram/i18n/locales/bindSuccess.js | 5 ++++ miniprogram/i18n/locales/bleConnect.js | 5 ++++ miniprogram/i18n/locales/contact.js | 5 ++++ miniprogram/i18n/locales/help.js | 5 ++++ miniprogram/i18n/locales/index.js | 32 ++++++++++++++++++++++- miniprogram/i18n/locales/login.js | 5 ++++ miniprogram/i18n/locales/register.js | 5 ++++ miniprogram/i18n/locales/scan.js | 5 ++++ miniprogram/i18n/locales/setup.js | 5 ++++ miniprogram/i18n/locales/subPlans.js | 5 ++++ miniprogram/i18n/locales/subPrompt.js | 5 ++++ miniprogram/i18n/locales/subSuccess.js | 5 ++++ miniprogram/i18n/locales/treating.js | 5 ++++ miniprogram/i18n/locales/treatmentDone.js | 5 ++++ miniprogram/i18n/locales/wearCheck.js | 5 ++++ 16 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 miniprogram/i18n/locales/autoScan.js create mode 100644 miniprogram/i18n/locales/bindSuccess.js create mode 100644 miniprogram/i18n/locales/bleConnect.js create mode 100644 miniprogram/i18n/locales/contact.js create mode 100644 miniprogram/i18n/locales/help.js create mode 100644 miniprogram/i18n/locales/login.js create mode 100644 miniprogram/i18n/locales/register.js create mode 100644 miniprogram/i18n/locales/scan.js create mode 100644 miniprogram/i18n/locales/setup.js create mode 100644 miniprogram/i18n/locales/subPlans.js create mode 100644 miniprogram/i18n/locales/subPrompt.js create mode 100644 miniprogram/i18n/locales/subSuccess.js create mode 100644 miniprogram/i18n/locales/treating.js create mode 100644 miniprogram/i18n/locales/treatmentDone.js create mode 100644 miniprogram/i18n/locales/wearCheck.js 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: {} +}