@cat-factory/app 0.54.0 → 0.54.2
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/app/components/bootstrap/BootstrapModal.vue +81 -69
- package/app/components/environments/EnvironmentStatusPanel.vue +37 -14
- package/app/components/focus/BlockFocusView.vue +92 -98
- package/app/components/fragments/FragmentLibraryManager.vue +104 -69
- package/app/components/fragments/FragmentLibraryPanel.vue +2 -1
- package/app/components/kaizen/KaizenPanel.vue +36 -25
- package/app/components/kaizen/KaizenStepStatus.vue +13 -10
- package/app/components/media/ArtifactLightbox.vue +20 -14
- package/app/components/media/ImageCompare.vue +35 -22
- package/app/components/provisioning/ProvisioningLogsDrawer.vue +27 -14
- package/app/components/recurring/RecurrenceEditor.vue +22 -15
- package/app/components/sandbox/SandboxPanel.vue +126 -59
- package/app/pages/index.vue +20 -8
- package/app/stores/workspace.ts +10 -5
- package/i18n/locales/en.json +409 -0
- package/i18n/locales/es.json +400 -0
- package/i18n/locales/fr.json +400 -0
- package/i18n/locales/pl.json +400 -0
- package/i18n/locales/uk.json +400 -0
- package/package.json +1 -1
package/i18n/locales/en.json
CHANGED
|
@@ -3071,5 +3071,414 @@
|
|
|
3071
3071
|
"overallProgress": "Overall progress",
|
|
3072
3072
|
"dependencies": "Dependencies",
|
|
3073
3073
|
"noDependencies": "None"
|
|
3074
|
+
},
|
|
3075
|
+
"environments": {
|
|
3076
|
+
"title": "Ephemeral environment",
|
|
3077
|
+
"status": {
|
|
3078
|
+
"provisioning": "Spinning up…",
|
|
3079
|
+
"ready": "Running",
|
|
3080
|
+
"failed": "Errored",
|
|
3081
|
+
"expired": "Expired",
|
|
3082
|
+
"tearing_down": "Shutting down…",
|
|
3083
|
+
"torn_down": "Shut down"
|
|
3084
|
+
},
|
|
3085
|
+
"expires": "Expires {date}",
|
|
3086
|
+
"empty": "No ephemeral environment for this run."
|
|
3087
|
+
},
|
|
3088
|
+
"provisioning": {
|
|
3089
|
+
"title": "Provisioning logs",
|
|
3090
|
+
"refresh": "Refresh",
|
|
3091
|
+
"empty": "No provisioning attempts recorded yet.",
|
|
3092
|
+
"operation": {
|
|
3093
|
+
"provision": "Spin up",
|
|
3094
|
+
"teardown": "Tear down",
|
|
3095
|
+
"status": "Status check",
|
|
3096
|
+
"dispatch": "Spin up",
|
|
3097
|
+
"release": "Tear down",
|
|
3098
|
+
"poll-failure": "Health check"
|
|
3099
|
+
},
|
|
3100
|
+
"outcome": {
|
|
3101
|
+
"success": "success",
|
|
3102
|
+
"failure": "failure"
|
|
3103
|
+
}
|
|
3104
|
+
},
|
|
3105
|
+
"kaizen": {
|
|
3106
|
+
"title": "Kaizen",
|
|
3107
|
+
"@title": {
|
|
3108
|
+
"description": "Product feature name (Japanese for 'continuous improvement'); keep verbatim in every locale."
|
|
3109
|
+
},
|
|
3110
|
+
"subtitle": "Continuous-improvement grading of agent runs",
|
|
3111
|
+
"refresh": "Refresh",
|
|
3112
|
+
"notConfigured": "Kaizen is not configured on this deployment.",
|
|
3113
|
+
"grading": {
|
|
3114
|
+
"title": "Kaizen grading"
|
|
3115
|
+
},
|
|
3116
|
+
"status": {
|
|
3117
|
+
"scheduled": "Scheduled",
|
|
3118
|
+
"grading": "Grading…",
|
|
3119
|
+
"failed": "Failed",
|
|
3120
|
+
"graded": "Graded"
|
|
3121
|
+
},
|
|
3122
|
+
"gradeValue": "{grade}/5",
|
|
3123
|
+
"scheduledHint": "A Kaizen grading is queued for this step. It runs in the background after the run.",
|
|
3124
|
+
"recommendations": "Recommendations",
|
|
3125
|
+
"noImprovements": "Smooth interaction, nothing to improve.",
|
|
3126
|
+
"gradedBy": "Graded by {model}",
|
|
3127
|
+
"failedFallback": "The grading could not be completed.",
|
|
3128
|
+
"promptVersion": "v{version}",
|
|
3129
|
+
"verifiedCombos": {
|
|
3130
|
+
"title": "Verified combos",
|
|
3131
|
+
"count": "({count})",
|
|
3132
|
+
"hint": "A prompt + agent + model combination that graded 4 or 5 with no recommendations five times in a row. These are no longer graded.",
|
|
3133
|
+
"empty": "No combos yet.",
|
|
3134
|
+
"progress": "{count}/5",
|
|
3135
|
+
"modelPrompt": "{model} · prompt v{version}"
|
|
3136
|
+
},
|
|
3137
|
+
"history": {
|
|
3138
|
+
"title": "Grading history",
|
|
3139
|
+
"col": {
|
|
3140
|
+
"when": "When",
|
|
3141
|
+
"agent": "Agent",
|
|
3142
|
+
"model": "Model",
|
|
3143
|
+
"grade": "Grade",
|
|
3144
|
+
"recommendations": "Recommendations"
|
|
3145
|
+
},
|
|
3146
|
+
"empty": "No gradings yet."
|
|
3147
|
+
}
|
|
3148
|
+
},
|
|
3149
|
+
"recurring": {
|
|
3150
|
+
"runEvery": "Run every",
|
|
3151
|
+
"hours": "hours",
|
|
3152
|
+
"allowedDays": "Allowed days",
|
|
3153
|
+
"allowedDaysHelp": "Leave all off to run any day.",
|
|
3154
|
+
"weekday": {
|
|
3155
|
+
"sun": "Sun",
|
|
3156
|
+
"@sun": {
|
|
3157
|
+
"description": "Three-letter abbreviation of the weekday Sunday (not the star). Keep it short."
|
|
3158
|
+
},
|
|
3159
|
+
"mon": "Mon",
|
|
3160
|
+
"tue": "Tue",
|
|
3161
|
+
"wed": "Wed",
|
|
3162
|
+
"thu": "Thu",
|
|
3163
|
+
"fri": "Fri",
|
|
3164
|
+
"sat": "Sat"
|
|
3165
|
+
},
|
|
3166
|
+
"windowToggle": "Only within an hour-of-day window (e.g. business hours)",
|
|
3167
|
+
"to": "to",
|
|
3168
|
+
"timezone": "Timezone"
|
|
3169
|
+
},
|
|
3170
|
+
"media": {
|
|
3171
|
+
"compare": {
|
|
3172
|
+
"mode": {
|
|
3173
|
+
"sideBySide": "Side by side",
|
|
3174
|
+
"overlay": "Overlay",
|
|
3175
|
+
"swipe": "Swipe",
|
|
3176
|
+
"diff": "Difference"
|
|
3177
|
+
},
|
|
3178
|
+
"actual": "Actual",
|
|
3179
|
+
"reference": "Reference",
|
|
3180
|
+
"actualAlt": "{view} (actual)",
|
|
3181
|
+
"referenceAlt": "{view} (reference)",
|
|
3182
|
+
"replace": "Replace",
|
|
3183
|
+
"failedToLoad": "Failed to load",
|
|
3184
|
+
"loading": "Loading…",
|
|
3185
|
+
"notCaptured": "Not captured",
|
|
3186
|
+
"dropHint": "Drop or click to add a reference",
|
|
3187
|
+
"diffHint": "Identical pixels appear black; differences glow."
|
|
3188
|
+
},
|
|
3189
|
+
"lightbox": {
|
|
3190
|
+
"ariaLabel": "Screenshot: {label}",
|
|
3191
|
+
"ariaLabelFallback": "Screenshot viewer",
|
|
3192
|
+
"fallbackTitle": "Screenshot",
|
|
3193
|
+
"counter": "{current} / {total}",
|
|
3194
|
+
"zoomOut": "Zoom out (-)",
|
|
3195
|
+
"zoomIn": "Zoom in (+)",
|
|
3196
|
+
"reset": "Reset (0)",
|
|
3197
|
+
"close": "Close (Esc)",
|
|
3198
|
+
"prev": "Previous (←)",
|
|
3199
|
+
"next": "Next (→)",
|
|
3200
|
+
"failed": "Failed to load image.",
|
|
3201
|
+
"loading": "Loading…"
|
|
3202
|
+
}
|
|
3203
|
+
},
|
|
3204
|
+
"fragments": {
|
|
3205
|
+
"panel": {
|
|
3206
|
+
"title": "Prompt-fragment library"
|
|
3207
|
+
},
|
|
3208
|
+
"intro": {
|
|
3209
|
+
"workspace": "Curate the best-practice guidelines agents follow on this board. Fragments are merged from the built-in catalog, your account, and this board (later tiers override earlier ones), then the relevant ones are selected for each agent run.",
|
|
3210
|
+
"account": "Curate best-practice guidelines shared by every board in this account. Account fragments are merged below the built-in catalog and above nothing, and a board can override or add its own on top. The relevant ones are selected for each agent run."
|
|
3211
|
+
},
|
|
3212
|
+
"owner": {
|
|
3213
|
+
"workspace": "This board",
|
|
3214
|
+
"account": "This account"
|
|
3215
|
+
},
|
|
3216
|
+
"tier": {
|
|
3217
|
+
"builtin": "Built-in",
|
|
3218
|
+
"account": "Account",
|
|
3219
|
+
"workspace": "This board"
|
|
3220
|
+
},
|
|
3221
|
+
"tab": {
|
|
3222
|
+
"catalog": "Resolved catalog",
|
|
3223
|
+
"documents": "Documents",
|
|
3224
|
+
"sources": "Repo sources"
|
|
3225
|
+
},
|
|
3226
|
+
"catalog": {
|
|
3227
|
+
"summary": "{count} fragment resolved · {builtin} built-in. | {count} fragments resolved · {builtin} built-in.",
|
|
3228
|
+
"live": "Live · {source}"
|
|
3229
|
+
},
|
|
3230
|
+
"authored": {
|
|
3231
|
+
"fromRepo": "from repo",
|
|
3232
|
+
"empty": {
|
|
3233
|
+
"workspace": "No board-specific fragments yet. Add one below, or override a built-in by using its id.",
|
|
3234
|
+
"account": "No account-specific fragments yet. Add one below, or override a built-in by using its id."
|
|
3235
|
+
},
|
|
3236
|
+
"addTitle": "Add a fragment",
|
|
3237
|
+
"titlePlaceholder": "Title",
|
|
3238
|
+
"summaryPlaceholder": "One-line summary (used by the selector)",
|
|
3239
|
+
"bodyPlaceholder": "Guidance body (injected into the prompt)",
|
|
3240
|
+
"tagsPlaceholder": "Tags, comma-separated (e.g. backend, db)",
|
|
3241
|
+
"add": "Add fragment"
|
|
3242
|
+
},
|
|
3243
|
+
"documents": {
|
|
3244
|
+
"intro": "Link a Confluence/Notion page or a GitHub file as a best-practice fragment. Its guidance is re-resolved from the source at run time: edit the doc and the next agent run follows the new version (no re-import).",
|
|
3245
|
+
"lastResolved": "last resolved {date}",
|
|
3246
|
+
"refreshTitle": "Re-resolve from source now",
|
|
3247
|
+
"empty": "No document-backed fragments yet. Link one below.",
|
|
3248
|
+
"linkTitle": "Link a document",
|
|
3249
|
+
"disabledHint": "Create a board with a connected document source first; account-level document fragments are fetched through one of this account's boards.",
|
|
3250
|
+
"connectFirst": "Connect a document source (Confluence, Notion or GitHub) under Integrations first.",
|
|
3251
|
+
"refPlaceholder": "Page id or URL (e.g. a Confluence/Notion page or GitHub file URL)",
|
|
3252
|
+
"tagsPlaceholder": "Tags, comma-separated (optional)",
|
|
3253
|
+
"link": "Link as living fragment"
|
|
3254
|
+
},
|
|
3255
|
+
"sources": {
|
|
3256
|
+
"metaSynced": "synced · ref {ref}",
|
|
3257
|
+
"metaNever": "never synced · ref {ref}",
|
|
3258
|
+
"changes": "{count} change | {count} changes",
|
|
3259
|
+
"empty": "No linked guideline repos. Link one below to import its Markdown files as fragments.",
|
|
3260
|
+
"linkTitle": "Link a guideline repo",
|
|
3261
|
+
"ownerPlaceholder": "owner",
|
|
3262
|
+
"repoPlaceholder": "repo",
|
|
3263
|
+
"dirPlaceholder": "dir path (e.g. guidelines)",
|
|
3264
|
+
"refPlaceholder": "ref (default HEAD)",
|
|
3265
|
+
"link": "Link & sync"
|
|
3266
|
+
},
|
|
3267
|
+
"toast": {
|
|
3268
|
+
"added": "Fragment added",
|
|
3269
|
+
"addFailed": "Could not add fragment",
|
|
3270
|
+
"removed": "Fragment removed",
|
|
3271
|
+
"removeFailed": "Could not remove fragment",
|
|
3272
|
+
"documentLinked": "Document linked as a living fragment",
|
|
3273
|
+
"linkDocumentFailed": "Could not link document",
|
|
3274
|
+
"refreshed": "Fragment re-resolved from source",
|
|
3275
|
+
"refreshFailed": "Could not refresh fragment",
|
|
3276
|
+
"sourceLinked": "Source linked & synced",
|
|
3277
|
+
"linkSourceFailed": "Could not link source",
|
|
3278
|
+
"synced": "Synced: {updated} updated, {removed} removed",
|
|
3279
|
+
"syncFailed": "Could not sync source",
|
|
3280
|
+
"changesAvailable": "{count} change available | {count} changes available",
|
|
3281
|
+
"upToDate": "Up to date",
|
|
3282
|
+
"checkSourceFailed": "Could not check source",
|
|
3283
|
+
"sourceUnlinked": "Source unlinked",
|
|
3284
|
+
"unlinkSourceFailed": "Could not unlink source"
|
|
3285
|
+
}
|
|
3286
|
+
},
|
|
3287
|
+
"sandbox": {
|
|
3288
|
+
"title": "Sandbox: prompt and model testing",
|
|
3289
|
+
"description": "Try prompt versions and models against graded fixtures, scored by a judge model.",
|
|
3290
|
+
"unavailable": {
|
|
3291
|
+
"title": "The Sandbox isn't enabled for this deployment.",
|
|
3292
|
+
"body": "It needs its own database (a dedicated {db} on Cloudflare, or the {schema} Postgres schema on Node). Provision it and reload.",
|
|
3293
|
+
"@body": {
|
|
3294
|
+
"description": "{db} and {schema} are injected code identifiers (database / schema names) shown as inline code; keep them as the {placeholders}."
|
|
3295
|
+
}
|
|
3296
|
+
},
|
|
3297
|
+
"error": {
|
|
3298
|
+
"title": "The Sandbox failed to load."
|
|
3299
|
+
},
|
|
3300
|
+
"deploymentDefault": "Deployment default",
|
|
3301
|
+
"defaultRunName": "{kind} sandbox run",
|
|
3302
|
+
"baseline": "baseline",
|
|
3303
|
+
"versionLabel": "v{version}",
|
|
3304
|
+
"tab": {
|
|
3305
|
+
"experiments": "Experiments",
|
|
3306
|
+
"prompts": "Prompts",
|
|
3307
|
+
"fixtures": "Fixtures"
|
|
3308
|
+
},
|
|
3309
|
+
"builder": {
|
|
3310
|
+
"title": "New experiment",
|
|
3311
|
+
"agent": "Agent",
|
|
3312
|
+
"promptVersions": "Prompt versions",
|
|
3313
|
+
"models": "Models",
|
|
3314
|
+
"noModels": "No selectable models. Configure a provider key or enable Cloudflare AI.",
|
|
3315
|
+
"fixtures": "Fixtures",
|
|
3316
|
+
"noFixtures": "No fixtures for this agent.",
|
|
3317
|
+
"judgeModel": "Judge model",
|
|
3318
|
+
"judgeModelHint": "grades every cell",
|
|
3319
|
+
"nameLabel": "Name (optional)",
|
|
3320
|
+
"cellCount": "{count} cell | {count} cells",
|
|
3321
|
+
"maxCells": "(max {max})",
|
|
3322
|
+
"run": "Run"
|
|
3323
|
+
},
|
|
3324
|
+
"experimentStatus": {
|
|
3325
|
+
"draft": "draft",
|
|
3326
|
+
"running": "running",
|
|
3327
|
+
"done": "done",
|
|
3328
|
+
"failed": "failed"
|
|
3329
|
+
},
|
|
3330
|
+
"results": {
|
|
3331
|
+
"col": {
|
|
3332
|
+
"prompt": "Prompt",
|
|
3333
|
+
"model": "Model",
|
|
3334
|
+
"fixture": "Fixture",
|
|
3335
|
+
"score": "Score",
|
|
3336
|
+
"objective": "Objective"
|
|
3337
|
+
},
|
|
3338
|
+
"failed": "failed",
|
|
3339
|
+
"past": "Past experiments",
|
|
3340
|
+
"empty": "No experiments yet."
|
|
3341
|
+
},
|
|
3342
|
+
"prompts": {
|
|
3343
|
+
"forkTitle": "Fork into a candidate",
|
|
3344
|
+
"editTitle": "Edit / version",
|
|
3345
|
+
"forkOf": "Fork · {name}",
|
|
3346
|
+
"newVersionOf": "New version of · {name}",
|
|
3347
|
+
"saveVersion": "Save new version",
|
|
3348
|
+
"hint": "Pick a prompt to fork a shipped baseline or version a candidate. Each save appends an immutable version you can put under test."
|
|
3349
|
+
},
|
|
3350
|
+
"fixtureKind": {
|
|
3351
|
+
"requirements": "requirements",
|
|
3352
|
+
"clarity": "clarity",
|
|
3353
|
+
"architecture": "architecture",
|
|
3354
|
+
"code-review": "code review",
|
|
3355
|
+
"repo-feature": "repo feature",
|
|
3356
|
+
"repo-bug": "repo bug"
|
|
3357
|
+
},
|
|
3358
|
+
"fixtureOrigin": {
|
|
3359
|
+
"builtin": "builtin",
|
|
3360
|
+
"custom": "custom"
|
|
3361
|
+
},
|
|
3362
|
+
"fixtures": {
|
|
3363
|
+
"expectations": "{count} graded expectation | {count} graded expectations",
|
|
3364
|
+
"empty": "No fixtures."
|
|
3365
|
+
},
|
|
3366
|
+
"toast": {
|
|
3367
|
+
"running": "Running experiment…",
|
|
3368
|
+
"complete": "Experiment complete",
|
|
3369
|
+
"runFailed": "Could not run the experiment",
|
|
3370
|
+
"versionSaved": "Saved a new version",
|
|
3371
|
+
"saveFailed": "Could not save the version",
|
|
3372
|
+
"archiveFailed": "Could not archive"
|
|
3373
|
+
}
|
|
3374
|
+
},
|
|
3375
|
+
"bootstrap": {
|
|
3376
|
+
"title": "Bootstrap a repository",
|
|
3377
|
+
"repoName": {
|
|
3378
|
+
"error": {
|
|
3379
|
+
"hasSlash": "Enter just the repository name, without the 'owner/' prefix.",
|
|
3380
|
+
"invalidChars": "Only letters, digits, '.', '_' and '-' are allowed.",
|
|
3381
|
+
"tooLong": "Must be 100 characters or fewer."
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
"intro": {
|
|
3385
|
+
"canCreate": "Create an empty GitHub repository, then let a bootstrapper agent populate it in a sandbox container, either by adapting one of your reference architectures or from scratch following a freeform prompt. cat-factory pushes the initial commit into that repo; for this account it can create the repository for you too.",
|
|
3386
|
+
"manual": "Create an empty GitHub repository, then let a bootstrapper agent populate it in a sandbox container, either by adapting one of your reference architectures or from scratch following a freeform prompt. cat-factory pushes the initial commit into that repo; you create the repository (one click below), so it needs no repo-creation permission."
|
|
3387
|
+
},
|
|
3388
|
+
"github": {
|
|
3389
|
+
"prompt": "Connect this workspace to GitHub before bootstrapping; a run pushes into a repository. Link an installation the App is already on, or install it."
|
|
3390
|
+
},
|
|
3391
|
+
"section": {
|
|
3392
|
+
"newRepo": "New repository"
|
|
3393
|
+
},
|
|
3394
|
+
"mode": {
|
|
3395
|
+
"label": "How should we start?",
|
|
3396
|
+
"reference": {
|
|
3397
|
+
"label": "From a reference architecture",
|
|
3398
|
+
"description": "Clone a managed base repo and adapt it to the new service."
|
|
3399
|
+
},
|
|
3400
|
+
"scratch": {
|
|
3401
|
+
"label": "From scratch",
|
|
3402
|
+
"description": "Scaffold a brand-new repo from a freeform prompt, no base needed."
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
"reference": {
|
|
3406
|
+
"label": "Reference architecture",
|
|
3407
|
+
"description": "The managed base repo to clone and adapt.",
|
|
3408
|
+
"empty": "No reference architectures yet. Add one below, or switch to 'From scratch'.",
|
|
3409
|
+
"placeholder": "Choose a reference architecture"
|
|
3410
|
+
},
|
|
3411
|
+
"targetRepo": {
|
|
3412
|
+
"label": "Target repository name",
|
|
3413
|
+
"descWithOwner": "Create a fresh repo with this name under {owner}, then bootstrap pushes into it. A prepopulated README, .gitignore or license is fine.",
|
|
3414
|
+
"descNoOwner": "Create a fresh repo with this name, then bootstrap pushes into it. A prepopulated README, .gitignore or license is fine."
|
|
3415
|
+
},
|
|
3416
|
+
"createRepo": {
|
|
3417
|
+
"now": "Create repository",
|
|
3418
|
+
"onGitHub": "Create on GitHub",
|
|
3419
|
+
"titleNow": "Create the repository now",
|
|
3420
|
+
"titleGitHub": "Open GitHub's new-repository page, prefilled"
|
|
3421
|
+
},
|
|
3422
|
+
"grantAccess": {
|
|
3423
|
+
"label": "Grant the App access to this repo",
|
|
3424
|
+
"title": "Open the App's installation settings to grant it access to the new repo"
|
|
3425
|
+
},
|
|
3426
|
+
"description": {
|
|
3427
|
+
"label": "Description",
|
|
3428
|
+
"help": "Optional one-line summary for the repo."
|
|
3429
|
+
},
|
|
3430
|
+
"instructions": {
|
|
3431
|
+
"labelReference": "Extra instructions for the bootstrapper",
|
|
3432
|
+
"labelScratch": "What should the bootstrapper build?",
|
|
3433
|
+
"descReference": "Optional, appended to the reference architecture's default instructions.",
|
|
3434
|
+
"descScratch": "Describe the new service: stack, structure, and what it should do."
|
|
3435
|
+
},
|
|
3436
|
+
"visibility": {
|
|
3437
|
+
"label": "Visibility",
|
|
3438
|
+
"private": "Private repository"
|
|
3439
|
+
},
|
|
3440
|
+
"launch": "Bootstrap repo",
|
|
3441
|
+
"recent": {
|
|
3442
|
+
"title": "Recent runs",
|
|
3443
|
+
"fromArch": "from {name}",
|
|
3444
|
+
"fromScratch": "from scratch",
|
|
3445
|
+
"open": "Open"
|
|
3446
|
+
},
|
|
3447
|
+
"status": {
|
|
3448
|
+
"pending": "pending",
|
|
3449
|
+
"running": "running",
|
|
3450
|
+
"succeeded": "succeeded",
|
|
3451
|
+
"failed": "failed"
|
|
3452
|
+
},
|
|
3453
|
+
"arch": {
|
|
3454
|
+
"title": "Reference architectures",
|
|
3455
|
+
"add": "Add",
|
|
3456
|
+
"pickRepo": {
|
|
3457
|
+
"label": "Pick an existing GitHub repo",
|
|
3458
|
+
"description": "Choose a repo you can access to fill in its owner and name, or enter them manually below."
|
|
3459
|
+
},
|
|
3460
|
+
"name": {
|
|
3461
|
+
"label": "Name",
|
|
3462
|
+
"description": "A friendly label for this base."
|
|
3463
|
+
},
|
|
3464
|
+
"repoOwner": "Repo owner",
|
|
3465
|
+
"repoName": "Repo name",
|
|
3466
|
+
"descriptionPlaceholder": "Optional summary of this base",
|
|
3467
|
+
"defaultInstructions": {
|
|
3468
|
+
"label": "Default bootstrapper instructions",
|
|
3469
|
+
"description": "Prepended to the per-run instructions whenever this base is used."
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
"toast": {
|
|
3473
|
+
"repoCreated": "Repository created",
|
|
3474
|
+
"repoCreateFailed": "Could not create repository",
|
|
3475
|
+
"failed": "Bootstrap failed",
|
|
3476
|
+
"failedFallback": "The bootstrapper reported a failure.",
|
|
3477
|
+
"started": "Bootstrapping started",
|
|
3478
|
+
"startedDesc": "A container is bootstrapping {repo}; watch its progress on the board.",
|
|
3479
|
+
"bootstrapFailed": "Could not bootstrap",
|
|
3480
|
+
"saveArchFailed": "Could not save reference architecture",
|
|
3481
|
+
"deleteFailed": "Could not delete"
|
|
3482
|
+
}
|
|
3074
3483
|
}
|
|
3075
3484
|
}
|