| 1 | import type { ComputerUseDict } from "../types"; |
| 2 | |
| 3 | /** |
| 4 | * English reference dictionary for `app/[locale]/computer-use/page.tsx` and |
| 5 | * the Computer Use section of the install page. Product names (Codewhale, |
| 6 | * Computer Use), the menu items Pause, Stop and Check for updates, and the |
| 7 | * macOS setting names stay as the app shows them. |
| 8 | */ |
| 9 | export const computerUse: ComputerUseDict = { |
| 10 | metaTitle: "Computer Use for Mac · Codewhale", |
| 11 | metaDescription: "Download and set up Codewhale Computer Use for Mac. Background app control, permission setup, and human Pause and Stop controls.", |
| 12 | title: "Computer Use", |
| 13 | lead: "Let Codewhale work in your apps while you keep working. The Mac helper brings permissions, background app control, and a way to pause or stop input to your menu bar.", |
| 14 | publisher: "By Codewhale", |
| 15 | download: "Download for Mac", |
| 16 | downloadZip: "ZIP archive (used by the in-app updater)", |
| 17 | requirements: "macOS 13.5 or later · Apple silicon and Intel", |
| 18 | included: "One app download. No separate Node installation or compiler required.", |
| 19 | pendingTitle: "Mac download in preparation", |
| 20 | pendingBody: "The public installer will appear here after Apple notarization and release checks are complete.", |
| 21 | unavailableTitle: "Download availability could not be checked", |
| 22 | unavailableBody: "Refresh this page to try again, or check the published releases below.", |
| 23 | releases: "Published releases", |
| 24 | receipt: "Download verification details", |
| 25 | setup: "Set up your Mac", |
| 26 | steps: [ |
| 27 | { title: "Install the app", body: "Open the disk image and drag Codewhale Computer Use into Applications. Open it from Applications, then choose Computer Use from the whale icon in your menu bar." }, |
| 28 | { title: "Review permissions", body: "Use the setup buttons to open Accessibility and Screen Recording in System Settings. You choose which permissions to grant." }, |
| 29 | { title: "Run the background check", body: "The helper opens a disposable practice window, enters text, and captures that window. It checks whether the pointer or active app changed during the run." }, |
| 30 | { title: "Connect it to Codewhale", body: "Review, trust, and enable Computer Use in Codewhale’s plugin marketplace. Use plugin 0.3.1 or later so local actions go through the helper’s Pause and Stop controls." }, |
| 31 | ], |
| 32 | controlsTitle: "Keep working. Keep control.", |
| 33 | controlsBody: "Supported actions operate on the selected app in the background. Apps and gestures that need foreground control require your authorization. The menu shows the target and input mode; Pause suspends helper input, and Stop ends its existing sessions.", |
| 34 | updateTitle: "Updates when you choose", |
| 35 | updateBody: "Choose Check for updates from the app. Before installing an update, it checks the download, Codewhale signature, and Apple notarization, and keeps the previous app for recovery.", |
| 36 | help: "Setup and troubleshooting", |
| 37 | notes: "Release notes", |
| 38 | demo: "See the background check", |
| 39 | source: "Source and other platforms", |
| 40 | platforms: "This download is for Mac. Windows and Linux currently use the source plugin and host-side setup.", |
| 41 | installTitle: "Computer Use for Mac", |
| 42 | installLead: "Add background app control with the Computer Use helper. Set up Mac permissions, run a background check, and pause or stop helper input from your menu bar.", |
| 43 | installLink: "Computer Use download and setup", |
| 44 | }; |
| 45 |