clawtool 0.1.5 → 0.1.6
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/package.json +1 -1
- package/web/index.html +4 -0
package/package.json
CHANGED
package/web/index.html
CHANGED
|
@@ -173,6 +173,7 @@
|
|
|
173
173
|
(function () {
|
|
174
174
|
const isZh = /^zh/i.test(navigator.language || '');
|
|
175
175
|
const T = isZh ? {
|
|
176
|
+
pageTitle: 'OpenClaw 修复助手',
|
|
176
177
|
tag: '本地优先诊断引擎',
|
|
177
178
|
sub: '本地检测并修复 OpenClaw 问题,所有修复步骤都需你确认。',
|
|
178
179
|
startText: '不走云端,不需要 token,仅本地执行。',
|
|
@@ -189,6 +190,7 @@
|
|
|
189
190
|
done: '完成'
|
|
190
191
|
}
|
|
191
192
|
} : {
|
|
193
|
+
pageTitle: 'OpenClaw Repair Assistant',
|
|
192
194
|
tag: 'Local-First Diagnose Engine',
|
|
193
195
|
sub: 'Detect and repair OpenClaw issues locally with explicit fix confirmation.',
|
|
194
196
|
startText: 'No cloud call. No token required. Local execution only.',
|
|
@@ -206,6 +208,8 @@
|
|
|
206
208
|
}
|
|
207
209
|
};
|
|
208
210
|
|
|
211
|
+
document.title = T.pageTitle;
|
|
212
|
+
|
|
209
213
|
const el = {
|
|
210
214
|
tag: document.getElementById('brand-tag'),
|
|
211
215
|
sub: document.getElementById('brand-sub'),
|