@cat-factory/app 0.298.0 → 0.300.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.
Files changed (36) hide show
  1. package/README.md +15 -1
  2. package/app/components/assistant/AssistantModal.logic.spec.ts +80 -0
  3. package/app/components/assistant/AssistantModal.logic.ts +45 -0
  4. package/app/components/assistant/AssistantModal.vue +260 -0
  5. package/app/composables/api/assistant.ts +29 -0
  6. package/app/composables/useApi.ts +2 -0
  7. package/app/composables/useNavContributions.ts +1 -0
  8. package/app/composables/usePipelineErrorToast.ts +2 -0
  9. package/app/modular/nav-contributions.spec.ts +2 -0
  10. package/app/modular/nav-contributions.ts +22 -0
  11. package/app/pages/index.vue +2 -0
  12. package/app/stores/assistant.ts +69 -0
  13. package/app/stores/brainstorm.ts +9 -2
  14. package/app/stores/clarity.ts +9 -2
  15. package/app/stores/consensus.ts +7 -2
  16. package/app/stores/docInterview.ts +3 -1
  17. package/app/stores/initiative.ts +4 -1
  18. package/app/stores/notifications.ts +2 -13
  19. package/app/stores/perKeyWrites.spec.ts +168 -0
  20. package/app/stores/requirements/recommendations.ts +25 -0
  21. package/app/stores/requirements.spec.ts +89 -1
  22. package/app/stores/requirements.ts +24 -19
  23. package/app/stores/ui/modals.ts +15 -0
  24. package/app/types/assistant.ts +24 -0
  25. package/app/types/domain.ts +1 -0
  26. package/i18n/locales/de.json +49 -1
  27. package/i18n/locales/en.json +49 -1
  28. package/i18n/locales/es.json +49 -1
  29. package/i18n/locales/fr.json +49 -1
  30. package/i18n/locales/he.json +49 -1
  31. package/i18n/locales/it.json +49 -1
  32. package/i18n/locales/ja.json +49 -1
  33. package/i18n/locales/pl.json +49 -1
  34. package/i18n/locales/tr.json +49 -1
  35. package/i18n/locales/uk.json +49 -1
  36. package/package.json +3 -3
@@ -152,6 +152,7 @@
152
152
  "collapseSidebar": "Collapse sidebar",
153
153
  "commandBar": "Search or run a command…",
154
154
  "create": "Create",
155
+ "assistant": "Assistant",
155
156
  "buildPipeline": "Build a pipeline",
156
157
  "repositories": "Repositories",
157
158
  "addFromRepo": "Add from existing repo",
@@ -705,7 +706,9 @@
705
706
  "service_catalog_unreachable": "This workspace's developer portal did not answer, or answered with something this platform cannot read. Nothing here is misconfigured and no change will help: try again once the portal is reachable.",
706
707
  "service_catalog_unauthorized": "The developer portal refused the stored credential. It has most likely been rotated or revoked: open the service-catalog settings and enter a current one.",
707
708
  "service_catalog_filter_missing": "This connection's entity filter could not be read, so there is nothing to import. Re-save the service-catalog connection to restore it.",
708
- "service_catalog_response_too_large": "The developer portal answered with more data than this platform will hold in one response. Open the service-catalog settings and lower the service cap, or turn off importing interface definitions, then import again."
709
+ "service_catalog_response_too_large": "The developer portal answered with more data than this platform will hold in one response. Open the service-catalog settings and lower the service cap, or turn off importing interface definitions, then import again.",
710
+ "assistant_generation_failed": "The assistant's model provider did not answer. It is configured correctly and nothing here needs setting up: try the request again in a moment.",
711
+ "assistant_reply_unreadable": "The assistant's model answered with something that is not a decision this platform can act on. Rephrasing rarely helps: pick a different model for the assistant in the model settings."
709
712
  }
710
713
  },
711
714
  "reason": {
@@ -2710,6 +2713,7 @@
2710
2713
  },
2711
2714
  "cmd": {
2712
2715
  "newPipeline": "Build a pipeline",
2716
+ "assistant": "Open the assistant",
2713
2717
  "addFromRepo": "Add service from existing repo",
2714
2718
  "bootstrapRepo": "Bootstrap a new repo",
2715
2719
  "githubManage": "Manage GitHub connection",
@@ -2737,6 +2741,7 @@
2737
2741
  },
2738
2742
  "keywords": {
2739
2743
  "newPipeline": "pipeline agents chain",
2744
+ "assistant": "ai assistant ask prompt do it for me",
2740
2745
  "addFromRepo": "github import existing",
2741
2746
  "bootstrapRepo": "scaffold create reference architecture",
2742
2747
  "github": "git repos pull requests issues",
@@ -5207,6 +5212,49 @@
5207
5212
  "missingBoard": "Pick the board to hunt on."
5208
5213
  }
5209
5214
  },
