@sfmc-bds/cli 0.2.0-beta.6 → 0.2.0-beta.7
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/dist/command-surface.d.ts +3 -0
- package/dist/command-surface.d.ts.map +1 -1
- package/dist/command-surface.js +4 -30
- package/dist/command-surface.js.map +2 -2
- package/dist/help-text.d.ts.map +1 -1
- package/dist/help-text.js +6 -10
- package/dist/help-text.js.map +2 -2
- package/dist/i18n/locales/en.d.ts +6 -62
- package/dist/i18n/locales/en.d.ts.map +1 -1
- package/dist/i18n/locales/en.js +6 -63
- package/dist/i18n/locales/en.js.map +2 -2
- package/dist/i18n/locales/zh-CN.d.ts.map +1 -1
- package/dist/i18n/locales/zh-CN.js +6 -63
- package/dist/i18n/locales/zh-CN.js.map +2 -2
- package/dist/module-commands.d.ts +4 -10
- package/dist/module-commands.d.ts.map +1 -1
- package/dist/module-commands.js +18 -40
- package/dist/module-commands.js.map +2 -2
- package/dist/module-pack-build.js.map +1 -1
- package/dist/repl.d.ts.map +1 -1
- package/dist/repl.js +2 -22
- package/dist/repl.js.map +2 -2
- package/package.json +2 -2
- package/dist/module-wizard.d.ts +0 -12
- package/dist/module-wizard.d.ts.map +0 -1
- package/dist/module-wizard.js +0 -297
- package/dist/module-wizard.js.map +0 -7
package/dist/i18n/locales/en.js
CHANGED
|
@@ -81,9 +81,6 @@ const en = {
|
|
|
81
81
|
"help.module.verify": "Verify SHA-256 integrity",
|
|
82
82
|
"help.module.info": "Show module details",
|
|
83
83
|
"help.module.toggle": "Toggle module",
|
|
84
|
-
"help.module.create": "Interactive scaffold",
|
|
85
|
-
"help.module.link": "Link local module",
|
|
86
|
-
"help.module.dev": "Link + enable + build + deploy",
|
|
87
84
|
"help.module.build": "Build BP+RP from enabled modules",
|
|
88
85
|
"help.module.reload": "Build + deploy BP; send reload to BDS",
|
|
89
86
|
"help.module.watch": "Watch sapi/src and auto rebuild+reload",
|
|
@@ -277,66 +274,12 @@ const en = {
|
|
|
277
274
|
"publish.done": "[publish] done \u2713",
|
|
278
275
|
/* ─── bp ─── */
|
|
279
276
|
"bp.usage": "Usage: sfmc behavior-pack|bp <build|deploy>",
|
|
280
|
-
/* ─── module wizard ─── */
|
|
281
|
-
"modwiz.needTty.create": "Run in an interactive terminal: sfmc module create",
|
|
282
|
-
"modwiz.needTty.link": "Run in an interactive terminal: sfmc module link",
|
|
283
|
-
"modwiz.needTty.dev": "Run in an interactive terminal: sfmc module dev",
|
|
284
|
-
"modwiz.sfmcModulesPath": "sfmc-modules: {path}",
|
|
285
|
-
"modwiz.pickModulesRoot": "Parent directory for the new package (<id>/ will be created)",
|
|
286
|
-
"modwiz.pickPackageRoot": "Parent directory for the new package (<id>/ will be created)",
|
|
287
|
-
"modwiz.pickAuthorPkg": "Author module package root (must contain sapi/manifest.json)",
|
|
288
|
-
"modwiz.notModulePkg": "Not a valid module package (missing sapi/manifest.json): {path}",
|
|
289
|
-
"modwiz.standaloneHint": "Creates a standalone package (same as sfmc-module-template). sfmc-modules is index-only \u2014 nothing is written under packages/.",
|
|
290
|
-
"modwiz.noPackages": "packages/ subdirectory not found: {path}",
|
|
291
|
-
"modwiz.noFetch": "fetch-module.mjs not found",
|
|
292
|
-
"modwiz.enableModule": "Enable this module? (writes module-lock.json; needs db-server)",
|
|
293
|
-
"modwiz.buildDeploy": "Build and deploy behavior pack? (then use `sfmc mod reload` or type reload in BDS/game)",
|
|
294
|
-
"modwiz.task.build": "Building behavior pack",
|
|
295
|
-
"modwiz.task.deploy": "Deploying behavior pack",
|
|
296
|
-
"modwiz.reloadHint": "Use `sfmc mod reload` (build+deploy then send reload to BDS); or type reload in BDS/game.",
|
|
297
|
-
"modwiz.kebab": "Must be lowercase kebab-case, e.g. my-feature",
|
|
298
|
-
"modwiz.createIntro": "Module scaffold",
|
|
299
|
-
"modwiz.folderId": "Module folder name (install id)",
|
|
300
|
-
"modwiz.dirExists": "Directory already exists: {path}",
|
|
301
|
-
"modwiz.displayName": "Display name",
|
|
302
|
-
"modwiz.template": "Scaffold template",
|
|
303
|
-
"modwiz.tpl.minimal": "Minimal module",
|
|
304
|
-
"modwiz.tpl.minimalHint": "Command + permission stubs",
|
|
305
|
-
"modwiz.tpl.db": "With DB permission stubs",
|
|
306
|
-
"modwiz.tpl.dbHint": "manifest presets db:read/write",
|
|
307
|
-
"modwiz.noNewModule": "tools/new-module.mjs not found (platform tools/)",
|
|
308
|
-
"modwiz.genPackage": "Generate {id} (standalone package root)",
|
|
309
|
-
"modwiz.skeletonWritten": "Skeleton written",
|
|
310
|
-
"modwiz.createdNote": "Created {path}",
|
|
311
|
-
"modwiz.linkAsk": "Link into repo modules/packages/? (--link; edits apply live)",
|
|
312
|
-
"modwiz.link": "Link",
|
|
313
|
-
"modwiz.linkFailed": "Link failed",
|
|
314
|
-
"modwiz.linkDone": "Linked {id}",
|
|
315
|
-
"modwiz.enable": "Enable",
|
|
316
|
-
"modwiz.createDone": "Done. Source: {path}",
|
|
317
|
-
"modwiz.moduleCreated": "Module {id} created",
|
|
318
|
-
"modwiz.linkIntro": "Link local author package",
|
|
319
|
-
"modwiz.noLinkable": "No modules under {path}/packages",
|
|
320
|
-
"modwiz.noLinkableShort": "No linkable module packages",
|
|
321
|
-
"modwiz.pickLink": "Select module package to link",
|
|
322
|
-
"modwiz.linking": "Linking {id}",
|
|
323
|
-
"modwiz.linkSynced": "catalog + lock synced",
|
|
324
|
-
"modwiz.linked": "Linked {id}",
|
|
325
|
-
"modwiz.devIntro": "Local module development",
|
|
326
|
-
"modwiz.devStandalone": "Edit in the author repo; from the platform repo run:\nsfmc mod install <id> --from dir:<author-repo> --link\nsfmc mod reload or sfmc mod watch",
|
|
327
|
-
"modwiz.noDevPackages": "No modules under {path}/packages",
|
|
328
|
-
"modwiz.noDevShort": "No developable module packages",
|
|
329
|
-
"modwiz.pickDev": "Select module to develop",
|
|
330
|
-
"modwiz.enabling": "Enabling {id}",
|
|
331
|
-
"modwiz.devHint": "After editing author sources, run `mod reload` (build + deploy + send reload to BDS).\nOr use `sfmc mod watch`.",
|
|
332
|
-
"modwiz.devDone": "{id} linked; build + deploy finished",
|
|
333
|
-
"modwiz.devReady": "{id} ready for development",
|
|
334
277
|
/* ─── module commands ─── */
|
|
335
278
|
"mod.usage": "Usage: sfmc {cmds} <{subs}> [args]",
|
|
336
279
|
"mod.list.title": "Installed modules",
|
|
337
280
|
"mod.noneInstalled": "\nNo modules installed. Drop a module folder under {dir} or run `sfmc mod install <id>`.\n",
|
|
338
281
|
"mod.notInRegistry": 'Module "{query}" not found in first-party registry.',
|
|
339
|
-
"mod.info.usage": "Usage:
|
|
282
|
+
"mod.info.usage": "Usage: mod info <id>",
|
|
340
283
|
"mod.notInstalledAt": "Module {id} not installed at {path}",
|
|
341
284
|
"mod.notInstalled": "Module {id} not installed",
|
|
342
285
|
"mod.verifyOk": "{id} ok\n fingerprint: {fp}\n",
|
|
@@ -346,12 +289,12 @@ const en = {
|
|
|
346
289
|
"mod.action.disabled": "disabled",
|
|
347
290
|
"mod.toggleOk": "{label} {id}",
|
|
348
291
|
"mod.toggleBadBody": "{action} {id} returned: {text}",
|
|
349
|
-
"mod.enable.usage": "Usage:
|
|
350
|
-
"mod.disable.usage": "Usage:
|
|
351
|
-
"mod.install.usage": "Usage:
|
|
352
|
-
"mod.
|
|
292
|
+
"mod.enable.usage": "Usage: mod enable <id>",
|
|
293
|
+
"mod.disable.usage": "Usage: mod disable <id>",
|
|
294
|
+
"mod.install.usage": "Usage: mod install <id>\n mod install <id> --from <source> [--link] [--sha256 <hex>]",
|
|
295
|
+
"mod.fromUnknown": "unknown --from source: {value}. Use npm:|local[:<path>]|tgz:|zip:|dir:|github:<repo>[@tag]",
|
|
353
296
|
"mod.fetchMissing": "fetch-module not found. Install @sfmc-bds/sfmc or run inside the monorepo.",
|
|
354
|
-
"mod.uninstall.usage": "Usage:
|
|
297
|
+
"mod.uninstall.usage": "Usage: mod uninstall <id>",
|
|
355
298
|
"mod.notInstalledFolder": "Module {id} not installed (no folder at {path})",
|
|
356
299
|
"mod.removed": "Removed {id} from {path}\n",
|
|
357
300
|
/* ─── pack lifecycle ─── */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/i18n/locales/en.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * English message catalog \u2014 source of truth for MessageKey.\n * Placeholders use {name} form; chalk stays at call sites.\n */\nexport const en = {\n /* \u2500\u2500\u2500 common \u2500\u2500\u2500 */\n \"common.cancelled\": \"Cancelled\",\n \"common.done\": \"Done\",\n \"common.required\": \"Required\",\n \"common.error\": \"Error: {message}\",\n \"common.fatal\": \"Fatal\",\n \"common.unknownCommand\": \"Unknown command: {cmd}\",\n \"common.unknownShort\": \"Unknown: {cmd} (try: help)\",\n \"common.tips\": \"Tips\",\n \"common.path\": \"Path\",\n \"common.hint\": \"Hint\",\n \"common.none\": \"(none)\",\n \"common.all\": \"ALL\",\n\n /* \u2500\u2500\u2500 locale \u2500\u2500\u2500 */\n \"locale.current\": \"Current locale: {locale}\",\n \"locale.set\": \"Locale set to {locale}\",\n \"locale.invalid\": \"Unknown locale: {value} (try: zh-CN, en)\",\n \"locale.usage\": \"Usage: locale [zh-CN|en|zh|cn]\",\n \"locale.wizard\": \"CLI language / \u754C\u9762\u8BED\u8A00\",\n \"locale.opt.zh\": \"\u7B80\u4F53\u4E2D\u6587\",\n \"locale.opt.en\": \"English\",\n\n /* \u2500\u2500\u2500 CLI channel gates \u2500\u2500\u2500 */\n \"cli.externalOnly\": \"Command `{cmd}` is external-only (not available in the REPL).\",\n \"cli.externalOnly.hint\": \"Run from a shell: sfmc {cmd}\",\n \"cli.replOnly\": \"Command `{cmd}` is REPL-only.\",\n \"cli.replOnly.hint\": \"Start the interactive CLI with `sfmc` (no args), then run it there.\",\n \"cli.needTty\": \"Command `{cmd}` requires an interactive TTY.\",\n\n /* \u2500\u2500\u2500 debug (BDS config) \u2500\u2500\u2500 */\n \"debug.state.on\": \"ON\",\n \"debug.state.off\": \"OFF\",\n \"debug.statusTitle\": \"BDS debug config\",\n \"debug.enabled\": \"sfmc_debug = true (BDS console debug logs enabled on next reload)\",\n \"debug.disabled\": \"sfmc_debug = false (BDS console debug logs disabled on next reload)\",\n \"debug.sentry.set\": \"SENTRY_DSN set: {dsn}\",\n \"debug.sentry.removed\": \"SENTRY_DSN removed\",\n \"debug.sentry.alreadyOff\": \"SENTRY_DSN already absent\",\n \"debug.sentry.dsnMissing\": \"--dsn <value> required\",\n \"debug.sentry.unknown\": \"Unknown sentry action: {action}\",\n \"debug.sentry.usage\": \"Usage: debug sentry on --dsn <dsn> | debug sentry off\",\n \"debug.unknown\": \"Unknown debug subcommand: {sub}\",\n \"debug.usage\": \"Usage: debug status | enable | disable | sentry on --dsn | sentry off\",\n \"debug.reloadHint\": \"Run `sfmc mod reload` or restart BDS to take effect.\",\n\n /* \u2500\u2500\u2500 help \u2500\u2500\u2500 */\n \"help.title\": \"sfmc \u2014 ScriptsForMinecraftServer CLI\",\n \"help.title.repl\": \"sfmc REPL\",\n \"help.usage\": \"Usage:\",\n \"help.section.options\": \"Options\",\n \"help.opt.packs\": \"Pack context, then packs subcommand; i = install\",\n \"help.opt.lang\": \"UI language for this process\",\n \"help.addon.compat\": \"Compat: -p/--packs flag (prefer `sfmc packs \u2026`)\",\n \"help.slash.hint\": \"Lines starting with / list commands. Tab switches send target.\",\n \"help.shortcut.slash\": \"Command list\",\n \"help.shortcut.ctrlp\": \"Command list\",\n \"help.shortcut.cursor\": \"Move cursor\",\n \"repl.palette.hint\": \"\u2191\u2193 \u00B7 Enter \u00B7 Esc\",\n \"repl.palette.empty\": \"No matches\",\n \"help.section.service\": \"\u2500\u2500\u2500 Service Control \u2500\u2500\u2500\",\n \"help.status\": \"Show all services status\",\n \"help.logs\": \"Open log filter window (on-disk logs)\",\n \"help.start\": \"Start a service\",\n \"help.stop\": \"Stop a service\",\n \"help.restart\": \"Restart a service\",\n \"help.send\": \"Send command to a service\",\n \"help.section.update\": \"\u2500\u2500\u2500 BDS Update \u2500\u2500\u2500\",\n \"help.update\": \"Check / apply BDS update\",\n \"help.section.remote\": \"\u2500\u2500\u2500 Remote Agent \u2500\u2500\u2500\",\n \"help.remote.status\": \"Show enrollment status\",\n \"help.remote.enroll\": \"Enroll with a controller\",\n \"help.remote.disable\": \"Disconnect + disable agent\",\n \"help.section.debug\": \"\u2500\u2500\u2500 BDS debug \u2500\u2500\u2500\",\n \"help.debug.status\": \"View sfmc_debug / SENTRY_DSN state\",\n \"help.debug.toggle\": \"Toggle sfmc_debug\",\n \"help.debug.sentry.on\": \"Set SENTRY_DSN\",\n \"help.debug.sentry.off\": \"Remove SENTRY_DSN\",\n \"help.section.module\": \"\u2500\u2500\u2500 Module Management \u2500\u2500\u2500\",\n \"help.module.list\": \"List installed modules\",\n \"help.module.search\": \"Search registry / show module info\",\n \"help.module.install\": \"Install a module\",\n \"help.module.uninstall\": \"Remove installed module\",\n \"help.module.verify\": \"Verify SHA-256 integrity\",\n \"help.module.info\": \"Show module details\",\n \"help.module.toggle\": \"Toggle module\",\n \"help.module.create\": \"Interactive scaffold\",\n \"help.module.link\": \"Link local module\",\n \"help.module.dev\": \"Link + enable + build + deploy\",\n \"help.module.build\": \"Build BP+RP from enabled modules\",\n \"help.module.reload\": \"Build + deploy BP; send reload to BDS\",\n \"help.module.watch\": \"Watch sapi/src and auto rebuild+reload\",\n \"help.module.test\": \"Run module tests (node --test + @sfmc-bds/sdk/testing)\",\n \"help.module.publish\": \"Nanny-mode npm publish (login hint + dry-run + bump + thin-index PR)\",\n \"help.section.addon\": \"\u2500\u2500\u2500 Addon Manager \u2500\u2500\u2500\",\n \"help.addon\": \"World BP/RP inbox manager\",\n \"help.packs.list\": \"List world packs\",\n \"help.packs.search\": \"Search pack sources\",\n \"help.packs.enable\": \"Enable a pack\",\n \"help.packs.disable\": \"Disable a pack\",\n \"help.packs.doctor\": \"Diagnose pack wiring\",\n \"help.packs.path\": \"Show pack paths\",\n \"help.section.general\": \"\u2500\u2500\u2500 General \u2500\u2500\u2500\",\n \"help.init\": \"Setup wizard\",\n \"help.locale\": \"Show / set CLI language\",\n \"help.version\": \"Show version\",\n \"help.help\": \"Show this help\",\n \"help.quit\": \"Exit\",\n \"help.shortcuts\": \"Shortcuts:\",\n \"help.shortcut.tab\": \"Send target / list select\",\n \"help.shortcut.right\": \"Accept suggestion\",\n \"help.shortcut.ctrll\": \"Filter log level / source / history\",\n \"help.shortcut.history\": \"Command history\",\n\n /* \u2500\u2500\u2500 repl \u2500\u2500\u2500 */\n \"repl.stopping\": \"stopping services...\",\n \"repl.bye\": \"bye\",\n \"repl.forceStop\": \"force stopping services...\",\n \"repl.nonInteractive\": \" Non-interactive mode (pipe detected)\\n\",\n \"repl.historyHeader\": \"\u2500\u2500 history {count} line(s) \u2500\u2500\",\n \"repl.filter\": \"filter: {level} / {source} / {history}\",\n \"repl.followRequiresTty\": \"follow mode requires TTY\",\n \"repl.logsReplOnly\": \"logs is only available in the interactive REPL (opens filter window)\",\n \"repl.history.live\": \"live only (no replay)\",\n \"repl.history.last50\": \"last 50\",\n \"repl.history.last100\": \"last 100\",\n \"repl.history.last500\": \"last 500\",\n \"repl.history.last1000\": \"last 1000\",\n \"repl.history.last1min\": \"last 1 min\",\n \"repl.history.last5min\": \"last 5 min\",\n \"repl.history.last15min\": \"last 15 min\",\n \"repl.history.last1hour\": \"last 1 hour\",\n \"repl.history.all\": \"all buffered\",\n\n /* \u2500\u2500\u2500 services / commands \u2500\u2500\u2500 */\n \"svc.header\": \"Services\",\n \"svc.col.name\": \"Name\",\n \"svc.col.status\": \"Status\",\n \"svc.col.owner\": \"Owner\",\n \"svc.col.pid\": \"PID\",\n \"svc.col.uptime\": \"Uptime\",\n \"svc.state.running\": \"Running\",\n \"svc.state.stopped\": \"Stopped\",\n \"svc.owner.managed\": \"Managed\",\n \"svc.owner.external\": \"External\",\n \"svc.owner.none\": \"\u2014\",\n \"svc.running\": \"Running\",\n \"svc.runningExternal\": \"Running (external)\",\n \"svc.stopped\": \"Stopped\",\n \"svc.unknown\": \"Unknown service: {name} (try: {list})\",\n \"svc.logs.usage\": \"Usage: logs <service> [-n N] [-f]\",\n \"svc.logs.empty\": \"(no logs yet)\",\n \"svc.logs.header\": \"{title} logs (last {count}):\",\n \"svc.start.usage\": \"Usage: sfmc start <service>|-all\",\n \"svc.start.usageShort\": \"Usage: start <service>|-all\",\n \"svc.stop.usage\": \"Usage: sfmc stop <service>|-all\",\n \"svc.stop.usageShort\": \"Usage: stop <service>|-all\",\n \"svc.restart.usage\": \"Usage: sfmc restart <service>|-all\",\n \"svc.restart.usageShort\": \"Usage: restart <service>|-all\",\n \"svc.alreadyRunning\": \"{title} already running (PID {pid})\",\n \"svc.alreadyStarting\": \"{title} already starting...\",\n \"svc.started\": \"{title} started\",\n \"svc.startFailed\": \"{title} failed: {message}\",\n \"svc.alreadyStopped\": \"{title} already stopped\",\n \"svc.alreadyStopping\": \"{title} already stopping...\",\n \"svc.stoppedMsg\": \"{title} stopped\",\n \"svc.stopFailed\": \"{title} stop failed: {message}\",\n \"svc.send.usage\": \"Usage: send <service> <message>\",\n \"svc.notRunning\": \"{title} not running\",\n \"svc.writeFailed\": \"write failed\",\n \"svc.restarted\": \"{title} restarted\",\n \"svc.restartFailed\": \"{title} restart failed: {message}\",\n \"svc.allStarted\": \"All services started\",\n \"svc.allStopped\": \"All services stopped\",\n \"svc.updateComplete\": \"update complete\",\n \"svc.updateExited\": \"update exited with code {code}\",\n \"svc.updateError\": \"update error: {message}\",\n \"svc.updateStartBds\": \"update: starting BDS via supervisor\",\n \"svc.bdsStarted\": \"BDS started (supervised)\",\n \"svc.bdsStartFailed\": \"BDS start failed: {message}\",\n \"svc.bdsStoppedForUpdate\": \"BDS was stopped for update; run `start bds` when ready\",\n \"svc.bdsAlreadyRunning\": \"BDS already running ({kind}, PID {pid})\",\n \"svc.stdinUnavailable\": \"{title} was started externally; stdin commands unavailable\",\n \"svc.stoppedExternal\": \"{title} stopped (external process)\",\n\n /* \u2500\u2500\u2500 remote \u2500\u2500\u2500 */\n \"remote.enrolled\": \"Enrolled remote agent: {id}\",\n \"remote.disabled\": \"Remote agent disabled\",\n \"remote.usage\":\n \"Usage: sfmc remote enroll <controller-url> <enrollment-token> [name] | sfmc remote status | sfmc remote disable\",\n \"remote.usageShort\":\n \"Usage: remote enroll <controller-url> <enrollment-token> [name] | remote status | remote disable\",\n\n /* \u2500\u2500\u2500 wizard \u2500\u2500\u2500 */\n \"wizard.intro\": \"Setup Wizard =D\",\n \"wizard.rerun\": \"Already initialized. Re-run setup?\",\n \"wizard.skipped\": \"Setup skipped\",\n \"wizard.step1\": \"Step 1 - Runtime Environment\",\n \"wizard.runtimeRoot\": \"Runtime root: {root}\",\n \"wizard.npmMissing\": \"npm runtime is missing required directories: {list}\",\n \"wizard.prepFailed\": \"Runtime preparation failed: {message}\",\n \"wizard.step2\": \"Step 2 - External Runtimes\",\n \"wizard.step2Note\": \"Select paths for BDS, Database, and LLBOT\",\n \"wizard.bdsDir\": \"BDS installation directory\",\n \"wizard.cannotCreateBds\": \"Cannot create BDS installation directory: {dir}\",\n \"wizard.enableLlbot\": \"Enable LLBot (QQ bridge)?\",\n \"wizard.llbotDir\": \"LLBot runtime directory\",\n \"wizard.usingDefault\": \"Using default: {path}\",\n \"wizard.dbDir\": \"Database storage directory\",\n \"wizard.dbPort\": \"Database server port:\",\n \"wizard.portRange\": \"Enter 1024\u201365535\",\n \"wizard.valueRequired\": \"Value is required!\",\n \"wizard.step3\": \"Step 3 - BDS Environment\",\n \"wizard.bdsFound\": \"Found at {path}\",\n \"wizard.bdsNotFound\": \"Not found at {path}\",\n \"wizard.eula\":\n \"Do you agree to the EULA(https://www.minecraft.net/en-us/eula) published by Mojang? You must agree to it before you can use this program.\",\n \"wizard.disagreed\": \"Disagreed.\",\n \"wizard.downloadBds\": \"Download BDS now?\",\n \"wizard.selectChannel\": \"Select channel:\",\n \"wizard.channel.release\": \"Release\",\n \"wizard.channel.releaseHint\": \"stable\",\n \"wizard.channel.preview\": \"Preview\",\n \"wizard.channel.previewHint\": \"may be unstable\",\n \"wizard.cannotCreateBackup\": \"Cannot create BDS backup directory: {dir}\",\n \"wizard.backupDir\": \"BDS backup directory\",\n \"wizard.preserve\": \"Files to preserve on update(When updates are enabled next time):\",\n \"wizard.preserve.serverProps\": \"server config\",\n \"wizard.preserve.worlds\": \"world data\",\n \"wizard.preserve.config\": \"config directory\",\n \"wizard.updaterTip\":\n \"If could not find BDS runtime, updater will be started later.\\n You can configure updater later in configs/bds_updater.json\",\n \"wizard.step4\": \"Step 4 - Modules\",\n \"wizard.modulesFound\": \"Found {count} optional modules\",\n \"wizard.modulesNone\": \"No modules catalog found\",\n \"wizard.enableModules\": \"Enable modules:\",\n \"wizard.emptyHint\": \"(empty)\",\n \"wizard.updatingConfigs\": \"Updating configs\",\n \"wizard.configsUpdated\": \"Configs updated\",\n \"wizard.updatingModules\": \"Updating module state\",\n \"wizard.modulesUpdated\": \"Module state updated\",\n \"wizard.initDb\": \"Initializing database\",\n \"wizard.dbTimeout\": \"Database startup timed out\",\n \"wizard.dbOk\": \"Database initialized\",\n \"wizard.downloadingBds\": \"Downloading BDS\",\n \"wizard.downloadFail\": \"Downloaded Failure.\",\n \"wizard.bdsDownloaded\": \"BDS downloaded\",\n \"wizard.done\": \"Done! Run help to learn managing.\",\n \"wizard.installing\": \"Installing {count} module(s) from first-party registry\",\n \"wizard.installed\": \"{count} installed\",\n \"wizard.installFailed\": \"install failed: {message}\\nYou can retry with: sfmc mod install <id>\",\n \"wizard.fetchMissing\": \"fetch-module missing \u2014 run `sfmc mod install <id>` later for each of: {list}\",\n \"wizard.noModulesSelected\":\n \"No modules selected \u2014 behavior pack will be empty until you install one with `sfmc mod install <id>`.\",\n \"wizard.buildingBp\": \"Building behavior pack\",\n \"wizard.buildFailed\": \"build failed: {message}\\nRun `sfmc mod build` later to retry.\",\n \"wizard.deploying\": \"Deploying to {path}\",\n \"wizard.restartBds\": \"Restart BDS to load the new behavior pack.\",\n \"wizard.deployFailed\": \"deploy failed: {message}\\nRun `sfmc mod reload` after fixing bds_path in configs/.\",\n\n /* \u2500\u2500\u2500 prompts \u2500\u2500\u2500 */\n \"prompt.enterPath\": \"Enter path\",\n \"prompt.browse\": \"Browse\u2026\",\n \"prompt.browseHint\": \"Open system folder picker\",\n\n /* \u2500\u2500\u2500 reload \u2500\u2500\u2500 */\n \"reload.buildOnly\": \"(deploy done; type reload in BDS/game, or omit --build-only to send automatically)\",\n \"reload.bdsNotRunning\":\n \"BDS is not running \u2014 build+deploy finished. After start, type reload in BDS console or in-game.\",\n \"reload.sent\": \"Sent reload to BDS\",\n\n /* \u2500\u2500\u2500 module watch \u2500\u2500\u2500 */\n \"watch.usage\":\n \"Usage: mod watch [--from local[:<path>]] [--no-reload]\\n\" +\n \" Watches sapi/src in the cwd module repo by default; sapi/manifest.json and tsconfig.json changes only print 'please restart BDS'.\\n\" +\n \" Ctrl+C to exit.\",\n \"watch.banner\": \"[watch] watching module: {path}\",\n \"watch.hint\":\n \"[watch] changes under sapi/src/** trigger rebuild + deploy + reload; everything else is ignored.\",\n \"watch.noSapiDir\": \"[watch] sapi directory not found: {path}\",\n \"watch.noSapiSrc\":\n \"[watch] sapi/src not found: {path} (rebuilds only trigger after src is in place)\",\n \"watch.recursiveFallback\":\n \"[watch] recursive watch failed; falling back to non-recursive (sapi/src only): {message}\",\n \"watch.manifestOrTsconfig\":\n \"[watch] {kind} changed \u2014 SAPI caches the manifest at startup; restart BDS to apply. files: {files}\",\n \"watch.rebuild.start\": \"[watch] rebuild triggered ({count} files): {files}\",\n \"watch.rebuild.ok\": \"[watch] rebuild OK ({ms} ms)\",\n \"watch.rebuild.fail\": \"[watch] rebuild FAILED ({ms} ms)\\n{output}\",\n \"watch.rebuild.error\": \"[watch] rebuild error: {message}\",\n \"watch.reload.sent\": \"[watch] reload sent\",\n \"watch.reload.manualHint\":\n \"[watch] --no-reload mode: type reload in BDS console or in-game\",\n \"watch.stopped\": \"[watch] stopped\",\n\n /* \u2500\u2500\u2500 module publish \u2500\u2500\u2500 */\n \"publish.banner\": \"[publish] nanny-mode publish (npm + thin-index PR)\",\n \"publish.noLogin\": \"[publish] not logged in to npm\",\n \"publish.noLoginHint\":\n \" \u2192 run `npm login --auth-type=web` (browser OAuth, no local credential)\",\n \"publish.precheckFail\":\n \"[publish] precheck failed; fix the errors above and retry\",\n \"publish.dryRun.summary\":\n \"[publish] --dry-run done; run `sfmc mod publish [--bump <lvl>]` for real\",\n \"publish.done\": \"[publish] done \u2713\",\n\n /* \u2500\u2500\u2500 bp \u2500\u2500\u2500 */\n \"bp.usage\": \"Usage: sfmc behavior-pack|bp <build|deploy>\",\n\n /* \u2500\u2500\u2500 module wizard \u2500\u2500\u2500 */\n \"modwiz.needTty.create\": \"Run in an interactive terminal: sfmc module create\",\n \"modwiz.needTty.link\": \"Run in an interactive terminal: sfmc module link\",\n \"modwiz.needTty.dev\": \"Run in an interactive terminal: sfmc module dev\",\n \"modwiz.sfmcModulesPath\": \"sfmc-modules: {path}\",\n \"modwiz.pickModulesRoot\": \"Parent directory for the new package (<id>/ will be created)\",\n \"modwiz.pickPackageRoot\": \"Parent directory for the new package (<id>/ will be created)\",\n \"modwiz.pickAuthorPkg\": \"Author module package root (must contain sapi/manifest.json)\",\n \"modwiz.notModulePkg\": \"Not a valid module package (missing sapi/manifest.json): {path}\",\n \"modwiz.standaloneHint\": \"Creates a standalone package (same as sfmc-module-template). sfmc-modules is index-only \u2014 nothing is written under packages/.\",\n \"modwiz.noPackages\": \"packages/ subdirectory not found: {path}\",\n \"modwiz.noFetch\": \"fetch-module.mjs not found\",\n \"modwiz.enableModule\": \"Enable this module? (writes module-lock.json; needs db-server)\",\n \"modwiz.buildDeploy\": \"Build and deploy behavior pack? (then use `sfmc mod reload` or type reload in BDS/game)\",\n \"modwiz.task.build\": \"Building behavior pack\",\n \"modwiz.task.deploy\": \"Deploying behavior pack\",\n \"modwiz.reloadHint\": \"Use `sfmc mod reload` (build+deploy then send reload to BDS); or type reload in BDS/game.\",\n \"modwiz.kebab\": \"Must be lowercase kebab-case, e.g. my-feature\",\n \"modwiz.createIntro\": \"Module scaffold\",\n \"modwiz.folderId\": \"Module folder name (install id)\",\n \"modwiz.dirExists\": \"Directory already exists: {path}\",\n \"modwiz.displayName\": \"Display name\",\n \"modwiz.template\": \"Scaffold template\",\n \"modwiz.tpl.minimal\": \"Minimal module\",\n \"modwiz.tpl.minimalHint\": \"Command + permission stubs\",\n \"modwiz.tpl.db\": \"With DB permission stubs\",\n \"modwiz.tpl.dbHint\": \"manifest presets db:read/write\",\n \"modwiz.noNewModule\": \"tools/new-module.mjs not found (platform tools/)\",\n \"modwiz.genPackage\": \"Generate {id} (standalone package root)\",\n \"modwiz.skeletonWritten\": \"Skeleton written\",\n \"modwiz.createdNote\": \"Created {path}\",\n \"modwiz.linkAsk\": \"Link into repo modules/packages/? (--link; edits apply live)\",\n \"modwiz.link\": \"Link\",\n \"modwiz.linkFailed\": \"Link failed\",\n \"modwiz.linkDone\": \"Linked {id}\",\n \"modwiz.enable\": \"Enable\",\n \"modwiz.createDone\": \"Done. Source: {path}\",\n \"modwiz.moduleCreated\": \"Module {id} created\",\n \"modwiz.linkIntro\": \"Link local author package\",\n \"modwiz.noLinkable\": \"No modules under {path}/packages\",\n \"modwiz.noLinkableShort\": \"No linkable module packages\",\n \"modwiz.pickLink\": \"Select module package to link\",\n \"modwiz.linking\": \"Linking {id}\",\n \"modwiz.linkSynced\": \"catalog + lock synced\",\n \"modwiz.linked\": \"Linked {id}\",\n \"modwiz.devIntro\": \"Local module development\",\n \"modwiz.devStandalone\":\n \"Edit in the author repo; from the platform repo run:\\nsfmc mod install <id> --from dir:<author-repo> --link\\nsfmc mod reload or sfmc mod watch\",\n \"modwiz.noDevPackages\": \"No modules under {path}/packages\",\n \"modwiz.noDevShort\": \"No developable module packages\",\n \"modwiz.pickDev\": \"Select module to develop\",\n \"modwiz.enabling\": \"Enabling {id}\",\n \"modwiz.devHint\":\n \"After editing author sources, run `mod reload` (build + deploy + send reload to BDS).\\nOr use `sfmc mod watch`.\",\n \"modwiz.devDone\": \"{id} linked; build + deploy finished\",\n \"modwiz.devReady\": \"{id} ready for development\",\n\n /* \u2500\u2500\u2500 module commands \u2500\u2500\u2500 */\n \"mod.usage\": \"Usage: sfmc {cmds} <{subs}> [args]\",\n \"mod.list.title\": \"Installed modules\",\n \"mod.noneInstalled\": \"\\nNo modules installed. Drop a module folder under {dir} or run `sfmc mod install <id>`.\\n\",\n \"mod.notInRegistry\": 'Module \"{query}\" not found in first-party registry.',\n \"mod.info.usage\": \"Usage: sfmc module|mod info <id>\",\n \"mod.notInstalledAt\": \"Module {id} not installed at {path}\",\n \"mod.notInstalled\": \"Module {id} not installed\",\n \"mod.verifyOk\": \"{id} ok\\n fingerprint: {fp}\\n\",\n \"mod.dbUnreachable\": \"Cannot reach db-server at {url}: {message}. Is db-service running? (sfmc> start db)\",\n \"mod.toggleFailed\": \"{action} {id} failed: {err}\",\n \"mod.action.enabled\": \"enabled\",\n \"mod.action.disabled\": \"disabled\",\n \"mod.toggleOk\": \"{label} {id}\",\n \"mod.toggleBadBody\": \"{action} {id} returned: {text}\",\n \"mod.enable.usage\": \"Usage: sfmc module|mod enable <id>\",\n \"mod.disable.usage\": \"Usage: sfmc module|mod disable <id>\",\n \"mod.install.usage\": \"Usage: sfmc module|mod install <id> [id2 ...] [--from <source>] [--link]\",\n \"mod.linkNeedsFrom\":\n \"--link requires --from dir:<author-path> or --from local:<path>.\\nExample: sfmc mod install my-mod --from dir:D:/mods/my-mod --link\",\n \"mod.fetchMissing\": \"fetch-module not found. Install @sfmc-bds/sfmc or run inside the monorepo.\",\n \"mod.uninstall.usage\": \"Usage: sfmc module|mod uninstall <id>\",\n \"mod.notInstalledFolder\": \"Module {id} not installed (no folder at {path})\",\n \"mod.removed\": \"Removed {id} from {path}\\n\",\n\n /* \u2500\u2500\u2500 pack lifecycle \u2500\u2500\u2500 */\n \"pack.built\": \"built packs at {path}\",\n \"pack.buildFailed\": \"pack build failed: {message}\",\n \"pack.deployed\": \"deployed packs\",\n \"pack.deployFailed\": \"pack deploy failed: {message}\",\n \"pack.statusFailed\": \"pack status failed: {message}\",\n \"pack.listFailed\": \"pack list failed: {message}\",\n \"pack.noCatalog\": \"no deployed catalog \u2014 run `sfmc pack deploy` first\",\n \"pack.noUuid\": \"no {kind} pack uuid in catalog\",\n \"pack.actionFailed\": \"{action} failed: {detail}\",\n \"pack.enabledOk\": \"enabled {kind} pack {uuid}\",\n \"pack.disabledOk\": \"disabled {kind} pack {uuid}\",\n \"pack.actionErr\": \"pack {action} failed: {message}\",\n \"pack.usage\": \"Usage: sfmc pack <{subs}> [behavior|resource]\",\n\n /* \u2500\u2500\u2500 world packs / addon \u2500\u2500\u2500 */\n \"packs.restartHint\": \"Restart BDS for changes to take effect\",\n \"packs.rejoinHint\": \"Clients must rejoin to download resource packs\",\n \"packs.conflict\": \"Conflict detected:\",\n \"packs.conflict.existing\": \" Existing: {name} v{version} {uuid}\\n {dir}\",\n \"packs.conflict.incoming\": \" Incoming: {name} v{version} {uuid}\",\n \"packs.overwriteAsk\": \"Overwrite existing pack (same UUID, version not newer)?\",\n \"packs.badManifest\": \"Unrecognized manifest (need resources/data/script module and header name/uuid/version)\",\n \"packs.skippedNoOverwrite\": \"Skipped (not overwritten)\",\n \"packs.conflictSkip\": \" Conflict skipped (non-interactive; use --force): {name}\",\n \"packs.inboxSkip\": \" Skipping inbox: {message}\",\n \"packs.inboxFound\": \" Inbox found {count} item(s) \u2192 {level}\",\n \"packs.alreadyDone\": \" Already processed, skip: {name}\",\n \"packs.dryRunExtract\": \" dry-run extract: {name}\",\n \"packs.noPackRoot\": \" Pack root not found: {name}\",\n \"packs.installedEnabled\": \" Installed & enabled {kind}: {name} v{version}\",\n \"packs.installFailed\": \" Install failed {name}: {reason}\",\n \"packs.listEmpty\": \"(none)\",\n \"packs.list.bpHeader\": \"Behavior packs:\",\n \"packs.list.rpHeader\": \"Resource packs:\",\n \"packs.list.on\": \"on \",\n \"packs.list.off\": \"off\",\n \"packs.doctor.parseFail\": \"{file} could not be parsed\",\n \"packs.doctor.missingDir\": \"List has uuid but directory missing ({kind}): {uuid}\",\n \"packs.doctor.versionMismatch\": \"Version mismatch ({kind}): {folder} list {listVer} vs disk {diskVer}\",\n \"packs.doctor.notEnabled\": \"Installed but not enabled: [{kind}] {folder} ({uuid})\",\n \"packs.doctor.ok\": \"doctor: no issues found\",\n \"packs.doctor.found\": \"doctor found {count} issue(s):\\n{list}\",\n \"packs.notFound\": \"Pack not found: {id}\",\n \"packs.toggleDone\": \"{verb} {folder} done. {hint}\",\n \"packs.bump.usage\": \"Usage: packs bump <uuid|folder> (RP only)\",\n \"packs.bump.rpOnly\": \"packs bump only supports resource packs (RP)\",\n \"packs.bumped\": \"Bumped {folder} \u2192 v{version}. {restart}; {rejoin}\",\n \"packs.pathMissing\": \"Path does not exist: {path}\",\n \"packs.notArchive\": \"Not a pack directory or .zip/.mcpack/.mcaddon\",\n \"packs.noManifestRoot\": \"No pack root with manifest.json found\",\n \"packs.installedLine\": \"Installed & enabled: {name} v{version} ({kind})\",\n \"packs.skipFailLine\": \"Skipped/failed: {name} ({reason})\",\n \"packs.inboxEmpty\": \"Inbox is empty\",\n \"packs.search.usage\": \"Usage: packs search <query> (CurseForge remote; requires API key)\",\n \"packs.bind.usage\": \"Usage: packs bind <uuid|folder> <projectId|slug|url>\",\n \"packs.unbind.usage\": \"Usage: packs unbind <uuid|folder>\",\n \"packs.unbindOk\": \"Unbound {uuid} (or edit {path})\",\n \"packs.unbindMiss\": \"No binding found: {id}\",\n \"packs.update.usage\": \"Usage: packs update <uuid|folder|--all>\",\n \"packs.toggle.usage\": \"Usage: packs {verb} <uuid|folder>\",\n \"packs.uninstall.usage\":\n \"Usage: packs uninstall [uuid|folder...] [--purge] [--no-paired]\\n No args + TTY \u2192 multi-select; multiple ids allowed\",\n \"packs.uninstall.protected\": \"Refusing to uninstall platform pack: {folder} (use sfmc mod)\",\n \"packs.uninstall.trashed\": \"Uninstalled to recycle bin: {folder}\\n \u2192 {dest}\",\n \"packs.uninstall.deleted\": \"Uninstalled and deleted: {folder}\",\n \"packs.uninstall.dirMissing\": \"Removed from enable list; directory already missing: {folder}\",\n \"packs.uninstall.bindingRemoved\": \"Cleared update-source binding: {uuid}\",\n \"packs.uninstall.pick\": \"Select packs to uninstall (space to toggle, enter to confirm)\",\n \"packs.uninstall.summary\": \"Will uninstall {count} item(s) (including paired RPs):\",\n \"packs.uninstall.confirm\": \"Uninstall these {count} item(s)?\",\n \"packs.uninstall.cancelled\": \"Uninstall cancelled\",\n \"packs.uninstall.none\": \"No uninstallable packs\",\n \"packs.uninstall.pairedOf\": \"(paired with {folder})\",\n \"packs.install.usage\": \"Usage: packs install [path|--inbox] [--force]\",\n \"packs.installInbox\": \"install inbox: installed={installed} skipped={skipped} failed={failed}\",\n \"packs.scanResult\": \"scan: installed={installed} skipped={skipped} failed={failed}\",\n \"packs.unknownSub\": \"Unknown packs subcommand: {verb}\\n\",\n \"packs.usage.title\": \"{cmd} (alias {alias}) \u2014 world-side BP/RP\",\n \"packs.usage.bump\": \"RP only; patch version +1\",\n \"packs.usage.cfSearch\": \"CurseForge search (API key required)\",\n \"packs.usage.inbox\": \"Inbox: {path}\",\n \"packs.usage.trash\": \"Uninstall recycle bin: {path} (pack-update.json \u2192 uninstall.recycleBin)\",\n \"packs.usage.sources\": \"Update source bindings: {path} (edit enabled/projectId)\",\n \"packs.usage.enableNote\": \"Install enables via world_*_packs.json by default; {hint}.\",\n \"packs.usage.moduleNote\": \"For module aggregation use {cmd} (not this command).\",\n\n \"packUpdate.needKey\":\n \"No pack update provider configured. Set providers.*.apiKey in {path} (or the matching env var). CurseForge: get a Studios key from https://console.curseforge.com/ \u2192 providers.curseforge.apiKey / CURSEFORGE_API_KEY (not the Upload API UUID token)\",\n \"packUpdate.probeNoName\": \"Cannot derive a searchable name from header/folder\",\n \"packUpdate.probeQueries\": \"Probe sources header={header} folder={folder}\\n \u2192 {queries}\",\n \"packUpdate.probeFail\": \"Source probe failed: {message}\",\n \"packUpdate.probeMiss\": \"No CurseForge match for: {name}\",\n \"packUpdate.probeLowScore\": \"Low similarity: {name} \u2192 {hit} ({score}) {url}\",\n \"packUpdate.probeHit\": \"Possible update source: {name} \u2192 {hit} ({score})\\n {url}\",\n \"packUpdate.editHint\": \"You can later edit {path} to change/disable sources (enabled: false)\",\n \"packUpdate.confirmBind\": \"Bind this CurseForge project as update source? {hit}\",\n \"packUpdate.probeAutoBind\": \"Non-interactive: auto-binding \u2192 {provider}:{slug}\\n {path}\",\n \"packUpdate.probeNoAutoBind\": \"Non-interactive: not auto-binding; use packs bind\",\n \"packUpdate.bindSkipped\": \"Bind skipped\",\n \"packUpdate.bindOk\": \"Bound {uuid} \u2192 {provider}:{slug} [{enabled}]\\n file: {path}\",\n \"packUpdate.bindBpOnly\": \"Only behavior packs (BP) can be bound\",\n \"packUpdate.resolveFail\": \"Cannot resolve CurseForge project: {ref}\",\n \"packUpdate.searchEmpty\": \"No CurseForge results: {query}\",\n \"packUpdate.sourcesHeader\": \"config: {config}\\nbindings: {sources}\",\n \"packUpdate.sourcesEmpty\": \"No bindings yet. Install a BP to probe, or packs bind.\",\n \"packUpdate.disabled\": \"pack-update disabled in config\",\n \"packUpdate.bindingDisabled\": \"binding disabled (enabled: false)\",\n \"packUpdate.noRemoteFile\": \"No remote file available\",\n \"packUpdate.fileNewer\": \"Newer remote file: {file} (id={id})\",\n \"packUpdate.upToDate\": \"up to date\",\n \"packUpdate.needSync\": \"Remote file not yet synced into world (version {local} \u2261 {remote}, fileId={id})\",\n \"packUpdate.remoteNoBp\": \"No behavior pack in remote archive\",\n \"packUpdate.bpNewer\": \"BP update {local} \u2192 {remote}\",\n \"packUpdate.installFail\": \"Install failed: {reason}\",\n \"packUpdate.installedBp\": \"Wrote BP \u2192 {dir} (v{version})\",\n \"packUpdate.installedRp\": \"Wrote RP \u2192 {dir} (v{version})\",\n \"packUpdate.rpInstallMiss\":\n \"Archive has RP but paired resource pack was not installed (check dependencies / pairedResourceUuid)\",\n \"packUpdate.applied\": \"Updated {name} BP={bp} RP={rp}\",\n \"packUpdate.noBinding\": \"No update binding for: {id}\",\n \"packUpdate.startupFail\": \"Startup update check failed: {message}\",\n} as const;\n\nexport type MessageKey = keyof typeof en;\n"],
|
|
5
|
-
"mappings": "AAIO,MAAM,KAAK;AAAA;AAAA,EAEhB,oBAAoB;AAAA,EACpB,eAAe;AAAA,EACf,mBAAmB;AAAA,EACnB,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,yBAAyB;AAAA,EACzB,uBAAuB;AAAA,EACvB,eAAe;AAAA,EACf,eAAe;AAAA,EACf,eAAe;AAAA,EACf,eAAe;AAAA,EACf,cAAc;AAAA;AAAA,EAGd,kBAAkB;AAAA,EAClB,cAAc;AAAA,EACd,kBAAkB;AAAA,EAClB,gBAAgB;AAAA,EAChB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA;AAAA,EAGjB,oBAAoB;AAAA,EACpB,yBAAyB;AAAA,EACzB,gBAAgB;AAAA,EAChB,qBAAqB;AAAA,EACrB,eAAe;AAAA;AAAA,EAGf,kBAAkB;AAAA,EAClB,mBAAmB;AAAA,EACnB,qBAAqB;AAAA,EACrB,iBAAiB;AAAA,EACjB,kBAAkB;AAAA,EAClB,oBAAoB;AAAA,EACpB,wBAAwB;AAAA,EACxB,2BAA2B;AAAA,EAC3B,2BAA2B;AAAA,EAC3B,wBAAwB;AAAA,EACxB,sBAAsB;AAAA,EACtB,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,oBAAoB;AAAA;AAAA,EAGpB,cAAc;AAAA,EACd,mBAAmB;AAAA,EACnB,cAAc;AAAA,EACd,wBAAwB;AAAA,EACxB,kBAAkB;AAAA,EAClB,iBAAiB;AAAA,EACjB,qBAAqB;AAAA,EACrB,mBAAmB;AAAA,EACnB,uBAAuB;AAAA,EACvB,uBAAuB;AAAA,EACvB,wBAAwB;AAAA,EACxB,qBAAqB;AAAA,EACrB,sBAAsB;AAAA,EACtB,wBAAwB;AAAA,EACxB,eAAe;AAAA,EACf,aAAa;AAAA,EACb,cAAc;AAAA,EACd,aAAa;AAAA,EACb,gBAAgB;AAAA,EAChB,aAAa;AAAA,EACb,uBAAuB;AAAA,EACvB,eAAe;AAAA,EACf,uBAAuB;AAAA,EACvB,sBAAsB;AAAA,EACtB,sBAAsB;AAAA,EACtB,uBAAuB;AAAA,EACvB,sBAAsB;AAAA,EACtB,qBAAqB;AAAA,EACrB,qBAAqB;AAAA,EACrB,wBAAwB;AAAA,EACxB,yBAAyB;AAAA,EACzB,uBAAuB;AAAA,EACvB,oBAAoB;AAAA,EACpB,sBAAsB;AAAA,EACtB,uBAAuB;AAAA,EACvB,yBAAyB;AAAA,EACzB,sBAAsB;AAAA,EACtB,oBAAoB;AAAA,EACpB,sBAAsB;AAAA,EACtB,
|
|
4
|
+
"sourcesContent": ["/**\n * English message catalog \u2014 source of truth for MessageKey.\n * Placeholders use {name} form; chalk stays at call sites.\n */\nexport const en = {\n /* \u2500\u2500\u2500 common \u2500\u2500\u2500 */\n \"common.cancelled\": \"Cancelled\",\n \"common.done\": \"Done\",\n \"common.required\": \"Required\",\n \"common.error\": \"Error: {message}\",\n \"common.fatal\": \"Fatal\",\n \"common.unknownCommand\": \"Unknown command: {cmd}\",\n \"common.unknownShort\": \"Unknown: {cmd} (try: help)\",\n \"common.tips\": \"Tips\",\n \"common.path\": \"Path\",\n \"common.hint\": \"Hint\",\n \"common.none\": \"(none)\",\n \"common.all\": \"ALL\",\n\n /* \u2500\u2500\u2500 locale \u2500\u2500\u2500 */\n \"locale.current\": \"Current locale: {locale}\",\n \"locale.set\": \"Locale set to {locale}\",\n \"locale.invalid\": \"Unknown locale: {value} (try: zh-CN, en)\",\n \"locale.usage\": \"Usage: locale [zh-CN|en|zh|cn]\",\n \"locale.wizard\": \"CLI language / \u754C\u9762\u8BED\u8A00\",\n \"locale.opt.zh\": \"\u7B80\u4F53\u4E2D\u6587\",\n \"locale.opt.en\": \"English\",\n\n /* \u2500\u2500\u2500 CLI channel gates \u2500\u2500\u2500 */\n \"cli.externalOnly\": \"Command `{cmd}` is external-only (not available in the REPL).\",\n \"cli.externalOnly.hint\": \"Run from a shell: sfmc {cmd}\",\n \"cli.replOnly\": \"Command `{cmd}` is REPL-only.\",\n \"cli.replOnly.hint\": \"Start the interactive CLI with `sfmc` (no args), then run it there.\",\n \"cli.needTty\": \"Command `{cmd}` requires an interactive TTY.\",\n\n /* \u2500\u2500\u2500 debug (BDS config) \u2500\u2500\u2500 */\n \"debug.state.on\": \"ON\",\n \"debug.state.off\": \"OFF\",\n \"debug.statusTitle\": \"BDS debug config\",\n \"debug.enabled\": \"sfmc_debug = true (BDS console debug logs enabled on next reload)\",\n \"debug.disabled\": \"sfmc_debug = false (BDS console debug logs disabled on next reload)\",\n \"debug.sentry.set\": \"SENTRY_DSN set: {dsn}\",\n \"debug.sentry.removed\": \"SENTRY_DSN removed\",\n \"debug.sentry.alreadyOff\": \"SENTRY_DSN already absent\",\n \"debug.sentry.dsnMissing\": \"--dsn <value> required\",\n \"debug.sentry.unknown\": \"Unknown sentry action: {action}\",\n \"debug.sentry.usage\": \"Usage: debug sentry on --dsn <dsn> | debug sentry off\",\n \"debug.unknown\": \"Unknown debug subcommand: {sub}\",\n \"debug.usage\": \"Usage: debug status | enable | disable | sentry on --dsn | sentry off\",\n \"debug.reloadHint\": \"Run `sfmc mod reload` or restart BDS to take effect.\",\n\n /* \u2500\u2500\u2500 help \u2500\u2500\u2500 */\n \"help.title\": \"sfmc \u2014 ScriptsForMinecraftServer CLI\",\n \"help.title.repl\": \"sfmc REPL\",\n \"help.usage\": \"Usage:\",\n \"help.section.options\": \"Options\",\n \"help.opt.packs\": \"Pack context, then packs subcommand; i = install\",\n \"help.opt.lang\": \"UI language for this process\",\n \"help.addon.compat\": \"Compat: -p/--packs flag (prefer `sfmc packs \u2026`)\",\n \"help.slash.hint\": \"Lines starting with / list commands. Tab switches send target.\",\n \"help.shortcut.slash\": \"Command list\",\n \"help.shortcut.ctrlp\": \"Command list\",\n \"help.shortcut.cursor\": \"Move cursor\",\n \"repl.palette.hint\": \"\u2191\u2193 \u00B7 Enter \u00B7 Esc\",\n \"repl.palette.empty\": \"No matches\",\n \"help.section.service\": \"\u2500\u2500\u2500 Service Control \u2500\u2500\u2500\",\n \"help.status\": \"Show all services status\",\n \"help.logs\": \"Open log filter window (on-disk logs)\",\n \"help.start\": \"Start a service\",\n \"help.stop\": \"Stop a service\",\n \"help.restart\": \"Restart a service\",\n \"help.send\": \"Send command to a service\",\n \"help.section.update\": \"\u2500\u2500\u2500 BDS Update \u2500\u2500\u2500\",\n \"help.update\": \"Check / apply BDS update\",\n \"help.section.remote\": \"\u2500\u2500\u2500 Remote Agent \u2500\u2500\u2500\",\n \"help.remote.status\": \"Show enrollment status\",\n \"help.remote.enroll\": \"Enroll with a controller\",\n \"help.remote.disable\": \"Disconnect + disable agent\",\n \"help.section.debug\": \"\u2500\u2500\u2500 BDS debug \u2500\u2500\u2500\",\n \"help.debug.status\": \"View sfmc_debug / SENTRY_DSN state\",\n \"help.debug.toggle\": \"Toggle sfmc_debug\",\n \"help.debug.sentry.on\": \"Set SENTRY_DSN\",\n \"help.debug.sentry.off\": \"Remove SENTRY_DSN\",\n \"help.section.module\": \"\u2500\u2500\u2500 Module Management \u2500\u2500\u2500\",\n \"help.module.list\": \"List installed modules\",\n \"help.module.search\": \"Search registry / show module info\",\n \"help.module.install\": \"Install a module\",\n \"help.module.uninstall\": \"Remove installed module\",\n \"help.module.verify\": \"Verify SHA-256 integrity\",\n \"help.module.info\": \"Show module details\",\n \"help.module.toggle\": \"Toggle module\",\n \"help.module.build\": \"Build BP+RP from enabled modules\",\n \"help.module.reload\": \"Build + deploy BP; send reload to BDS\",\n \"help.module.watch\": \"Watch sapi/src and auto rebuild+reload\",\n \"help.module.test\": \"Run module tests (node --test + @sfmc-bds/sdk/testing)\",\n \"help.module.publish\": \"Nanny-mode npm publish (login hint + dry-run + bump + thin-index PR)\",\n \"help.section.addon\": \"\u2500\u2500\u2500 Addon Manager \u2500\u2500\u2500\",\n \"help.addon\": \"World BP/RP inbox manager\",\n \"help.packs.list\": \"List world packs\",\n \"help.packs.search\": \"Search pack sources\",\n \"help.packs.enable\": \"Enable a pack\",\n \"help.packs.disable\": \"Disable a pack\",\n \"help.packs.doctor\": \"Diagnose pack wiring\",\n \"help.packs.path\": \"Show pack paths\",\n \"help.section.general\": \"\u2500\u2500\u2500 General \u2500\u2500\u2500\",\n \"help.init\": \"Setup wizard\",\n \"help.locale\": \"Show / set CLI language\",\n \"help.version\": \"Show version\",\n \"help.help\": \"Show this help\",\n \"help.quit\": \"Exit\",\n \"help.shortcuts\": \"Shortcuts:\",\n \"help.shortcut.tab\": \"Send target / list select\",\n \"help.shortcut.right\": \"Accept suggestion\",\n \"help.shortcut.ctrll\": \"Filter log level / source / history\",\n \"help.shortcut.history\": \"Command history\",\n\n /* \u2500\u2500\u2500 repl \u2500\u2500\u2500 */\n \"repl.stopping\": \"stopping services...\",\n \"repl.bye\": \"bye\",\n \"repl.forceStop\": \"force stopping services...\",\n \"repl.nonInteractive\": \" Non-interactive mode (pipe detected)\\n\",\n \"repl.historyHeader\": \"\u2500\u2500 history {count} line(s) \u2500\u2500\",\n \"repl.filter\": \"filter: {level} / {source} / {history}\",\n \"repl.followRequiresTty\": \"follow mode requires TTY\",\n \"repl.logsReplOnly\": \"logs is only available in the interactive REPL (opens filter window)\",\n \"repl.history.live\": \"live only (no replay)\",\n \"repl.history.last50\": \"last 50\",\n \"repl.history.last100\": \"last 100\",\n \"repl.history.last500\": \"last 500\",\n \"repl.history.last1000\": \"last 1000\",\n \"repl.history.last1min\": \"last 1 min\",\n \"repl.history.last5min\": \"last 5 min\",\n \"repl.history.last15min\": \"last 15 min\",\n \"repl.history.last1hour\": \"last 1 hour\",\n \"repl.history.all\": \"all buffered\",\n\n /* \u2500\u2500\u2500 services / commands \u2500\u2500\u2500 */\n \"svc.header\": \"Services\",\n \"svc.col.name\": \"Name\",\n \"svc.col.status\": \"Status\",\n \"svc.col.owner\": \"Owner\",\n \"svc.col.pid\": \"PID\",\n \"svc.col.uptime\": \"Uptime\",\n \"svc.state.running\": \"Running\",\n \"svc.state.stopped\": \"Stopped\",\n \"svc.owner.managed\": \"Managed\",\n \"svc.owner.external\": \"External\",\n \"svc.owner.none\": \"\u2014\",\n \"svc.running\": \"Running\",\n \"svc.runningExternal\": \"Running (external)\",\n \"svc.stopped\": \"Stopped\",\n \"svc.unknown\": \"Unknown service: {name} (try: {list})\",\n \"svc.logs.usage\": \"Usage: logs <service> [-n N] [-f]\",\n \"svc.logs.empty\": \"(no logs yet)\",\n \"svc.logs.header\": \"{title} logs (last {count}):\",\n \"svc.start.usage\": \"Usage: sfmc start <service>|-all\",\n \"svc.start.usageShort\": \"Usage: start <service>|-all\",\n \"svc.stop.usage\": \"Usage: sfmc stop <service>|-all\",\n \"svc.stop.usageShort\": \"Usage: stop <service>|-all\",\n \"svc.restart.usage\": \"Usage: sfmc restart <service>|-all\",\n \"svc.restart.usageShort\": \"Usage: restart <service>|-all\",\n \"svc.alreadyRunning\": \"{title} already running (PID {pid})\",\n \"svc.alreadyStarting\": \"{title} already starting...\",\n \"svc.started\": \"{title} started\",\n \"svc.startFailed\": \"{title} failed: {message}\",\n \"svc.alreadyStopped\": \"{title} already stopped\",\n \"svc.alreadyStopping\": \"{title} already stopping...\",\n \"svc.stoppedMsg\": \"{title} stopped\",\n \"svc.stopFailed\": \"{title} stop failed: {message}\",\n \"svc.send.usage\": \"Usage: send <service> <message>\",\n \"svc.notRunning\": \"{title} not running\",\n \"svc.writeFailed\": \"write failed\",\n \"svc.restarted\": \"{title} restarted\",\n \"svc.restartFailed\": \"{title} restart failed: {message}\",\n \"svc.allStarted\": \"All services started\",\n \"svc.allStopped\": \"All services stopped\",\n \"svc.updateComplete\": \"update complete\",\n \"svc.updateExited\": \"update exited with code {code}\",\n \"svc.updateError\": \"update error: {message}\",\n \"svc.updateStartBds\": \"update: starting BDS via supervisor\",\n \"svc.bdsStarted\": \"BDS started (supervised)\",\n \"svc.bdsStartFailed\": \"BDS start failed: {message}\",\n \"svc.bdsStoppedForUpdate\": \"BDS was stopped for update; run `start bds` when ready\",\n \"svc.bdsAlreadyRunning\": \"BDS already running ({kind}, PID {pid})\",\n \"svc.stdinUnavailable\": \"{title} was started externally; stdin commands unavailable\",\n \"svc.stoppedExternal\": \"{title} stopped (external process)\",\n\n /* \u2500\u2500\u2500 remote \u2500\u2500\u2500 */\n \"remote.enrolled\": \"Enrolled remote agent: {id}\",\n \"remote.disabled\": \"Remote agent disabled\",\n \"remote.usage\":\n \"Usage: sfmc remote enroll <controller-url> <enrollment-token> [name] | sfmc remote status | sfmc remote disable\",\n \"remote.usageShort\":\n \"Usage: remote enroll <controller-url> <enrollment-token> [name] | remote status | remote disable\",\n\n /* \u2500\u2500\u2500 wizard \u2500\u2500\u2500 */\n \"wizard.intro\": \"Setup Wizard =D\",\n \"wizard.rerun\": \"Already initialized. Re-run setup?\",\n \"wizard.skipped\": \"Setup skipped\",\n \"wizard.step1\": \"Step 1 - Runtime Environment\",\n \"wizard.runtimeRoot\": \"Runtime root: {root}\",\n \"wizard.npmMissing\": \"npm runtime is missing required directories: {list}\",\n \"wizard.prepFailed\": \"Runtime preparation failed: {message}\",\n \"wizard.step2\": \"Step 2 - External Runtimes\",\n \"wizard.step2Note\": \"Select paths for BDS, Database, and LLBOT\",\n \"wizard.bdsDir\": \"BDS installation directory\",\n \"wizard.cannotCreateBds\": \"Cannot create BDS installation directory: {dir}\",\n \"wizard.enableLlbot\": \"Enable LLBot (QQ bridge)?\",\n \"wizard.llbotDir\": \"LLBot runtime directory\",\n \"wizard.usingDefault\": \"Using default: {path}\",\n \"wizard.dbDir\": \"Database storage directory\",\n \"wizard.dbPort\": \"Database server port:\",\n \"wizard.portRange\": \"Enter 1024\u201365535\",\n \"wizard.valueRequired\": \"Value is required!\",\n \"wizard.step3\": \"Step 3 - BDS Environment\",\n \"wizard.bdsFound\": \"Found at {path}\",\n \"wizard.bdsNotFound\": \"Not found at {path}\",\n \"wizard.eula\":\n \"Do you agree to the EULA(https://www.minecraft.net/en-us/eula) published by Mojang? You must agree to it before you can use this program.\",\n \"wizard.disagreed\": \"Disagreed.\",\n \"wizard.downloadBds\": \"Download BDS now?\",\n \"wizard.selectChannel\": \"Select channel:\",\n \"wizard.channel.release\": \"Release\",\n \"wizard.channel.releaseHint\": \"stable\",\n \"wizard.channel.preview\": \"Preview\",\n \"wizard.channel.previewHint\": \"may be unstable\",\n \"wizard.cannotCreateBackup\": \"Cannot create BDS backup directory: {dir}\",\n \"wizard.backupDir\": \"BDS backup directory\",\n \"wizard.preserve\": \"Files to preserve on update(When updates are enabled next time):\",\n \"wizard.preserve.serverProps\": \"server config\",\n \"wizard.preserve.worlds\": \"world data\",\n \"wizard.preserve.config\": \"config directory\",\n \"wizard.updaterTip\":\n \"If could not find BDS runtime, updater will be started later.\\n You can configure updater later in configs/bds_updater.json\",\n \"wizard.step4\": \"Step 4 - Modules\",\n \"wizard.modulesFound\": \"Found {count} optional modules\",\n \"wizard.modulesNone\": \"No modules catalog found\",\n \"wizard.enableModules\": \"Enable modules:\",\n \"wizard.emptyHint\": \"(empty)\",\n \"wizard.updatingConfigs\": \"Updating configs\",\n \"wizard.configsUpdated\": \"Configs updated\",\n \"wizard.updatingModules\": \"Updating module state\",\n \"wizard.modulesUpdated\": \"Module state updated\",\n \"wizard.initDb\": \"Initializing database\",\n \"wizard.dbTimeout\": \"Database startup timed out\",\n \"wizard.dbOk\": \"Database initialized\",\n \"wizard.downloadingBds\": \"Downloading BDS\",\n \"wizard.downloadFail\": \"Downloaded Failure.\",\n \"wizard.bdsDownloaded\": \"BDS downloaded\",\n \"wizard.done\": \"Done! Run help to learn managing.\",\n \"wizard.installing\": \"Installing {count} module(s) from first-party registry\",\n \"wizard.installed\": \"{count} installed\",\n \"wizard.installFailed\": \"install failed: {message}\\nYou can retry with: sfmc mod install <id>\",\n \"wizard.fetchMissing\": \"fetch-module missing \u2014 run `sfmc mod install <id>` later for each of: {list}\",\n \"wizard.noModulesSelected\":\n \"No modules selected \u2014 behavior pack will be empty until you install one with `sfmc mod install <id>`.\",\n \"wizard.buildingBp\": \"Building behavior pack\",\n \"wizard.buildFailed\": \"build failed: {message}\\nRun `sfmc mod build` later to retry.\",\n \"wizard.deploying\": \"Deploying to {path}\",\n \"wizard.restartBds\": \"Restart BDS to load the new behavior pack.\",\n \"wizard.deployFailed\": \"deploy failed: {message}\\nRun `sfmc mod reload` after fixing bds_path in configs/.\",\n\n /* \u2500\u2500\u2500 prompts \u2500\u2500\u2500 */\n \"prompt.enterPath\": \"Enter path\",\n \"prompt.browse\": \"Browse\u2026\",\n \"prompt.browseHint\": \"Open system folder picker\",\n\n /* \u2500\u2500\u2500 reload \u2500\u2500\u2500 */\n \"reload.buildOnly\": \"(deploy done; type reload in BDS/game, or omit --build-only to send automatically)\",\n \"reload.bdsNotRunning\":\n \"BDS is not running \u2014 build+deploy finished. After start, type reload in BDS console or in-game.\",\n \"reload.sent\": \"Sent reload to BDS\",\n\n /* \u2500\u2500\u2500 module watch \u2500\u2500\u2500 */\n \"watch.usage\":\n \"Usage: mod watch [--from local[:<path>]] [--no-reload]\\n\" +\n \" Watches sapi/src in the cwd module repo by default; sapi/manifest.json and tsconfig.json changes only print 'please restart BDS'.\\n\" +\n \" Ctrl+C to exit.\",\n \"watch.banner\": \"[watch] watching module: {path}\",\n \"watch.hint\":\n \"[watch] changes under sapi/src/** trigger rebuild + deploy + reload; everything else is ignored.\",\n \"watch.noSapiDir\": \"[watch] sapi directory not found: {path}\",\n \"watch.noSapiSrc\":\n \"[watch] sapi/src not found: {path} (rebuilds only trigger after src is in place)\",\n \"watch.recursiveFallback\":\n \"[watch] recursive watch failed; falling back to non-recursive (sapi/src only): {message}\",\n \"watch.manifestOrTsconfig\":\n \"[watch] {kind} changed \u2014 SAPI caches the manifest at startup; restart BDS to apply. files: {files}\",\n \"watch.rebuild.start\": \"[watch] rebuild triggered ({count} files): {files}\",\n \"watch.rebuild.ok\": \"[watch] rebuild OK ({ms} ms)\",\n \"watch.rebuild.fail\": \"[watch] rebuild FAILED ({ms} ms)\\n{output}\",\n \"watch.rebuild.error\": \"[watch] rebuild error: {message}\",\n \"watch.reload.sent\": \"[watch] reload sent\",\n \"watch.reload.manualHint\":\n \"[watch] --no-reload mode: type reload in BDS console or in-game\",\n \"watch.stopped\": \"[watch] stopped\",\n\n /* \u2500\u2500\u2500 module publish \u2500\u2500\u2500 */\n \"publish.banner\": \"[publish] nanny-mode publish (npm + thin-index PR)\",\n \"publish.noLogin\": \"[publish] not logged in to npm\",\n \"publish.noLoginHint\":\n \" \u2192 run `npm login --auth-type=web` (browser OAuth, no local credential)\",\n \"publish.precheckFail\":\n \"[publish] precheck failed; fix the errors above and retry\",\n \"publish.dryRun.summary\":\n \"[publish] --dry-run done; run `sfmc mod publish [--bump <lvl>]` for real\",\n \"publish.done\": \"[publish] done \u2713\",\n\n /* \u2500\u2500\u2500 bp \u2500\u2500\u2500 */\n \"bp.usage\": \"Usage: sfmc behavior-pack|bp <build|deploy>\",\n\n /* \u2500\u2500\u2500 module commands \u2500\u2500\u2500 */\n \"mod.usage\": \"Usage: sfmc {cmds} <{subs}> [args]\",\n \"mod.list.title\": \"Installed modules\",\n \"mod.noneInstalled\": \"\\nNo modules installed. Drop a module folder under {dir} or run `sfmc mod install <id>`.\\n\",\n \"mod.notInRegistry\": 'Module \"{query}\" not found in first-party registry.',\n \"mod.info.usage\": \"Usage: mod info <id>\",\n \"mod.notInstalledAt\": \"Module {id} not installed at {path}\",\n \"mod.notInstalled\": \"Module {id} not installed\",\n \"mod.verifyOk\": \"{id} ok\\n fingerprint: {fp}\\n\",\n \"mod.dbUnreachable\": \"Cannot reach db-server at {url}: {message}. Is db-service running? (sfmc> start db)\",\n \"mod.toggleFailed\": \"{action} {id} failed: {err}\",\n \"mod.action.enabled\": \"enabled\",\n \"mod.action.disabled\": \"disabled\",\n \"mod.toggleOk\": \"{label} {id}\",\n \"mod.toggleBadBody\": \"{action} {id} returned: {text}\",\n \"mod.enable.usage\": \"Usage: mod enable <id>\",\n \"mod.disable.usage\": \"Usage: mod disable <id>\",\n \"mod.install.usage\":\n \"Usage: mod install <id>\\n mod install <id> --from <source> [--link] [--sha256 <hex>]\",\n \"mod.fromUnknown\": \"unknown --from source: {value}. Use npm:|local[:<path>]|tgz:|zip:|dir:|github:<repo>[@tag]\",\n \"mod.fetchMissing\": \"fetch-module not found. Install @sfmc-bds/sfmc or run inside the monorepo.\",\n \"mod.uninstall.usage\": \"Usage: mod uninstall <id>\",\n \"mod.notInstalledFolder\": \"Module {id} not installed (no folder at {path})\",\n \"mod.removed\": \"Removed {id} from {path}\\n\",\n\n /* \u2500\u2500\u2500 pack lifecycle \u2500\u2500\u2500 */\n \"pack.built\": \"built packs at {path}\",\n \"pack.buildFailed\": \"pack build failed: {message}\",\n \"pack.deployed\": \"deployed packs\",\n \"pack.deployFailed\": \"pack deploy failed: {message}\",\n \"pack.statusFailed\": \"pack status failed: {message}\",\n \"pack.listFailed\": \"pack list failed: {message}\",\n \"pack.noCatalog\": \"no deployed catalog \u2014 run `sfmc pack deploy` first\",\n \"pack.noUuid\": \"no {kind} pack uuid in catalog\",\n \"pack.actionFailed\": \"{action} failed: {detail}\",\n \"pack.enabledOk\": \"enabled {kind} pack {uuid}\",\n \"pack.disabledOk\": \"disabled {kind} pack {uuid}\",\n \"pack.actionErr\": \"pack {action} failed: {message}\",\n \"pack.usage\": \"Usage: sfmc pack <{subs}> [behavior|resource]\",\n\n /* \u2500\u2500\u2500 world packs / addon \u2500\u2500\u2500 */\n \"packs.restartHint\": \"Restart BDS for changes to take effect\",\n \"packs.rejoinHint\": \"Clients must rejoin to download resource packs\",\n \"packs.conflict\": \"Conflict detected:\",\n \"packs.conflict.existing\": \" Existing: {name} v{version} {uuid}\\n {dir}\",\n \"packs.conflict.incoming\": \" Incoming: {name} v{version} {uuid}\",\n \"packs.overwriteAsk\": \"Overwrite existing pack (same UUID, version not newer)?\",\n \"packs.badManifest\": \"Unrecognized manifest (need resources/data/script module and header name/uuid/version)\",\n \"packs.skippedNoOverwrite\": \"Skipped (not overwritten)\",\n \"packs.conflictSkip\": \" Conflict skipped (non-interactive; use --force): {name}\",\n \"packs.inboxSkip\": \" Skipping inbox: {message}\",\n \"packs.inboxFound\": \" Inbox found {count} item(s) \u2192 {level}\",\n \"packs.alreadyDone\": \" Already processed, skip: {name}\",\n \"packs.dryRunExtract\": \" dry-run extract: {name}\",\n \"packs.noPackRoot\": \" Pack root not found: {name}\",\n \"packs.installedEnabled\": \" Installed & enabled {kind}: {name} v{version}\",\n \"packs.installFailed\": \" Install failed {name}: {reason}\",\n \"packs.listEmpty\": \"(none)\",\n \"packs.list.bpHeader\": \"Behavior packs:\",\n \"packs.list.rpHeader\": \"Resource packs:\",\n \"packs.list.on\": \"on \",\n \"packs.list.off\": \"off\",\n \"packs.doctor.parseFail\": \"{file} could not be parsed\",\n \"packs.doctor.missingDir\": \"List has uuid but directory missing ({kind}): {uuid}\",\n \"packs.doctor.versionMismatch\": \"Version mismatch ({kind}): {folder} list {listVer} vs disk {diskVer}\",\n \"packs.doctor.notEnabled\": \"Installed but not enabled: [{kind}] {folder} ({uuid})\",\n \"packs.doctor.ok\": \"doctor: no issues found\",\n \"packs.doctor.found\": \"doctor found {count} issue(s):\\n{list}\",\n \"packs.notFound\": \"Pack not found: {id}\",\n \"packs.toggleDone\": \"{verb} {folder} done. {hint}\",\n \"packs.bump.usage\": \"Usage: packs bump <uuid|folder> (RP only)\",\n \"packs.bump.rpOnly\": \"packs bump only supports resource packs (RP)\",\n \"packs.bumped\": \"Bumped {folder} \u2192 v{version}. {restart}; {rejoin}\",\n \"packs.pathMissing\": \"Path does not exist: {path}\",\n \"packs.notArchive\": \"Not a pack directory or .zip/.mcpack/.mcaddon\",\n \"packs.noManifestRoot\": \"No pack root with manifest.json found\",\n \"packs.installedLine\": \"Installed & enabled: {name} v{version} ({kind})\",\n \"packs.skipFailLine\": \"Skipped/failed: {name} ({reason})\",\n \"packs.inboxEmpty\": \"Inbox is empty\",\n \"packs.search.usage\": \"Usage: packs search <query> (CurseForge remote; requires API key)\",\n \"packs.bind.usage\": \"Usage: packs bind <uuid|folder> <projectId|slug|url>\",\n \"packs.unbind.usage\": \"Usage: packs unbind <uuid|folder>\",\n \"packs.unbindOk\": \"Unbound {uuid} (or edit {path})\",\n \"packs.unbindMiss\": \"No binding found: {id}\",\n \"packs.update.usage\": \"Usage: packs update <uuid|folder|--all>\",\n \"packs.toggle.usage\": \"Usage: packs {verb} <uuid|folder>\",\n \"packs.uninstall.usage\":\n \"Usage: packs uninstall [uuid|folder...] [--purge] [--no-paired]\\n No args + TTY \u2192 multi-select; multiple ids allowed\",\n \"packs.uninstall.protected\": \"Refusing to uninstall platform pack: {folder} (use sfmc mod)\",\n \"packs.uninstall.trashed\": \"Uninstalled to recycle bin: {folder}\\n \u2192 {dest}\",\n \"packs.uninstall.deleted\": \"Uninstalled and deleted: {folder}\",\n \"packs.uninstall.dirMissing\": \"Removed from enable list; directory already missing: {folder}\",\n \"packs.uninstall.bindingRemoved\": \"Cleared update-source binding: {uuid}\",\n \"packs.uninstall.pick\": \"Select packs to uninstall (space to toggle, enter to confirm)\",\n \"packs.uninstall.summary\": \"Will uninstall {count} item(s) (including paired RPs):\",\n \"packs.uninstall.confirm\": \"Uninstall these {count} item(s)?\",\n \"packs.uninstall.cancelled\": \"Uninstall cancelled\",\n \"packs.uninstall.none\": \"No uninstallable packs\",\n \"packs.uninstall.pairedOf\": \"(paired with {folder})\",\n \"packs.install.usage\": \"Usage: packs install [path|--inbox] [--force]\",\n \"packs.installInbox\": \"install inbox: installed={installed} skipped={skipped} failed={failed}\",\n \"packs.scanResult\": \"scan: installed={installed} skipped={skipped} failed={failed}\",\n \"packs.unknownSub\": \"Unknown packs subcommand: {verb}\\n\",\n \"packs.usage.title\": \"{cmd} (alias {alias}) \u2014 world-side BP/RP\",\n \"packs.usage.bump\": \"RP only; patch version +1\",\n \"packs.usage.cfSearch\": \"CurseForge search (API key required)\",\n \"packs.usage.inbox\": \"Inbox: {path}\",\n \"packs.usage.trash\": \"Uninstall recycle bin: {path} (pack-update.json \u2192 uninstall.recycleBin)\",\n \"packs.usage.sources\": \"Update source bindings: {path} (edit enabled/projectId)\",\n \"packs.usage.enableNote\": \"Install enables via world_*_packs.json by default; {hint}.\",\n \"packs.usage.moduleNote\": \"For module aggregation use {cmd} (not this command).\",\n\n \"packUpdate.needKey\":\n \"No pack update provider configured. Set providers.*.apiKey in {path} (or the matching env var). CurseForge: get a Studios key from https://console.curseforge.com/ \u2192 providers.curseforge.apiKey / CURSEFORGE_API_KEY (not the Upload API UUID token)\",\n \"packUpdate.probeNoName\": \"Cannot derive a searchable name from header/folder\",\n \"packUpdate.probeQueries\": \"Probe sources header={header} folder={folder}\\n \u2192 {queries}\",\n \"packUpdate.probeFail\": \"Source probe failed: {message}\",\n \"packUpdate.probeMiss\": \"No CurseForge match for: {name}\",\n \"packUpdate.probeLowScore\": \"Low similarity: {name} \u2192 {hit} ({score}) {url}\",\n \"packUpdate.probeHit\": \"Possible update source: {name} \u2192 {hit} ({score})\\n {url}\",\n \"packUpdate.editHint\": \"You can later edit {path} to change/disable sources (enabled: false)\",\n \"packUpdate.confirmBind\": \"Bind this CurseForge project as update source? {hit}\",\n \"packUpdate.probeAutoBind\": \"Non-interactive: auto-binding \u2192 {provider}:{slug}\\n {path}\",\n \"packUpdate.probeNoAutoBind\": \"Non-interactive: not auto-binding; use packs bind\",\n \"packUpdate.bindSkipped\": \"Bind skipped\",\n \"packUpdate.bindOk\": \"Bound {uuid} \u2192 {provider}:{slug} [{enabled}]\\n file: {path}\",\n \"packUpdate.bindBpOnly\": \"Only behavior packs (BP) can be bound\",\n \"packUpdate.resolveFail\": \"Cannot resolve CurseForge project: {ref}\",\n \"packUpdate.searchEmpty\": \"No CurseForge results: {query}\",\n \"packUpdate.sourcesHeader\": \"config: {config}\\nbindings: {sources}\",\n \"packUpdate.sourcesEmpty\": \"No bindings yet. Install a BP to probe, or packs bind.\",\n \"packUpdate.disabled\": \"pack-update disabled in config\",\n \"packUpdate.bindingDisabled\": \"binding disabled (enabled: false)\",\n \"packUpdate.noRemoteFile\": \"No remote file available\",\n \"packUpdate.fileNewer\": \"Newer remote file: {file} (id={id})\",\n \"packUpdate.upToDate\": \"up to date\",\n \"packUpdate.needSync\": \"Remote file not yet synced into world (version {local} \u2261 {remote}, fileId={id})\",\n \"packUpdate.remoteNoBp\": \"No behavior pack in remote archive\",\n \"packUpdate.bpNewer\": \"BP update {local} \u2192 {remote}\",\n \"packUpdate.installFail\": \"Install failed: {reason}\",\n \"packUpdate.installedBp\": \"Wrote BP \u2192 {dir} (v{version})\",\n \"packUpdate.installedRp\": \"Wrote RP \u2192 {dir} (v{version})\",\n \"packUpdate.rpInstallMiss\":\n \"Archive has RP but paired resource pack was not installed (check dependencies / pairedResourceUuid)\",\n \"packUpdate.applied\": \"Updated {name} BP={bp} RP={rp}\",\n \"packUpdate.noBinding\": \"No update binding for: {id}\",\n \"packUpdate.startupFail\": \"Startup update check failed: {message}\",\n} as const;\n\nexport type MessageKey = keyof typeof en;\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/zh-CN.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAE1C,yBAAyB;AACzB,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/zh-CN.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAE1C,yBAAyB;AACzB,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAqb3C,CAAC"}
|
|
@@ -79,9 +79,6 @@ const zhCN = {
|
|
|
79
79
|
"help.module.verify": "\u6821\u9A8C\u6A21\u5757 SHA-256 \u5B8C\u6574\u6027",
|
|
80
80
|
"help.module.info": "\u663E\u793A\u6A21\u5757\u8BE6\u60C5",
|
|
81
81
|
"help.module.toggle": "\u542F\u7528/\u7981\u7528\u6A21\u5757",
|
|
82
|
-
"help.module.create": "\u6A21\u5757\u811A\u624B\u67B6",
|
|
83
|
-
"help.module.link": "\u94FE\u63A5\u672C\u5730\u6A21\u5757",
|
|
84
|
-
"help.module.dev": "\u94FE\u63A5 + \u542F\u7528 + \u6784\u5EFA + \u90E8\u7F72",
|
|
85
82
|
"help.module.build": "\u4ECE\u5DF2\u542F\u7528\u6A21\u5757\u6784\u5EFA\u8D44\u6E90\u5305",
|
|
86
83
|
"help.module.reload": "\u6784\u5EFA\u5E76\u90E8\u7F72\u8D44\u6E90\u5305\uFF0C\u5728 BDS \u53D1\u9001 reload\u6307\u4EE4\u4EE5\u91CD\u8F7D\u811A\u672C",
|
|
87
84
|
"help.module.watch": "\u76D1\u542C sapi/src \u53D8\u66F4\u5E76\u81EA\u52A8 rebuild+reload",
|
|
@@ -272,65 +269,11 @@ const zhCN = {
|
|
|
272
269
|
"publish.dryRun.summary": "[publish] --dry-run \u5B8C\u6210\uFF1B\u6B63\u5F0F publish \u8DD1 `sfmc mod publish [--bump <lvl>]`",
|
|
273
270
|
"publish.done": "[publish] \u5B8C\u6210 \u2713",
|
|
274
271
|
"bp.usage": "\u7528\u6CD5: bp <build|deploy>",
|
|
275
|
-
/* ─── 模块脚手架─── */
|
|
276
|
-
"modwiz.needTty.create": "\u8BF7\u5728\u4EA4\u4E92\u7EC8\u7AEF\u8FD0\u884C: mod create",
|
|
277
|
-
"modwiz.needTty.link": "\u8BF7\u5728\u4EA4\u4E92\u7EC8\u7AEF\u8FD0\u884C: module link",
|
|
278
|
-
"modwiz.needTty.dev": "\u8BF7\u5728\u4EA4\u4E92\u7EC8\u7AEF\u8FD0\u884C: mod dev",
|
|
279
|
-
"modwiz.sfmcModulesPath": "sfmc-modules: {path}",
|
|
280
|
-
"modwiz.pickModulesRoot": "\u6A21\u5757\u5305\u7236\u76EE\u5F55\uFF08\u5C06\u5728\u5176\u4E0B\u521B\u5EFA <id>/\uFF09",
|
|
281
|
-
"modwiz.pickPackageRoot": "\u9009\u62E9\u6A21\u5757\u5305\u7236\u76EE\u5F55\uFF08\u5C06\u5728\u5176\u4E0B\u521B\u5EFA <id>/\uFF09",
|
|
282
|
-
"modwiz.pickAuthorPkg": "\u9009\u62E9\u4F5C\u8005\u6A21\u5757\u4ED3\u6839\u76EE\u5F55\uFF08\u542B sapi/manifest.json\uFF09",
|
|
283
|
-
"modwiz.notModulePkg": "\u4E0D\u662F\u6709\u6548\u6A21\u5757\u5305\uFF08\u7F3A\u5C11 sapi/manifest.json\uFF09: {path}",
|
|
284
|
-
"modwiz.standaloneHint": "\u5C06\u751F\u6210\u72EC\u7ACB\u5355\u5305\u4ED3\uFF08\u4E0E sfmc-module-template \u540C\u6784\uFF09\u3002sfmc-modules \u4EC5\u4E3A index\uFF0C\u4E0D\u518D\u5199\u5165 packages/\u3002",
|
|
285
|
-
"modwiz.noPackages": "\u672A\u627E\u5230 packages/ \u5B50\u76EE\u5F55: {path}",
|
|
286
|
-
"modwiz.noFetch": "\u672A\u627E\u5230 fetch-module.mjs",
|
|
287
|
-
"modwiz.enableModule": "\u542F\u7528\u8BE5\u6A21\u5757\uFF1F\uFF08\u5199\u5165 module-lock.json\uFF0C\u9700 db-server\uFF09",
|
|
288
|
-
"modwiz.buildDeploy": "\u6784\u5EFA\u5E76\u90E8\u7F72\u884C\u4E3A\u5305\uFF1F\uFF08\u5B8C\u6210\u540E\u53EF\u7528 `sfmc mod reload` \u6216\u5728 BDS/\u6E38\u620F\u5185\u8F93\u5165 reload\uFF09",
|
|
289
|
-
"modwiz.task.build": "\u6784\u5EFA\u884C\u4E3A\u5305",
|
|
290
|
-
"modwiz.task.deploy": "\u90E8\u7F72\u884C\u4E3A\u5305",
|
|
291
|
-
"modwiz.reloadHint": "\u8BF7\u7528 `sfmc mod reload`\uFF08build+deploy \u540E\u5411 BDS \u53D1 reload\uFF09\uFF1B\u4E5F\u53EF\u624B\u52A8\u5728 BDS/\u6E38\u620F\u5185\u8F93\u5165 reload\u3002",
|
|
292
|
-
"modwiz.kebab": "\u987B\u4E3A\u5C0F\u5199 kebab-case\uFF0C\u4F8B\u5982 my-feature",
|
|
293
|
-
"modwiz.createIntro": "\u6A21\u5757\u811A\u624B\u67B6",
|
|
294
|
-
"modwiz.folderId": "\u6A21\u5757\u6587\u4EF6\u5939\u540D\uFF08install id\uFF09",
|
|
295
|
-
"modwiz.dirExists": "\u76EE\u5F55\u5DF2\u5B58\u5728: {path}",
|
|
296
|
-
"modwiz.displayName": "\u663E\u793A\u540D\u79F0",
|
|
297
|
-
"modwiz.template": "\u811A\u624B\u67B6\u6A21\u677F",
|
|
298
|
-
"modwiz.tpl.minimal": "\u6700\u5C0F\u6A21\u5757",
|
|
299
|
-
"modwiz.tpl.minimalHint": "\u547D\u4EE4 + \u6743\u9650\u5360\u4F4D",
|
|
300
|
-
"modwiz.tpl.db": "\u542B DB \u6743\u9650\u5360\u4F4D",
|
|
301
|
-
"modwiz.tpl.dbHint": "manifest \u9884\u7F6E db:read/write",
|
|
302
|
-
"modwiz.noNewModule": "\u672A\u627E\u5230 tools/new-module.mjs\uFF08\u4E3B\u4ED3 tools/\uFF09",
|
|
303
|
-
"modwiz.genPackage": "\u751F\u6210 {id}\uFF08\u5355\u5305\u6839\uFF09",
|
|
304
|
-
"modwiz.skeletonWritten": "\u9AA8\u67B6\u5DF2\u5199\u5165",
|
|
305
|
-
"modwiz.createdNote": "\u5DF2\u521B\u5EFA {path}",
|
|
306
|
-
"modwiz.linkAsk": "\u94FE\u63A5\u5230\u4E3B\u4ED3 modules/packages/\uFF1F\uFF08--link\uFF0C\u6539\u6E90\u7801\u5373\u751F\u6548\uFF09",
|
|
307
|
-
"modwiz.link": "\u94FE\u63A5",
|
|
308
|
-
"modwiz.linkFailed": "\u94FE\u63A5\u5931\u8D25",
|
|
309
|
-
"modwiz.linkDone": "\u5DF2\u94FE\u63A5 {id}",
|
|
310
|
-
"modwiz.enable": "\u542F\u7528",
|
|
311
|
-
"modwiz.createDone": "\u5B8C\u6210\u3002\u6E90\u7801: {path}",
|
|
312
|
-
"modwiz.moduleCreated": "\u6A21\u5757 {id} \u5DF2\u521B\u5EFA",
|
|
313
|
-
"modwiz.linkIntro": "\u94FE\u63A5\u672C\u5730\u4F5C\u8005\u4ED3",
|
|
314
|
-
"modwiz.noLinkable": "{path}/packages \u4E0B\u6CA1\u6709\u6A21\u5757",
|
|
315
|
-
"modwiz.noLinkableShort": "\u6CA1\u6709\u53EF\u94FE\u63A5\u7684\u6A21\u5757\u5305",
|
|
316
|
-
"modwiz.pickLink": "\u9009\u62E9\u8981\u94FE\u63A5\u7684\u6A21\u5757\u5305",
|
|
317
|
-
"modwiz.linking": "\u94FE\u63A5 {id}",
|
|
318
|
-
"modwiz.linkSynced": "catalog + lock \u5DF2\u540C\u6B65",
|
|
319
|
-
"modwiz.linked": "\u5DF2\u94FE\u63A5 {id}",
|
|
320
|
-
"modwiz.devIntro": "\u672C\u5730\u6A21\u5757\u5F00\u53D1",
|
|
321
|
-
"modwiz.devStandalone": "\u5728\u4F5C\u8005\u4ED3\u6539\u4EE3\u7801\uFF1B\u4E3B\u4ED3\u6267\u884C:\nsfmc mod install <id> --from dir:<\u4F5C\u8005\u4ED3> --link\nsfmc mod reload \u6216 sfmc mod watch",
|
|
322
|
-
"modwiz.noDevPackages": "{path}/packages \u4E0B\u6CA1\u6709\u6A21\u5757",
|
|
323
|
-
"modwiz.noDevShort": "\u6CA1\u6709\u53EF\u5F00\u53D1\u7684\u6A21\u5757\u5305",
|
|
324
|
-
"modwiz.pickDev": "\u9009\u62E9\u8981\u8054\u8C03\u7684\u6A21\u5757",
|
|
325
|
-
"modwiz.enabling": "\u542F\u7528 {id}",
|
|
326
|
-
"modwiz.devHint": "\u4FEE\u6539\u4F5C\u8005\u4ED3\u6E90\u7801\u540E\u6267\u884C `mod reload`\uFF08build + deploy + \u5411 BDS \u53D1 reload\uFF09\u3002\n\u6216\u4F7F\u7528 `sfmc mod watch`\u3002",
|
|
327
|
-
"modwiz.devDone": "{id} \u5DF2\u94FE\u63A5\u5E76\u5B8C\u6210 build + deploy",
|
|
328
|
-
"modwiz.devReady": "{id} \u5F00\u53D1\u73AF\u5883\u5C31\u7EEA",
|
|
329
272
|
"mod.usage": "\u7528\u6CD5: sfmc {cmds} <{subs}> [args]",
|
|
330
273
|
"mod.list.title": "\u5DF2\u5B89\u88C5\u6A21\u5757",
|
|
331
274
|
"mod.noneInstalled": "\n\u672A\u5B89\u88C5\u6A21\u5757\u3002\u8BF7\u5C06\u6A21\u5757\u76EE\u5F55\u653E\u5230 {dir}\uFF0C\u6216\u6267\u884C `sfmc mod install <id>`\u3002\n",
|
|
332
275
|
"mod.notInRegistry": '\u6A21\u5757 "{query}" \u4E0D\u5728\u5B98\u65B9 registry \u4E2D\u3002',
|
|
333
|
-
"mod.info.usage": "\u7528\u6CD5:
|
|
276
|
+
"mod.info.usage": "\u7528\u6CD5: mod info <id>",
|
|
334
277
|
"mod.notInstalledAt": "\u6A21\u5757 {id} \u672A\u5B89\u88C5\u4E8E {path}",
|
|
335
278
|
"mod.notInstalled": "\u6A21\u5757 {id} \u672A\u5B89\u88C5",
|
|
336
279
|
"mod.verifyOk": "{id} \u6B63\u5E38\n fingerprint: {fp}\n",
|
|
@@ -340,12 +283,12 @@ const zhCN = {
|
|
|
340
283
|
"mod.action.disabled": "\u5DF2\u7981\u7528",
|
|
341
284
|
"mod.toggleOk": "{label} {id}",
|
|
342
285
|
"mod.toggleBadBody": "{action} {id} \u8FD4\u56DE: {text}",
|
|
343
|
-
"mod.enable.usage": "\u7528\u6CD5:
|
|
344
|
-
"mod.disable.usage": "\u7528\u6CD5:
|
|
345
|
-
"mod.install.usage": "\u7528\u6CD5:
|
|
346
|
-
"mod.
|
|
286
|
+
"mod.enable.usage": "\u7528\u6CD5: mod enable <id>",
|
|
287
|
+
"mod.disable.usage": "\u7528\u6CD5: mod disable <id>",
|
|
288
|
+
"mod.install.usage": "\u7528\u6CD5: mod install <id>\n mod install <id> --from <scheme> [--link] [--sha256 <hex>]",
|
|
289
|
+
"mod.fromUnknown": "\u672A\u77E5\u7684 --from \u6765\u6E90: {value}\u3002\u53EF\u7528: npm:|local[:<\u8DEF\u5F84>]|tgz:|zip:|dir:|github:<repo>[@tag]",
|
|
347
290
|
"mod.fetchMissing": "\u672A\u627E\u5230 fetch-module\u3002\u8BF7\u5B89\u88C5 @sfmc-bds/sfmc \u6216\u5728 monorepo \u5185\u8FD0\u884C\u3002",
|
|
348
|
-
"mod.uninstall.usage": "\u7528\u6CD5:
|
|
291
|
+
"mod.uninstall.usage": "\u7528\u6CD5: mod uninstall <id>",
|
|
349
292
|
"mod.notInstalledFolder": "\u6A21\u5757 {id} \u672A\u5B89\u88C5\uFF08\u76EE\u5F55\u4E0D\u5B58\u5728: {path}\uFF09",
|
|
350
293
|
"mod.removed": "\u5DF2\u4ECE {path} \u79FB\u9664 {id}\n",
|
|
351
294
|
"pack.built": "\u5DF2\u6784\u5EFA\u5305\u81F3 {path}",
|