@tomako/tools-runtime 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/package.json +629 -0
- package/src/assets/icons/brands/social/bluesky-icon.tsx +9 -0
- package/src/assets/icons/brands/social/facebook-icon.tsx +9 -0
- package/src/assets/icons/brands/social/index.ts +8 -0
- package/src/assets/icons/brands/social/instagram-icon.tsx +9 -0
- package/src/assets/icons/brands/social/linkedin-icon.tsx +9 -0
- package/src/assets/icons/brands/social/threads-icon.tsx +9 -0
- package/src/assets/icons/brands/social/tiktok-icon.tsx +10 -0
- package/src/assets/icons/brands/social/x-icon.tsx +9 -0
- package/src/assets/icons/brands/social/youtube-icon.tsx +9 -0
- package/src/assets/icons/social-profile/facebook-icon.tsx +12 -0
- package/src/assets/icons/social-profile/index.ts +29 -0
- package/src/assets/icons/social-profile/instagram-icon.tsx +18 -0
- package/src/assets/icons/social-profile/linkedin-icon.tsx +12 -0
- package/src/assets/icons/social-profile/tiktok-icon.tsx +12 -0
- package/src/assets/icons/social-profile/x-icon.tsx +13 -0
- package/src/assets/icons/social-profile/youtube-icon.tsx +12 -0
- package/src/components/tools/engine/form-builder.tsx +219 -0
- package/src/components/tools/engine/package-widget-loader.tsx +38 -0
- package/src/components/tools/engine/package-widget-runtime.tsx +409 -0
- package/src/components/tools/engine/package-widget.tsx +77 -0
- package/src/components/tools/engine/result-view.tsx +596 -0
- package/src/components/tools/engine/use-legacy-llm-task.ts +64 -0
- package/src/components/tools/engine/use-tool-task.ts +195 -0
- package/src/components/tools/market-forecast-report.tsx +1150 -0
- package/src/components/tools/registry.ts +13 -0
- package/src/components/tools/workspace/index.ts +39 -0
- package/src/components/tools/workspace/tool-action-bar.tsx +99 -0
- package/src/components/tools/workspace/tool-empty-panel.tsx +32 -0
- package/src/components/tools/workspace/tool-error-panel.tsx +40 -0
- package/src/components/tools/workspace/tool-field.tsx +124 -0
- package/src/components/tools/workspace/tool-file-upload.tsx +112 -0
- package/src/components/tools/workspace/tool-form-section.tsx +21 -0
- package/src/components/tools/workspace/tool-form-shell.tsx +36 -0
- package/src/components/tools/workspace/tool-loading-panel.tsx +269 -0
- package/src/components/tools/workspace/tool-option-row.tsx +97 -0
- package/src/components/tools/workspace/tool-preview-panel.tsx +31 -0
- package/src/components/tools/workspace/tool-result-actions.tsx +67 -0
- package/src/components/tools/workspace/tool-result-file-actions.ts +31 -0
- package/src/components/tools/workspace/tool-result-header.tsx +39 -0
- package/src/components/tools/workspace/tool-status.tsx +13 -0
- package/src/components/tools/workspace/tool-workspace-layout.tsx +226 -0
- package/src/constants/LKS.ts +29 -0
- package/src/constants/related-tools.ts +18 -0
- package/src/constants/social-profile-kit.ts +284 -0
- package/src/constants/tool-assets.ts +7 -0
- package/src/env.d.ts +3 -0
- package/src/features/tools/_templates/standard-tool.container.tsx +90 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.container.tsx +11 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.spec.ts +15 -0
- package/src/features/tools/app-icon-resizer/widget/app-icon-resizer.tsx +444 -0
- package/src/features/tools/app-icon-resizer/widget/constants.ts +19 -0
- package/src/features/tools/app-icon-resizer/widget/helpers.ts +314 -0
- package/src/features/tools/app-icon-resizer/widget/index.ts +7 -0
- package/src/features/tools/app-icon-resizer/widget/platform-icons.tsx +59 -0
- package/src/features/tools/app-icon-resizer/widget/preview-dialogs.tsx +139 -0
- package/src/features/tools/app-icon-resizer/widget/result-shell.tsx +165 -0
- package/src/features/tools/app-icon-resizer/widget/types.ts +36 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.container.tsx +108 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.spec.ts +14 -0
- package/src/features/tools/app-store-screenshot-generator/config.ts +3 -0
- package/src/features/tools/app-store-screenshot-generator/widget/app-store-screenshot-generator.tsx +1250 -0
- package/src/features/tools/app-store-screenshot-generator/widget/asset-slots.ts +76 -0
- package/src/features/tools/app-store-screenshot-generator/widget/constants.ts +43 -0
- package/src/features/tools/app-store-screenshot-generator/widget/form-controls.tsx +214 -0
- package/src/features/tools/app-store-screenshot-generator/widget/generation.ts +528 -0
- package/src/features/tools/app-store-screenshot-generator/widget/index.ts +7 -0
- package/src/features/tools/app-store-screenshot-generator/widget/input-media.ts +175 -0
- package/src/features/tools/app-store-screenshot-generator/widget/types.ts +60 -0
- package/src/features/tools/app-store-screenshot-generator/widget/zip.ts +119 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.container.tsx +135 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.spec.ts +15 -0
- package/src/features/tools/build-in-public-story-generator/widget/build-in-public-story-generator.tsx +314 -0
- package/src/features/tools/build-in-public-story-generator/widget/constants.ts +3 -0
- package/src/features/tools/build-in-public-story-generator/widget/helpers.ts +25 -0
- package/src/features/tools/build-in-public-story-generator/widget/index.ts +7 -0
- package/src/features/tools/build-in-public-story-generator/widget/preview-panels.tsx +58 -0
- package/src/features/tools/build-in-public-story-generator/widget/result-shell.tsx +164 -0
- package/src/features/tools/build-in-public-story-generator/widget/types.ts +6 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.container.tsx +30 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.spec.ts +15 -0
- package/src/features/tools/cold-start-channel-selector/widget/cold-start-channel-selector.tsx +417 -0
- package/src/features/tools/cold-start-channel-selector/widget/constants.ts +46 -0
- package/src/features/tools/cold-start-channel-selector/widget/form-controls.tsx +41 -0
- package/src/features/tools/cold-start-channel-selector/widget/helpers.ts +75 -0
- package/src/features/tools/cold-start-channel-selector/widget/index.ts +7 -0
- package/src/features/tools/cold-start-channel-selector/widget/preview-panels.tsx +250 -0
- package/src/features/tools/cold-start-channel-selector/widget/result-shell.tsx +199 -0
- package/src/features/tools/cold-start-channel-selector/widget/types.ts +21 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.container.tsx +102 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.spec.ts +14 -0
- package/src/features/tools/commercial-bp-generator/widget/commercial-bp-generator.tsx +676 -0
- package/src/features/tools/commercial-bp-generator/widget/constants.ts +32 -0
- package/src/features/tools/commercial-bp-generator/widget/helpers.ts +147 -0
- package/src/features/tools/commercial-bp-generator/widget/index.ts +7 -0
- package/src/features/tools/commercial-bp-generator/widget/result-shell.tsx +271 -0
- package/src/features/tools/commercial-bp-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/commercial-bp-generator/widget/types.ts +33 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.container.tsx +126 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.spec.ts +15 -0
- package/src/features/tools/community-feedback-inbox/widget/community-feedback-inbox.tsx +271 -0
- package/src/features/tools/community-feedback-inbox/widget/constants.ts +3 -0
- package/src/features/tools/community-feedback-inbox/widget/helpers.ts +28 -0
- package/src/features/tools/community-feedback-inbox/widget/index.ts +7 -0
- package/src/features/tools/community-feedback-inbox/widget/preview-panels.tsx +92 -0
- package/src/features/tools/community-feedback-inbox/widget/result-shell.tsx +266 -0
- package/src/features/tools/community-feedback-inbox/widget/types.ts +6 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.container.tsx +124 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.spec.ts +15 -0
- package/src/features/tools/community-pain-point-extractor/widget/community-pain-point-extractor.tsx +404 -0
- package/src/features/tools/community-pain-point-extractor/widget/constants.ts +41 -0
- package/src/features/tools/community-pain-point-extractor/widget/helpers.ts +76 -0
- package/src/features/tools/community-pain-point-extractor/widget/index.ts +8 -0
- package/src/features/tools/community-pain-point-extractor/widget/progress-panels.tsx +251 -0
- package/src/features/tools/community-pain-point-extractor/widget/result-shell.tsx +478 -0
- package/src/features/tools/community-pain-point-extractor/widget/types.ts +33 -0
- package/src/features/tools/community-post-risk-checker/community-post-risk-checker.package.ts +792 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.container.tsx +136 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.spec.ts +15 -0
- package/src/features/tools/competitor-analysis/widget/competitor-analysis.tsx +241 -0
- package/src/features/tools/competitor-analysis/widget/constants.ts +9 -0
- package/src/features/tools/competitor-analysis/widget/index.ts +7 -0
- package/src/features/tools/competitor-analysis/widget/preview-panels.tsx +60 -0
- package/src/features/tools/competitor-analysis/widget/result-shell.tsx +418 -0
- package/src/features/tools/competitor-analysis/widget/types.ts +13 -0
- package/src/features/tools/disclaimer-generator/disclaimer-generator.package.ts +339 -0
- package/src/features/tools/email-template-generator/email-template-generator.container.tsx +224 -0
- package/src/features/tools/email-template-generator/email-template-generator.spec.ts +14 -0
- package/src/features/tools/email-template-generator/widget/email-template-generator.tsx +358 -0
- package/src/features/tools/email-template-generator/widget/helpers.ts +39 -0
- package/src/features/tools/email-template-generator/widget/index.ts +7 -0
- package/src/features/tools/email-template-generator/widget/preview-panel.tsx +311 -0
- package/src/features/tools/email-template-generator/widget/result-text-block.tsx +7 -0
- package/src/features/tools/email-template-generator/widget/types.ts +24 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.container.tsx +75 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.spec.ts +15 -0
- package/src/features/tools/gtm-readiness-checklist/widget/gtm-readiness-checklist.tsx +122 -0
- package/src/features/tools/gtm-readiness-checklist/widget/index.ts +7 -0
- package/src/features/tools/investor-matching-planner/investor-matching-planner.package.ts +869 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.container.tsx +151 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.spec.ts +14 -0
- package/src/features/tools/koko-codex-assistant/widget/index.ts +7 -0
- package/src/features/tools/koko-codex-assistant/widget/koko-codex-assistant-download.tsx +192 -0
- package/src/features/tools/logo-generator/logo-generator.container.tsx +112 -0
- package/src/features/tools/logo-generator/logo-generator.spec.ts +15 -0
- package/src/features/tools/logo-generator/widget/index.ts +7 -0
- package/src/features/tools/logo-generator/widget/logo-generator.tsx +1244 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.container.tsx +73 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.spec.ts +15 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.container.tsx +123 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.spec.ts +14 -0
- package/src/features/tools/million-user-growth-test/widget/index.ts +7 -0
- package/src/features/tools/million-user-growth-test/widget/million-user-growth-test.tsx +433 -0
- package/src/features/tools/module-loader.ts +107 -0
- package/src/features/tools/og-image-generator/og-image-generator.container.tsx +86 -0
- package/src/features/tools/og-image-generator/og-image-generator.spec.ts +14 -0
- package/src/features/tools/og-image-generator/widget/constants.ts +38 -0
- package/src/features/tools/og-image-generator/widget/form-fields.tsx +240 -0
- package/src/features/tools/og-image-generator/widget/index.ts +7 -0
- package/src/features/tools/og-image-generator/widget/og-image-generator.tsx +742 -0
- package/src/features/tools/og-image-generator/widget/preview-panel.tsx +305 -0
- package/src/features/tools/og-image-generator/widget/types.ts +1 -0
- package/src/features/tools/package/direct-models.ts +20 -0
- package/src/features/tools/package/form.ts +38 -0
- package/src/features/tools/package/l10n.ts +22 -0
- package/src/features/tools/package/package-container.tsx +285 -0
- package/src/features/tools/package/package-loaders.ts +22 -0
- package/src/features/tools/package/package-registry.ts +36 -0
- package/src/features/tools/package/result-markdown.ts +142 -0
- package/src/features/tools/package/schema.ts +379 -0
- package/src/features/tools/package/to-tool-module.ts +20 -0
- package/src/features/tools/package/to-tool-spec.ts +52 -0
- package/src/features/tools/package/types.ts +381 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.container.tsx +175 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.spec.ts +14 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library-data.ts +476 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library.tsx +159 -0
- package/src/features/tools/pitch-deck-generator/widget/ceremony-line.tsx +27 -0
- package/src/features/tools/pitch-deck-generator/widget/constants.ts +27 -0
- package/src/features/tools/pitch-deck-generator/widget/index.ts +7 -0
- package/src/features/tools/pitch-deck-generator/widget/pitch-deck-generator.tsx +763 -0
- package/src/features/tools/pitch-deck-generator/widget/result-helpers.ts +102 -0
- package/src/features/tools/pitch-deck-generator/widget/result-shell.tsx +263 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-frame.tsx +106 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-lightbox.tsx +149 -0
- package/src/features/tools/pitch-deck-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/pitch-deck-generator/widget/types.ts +44 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.container.tsx +137 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.spec.ts +14 -0
- package/src/features/tools/product-agreement-generator/widget/constants.ts +27 -0
- package/src/features/tools/product-agreement-generator/widget/form-controls.tsx +218 -0
- package/src/features/tools/product-agreement-generator/widget/helpers.ts +68 -0
- package/src/features/tools/product-agreement-generator/widget/index.ts +7 -0
- package/src/features/tools/product-agreement-generator/widget/product-agreement-generator.tsx +671 -0
- package/src/features/tools/product-agreement-generator/widget/result-shell.tsx +473 -0
- package/src/features/tools/product-agreement-generator/widget/types.ts +89 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.container.tsx +122 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.spec.ts +15 -0
- package/src/features/tools/product-hunt-launch-planner/widget/constants.ts +5 -0
- package/src/features/tools/product-hunt-launch-planner/widget/helpers.ts +44 -0
- package/src/features/tools/product-hunt-launch-planner/widget/index.ts +7 -0
- package/src/features/tools/product-hunt-launch-planner/widget/preview-panel.tsx +143 -0
- package/src/features/tools/product-hunt-launch-planner/widget/product-hunt-launch-planner.tsx +504 -0
- package/src/features/tools/product-hunt-launch-planner/widget/result-shell.tsx +176 -0
- package/src/features/tools/product-hunt-launch-planner/widget/types.ts +20 -0
- package/src/features/tools/product-name-generator/product-name-generator.container.tsx +14 -0
- package/src/features/tools/product-name-generator/product-name-generator.spec.ts +15 -0
- package/src/features/tools/product-name-generator/widget/candidate-card.tsx +273 -0
- package/src/features/tools/product-name-generator/widget/constants.ts +21 -0
- package/src/features/tools/product-name-generator/widget/form-controls.tsx +136 -0
- package/src/features/tools/product-name-generator/widget/helpers.ts +41 -0
- package/src/features/tools/product-name-generator/widget/index.ts +7 -0
- package/src/features/tools/product-name-generator/widget/product-name-generator.tsx +776 -0
- package/src/features/tools/product-name-generator/widget/types.ts +36 -0
- package/src/features/tools/product-positioning-analyzer/product-positioning-analyzer.package.ts +801 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.container.tsx +14 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.spec.ts +15 -0
- package/src/features/tools/product-poster-generator/widget/constants.ts +125 -0
- package/src/features/tools/product-poster-generator/widget/form-controls.tsx +204 -0
- package/src/features/tools/product-poster-generator/widget/helpers.ts +155 -0
- package/src/features/tools/product-poster-generator/widget/index.ts +7 -0
- package/src/features/tools/product-poster-generator/widget/product-poster-generator.tsx +663 -0
- package/src/features/tools/product-poster-generator/widget/result-shell.tsx +12 -0
- package/src/features/tools/product-poster-generator/widget/types.ts +83 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.container.tsx +116 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.spec.ts +14 -0
- package/src/features/tools/product-ui-generator/widget/constants.ts +18 -0
- package/src/features/tools/product-ui-generator/widget/helpers.ts +11 -0
- package/src/features/tools/product-ui-generator/widget/index.ts +7 -0
- package/src/features/tools/product-ui-generator/widget/preview-panels.tsx +73 -0
- package/src/features/tools/product-ui-generator/widget/product-ui-generator.tsx +304 -0
- package/src/features/tools/product-ui-generator/widget/result-shell.tsx +118 -0
- package/src/features/tools/product-ui-generator/widget/types.ts +9 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.container.tsx +113 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.spec.ts +15 -0
- package/src/features/tools/reddit-pain-point-finder/widget/constants.ts +5 -0
- package/src/features/tools/reddit-pain-point-finder/widget/index.ts +7 -0
- package/src/features/tools/reddit-pain-point-finder/widget/preview-panels.tsx +73 -0
- package/src/features/tools/reddit-pain-point-finder/widget/reddit-pain-point-finder.tsx +281 -0
- package/src/features/tools/reddit-pain-point-finder/widget/result-shell.tsx +203 -0
- package/src/features/tools/reddit-pain-point-finder/widget/types.ts +15 -0
- package/src/features/tools/registry.ts +288 -0
- package/src/features/tools/runtime-registry.ts +186 -0
- package/src/features/tools/shared/create-guide-stack-container.tsx +176 -0
- package/src/features/tools/shared/create-standard-landing-container.tsx +163 -0
- package/src/features/tools/shared/tool-content-sections.tsx +659 -0
- package/src/features/tools/shared/tool-cta.tsx +66 -0
- package/src/features/tools/shared/tool-draft-view.tsx +53 -0
- package/src/features/tools/shared/tool-guide-section.tsx +191 -0
- package/src/features/tools/shared/tool-handoff.tsx +38 -0
- package/src/features/tools/shared/tool-mcp-badge.tsx +23 -0
- package/src/features/tools/shared/tool-message-translator.ts +37 -0
- package/src/features/tools/shared/tool-page-shell.tsx +348 -0
- package/src/features/tools/shared/tool-standard-generation-steps.tsx +52 -0
- package/src/features/tools/shared/tool-standard-landing-sections.tsx +447 -0
- package/src/features/tools/shared/tool-ui-registry.ts +237 -0
- package/src/features/tools/shared/tool-widget-slot.tsx +29 -0
- package/src/features/tools/slogan-generator/slogan-generator.package.ts +641 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.container.tsx +124 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.spec.ts +15 -0
- package/src/features/tools/social-listening-research-report/widget/constants.ts +4 -0
- package/src/features/tools/social-listening-research-report/widget/index.ts +7 -0
- package/src/features/tools/social-listening-research-report/widget/preview-panels.tsx +73 -0
- package/src/features/tools/social-listening-research-report/widget/result-shell.tsx +216 -0
- package/src/features/tools/social-listening-research-report/widget/social-listening-research-report.tsx +303 -0
- package/src/features/tools/social-listening-research-report/widget/types.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.container.tsx +123 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.spec.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/widget/constants.ts +43 -0
- package/src/features/tools/social-platform-asset-adapter/widget/helpers.ts +249 -0
- package/src/features/tools/social-platform-asset-adapter/widget/index.ts +7 -0
- package/src/features/tools/social-platform-asset-adapter/widget/result-shell.tsx +350 -0
- package/src/features/tools/social-platform-asset-adapter/widget/section-heading.tsx +18 -0
- package/src/features/tools/social-platform-asset-adapter/widget/social-platform-asset-adapter.tsx +641 -0
- package/src/features/tools/social-platform-asset-adapter/widget/types.ts +40 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.container.tsx +177 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.spec.ts +15 -0
- package/src/features/tools/social-profile-kit/widget/context-editor.tsx +171 -0
- package/src/features/tools/social-profile-kit/widget/generation-runtime.ts +281 -0
- package/src/features/tools/social-profile-kit/widget/index.ts +7 -0
- package/src/features/tools/social-profile-kit/widget/input-panel.tsx +294 -0
- package/src/features/tools/social-profile-kit/widget/platform-dock.tsx +115 -0
- package/src/features/tools/social-profile-kit/widget/profile-canvas.tsx +318 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/bluesky-preview.tsx +188 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/facebook-preview.tsx +168 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/index.ts +1 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/instagram-preview.tsx +278 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/linkedin-preview.tsx +358 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/profile-preview.tsx +348 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/shared.tsx +391 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/threads-preview.tsx +148 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/tiktok-preview.tsx +319 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/x-preview.tsx +341 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/youtube-preview.tsx +297 -0
- package/src/features/tools/social-profile-kit/widget/social-profile-kit-generator.tsx +1059 -0
- package/src/features/tools/social-profile-kit/widget/types.ts +104 -0
- package/src/features/tools/spec-registry.ts +158 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.container.tsx +111 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.spec.ts +15 -0
- package/src/features/tools/startup-idea-research/widget/constants.ts +11 -0
- package/src/features/tools/startup-idea-research/widget/index.ts +7 -0
- package/src/features/tools/startup-idea-research/widget/preview-panels.tsx +67 -0
- package/src/features/tools/startup-idea-research/widget/result-shell.tsx +323 -0
- package/src/features/tools/startup-idea-research/widget/startup-idea-research.tsx +272 -0
- package/src/features/tools/startup-idea-research/widget/types.ts +21 -0
- package/src/features/tools/tarot-reading/tarot-reading.container.tsx +412 -0
- package/src/features/tools/tarot-reading/tarot-reading.spec.ts +15 -0
- package/src/features/tools/tarot-reading/widget/cards.tsx +152 -0
- package/src/features/tools/tarot-reading/widget/constants.ts +69 -0
- package/src/features/tools/tarot-reading/widget/deck-view.tsx +86 -0
- package/src/features/tools/tarot-reading/widget/deck.ts +86 -0
- package/src/features/tools/tarot-reading/widget/index.ts +7 -0
- package/src/features/tools/tarot-reading/widget/landing-view.tsx +209 -0
- package/src/features/tools/tarot-reading/widget/reading-copy.tsx +138 -0
- package/src/features/tools/tarot-reading/widget/reading-view.tsx +189 -0
- package/src/features/tools/tarot-reading/widget/reveal-view.tsx +50 -0
- package/src/features/tools/tarot-reading/widget/ritual-view.tsx +276 -0
- package/src/features/tools/tarot-reading/widget/tarot-reading.tsx +262 -0
- package/src/features/tools/tarot-reading/widget/types.ts +22 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.container.tsx +114 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.spec.ts +14 -0
- package/src/features/tools/twitter-gif-downloader/widget/index.ts +7 -0
- package/src/features/tools/twitter-gif-downloader/widget/twitter-gif-downloader.tsx +351 -0
- package/src/features/tools/types.ts +68 -0
- package/src/features/tools/user-interview-guide-generator/user-interview-guide-generator.package.ts +774 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.container.tsx +23 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/constants.ts +8 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/preview-panels.tsx +55 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/result-shell.tsx +122 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/user-interview-insight-report-generator.tsx +293 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.container.tsx +18 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-record-generator/widget/constants.ts +9 -0
- package/src/features/tools/user-interview-record-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-record-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-record-generator/widget/preview-panels.tsx +48 -0
- package/src/features/tools/user-interview-record-generator/widget/result-shell.tsx +128 -0
- package/src/features/tools/user-interview-record-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-record-generator/widget/user-interview-record-generator.tsx +305 -0
- package/src/features/tools/utm-builder/utm-builder.package.ts +846 -0
- package/src/features/tools/widget-registry.ts +73 -0
- package/src/generated/mcp-tools-registry.json +17 -0
- package/src/host/client-proxy.test.ts +33 -0
- package/src/host/client.ts +678 -0
- package/src/host/server.ts +119 -0
- package/src/i18n/client.ts +11 -0
- package/src/i18n/locale-fallback.ts +38 -0
- package/src/i18n/locale.ts +18 -0
- package/src/i18n/messages/en/page/tools.ts +124 -0
- package/src/i18n/messages/en/tools/app-icon-resizer.ts +244 -0
- package/src/i18n/messages/en/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/en/tools/build-in-public-story-generator.ts +229 -0
- package/src/i18n/messages/en/tools/cold-start-channel-selector.ts +423 -0
- package/src/i18n/messages/en/tools/commercial-bp-generator.ts +304 -0
- package/src/i18n/messages/en/tools/community-feedback-inbox.ts +218 -0
- package/src/i18n/messages/en/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/en/tools/community-post-risk-checker.ts +209 -0
- package/src/i18n/messages/en/tools/competitor-analysis.ts +197 -0
- package/src/i18n/messages/en/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/en/tools/engine.ts +69 -0
- package/src/i18n/messages/en/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/en/tools/index.ts +73 -0
- package/src/i18n/messages/en/tools/koko-codex-assistant.ts +171 -0
- package/src/i18n/messages/en/tools/logo-generator.ts +173 -0
- package/src/i18n/messages/en/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/en/tools/million-user-growth-test.ts +386 -0
- package/src/i18n/messages/en/tools/og-image-generator.ts +172 -0
- package/src/i18n/messages/en/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/en/tools/product-agreement-generator.ts +411 -0
- package/src/i18n/messages/en/tools/product-hunt-launch-planner.ts +272 -0
- package/src/i18n/messages/en/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/en/tools/product-poster-generator.ts +294 -0
- package/src/i18n/messages/en/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/en/tools/reddit-pain-point-finder.ts +163 -0
- package/src/i18n/messages/en/tools/shared.ts +24 -0
- package/src/i18n/messages/en/tools/social-listening-research-report.ts +185 -0
- package/src/i18n/messages/en/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/en/tools/social-platform-asset-adapter.ts +287 -0
- package/src/i18n/messages/en/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/en/tools/startup-idea-research.ts +170 -0
- package/src/i18n/messages/en/tools/tarot-reading.ts +230 -0
- package/src/i18n/messages/en/tools/twitter-gif-downloader.ts +145 -0
- package/src/i18n/messages/en/tools/user-interview-insight-report-generator.ts +242 -0
- package/src/i18n/messages/en/tools/user-interview-record-generator.ts +244 -0
- package/src/i18n/messages/en/tools-ui.ts +704 -0
- package/src/i18n/messages/zh/page/tools.ts +124 -0
- package/src/i18n/messages/zh/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh/tools/cold-start-channel-selector.ts +422 -0
- package/src/i18n/messages/zh/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/engine.ts +68 -0
- package/src/i18n/messages/zh/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh/tools/index.ts +73 -0
- package/src/i18n/messages/zh/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh/tools/logo-generator.ts +172 -0
- package/src/i18n/messages/zh/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh/tools/shared.ts +24 -0
- package/src/i18n/messages/zh/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh/tools-ui.ts +684 -0
- package/src/i18n/messages/zh-tw/page/tools.ts +115 -0
- package/src/i18n/messages/zh-tw/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh-tw/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh-tw/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/cold-start-channel-selector.ts +440 -0
- package/src/i18n/messages/zh-tw/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh-tw/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh-tw/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh-tw/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/engine.ts +68 -0
- package/src/i18n/messages/zh-tw/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh-tw/tools/index.ts +73 -0
- package/src/i18n/messages/zh-tw/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh-tw/tools/logo-generator.ts +71 -0
- package/src/i18n/messages/zh-tw/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh-tw/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh-tw/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh-tw/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh-tw/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh-tw/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh-tw/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh-tw/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh-tw/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh-tw/tools/shared.ts +24 -0
- package/src/i18n/messages/zh-tw/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh-tw/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh-tw/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh-tw/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh-tw/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh-tw/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh-tw/tools-ui.ts +525 -0
- package/src/index.ts +15 -0
- package/src/lib/activity-task-handoff.ts +404 -0
- package/src/lib/api/errors.ts +39 -0
- package/src/lib/app-origin.ts +30 -0
- package/src/lib/fact-claim-contract.ts +68 -0
- package/src/lib/fake-delay.ts +3 -0
- package/src/lib/file/download.ts +10 -0
- package/src/lib/routing/locale-paths.ts +27 -0
- package/src/lib/seo-meta.ts +3 -0
- package/src/lib/tools/app-icon-resizer-schema.ts +191 -0
- package/src/lib/tools/app-store-screenshot-generator-schema.ts +185 -0
- package/src/lib/tools/build-in-public-story-generator-schema.ts +67 -0
- package/src/lib/tools/build-in-public-story-generator.format.ts +507 -0
- package/src/lib/tools/cold-start-channel-selector-schema.ts +147 -0
- package/src/lib/tools/commercial-bp-generator-schema.ts +222 -0
- package/src/lib/tools/community-feedback-inbox-schema.ts +125 -0
- package/src/lib/tools/community-feedback-inbox.format.ts +764 -0
- package/src/lib/tools/community-pain-point-extractor-schema.ts +166 -0
- package/src/lib/tools/community-post-risk-checker-schema.ts +99 -0
- package/src/lib/tools/community-post-risk-checker.format.ts +557 -0
- package/src/lib/tools/competitor-analysis-schema.ts +144 -0
- package/src/lib/tools/draft-preview-access.ts +3 -0
- package/src/lib/tools/draft-store.ts +69 -0
- package/src/lib/tools/email-template-generator-schema.ts +124 -0
- package/src/lib/tools/gtm-checklist-copy.ts +57 -0
- package/src/lib/tools/gtm-checklist-structure.ts +37 -0
- package/src/lib/tools/image-download.ts +68 -0
- package/src/lib/tools/input-quality.ts +97 -0
- package/src/lib/tools/logo-generator-schema.ts +224 -0
- package/src/lib/tools/market-forecast-report-schema.ts +299 -0
- package/src/lib/tools/mcp-registry.ts +16 -0
- package/src/lib/tools/mcp-types.ts +18 -0
- package/src/lib/tools/million-user-growth-test-schema.ts +49 -0
- package/src/lib/tools/million-user-growth-test.ts +181 -0
- package/src/lib/tools/og-image-generator-render.ts +448 -0
- package/src/lib/tools/og-image-generator-schema.ts +140 -0
- package/src/lib/tools/ops-catalog.ts +102 -0
- package/src/lib/tools/pitch-deck-generator-schema.ts +182 -0
- package/src/lib/tools/pitch-deck-package.ts +0 -0
- package/src/lib/tools/product-agreement-generator-schema.ts +168 -0
- package/src/lib/tools/product-hunt-launch-planner-schema.ts +136 -0
- package/src/lib/tools/product-hunt-launch-planner.format.ts +72 -0
- package/src/lib/tools/product-name-generator-schema.ts +563 -0
- package/src/lib/tools/product-poster-generator-schema.ts +215 -0
- package/src/lib/tools/product-ui-generator-schema.ts +157 -0
- package/src/lib/tools/reddit-pain-point-finder-schema.ts +88 -0
- package/src/lib/tools/resolve-tool-locale-copy.ts +75 -0
- package/src/lib/tools/slug.ts +60 -0
- package/src/lib/tools/social-listening-research-report-schema.ts +105 -0
- package/src/lib/tools/social-platform-asset-adapter-schema.ts +152 -0
- package/src/lib/tools/social-profile-kit.constants.ts +12 -0
- package/src/lib/tools/social-profile-kit.generation.ts +257 -0
- package/src/lib/tools/social-profile-kit.input.ts +290 -0
- package/src/lib/tools/social-profile-kit.manual.ts +481 -0
- package/src/lib/tools/social-profile-kit.package.ts +220 -0
- package/src/lib/tools/social-profile-kit.schema.ts +328 -0
- package/src/lib/tools/startup-idea-research-schema.ts +107 -0
- package/src/lib/tools/tarot-imagery.ts +89 -0
- package/src/lib/tools/tarot-reading.ts +1044 -0
- package/src/lib/tools/tool-message-keys.ts +18 -0
- package/src/lib/tools/types.ts +32 -0
- package/src/lib/tools/user-interview.format.ts +147 -0
- package/src/lib/tools/user-interview.generation.ts +670 -0
- package/src/lib/tools/user-interview.schema.ts +192 -0
- package/src/lib/zip.ts +106 -0
- package/src/services/tools/handlers/gtm-readiness-checklist.ts +71 -0
- package/src/services/tools/handlers/types.ts +7 -0
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
const toolsUi = {
|
|
2
|
+
draftPreview: "草稿預覽",
|
|
3
|
+
draftNotFound: "未找到本機草稿。可能已在其他瀏覽器清除,或 slug 不匹配。",
|
|
4
|
+
loadingDraft: "正在加載草稿…",
|
|
5
|
+
draftSlugHint: "草稿 slug:{slug}",
|
|
6
|
+
backToTools: "返回工具",
|
|
7
|
+
nameGenerator: {
|
|
8
|
+
industryLabel: "行業 / 賽道",
|
|
9
|
+
industryPlaceholder: "例如:開發者工具、跨境電商",
|
|
10
|
+
keywordsLabel: "關鍵詞",
|
|
11
|
+
keywordsHint: "逗號分隔",
|
|
12
|
+
keywordsPlaceholder: "增長, 自動化, 協作",
|
|
13
|
+
styleLabel: "命名風格",
|
|
14
|
+
styleProfessional: "專業",
|
|
15
|
+
stylePlayful: "活潑",
|
|
16
|
+
styleMinimal: "極簡",
|
|
17
|
+
generate: "生成名字",
|
|
18
|
+
generating: "生成中…",
|
|
19
|
+
regenerate: "重新生成",
|
|
20
|
+
copy: "複製",
|
|
21
|
+
copied: "已複製",
|
|
22
|
+
emptyTitle: "先生成 8 個候選名",
|
|
23
|
+
emptyHint: "結果會以可複製卡片展示,便於快速篩選、二次組合和做域名檢索。"
|
|
24
|
+
},
|
|
25
|
+
socialProfileKit: {
|
|
26
|
+
title: "AI Profile Kit",
|
|
27
|
+
subtitle: "為每個平臺生成一套符合你風格的賬號資料包。",
|
|
28
|
+
modes: {
|
|
29
|
+
personalCreator: "個人 / 創作者",
|
|
30
|
+
brandCompany: "品牌 / 公司"
|
|
31
|
+
},
|
|
32
|
+
inputModes: {
|
|
33
|
+
form: "表單",
|
|
34
|
+
prompt: "輸入框"
|
|
35
|
+
},
|
|
36
|
+
fields: {
|
|
37
|
+
name: "名稱",
|
|
38
|
+
namePlaceholder: "NovaDesk",
|
|
39
|
+
positioning: "你是做什麼的?",
|
|
40
|
+
positioningPlaceholder: "面向獨立創始人的 AI 工作臺",
|
|
41
|
+
audience: "目標受眾",
|
|
42
|
+
audiencePlaceholder: "創作者、獨立開發者",
|
|
43
|
+
targetMarket: "目標市場",
|
|
44
|
+
brandAsset: "品牌素材",
|
|
45
|
+
brandAssetHint: "上傳 Logo 或頭像,生成結果會優先沿用你的真實視覺資產。",
|
|
46
|
+
brandAssetEmpty: "上傳 Logo 或頭像",
|
|
47
|
+
brandAssetRemove: "移除素材",
|
|
48
|
+
tone: "語氣",
|
|
49
|
+
prompt: "描述你的賬號",
|
|
50
|
+
promptPlaceholder: "描述你是誰、產品是什麼、面向誰、希望呈現什麼風格。"
|
|
51
|
+
},
|
|
52
|
+
tones: {
|
|
53
|
+
modern: "現代",
|
|
54
|
+
friendly: "親和",
|
|
55
|
+
professional: "專業",
|
|
56
|
+
bold: "鮮明",
|
|
57
|
+
minimal: "極簡"
|
|
58
|
+
},
|
|
59
|
+
targetMarkets: {
|
|
60
|
+
china: "中國 / 中文",
|
|
61
|
+
northAmerica: "北美 / 英文",
|
|
62
|
+
japan: "日本 / 日文",
|
|
63
|
+
europe: "歐洲 / 英文",
|
|
64
|
+
global: "全球 / 英文"
|
|
65
|
+
},
|
|
66
|
+
platforms: {
|
|
67
|
+
x: "X",
|
|
68
|
+
bluesky: "Bluesky",
|
|
69
|
+
threads: "Threads",
|
|
70
|
+
linkedin: "LinkedIn",
|
|
71
|
+
linkedinCompany: "LinkedIn Company",
|
|
72
|
+
instagram: "Instagram",
|
|
73
|
+
tiktok: "TikTok",
|
|
74
|
+
youtube: "YouTube",
|
|
75
|
+
facebook: "Facebook"
|
|
76
|
+
},
|
|
77
|
+
actions: {
|
|
78
|
+
generate: "生成",
|
|
79
|
+
generating: "生成中...",
|
|
80
|
+
regenerate: "重新生成",
|
|
81
|
+
copy: "複製",
|
|
82
|
+
copied: "已複製",
|
|
83
|
+
edit: "編輯",
|
|
84
|
+
done: "完成",
|
|
85
|
+
upload: "上傳",
|
|
86
|
+
download: "下載",
|
|
87
|
+
downloadKit: "下載資料包",
|
|
88
|
+
replaceColor: "替換顏色",
|
|
89
|
+
downloadAll: "下載全部平臺",
|
|
90
|
+
allPlatforms: "全部平臺",
|
|
91
|
+
fullKit: "完整資料包",
|
|
92
|
+
currentPlatform: "下載當前平臺",
|
|
93
|
+
follow: "關注",
|
|
94
|
+
message: "私信"
|
|
95
|
+
},
|
|
96
|
+
canvas: {
|
|
97
|
+
desktop: "電腦",
|
|
98
|
+
mobile: "手機",
|
|
99
|
+
light: "淺色",
|
|
100
|
+
dark: "深色",
|
|
101
|
+
zoomIn: "放大",
|
|
102
|
+
zoomOut: "縮小",
|
|
103
|
+
fit: "適應",
|
|
104
|
+
selected: "已選中",
|
|
105
|
+
unsupportedBanner: "這個平臺沒有賬號背景圖。"
|
|
106
|
+
},
|
|
107
|
+
elements: {
|
|
108
|
+
avatar: "頭像",
|
|
109
|
+
banner: "背景圖",
|
|
110
|
+
displayName: "展示名稱",
|
|
111
|
+
username: "用戶名",
|
|
112
|
+
bio: "簡介",
|
|
113
|
+
headline: "標題",
|
|
114
|
+
description: "描述"
|
|
115
|
+
},
|
|
116
|
+
status: {
|
|
117
|
+
defaultReady: "手動草稿範本——可以編輯,但不是 Agent 生成結果。",
|
|
118
|
+
generated: "目前預覽來自已完成的 Agent 結果。",
|
|
119
|
+
validationError: "生成前請檢查必填字段。",
|
|
120
|
+
mockNotice: "目前公開體驗以草稿預覽為主;正式發佈前請人工複核授權、商標和平台規則。",
|
|
121
|
+
idle: "點擊生成",
|
|
122
|
+
queued: "準備中",
|
|
123
|
+
generating: "生成中",
|
|
124
|
+
ready: "已生成",
|
|
125
|
+
failed: "需重試"
|
|
126
|
+
},
|
|
127
|
+
sections: {
|
|
128
|
+
whatYouGet: "你會得到什麼",
|
|
129
|
+
sizes: "平臺尺寸規範",
|
|
130
|
+
howItWorks: "生成流程",
|
|
131
|
+
relatedTools: "相關工具",
|
|
132
|
+
faq: "常見問題"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
logoGenerator: {
|
|
136
|
+
formTitle: "Logo brief",
|
|
137
|
+
formHint: "輸入網址、產品名和產品介紹,生成更貼合產品語境的 Logo。",
|
|
138
|
+
optional: "可選",
|
|
139
|
+
productUrlLabel: "產品網址",
|
|
140
|
+
productUrlPlaceholder: "https://example.com",
|
|
141
|
+
productNameLabel: "產品名稱",
|
|
142
|
+
productNamePlaceholder: "例如:Tomako、FoldOS、LaunchKit",
|
|
143
|
+
contextLabel: "產品介紹與關鍵詞",
|
|
144
|
+
contextPlaceholder: "描述產品定位、用戶、差異化,也可以補充希望關聯的關鍵詞。",
|
|
145
|
+
industryLabel: "行業 / 賽道",
|
|
146
|
+
industryPlaceholder: "例如:AI 寫作、開發者工具",
|
|
147
|
+
audienceLabel: "目標用戶",
|
|
148
|
+
audiencePlaceholder: "例如:獨立開發者、B2B 銷售團隊",
|
|
149
|
+
styleLabel: "視覺風格",
|
|
150
|
+
paletteLabel: "配色方向",
|
|
151
|
+
customPaletteLabel: "自定義配色",
|
|
152
|
+
customPaletteHint: "不選擇則根據參考圖、網址、介紹和產品名自動推導配色。",
|
|
153
|
+
schemeCountLabel: "生成方案數量",
|
|
154
|
+
schemeCountOptions: {
|
|
155
|
+
1: "1",
|
|
156
|
+
2: "2",
|
|
157
|
+
3: "3",
|
|
158
|
+
4: "4",
|
|
159
|
+
5: "5"
|
|
160
|
+
},
|
|
161
|
+
formLabel: "Logo 形式",
|
|
162
|
+
advancedSettings: "更多品牌約束",
|
|
163
|
+
preferencesLabel: "品牌偏好",
|
|
164
|
+
preferencesHint: "最多 4 項",
|
|
165
|
+
geometryLabel: "圖形語言",
|
|
166
|
+
usageLabel: "主要用途",
|
|
167
|
+
notesLabel: "補充要求",
|
|
168
|
+
notesPlaceholder: "例如:避免太卡通、需要適合深色背景、圖形儘量簡單。",
|
|
169
|
+
referenceImageLabel: "參考圖",
|
|
170
|
+
referenceImageUpload: "上傳參考圖",
|
|
171
|
+
referenceImageHint: "上傳後會先轉成真實 http(s) 參考圖 URL,再交給在線生圖鏈路使用。",
|
|
172
|
+
referenceImagePreviewAlt: "參考圖預覽",
|
|
173
|
+
referenceImageRemove: "移除參考圖",
|
|
174
|
+
removeCustomColor: "移除顏色",
|
|
175
|
+
generateAgent: "生成 Logo 圖片",
|
|
176
|
+
generatingAgent: "正在生成…",
|
|
177
|
+
reset: "重新開始",
|
|
178
|
+
retryAgent: "重試生成",
|
|
179
|
+
conversationTitle: "Logo 生成結果",
|
|
180
|
+
conversationHint: "生成完成後,PNG 原圖會以縮略圖排列在這裡。",
|
|
181
|
+
agentStatus: "真實生圖 / 原圖下載",
|
|
182
|
+
assistantIntro: "告訴我產品網址、名稱和介紹,也可以上傳參考圖或指定自定義配色。生成完成後可以下載源文件。",
|
|
183
|
+
userBriefTitle: "我的 logo brief",
|
|
184
|
+
emptyTitle: "先提交一個 logo brief",
|
|
185
|
+
emptyHint: "配置完成後直接點擊生成。結果區只展示可預覽、可下載的 Logo 圖片。",
|
|
186
|
+
emptyBullets: [
|
|
187
|
+
"產品名是唯一必填項。",
|
|
188
|
+
"產品介紹可以補充關鍵詞,幫助提示詞理解品牌語境。",
|
|
189
|
+
"可選參考圖會先上傳成真實 URL。"
|
|
190
|
+
],
|
|
191
|
+
loadingTitle: "正在提交在線生圖任務",
|
|
192
|
+
loadingHint: "正在根據你的配置生成 Logo 圖片。",
|
|
193
|
+
awaitingResultTitle: "正在等待圖片返回",
|
|
194
|
+
awaitingResultHint: "在線圖片服務正在返回 PNG 原圖,完成後會自動顯示縮略圖。",
|
|
195
|
+
statusLabel: "狀態:{status}",
|
|
196
|
+
errorTitle: "生成未完成",
|
|
197
|
+
resultTitle: "已生成 {count} 個 Logo 方案",
|
|
198
|
+
resultHint: "點擊縮略圖可放大預覽,選中後可下載 PNG 原圖。",
|
|
199
|
+
partialResultTitle: "已生成 {completed}/{total} 個 Logo 方案",
|
|
200
|
+
partialResultHint: "已完成的方案會先顯示和下載,剩餘圖片繼續生成中。",
|
|
201
|
+
selectedResult: "已選中該方向,可下載在線圖片服務生成的 PNG 原圖。",
|
|
202
|
+
selectedEmpty: "先選擇一個 logo 方向。",
|
|
203
|
+
implementationTitle: "落地建議",
|
|
204
|
+
reviewTitle: "複核清單",
|
|
205
|
+
limitationsTitle: "能力邊界",
|
|
206
|
+
downloadPng: "下載 PNG 原圖",
|
|
207
|
+
downloadAllPng: "下載全部",
|
|
208
|
+
convertToSvg: "轉為 SVG",
|
|
209
|
+
convertingSvg: "正在轉 SVG…",
|
|
210
|
+
downloadSvg: "下載 SVG",
|
|
211
|
+
svgLoadingHint: "正在把選中的 Logo 圖片轉成可導入 Figma 的 SVG 路徑。",
|
|
212
|
+
svgReadyHint: "SVG 已生成,包含 {count} 個矢量路徑,可直接下載。",
|
|
213
|
+
downloadError: "下載失敗,請重新選擇一個結果再試。",
|
|
214
|
+
closePreview: "關閉預覽",
|
|
215
|
+
previousPreview: "上一張",
|
|
216
|
+
nextPreview: "下一張",
|
|
217
|
+
errors: {
|
|
218
|
+
required: "請先輸入產品名稱。",
|
|
219
|
+
customPalette: "自定義配色需要補完整:主色、輔色和強調色都要選擇。",
|
|
220
|
+
referenceImage: "參考圖讀取失敗,請換一張 PNG、JPG 或 WebP。",
|
|
221
|
+
gateway: "生成服務暫不可用,請稍後重試。",
|
|
222
|
+
agent: "生成失敗,請稍後重試。",
|
|
223
|
+
taskFailed: "生成任務失敗,請重試或稍後再試。",
|
|
224
|
+
schema: "結果格式暫時無法展示,請重試生成。",
|
|
225
|
+
resultType: "結果類型暫時無法展示,請重試生成。",
|
|
226
|
+
noResult: "任務已結束,但暫時沒有拿到可展示的 logo 候選。",
|
|
227
|
+
svgAgent: "SVG 轉換失敗,請稍後重試。",
|
|
228
|
+
svgTaskFailed: "SVG 轉換任務失敗,請重試或稍後再試。",
|
|
229
|
+
svgSchema: "SVG 結果格式暫時無法展示,請重試轉換。",
|
|
230
|
+
svgResultType: "SVG 結果類型暫時無法展示,請重試轉換。",
|
|
231
|
+
svgNoResult: "任務已結束,但暫時沒有拿到可下載的 SVG。"
|
|
232
|
+
},
|
|
233
|
+
styles: {
|
|
234
|
+
minimal: "極簡",
|
|
235
|
+
bold: "醒目",
|
|
236
|
+
friendly: "親和",
|
|
237
|
+
premium: "高級",
|
|
238
|
+
futuristic: "未來感"
|
|
239
|
+
},
|
|
240
|
+
palettes: {
|
|
241
|
+
lime: "熒光綠 + 黑",
|
|
242
|
+
blue: "電藍 + 天空藍",
|
|
243
|
+
coral: "橙紅 + 柔黃",
|
|
244
|
+
mono: "黑白中性",
|
|
245
|
+
wine: "酒紅 + 柔粉",
|
|
246
|
+
custom: "自定義配色"
|
|
247
|
+
},
|
|
248
|
+
customPaletteSlots: {
|
|
249
|
+
primary: "主色",
|
|
250
|
+
secondary: "輔色",
|
|
251
|
+
accent: "強調色"
|
|
252
|
+
},
|
|
253
|
+
forms: {
|
|
254
|
+
combination: "圖形 + 字標",
|
|
255
|
+
wordmark: "純文字",
|
|
256
|
+
symbol: "純圖形"
|
|
257
|
+
},
|
|
258
|
+
preferences: {
|
|
259
|
+
trust: "可信",
|
|
260
|
+
speed: "速度感",
|
|
261
|
+
craft: "手工感",
|
|
262
|
+
ai: "智能感",
|
|
263
|
+
global: "國際化",
|
|
264
|
+
calm: "剋制"
|
|
265
|
+
},
|
|
266
|
+
geometries: {
|
|
267
|
+
rounded: "圓潤",
|
|
268
|
+
sharp: "銳利",
|
|
269
|
+
organic: "有機"
|
|
270
|
+
},
|
|
271
|
+
usages: {
|
|
272
|
+
web: "官網",
|
|
273
|
+
app: "App 圖標",
|
|
274
|
+
social: "社媒頭像",
|
|
275
|
+
deck: "融資 / 提案"
|
|
276
|
+
},
|
|
277
|
+
directions: {
|
|
278
|
+
primaryLockup: "主標識組合",
|
|
279
|
+
appIcon: "App 圖標",
|
|
280
|
+
wordmark: "字標方向",
|
|
281
|
+
monogram: "首字母符號"
|
|
282
|
+
},
|
|
283
|
+
summary: {
|
|
284
|
+
productUrl: "網址",
|
|
285
|
+
productName: "產品名",
|
|
286
|
+
style: "風格",
|
|
287
|
+
palette: "配色",
|
|
288
|
+
customPalette: "自定義配色",
|
|
289
|
+
form: "形式",
|
|
290
|
+
industry: "行業",
|
|
291
|
+
audience: "用戶",
|
|
292
|
+
referenceImage: "參考圖"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
appStoreScreenshotGenerator: {
|
|
296
|
+
workspaceTitle: "上傳 UI 截圖生成上架圖",
|
|
297
|
+
mockNotice: "走真實生圖模型生成;不檢查商店後台,正式上傳前仍需複核。",
|
|
298
|
+
optional: "可選",
|
|
299
|
+
required: "必填",
|
|
300
|
+
sourceRequired: "可選",
|
|
301
|
+
optionalFormats: "PNG / JPG / WebP,最多 10 張",
|
|
302
|
+
sourceRequiredWithFormats: "PNG / JPG / WebP,最多 10 張",
|
|
303
|
+
optionalLogoFormats: "PNG / JPG / WebP",
|
|
304
|
+
advancedSummary: "品牌素材與視覺設置",
|
|
305
|
+
sourceLabel: "輸入來源",
|
|
306
|
+
productContextLabel: "產品資訊",
|
|
307
|
+
productUrlLabel: "產品 URL",
|
|
308
|
+
productUrlPlaceholder: "https://tomako.ai/",
|
|
309
|
+
screenshotLabel: "上傳 UI 截圖",
|
|
310
|
+
chooseScreenshot: "拖拽 UI 截圖到這裡,或點擊上傳",
|
|
311
|
+
replaceScreenshot: "替換 UI 截圖",
|
|
312
|
+
continueUpload: "繼續上傳",
|
|
313
|
+
previewScreenshot: "預覽第 {index} 張截圖",
|
|
314
|
+
removeScreenshot: "刪除這張截圖",
|
|
315
|
+
closePreview: "關閉預覽",
|
|
316
|
+
previousScreenshot: "上一張截圖",
|
|
317
|
+
nextScreenshot: "下一張截圖",
|
|
318
|
+
screenshotRequiredHint: "PNG / JPG / WebP,最多 10 張",
|
|
319
|
+
uploadedFile: "已選擇:{name}",
|
|
320
|
+
uploadedFilesWithCount: "已選擇 {count} 張:{names}",
|
|
321
|
+
logoLabel: "上傳 Logo",
|
|
322
|
+
chooseLogo: "拖拽 Logo 到這裡,或點擊上傳",
|
|
323
|
+
replaceLogo: "替換 Logo",
|
|
324
|
+
uploadedLogoWithSize: "Logo:{name}({width} × {height})",
|
|
325
|
+
productNameLabel: "產品名稱",
|
|
326
|
+
productNamePlaceholder: "Tomato",
|
|
327
|
+
benefitsLabel: "想強調的賣點 / 生成方向",
|
|
328
|
+
benefitsPlaceholder:
|
|
329
|
+
"例:這是一款給獨立開發者記錄靈感和任務的效率工具;核心功能是快速新建記錄、標籤管理、進度追蹤;希望風格乾淨、輕量、有高級感。",
|
|
330
|
+
assetCountLabel: "生成圖片數量",
|
|
331
|
+
assetCountHint: "1-10 張",
|
|
332
|
+
assetCountOptions: {
|
|
333
|
+
1: "1",
|
|
334
|
+
2: "2",
|
|
335
|
+
3: "3",
|
|
336
|
+
4: "4",
|
|
337
|
+
5: "5",
|
|
338
|
+
6: "6",
|
|
339
|
+
7: "7",
|
|
340
|
+
8: "8",
|
|
341
|
+
9: "9",
|
|
342
|
+
10: "10"
|
|
343
|
+
},
|
|
344
|
+
outputLanguageLabel: "輸出語言",
|
|
345
|
+
platformLabel: "商店平臺",
|
|
346
|
+
layoutLabel: "輸出版式",
|
|
347
|
+
styleLabel: "視覺風格",
|
|
348
|
+
paletteLabel: "配色方向",
|
|
349
|
+
headlineLabel: "主標題",
|
|
350
|
+
headlinePlaceholder: "例如:把每一天安排得更輕鬆",
|
|
351
|
+
subheadlineLabel: "副標題",
|
|
352
|
+
subheadlinePlaceholder: "一句話解釋核心功能或主要收益。",
|
|
353
|
+
generate: "生成上架圖",
|
|
354
|
+
generating: "生成中…",
|
|
355
|
+
reset: "重新開始",
|
|
356
|
+
loadingTitle: "正在生成上架圖",
|
|
357
|
+
loadingHint: "正在根據你上傳的截圖生成上架圖。",
|
|
358
|
+
loadingPhases: {
|
|
359
|
+
submitting: "準備素材",
|
|
360
|
+
planning: "安排版式",
|
|
361
|
+
generating: "生成圖片",
|
|
362
|
+
finalizing: "準備展示"
|
|
363
|
+
},
|
|
364
|
+
progressCount: "已完成 {completed}/{total} 張",
|
|
365
|
+
remainingMinutes: "預計還需約 {minutes} 分鐘",
|
|
366
|
+
stillWorking: "仍在處理,已完成圖片會保留",
|
|
367
|
+
progressDisclosure: "第一張完成後會立刻出現在這裡,後面的圖片會繼續補上。",
|
|
368
|
+
partialReadyHint: "已完成圖片可先預覽和下載,剩餘圖片會繼續生成。",
|
|
369
|
+
nextImageLoading: "下一張正在生成",
|
|
370
|
+
nextImageWithTitle: "正在生成:{title}",
|
|
371
|
+
pendingImageLoading: "第 {index} 張上架圖正在生成",
|
|
372
|
+
pendingImageShort: "生成中",
|
|
373
|
+
partialStillProcessingWarning:
|
|
374
|
+
"已生成 {successCount}/{totalCount} 張;剩餘圖片仍在雲端處理,當前結果已保留,可稍後重試或重新生成。",
|
|
375
|
+
previewTitle: "上架圖預覽",
|
|
376
|
+
previewHint: "生成後可選擇單張或多張圖片下載,全部下載會導出 ZIP 壓縮包。",
|
|
377
|
+
emptyTitle: "先上傳 UI 截圖",
|
|
378
|
+
emptyHint: "上傳至少一張真實 UI 截圖;產品名稱、URL 和賣點可以補充上下文,生成結果會圍繞截圖展開。",
|
|
379
|
+
downloadTitle: "導出素材",
|
|
380
|
+
downloadHint: "PNG 適合上傳商店後臺,SVG 適合繼續在設計工具裡編輯。",
|
|
381
|
+
download: "下載",
|
|
382
|
+
cancelDownloadSelection: "取消",
|
|
383
|
+
downloadAll: "下載全部",
|
|
384
|
+
downloading: "下載中…",
|
|
385
|
+
downloadPng: "下載 PNG",
|
|
386
|
+
downloadSvg: "下載 SVG",
|
|
387
|
+
downloadSelectHint: "請選擇要下載的圖片。",
|
|
388
|
+
selectForDownload: "選擇下載 {title}",
|
|
389
|
+
downloadError: "下載失敗,請重新選擇圖片再試。",
|
|
390
|
+
validationInput: "請上傳至少一張 UI 截圖。",
|
|
391
|
+
validationProductNameRequired: "請填寫產品名稱。",
|
|
392
|
+
validationSourceRequired: "請提供產品 URL 或上傳 UI 截圖。",
|
|
393
|
+
validationScreenshotRequired: "請先上傳至少一張真實 UI 截圖。",
|
|
394
|
+
validationScreenshotInput: "截圖已選擇,但截圖資訊校驗失敗。請重新選擇這些 UI 截圖後再生成。",
|
|
395
|
+
validationUrl: "請先輸入產品 URL,或切換為上傳 UI 截圖。",
|
|
396
|
+
validationUpload: "請先上傳一張 UI 截圖,或切換為輸入產品 URL。",
|
|
397
|
+
errorOutput: "生成結果校驗失敗,請重新生成。",
|
|
398
|
+
partialGenerationWarning:
|
|
399
|
+
"已生成 {successCount} 張,{failedCount} 張失敗:{formats}。可先下載成功結果,或切換單一版式後重試。",
|
|
400
|
+
generationError: "Agent 或真實生圖任務失敗,請稍後重試或減少輸入複雜度。",
|
|
401
|
+
generationErrorWithDetail: "Agent 或真實生圖任務失敗:{detail}",
|
|
402
|
+
generationTimeout: "生圖任務等待超時,請稍後重試或檢查後端 image task 狀態。",
|
|
403
|
+
fileTypeError: "請上傳 PNG、JPG 或 WebP 圖片。",
|
|
404
|
+
fileReadError: "截圖讀取失敗,請重新上傳。",
|
|
405
|
+
defaultProductName: "Your App",
|
|
406
|
+
defaultHeadline: "展示核心功能",
|
|
407
|
+
defaultSubheadline: "用清晰視覺和短文案解釋用戶為什麼要下載。",
|
|
408
|
+
urlSourceLabel: "URL brief",
|
|
409
|
+
screenshotSourceLabel: "UI screenshot",
|
|
410
|
+
sources: {
|
|
411
|
+
url: "產品 URL",
|
|
412
|
+
upload: "UI 截圖"
|
|
413
|
+
},
|
|
414
|
+
platforms: {
|
|
415
|
+
apple: "Apple App Store",
|
|
416
|
+
google: "Google Play"
|
|
417
|
+
},
|
|
418
|
+
outputLanguages: {
|
|
419
|
+
zh: "中文",
|
|
420
|
+
en: "English"
|
|
421
|
+
},
|
|
422
|
+
layouts: {
|
|
423
|
+
mixed: "混合尺寸",
|
|
424
|
+
portrait: "豎版套圖",
|
|
425
|
+
feature: "橫版主圖"
|
|
426
|
+
},
|
|
427
|
+
styles: {
|
|
428
|
+
clean: "乾淨產品感",
|
|
429
|
+
bold: "高轉化醒目",
|
|
430
|
+
editorial: "編輯感高級",
|
|
431
|
+
dark: "深色質感"
|
|
432
|
+
},
|
|
433
|
+
formats: {
|
|
434
|
+
iphone: "iPhone 截圖",
|
|
435
|
+
ipad: "iPad 截圖",
|
|
436
|
+
googlePhone: "Google Play 手機圖",
|
|
437
|
+
featureGraphic: "橫版 Feature 圖"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
appIconResizer: {
|
|
441
|
+
workspaceTitle: "App icon 切圖",
|
|
442
|
+
workspaceHint: "上傳一張源圖,選擇平臺資源包,下載可放進商店後臺或工程目錄的 PNG ZIP。",
|
|
443
|
+
uploadLabel: "上傳圖標",
|
|
444
|
+
uploadHint: "建議 1024 x 1024+ 方形 PNG,也支持 JPG / WebP",
|
|
445
|
+
platformLabel: "平臺資源包",
|
|
446
|
+
fitLabel: "裁切方式",
|
|
447
|
+
backgroundLabel: "背景色",
|
|
448
|
+
backgroundActive: "用於留白填充",
|
|
449
|
+
backgroundFallback: "用於透明像素",
|
|
450
|
+
generate: "生成圖標資源包",
|
|
451
|
+
generating: "正在切圖…",
|
|
452
|
+
reset: "重新開始",
|
|
453
|
+
previewTitle: "源圖預覽",
|
|
454
|
+
sourcePreviewAlt: "上傳的 app icon 源圖預覽。",
|
|
455
|
+
emptyPreviewTitle: "拖拽圖標到這裡,或點擊上傳",
|
|
456
|
+
emptyPreviewHint: "推薦上傳 1024 x 1024 或更大的方形 PNG;也支持 JPG、WebP,工具會本地切出平臺尺寸。",
|
|
457
|
+
replaceHint: "點擊或拖拽可替換源圖",
|
|
458
|
+
openPreview: "放大預覽源圖",
|
|
459
|
+
removeSource: "刪除源圖",
|
|
460
|
+
previewDialogTitle: "源圖預覽",
|
|
461
|
+
standardsTitle: "平臺資源摘要",
|
|
462
|
+
compactResourceSummary: "將生成 {count} 個 PNG,覆蓋 App Store、Google Play 和工程目錄常用尺寸。",
|
|
463
|
+
packageSummaries: {
|
|
464
|
+
all: "將生成 {count} 個 PNG:Xcode AppIcon.appiconset、App Store 1024、Google Play 512 和 Android mipmap。",
|
|
465
|
+
apple: "將生成 {count} 個 PNG:Xcode AppIcon.appiconset 全套和單獨 App Store 1024 圖標。",
|
|
466
|
+
google: "將生成 {count} 個 PNG:Google Play 512 上傳圖和 Android legacy launcher mipmap。"
|
|
467
|
+
},
|
|
468
|
+
groupMeta: "{count} 個文件,最大 {max}",
|
|
469
|
+
submissionNote: "Apple 資源放入 Xcode 後隨 build 提交;GooglePlay/app-icon-512.png 用於 Play Console 的 App icon。",
|
|
470
|
+
cornerNote: "不要預先加圓角或外陰影;平臺會按自己的規則套用遮罩、圓角或陰影。",
|
|
471
|
+
sourceMeta: "源圖尺寸:{width} x {height}",
|
|
472
|
+
loadingTitle: "正在生成資源包",
|
|
473
|
+
loadingState: "正在切出每個目標尺寸、寫入說明文件並打包 ZIP。",
|
|
474
|
+
loadingSteps: {
|
|
475
|
+
render: "切出目標尺寸",
|
|
476
|
+
review: "檢查資源包",
|
|
477
|
+
readme: "寫入說明文件",
|
|
478
|
+
zip: "準備 ZIP 下載"
|
|
479
|
+
},
|
|
480
|
+
resultTitle: "圖標資源包已生成",
|
|
481
|
+
resultHint: "已準備 {count} 個 PNG 圖標、README 和 ZIP 下載包。",
|
|
482
|
+
resultTabsLabel: "結果篩選",
|
|
483
|
+
resultTabs: {
|
|
484
|
+
all: "全部",
|
|
485
|
+
apple: "App Store",
|
|
486
|
+
google: "Google Play"
|
|
487
|
+
},
|
|
488
|
+
assetPreviewTitle: "圖標預覽",
|
|
489
|
+
openAssetPreview: "預覽圖標",
|
|
490
|
+
previousAsset: "上一張",
|
|
491
|
+
nextAsset: "下一張",
|
|
492
|
+
downloadZip: "下載 ZIP",
|
|
493
|
+
selectedTitle: "選中圖標",
|
|
494
|
+
downloadPng: "下載 PNG",
|
|
495
|
+
outputEmptyTitle: "先上傳源圖並選擇平臺",
|
|
496
|
+
outputEmptyHint: "上傳 1024px+ 方形源圖,選擇 Apple、Google Play 或雙平臺資源包,然後生成。完成後這裡會展示 ZIP 下載和圖標預覽。",
|
|
497
|
+
platforms: {
|
|
498
|
+
all: "App Store + Google Play",
|
|
499
|
+
apple: "Apple App Store / iOS",
|
|
500
|
+
google: "Google Play / Android"
|
|
501
|
+
},
|
|
502
|
+
fits: {
|
|
503
|
+
cover: "居中裁切成方形",
|
|
504
|
+
contain: "保留完整圖,加背景"
|
|
505
|
+
},
|
|
506
|
+
warnings: {
|
|
507
|
+
notSquare: "源圖不是方形,當前會居中裁切成方形且不會拉伸。正式上傳前建議用方形源文件複核主體和邊緣。",
|
|
508
|
+
below1024: "源圖短邊低於 1024px,商店 1024 圖標會被放大,可能不夠銳利。",
|
|
509
|
+
svg: "SVG 會先由瀏覽器光柵化為 PNG,複雜濾鏡可能和設計工具導出不完全一致。",
|
|
510
|
+
googlePlayTooLarge: "Google Play 512 圖標超過 1024KB,請用更簡潔的源圖重新生成或手動壓縮後再上傳。"
|
|
511
|
+
},
|
|
512
|
+
errors: {
|
|
513
|
+
missingFile: "請先上傳一張圖標圖片。",
|
|
514
|
+
fileType: "請上傳 PNG、JPG 或 WebP 圖片。",
|
|
515
|
+
fileRead: "圖片讀取失敗,請重新上傳。",
|
|
516
|
+
invalidSettings: "設置無效,請檢查平臺資源包。",
|
|
517
|
+
tooSmall: "源圖短邊低於 512px,不適合作為商店圖標源文件。",
|
|
518
|
+
tooSmallApple: "Apple / App Store 資源需要 1024px 以上的源圖,請上傳更高分辨率的 App Icon。",
|
|
519
|
+
tooSmallGoogle: "Google Play 資源需要至少 512px 的源圖,請上傳更高分辨率的 App Icon。",
|
|
520
|
+
generate: "圖標生成失敗,請換一張圖片或重新嘗試。"
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
} as const;
|
|
524
|
+
|
|
525
|
+
export default toolsUi;
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const TOMAKO_TOOLS_RUNTIME_PACKAGE = "@tomako/tools-runtime";
|
|
2
|
+
export const TOMAKO_TOOLS_RUNTIME_VERSION = "0.0.1";
|
|
3
|
+
|
|
4
|
+
export { registerToolsRuntimeHostClient } from "./host/client";
|
|
5
|
+
export { registerToolsRuntimeHostServer } from "./host/server";
|
|
6
|
+
export type { ToolsRuntimeHostClient } from "./host/client";
|
|
7
|
+
export type { ToolsRuntimeHostServer, SiteNavigationCopy } from "./host/server";
|
|
8
|
+
export type { AppLocale } from "./i18n/locale";
|
|
9
|
+
export type { ToolSpec, ToolStatus, ToolModule, ToolPageProps } from "./features/tools/types";
|
|
10
|
+
export { getToolSpec, resolveToolSlug, listToolSpecs } from "./features/tools/spec-registry";
|
|
11
|
+
export { loadToolModule } from "./features/tools/runtime-registry";
|
|
12
|
+
export { loadPackageToolModule } from "./features/tools/package/to-tool-module";
|
|
13
|
+
export { ToolPageShell } from "./features/tools/shared/tool-page-shell";
|
|
14
|
+
export { ToolHandoffProvider, useToolHandoff, NOOP_TOOL_HANDOFF } from "./features/tools/shared/tool-handoff";
|
|
15
|
+
export type { ToolHandoffAdapter } from "./features/tools/shared/tool-handoff";
|