5215
+ "assistant": {
5216
+ "title": "Assistant",
5217
+ "intro": "Describe what you want done and the assistant performs it on the board: declare a dependency between two services, add a service from a repository URL, or file a task from a tracker issue.",
5218
+ "unavailable": "No model is configured on this deployment, so the assistant cannot read a request. Configure a model provider to enable it.",
5219
+ "placeholder": "e.g. the checkout service depends on the payments service",
5220
+ "submit": "Run",
5221
+ "submitHint": "Ctrl+Enter, or Cmd+Enter on a Mac",
5222
+ "examplesTitle": "What you can ask",
5223
+ "showOnBoard": "Show on board",
5224
+ "declined": "None of the assistant's actions match that request. It can declare a dependency between two services, add a service from a repository URL, or file a task from a tracker issue.",
5225
+ "actions": {
5226
+ "declare-service-dependency": {
5227
+ "label": "Declare a service dependency",
5228
+ "example": "the checkout service depends on the payments service"
5229
+ },
5230
+ "add-service-from-repo": {
5231
+ "label": "Add a service from a repository",
5232
+ "example": "add https://github.com/acme/payments as a service"
5233
+ },
5234
+ "create-task-from-issue": {
5235
+ "label": "File a task from an issue",
5236
+ "example": "create a task from https://github.com/acme/payments/issues/12"
5237
+ }
5238
+ },
5239
+ "done": {
5240
+ "dependencyDeclared": "{consumer} now depends on {provider}, so both are started when {consumer} is tested.",
5241
+ "dependencyAlready": "{consumer} already depends on {provider}, so nothing changed.",
5242
+ "serviceAdded": "Added {service}, backed by {repo}.",
5243
+ "serviceMounted": "{repo} already backs a service in this organisation, so {service} was added to this board rather than created again.",
5244
+ "taskCreated": "Filed {issue} as “{task}” under {service}."
5245
+ },
5246
+ "needsInput": {
5247
+ "missing_argument": "That request leaves out something the assistant needs. Say it in full and try again.",
5248
+ "invalid_argument": "One of the values in that request cannot be used. Check it and try again.",
5249
+ "unknown_service": "No service on this board matches that name.",
5250
+ "ambiguous_service": "Several services match that name. Which one did you mean?",
5251
+ "unknown_repository": "This workspace has no connection to that repository. Connect it first, then ask again.",
5252
+ "unreadable_repository_url": "That is not a repository URL the assistant can read. Paste the repository's web address.",
5253
+ "unknown_issue_source": "No connected tracker recognises that issue link. Connect the tracker it belongs to first.",
5254
+ "ambiguous_issue_source": "Two connected trackers recognise that reference. Paste the issue's full web address instead.",
5255
+ "unresolved_issue_service": "The assistant could not tell which service to file this under. Name the service in your request."
5256
+ }
5257
+ },
5210
5258
  "pipeline": {
5211
5259
  "iterationCap": {
5212
5260
  "extraRound": "One more round",
@@ -128,6 +128,7 @@
128
128
  "collapseSidebar": "Contraer barra lateral",
129
129
  "commandBar": "Buscar o ejecutar un comando…",
130
130
  "create": "Crear",
131
+ "assistant": "Asistente",
131
132
  "buildPipeline": "Crear una canalización",
132
133
  "repositories": "Repositorios",
133
134
  "addFromRepo": "Añadir desde un repositorio existente",
@@ -633,7 +634,9 @@
633
634
  "service_catalog_unreachable": "El portal de desarrollo de este espacio no respondió, o respondió con algo que esta plataforma no puede leer. Aquí no hay nada mal configurado y ningún cambio ayudará: vuelve a intentarlo cuando el portal esté accesible.",
634
635
  "service_catalog_unauthorized": "El portal de desarrollo rechazó las credenciales guardadas. Lo más probable es que se hayan rotado o revocado: abre los ajustes del catálogo de servicios e introduce unas vigentes.",
635
636
  "service_catalog_filter_missing": "No se pudo leer el filtro de entidades de esta conexión, así que no hay nada que importar. Vuelve a guardar la conexión del catálogo de servicios para restaurarlo.",
636
- "service_catalog_response_too_large": "El portal de desarrollo respondió con más datos de los que esta plataforma admite en una sola respuesta. Abre la configuración del catálogo de servicios y reduce el límite de servicios, o desactiva la importación de definiciones de interfaz, y vuelve a importar."
637
+ "service_catalog_response_too_large": "El portal de desarrollo respondió con más datos de los que esta plataforma admite en una sola respuesta. Abre la configuración del catálogo de servicios y reduce el límite de servicios, o desactiva la importación de definiciones de interfaz, y vuelve a importar.",
638
+ "assistant_generation_failed": "El proveedor de modelos del asistente no respondió. Está configurado correctamente y aquí no hay nada que configurar: vuelve a intentar la solicitud en un momento.",
639
+ "assistant_reply_unreadable": "El modelo del asistente respondió con algo que esta plataforma no puede ejecutar como decisión. Reformular rara vez ayuda: elige otro modelo para el asistente en la configuración de modelos."
637
640
  }
638
641
  },
639
642
  "reason": {
@@ -2561,6 +2564,7 @@
2561
2564
  },
2562
2565
  "cmd": {
2563
2566
  "newPipeline": "Crear una canalización",
2567
+ "assistant": "Abrir el asistente",
2564
2568
  "addFromRepo": "Añadir servicio desde un repositorio existente",
2565
2569
  "bootstrapRepo": "Iniciar un repositorio nuevo",
2566
2570
  "githubManage": "Gestionar la conexión de GitHub",
@@ -2588,6 +2592,7 @@
2588
2592
  },
2589
2593
  "keywords": {
2590
2594
  "newPipeline": "canalización agentes cadena pipeline",
2595
+ "assistant": "ia asistente preguntar indicación házlo por mí",
2591
2596
  "addFromRepo": "github importar existente",
2592
2597
  "bootstrapRepo": "andamiaje crear arquitectura de referencia",
2593
2598
  "github": "git repositorios pull requests incidencias",
@@ -5022,6 +5027,49 @@
5022
5027
  "missingBoard": "Elige el tablero en el que buscar."
5023
5028
  }
5024
5029
  },
