@microsoft/teamsfx-core 3.0.9-alpha.077878d77.0 → 3.0.9-alpha.1ad17fa5d.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/build/common/featureFlags.d.ts +0 -20
- package/build/common/featureFlags.d.ts.map +1 -1
- package/build/common/featureFlags.js +1 -11
- package/build/common/featureFlags.js.map +1 -1
- package/build/common/templates-config.json +2 -2
- package/build/component/driver/script/scriptDriver.js +1 -1
- package/build/component/driver/script/scriptDriver.js.map +1 -1
- package/build/component/generator/generator.d.ts.map +1 -1
- package/build/component/generator/generator.js +3 -13
- package/build/component/generator/generator.js.map +1 -1
- package/build/component/generator/officeAddin/generator.d.ts.map +1 -1
- package/build/component/generator/officeAddin/generator.js +6 -4
- package/build/component/generator/officeAddin/generator.js.map +1 -1
- package/build/component/generator/officeAddin/metaOSHelper.d.ts.map +1 -1
- package/build/component/generator/officeAddin/metaOSHelper.js +13 -6
- package/build/component/generator/officeAddin/metaOSHelper.js.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.d.ts.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.js +2 -12
- package/build/component/generator/templates/templateReplaceMap.js.map +1 -1
- package/build/question/collaborator.d.ts.map +1 -1
- package/build/question/collaborator.js +5 -8
- package/build/question/collaborator.js.map +1 -1
- package/build/question/scaffold/vs/createRootNode.d.ts.map +1 -1
- package/build/question/scaffold/vs/createRootNode.js +0 -15
- package/build/question/scaffold/vs/createRootNode.js.map +1 -1
- package/package.json +4 -4
- package/resource/package.nls.cs.json +11 -25
- package/resource/package.nls.de.json +12 -26
- package/resource/package.nls.es.json +11 -25
- package/resource/package.nls.fr.json +11 -25
- package/resource/package.nls.it.json +11 -25
- package/resource/package.nls.ja.json +11 -25
- package/resource/package.nls.ko.json +11 -25
- package/resource/package.nls.pl.json +11 -25
- package/resource/package.nls.pt-BR.json +11 -25
- package/resource/package.nls.ru.json +11 -25
- package/resource/package.nls.tr.json +11 -25
- package/resource/package.nls.zh-Hans.json +11 -25
- package/resource/package.nls.zh-Hant.json +10 -24
- package/resource/templates/package.nls.cs.json +33 -25
- package/resource/templates/package.nls.de.json +33 -25
- package/resource/templates/package.nls.es.json +33 -25
- package/resource/templates/package.nls.fr.json +33 -25
- package/resource/templates/package.nls.it.json +33 -25
- package/resource/templates/package.nls.ja.json +33 -25
- package/resource/templates/package.nls.ko.json +33 -25
- package/resource/templates/package.nls.pl.json +33 -25
- package/resource/templates/package.nls.pt-BR.json +33 -25
- package/resource/templates/package.nls.ru.json +33 -25
- package/resource/templates/package.nls.tr.json +33 -25
- package/resource/templates/package.nls.zh-Hans.json +33 -25
- package/resource/templates/package.nls.zh-Hant.json +33 -25
- package/templates/fallback/common.zip +0 -0
- package/templates/fallback/csharp.zip +0 -0
- package/templates/fallback/js.zip +0 -0
- package/templates/fallback/python.zip +0 -0
- package/templates/fallback/ts.zip +0 -0
- package/templates/metadata/allTemplates.json +28 -70
- package/templates/metadata/defaultGeneratorTemplates.json +0 -42
- package/templates/metadata.zip +0 -0
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
// Licensed under the MIT license.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.scaffoldQuestionForVS = exports.VSCapabilityOptions = void 0;
|
|
6
|
-
const teamsfx_api_1 = require("@microsoft/teamsfx-api");
|
|
7
6
|
const localizeUtils_1 = require("../../../common/localizeUtils");
|
|
8
7
|
const templateNames_1 = require("../../../component/generator/templates/templateNames");
|
|
9
8
|
const create_1 = require("../../create");
|
|
@@ -55,7 +54,6 @@ class VSCapabilityOptions {
|
|
|
55
54
|
data: templateNames_1.TemplateNames.MessageExtensionSearch,
|
|
56
55
|
};
|
|
57
56
|
}
|
|
58
|
-
// Currently only for dotnet
|
|
59
57
|
static weatherAgentBot() {
|
|
60
58
|
return {
|
|
61
59
|
id: "custom-copilot-weather-agent",
|
|
@@ -92,39 +90,26 @@ function scaffoldQuestionForVS() {
|
|
|
92
90
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.basicChatbot(),
|
|
93
91
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.collaboratorAgent(),
|
|
94
92
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.customCopilotRag(),
|
|
95
|
-
// TeamsAgentCapabilityOptions.aiAgent(),
|
|
96
93
|
VSCapabilityOptions.weatherAgentBot(),
|
|
97
94
|
VSCapabilityOptions.travelAgentBot(),
|
|
98
95
|
CapabilityOptions_1.BotCapabilityOptions.basicBot(),
|
|
99
|
-
// BotCapabilityOptions.notificationBot(),
|
|
100
|
-
// BotCapabilityOptions.commandBot(),
|
|
101
|
-
// BotCapabilityOptions.workflowBot(),
|
|
102
96
|
VSCapabilityOptions.nonSsoTab(),
|
|
103
|
-
// VSCapabilityOptions.tab(),
|
|
104
97
|
CapabilityOptions_1.MeCapabilityOptions.basicMe(),
|
|
105
|
-
// MeCapabilityOptions.m365SearchMe(),
|
|
106
|
-
// MeCapabilityOptions.collectFormMe(),
|
|
107
|
-
// VSCapabilityOptions.SearchMeVS(),
|
|
108
|
-
// MeCapabilityOptions.linkUnfurling(),
|
|
109
98
|
],
|
|
110
99
|
onDidSelection: CapabilityOptions_1.setTemplateName,
|
|
111
100
|
},
|
|
112
101
|
children: [
|
|
113
102
|
(0, daProjectTypeNode_1.daProjectTypeNode)(VSCapabilityOptions.declarativeAgent().id),
|
|
114
103
|
(0, teamsProjectTypeNode_1.customCopilotRagNode)(),
|
|
115
|
-
// aiAgentNode(),
|
|
116
|
-
(0, teamsProjectTypeNode_1.m365SearchMeSubNode)(),
|
|
117
104
|
(0, commonNodes_1.llmServiceNode)({
|
|
118
105
|
enum: [
|
|
119
106
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.basicChatbot().id,
|
|
120
107
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.collaboratorAgent().id,
|
|
121
108
|
CapabilityOptions_1.TeamsAgentCapabilityOptions.customCopilotRag().id,
|
|
122
|
-
// TeamsAgentCapabilityOptions.aiAgent().id,
|
|
123
109
|
VSCapabilityOptions.weatherAgentBot().id,
|
|
124
110
|
VSCapabilityOptions.travelAgentBot().id,
|
|
125
111
|
],
|
|
126
112
|
}),
|
|
127
|
-
(0, teamsProjectTypeNode_1.notificationBotTriggerNode)(teamsfx_api_1.Platform.VS),
|
|
128
113
|
],
|
|
129
114
|
},
|
|
130
115
|
(0, createRootNode_1.languageNode)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createRootNode.js","sourceRoot":"","sources":["../../../../src/question/scaffold/vs/createRootNode.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;
|
|
1
|
+
{"version":3,"file":"createRootNode.js","sourceRoot":"","sources":["../../../../src/question/scaffold/vs/createRootNode.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAGlC,iEAAmE;AACnE,wFAAqF;AACrF,yCAA+D;AAC/D,uDAAoD;AACpD,gDAAgD;AAChD,gEAKkC;AAClC,0DAAgF;AAChF,gEAA6D;AAC7D,sEAAmE;AAEnE,MAAa,mBAAmB;IAC9B,QAAQ;IACR,MAAM,CAAC,KAAK;QACV,OAAO;YACL,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,6BAAa,CAAC,KAAK;SAC1B,CAAC;IACJ,CAAC;IACD,MAAM,CAAC,gBAAgB;QACrB,OAAO;YACL,EAAE,EAAE,mBAAmB;YACvB,KAAK,EAAE,IAAA,kCAAkB,EAAC,+DAA+D,CAAC;YAC1F,MAAM,EAAE,IAAA,kCAAkB,EAAC,gEAAgE,CAAC;SAC7F,CAAC;IACJ,CAAC;IACD,MAAM,CAAC,SAAS;QACd,OAAO;YACL,EAAE,EAAE,aAAa;YACjB,KAAK,EAAE,GAAG,IAAA,kCAAkB,EAAC,sBAAsB,CAAC,EAAE;YACtD,MAAM,EAAE,IAAA,kCAAkB,EAAC,uBAAuB,CAAC;YACnD,WAAW,EAAE,IAAA,kCAAkB,EAC7B,kEAAkE,CACnE;YACD,IAAI,EAAE,6BAAa,CAAC,GAAG;SACxB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,GAAG;QACR,OAAO;YACL,EAAE,EAAE,KAAK;YACT,KAAK,EAAE,IAAA,kCAAkB,EAAC,sBAAsB,CAAC;YACjD,WAAW,EAAE,IAAA,kCAAkB,EAAC,4BAA4B,CAAC;YAC7D,MAAM,EAAE,IAAA,kCAAkB,EAAC,uBAAuB,CAAC;YACnD,IAAI,EAAE,6BAAa,CAAC,SAAS;SAC9B,CAAC;IACJ,CAAC;IACD,MAAM,CAAC,UAAU;QACf,OAAO;YACL,EAAE,EAAE,0BAA0B;YAC9B,KAAK,EAAE,GAAG,IAAA,kCAAkB,EAAC,oCAAoC,CAAC,EAAE;YACpE,MAAM,EAAE,IAAA,kCAAkB,EAAC,iCAAiC,CAAC;YAC7D,IAAI,EAAE,6BAAa,CAAC,sBAAsB;SAC3C,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,eAAe;QACpB,OAAO;YACL,EAAE,EAAE,8BAA8B;YAClC,KAAK,EAAE,IAAA,kCAAkB,EACvB,wEAAwE,CACzE;YACD,MAAM,EAAE,IAAA,kCAAkB,EACxB,yEAAyE,CAC1E;YACD,IAAI,EAAE,6BAAa,CAAC,YAAY;SACjC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,cAAc;QACnB,OAAO;YACL,EAAE,EAAE,6BAA6B;YACjC,KAAK,EAAE,IAAA,kCAAkB,EACvB,uEAAuE,CACxE;YACD,MAAM,EAAE,IAAA,kCAAkB,EACxB,wEAAwE,CACzE;YACD,IAAI,EAAE,6BAAa,CAAC,WAAW;SAChC,CAAC;IACJ,CAAC;CACF;AAvED,kDAuEC;AAED;;GAEG;AAEH,SAAgB,qBAAqB;IACnC,MAAM,IAAI,GAAe;QACvB,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACvB,QAAQ,EAAE;YACR;gBACE,IAAI,EAAE;oBACJ,IAAI,EAAE,6BAAa,CAAC,YAAY;oBAChC,KAAK,EAAE,IAAA,kCAAkB,EAAC,wCAAwC,CAAC;oBACnE,IAAI,EAAE,cAAc;oBACpB,aAAa,EAAE;wBACb,mBAAmB,CAAC,KAAK,EAAE;wBAC3B,mBAAmB,CAAC,gBAAgB,EAAE;wBACtC,+CAA2B,CAAC,YAAY,EAAE;wBAC1C,+CAA2B,CAAC,iBAAiB,EAAE;wBAC/C,+CAA2B,CAAC,gBAAgB,EAAE;wBAC9C,mBAAmB,CAAC,eAAe,EAAE;wBACrC,mBAAmB,CAAC,cAAc,EAAE;wBACpC,wCAAoB,CAAC,QAAQ,EAAE;wBAC/B,mBAAmB,CAAC,SAAS,EAAE;wBAC/B,uCAAmB,CAAC,OAAO,EAAE;qBAC9B;oBACD,cAAc,EAAE,mCAAe;iBAChC;gBACD,QAAQ,EAAE;oBACR,IAAA,qCAAiB,EAAC,mBAAmB,CAAC,gBAAgB,EAAE,CAAC,EAAE,CAAC;oBAC5D,IAAA,2CAAoB,GAAE;oBACtB,IAAA,4BAAc,EAAC;wBACb,IAAI,EAAE;4BACJ,+CAA2B,CAAC,YAAY,EAAE,CAAC,EAAE;4BAC7C,+CAA2B,CAAC,iBAAiB,EAAE,CAAC,EAAE;4BAClD,+CAA2B,CAAC,gBAAgB,EAAE,CAAC,EAAE;4BACjD,mBAAmB,CAAC,eAAe,EAAE,CAAC,EAAE;4BACxC,mBAAmB,CAAC,cAAc,EAAE,CAAC,EAAE;yBACxC;qBACF,CAAC;iBACH;aACF;YACD,IAAA,6BAAY,GAAE;YACd;gBACE,SAAS,EAAE,0CAAyB;gBACpC,IAAI,EAAE;oBACJ,IAAI,EAAE,OAAO;iBACd;gBACD,QAAQ,EAAE;oBACR;wBACE,IAAI,EAAE,IAAA,uBAAc,GAAE;qBACvB;oBACD;wBACE,IAAI,EAAE,IAAA,wBAAe,GAAE;qBACxB;iBACF;aACF;SACF;KACF,CAAC;IACF,OAAO,IAAI,CAAC;AACd,CAAC;AAvDD,sDAuDC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx-core",
|
|
3
|
-
"version": "3.0.9-alpha.
|
|
3
|
+
"version": "3.0.9-alpha.1ad17fa5d.0",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "build/index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"@microsoft/dev-tunnels-contracts": "1.1.9",
|
|
110
110
|
"@microsoft/dev-tunnels-management": "1.1.9",
|
|
111
111
|
"@microsoft/kiota": "1.29.0",
|
|
112
|
-
"@microsoft/m365-spec-parser": "^0.2.11-alpha.
|
|
113
|
-
"@microsoft/teamsfx-api": "0.23.12-alpha.
|
|
112
|
+
"@microsoft/m365-spec-parser": "^0.2.11-alpha.1ad17fa5d.0",
|
|
113
|
+
"@microsoft/teamsfx-api": "0.23.12-alpha.1ad17fa5d.0",
|
|
114
114
|
"adm-zip": "^0.5.10",
|
|
115
115
|
"ajv": "^8.5.0",
|
|
116
116
|
"axios": "^1.8.3",
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
"resource/**/*",
|
|
234
234
|
"templates/**/*"
|
|
235
235
|
],
|
|
236
|
-
"gitHead": "
|
|
236
|
+
"gitHead": "a118e5645d83de404e9aa1b4c9a61978eb4b22cb",
|
|
237
237
|
"publishConfig": {
|
|
238
238
|
"access": "public"
|
|
239
239
|
},
|
|
@@ -318,7 +318,6 @@
|
|
|
318
318
|
"core.createProjectQuestion.projectType.bot.detail": "Vytvářejte okamžité a poutavé možnosti chatu, které bezproblémově automatizují úkoly.",
|
|
319
319
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "Agenti a aplikace Teams",
|
|
320
320
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "Vytvořte agenta, chatovacího robota, webové stránky nebo jiné aplikace v Microsoft Teams pomocí sady Microsoft Teams SDK.",
|
|
321
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "Agent Teams nebo aplikace využívající sadu Microsoft Teams SDK",
|
|
322
321
|
"core.createProjectQuestion.projectType.bot.label": "Robot",
|
|
323
322
|
"core.createProjectQuestion.projectType.bot.title": "Funkce aplikací využívající robota",
|
|
324
323
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Hledat a provádět akce z textového vstupního pole v Teams a Outlooku",
|
|
@@ -334,8 +333,6 @@
|
|
|
334
333
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Vyberte možnost",
|
|
335
334
|
"core.createProjectQuestion.projectType.customCopilot.detail": "Vytvořte inteligentního agenta, kde spravujete orchestraci a poskytujete svůj vlastní LLM.",
|
|
336
335
|
"core.createProjectQuestion.projectType.customCopilot.label": "Agent vlastního modulu",
|
|
337
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "Funkce aplikace využívající sadu SDK pro agenty Microsoft 365",
|
|
338
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Vyberte možnost",
|
|
339
336
|
"core.createProjectQuestion.projectType.copilotHelp.label": "Nevíte, jak začít? Použít GitHub Copilot chat",
|
|
340
337
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Chatujte s GitHub Copilotem a získejte podrobné pokyny k vývoji aplikace nebo agenta Microsoft 365 Copilotu.",
|
|
341
338
|
"core.createProjectQuestion.projectType.copilotGroup.title": "Použít GitHub Copilot",
|
|
@@ -343,7 +340,6 @@
|
|
|
343
340
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "Aplikace pro Microsoft 365",
|
|
344
341
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Deklarativní agent",
|
|
345
342
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Vytvořte si vlastního agenta tím, že deklarujete pokyny, akce a znalosti tak, aby vyhovovaly vašim potřebám.",
|
|
346
|
-
"core.createProjectQuestion.teamsCapability.title": "Funkce Teams",
|
|
347
343
|
"core.createProjectQuestion.title": "Nový projekt",
|
|
348
344
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Začít s robotem",
|
|
349
345
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Vytvořit rozšíření zpráv pomocí sady SDK pro agenty",
|
|
@@ -358,30 +354,11 @@
|
|
|
358
354
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Zadejte text pro vyhledání dokumentu s popisem OpenAPI",
|
|
359
355
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "Vybrat dokument s popisem OpenAPI",
|
|
360
356
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Vytvoření rozšíření zpráv z existujícího rozhraní API",
|
|
361
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Základní vlastní agent modulu",
|
|
362
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Inteligentní agent vytvořený pomocí sady SDK pro agenty Microsoft 365, který se připojuje k vašemu modelu LLM",
|
|
363
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Agent počasí",
|
|
364
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "Agent předpovědi počasí, který je vytvořený pomocí sady SDK pro agenty Microsoft 365 a LangChain",
|
|
365
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "Obecný agent Teams",
|
|
366
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Agent, který chatuje s uživateli v Teams, byl vytvořen pomocí sady Microsoft Teams SDK a připojuje se k LLM",
|
|
367
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Agent Teams s daty",
|
|
368
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Agent, který využívá váš obsah a znalosti k přesnému odpovídání na otázky specifické pro danou oblast.",
|
|
369
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Agent pro spolupráci v Teams",
|
|
370
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agent, který vylepšuje spolupráci ve skupinovém chatu, kanálech nebo schůzkách prostřednictvím shrnutí, správy úkolů a vyhledávání konverzací",
|
|
371
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Další funkce Teams",
|
|
372
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "Aplikace, která používá rozšíření pro karty, robota a zprávy",
|
|
373
357
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Agent s rozhraním API",
|
|
374
358
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Agent pro Teams, který dokáže rozhodovat a provádět akce na základě uvažování modelu LLM",
|
|
375
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Přizpůsobit",
|
|
376
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Rozhodněte, jak načíst data.",
|
|
377
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "Azure AI Vyhledávač",
|
|
378
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Umožňuje načíst data ze služby Azure AI Vyhledávač.",
|
|
379
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "Vlastní rozhraní API",
|
|
380
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Umožňuje načíst data z vlastních rozhraní API na základě dokumentu s popisem OpenAPI.",
|
|
381
359
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
382
360
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Načíst data z Microsoft Graph a SharePointu",
|
|
383
361
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Chat s vašimi daty",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Vyberte možnost pro načtení dat.",
|
|
385
362
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Sestavit od základů",
|
|
386
363
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Vytvořte si vlastního agenta AI úplně od začátku pomocí sady Microsoft Teams SDK",
|
|
387
364
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Vytváření pomocí rozhraní API asistentů",
|
|
@@ -390,8 +367,8 @@
|
|
|
390
367
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Zvolte, jak chcete spravovat úkoly AI.",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agent počasí",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Agent předpovědi počasí, který je vytvořený pomocí sady Microsoft 365 Agents SDK a sémantického jádra",
|
|
393
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "
|
|
394
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "
|
|
370
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Cestovní agent",
|
|
371
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "Agent pro plánování cest, který je vytvořený pomocí Sady SDK pro agenty Microsoft 365, rozhraní Microsoft 365 Retrieval API a architektury Agent Framework",
|
|
395
372
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Funguje v Teams a Microsoft 365 Copilotu",
|
|
396
373
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Vyhledávání na webu",
|
|
397
374
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Vyhledejte na webu informace o uzemnění.",
|
|
@@ -918,6 +895,7 @@
|
|
|
918
895
|
"driver.teamsApp.summary.publishTeamsAppExists": "Aplikace s ID %s už v obchodě s aplikacemi organizace existuje.",
|
|
919
896
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "Aplikace s ID %s v obchodě s aplikacemi organizace neexistuje.",
|
|
920
897
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "Aplikace %s se úspěšně publikovala na portálu pro správu.",
|
|
898
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "Ověření certifikátu balíčku MSIX se nezdařilo. Nejméně jeden místní server MCP nemá certifikát nebo certifikát podepsaný svým držitelem.",
|
|
921
899
|
"driver.teamsApp.summary.copyAppPackageSuccess": "Aplikace %s byla úspěšně zkopírována do %s.",
|
|
922
900
|
"driver.teamsApp.summary.copyIconSuccess": "Ikony (%s) se úspěšně aktualizovaly v rámci %s.",
|
|
923
901
|
"driver.teamsApp.summary.validate": "Sada Microsoft 365 Agents Toolkit provedla kontrolu na základě všech ověřovacích pravidel:\n\nShrnutí:\n%s.\n%s%s\n%s\n\nV %s najdete úplný protokol ověření",
|
|
@@ -1149,6 +1127,14 @@
|
|
|
1149
1127
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (se statickou registrací)",
|
|
1150
1128
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "Jednotné přihlašování Entra",
|
|
1151
1129
|
"core.createProjectQuestion.mcpForDa.File.title": "Vyberte manifest akce, který chcete aktualizovat",
|
|
1130
|
+
"core.createProjectQuestion.mcpServerType.title": "Typ serveru MCP",
|
|
1131
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Vyberte, kde je hostovaný server MCP",
|
|
1132
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Místní server MCP",
|
|
1133
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Připojení k serveru MCP spuštěnému v místním systému Windows",
|
|
1134
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Vzdálený server MCP",
|
|
1135
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Připojení k serveru MCP hostovanému vzdáleně přes protokol HTTP",
|
|
1136
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Místní server MCP",
|
|
1137
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Vyberte místní server MCP",
|
|
1152
1138
|
"core.MCPForDA.updatePluginManifest": "Operace vybrané ze serveru MCP jsou úspěšně přidány pro interakci s Copilotem. Můžete přejít na %s a zkontrolovat podrobnosti. Teď můžete zřídit deklarativního agenta, abyste mohli pokračovat.",
|
|
1153
1139
|
"core.MCPForDA.mcpAuthMetadataMissingError": "Na serveru MCP nebyla nalezena ověřovací metadata. Ujistěte se, že je server MCP správně nakonfigurovaný, a zkuste to znovu. Podrobnosti: %s",
|
|
1154
1140
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "Nepovedlo se najít ověřovací metadata z vlastnosti resource_metadata z odpovědi serveru MCP.",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"core.projectVersionChecker.incompatibleProject": "Das aktuelle Projekt ist nicht mit der installierten Version von Microsoft 365 Agents-Toolkit kompatibel.",
|
|
51
51
|
"core.projectVersionChecker.vs.incompatibleProject": "Das Projekt in der Projektmappe wird mit der Previewfunktion für das Microsoft 365 Agents-Toolkit erstellt – App Configuration-Verbesserungen. Sie können die Previewfunktion aktivieren, um fortzufahren.",
|
|
52
52
|
"core.deployArmTemplates.ActionSuccess": "ARM-Vorlagen wurden erfolgreich bereitgestellt. Ressourcengruppenname: %s. Bereitstellungsname: %s",
|
|
53
|
-
"core.collaboration.ListCollaboratorsSuccess": "
|
|
53
|
+
"core.collaboration.ListCollaboratorsSuccess": "Liste der App-Besitzer erfolgreich erstellt. Sie können sie im [Ausgabefenster](%s) anzeigen.",
|
|
54
54
|
"core.collaboration.GrantingPermission": "Berechtigungen werden gewährt",
|
|
55
55
|
"core.collaboration.EmailCannotBeEmptyOrSame": "Geben Sie die E-Mail-Adresse des Mitarbeiters an, und stellen Sie sicher, dass es sich nicht um die E-Mail-Adresse des aktuellen Benutzers es sich um eine E-Mail-Adresse des aktuellen Benutzers es sich.",
|
|
56
56
|
"core.collaboration.CannotFindUserInCurrentTenant": "Der Benutzer wurde im aktuellen Mandanten nicht gefunden. Geben Sie die richtige E-Mail-Adresse an.",
|
|
@@ -318,7 +318,6 @@
|
|
|
318
318
|
"core.createProjectQuestion.projectType.bot.detail": "Erstellen Sie sofort ansprechende Chaterfahrungen, die Aufgaben nahtlos automatisieren.",
|
|
319
319
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "Teams-Agents und -Apps",
|
|
320
320
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "In Microsoft Teams Agent, Chatbot, Webseiten oder andere Apps in Microsoft Teams mithilfe von Microsoft Teams SDK erstellen.",
|
|
321
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "Teams-Agent oder -App mit dem Microsoft Teams SDK",
|
|
322
321
|
"core.createProjectQuestion.projectType.bot.label": "Bot",
|
|
323
322
|
"core.createProjectQuestion.projectType.bot.title": "App-Features mithilfe eines Bots",
|
|
324
323
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Suchen und Ergreifen von Aktionen über das Texteingabefeld in Teams und Outlook",
|
|
@@ -334,8 +333,6 @@
|
|
|
334
333
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Option auswählen",
|
|
335
334
|
"core.createProjectQuestion.projectType.customCopilot.detail": "Erstellen eines intelligenten Agent, bei dem Sie die Orchestrierung verwalten und Ihr eigenes LLM bereitstellen",
|
|
336
335
|
"core.createProjectQuestion.projectType.customCopilot.label": "Benutzerdefinierter Engine-Agent",
|
|
337
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "App-Feature mit Microsoft 365 Agents SDK",
|
|
338
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Option auswählen",
|
|
339
336
|
"core.createProjectQuestion.projectType.copilotHelp.label": "Sie wissen nicht, wie Sie beginnen sollen? GitHub Copilot Chat verwenden",
|
|
340
337
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Chatten Sie mit GitHub Copilot, und erhalten Sie schrittweise Anleitungen zum Entwickeln Ihrer App oder von Microsoft 365 Copilot-Agents.",
|
|
341
338
|
"core.createProjectQuestion.projectType.copilotGroup.title": "GitHub Copilot verwenden",
|
|
@@ -343,7 +340,6 @@
|
|
|
343
340
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "Apps für Microsoft 365",
|
|
344
341
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Deklarativer Agent",
|
|
345
342
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Erstellen Sie Ihren eigenen Agenten, indem Sie Anweisungen, Aktionen und Wissen deklarieren, die Ihren Anforderungen entsprechen.",
|
|
346
|
-
"core.createProjectQuestion.teamsCapability.title": "Teams-Funktion",
|
|
347
343
|
"core.createProjectQuestion.title": "Neues Projekt",
|
|
348
344
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Mit einem Bot beginnen",
|
|
349
345
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Erstellen einer Nachrichtenerweiterung mithilfe des Agents SDK",
|
|
@@ -358,30 +354,11 @@
|
|
|
358
354
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Geben Sie Text ein, um das OpenAPI-Beschreibungsdokument zu durchsuchen.",
|
|
359
355
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "OpenAPI-Beschreibungsdokument auswählen",
|
|
360
356
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Erstellen einer Nachrichtenerweiterung aus Ihrer vorhandenen API",
|
|
361
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Benutzerdefinierter Basic-Engine-Agent",
|
|
362
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Intelligenter Agent, der mit dem Microsoft 365 Agents SDK erstellt wurde und eine Verbindung zu Ihrem LLM herstellt",
|
|
363
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Wetter-Agent",
|
|
364
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "Ein Wettervorhersage-Agent, der mit Microsoft 365 Agents SDK und LangChain erstellt wird",
|
|
365
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "Allgemeiner Teams-Agent",
|
|
366
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Agent, der mit Benutzern in Teams chattet, die mit dem Microsoft Teams SDK erstellt wurden, und eine Verbindung mit LLMs herstellt",
|
|
367
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Teams-Agent mit Daten",
|
|
368
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Agent, der Ihre Inhalte und Ihr Wissen nutzt, um domänenspezifische Fragen präzise zu beantworten",
|
|
369
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Teams-Projektmitarbeiter-Agent",
|
|
370
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agent, der die Zusammenarbeit in Gruppenchats, Kanälen oder Besprechungen durch Zusammenfassung, Aufgabenverwaltung und Unterhaltungssuche verbessert",
|
|
371
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Andere Teams-Funktionen",
|
|
372
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "App, die Registerkarte, Bot und Nachrichtenerweiterung verwendet",
|
|
373
357
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Agent mit API",
|
|
374
358
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Agent für Teams, der basierend auf LLM-Schlussfolgerung Entscheidungen treffen und Aktionen ausführen kann",
|
|
375
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Anpassen",
|
|
376
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Entscheiden Sie, wie Ihre Daten geladen werden sollen",
|
|
377
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "Azure KI-Suche",
|
|
378
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Laden Sie Ihre Daten aus dem Azure KI-Suchdienst",
|
|
379
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "Benutzerdefinierte API",
|
|
380
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Laden Sie Ihre Daten basierend auf dem OpenAPI-Beschreibungsdokument aus benutzerdefinierten APIs",
|
|
381
359
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
382
360
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Daten aus Microsoft Graph und SharePoint laden",
|
|
383
361
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Stellen Sie Fragen zu Ihren Daten",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Wählen Sie eine Option zum Laden Ihrer Daten aus.",
|
|
385
362
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Von Grund auf neu erstellen",
|
|
386
363
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Erstellen eines eigenen KI-Agenten von Grund auf mithilfe des Microsoft Teams SDK",
|
|
387
364
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Erstellen mit Assistenten-API",
|
|
@@ -390,8 +367,8 @@
|
|
|
390
367
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Wählen Sie aus, wie Sie Ihre KI-Aufgaben verwalten möchten.",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Wetter-Agent",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Ein Wettervorhersage-Agent, der mit Microsoft 365 Agents-SDK und semantischem Kernel erstellt wird",
|
|
393
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "
|
|
394
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "
|
|
370
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Reiseagent",
|
|
371
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "Ein Reiseplanungs-Agent, der mit Microsoft 365 Agents SDK, Microsoft 365-Abruf-API und Agent-Framework erstellt wird",
|
|
395
372
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Funktioniert in Teams und Microsoft 365 Copilot",
|
|
396
373
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Websuche",
|
|
397
374
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Durchsuchen Sie das Web nach Erdungsinformationen.",
|
|
@@ -918,6 +895,7 @@
|
|
|
918
895
|
"driver.teamsApp.summary.publishTeamsAppExists": "Die App mit der ID \"%s\" ist bereits im App Store der Organisation vorhanden.",
|
|
919
896
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "Die App mit der ID \"%s\" ist im App Store der Organisation nicht vorhanden.",
|
|
920
897
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "Die App \"%s\" wurde erfolgreich im Verwaltungsportal veröffentlicht.",
|
|
898
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "Die Überprüfung des MSIX-Paketzertifikats ist fehlgeschlagen. Mindestens ein lokaler MCP-Server hat kein Zertifikat oder verwendet ein selbstsigniertes Zertifikat.",
|
|
921
899
|
"driver.teamsApp.summary.copyAppPackageSuccess": "Die App \"%s\" wurde erfolgreich in %s kopiert.",
|
|
922
900
|
"driver.teamsApp.summary.copyIconSuccess": "%s Symbole wurden unter %s erfolgreich aktualisiert.",
|
|
923
901
|
"driver.teamsApp.summary.validate": "Das Microsoft 365 Agents-Toolkit hat alle Validierungsregeln überprüft:\n\nZusammenfassung:\n%s.\n%s%s\n%s\n\nEin vollständiges Überprüfungsprotokoll finden Sie in „%s“.",
|
|
@@ -1149,6 +1127,14 @@
|
|
|
1149
1127
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (mit statischer Registrierung)",
|
|
1150
1128
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "Entra SSO",
|
|
1151
1129
|
"core.createProjectQuestion.mcpForDa.File.title": "Wählen Sie das Aktionsmanifest aus, das Sie aktualisieren möchten",
|
|
1130
|
+
"core.createProjectQuestion.mcpServerType.title": "MCP-Servertyp",
|
|
1131
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Wählen Sie aus, wo Ihr MCP-Server gehostet wird",
|
|
1132
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Lokaler MCP-Server",
|
|
1133
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Stellen Sie eine Verbindung zu einem MCP-Server her, der auf Ihrem lokalen Windows-System ausgeführt wird.",
|
|
1134
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Remote-MCP-Server",
|
|
1135
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Verbindung zu einem MCP-Server herstellen, der remote über HTTP gehostet wird",
|
|
1136
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Lokaler MCP-Server",
|
|
1137
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Lokalen MCP-Server auswählen",
|
|
1152
1138
|
"core.MCPForDA.updatePluginManifest": "Die von Ihrem MCP-Server ausgewählten Vorgänge wurden erfolgreich hinzugefügt, damit Copilot interagieren kann. Sie können zu „%s“ wechseln, um Details zu überprüfen. Jetzt können Sie Ihren deklarativen Agent bereitstellen, um fortzufahren.",
|
|
1153
1139
|
"core.MCPForDA.mcpAuthMetadataMissingError": "Die Authentifizierungsmetadaten wurden auf dem MCP-Server nicht gefunden. Stellen Sie sicher, dass Ihr MCP-Server ordnungsgemäß konfiguriert ist, und versuchen Sie es noch mal. Details: %s",
|
|
1154
1140
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "Die Authentifizierungsmetadaten aus der Eigenschaft „resource_metadata“ aus der Antwort des MCP-Servers wurden nicht gefunden.",
|
|
@@ -318,7 +318,6 @@
|
|
|
318
318
|
"core.createProjectQuestion.projectType.bot.detail": "Cree experiencias de chat instantáneas y atractivas que automaticen las tareas sin problemas",
|
|
319
319
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "Agentes y aplicaciones de Teams",
|
|
320
320
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "Cree agentes, bots de chat, páginas web u otras aplicaciones en Microsoft Teams utilizando el SDK de Microsoft Teams.",
|
|
321
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "Agente o aplicación de Teams mediante el SDK de Microsoft Teams",
|
|
322
321
|
"core.createProjectQuestion.projectType.bot.label": "Bot",
|
|
323
322
|
"core.createProjectQuestion.projectType.bot.title": "Características de la aplicación mediante un bot",
|
|
324
323
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Buscar y realizar acciones desde el cuadro de entrada de texto en Teams y Outlook",
|
|
@@ -334,8 +333,6 @@
|
|
|
334
333
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Seleccionar una opción",
|
|
335
334
|
"core.createProjectQuestion.projectType.customCopilot.detail": "Compile un agente inteligente en el que administre la orquestación y proporcione su propio LLM",
|
|
336
335
|
"core.createProjectQuestion.projectType.customCopilot.label": "Agente de motor personalizado",
|
|
337
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "Características de la aplicación que utilizan el SDK de agentes de Microsoft 365",
|
|
338
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Seleccionar una opción",
|
|
339
336
|
"core.createProjectQuestion.projectType.copilotHelp.label": "¿No sabe cómo empezar? Usar GitHub Copilot chat",
|
|
340
337
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Chatee con GitHub Copilot y obtenga instrucciones paso a paso para desarrollar su aplicación de agente de Microsoft 365 Copilot.",
|
|
341
338
|
"core.createProjectQuestion.projectType.copilotGroup.title": "Usar GitHub Copilot",
|
|
@@ -343,7 +340,6 @@
|
|
|
343
340
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "Aplicaciones para Microsoft 365",
|
|
344
341
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Agente declarativo",
|
|
345
342
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Cree su propio agente declarando instrucciones, acciones y conocimientos que se adapten a sus necesidades.",
|
|
346
|
-
"core.createProjectQuestion.teamsCapability.title": "Capacidad de Teams",
|
|
347
343
|
"core.createProjectQuestion.title": "Nuevo proyecto",
|
|
348
344
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Empezar con un bot",
|
|
349
345
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Crear una extensión de mensaje utilizando el SDK de Agents",
|
|
@@ -358,30 +354,11 @@
|
|
|
358
354
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Texto de entrada para buscar en el documento de descripción de OpenAPI",
|
|
359
355
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "Seleccionar documento de descripción de OpenAPI",
|
|
360
356
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Creación de una extensión de mensaje a partir de la API existente",
|
|
361
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Agente de motor personalizado Básico",
|
|
362
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Agente inteligente compilado con el SDK de agentes de Microsoft 365 que se conecta al LLM",
|
|
363
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Agente de El Tiempo",
|
|
364
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "Un agente de previsión meteorológica, que se compila con el SDK de agentes de Microsoft 365 y LangChain",
|
|
365
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "Agente general de Teams",
|
|
366
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Agente que chatea con los usuarios en Teams creado con Microsoft Teams SDK y se conecta a LLM",
|
|
367
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Agente de Teams con datos",
|
|
368
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Agente que utiliza su contenido y conocimientos para responder con precisión a preguntas específicas del dominio",
|
|
369
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Agente colaborador de Teams",
|
|
370
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agente que mejora la colaboración en chats grupales, canales o reuniones mediante resúmenes, administración de tareas y búsqueda de conversaciones",
|
|
371
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Otras capacidades de Teams",
|
|
372
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "Aplicación que utiliza pestañas, bots y extensiones de mensajes",
|
|
373
357
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Agente con API",
|
|
374
358
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Agente para Teams que toma decisiones y realiza acciones basadas en el razonamiento de LLM",
|
|
375
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Personalizar",
|
|
376
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Decidir cómo cargar los datos",
|
|
377
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "búsqueda de Azure AI",
|
|
378
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Cargue los datos del servicio de Búsqueda de Azure AI",
|
|
379
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "API personalizada",
|
|
380
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Carga de datos desde API personalizadas basadas en el documento de descripción de OpenAPI",
|
|
381
359
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
382
360
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Cargar los datos de Microsoft Graph y SharePoint",
|
|
383
361
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Interactuar con sus datos",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Seleccione una opción para cargar los datos",
|
|
385
362
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Compilar desde cero",
|
|
386
363
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Cree su propio agente de IA desde cero con Microsoft Teams SDK",
|
|
387
364
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Compilar con la API Assistants",
|
|
@@ -390,8 +367,8 @@
|
|
|
390
367
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Elija cómo quiere administrar las tareas de IA",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agente del tiempo",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Un agente de previsión meteorológica, que se compila con el SDK y Kernel Semántico de Microsoft 365 Agents",
|
|
393
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "
|
|
394
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "
|
|
370
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Agente de viajes",
|
|
371
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "Un agente de planificación de viajes, creado con el SDK de agentes de Microsoft 365, la API de recuperación de Microsoft 365 y Agent Framework",
|
|
395
372
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Funciona en Teams y Microsoft 365 Copilot",
|
|
396
373
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Web Search",
|
|
397
374
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Busque información de conexión a tierra en la Web.",
|
|
@@ -918,6 +895,7 @@
|
|
|
918
895
|
"driver.teamsApp.summary.publishTeamsAppExists": "La aplicación con Id. %s ya existe en la tienda de aplicaciones de la organización.",
|
|
919
896
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "La aplicación con id. %s no existe en la tienda de aplicaciones de la organización.",
|
|
920
897
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "La aplicación %s se publicó correctamente en el portal de administración.",
|
|
898
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "Error en la comprobación del certificado del paquete MSIX. Uno o varios servidores MCP locales no tienen certificado o cuentan con un certificado autofirmado.",
|
|
921
899
|
"driver.teamsApp.summary.copyAppPackageSuccess": "La aplicación %s se copió correctamente en %s.",
|
|
922
900
|
"driver.teamsApp.summary.copyIconSuccess": "Los iconos de %s se actualizaron correctamente en %s.",
|
|
923
901
|
"driver.teamsApp.summary.validate": "El kit de herramientas de Microsoft 365 Agents se ha comprobado con todas las reglas de validación:\n\nResumen:\n%s.\n%s%s\n%s\n\nSe puede encontrar un registro completo de validaciones en %s",
|
|
@@ -1149,6 +1127,14 @@
|
|
|
1149
1127
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (con registro estático)",
|
|
1150
1128
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "Inicio de sesión único de Entra",
|
|
1151
1129
|
"core.createProjectQuestion.mcpForDa.File.title": "Seleccione el manifiesto de acciones que desea actualizar",
|
|
1130
|
+
"core.createProjectQuestion.mcpServerType.title": "Tipo de servidor MCP",
|
|
1131
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Seleccione dónde se hospeda el servidor MCP",
|
|
1132
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Servidor MCP local",
|
|
1133
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Conectarse a un servidor MCP que se ejecuta en el sistema Windows local",
|
|
1134
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Servidor MCP remoto",
|
|
1135
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Conectarse a un servidor MCP hospedado de forma remota a través de HTTP",
|
|
1136
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Servidor MCP local",
|
|
1137
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Seleccionar un servidor MCP local",
|
|
1152
1138
|
"core.MCPForDA.updatePluginManifest": "Las operaciones seleccionadas de su servidor MCP se han agregado correctamente para que Copilot pueda interactuar con ellas. Puede ir a \"%s\" para consultar los detalles. Ahora puede aprovisionar su agente declarativo para continuar.",
|
|
1153
1139
|
"core.MCPForDA.mcpAuthMetadataMissingError": "No se pueden encontrar los metadatos de autenticación en el servidor MCP. Asegúrese de que su servidor MCP esté configurado correctamente e inténtelo de nuevo. Detalles: %s",
|
|
1154
1140
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "No se pueden encontrar los metadatos de autenticación de la propiedad \"resource_metadata\" en la respuesta del servidor MCP.",
|
|
@@ -318,7 +318,6 @@
|
|
|
318
318
|
"core.createProjectQuestion.projectType.bot.detail": "Créez des expériences de conversation instantanées et attrayantes qui automatisent les tâches en toute transparence",
|
|
319
319
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "Agents et applications Teams",
|
|
320
320
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "Créez un agent, un bot de conversation, des pages web ou d’autres applications dans Microsoft Teams à l’aide du Kit de développement logiciel (SDK) Microsoft Teams.",
|
|
321
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "Agent ou application Teams utilisant le SDK Microsoft Teams",
|
|
322
321
|
"core.createProjectQuestion.projectType.bot.label": "Bot",
|
|
323
322
|
"core.createProjectQuestion.projectType.bot.title": "Fonctionnalités de l’application à l’aide d’un bot",
|
|
324
323
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Rechercher et effectuer des actions à partir de la zone de saisie de texte dans Teams et Outlook",
|
|
@@ -334,8 +333,6 @@
|
|
|
334
333
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Sélectionnez une option",
|
|
335
334
|
"core.createProjectQuestion.projectType.customCopilot.detail": "Créer un assistant intelligent où vous gérez l’orchestration et fournissez votre propre LLM",
|
|
336
335
|
"core.createProjectQuestion.projectType.customCopilot.label": "Agent du moteur personnalisé",
|
|
337
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "Fonctionnalités de l’application utilisant Microsoft 365 Agents SDK",
|
|
338
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Sélectionnez une option",
|
|
339
336
|
"core.createProjectQuestion.projectType.copilotHelp.label": "Vous ne savez pas comment démarrer ? Utiliser GitHub Copilot conversation",
|
|
340
337
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Conversez avec GitHub Copilot et obtenez des instructions étape par étape pour développer votre application ou votre assistant Microsoft 365 Copilot.",
|
|
341
338
|
"core.createProjectQuestion.projectType.copilotGroup.title": "Utiliser GitHub Copilot",
|
|
@@ -343,7 +340,6 @@
|
|
|
343
340
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "Applications pour Microsoft 365",
|
|
344
341
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Agent déclaratif",
|
|
345
342
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Créez votre propre agent en déclarant des instructions, des actions et des connaissances en fonction de vos besoins.",
|
|
346
|
-
"core.createProjectQuestion.teamsCapability.title": "Fonctionnalité Teams",
|
|
347
343
|
"core.createProjectQuestion.title": "Nouveau projet",
|
|
348
344
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Commencer par un bot",
|
|
349
345
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Créer une extension de message en utilisant Agents SDK",
|
|
@@ -358,30 +354,11 @@
|
|
|
358
354
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Texte à saisir pour rechercher dans un document de description OpenAPI",
|
|
359
355
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "Sélectionner un document de description OpenAPI",
|
|
360
356
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Créez une extension de message depuis votre API existante",
|
|
361
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Agent de moteur personnalisé de base",
|
|
362
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Agent intelligent conçu avec Microsoft 365 Agents SDK et qui se connecte à votre LLM",
|
|
363
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Agent météo",
|
|
364
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "Agent de prévisions météo, conçu avec Microsoft 365 Agents SDK et LangChain",
|
|
365
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "Agent Teams général",
|
|
366
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Assistant qui discute avec des utilisateurs dans Microsoft Teams, construit avec la bibliothèque d’IA Teams et se connecte aux LLM",
|
|
367
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Agent Teams avec données",
|
|
368
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Assistant qui utilise votre contenu et vos connaissances pour répondre avec précision aux questions propres au domaine.",
|
|
369
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Agent collaborateur Teams",
|
|
370
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agent qui améliore la collaboration dans les conversations de groupe, les canaux ou les réunions grâce à la synthèse, la gestion des tâches et la recherche dans les conversations",
|
|
371
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Autres fonctionnalités Teams",
|
|
372
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "Application qui utilise l’onglet, le bot et l’extension de message",
|
|
373
357
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Assistant avec API",
|
|
374
358
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Assistant pour Teams qui peut prendre des décisions et effectuer des actions en fonction de l’utilisation de LLM",
|
|
375
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Personnaliser",
|
|
376
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Décidez comment charger vos données",
|
|
377
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "Recherche Azure AI",
|
|
378
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Chargez vos données depuis le service Recherche Azure AI",
|
|
379
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "API personnalisée",
|
|
380
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Chargez vos données à partir d’API personnalisées en fonction du document de description OpenAPI",
|
|
381
359
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
382
360
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Charger vos données à partir de Microsoft Graph et SharePoint",
|
|
383
361
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Converser avec vos données",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Sélectionnez une option pour charger vos données",
|
|
385
362
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Créer en partant de zéro",
|
|
386
363
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Créez votre propre agent IA à partir de zéro à l’aide du Kit de développement logiciel (SDK) Microsoft Teams",
|
|
387
364
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Générer avec l’API Assistants",
|
|
@@ -390,8 +367,8 @@
|
|
|
390
367
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Choisissez le mode de gestion de vos tâches IA",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agent météo",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Agent de prévisions météo, conçu avec le SDK des agents Microsoft 365 et le noyau sémantique",
|
|
393
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "
|
|
394
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "
|
|
370
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Agent de voyage",
|
|
371
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "Un agent de planification de voyage, construit avec le Microsoft 365 Agents SDK, l’API de récupération Microsoft 365 et l’Agent Framework",
|
|
395
372
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Fonctionne dans Teams et Microsoft 365 Copilot",
|
|
396
373
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Recherche web",
|
|
397
374
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Recherchez des informations de mise à la terre sur le web.",
|
|
@@ -918,6 +895,7 @@
|
|
|
918
895
|
"driver.teamsApp.summary.publishTeamsAppExists": "L’application avec l’ID %s existe déjà dans l’App Store de l’organisation.",
|
|
919
896
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "L’application avec l’ID %s n’existe pas dans la boutique d’applications de l’organisation.",
|
|
920
897
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "L’application %s a été correctement publiée sur le portail d’administration.",
|
|
898
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "La vérification du certificat du package MSIX a échoué. Un ou plusieurs serveurs MCP locaux n’ont pas de certificat ou disposent d’un certificat auto-signé.",
|
|
921
899
|
"driver.teamsApp.summary.copyAppPackageSuccess": "L’application %s a été correctement copiée dans %s.",
|
|
922
900
|
"driver.teamsApp.summary.copyIconSuccess": "Les icônes %s ont été mises à jour avec succès sous %s.",
|
|
923
901
|
"driver.teamsApp.summary.validate": "Microsoft 365 Agents Toolkit a effectué une vérification par rapport à toutes les règles de validation :\n\nRésumé :\n%s.\n%s%s\n%s\n\nUn journal complet des validations se trouve dans %s",
|
|
@@ -1149,6 +1127,14 @@
|
|
|
1149
1127
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (avec enregistrement statique)",
|
|
1150
1128
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "L’authentification unique (SSO) est en place",
|
|
1151
1129
|
"core.createProjectQuestion.mcpForDa.File.title": "Sélectionnez le manifeste d’action à mettre à jour",
|
|
1130
|
+
"core.createProjectQuestion.mcpServerType.title": "Type de serveur MCP",
|
|
1131
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Sélectionnez l’emplacement d’hébergement de votre serveur MCP",
|
|
1132
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Serveur MCP local",
|
|
1133
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Connectez-vous à un serveur MCP fonctionnant sur votre système Windows local",
|
|
1134
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Serveur MCP distant",
|
|
1135
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Connectez-vous à un serveur MCP hébergé à distance via HTTP",
|
|
1136
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Serveur MCP local",
|
|
1137
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Sélectionnez un serveur MCP local",
|
|
1152
1138
|
"core.MCPForDA.updatePluginManifest": "Les opérations sélectionnées à partir de votre serveur MCP ont été ajoutées pour permettre à Copilot d’interagir. Vous pouvez consulter les détails dans '%s'. Vous pouvez désormais provisionner votre agent déclaratif pour continuer.",
|
|
1153
1139
|
"core.MCPForDA.mcpAuthMetadataMissingError": "Impossible de trouver les métadonnées d’authentification sur le serveur MCP. Vérifiez que votre serveur MCP est correctement configuré et réessayez. Détails : %s",
|
|
1154
1140
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "Impossible de trouver les métadonnées d’authentification dans la propriété « resource_metadata » de la réponse du serveur MCP.",
|
|
@@ -318,7 +318,6 @@
|
|
|
318
318
|
"core.createProjectQuestion.projectType.bot.detail": "Crea esperienze chat immediate e coinvolgenti che automatizzano le attività senza problemi",
|
|
319
319
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "App e agenti di Teams",
|
|
320
320
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "Crea agenti, chatbot, pagine web o altre app in Microsoft Teams usando l'SDK Microsoft Teams.",
|
|
321
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "App o agente di Teams che usa l'SDK Microsoft Teams",
|
|
322
321
|
"core.createProjectQuestion.projectType.bot.label": "Bot",
|
|
323
322
|
"core.createProjectQuestion.projectType.bot.title": "Funzionalità dell'app con un bot",
|
|
324
323
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Cerca e intervieni dalla casella di input di testo in Teams e Outlook",
|
|
@@ -334,8 +333,6 @@
|
|
|
334
333
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Selezionare un'opzione",
|
|
335
334
|
"core.createProjectQuestion.projectType.customCopilot.detail": "È possibile creare un agente intelligente in cui si gestisce l'orchestrazione e si fornisce un LLM specifico",
|
|
336
335
|
"core.createProjectQuestion.projectType.customCopilot.label": "Agente motore personalizzato",
|
|
337
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "Funzionalità dell'app con SDK per agenti Microsoft 365",
|
|
338
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Selezionare un'opzione",
|
|
339
336
|
"core.createProjectQuestion.projectType.copilotHelp.label": "Non sai come iniziare? Usa GitHub Copilot chat",
|
|
340
337
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Chattare con GitHub Copilot e ottenere istruzioni passo-passo per sviluppare la t’app Microsoft 365 o l'agente di Microsoft 365 Copilot.",
|
|
341
338
|
"core.createProjectQuestion.projectType.copilotGroup.title": "Usa GitHub Copilot",
|
|
@@ -343,7 +340,6 @@
|
|
|
343
340
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "App per Microsoft 365",
|
|
344
341
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Agente dichiarativo",
|
|
345
342
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Crea il tuo agente dichiarando istruzioni, azioni e conoscenze in base alle tue esigenze.",
|
|
346
|
-
"core.createProjectQuestion.teamsCapability.title": "Funzionalità Teams",
|
|
347
343
|
"core.createProjectQuestion.title": "Nuovo progetto",
|
|
348
344
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Inizia con un bot",
|
|
349
345
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Crea un'estensione per i messaggi usando Agents SDK",
|
|
@@ -358,30 +354,11 @@
|
|
|
358
354
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Testo di input per la ricerca nel documento di descrizione OpenAPI",
|
|
359
355
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "Seleziona documento di descrizione OpenAPI",
|
|
360
356
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Creare un'estensione del messaggio dall'API esistente",
|
|
361
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Agente del motore personalizzato di base",
|
|
362
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Agente intelligente creato con l'SDK per agenti Microsoft 365 e che si connette a un LLM",
|
|
363
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Agente Meteo",
|
|
364
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "Agente di previsioni meteo creato con SDK per agenti Microsoft 365 e LangChain",
|
|
365
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "Agente generale di Teams",
|
|
366
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Agente che chatta con gli utenti in Teams, creato con l'SDK Microsoft Teams e che si connette a un modello linguistico di grandi dimensioni",
|
|
367
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Agente di Teams con dati",
|
|
368
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Agente che usa il contenuto e le conoscenze per rispondere in modo accurato a domande specifiche del dominio",
|
|
369
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Agente collaboratore di Teams",
|
|
370
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agente che migliora la collaborazione in chat di gruppo, canali o riunioni tramite riepilogo, gestione attività e ricerca conversazioni",
|
|
371
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Altre funzionalità di Teams",
|
|
372
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "App che usa l'estensione scheda, bot e messaggio",
|
|
373
357
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Agente con API",
|
|
374
358
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Agente per Teams in grado di prendere decisioni ed eseguire azioni basate sul ragionamento con LLM",
|
|
375
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Personalizza",
|
|
376
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Decidere come caricare i dati",
|
|
377
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "Azure AI Search",
|
|
378
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Caricare i dati da servizio di Azure Al Search",
|
|
379
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "API personalizzata",
|
|
380
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Caricare i dati dalle API personalizzate in base al documento di descrizione OpenAPI",
|
|
381
359
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
382
360
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Carica i dati da Microsoft Graph e SharePoint",
|
|
383
361
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Analizzare i dati in chat",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Selezionare un'opzione per caricare i dati",
|
|
385
362
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Crea da zero",
|
|
386
363
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Crea un agente IA personalizzato da zero con l'SDK Microsoft Teams",
|
|
387
364
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Creare con API Assistenti",
|
|
@@ -390,8 +367,8 @@
|
|
|
390
367
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Scegliere la modalità di gestione delle attività di intelligenza artificiale",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agente meteo",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Un agente di previsioni meteo, creato con Microsoft 365 Agents SDK e Semantic Kernel",
|
|
393
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "
|
|
394
|
-
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "
|
|
370
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Agente di viaggio",
|
|
371
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "Un agente per la pianificazione dei viaggi, realizzato con SDK per agenti Microsoft 365, API di recupero Microsoft 365 e Agent Framework",
|
|
395
372
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Funziona in Teams e Microsoft 365 Copilot",
|
|
396
373
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Ricerca Web",
|
|
397
374
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Cerca informazioni di base sul Web.",
|
|
@@ -918,6 +895,7 @@
|
|
|
918
895
|
"driver.teamsApp.summary.publishTeamsAppExists": "L'app con ID %s esiste già nell’archivio applicazioni dell'organizzazione.",
|
|
919
896
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "L'app con ID %s non esiste nell’archivio applicazioni dell'organizzazione.",
|
|
920
897
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "L'app %s è stata pubblicata nel portale di amministrazione.",
|
|
898
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "Verifica del certificato del pacchetto MSIX non riuscita. Uno o più server mcp locali non hanno un certificato o ne hanno uno autofirmato.",
|
|
921
899
|
"driver.teamsApp.summary.copyAppPackageSuccess": "L'app %s è stata copiata in %s.",
|
|
922
900
|
"driver.teamsApp.summary.copyIconSuccess": "%s icone aggiornate correttamente in %s.",
|
|
923
901
|
"driver.teamsApp.summary.validate": "Microsoft 365 Agents Toolkit ha eseguito il controllo su tutte le regole di convalida:\n\nRiepilogo:\n%s.\n%s%s\n%s\n\nIn %s è disponibile un log completo delle convalide",
|
|
@@ -1149,6 +1127,14 @@
|
|
|
1149
1127
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (con registrazione statica)",
|
|
1150
1128
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "SSO di Entra",
|
|
1151
1129
|
"core.createProjectQuestion.mcpForDa.File.title": "Seleziona il manifesto dell'azione da aggiornare",
|
|
1130
|
+
"core.createProjectQuestion.mcpServerType.title": "Tipo di server MCP",
|
|
1131
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Selezionare la posizione in cui è ospitato il server MCP",
|
|
1132
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Server MCP locale",
|
|
1133
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Connettersi a un server MCP in esecuzione sul sistema Windows locale",
|
|
1134
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Server MCP remoto",
|
|
1135
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Connettersi a un server MCP ospitato in remoto tramite HTTP",
|
|
1136
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Server MCP locale",
|
|
1137
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Selezionare un server MCP locale",
|
|
1152
1138
|
"core.MCPForDA.updatePluginManifest": "Le operazioni selezionate dal server MCP sono state aggiunte correttamente per l'interazione con Copilot. Andare in '%s' per controllare i dettagli. Per continuare, è ora possibile effettuare il provisioning dell'agente dichiarativo.",
|
|
1153
1139
|
"core.MCPForDA.mcpAuthMetadataMissingError": "Impossibile trovare i metadati di autenticazione nel server MCP. Verificare che il server MCP sia configurato correttamente e riprovare. Dettagli: %s",
|
|
1154
1140
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "Impossibile trovare i metadati di autenticazione dalla proprietà \"resource_metadata\" nella risposta del server MCP.",
|