@cat-factory/app 0.92.2 → 0.94.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/app/components/auth/LoginScreen.vue +5 -1
- package/app/components/board/AddTaskModal.vue +25 -5
- package/app/components/board/CreateInitiativeModal.vue +9 -1
- package/app/components/board/RecurringPipelineModal.vue +20 -4
- package/app/components/bootstrap/BootstrapModal.vue +9 -1
- package/app/components/brainstorm/BrainstormWindow.vue +5 -1
- package/app/components/clarity/ClarityReviewWindow.vue +5 -1
- package/app/components/docs/DocInterviewWindow.vue +209 -0
- package/app/components/documents/DocumentTemplatesModal.vue +5 -1
- package/app/components/fragments/FragmentLibraryManager.vue +10 -2
- package/app/components/github/GitHubPanel.vue +25 -4
- package/app/components/layout/BoardSwitcher.vue +10 -1
- package/app/components/layout/BoardToolbar.vue +15 -3
- package/app/components/layout/GitHubPatBanner.vue +5 -1
- package/app/components/layout/ProviderConfigBanner.vue +5 -1
- package/app/components/panels/AgentStepDetail.vue +5 -1
- package/app/components/panels/InspectorPanel.vue +5 -1
- package/app/components/panels/StepRestartControl.vue +10 -2
- package/app/components/panels/StepResultViewHost.vue +4 -0
- package/app/components/panels/inspector/FrontendConfig.vue +10 -1
- package/app/components/panels/inspector/RecurringScheduleSettings.vue +11 -3
- package/app/components/pipeline/PipelineBuilder.vue +15 -2
- package/app/components/pipeline/PipelineProgress.vue +10 -2
- package/app/components/providers/AiPresetMismatchDialog.vue +10 -1
- package/app/components/providers/PersonalCredentialModal.vue +18 -2
- package/app/components/requirements/RequirementsReviewWindow.vue +5 -1
- package/app/components/sandbox/SandboxPanel.vue +10 -1
- package/app/components/settings/InfraHandlersConfigurator.vue +5 -1
- package/app/components/settings/InfrastructureWindow.vue +18 -2
- package/app/components/settings/IssueTrackerPanel.vue +20 -4
- package/app/components/settings/LocalModelEndpointsPanel.vue +5 -1
- package/app/components/settings/ModelConfigurationPanel.vue +20 -3
- package/app/components/settings/ProviderConnectionTab.vue +5 -1
- package/app/components/settings/SharedStacksPanel.vue +363 -0
- package/app/components/spec/ServiceSpecWindow.vue +15 -3
- package/app/components/testing/TestReportWindow.vue +10 -2
- package/app/composables/api/docInterview.ts +36 -0
- package/app/composables/api/sharedStacks.ts +42 -0
- package/app/composables/useApi.ts +4 -0
- package/app/composables/useWorkspaceStream.ts +5 -0
- package/app/stores/docInterview.ts +89 -0
- package/app/stores/sharedStacks.ts +65 -0
- package/app/stores/workspace.ts +3 -0
- package/app/types/doc-interview.ts +9 -0
- package/app/types/domain.ts +1 -0
- package/app/types/sharedStacks.ts +8 -0
- package/i18n/locales/en.json +62 -0
- package/i18n/locales/es.json +62 -0
- package/i18n/locales/fr.json +62 -0
- package/i18n/locales/he.json +62 -0
- package/i18n/locales/ja.json +62 -0
- package/i18n/locales/pl.json +62 -0
- package/i18n/locales/tr.json +62 -0
- package/i18n/locales/uk.json +62 -0
- package/package.json +5 -5
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { defineStore } from 'pinia'
|
|
2
|
+
import { ref } from 'vue'
|
|
3
|
+
import type { SharedStack, UpdateSharedStackInput } from '~/types/sharedStacks'
|
|
4
|
+
import { useWorkspaceStore } from '~/stores/workspace'
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* The workspace's shared stacks — long-lived compose infra (e.g. acme-shared-services) that
|
|
8
|
+
* per-PR consumer environments attach to over an external network. Hydrated from the workspace
|
|
9
|
+
* snapshot; managed via the Infrastructure window's "Shared stacks" panel. CRUD works on every
|
|
10
|
+
* backend, but the bring-up (`ensureUp`) / teardown drive a host Docker daemon, so they succeed
|
|
11
|
+
* only on the local facade (elsewhere the backend returns a clear error the panel surfaces).
|
|
12
|
+
*
|
|
13
|
+
* Mutations refresh the workspace snapshot (the stack list rides it), while the async lifecycle
|
|
14
|
+
* actions patch the returned record in place so the panel shows the new status immediately.
|
|
15
|
+
*/
|
|
16
|
+
export const useSharedStacksStore = defineStore('sharedStacks', () => {
|
|
17
|
+
const api = useApi()
|
|
18
|
+
const stacks = ref<SharedStack[]>([])
|
|
19
|
+
|
|
20
|
+
function hydrate(list: SharedStack[]) {
|
|
21
|
+
stacks.value = [...list].sort((a, b) => a.createdAt - b.createdAt)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function patch(stack: SharedStack) {
|
|
25
|
+
const idx = stacks.value.findIndex((s) => s.id === stack.id)
|
|
26
|
+
if (idx >= 0) stacks.value[idx] = stack
|
|
27
|
+
else stacks.value.push(stack)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
async function create(input: Parameters<typeof api.createSharedStack>[1]) {
|
|
31
|
+
const ws = useWorkspaceStore()
|
|
32
|
+
const created = await api.createSharedStack(ws.requireId(), input)
|
|
33
|
+
await ws.refresh()
|
|
34
|
+
return created
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
async function update(stackId: string, patchInput: UpdateSharedStackInput) {
|
|
38
|
+
const ws = useWorkspaceStore()
|
|
39
|
+
const updated = await api.updateSharedStack(ws.requireId(), stackId, patchInput)
|
|
40
|
+
await ws.refresh()
|
|
41
|
+
return updated
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
async function remove(stackId: string) {
|
|
45
|
+
const ws = useWorkspaceStore()
|
|
46
|
+
await api.deleteSharedStack(ws.requireId(), stackId)
|
|
47
|
+
await ws.refresh()
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
async function ensureUp(stackId: string) {
|
|
51
|
+
const ws = useWorkspaceStore()
|
|
52
|
+
const updated = await api.ensureSharedStackUp(ws.requireId(), stackId)
|
|
53
|
+
patch(updated)
|
|
54
|
+
return updated
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async function teardown(stackId: string) {
|
|
58
|
+
const ws = useWorkspaceStore()
|
|
59
|
+
const updated = await api.teardownSharedStack(ws.requireId(), stackId)
|
|
60
|
+
patch(updated)
|
|
61
|
+
return updated
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return { stacks, hydrate, create, update, remove, ensureUp, teardown }
|
|
65
|
+
})
|
package/app/stores/workspace.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { useExecutionStore } from '~/stores/execution'
|
|
|
8
8
|
import { useAgentRunsStore } from '~/stores/agentRuns'
|
|
9
9
|
import { useNotificationsStore } from '~/stores/notifications'
|
|
10
10
|
import { useMergePresetsStore } from '~/stores/mergePresets'
|
|
11
|
+
import { useSharedStacksStore } from '~/stores/sharedStacks'
|
|
11
12
|
import { useWorkspaceSettingsStore } from '~/stores/workspaceSettings'
|
|
12
13
|
import { useAgentConfigStore } from '~/stores/agentConfig'
|
|
13
14
|
import { useModelPresetsStore } from '~/stores/modelPresets'
|
|
@@ -84,6 +85,7 @@ export const useWorkspaceStore = defineStore(
|
|
|
84
85
|
useConsensusStore().reset()
|
|
85
86
|
useGitHubStore().reset()
|
|
86
87
|
useInitiativesStore().reset()
|
|
88
|
+
useDocInterviewStore().reset()
|
|
87
89
|
// The fragment picker catalog is per-board (the merged tenant catalog), so drop
|
|
88
90
|
// it too — the next inspector open re-fetches it for the switched-to board rather
|
|
89
91
|
// than showing the previous board's (or a raw-id placeholder for) fragments.
|
|
@@ -106,6 +108,7 @@ export const useWorkspaceStore = defineStore(
|
|
|
106
108
|
snapshot.mergePresets ?? [],
|
|
107
109
|
snapshot.mergePresetCatalogVersions,
|
|
108
110
|
)
|
|
111
|
+
useSharedStacksStore().hydrate(snapshot.sharedStacks ?? [])
|
|
109
112
|
useWorkspaceSettingsStore().hydrate(snapshot.settings)
|
|
110
113
|
useAgentConfigStore().hydrate(snapshot.agentConfigCatalog ?? [])
|
|
111
114
|
useModelPresetsStore().hydrate(snapshot.modelPresets ?? [])
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Interactive document-interview wire shapes (WS5), re-exported from the shared contracts
|
|
2
|
+
// package (the single source of truth across the wire boundary). The SPA imports these through
|
|
3
|
+
// `~/types/domain` like every other domain type.
|
|
4
|
+
export type {
|
|
5
|
+
AnswerDocInterviewInput,
|
|
6
|
+
DocInterviewQa,
|
|
7
|
+
DocInterviewSession,
|
|
8
|
+
DocInterviewStatus,
|
|
9
|
+
} from '@cat-factory/contracts'
|
package/app/types/domain.ts
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// Wire types for shared stacks — long-lived compose infra a consumer environment attaches to
|
|
2
|
+
// over an external network. Re-exported from the single source of truth (`@cat-factory/contracts`).
|
|
3
|
+
export type {
|
|
4
|
+
SharedStack,
|
|
5
|
+
SharedStackStatus,
|
|
6
|
+
CreateSharedStackInput,
|
|
7
|
+
UpdateSharedStackInput,
|
|
8
|
+
} from '@cat-factory/contracts'
|
package/i18n/locales/en.json
CHANGED
|
@@ -2155,6 +2155,52 @@
|
|
|
2155
2155
|
"removeFailed": "Could not remove the registry entry"
|
|
2156
2156
|
}
|
|
2157
2157
|
},
|
|
2158
|
+
"sharedStacks": {
|
|
2159
|
+
"tab": "Shared stacks",
|
|
2160
|
+
"intro": "Long-lived compose infrastructure (databases, brokers, search, mail) brought up once per workspace and reused across runs and pull requests. A test environment attaches to a stack's managed network. Bringing a stack up runs on a local Docker deployment; on other backends you can still manage the definition.",
|
|
2161
|
+
"stackNoun": "shared stack",
|
|
2162
|
+
"status": {
|
|
2163
|
+
"stopped": "Stopped",
|
|
2164
|
+
"starting": "Starting",
|
|
2165
|
+
"running": "Running",
|
|
2166
|
+
"failed": "Failed"
|
|
2167
|
+
},
|
|
2168
|
+
"list": {
|
|
2169
|
+
"heading": "Configured stacks",
|
|
2170
|
+
"start": "Start",
|
|
2171
|
+
"stop": "Stop",
|
|
2172
|
+
"edit": "Edit",
|
|
2173
|
+
"remove": "Delete stack"
|
|
2174
|
+
},
|
|
2175
|
+
"add": {
|
|
2176
|
+
"heading": "Add a shared stack",
|
|
2177
|
+
"name": "Name",
|
|
2178
|
+
"cloneUrl": "Repository clone URL",
|
|
2179
|
+
"cloneUrlHelp": "The git repository the stack's compose files live in.",
|
|
2180
|
+
"gitRef": "Branch or tag (optional)",
|
|
2181
|
+
"composeFiles": "Compose files",
|
|
2182
|
+
"composeFilesHelp": "Comma-separated, repo-relative, in override order.",
|
|
2183
|
+
"composeProfiles": "Compose profiles (optional)",
|
|
2184
|
+
"managedNetworks": "Managed networks (optional)",
|
|
2185
|
+
"managedNetworksHelp": "Networks this stack creates and owns for consumers to attach to.",
|
|
2186
|
+
"allowHostCommands": "Allow host-command setup steps",
|
|
2187
|
+
"save": "Add stack"
|
|
2188
|
+
},
|
|
2189
|
+
"edit": {
|
|
2190
|
+
"heading": "Edit shared stack",
|
|
2191
|
+
"save": "Save changes",
|
|
2192
|
+
"cancel": "Cancel"
|
|
2193
|
+
},
|
|
2194
|
+
"toast": {
|
|
2195
|
+
"created": "Shared stack added",
|
|
2196
|
+
"createFailed": "Could not add the shared stack",
|
|
2197
|
+
"updated": "Shared stack updated",
|
|
2198
|
+
"updateFailed": "Could not update the shared stack",
|
|
2199
|
+
"startFailed": "Could not start the shared stack",
|
|
2200
|
+
"stopFailed": "Could not stop the shared stack",
|
|
2201
|
+
"removeFailed": "Could not delete the shared stack"
|
|
2202
|
+
}
|
|
2203
|
+
},
|
|
2158
2204
|
"localMode": {
|
|
2159
2205
|
"title": "Local mode",
|
|
2160
2206
|
"intro": "Tuning for the local container runner, stored on this machine's deployment (it replaced the {poolVars} / {harnessVars} env vars). Saving resizes the warm pool live, no restart needed; in-flight runs keep the container they already hold.",
|
|
@@ -2718,6 +2764,22 @@
|
|
|
2718
2764
|
"body": "Slack notifications will stop until you reconnect."
|
|
2719
2765
|
}
|
|
2720
2766
|
},
|
|
2767
|
+
"docInterview": {
|
|
2768
|
+
"title": "Refine the document",
|
|
2769
|
+
"subtitle": "Answer the interviewer's questions so it can shape the document",
|
|
2770
|
+
"intro": "The interviewer is refining this document before it's written. Answer its questions to shape the scope, audience and structure, then continue — or proceed to draft with what it has.",
|
|
2771
|
+
"empty": "No interview found for this block.",
|
|
2772
|
+
"brief": "Authoring brief",
|
|
2773
|
+
"converged": "No questions are pending. The interviewer has what it needs and the document is being drafted.",
|
|
2774
|
+
"answerPlaceholder": "Your answer",
|
|
2775
|
+
"hint": "Continue lets the interviewer ask follow-ups; Proceed drafts with the answers so far.",
|
|
2776
|
+
"proceed": "Proceed to draft",
|
|
2777
|
+
"continue": "Continue",
|
|
2778
|
+
"status": {
|
|
2779
|
+
"awaiting": "Awaiting answers",
|
|
2780
|
+
"done": "Done"
|
|
2781
|
+
}
|
|
2782
|
+
},
|
|
2721
2783
|
"documents": {
|
|
2722
2784
|
"picker": {
|
|
2723
2785
|
"searchPlaceholder": "Search pages or paste a URL/ID…",
|
package/i18n/locales/es.json
CHANGED
|
@@ -1984,6 +1984,52 @@
|
|
|
1984
1984
|
"removeFailed": "No se pudo eliminar la entrada del registro"
|
|
1985
1985
|
}
|
|
1986
1986
|
},
|
|
1987
|
+
"sharedStacks": {
|
|
1988
|
+
"tab": "Stacks compartidos",
|
|
1989
|
+
"intro": "Infraestructura de Compose de larga duración (bases de datos, brokers, búsqueda, correo) que se levanta una vez por espacio de trabajo y se reutiliza en todas las ejecuciones y pull requests. Un entorno de pruebas se conecta a la red gestionada de un stack. Levantar un stack requiere un despliegue local de Docker; en otros backends puedes gestionar igualmente la definición.",
|
|
1990
|
+
"stackNoun": "stack compartido",
|
|
1991
|
+
"status": {
|
|
1992
|
+
"stopped": "Detenido",
|
|
1993
|
+
"starting": "Iniciando",
|
|
1994
|
+
"running": "En ejecución",
|
|
1995
|
+
"failed": "Con errores"
|
|
1996
|
+
},
|
|
1997
|
+
"list": {
|
|
1998
|
+
"heading": "Stacks configurados",
|
|
1999
|
+
"start": "Iniciar",
|
|
2000
|
+
"stop": "Detener",
|
|
2001
|
+
"edit": "Editar",
|
|
2002
|
+
"remove": "Eliminar stack"
|
|
2003
|
+
},
|
|
2004
|
+
"add": {
|
|
2005
|
+
"heading": "Añadir un stack compartido",
|
|
2006
|
+
"name": "Nombre",
|
|
2007
|
+
"cloneUrl": "URL de clonación del repositorio",
|
|
2008
|
+
"cloneUrlHelp": "El repositorio git donde viven los archivos de Compose del stack.",
|
|
2009
|
+
"gitRef": "Rama o etiqueta (opcional)",
|
|
2010
|
+
"composeFiles": "Archivos de Compose",
|
|
2011
|
+
"composeFilesHelp": "Separados por comas, relativos al repositorio, en orden de anulación.",
|
|
2012
|
+
"composeProfiles": "Perfiles de Compose (opcional)",
|
|
2013
|
+
"managedNetworks": "Redes gestionadas (opcional)",
|
|
2014
|
+
"managedNetworksHelp": "Redes que este stack crea y posee para que los consumidores se conecten.",
|
|
2015
|
+
"allowHostCommands": "Permitir pasos de configuración con comandos del host",
|
|
2016
|
+
"save": "Añadir stack"
|
|
2017
|
+
},
|
|
2018
|
+
"edit": {
|
|
2019
|
+
"heading": "Editar stack compartido",
|
|
2020
|
+
"save": "Guardar cambios",
|
|
2021
|
+
"cancel": "Cancelar"
|
|
2022
|
+
},
|
|
2023
|
+
"toast": {
|
|
2024
|
+
"created": "Stack compartido añadido",
|
|
2025
|
+
"createFailed": "No se pudo añadir el stack compartido",
|
|
2026
|
+
"updated": "Stack compartido actualizado",
|
|
2027
|
+
"updateFailed": "No se pudo actualizar el stack compartido",
|
|
2028
|
+
"startFailed": "No se pudo iniciar el stack compartido",
|
|
2029
|
+
"stopFailed": "No se pudo detener el stack compartido",
|
|
2030
|
+
"removeFailed": "No se pudo eliminar el stack compartido"
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
1987
2033
|
"localMode": {
|
|
1988
2034
|
"title": "Modo local",
|
|
1989
2035
|
"intro": "Ajustes del ejecutor de contenedores local, almacenados en el despliegue de esta máquina (reemplazó las variables de entorno {poolVars} / {harnessVars}). Guardar redimensiona el grupo en caliente en vivo, sin necesidad de reiniciar; las ejecuciones en curso conservan el contenedor que ya tienen.",
|
|
@@ -2645,6 +2691,22 @@
|
|
|
2645
2691
|
"body": "Las notificaciones de Slack se detendrán hasta que vuelvas a conectar."
|
|
2646
2692
|
}
|
|
2647
2693
|
},
|
|
2694
|
+
"docInterview": {
|
|
2695
|
+
"title": "Refinar el documento",
|
|
2696
|
+
"subtitle": "Responde a las preguntas del entrevistador para dar forma al documento",
|
|
2697
|
+
"intro": "El entrevistador está refinando este documento antes de redactarlo. Responde a sus preguntas para definir el alcance, el público y la estructura, y luego continúa — o procede a redactar con lo que tiene.",
|
|
2698
|
+
"empty": "No se encontró ninguna entrevista para este bloque.",
|
|
2699
|
+
"brief": "Resumen de redacción",
|
|
2700
|
+
"converged": "No hay preguntas pendientes. El entrevistador tiene lo que necesita y el documento se está redactando.",
|
|
2701
|
+
"answerPlaceholder": "Tu respuesta",
|
|
2702
|
+
"hint": "Continuar permite al entrevistador hacer preguntas de seguimiento; Proceder redacta con las respuestas actuales.",
|
|
2703
|
+
"proceed": "Proceder a redactar",
|
|
2704
|
+
"continue": "Continuar",
|
|
2705
|
+
"status": {
|
|
2706
|
+
"awaiting": "Esperando respuestas",
|
|
2707
|
+
"done": "Hecho"
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2648
2710
|
"documents": {
|
|
2649
2711
|
"picker": {
|
|
2650
2712
|
"searchPlaceholder": "Busca páginas o pega una URL o ID…",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1984,6 +1984,52 @@
|
|
|
1984
1984
|
"removeFailed": "Impossible de supprimer l'entrée du registre"
|
|
1985
1985
|
}
|
|
1986
1986
|
},
|
|
1987
|
+
"sharedStacks": {
|
|
1988
|
+
"tab": "Stacks partagés",
|
|
1989
|
+
"intro": "Infrastructure Compose de longue durée (bases de données, brokers, recherche, e-mail) démarrée une fois par espace de travail et réutilisée pour toutes les exécutions et pull requests. Un environnement de test se connecte au réseau géré d'un stack. Démarrer un stack nécessite un déploiement Docker local ; sur les autres backends, vous pouvez tout de même gérer la définition.",
|
|
1990
|
+
"stackNoun": "stack partagé",
|
|
1991
|
+
"status": {
|
|
1992
|
+
"stopped": "Arrêté",
|
|
1993
|
+
"starting": "Démarrage",
|
|
1994
|
+
"running": "En cours d'exécution",
|
|
1995
|
+
"failed": "Échec"
|
|
1996
|
+
},
|
|
1997
|
+
"list": {
|
|
1998
|
+
"heading": "Stacks configurés",
|
|
1999
|
+
"start": "Démarrer",
|
|
2000
|
+
"stop": "Arrêter",
|
|
2001
|
+
"edit": "Modifier",
|
|
2002
|
+
"remove": "Supprimer le stack"
|
|
2003
|
+
},
|
|
2004
|
+
"add": {
|
|
2005
|
+
"heading": "Ajouter un stack partagé",
|
|
2006
|
+
"name": "Nom",
|
|
2007
|
+
"cloneUrl": "URL de clonage du dépôt",
|
|
2008
|
+
"cloneUrlHelp": "Le dépôt git où se trouvent les fichiers Compose du stack.",
|
|
2009
|
+
"gitRef": "Branche ou tag (facultatif)",
|
|
2010
|
+
"composeFiles": "Fichiers Compose",
|
|
2011
|
+
"composeFilesHelp": "Séparés par des virgules, relatifs au dépôt, dans l'ordre de surcharge.",
|
|
2012
|
+
"composeProfiles": "Profils Compose (facultatif)",
|
|
2013
|
+
"managedNetworks": "Réseaux gérés (facultatif)",
|
|
2014
|
+
"managedNetworksHelp": "Réseaux que ce stack crée et possède pour que les consommateurs s'y connectent.",
|
|
2015
|
+
"allowHostCommands": "Autoriser les étapes de configuration par commande hôte",
|
|
2016
|
+
"save": "Ajouter le stack"
|
|
2017
|
+
},
|
|
2018
|
+
"edit": {
|
|
2019
|
+
"heading": "Modifier le stack partagé",
|
|
2020
|
+
"save": "Enregistrer les modifications",
|
|
2021
|
+
"cancel": "Annuler"
|
|
2022
|
+
},
|
|
2023
|
+
"toast": {
|
|
2024
|
+
"created": "Stack partagé ajouté",
|
|
2025
|
+
"createFailed": "Impossible d'ajouter le stack partagé",
|
|
2026
|
+
"updated": "Stack partagé mis à jour",
|
|
2027
|
+
"updateFailed": "Impossible de mettre à jour le stack partagé",
|
|
2028
|
+
"startFailed": "Impossible de démarrer le stack partagé",
|
|
2029
|
+
"stopFailed": "Impossible d'arrêter le stack partagé",
|
|
2030
|
+
"removeFailed": "Impossible de supprimer le stack partagé"
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
1987
2033
|
"localMode": {
|
|
1988
2034
|
"title": "Mode local",
|
|
1989
2035
|
"intro": "Réglage de l'exécuteur de conteneurs local, stocké sur le déploiement de cette machine (il a remplacé les variables d'environnement {poolVars} / {harnessVars}). L'enregistrement redimensionne le pool à chaud en direct, sans redémarrage nécessaire; les exécutions en cours conservent le conteneur qu'elles détiennent déjà.",
|
|
@@ -2645,6 +2691,22 @@
|
|
|
2645
2691
|
"body": "Les notifications Slack seront interrompues jusqu'à la reconnexion."
|
|
2646
2692
|
}
|
|
2647
2693
|
},
|
|
2694
|
+
"docInterview": {
|
|
2695
|
+
"title": "Affiner le document",
|
|
2696
|
+
"subtitle": "Répondez aux questions de l'intervieweur pour façonner le document",
|
|
2697
|
+
"intro": "L'intervieweur affine ce document avant sa rédaction. Répondez à ses questions pour définir la portée, le public et la structure, puis continuez — ou procédez à la rédaction avec ce qu'il a.",
|
|
2698
|
+
"empty": "Aucun entretien trouvé pour ce bloc.",
|
|
2699
|
+
"brief": "Brief de rédaction",
|
|
2700
|
+
"converged": "Aucune question en attente. L'intervieweur a ce qu'il lui faut et le document est en cours de rédaction.",
|
|
2701
|
+
"answerPlaceholder": "Votre réponse",
|
|
2702
|
+
"hint": "Continuer permet à l'intervieweur de poser des questions complémentaires ; Procéder rédige avec les réponses actuelles.",
|
|
2703
|
+
"proceed": "Procéder à la rédaction",
|
|
2704
|
+
"continue": "Continuer",
|
|
2705
|
+
"status": {
|
|
2706
|
+
"awaiting": "En attente de réponses",
|
|
2707
|
+
"done": "Terminé"
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2648
2710
|
"documents": {
|
|
2649
2711
|
"picker": {
|
|
2650
2712
|
"searchPlaceholder": "Recherchez des pages ou collez une URL ou un ID…",
|
package/i18n/locales/he.json
CHANGED
|
@@ -2105,6 +2105,52 @@
|
|
|
2105
2105
|
"removeFailed": "הסרת רשומת המאגר נכשלה"
|
|
2106
2106
|
}
|
|
2107
2107
|
},
|
|
2108
|
+
"sharedStacks": {
|
|
2109
|
+
"tab": "מקבצים משותפים",
|
|
2110
|
+
"intro": "תשתית Compose ארוכת-טווח (מסדי נתונים, ברוקרים, חיפוש, דואר) שמופעלת פעם אחת לכל סביבת עבודה ומשמשת מחדש בכל ההרצות ובקשות המשיכה. סביבת בדיקה מתחברת לרשת המנוהלת של מקבץ. הפעלת מקבץ מחייבת פריסת Docker מקומית; ב-backends אחרים עדיין ניתן לנהל את ההגדרה.",
|
|
2111
|
+
"stackNoun": "מקבץ משותף",
|
|
2112
|
+
"status": {
|
|
2113
|
+
"stopped": "הופסק",
|
|
2114
|
+
"starting": "מופעל",
|
|
2115
|
+
"running": "פועל",
|
|
2116
|
+
"failed": "נכשל"
|
|
2117
|
+
},
|
|
2118
|
+
"list": {
|
|
2119
|
+
"heading": "מקבצים מוגדרים",
|
|
2120
|
+
"start": "הפעלה",
|
|
2121
|
+
"stop": "עצירה",
|
|
2122
|
+
"edit": "עריכה",
|
|
2123
|
+
"remove": "מחיקת מקבץ"
|
|
2124
|
+
},
|
|
2125
|
+
"add": {
|
|
2126
|
+
"heading": "הוספת מקבץ משותף",
|
|
2127
|
+
"name": "שם",
|
|
2128
|
+
"cloneUrl": "כתובת שכפול של המאגר",
|
|
2129
|
+
"cloneUrlHelp": "מאגר ה-git שבו נמצאים קובצי ה-Compose של המקבץ.",
|
|
2130
|
+
"gitRef": "ענף או תג (אופציונלי)",
|
|
2131
|
+
"composeFiles": "קובצי Compose",
|
|
2132
|
+
"composeFilesHelp": "מופרדים בפסיקים, יחסית למאגר, לפי סדר הדריסה.",
|
|
2133
|
+
"composeProfiles": "פרופילי Compose (אופציונלי)",
|
|
2134
|
+
"managedNetworks": "רשתות מנוהלות (אופציונלי)",
|
|
2135
|
+
"managedNetworksHelp": "רשתות שהמקבץ יוצר ומחזיק כדי שצרכנים יתחברו אליהן.",
|
|
2136
|
+
"allowHostCommands": "אפשר שלבי הגדרה עם פקודות מארח",
|
|
2137
|
+
"save": "הוספת מקבץ"
|
|
2138
|
+
},
|
|
2139
|
+
"edit": {
|
|
2140
|
+
"heading": "עריכת מקבץ משותף",
|
|
2141
|
+
"save": "שמירת שינויים",
|
|
2142
|
+
"cancel": "ביטול"
|
|
2143
|
+
},
|
|
2144
|
+
"toast": {
|
|
2145
|
+
"created": "המקבץ המשותף נוסף",
|
|
2146
|
+
"createFailed": "לא ניתן להוסיף את המקבץ המשותף",
|
|
2147
|
+
"updated": "המקבץ המשותף עודכן",
|
|
2148
|
+
"updateFailed": "לא ניתן לעדכן את המקבץ המשותף",
|
|
2149
|
+
"startFailed": "לא ניתן להפעיל את המקבץ המשותף",
|
|
2150
|
+
"stopFailed": "לא ניתן לעצור את המקבץ המשותף",
|
|
2151
|
+
"removeFailed": "לא ניתן למחוק את המקבץ המשותף"
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2108
2154
|
"localMode": {
|
|
2109
2155
|
"title": "מצב מקומי",
|
|
2110
2156
|
"intro": "כוונון עבור מריץ הקונטיינרים המקומי, נשמר בפריסה של מכונה זו (הוא החליף את משתני הסביבה {poolVars} / {harnessVars}). שמירה משנה את גודל המאגר החם בזמן אמת, ללא צורך באתחול מחדש; הרצות פעילות שומרות את הקונטיינר שהן כבר מחזיקות.",
|
|
@@ -2656,6 +2702,22 @@
|
|
|
2656
2702
|
"body": "התראות Slack ייפסקו עד לחיבור מחדש."
|
|
2657
2703
|
}
|
|
2658
2704
|
},
|
|
2705
|
+
"docInterview": {
|
|
2706
|
+
"title": "חידוד המסמך",
|
|
2707
|
+
"subtitle": "ענו על שאלות המראיין כדי לעצב את המסמך",
|
|
2708
|
+
"intro": "המראיין מחדד את המסמך לפני כתיבתו. ענו על שאלותיו כדי לעצב את ההיקף, הקהל והמבנה, ואז המשיכו — או המשיכו לטיוטה עם מה שיש לו.",
|
|
2709
|
+
"empty": "לא נמצא ראיון עבור בלוק זה.",
|
|
2710
|
+
"brief": "תקציר כתיבה",
|
|
2711
|
+
"converged": "אין שאלות ממתינות. למראיין יש את מה שהוא צריך והמסמך בכתיבה.",
|
|
2712
|
+
"answerPlaceholder": "התשובה שלך",
|
|
2713
|
+
"hint": "המשך מאפשר למראיין לשאול שאלות המשך; המשך לטיוטה כותב עם התשובות עד כה.",
|
|
2714
|
+
"proceed": "המשך לטיוטה",
|
|
2715
|
+
"continue": "המשך",
|
|
2716
|
+
"status": {
|
|
2717
|
+
"awaiting": "ממתין לתשובות",
|
|
2718
|
+
"done": "הושלם"
|
|
2719
|
+
}
|
|
2720
|
+
},
|
|
2659
2721
|
"documents": {
|
|
2660
2722
|
"picker": {
|
|
2661
2723
|
"searchPlaceholder": "חפש דפים או הדבק כתובת URL/מזהה…",
|
package/i18n/locales/ja.json
CHANGED
|
@@ -2106,6 +2106,52 @@
|
|
|
2106
2106
|
"removeFailed": "レジストリエントリを削除できませんでした"
|
|
2107
2107
|
}
|
|
2108
2108
|
},
|
|
2109
|
+
"sharedStacks": {
|
|
2110
|
+
"tab": "共有スタック",
|
|
2111
|
+
"intro": "ワークスペースごとに一度だけ起動され、すべての実行とプルリクエストで再利用される長期稼働の Compose インフラ(データベース、ブローカー、検索、メール)です。テスト環境はスタックのマネージドネットワークに接続します。スタックの起動にはローカルの Docker デプロイが必要です。他のバックエンドでも定義の管理は可能です。",
|
|
2112
|
+
"stackNoun": "共有スタック",
|
|
2113
|
+
"status": {
|
|
2114
|
+
"stopped": "停止",
|
|
2115
|
+
"starting": "起動中",
|
|
2116
|
+
"running": "実行中",
|
|
2117
|
+
"failed": "失敗"
|
|
2118
|
+
},
|
|
2119
|
+
"list": {
|
|
2120
|
+
"heading": "構成済みのスタック",
|
|
2121
|
+
"start": "開始",
|
|
2122
|
+
"stop": "停止",
|
|
2123
|
+
"edit": "編集",
|
|
2124
|
+
"remove": "スタックを削除"
|
|
2125
|
+
},
|
|
2126
|
+
"add": {
|
|
2127
|
+
"heading": "共有スタックを追加",
|
|
2128
|
+
"name": "名前",
|
|
2129
|
+
"cloneUrl": "リポジトリのクローン URL",
|
|
2130
|
+
"cloneUrlHelp": "スタックの Compose ファイルが置かれている git リポジトリ。",
|
|
2131
|
+
"gitRef": "ブランチまたはタグ(任意)",
|
|
2132
|
+
"composeFiles": "Compose ファイル",
|
|
2133
|
+
"composeFilesHelp": "カンマ区切り、リポジトリ相対、オーバーライド順。",
|
|
2134
|
+
"composeProfiles": "Compose プロファイル(任意)",
|
|
2135
|
+
"managedNetworks": "マネージドネットワーク(任意)",
|
|
2136
|
+
"managedNetworksHelp": "コンシューマーが接続するために、このスタックが作成・所有するネットワーク。",
|
|
2137
|
+
"allowHostCommands": "ホストコマンドのセットアップ手順を許可する",
|
|
2138
|
+
"save": "スタックを追加"
|
|
2139
|
+
},
|
|
2140
|
+
"edit": {
|
|
2141
|
+
"heading": "共有スタックを編集",
|
|
2142
|
+
"save": "変更を保存",
|
|
2143
|
+
"cancel": "キャンセル"
|
|
2144
|
+
},
|
|
2145
|
+
"toast": {
|
|
2146
|
+
"created": "共有スタックを追加しました",
|
|
2147
|
+
"createFailed": "共有スタックを追加できませんでした",
|
|
2148
|
+
"updated": "共有スタックを更新しました",
|
|
2149
|
+
"updateFailed": "共有スタックを更新できませんでした",
|
|
2150
|
+
"startFailed": "共有スタックを開始できませんでした",
|
|
2151
|
+
"stopFailed": "共有スタックを停止できませんでした",
|
|
2152
|
+
"removeFailed": "共有スタックを削除できませんでした"
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2109
2155
|
"localMode": {
|
|
2110
2156
|
"title": "ローカルモード",
|
|
2111
2157
|
"intro": "ローカルコンテナランナーの調整設定で、このマシンのデプロイに保存されます ({poolVars} / {harnessVars} 環境変数を置き換えました)。保存するとウォームプールがライブでサイズ変更され、再起動は不要です。実行中のランは、すでに保持しているコンテナをそのまま使います。",
|
|
@@ -2657,6 +2703,22 @@
|
|
|
2657
2703
|
"body": "再接続するまで Slack の通知が停止します。"
|
|
2658
2704
|
}
|
|
2659
2705
|
},
|
|
2706
|
+
"docInterview": {
|
|
2707
|
+
"title": "ドキュメントを精緻化",
|
|
2708
|
+
"subtitle": "インタビュアーの質問に答えてドキュメントを形作ります",
|
|
2709
|
+
"intro": "インタビュアーは執筆前にこのドキュメントを精緻化しています。質問に答えて範囲・対象読者・構成を定め、続行するか、現状の回答で下書きに進んでください。",
|
|
2710
|
+
"empty": "このブロックのインタビューは見つかりません。",
|
|
2711
|
+
"brief": "執筆ブリーフ",
|
|
2712
|
+
"converged": "保留中の質問はありません。インタビュアーは必要な情報を得ており、ドキュメントを下書き中です。",
|
|
2713
|
+
"answerPlaceholder": "回答",
|
|
2714
|
+
"hint": "「続行」ではインタビュアーが追加の質問をします。「進む」では現状の回答で下書きします。",
|
|
2715
|
+
"proceed": "下書きに進む",
|
|
2716
|
+
"continue": "続行",
|
|
2717
|
+
"status": {
|
|
2718
|
+
"awaiting": "回答待ち",
|
|
2719
|
+
"done": "完了"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2660
2722
|
"documents": {
|
|
2661
2723
|
"picker": {
|
|
2662
2724
|
"searchPlaceholder": "ページを検索、または URL/ID を貼り付け…",
|
package/i18n/locales/pl.json
CHANGED
|
@@ -1984,6 +1984,52 @@
|
|
|
1984
1984
|
"removeFailed": "Nie udało się usunąć wpisu rejestru"
|
|
1985
1985
|
}
|
|
1986
1986
|
},
|
|
1987
|
+
"sharedStacks": {
|
|
1988
|
+
"tab": "Współdzielone stosy",
|
|
1989
|
+
"intro": "Długo działająca infrastruktura Compose (bazy danych, brokery, wyszukiwanie, poczta) uruchamiana raz na przestrzeń roboczą i wykorzystywana ponownie we wszystkich uruchomieniach i pull requestach. Środowisko testowe łączy się z zarządzaną siecią stosu. Uruchomienie stosu wymaga lokalnego wdrożenia Dockera; w innych backendach nadal możesz zarządzać definicją.",
|
|
1990
|
+
"stackNoun": "współdzielony stos",
|
|
1991
|
+
"status": {
|
|
1992
|
+
"stopped": "Zatrzymany",
|
|
1993
|
+
"starting": "Uruchamianie",
|
|
1994
|
+
"running": "Działa",
|
|
1995
|
+
"failed": "Niepowodzenie"
|
|
1996
|
+
},
|
|
1997
|
+
"list": {
|
|
1998
|
+
"heading": "Skonfigurowane stosy",
|
|
1999
|
+
"start": "Uruchom",
|
|
2000
|
+
"stop": "Zatrzymaj",
|
|
2001
|
+
"edit": "Edytuj",
|
|
2002
|
+
"remove": "Usuń stos"
|
|
2003
|
+
},
|
|
2004
|
+
"add": {
|
|
2005
|
+
"heading": "Dodaj współdzielony stos",
|
|
2006
|
+
"name": "Nazwa",
|
|
2007
|
+
"cloneUrl": "URL klonowania repozytorium",
|
|
2008
|
+
"cloneUrlHelp": "Repozytorium git, w którym znajdują się pliki Compose stosu.",
|
|
2009
|
+
"gitRef": "Gałąź lub tag (opcjonalnie)",
|
|
2010
|
+
"composeFiles": "Pliki Compose",
|
|
2011
|
+
"composeFilesHelp": "Rozdzielone przecinkami, względem repozytorium, w kolejności nadpisywania.",
|
|
2012
|
+
"composeProfiles": "Profile Compose (opcjonalnie)",
|
|
2013
|
+
"managedNetworks": "Zarządzane sieci (opcjonalnie)",
|
|
2014
|
+
"managedNetworksHelp": "Sieci, które ten stos tworzy i posiada, aby konsumenci mogli się z nimi łączyć.",
|
|
2015
|
+
"allowHostCommands": "Zezwól na kroki konfiguracji z poleceniami hosta",
|
|
2016
|
+
"save": "Dodaj stos"
|
|
2017
|
+
},
|
|
2018
|
+
"edit": {
|
|
2019
|
+
"heading": "Edytuj współdzielony stos",
|
|
2020
|
+
"save": "Zapisz zmiany",
|
|
2021
|
+
"cancel": "Anuluj"
|
|
2022
|
+
},
|
|
2023
|
+
"toast": {
|
|
2024
|
+
"created": "Dodano współdzielony stos",
|
|
2025
|
+
"createFailed": "Nie udało się dodać współdzielonego stosu",
|
|
2026
|
+
"updated": "Zaktualizowano współdzielony stos",
|
|
2027
|
+
"updateFailed": "Nie udało się zaktualizować współdzielonego stosu",
|
|
2028
|
+
"startFailed": "Nie udało się uruchomić współdzielonego stosu",
|
|
2029
|
+
"stopFailed": "Nie udało się zatrzymać współdzielonego stosu",
|
|
2030
|
+
"removeFailed": "Nie udało się usunąć współdzielonego stosu"
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
1987
2033
|
"localMode": {
|
|
1988
2034
|
"title": "Tryb lokalny",
|
|
1989
2035
|
"intro": "Strojenie lokalnego uruchamiacza kontenerów, przechowywane we wdrożeniu tej maszyny (zastąpiło zmienne środowiskowe {poolVars} / {harnessVars}). Zapisanie zmienia rozmiar ciepłej puli na żywo, bez potrzeby restartu; trwające uruchomienia zachowują kontener, który już mają.",
|
|
@@ -2645,6 +2691,22 @@
|
|
|
2645
2691
|
"body": "Powiadomienia Slack zostaną wstrzymane do ponownego połączenia."
|
|
2646
2692
|
}
|
|
2647
2693
|
},
|
|
2694
|
+
"docInterview": {
|
|
2695
|
+
"title": "Dopracuj dokument",
|
|
2696
|
+
"subtitle": "Odpowiedz na pytania ankietera, aby ukształtować dokument",
|
|
2697
|
+
"intro": "Ankieter dopracowuje ten dokument przed jego napisaniem. Odpowiedz na jego pytania, aby określić zakres, odbiorców i strukturę, a następnie kontynuuj — lub przejdź do redagowania z tym, co ma.",
|
|
2698
|
+
"empty": "Nie znaleziono wywiadu dla tego bloku.",
|
|
2699
|
+
"brief": "Brief redakcyjny",
|
|
2700
|
+
"converged": "Brak oczekujących pytań. Ankieter ma to, czego potrzebuje, a dokument jest redagowany.",
|
|
2701
|
+
"answerPlaceholder": "Twoja odpowiedź",
|
|
2702
|
+
"hint": "Kontynuuj pozwala ankieterowi zadać dodatkowe pytania; Przejdź dalej redaguje z dotychczasowymi odpowiedziami.",
|
|
2703
|
+
"proceed": "Przejdź do redagowania",
|
|
2704
|
+
"continue": "Kontynuuj",
|
|
2705
|
+
"status": {
|
|
2706
|
+
"awaiting": "Oczekiwanie na odpowiedzi",
|
|
2707
|
+
"done": "Gotowe"
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2648
2710
|
"documents": {
|
|
2649
2711
|
"picker": {
|
|
2650
2712
|
"searchPlaceholder": "Wyszukaj strony lub wklej adres URL albo identyfikator…",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -2106,6 +2106,52 @@
|
|
|
2106
2106
|
"removeFailed": "Kayıt defteri girdisi kaldırılamadı"
|
|
2107
2107
|
}
|
|
2108
2108
|
},
|
|
2109
|
+
"sharedStacks": {
|
|
2110
|
+
"tab": "Paylaşılan yığınlar",
|
|
2111
|
+
"intro": "Çalışma alanı başına bir kez başlatılan ve tüm çalıştırmalar ile pull request'lerde yeniden kullanılan uzun ömürlü Compose altyapısı (veritabanları, aracılar, arama, posta). Bir test ortamı, yığının yönetilen ağına bağlanır. Bir yığını başlatmak yerel bir Docker dağıtımı gerektirir; diğer arka uçlarda tanımı yine de yönetebilirsiniz.",
|
|
2112
|
+
"stackNoun": "paylaşılan yığın",
|
|
2113
|
+
"status": {
|
|
2114
|
+
"stopped": "Durduruldu",
|
|
2115
|
+
"starting": "Başlatılıyor",
|
|
2116
|
+
"running": "Çalışıyor",
|
|
2117
|
+
"failed": "Başarısız"
|
|
2118
|
+
},
|
|
2119
|
+
"list": {
|
|
2120
|
+
"heading": "Yapılandırılmış yığınlar",
|
|
2121
|
+
"start": "Başlat",
|
|
2122
|
+
"stop": "Durdur",
|
|
2123
|
+
"edit": "Düzenle",
|
|
2124
|
+
"remove": "Yığını sil"
|
|
2125
|
+
},
|
|
2126
|
+
"add": {
|
|
2127
|
+
"heading": "Paylaşılan yığın ekle",
|
|
2128
|
+
"name": "Ad",
|
|
2129
|
+
"cloneUrl": "Depo klonlama URL'si",
|
|
2130
|
+
"cloneUrlHelp": "Yığının Compose dosyalarının bulunduğu git deposu.",
|
|
2131
|
+
"gitRef": "Dal veya etiket (isteğe bağlı)",
|
|
2132
|
+
"composeFiles": "Compose dosyaları",
|
|
2133
|
+
"composeFilesHelp": "Virgülle ayrılmış, depoya göreli, geçersiz kılma sırasında.",
|
|
2134
|
+
"composeProfiles": "Compose profilleri (isteğe bağlı)",
|
|
2135
|
+
"managedNetworks": "Yönetilen ağlar (isteğe bağlı)",
|
|
2136
|
+
"managedNetworksHelp": "Tüketicilerin bağlanması için bu yığının oluşturup sahip olduğu ağlar.",
|
|
2137
|
+
"allowHostCommands": "Ana makine komutu kurulum adımlarına izin ver",
|
|
2138
|
+
"save": "Yığın ekle"
|
|
2139
|
+
},
|
|
2140
|
+
"edit": {
|
|
2141
|
+
"heading": "Paylaşılan yığını düzenle",
|
|
2142
|
+
"save": "Değişiklikleri kaydet",
|
|
2143
|
+
"cancel": "İptal"
|
|
2144
|
+
},
|
|
2145
|
+
"toast": {
|
|
2146
|
+
"created": "Paylaşılan yığın eklendi",
|
|
2147
|
+
"createFailed": "Paylaşılan yığın eklenemedi",
|
|
2148
|
+
"updated": "Paylaşılan yığın güncellendi",
|
|
2149
|
+
"updateFailed": "Paylaşılan yığın güncellenemedi",
|
|
2150
|
+
"startFailed": "Paylaşılan yığın başlatılamadı",
|
|
2151
|
+
"stopFailed": "Paylaşılan yığın durdurulamadı",
|
|
2152
|
+
"removeFailed": "Paylaşılan yığın silinemedi"
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2109
2155
|
"localMode": {
|
|
2110
2156
|
"title": "Yerel mod",
|
|
2111
2157
|
"intro": "Yerel konteyner çalıştırıcısı için ayarlar, bu makinenin dağıtımında saklanır ({poolVars} / {harnessVars} ortam değişkenlerinin yerini aldı). Kaydetmek sıcak havuzu anında yeniden boyutlandırır, yeniden başlatma gerekmez; devam eden çalıştırmalar zaten tuttukları konteyneri korur.",
|
|
@@ -2657,6 +2703,22 @@
|
|
|
2657
2703
|
"body": "Yeniden bağlanana kadar Slack bildirimleri duracak."
|
|
2658
2704
|
}
|
|
2659
2705
|
},
|
|
2706
|
+
"docInterview": {
|
|
2707
|
+
"title": "Belgeyi iyileştir",
|
|
2708
|
+
"subtitle": "Belgeyi şekillendirebilmesi için görüşmecinin sorularını yanıtlayın",
|
|
2709
|
+
"intro": "Görüşmeci, yazılmadan önce bu belgeyi iyileştiriyor. Kapsamı, hedef kitleyi ve yapıyı belirlemek için sorularını yanıtlayın, ardından devam edin — veya mevcut yanıtlarla taslağa geçin.",
|
|
2710
|
+
"empty": "Bu blok için görüşme bulunamadı.",
|
|
2711
|
+
"brief": "Yazım özeti",
|
|
2712
|
+
"converged": "Bekleyen soru yok. Görüşmecinin ihtiyacı olan bilgi var ve belge taslağı hazırlanıyor.",
|
|
2713
|
+
"answerPlaceholder": "Yanıtınız",
|
|
2714
|
+
"hint": "Devam et, görüşmecinin ek sorular sormasını sağlar; İlerle, mevcut yanıtlarla taslak oluşturur.",
|
|
2715
|
+
"proceed": "Taslağa geç",
|
|
2716
|
+
"continue": "Devam et",
|
|
2717
|
+
"status": {
|
|
2718
|
+
"awaiting": "Yanıt bekleniyor",
|
|
2719
|
+
"done": "Tamamlandı"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2660
2722
|
"documents": {
|
|
2661
2723
|
"picker": {
|
|
2662
2724
|
"searchPlaceholder": "Sayfalarda ara veya bir URL/ID yapıştır…",
|