5030
+ "assistant": {
5031
+ "title": "Asistente",
5032
+ "intro": "Describe lo que quieres hacer y el asistente lo ejecuta en el tablero: declarar una dependencia entre dos servicios, añadir un servicio a partir de la URL de un repositorio o crear una tarea desde una incidencia del rastreador.",
5033
+ "unavailable": "Este despliegue no tiene ningún modelo configurado, así que el asistente no puede leer una petición. Configura un proveedor de modelos para habilitarlo.",
5034
+ "placeholder": "p. ej. el servicio de checkout depende del servicio de pagos",
5035
+ "submit": "Ejecutar",
5036
+ "submitHint": "Ctrl+Intro, o Cmd+Intro en un Mac",
5037
+ "examplesTitle": "Qué puedes pedir",
5038
+ "showOnBoard": "Ver en el tablero",
5039
+ "declined": "Ninguna acción del asistente encaja con esa petición. Puede declarar una dependencia entre dos servicios, añadir un servicio a partir de la URL de un repositorio o crear una tarea desde una incidencia del rastreador.",
5040
+ "actions": {
5041
+ "declare-service-dependency": {
5042
+ "label": "Declarar una dependencia entre servicios",
5043
+ "example": "el servicio de checkout depende del servicio de pagos"
5044
+ },
5045
+ "add-service-from-repo": {
5046
+ "label": "Añadir un servicio desde un repositorio",
5047
+ "example": "añade https://github.com/acme/payments como servicio"
5048
+ },
5049
+ "create-task-from-issue": {
5050
+ "label": "Crear una tarea desde una incidencia",
5051
+ "example": "crea una tarea a partir de https://github.com/acme/payments/issues/12"
5052
+ }
5053
+ },
5054
+ "done": {
5055
+ "dependencyDeclared": "{consumer} ahora depende de {provider}, así que ambos se levantan cuando se prueba {consumer}.",
5056
+ "dependencyAlready": "{consumer} ya dependía de {provider}, no ha cambiado nada.",
5057
+ "serviceAdded": "Se ha añadido {service}, respaldado por {repo}.",
5058
+ "serviceMounted": "{repo} ya respalda un servicio de esta organización, así que {service} se ha añadido a este tablero en lugar de crearse otra vez.",
5059
+ "taskCreated": "{issue} creada como «{task}» en {service}."
5060
+ },
5061
+ "needsInput": {
5062
+ "missing_argument": "A esa petición le falta algo que el asistente necesita. Escríbela completa e inténtalo de nuevo.",
5063
+ "invalid_argument": "Uno de los valores de esa petición no se puede usar. Revísalo e inténtalo de nuevo.",
5064
+ "unknown_service": "Ningún servicio de este tablero coincide con ese nombre.",
5065
+ "ambiguous_service": "Varios servicios coinciden con ese nombre. ¿Cuál querías decir?",
5066
+ "unknown_repository": "Este espacio de trabajo no tiene conexión con ese repositorio. Conéctalo primero y vuelve a pedirlo.",
5067
+ "unreadable_repository_url": "Esa no es una URL de repositorio que el asistente pueda leer. Pega la dirección web del repositorio.",
5068
+ "unknown_issue_source": "Ningún rastreador conectado reconoce ese enlace. Conecta primero el rastreador al que pertenece.",
5069
+ "ambiguous_issue_source": "Dos rastreadores conectados reconocen esa referencia. Pega la dirección web completa de la incidencia.",
5070
+ "unresolved_issue_service": "El asistente no ha podido saber en qué servicio crearla. Indica el servicio en tu petición."
5071
+ }
5072
+ },
5025
5073
  "pipeline": {
5026
5074
  "iterationCap": {
5027
5075
  "extraRound": "Una ronda más",
@@ -128,6 +128,7 @@
128
128
  "collapseSidebar": "Réduire la barre latérale",
129
129
  "commandBar": "Rechercher ou exécuter une commande…",
130
130
  "create": "Créer",
131
+ "assistant": "Assistant",
131
132
  "buildPipeline": "Créer un pipeline",
132
133
  "repositories": "Dépôts",
133
134
  "addFromRepo": "Ajouter depuis un dépôt existant",
@@ -633,7 +634,9 @@
633
634
  "service_catalog_unreachable": "Le portail développeur de cet espace n'a pas répondu, ou a répondu quelque chose que cette plateforme ne sait pas lire. Rien n'est mal configuré ici et aucune modification n'aidera : réessayez dès que le portail est joignable.",
634
635
  "service_catalog_unauthorized": "Le portail développeur a refusé les identifiants enregistrés. Ils ont très probablement été renouvelés ou révoqués : ouvrez les réglages du catalogue de services et saisissez-en des valides.",
635
636
  "service_catalog_filter_missing": "Le filtre d'entités de cette connexion n'a pas pu être lu, il n'y a donc rien à importer. Enregistrez à nouveau la connexion au catalogue de services pour le rétablir.",
636
- "service_catalog_response_too_large": "Le portail développeur a renvoyé plus de données que cette plateforme n'en accepte dans une seule réponse. Ouvrez les paramètres du catalogue de services et abaissez la limite de services, ou désactivez l'import des définitions d'interface, puis relancez l'import."
637
+ "service_catalog_response_too_large": "Le portail développeur a renvoyé plus de données que cette plateforme n'en accepte dans une seule réponse. Ouvrez les paramètres du catalogue de services et abaissez la limite de services, ou désactivez l'import des définitions d'interface, puis relancez l'import.",
638
+ "assistant_generation_failed": "Le fournisseur de modèles de l'assistant n'a pas répondu. Il est correctement configuré et il n'y a rien à paramétrer ici : réessayez la demande dans un instant.",
639
+ "assistant_reply_unreadable": "Le modèle de l'assistant a répondu quelque chose que cette plateforme ne peut pas exécuter comme décision. Reformuler aide rarement : choisissez un autre modèle pour l'assistant dans les paramètres de modèles."
637
640
  }
638
641
  },
639
642
  "reason": {
@@ -2561,6 +2564,7 @@
2561
2564
  },
2562
2565
  "cmd": {
2563
2566
  "newPipeline": "Créer un pipeline",
2567
+ "assistant": "Ouvrir l'assistant",
2564
2568
  "addFromRepo": "Ajouter un service depuis un dépôt existant",
2565
2569
  "bootstrapRepo": "Initialiser un nouveau dépôt",
2566
2570
  "githubManage": "Gérer la connexion GitHub",
@@ -2588,6 +2592,7 @@
2588
2592
  },
2589
2593
  "keywords": {
2590
2594
  "newPipeline": "pipeline agents chaîne",
2595
+ "assistant": "ia assistant demander invite fais-le pour moi",
2591
2596
  "addFromRepo": "github importer existant",
2592
2597
  "bootstrapRepo": "échafaudage créer architecture de référence",
2593
2598
  "github": "git dépôts pull requests tickets",
@@ -5022,6 +5027,49 @@
5022
5027
  "missingBoard": "Choisissez le tableau sur lequel chercher."
5023
5028
  }
5024
5029
  },
5030
+ "assistant": {
5031
+ "title": "Assistant",
5032
+ "intro": "Décrivez ce que vous voulez faire et l'assistant l'exécute sur le tableau : déclarer une dépendance entre deux services, ajouter un service à partir de l'URL d'un dépôt, ou créer une tâche à partir d'un ticket.",
5033
+ "unavailable": "Aucun modèle n'est configuré sur ce déploiement, l'assistant ne peut donc pas lire une demande. Configurez un fournisseur de modèles pour l'activer.",
5034
+ "placeholder": "ex. le service checkout dépend du service paiements",
5035
+ "submit": "Exécuter",
5036
+ "submitHint": "Ctrl+Entrée, ou Cmd+Entrée sur un Mac",
5037
+ "examplesTitle": "Ce que vous pouvez demander",
5038
+ "showOnBoard": "Afficher sur le tableau",
5039
+ "declined": "Aucune action de l'assistant ne correspond à cette demande. Il peut déclarer une dépendance entre deux services, ajouter un service à partir de l'URL d'un dépôt, ou créer une tâche à partir d'un ticket.",
5040
+ "actions": {
5041
+ "declare-service-dependency": {
5042
+ "label": "Déclarer une dépendance entre services",
5043
+ "example": "le service checkout dépend du service paiements"
5044
+ },
5045
+ "add-service-from-repo": {
5046
+ "label": "Ajouter un service depuis un dépôt",
5047
+ "example": "ajoute https://github.com/acme/payments comme service"
5048
+ },
5049
+ "create-task-from-issue": {
5050
+ "label": "Créer une tâche à partir d'un ticket",
5051
+ "example": "crée une tâche à partir de https://github.com/acme/payments/issues/12"
5052
+ }
5053
+ },
5054
+ "done": {
5055
+ "dependencyDeclared": "{consumer} dépend désormais de {provider} : les deux sont démarrés quand {consumer} est testé.",
5056
+ "dependencyAlready": "{consumer} dépendait déjà de {provider}, rien n'a changé.",
5057
+ "serviceAdded": "{service} ajouté, adossé à {repo}.",
5058
+ "serviceMounted": "{repo} sert déjà de base à un service de cette organisation : {service} a été ajouté à ce tableau plutôt que recréé.",
5059
+ "taskCreated": "{issue} créé comme tâche « {task} » dans {service}."
5060
+ },
5061
+ "needsInput": {
5062
+ "missing_argument": "Il manque à cette demande quelque chose dont l'assistant a besoin. Formulez-la entièrement et réessayez.",
5063
+ "invalid_argument": "L'une des valeurs de cette demande est inutilisable. Vérifiez-la et réessayez.",
5064
+ "unknown_service": "Aucun service de ce tableau ne porte ce nom.",
5065
+ "ambiguous_service": "Plusieurs services correspondent à ce nom. Lequel vouliez-vous dire ?",
5066
+ "unknown_repository": "Cet espace de travail n'a aucune connexion à ce dépôt. Connectez-le, puis redemandez.",
5067
+ "unreadable_repository_url": "Ce n'est pas une URL de dépôt que l'assistant sait lire. Collez l'adresse web du dépôt.",
5068
+ "unknown_issue_source": "Aucun outil de suivi connecté ne reconnaît ce lien. Connectez d'abord celui auquel il appartient.",
5069
+ "ambiguous_issue_source": "Deux outils de suivi connectés reconnaissent cette référence. Collez plutôt l'adresse web complète du ticket.",
5070
+ "unresolved_issue_service": "L'assistant n'a pas pu déterminer dans quel service créer la tâche. Nommez le service dans votre demande."
5071
+ }
5072
+ },
5025
5073
  "pipeline": {
5026
5074
  "iterationCap": {
5027
5075
  "extraRound": "Un tour de plus",
@@ -128,6 +128,7 @@
128
128
  "collapseSidebar": "כיווץ סרגל הצד",
129
129
  "commandBar": "חפש או הרץ פקודה…",
130
130
  "create": "יצירה",
131
+ "assistant": "עוזר",
131
132
  "buildPipeline": "בנה צינור",
132
133
  "repositories": "מאגרים",
133
134
  "addFromRepo": "הוסף ממאגר קיים",
@@ -633,7 +634,9 @@
633
634
  "service_catalog_unreachable": "פורטל המפתחים של מרחב העבודה הזה לא ענה, או ענה במשהו שהפלטפורמה אינה יכולה לקרוא. אין כאן תקלת הגדרה ושום שינוי לא יעזור: נסו שוב כשהפורטל יהיה נגיש.",
634
635
  "service_catalog_unauthorized": "פורטל המפתחים דחה את פרטי ההזדהות השמורים. סביר שהם הוחלפו או בוטלו: פתחו את הגדרות קטלוג השירותים והזינו פרטים בתוקף.",
635
636
  "service_catalog_filter_missing": "לא ניתן לקרוא את מסנן הישויות של החיבור הזה, כך שאין מה לייבא. שמרו מחדש את חיבור קטלוג השירותים כדי לשחזר אותו.",
636
- "service_catalog_response_too_large": "פורטל המפתחים החזיר יותר נתונים ממה שהפלטפורמה הזו מחזיקה בתשובה אחת. פתחו את הגדרות קטלוג השירותים והנמיכו את מגבלת השירותים, או כבו את ייבוא הגדרות הממשק, ואז ייבאו שוב."
637
+ "service_catalog_response_too_large": "פורטל המפתחים החזיר יותר נתונים ממה שהפלטפורמה הזו מחזיקה בתשובה אחת. פתחו את הגדרות קטלוג השירותים והנמיכו את מגבלת השירותים, או כבו את ייבוא הגדרות הממשק, ואז ייבאו שוב.",
638
+ "assistant_generation_failed": "ספק המודלים של העוזר לא הגיב. הוא מוגדר כראוי ואין כאן דבר להגדיר: נסו לשלוח את הבקשה שוב בעוד רגע.",
639
+ "assistant_reply_unreadable": "המודל של העוזר החזיר תשובה שהפלטפורמה אינה יכולה לבצע כהחלטה. ניסוח מחדש כמעט אף פעם לא עוזר: בחרו מודל אחר לעוזר בהגדרות המודלים."
637
640
  }
638
641
  },
639
642
  "reason": {
@@ -2561,6 +2564,7 @@
2561
2564
  },
2562
2565
  "cmd": {
2563
2566
  "newPipeline": "בנה צינור",
2567
+ "assistant": "פתח את העוזר",
2564
2568
  "addFromRepo": "הוסף שירות ממאגר קיים",
2565
2569
  "bootstrapRepo": "אתחל מאגר חדש",
2566
2570
  "githubManage": "נהל חיבור GitHub",
@@ -2588,6 +2592,7 @@
2588
2592
  },
2589
2593
  "keywords": {
2590
2594
  "newPipeline": "צינור סוכנים שרשרת",
2595
+ "assistant": "ai עוזר בקשה פרומפט תעשה בשבילי",
2591
2596
  "addFromRepo": "github ייבוא קיים",
2592
2597
  "bootstrapRepo": "פיגום יצירה ארכיטקטורת ייחוס",
2593
2598
  "github": "git מאגרים בקשות משיכה בעיות",
@@ -5022,6 +5027,49 @@
5022
5027
  "missingBoard": "בחרו את הלוח שבו לחפש."
5023
5028
  }
5024
5029
  },
5030
+ "assistant": {
5031
+ "title": "עוזר",
5032
+ "intro": "תארו מה צריך לקרות והעוזר יבצע זאת על הלוח: להצהיר על תלות בין שני שירותים, להוסיף שירות מכתובת מאגר או לפתוח משימה מתקלה במעקב.",
5033
+ "unavailable": "לא הוגדר מודל בפריסה הזו, לכן העוזר אינו יכול לקרוא בקשה. הגדירו ספק מודלים כדי להפעיל אותו.",
5034
+ "placeholder": "למשל: שירות ה-checkout תלוי בשירות התשלומים",
5035
+ "submit": "הרץ",
5036
+ "submitHint": "Ctrl+Enter, וב-Mac Cmd+Enter",
5037
+ "examplesTitle": "מה אפשר לבקש",
5038
+ "showOnBoard": "הצג על הלוח",
5039
+ "declined": "אף פעולה של העוזר אינה מתאימה לבקשה הזו. הוא יכול להצהיר על תלות בין שני שירותים, להוסיף שירות מכתובת מאגר או לפתוח משימה מתקלה במעקב.",
5040
+ "actions": {
5041
+ "declare-service-dependency": {
5042
+ "label": "הצהרה על תלות בין שירותים",
5043
+ "example": "שירות ה-checkout תלוי בשירות התשלומים"
5044
+ },
5045
+ "add-service-from-repo": {
5046
+ "label": "הוספת שירות ממאגר",
5047
+ "example": "הוסף את https://github.com/acme/payments כשירות"
5048
+ },
5049
+ "create-task-from-issue": {
5050
+ "label": "פתיחת משימה מתקלה",
5051
+ "example": "צור משימה מ-https://github.com/acme/payments/issues/12"
5052
+ }
5053
+ },
5054
+ "done": {
5055
+ "dependencyDeclared": "{consumer} תלוי כעת ב-{provider}, ולכן שניהם עולים כשבודקים את {consumer}.",
5056
+ "dependencyAlready": "{consumer} כבר היה תלוי ב-{provider}, ולכן לא השתנה דבר.",
5057
+ "serviceAdded": "{service} נוסף, מבוסס על {repo}.",
5058
+ "serviceMounted": "{repo} כבר עומד מאחורי שירות בארגון הזה, ולכן {service} נוסף ללוח הזה במקום להיווצר מחדש.",
5059
+ "taskCreated": "{issue} נפתחה כמשימה “{task}” תחת {service}."
5060
+ },
5061
+ "needsInput": {
5062
+ "missing_argument": "בבקשה הזו חסר פרט שהעוזר צריך. נסחו אותה במלואה ונסו שוב.",
5063
+ "invalid_argument": "אחד הערכים בבקשה אינו ניתן לשימוש. בדקו אותו ונסו שוב.",
5064
+ "unknown_service": "אין בלוח הזה שירות בשם הזה.",
5065
+ "ambiguous_service": "כמה שירותים מתאימים לשם הזה. לאיזה התכוונתם?",
5066
+ "unknown_repository": "למרחב העבודה הזה אין חיבור למאגר הזה. חברו אותו תחילה ובקשו שוב.",
5067
+ "unreadable_repository_url": "זו אינה כתובת מאגר שהעוזר יכול לקרוא. הדביקו את כתובת האינטרנט של המאגר.",
5068
+ "unknown_issue_source": "אף מעקב מחובר אינו מזהה את הקישור הזה. חברו תחילה את המעקב שאליו הוא שייך.",
5069
+ "ambiguous_issue_source": "שני מעקבים מחוברים מזהים את ההפניה הזו. הדביקו במקום זאת את כתובת האינטרנט המלאה של התקלה.",
5070
+ "unresolved_issue_service": "העוזר לא הצליח לקבוע תחת איזה שירות לפתוח את המשימה. ציינו את השירות בבקשה."
5071
+ }
5072
+ },
5025
5073
  "pipeline": {
5026
5074
  "iterationCap": {
5027
5075
  "extraRound": "סבב נוסף אחד",
@@ -2712,6 +2712,7 @@
2712
2712
  },
2713
2713
  "cmd": {
2714
2714
  "newPipeline": "Costruisci una pipeline",
2715
+ "assistant": "Apri l'assistente",
2715
2716
  "addFromRepo": "Aggiungi servizio da repo esistente",
2716
2717
  "bootstrapRepo": "Esegui il bootstrap di un nuovo repo",
2717
2718
  "githubManage": "Gestisci la connessione GitHub",
@@ -2739,6 +2740,7 @@
2739
2740
  },
2740
2741
  "keywords": {
2741
2742
  "newPipeline": "pipeline agenti catena",
2743
+ "assistant": "ia assistente chiedere richiesta fallo per me",
2742
2744
  "addFromRepo": "github importa esistente",
2743
2745
  "bootstrapRepo": "scaffold crea architettura di riferimento",
2744
2746
  "github": "git repo pull request issue",
@@ -4514,6 +4516,49 @@
4514
4516
  "missingBoard": "Scegli la board su cui cercare."
4515
4517
  }
4516
4518
  },
4519
+ "assistant": {
4520
+ "title": "Assistente",
4521
+ "intro": "Descrivi cosa vuoi fare e l'assistente lo esegue sulla bacheca: dichiarare una dipendenza fra due servizi, aggiungere un servizio dall'URL di un repository o creare un'attività da una segnalazione del tracker.",
4522
+ "unavailable": "Questo deployment non ha un modello configurato, quindi l'assistente non può leggere una richiesta. Configura un provider di modelli per abilitarlo.",
4523
+ "placeholder": "es. il servizio checkout dipende dal servizio pagamenti",
4524
+ "submit": "Esegui",
4525
+ "submitHint": "Ctrl+Invio, oppure Cmd+Invio su Mac",
4526
+ "examplesTitle": "Cosa puoi chiedere",
4527
+ "showOnBoard": "Mostra sulla bacheca",
4528
+ "declined": "Nessuna azione dell'assistente corrisponde a questa richiesta. Può dichiarare una dipendenza fra due servizi, aggiungere un servizio dall'URL di un repository o creare un'attività da una segnalazione del tracker.",
4529
+ "actions": {
4530
+ "declare-service-dependency": {
4531
+ "label": "Dichiarare una dipendenza fra servizi",
4532
+ "example": "il servizio checkout dipende dal servizio pagamenti"
4533
+ },
4534
+ "add-service-from-repo": {
4535
+ "label": "Aggiungere un servizio da un repository",
4536
+ "example": "aggiungi https://github.com/acme/payments come servizio"
4537
+ },
4538
+ "create-task-from-issue": {
4539
+ "label": "Creare un'attività da una segnalazione",
4540
+ "example": "crea un'attività da https://github.com/acme/payments/issues/12"
4541
+ }
4542
+ },
4543
+ "done": {
4544
+ "dependencyDeclared": "{consumer} ora dipende da {provider}: entrambi vengono avviati quando si testa {consumer}.",
4545
+ "dependencyAlready": "{consumer} dipendeva già da {provider}, non è cambiato nulla.",
4546
+ "serviceAdded": "Aggiunto {service}, basato su {repo}.",
4547
+ "serviceMounted": "{repo} è già alla base di un servizio di questa organizzazione, quindi {service} è stato aggiunto a questa bacheca invece di essere ricreato.",
4548
+ "taskCreated": "{issue} creata come «{task}» in {service}."
4549
+ },
4550
+ "needsInput": {
4551
+ "missing_argument": "Alla richiesta manca qualcosa che serve all'assistente. Scrivila per intero e riprova.",
4552
+ "invalid_argument": "Uno dei valori della richiesta non è utilizzabile. Controllalo e riprova.",
4553
+ "unknown_service": "Nessun servizio su questa bacheca corrisponde a quel nome.",
4554
+ "ambiguous_service": "Più servizi corrispondono a quel nome. Quale intendevi?",
4555
+ "unknown_repository": "Questo workspace non ha alcuna connessione a quel repository. Collegalo e poi richiedilo di nuovo.",
4556
+ "unreadable_repository_url": "Non è un URL di repository che l'assistente sappia leggere. Incolla l'indirizzo web del repository.",
4557
+ "unknown_issue_source": "Nessun tracker collegato riconosce quel link. Collega prima il tracker a cui appartiene.",
4558
+ "ambiguous_issue_source": "Due tracker collegati riconoscono quel riferimento. Incolla invece l'indirizzo web completo della segnalazione.",
4559
+ "unresolved_issue_service": "L'assistente non ha potuto capire sotto quale servizio crearla. Indica il servizio nella richiesta."
4560
+ }
4561
+ },
4517
4562
  "pipeline": {
4518
4563
  "iterationCap": {
4519
4564
  "extraRound": "Un altro giro",
@@ -6095,6 +6140,7 @@
6095
6140
  "collapseSidebar": "Comprimi la barra laterale",
6096
6141
  "commandBar": "Cerca o esegui un comando…",
6097
6142
  "create": "Crea",
6143
+ "assistant": "Assistente",
6098
6144
  "buildPipeline": "Crea una pipeline",
6099
6145
  "repositories": "Repository",
6100
6146
  "addFromRepo": "Aggiungi da un repository esistente",
@@ -6144,7 +6190,9 @@
6144
6190
  "service_catalog_unreachable": "Il portale per sviluppatori di questo spazio non ha risposto, o ha risposto con qualcosa che questa piattaforma non sa leggere. Qui non c’è nulla di mal configurato e nessuna modifica aiuterà: riprova quando il portale sarà raggiungibile.",
6145
6191
  "service_catalog_unauthorized": "Il portale per sviluppatori ha rifiutato le credenziali salvate. Molto probabilmente sono state ruotate o revocate: apri le impostazioni del catalogo dei servizi e inseriscine di valide.",
6146
6192
  "service_catalog_filter_missing": "Non è stato possibile leggere il filtro delle entità di questa connessione, quindi non c’è nulla da importare. Salva di nuovo la connessione al catalogo dei servizi per ripristinarlo.",
6147
- "service_catalog_response_too_large": "Il portale per sviluppatori ha risposto con più dati di quanti questa piattaforma ne accolga in una sola risposta. Apri le impostazioni del catalogo dei servizi e abbassa il limite dei servizi, oppure disattiva l'importazione delle definizioni di interfaccia, poi importa di nuovo."
6193
+ "service_catalog_response_too_large": "Il portale per sviluppatori ha risposto con più dati di quanti questa piattaforma ne accolga in una sola risposta. Apri le impostazioni del catalogo dei servizi e abbassa il limite dei servizi, oppure disattiva l'importazione delle definizioni di interfaccia, poi importa di nuovo.",
6194
+ "assistant_generation_failed": "Il fornitore di modelli dell'assistente non ha risposto. È configurato correttamente e qui non c'è nulla da impostare: riprova la richiesta tra un momento.",
6195
+ "assistant_reply_unreadable": "Il modello dell'assistente ha risposto con qualcosa che questa piattaforma non può eseguire come decisione. Riformulare aiuta di rado: scegli un altro modello per l'assistente nelle impostazioni dei modelli."
6148
6196
  }
6149
6197
  },
6150
6198
  "reason": {
@@ -128,6 +128,7 @@
128
128
  "collapseSidebar": "サイドバーを折りたたむ",
129
129
  "commandBar": "検索またはコマンドを実行…",
130
130
  "create": "作成",
131
+ "assistant": "アシスタント",
131
132
  "buildPipeline": "パイプラインを構築",
132
133
  "repositories": "リポジトリ",
133
134
  "addFromRepo": "既存のリポジトリから追加",
@@ -633,7 +634,9 @@
633
634
  "service_catalog_unreachable": "このワークスペースの開発者ポータルが応答しなかった、またはこのプラットフォームが読めない応答を返しました。設定の誤りはなく、何を変更しても解決しません。ポータルに到達できるようになってから再試行してください。",
634
635
  "service_catalog_unauthorized": "開発者ポータルが保存された資格情報を拒否しました。ローテーションまたは失効した可能性が高いため、サービスカタログの設定を開いて有効なものを入力してください。",
635
636
  "service_catalog_filter_missing": "この接続のエンティティフィルターを読み取れなかったため、取り込むものがありません。サービスカタログの接続を保存し直して復元してください。",
636
- "service_catalog_response_too_large": "開発者ポータルが、このプラットフォームが 1 回の応答で保持できる量を超えるデータを返しました。サービスカタログの設定を開いてサービス上限を下げるか、インターフェース定義の取り込みをオフにしてから、もう一度取り込んでください。"
637
+ "service_catalog_response_too_large": "開発者ポータルが、このプラットフォームが 1 回の応答で保持できる量を超えるデータを返しました。サービスカタログの設定を開いてサービス上限を下げるか、インターフェース定義の取り込みをオフにしてから、もう一度取り込んでください。",
638
+ "assistant_generation_failed": "アシスタントのモデルプロバイダーから応答がありませんでした。設定に問題はなく、ここで行う設定もありません。少し時間をおいてもう一度お試しください。",
639
+ "assistant_reply_unreadable": "アシスタントのモデルが、このプラットフォームでは判断として実行できない内容を返しました。言い換えてもほとんど改善しません。モデル設定でアシスタント用に別のモデルを選んでください。"
637
640
  }
638
641
  },
639
642
  "reason": {
@@ -2561,6 +2564,7 @@
2561
2564
  },
2562
2565
  "cmd": {
2563
2566
  "newPipeline": "パイプラインを構築",
2567
+ "assistant": "アシスタントを開く",
2564
2568
  "addFromRepo": "既存リポジトリからサービスを追加",
2565
2569
  "bootstrapRepo": "新しいリポジトリをブートストラップ",
2566
2570
  "githubManage": "GitHub 接続を管理",
@@ -2588,6 +2592,7 @@
2588
2592
  },
2589
2593
  "keywords": {
2590
2594
  "newPipeline": "pipeline agents chain パイプライン エージェント チェーン",
2595
+ "assistant": "ai アシスタント 依頼 プロンプト 代わりにやって",
2591
2596
  "addFromRepo": "github import existing GitHub インポート 既存",
2592
2597
  "bootstrapRepo": "scaffold create reference architecture スキャフォールド 作成 リファレンスアーキテクチャ",
2593
2598
  "github": "git repos pull requests issues リポジトリ プルリクエスト Issue",
@@ -5022,6 +5027,49 @@
5022
5027
  "missingBoard": "調査するボードを選択してください。"
5023
5028
  }
5024
5029
  },
5030
+ "assistant": {
5031
+ "title": "アシスタント",
5032
+ "intro": "やりたいことを書くと、アシスタントがボード上で実行します。サービス間の依存関係の宣言、リポジトリ URL からのサービス追加、トラッカーのイシューからのタスク作成ができます。",
5033
+ "unavailable": "このデプロイメントにはモデルが設定されていないため、アシスタントは依頼を読み取れません。モデルプロバイダーを設定して有効にしてください。",
5034
+ "placeholder": "例: checkout サービスは payments サービスに依存している",
5035
+ "submit": "実行",
5036
+ "submitHint": "Ctrl+Enter、Mac では Cmd+Enter",
5037
+ "examplesTitle": "依頼できること",
5038
+ "showOnBoard": "ボードで表示",
5039
+ "declined": "この依頼に合う操作はありません。アシスタントができるのは、2 つのサービス間の依存関係の宣言、リポジトリ URL からのサービス追加、トラッカーのイシューからのタスク作成です。",
5040
+ "actions": {
5041
+ "declare-service-dependency": {
5042
+ "label": "サービスの依存関係を宣言",
5043
+ "example": "checkout サービスは payments サービスに依存している"
5044
+ },
5045
+ "add-service-from-repo": {
5046
+ "label": "リポジトリからサービスを追加",
5047
+ "example": "https://github.com/acme/payments をサービスとして追加して"
5048
+ },
5049
+ "create-task-from-issue": {
5050
+ "label": "イシューからタスクを作成",
5051
+ "example": "https://github.com/acme/payments/issues/12 からタスクを作って"
5052
+ }
5053
+ },
5054
+ "done": {
5055
+ "dependencyDeclared": "{consumer} が {provider} に依存するようになりました。{consumer} のテスト時に両方が起動されます。",
5056
+ "dependencyAlready": "{consumer} はすでに {provider} に依存していたため、変更はありません。",
5057
+ "serviceAdded": "{repo} を基に {service} を追加しました。",
5058
+ "serviceMounted": "{repo} はこの組織の既存サービスの基盤です。そのため {service} は新規作成ではなくこのボードに追加されました。",
5059
+ "taskCreated": "{issue} を {service} の「{task}」として作成しました。"
5060
+ },
5061
+ "needsInput": {
5062
+ "missing_argument": "この依頼にはアシスタントに必要な情報が足りません。全体を書いてもう一度お試しください。",
5063
+ "invalid_argument": "この依頼の値のひとつが使用できません。確認してもう一度お試しください。",
5064
+ "unknown_service": "その名前に一致するサービスはこのボードにありません。",
5065
+ "ambiguous_service": "その名前に複数のサービスが一致します。どれでしょうか。",
5066
+ "unknown_repository": "このワークスペースはそのリポジトリに接続されていません。先に接続してからもう一度依頼してください。",
5067
+ "unreadable_repository_url": "アシスタントが読めるリポジトリ URL ではありません。リポジトリの Web アドレスを貼り付けてください。",
5068
+ "unknown_issue_source": "接続済みのトラッカーはこのリンクを認識できません。そのイシューが属するトラッカーを先に接続してください。",
5069
+ "ambiguous_issue_source": "接続済みの 2 つのトラッカーがこの参照を認識します。代わりにイシューの完全な Web アドレスを貼り付けてください。",
5070
+ "unresolved_issue_service": "どのサービスの下に作成するか判断できませんでした。依頼の中でサービス名を指定してください。"
5071
+ }
5072
+ },
5025
5073
  "pipeline": {
5026
5074
  "iterationCap": {
5027
5075
  "extraRound": "もう1ラウンド",
@@ -128,6 +128,7 @@
128
128
  "collapseSidebar": "Zwiń panel boczny",
129
129
  "commandBar": "Wyszukaj lub uruchom polecenie…",
130
130
  "create": "Utwórz",
131
+ "assistant": "Asystent",
131
132
  "buildPipeline": "Zbuduj potok",
132
133
  "repositories": "Repozytoria",
133
134
  "addFromRepo": "Dodaj z istniejącego repozytorium",
@@ -633,7 +634,9 @@
633
634
  "service_catalog_unreachable": "Portal deweloperski tej tablicy nie odpowiedział albo odpowiedział czymś, czego ta platforma nie umie odczytać. Nic tutaj nie jest źle skonfigurowane i żadna zmiana nie pomoże: spróbuj ponownie, gdy portal będzie dostępny.",
634
635
  "service_catalog_unauthorized": "Portal deweloperski odrzucił zapisane dane uwierzytelniające. Najprawdopodobniej zostały wymienione lub unieważnione: otwórz ustawienia katalogu usług i wprowadź aktualne.",
635
636
  "service_catalog_filter_missing": "Nie udało się odczytać filtra encji tego połączenia, więc nie ma czego importować. Zapisz połączenie katalogu usług ponownie, aby go przywrócić.",
636
- "service_catalog_response_too_large": "Portal deweloperski zwrócił więcej danych, niż ta platforma przyjmuje w jednej odpowiedzi. Otwórz ustawienia katalogu usług i obniż limit usług albo wyłącz importowanie definicji interfejsów, a następnie zaimportuj ponownie."
637
+ "service_catalog_response_too_large": "Portal deweloperski zwrócił więcej danych, niż ta platforma przyjmuje w jednej odpowiedzi. Otwórz ustawienia katalogu usług i obniż limit usług albo wyłącz importowanie definicji interfejsów, a następnie zaimportuj ponownie.",
638
+ "assistant_generation_failed": "Dostawca modelu asystenta nie odpowiedział. Jest poprawnie skonfigurowany i nie ma tu nic do ustawienia: spróbuj ponowić żądanie za chwilę.",
639
+ "assistant_reply_unreadable": "Model asystenta odpowiedział czymś, czego ta platforma nie może wykonać jako decyzji. Przeformułowanie rzadko pomaga: wybierz inny model dla asystenta w ustawieniach modeli."
637
640
  }
638
641
  },
639
642
  "reason": {
@@ -2561,6 +2564,7 @@
2561
2564
  },
2562
2565
  "cmd": {
2563
2566
  "newPipeline": "Zbuduj potok",
2567
+ "assistant": "Otwórz asystenta",
2564
2568
  "addFromRepo": "Dodaj usługę z istniejącego repozytorium",
2565
2569
  "bootstrapRepo": "Zainicjuj nowe repozytorium",
2566
2570
  "githubManage": "Zarządzaj połączeniem GitHub",
@@ -2588,6 +2592,7 @@
2588
2592
  },
2589
2593
  "keywords": {
2590
2594
  "newPipeline": "potok agenci łańcuch pipeline",
2595
+ "assistant": "ai asystent zapytaj polecenie zrób za mnie",
2591
2596
  "addFromRepo": "github importuj istniejące",
2592
2597
  "bootstrapRepo": "rusztowanie utwórz architektura referencyjna",
2593
2598
  "github": "git repozytoria pull requesty zgłoszenia",
@@ -5022,6 +5027,49 @@
5022
5027
  "missingBoard": "Wybierz tablicę, na której chcesz szukać."
5023
5028
  }
5024
5029
  },
5030
+ "assistant": {
5031
+ "title": "Asystent",
5032
+ "intro": "Opisz, co ma zostać zrobione, a asystent wykona to na tablicy: zadeklaruje zależność między dwiema usługami, doda usługę z adresu repozytorium albo utworzy zadanie ze zgłoszenia w trackerze.",
5033
+ "unavailable": "W tym wdrożeniu nie skonfigurowano żadnego modelu, więc asystent nie może odczytać prośby. Skonfiguruj dostawcę modeli, aby go włączyć.",
5034
+ "placeholder": "np. usługa checkout zależy od usługi płatności",
5035
+ "submit": "Uruchom",
5036
+ "submitHint": "Ctrl+Enter, na Macu Cmd+Enter",
5037
+ "examplesTitle": "O co możesz poprosić",
5038
+ "showOnBoard": "Pokaż na tablicy",
5039
+ "declined": "Żadne działanie asystenta nie pasuje do tej prośby. Może zadeklarować zależność między dwiema usługami, dodać usługę z adresu repozytorium albo utworzyć zadanie ze zgłoszenia w trackerze.",
5040
+ "actions": {
5041
+ "declare-service-dependency": {
5042
+ "label": "Zadeklaruj zależność między usługami",
5043
+ "example": "usługa checkout zależy od usługi płatności"
5044
+ },
5045
+ "add-service-from-repo": {
5046
+ "label": "Dodaj usługę z repozytorium",
5047
+ "example": "dodaj https://github.com/acme/payments jako usługę"
5048
+ },
5049
+ "create-task-from-issue": {
5050
+ "label": "Utwórz zadanie ze zgłoszenia",
5051
+ "example": "utwórz zadanie z https://github.com/acme/payments/issues/12"
5052
+ }
5053
+ },
5054
+ "done": {
5055
+ "dependencyDeclared": "{consumer} zależy teraz od {provider}, więc obie usługi są uruchamiane przy testowaniu {consumer}.",
5056
+ "dependencyAlready": "{consumer} już zależał od {provider}, nic się nie zmieniło.",
5057
+ "serviceAdded": "Dodano {service} w oparciu o {repo}.",
5058
+ "serviceMounted": "{repo} stoi już za usługą w tej organizacji, więc {service} został dodany do tej tablicy zamiast utworzony od nowa.",
5059
+ "taskCreated": "Utworzono {issue} jako „{task}” w {service}."
5060
+ },
5061
+ "needsInput": {
5062
+ "missing_argument": "W tej prośbie brakuje czegoś, czego potrzebuje asystent. Napisz ją w całości i spróbuj ponownie.",
5063
+ "invalid_argument": "Jednej z wartości w tej prośbie nie da się użyć. Sprawdź ją i spróbuj ponownie.",
5064
+ "unknown_service": "Żadna usługa na tej tablicy nie nosi takiej nazwy.",
5065
+ "ambiguous_service": "Kilka usług pasuje do tej nazwy. Którą masz na myśli?",
5066
+ "unknown_repository": "Ten obszar roboczy nie ma połączenia z tym repozytorium. Najpierw je podłącz, a potem poproś ponownie.",
5067
+ "unreadable_repository_url": "To nie jest adres repozytorium, który asystent potrafi odczytać. Wklej adres WWW repozytorium.",
5068
+ "unknown_issue_source": "Żaden podłączony tracker nie rozpoznaje tego odnośnika. Najpierw podłącz tracker, do którego należy.",
5069
+ "ambiguous_issue_source": "Dwa podłączone trackery rozpoznają to odwołanie. Wklej zamiast tego pełny adres WWW zgłoszenia.",
5070
+ "unresolved_issue_service": "Asystent nie ustalił, pod którą usługą to utworzyć. Podaj usługę w swojej prośbie."
5071
+ }
5072
+ },
5025
5073
  "pipeline": {
5026
5074
  "iterationCap": {
5027
5075
  "extraRound": "Jeszcze jedna runda",