Localization - import translations and generate necessary artifacts (#124)
This commit is contained in:
Родитель
160d644e2a
Коммит
56eaf3ff71
56
gulpfile.js
56
gulpfile.js
|
@ -224,7 +224,8 @@ const recompile = gulp.series(
|
|||
async () => nugetInstall('CAP_ISVExp_Tools_Stable', 'Microsoft.PowerApps.CLI.Core.osx-x64', cliVersion, path.resolve(distdir, 'pac')),
|
||||
async () => nugetInstall('CAP_ISVExp_Tools_Stable', 'Microsoft.PowerApps.CLI.Core.linux-x64', cliVersion, path.resolve(distdir, 'pac')),
|
||||
translationsExport,
|
||||
translationsGenerateSrcLocBundles,
|
||||
translationsImport,
|
||||
translationsGenerate,
|
||||
compile,
|
||||
);
|
||||
|
||||
|
@ -251,10 +252,59 @@ async function translationsExport() {
|
|||
.pipe(gulp.dest(path.join("loc")));
|
||||
}
|
||||
|
||||
const languages = [
|
||||
//{ id: "bg", folderName: "bul" },
|
||||
//{ id: "hu", folderName: "hun" },
|
||||
//{ id: "pl", folderName: "plk" },
|
||||
{ id: "cs", folderName: "csy" },
|
||||
{ id: "de", folderName: "deu" },
|
||||
{ id: "es", folderName: "esn" },
|
||||
{ id: "fr", folderName: "fra" },
|
||||
{ id: "it", folderName: "ita" },
|
||||
{ id: "ja", folderName: "jpn" },
|
||||
{ id: "ko", folderName: "kor" },
|
||||
{ id: "pt-br", folderName: "ptb"},
|
||||
{ id: "ru", folderName: "rus" },
|
||||
{ id: "tr", folderName: "trk" },
|
||||
{ id: "zh-cn", folderName: "chs" },
|
||||
{ id: "zh-tw", folderName: "cht" },
|
||||
];
|
||||
|
||||
async function translationsImport(done) {
|
||||
const tasks = languages.map((language) => {
|
||||
const importTask = async () => gulp.src(path.join("loc", "translations-import", `vscode-powerplatform.${language.id}.xlf`))
|
||||
.pipe(nls.prepareJsonFiles())
|
||||
.pipe(gulp.dest(path.join("./i18n", language.folderName)));
|
||||
importTask.displayName = `Importing localization - ${language.id}`;
|
||||
return importTask;
|
||||
});
|
||||
|
||||
return gulp.parallel(...tasks, (seriesDone) => {
|
||||
seriesDone();
|
||||
done();
|
||||
})();
|
||||
}
|
||||
|
||||
function translationsGeneratePackage() {
|
||||
return gulp.src(['package.nls.json'])
|
||||
.pipe(nls.createAdditionalLanguageFiles(languages, "i18n"))
|
||||
.pipe(gulp.dest('.'));
|
||||
}
|
||||
function translationsGenerate(done) {
|
||||
return gulp.series(
|
||||
async() => translationsGeneratePackage(),
|
||||
async() => translationsGenerateSrcLocBundles(),
|
||||
(seriesDone) => {
|
||||
seriesDone();
|
||||
done();
|
||||
}
|
||||
)();
|
||||
}
|
||||
|
||||
function translationsGenerateSrcLocBundles() {
|
||||
return gulp.src('src/**/*.ts')
|
||||
.pipe(nls.createMetaDataFiles())
|
||||
// .pipe(nls.createAdditionalLanguageFiles(languages, "i18n")) // TODO, Task 2462031 once translations are available
|
||||
.pipe(nls.createAdditionalLanguageFiles(languages, "i18n"))
|
||||
.pipe(nls.bundleMetaDataFiles('ms-vscode.powerplatform', path.join('dist', 'src')))
|
||||
.pipe(nls.bundleLanguageFiles())
|
||||
.pipe(filter(['**/nls.bundle.*.json', '**/nls.metadata.header.json', '**/nls.metadata.json']))
|
||||
|
@ -272,5 +322,7 @@ exports.package = packageVsix;
|
|||
exports.ci = dist;
|
||||
exports.dist = dist;
|
||||
exports.translationsExport = translationsExport;
|
||||
exports.translationsImport = translationsImport;
|
||||
exports.translationsGenerate = translationsGenerate;
|
||||
exports.setGitAuthN = setGitAuthN;
|
||||
exports.default = compile;
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "正在准备 pac CLI (v{0})...",
|
||||
"cliAquisition.successMessage": "pac CLI 已可供在 VS Code 终端中使用!",
|
||||
"cliAquisition.installationErrorMessage": "无法安装 pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "确认",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "是否确定要清除所有身份验证配置文件?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "取消",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "创建新的 Dataverse 身份验证配置文件",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "输入环境 URL",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "确认",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "是否确定要删除身份验证配置文件 {0}-{1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "取消",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重命名身份验证配置文件",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "要为此身份验证配置文件指定的名称",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "最多允许 12 个字符"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "已启用 PAC 遥测",
|
||||
"pacCLI.enableTelemetry.failureMessage": "无法启用 PAC 遥测。",
|
||||
"pacCLI.disableTelemetry.successMessage": "已禁用 PAC 遥测",
|
||||
"pacCLI.disableTelemetry.failureMessage": "无法禁用 PAC 遥测。"
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "文档",
|
||||
"pacCLI.openPacLab.title": "打开 PAC Lab",
|
||||
"pacCLI.pacHelp.title": "显示 PAC 帮助",
|
||||
"pacCLI.pacAuthHelp.title": "显示 PAC 身份验证帮助",
|
||||
"pacCLI.pacPackageHelp.title": "显示 PAC 包帮助",
|
||||
"pacCLI.pacPcfHelp.title": "显示 PAC PCF 帮助",
|
||||
"pacCLI.pacSolutionHelp.title": "显示 PAC 解决方案帮助",
|
||||
"pacCLI.disableTelemetry.title": "禁用 PAC 遥测",
|
||||
"pacCLI.enableTelemetry.title": "启用 PAC 遥测",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "身份验证配置文件",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "在此计算机上找不到身份验证配置文件。\n[添加管理员身份验证配置文件](command:pacCLI.authPanel.newAdminAuthProfile)\n[添加 Dataverse 身份验证配置文件](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "在此计算机上找不到身份验证配置文件。\n[查看身份验证配置文件帮助](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "清除身份验证配置文件",
|
||||
"pacCLI.authPanel.refresh.title": "刷新",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新建 Dataverse 身份验证配置文件",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新建管理员身份验证配置文件",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "选择身份验证配置文件",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "删除身份验证配置文件",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重命名身份验证配置文件",
|
||||
"pacCLI.authPanel.navigateToResource.title": "导航到资源",
|
||||
"pacCLI.authPanel.copyUser.title": "复制用户",
|
||||
"pacCLI.solutionPanel.title": "解决方案",
|
||||
"pacCLI.solutionPanel.refresh.title": "刷新",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "复制友好名称",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "复制版本号",
|
||||
"pacCLI.adminEnvironmentPanel.title": "管理环境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "刷新",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "复制显示名称",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "复制环境 ID",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "复制环境 URL",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "复制组织 ID",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 门户 -> 显示预览版"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "正在準備 pac CLI (v{0})...",
|
||||
"cliAquisition.successMessage": "您已可在 VS Code 終端中使用 pac CLI!",
|
||||
"cliAquisition.installationErrorMessage": "無法安裝 pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "確認",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "確定要清除所有驗證設定檔嗎?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "取消",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "建立新的 Dataverse 驗證設定檔",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "輸入環境 URL",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "確認",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "確定要刪除驗證設定檔 {0}-{1} 嗎?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "取消",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重新命名驗證設定檔",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "您要為此驗證設定檔指定的名稱",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "最多允許 12 個字元"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "PAC 遙測已啟用",
|
||||
"pacCLI.enableTelemetry.failureMessage": "無法啟用 PAC 遙測。",
|
||||
"pacCLI.disableTelemetry.successMessage": "PAC 遙測已停用",
|
||||
"pacCLI.disableTelemetry.failureMessage": "無法停用 PAC 遙測。"
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "文件",
|
||||
"pacCLI.openPacLab.title": "開啟 PAC Lab",
|
||||
"pacCLI.pacHelp.title": "顯示 PAC 說明",
|
||||
"pacCLI.pacAuthHelp.title": "顯示 PAC 驗證説明",
|
||||
"pacCLI.pacPackageHelp.title": "顯示 PAC 套件說明",
|
||||
"pacCLI.pacPcfHelp.title": "顯示 PAC PCF 說明",
|
||||
"pacCLI.pacSolutionHelp.title": "顯示 PAC 解決方案說明",
|
||||
"pacCLI.disableTelemetry.title": "停用 PAC 遙測",
|
||||
"pacCLI.enableTelemetry.title": "啟用 PAC 遙測",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "驗證設定檔",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "在此電腦上找不到驗證設定檔。\n[新增系統管理驗證設定檔](command:pacCLI.authPanel.newAdminAuthProfile)\n[新增 Dataverse 驗證設定檔](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "在此電腦上找不到驗證設定檔。\n[檢視驗證設定檔說明](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "清除驗證設定檔",
|
||||
"pacCLI.authPanel.refresh.title": "重新整理",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新增 Dataverse 驗證設定檔",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新增系統管理驗證設定檔",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "選取驗證設定檔",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "刪除驗證設定檔",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重新命名驗證設定檔",
|
||||
"pacCLI.authPanel.navigateToResource.title": "瀏覽至資源",
|
||||
"pacCLI.authPanel.copyUser.title": "複製使用者",
|
||||
"pacCLI.solutionPanel.title": "解決方案",
|
||||
"pacCLI.solutionPanel.refresh.title": "重新整理",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "複製易記名稱",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "複製版本號碼",
|
||||
"pacCLI.adminEnvironmentPanel.title": "系統管理環境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "重新整理",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "複製顯示名稱",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "複製環境識別碼",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "複製環境 URL",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "複製組織識別碼",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 入口網站 -> 顯示預覽"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Připravuje se pac CLI (verze {0})...",
|
||||
"cliAquisition.successMessage": "Tento pac CLI je připraven k použití v terminálu editoru VS Code.",
|
||||
"cliAquisition.installationErrorMessage": "Nelze nainstalovat pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Potvrdit",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Určitě chcete vymazat všechny ověřovací profily?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Zrušit",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Vytvořit nový ověřovací profil Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Zadejte adresu URL prostředí.",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Potvrdit",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Určitě chcete odstranit ověřovací profil {0}–{1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Zrušit",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Pojmenovat nebo přejmenovat ověřovací profil",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Název, který chcete dát tomuto ověřovacímu profilu",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "Je povoleno maximálně 12 znaků."
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Telemetrie PAC je povolena.",
|
||||
"pacCLI.enableTelemetry.failureMessage": "Telemetrii PAC se nepodařilo povolit.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Telemetrie PAC je zakázána.",
|
||||
"pacCLI.disableTelemetry.failureMessage": "Telemetrii PAC se nepodařilo zakázat."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Dokumentace",
|
||||
"pacCLI.openPacLab.title": "Otevřít testovací prostředí PAC",
|
||||
"pacCLI.pacHelp.title": "Zobrazit nápovědu k PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Zobrazit nápovědu k ověřování PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Zobrazit nápovědu k balíčku PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Zobrazit nápovědu k PCF PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Zobrazit nápovědu k řešení PAC",
|
||||
"pacCLI.disableTelemetry.title": "Zakázat telemetrii PAC",
|
||||
"pacCLI.enableTelemetry.title": "Povolit telemetrii PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Ověřovací profily",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "V tomto počítači nebyly nalezeny žádné ověřovací profily.\n[Přidat ověřovací profil správce](command:pacCLI.authPanel.newAdminAuthProfile)\n[Přidat ověřovací profil Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "V tomto počítači nebyly nalezeny žádné ověřovací profily.\n[Zobrazit nápovědu k ověřovacímu profilu](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Vymazat ověřovací profily",
|
||||
"pacCLI.authPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nový ověřovací profil Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nový ověřovací profil správce",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Vybrat ověřovací profil",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Odstranit ověřovací profil",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Pojmenovat nebo přejmenovat ověřovací profil",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Přejít na zdroj",
|
||||
"pacCLI.authPanel.copyUser.title": "Zkopírovat uživatele",
|
||||
"pacCLI.solutionPanel.title": "Řešení",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Zkopírovat popisný název",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Zkopírovat číslo verze",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Prostředí pro správu",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Zkopírovat zobrazované jméno",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Zkopírovat ID prostředí",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Zkopírovat adresu URL prostředí",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Zkopírovat kód organizace",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portál PowerApps -> Zobrazit náhled"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "pac CLI (v{0}) wird vorbereitet...",
|
||||
"cliAquisition.successMessage": "Die pac CLI ist in Ihrem VS-Code-Terminal zur Verwendung bereit!",
|
||||
"cliAquisition.installationErrorMessage": "pac CLI kann nicht installiert werden: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Bestätigen",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Möchten Sie wirklich alle Authentifizierungsprofile löschen?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Abbrechen",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Neues Dataverse-Authentifizierungsprofil erstellen",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Umgebungs-URL eingeben",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Bestätigen",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Möchten Sie das Authentifizierungsprofil {0}-{1} wirklich löschen?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Abbrechen",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Authentifizierungsprofil benennen/umbenennen",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Der Name, den Sie diesem Authentifizierungsprofil geben möchten",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "Maximal 12 Zeichen zulässig"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "PAC-Telemetrie aktiviert",
|
||||
"pacCLI.enableTelemetry.failureMessage": "PAC-Telemetrie konnte nicht aktiviert werden.",
|
||||
"pacCLI.disableTelemetry.successMessage": "PAC-Telemetrie deaktiviert",
|
||||
"pacCLI.disableTelemetry.failureMessage": "PAC-Telemetrie konnte nicht deaktiviert werden."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Dokumentation",
|
||||
"pacCLI.openPacLab.title": "PAC-Labor öffnen",
|
||||
"pacCLI.pacHelp.title": "PAC-Hilfe anzeigen",
|
||||
"pacCLI.pacAuthHelp.title": "Hilfe zur PAC-Authentifizierung anzeigen",
|
||||
"pacCLI.pacPackageHelp.title": "Hilfe zum PAC-Paket anzeigen",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF-Hilfe anzeigen",
|
||||
"pacCLI.pacSolutionHelp.title": "Hilfe zur PAC-Lösung anzeigen",
|
||||
"pacCLI.disableTelemetry.title": "PAC-Telemetrie deaktivieren",
|
||||
"pacCLI.enableTelemetry.title": "PAC-Telemetrie aktivieren",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Authentifizierungsprofile",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.\n[Administrator-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.\n[Hilfe zum Authentifizierungsprofil anzeigen](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Authentifizierungsprofile löschen",
|
||||
"pacCLI.authPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Neues Dataverse-Authentifizierungsprofil",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Neues Administrator-Authentifizierungsprofil",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Authentifizierungsprofil auswählen",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Authentifizierungsprofil löschen",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Authentifizierungsprofil benennen/umbenennen",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Zur Ressource navigieren",
|
||||
"pacCLI.authPanel.copyUser.title": "Benutzer kopieren",
|
||||
"pacCLI.solutionPanel.title": "Lösungen",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Anzeigename kopieren",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Versionsnummer kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Administratorumgebungen",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Anzeigename kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Umgebungs-ID kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Umgebungs-URL kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Organisations-ID kopieren",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps-Portal -> Vorschauversion anzeigen"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Preparando pac CLI (v{0})...",
|
||||
"cliAquisition.successMessage": "¡pac CLI ya se puede usar en su terminal de VS Code!",
|
||||
"cliAquisition.installationErrorMessage": "No se puede instalar pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Confirmar",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "¿Seguro que desea borrar todos los perfiles de autenticación?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Cancelar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Crear nuevo perfil de autenticación de Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Especificar URL de entorno",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Confirmar",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "¿Seguro que desea eliminar el perfil de autenticación {0}-{1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Cancelar",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Asignar nombre/Cambiar nombre del perfil de autenticación",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Nombre que desea asignar a este perfil de autenticación",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "Se permite un máximo de 12 caracteres"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Telemetría de PAC habilitada",
|
||||
"pacCLI.enableTelemetry.failureMessage": "No se pudo habilitar la telemetría de PAC.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Telemetría de PAC deshabilitada",
|
||||
"pacCLI.disableTelemetry.failureMessage": "No se pudo deshabilitar la telemetría de PAC."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Documentación",
|
||||
"pacCLI.openPacLab.title": "Abrir laboratorio de PAC",
|
||||
"pacCLI.pacHelp.title": "Mostrar ayuda de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostrar ayuda de autenticación de PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostrar ayuda del paquete de PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostrar ayuda de PCF de PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostrar ayuda de la solución de PAC",
|
||||
"pacCLI.disableTelemetry.title": "Deshabilitar telemetría de PAC",
|
||||
"pacCLI.enableTelemetry.title": "Habilitar telemetría de PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Perfiles de autenticación",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "No se han encontrado perfiles de autenticación en este equipo.\n[Agregar perfil de autenticación de administrador](command:pacCLI.authPanel.newAdminAuthProfile)\n[Agregar perfil de autenticación de Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "No se han encontrado perfiles de autenticación en este equipo.\n[Ver ayuda de perfiles de autenticación](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Borrar perfiles de autenticación",
|
||||
"pacCLI.authPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nuevo perfil de autenticación de Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nuevo perfil de autenticación de administrador",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Seleccionar perfil de autenticación",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Eliminar perfil de autenticación",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Asignar nombre/Cambiar nombre del perfil de autenticación",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Ir a Recurso",
|
||||
"pacCLI.authPanel.copyUser.title": "Copiar usuario",
|
||||
"pacCLI.solutionPanel.title": "Soluciones",
|
||||
"pacCLI.solutionPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copiar nombre descriptivo",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copiar número de versión",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Entornos de administración",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copiar nombre para mostrar",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copiar id. de entorno",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copiar URL de entorno",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copiar id. de organización",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portal de PowerApps -> Mostrar vista previa"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Préparation de pac CLI (v{0}) en cours...",
|
||||
"cliAquisition.successMessage": "Le pac CLI est prêt à être utilisé dans votre terminal VS Code !",
|
||||
"cliAquisition.installationErrorMessage": "Impossible d’installer pac CLI : {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Confirmer",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Voulez-vous vraiment effacer tous les profils d’authentification ?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Annuler",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Créer un nouveau profil d’authentification Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Entrer l’URL de l’environnement",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Confirmer",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Voulez-vous vraiment supprimer le profil d’authentification {0}-{1} ?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Annuler",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nommer/Renommer le profil d’authentification",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Nom que vous souhaitez attribuer à ce profil d’authentification",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "12 caractères maximum autorisés"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Télémétrie PAC activée",
|
||||
"pacCLI.enableTelemetry.failureMessage": "Impossible d’activer la télémétrie PAC.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Télémétrie PAC désactivée",
|
||||
"pacCLI.disableTelemetry.failureMessage": "Impossible de désactiver la télémétrie PAC."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Documentation",
|
||||
"pacCLI.openPacLab.title": "Ouvrir le labo PAC",
|
||||
"pacCLI.pacHelp.title": "Afficher l’aide de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Afficher l’aide de l’authentification PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Afficher l’aide du package PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Afficher l’aide de PCF PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Afficher l’aide de la solution PAC",
|
||||
"pacCLI.disableTelemetry.title": "Désactiver la télémétrie PAC",
|
||||
"pacCLI.enableTelemetry.title": "Activer la télémétrie PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Profils d’authentification",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Aucun profil d’authentification trouvé sur cet ordinateur.\n[Ajouter le profil d’authentification de l’administrateur](command:pacCLI.authPanel.newAdminAuthProfile)\n[Ajouter un profil d’authentification Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Aucun profil d’authentification trouvé sur cet ordinateur.\n[Afficher l’aide des profils d’authentification](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Effacer les profils d’authentification",
|
||||
"pacCLI.authPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nouveau profil d’authentification Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nouveau profil d’authentification de l’administrateur",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Sélectionner un profil d’authentification",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Supprimer le profil d’authentification",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nommer/Renommer le profil d’authentification",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Accéder à la ressource",
|
||||
"pacCLI.authPanel.copyUser.title": "Copier l’utilisateur",
|
||||
"pacCLI.solutionPanel.title": "Solutions",
|
||||
"pacCLI.solutionPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copier le nom convivial",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copier le numéro de version",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Environnements d’administration",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copier le nom complet",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copier l’ID d’environnement",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copier l’URL de l’environnement",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copier l’ID d’organisation",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portail PowerApps -> Afficher la version préliminaire"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Preparazione di pac CLI: in corso (v{0})...",
|
||||
"cliAquisition.successMessage": "pac CLI è pronto per l'utilizzo nel terminale VS Code.",
|
||||
"cliAquisition.installationErrorMessage": "Impossibile installare pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Conferma",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Cancellare tutti i profili di autenticazione?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Annulla",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Crea nuovo profilo di autenticazione Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Immetti URL ambiente",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Conferma",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Eliminare il profilo di autenticazione {0}-{1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Annulla",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Assegna un nome/rinomina profilo di autorizzazione",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Il nome che vuoi assegnare a questo profilo di autenticazione",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "È consentito un massimo di 12 caratteri"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Telemetria PAC abilitata",
|
||||
"pacCLI.enableTelemetry.failureMessage": "Impossibile abilitare telemetria PAC.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Telemetria PAC disabilitata",
|
||||
"pacCLI.disableTelemetry.failureMessage": "Impossibile disabilitare telemetria PAC."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Documentazione",
|
||||
"pacCLI.openPacLab.title": "Apri esercitazione PAC",
|
||||
"pacCLI.pacHelp.title": "Mostra Guida PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostra la Guida per l'autenticazione PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostra la Guida del pacchetto PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostra Guida PAC PCF",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostra la Guida per la soluzione PAC",
|
||||
"pacCLI.disableTelemetry.title": "Disabilita telemetria PAC",
|
||||
"pacCLI.enableTelemetry.title": "Abilita telemetria PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Profili di autenticazione",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Nessun profilo di autenticazione trovato in questo computer.\n[Aggiungi profilo di autenticazione amministratore](command:pacCLI.authPanel.newAdminAuthProfile)\n[Aggiungi profilo di autenticazione Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Nessun profilo di autenticazione trovato in questo computer.\n[Visualizza la Guida del profilo di autenticazione](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Cancella profili di autenticazione",
|
||||
"pacCLI.authPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nuovo profilo di autenticazione Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nuovo profilo di autenticazione amministratore",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Seleziona profilo autenticazione",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Elimina profilo di autenticazione",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Assegna un nome/rinomina profilo di autorizzazione",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Passa a risorsa",
|
||||
"pacCLI.authPanel.copyUser.title": "Copia utente",
|
||||
"pacCLI.solutionPanel.title": "Soluzioni",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copia nome descrittivo",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copia numero versione",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Ambienti amministratore",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copia nome visualizzato",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copia ID ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copia URL ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copia ID organizzazione",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portale PowerApps -> Mostra anteprima"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "pac CLI (v{0}) を準備しています...",
|
||||
"cliAquisition.successMessage": "pac CLI は、VS Code ターミナルでの使用準備が完了しています。",
|
||||
"cliAquisition.installationErrorMessage": "pac CLI をインストールできません: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "確認",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "すべての認証プロファイルをクリアしますか?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "キャンセル",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新しい Dataverse 認証プロファイルの作成",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "環境 URL を入力してください",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "確認",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "認証プロファイル {0}-{1} を削除しますか?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "キャンセル",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "認証プロファイルの名前の指定/変更",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "この認証プロファイルに指定する名前",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "最大 12 文字使用可能"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "PAC テレメトリが有効になりました",
|
||||
"pacCLI.enableTelemetry.failureMessage": "PAC テレメトリを有効にできませんでした。",
|
||||
"pacCLI.disableTelemetry.successMessage": "PAC テレメトリが無効になりました",
|
||||
"pacCLI.disableTelemetry.failureMessage": "PAC テレメトリを無効にできませんでした。"
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "ドキュメント",
|
||||
"pacCLI.openPacLab.title": "PAC ラボを開く",
|
||||
"pacCLI.pacHelp.title": "PAC のヘルプを表示する",
|
||||
"pacCLI.pacAuthHelp.title": "PAC 認証のヘルプを表示する",
|
||||
"pacCLI.pacPackageHelp.title": "PAC パッケージ のヘルプを表示する",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF のヘルプを表示する",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC ソリューションのヘルプを表示する",
|
||||
"pacCLI.disableTelemetry.title": "PAC テレメトリを無効にする",
|
||||
"pacCLI.enableTelemetry.title": "PAC テレメトリを有効にする",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "認証プロファイル",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "このコンピューターには認証プロファイルが見つかりません。\n[管理者認証プロファイルの追加](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse 認証プロファイルの追加](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "このコンピューターには認証プロファイルが見つかりません。\n[認証プロファイルのヘルプを表示](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "認証プロファイルのクリア",
|
||||
"pacCLI.authPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新しい Dataverse 認証プロファイル",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新しい管理者認証プロファイル",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "認証プロファイルの選択",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "認証プロファイルの削除",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "認証プロファイルの名前の指定/変更",
|
||||
"pacCLI.authPanel.navigateToResource.title": "リソースに移動",
|
||||
"pacCLI.authPanel.copyUser.title": "ユーザーのコピー",
|
||||
"pacCLI.solutionPanel.title": "ソリューション",
|
||||
"pacCLI.solutionPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "フレンドリ名のコピー",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "バージョン番号のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.title": "管理者環境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "表示名のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "環境 ID のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "環境 URL のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "組織 ID のコピー",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps ポータル -> プレビューの表示"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "pac CLI(v{0}) 준비 중...",
|
||||
"cliAquisition.successMessage": "pac CLI를 VS 코드 터미널에 사용할 준비가 완료되었습니다!",
|
||||
"cliAquisition.installationErrorMessage": "pac CLI를 설치할 수 없습니다. {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "확인",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "모든 인증 프로필을 지우시겠습니까?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "취소",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "새 Dataverse 인증 프로필 만들기",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "환경 URL 입력",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "확인",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "인증 프로필 {0}-{1}을(를) 삭제하시겠습니까?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "취소",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "인증 프로필 이름 지정/이름 변경",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "이 인증 프로필에 지정할 이름",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "최대 12자까지 허용됩니다."
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "PAC 원격 분석 사용 설정됨",
|
||||
"pacCLI.enableTelemetry.failureMessage": "PAC 원격 분석 기능을 사용 설정하지 못했습니다.",
|
||||
"pacCLI.disableTelemetry.successMessage": "PAC 원격 분석 사용 중지됨",
|
||||
"pacCLI.disableTelemetry.failureMessage": "PAC 원격 분석 기능을 사용 중지하지 못했습니다."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "설명서",
|
||||
"pacCLI.openPacLab.title": "PAC 랩 열기",
|
||||
"pacCLI.pacHelp.title": "PAC 도움말 표시",
|
||||
"pacCLI.pacAuthHelp.title": "PAC 인증 도움말 표시",
|
||||
"pacCLI.pacPackageHelp.title": "PAC 패키지 도움말 표시",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF 도움말 표시",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC 솔루션 도움말 표시",
|
||||
"pacCLI.disableTelemetry.title": "PAC 원격 분석 사용 중지",
|
||||
"pacCLI.enableTelemetry.title": "PAC 원격 분석 사용 설정",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "인증 프로필",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "이 컴퓨터에는 인증 프로필이 없습니다.\n[관리자 인증 프로필 추가](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse 인증 프로필 추가](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "이 컴퓨터에는 인증 프로필이 없습니다.\n[인증 프로필 도움말 보기](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "인증 프로필 지우기",
|
||||
"pacCLI.authPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "새 Dataverse 인증 프로필",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "새 관리자 인증 프로필",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "인증 프로필 선택",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "인증 프로필 삭제",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "인증 프로필 이름 지정/이름 변경",
|
||||
"pacCLI.authPanel.navigateToResource.title": "리소스로 이동",
|
||||
"pacCLI.authPanel.copyUser.title": "사용자 복사",
|
||||
"pacCLI.solutionPanel.title": "솔루션",
|
||||
"pacCLI.solutionPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "식별 이름 복사",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "버전 번호 복사",
|
||||
"pacCLI.adminEnvironmentPanel.title": "관리자 환경",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "표시 이름 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "환경 ID 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "환경 URL 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "조직 ID 복사",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 포털 -> 프리뷰 보기"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Preparando a pac CLI (v{0})...",
|
||||
"cliAquisition.successMessage": "A pac CLI está pronta para uso no seu terminal do VS Code!",
|
||||
"cliAquisition.installationErrorMessage": "Não é possível instalar a pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Confirmar",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Tem certeza de que deseja limpar todos os Perfis de Autenticação?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Cancelar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Criar Perfil de Autenticação do Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Inserir URL do Ambiente",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Confirmar",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Tem certeza de que deseja excluir este Perfil de Autenticação de {0}, {1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Cancelar",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nomear/Renomear Perfil de Autenticação",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "O nome que você deseja dar a este perfil de autenticação",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "O máximo permitido são 12 caracteres"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Telemetria de PAC habilitada",
|
||||
"pacCLI.enableTelemetry.failureMessage": "Falha ao habilitar a telemetria de PAC.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Telemetria de PAC desabilitada",
|
||||
"pacCLI.disableTelemetry.failureMessage": "Falha ao desabilitar a telemetria de PAC."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Documentação",
|
||||
"pacCLI.openPacLab.title": "Abrir Laboratório de PAC",
|
||||
"pacCLI.pacHelp.title": "Mostrar Ajuda de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostrar Ajuda da Autenticação de PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostrar Ajuda do Pacote de PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostrar Ajuda de PCF de PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostrar Ajuda da Solução PAC",
|
||||
"pacCLI.disableTelemetry.title": "Desabilitar Telemetria de PAC",
|
||||
"pacCLI.enableTelemetry.title": "Habilitar Telemetria de PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Perfis de Autenticação",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Nenhum perfil de autenticação encontrado neste computador.\n[Adicionar Administrador do Perfil de Autenticação](command:pacCLI.authPanel.newAdminAuthProfile)\n[Adicionar Perfil de Autenticação do Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Nenhum perfil de autenticação encontrado neste computador.\n[Exibir Ajuda do Perfil de Autenticação](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Limpar Perfis de Autenticação",
|
||||
"pacCLI.authPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Novo Perfil de Autenticação do Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Novo Administrador do Perfil de Autenticação",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Selecionar Perfil de Autenticação",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Excluir Perfil de Autenticação",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nomear/Renomear Perfil de Autenticação",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Navegar até o Recurso",
|
||||
"pacCLI.authPanel.copyUser.title": "Copiar Usuário",
|
||||
"pacCLI.solutionPanel.title": "Soluções",
|
||||
"pacCLI.solutionPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copiar Nome Amigável",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copiar Número da Versão",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Administrar Ambientes",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copiar Nome de Exibição",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copiar ID do Ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copiar URL do Ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copiar ID da Organização",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portal do PowerApps -> Mostrar versão preliminar"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "Подготовка pac CLI (версия {0})...",
|
||||
"cliAquisition.successMessage": "Компонент pac CLI готов к использованию в терминале VS Code!",
|
||||
"cliAquisition.installationErrorMessage": "Не удается установить pac CLI: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Подтвердить",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Вы действительно хотите удалить все профили проверки подлинности?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "Отмена",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Создание профиля проверки подлинности Dataverse",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Введите URL-адрес среды",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Подтвердить",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "Вы действительно хотите удалить этот профиль проверки подлинности {0}-{1}?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "Отмена",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Установка/изменение имени профиля проверки подлинности",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Имя, которое вы хотите дать этому профилю проверки подлинности",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "Допускается не более 12 знаков"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "Телеметрия PAC включена",
|
||||
"pacCLI.enableTelemetry.failureMessage": "Не удалось включить телеметрию PAC.",
|
||||
"pacCLI.disableTelemetry.successMessage": "Телеметрия PAC отключена",
|
||||
"pacCLI.disableTelemetry.failureMessage": "Не удалось отключить телеметрию PAC."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Документация",
|
||||
"pacCLI.openPacLab.title": "Открыть лабораторию PAC",
|
||||
"pacCLI.pacHelp.title": "Показать справку по PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Показать справку по проверке подлинности в PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Показать справку по пакету PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Показать справку по PAC PCF",
|
||||
"pacCLI.pacSolutionHelp.title": "Показать справку по решению PAC",
|
||||
"pacCLI.disableTelemetry.title": "Отключить телеметрию PAC",
|
||||
"pacCLI.enableTelemetry.title": "Включить телеметрию PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Профили проверки подлинности",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "На компьютере не найдены профили проверки подлинности.\n[Добавить профиль проверки подлинности администратора](command:pacCLI.authPanel.newAdminAuthProfile)\n[Добавить профиль проверки подлинности Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "На компьютере не найдены профили проверки подлинности.\n[Открыть справку по профилям проверки подлинности](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Удаление профилей проверки подлинности",
|
||||
"pacCLI.authPanel.refresh.title": "Обновить",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Новый профиль проверки подлинности Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Новый профиль проверки подлинности администратора",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Выбор профиля проверки подлинности",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Удаление профиля проверки подлинности",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Установка/изменение имени профиля проверки подлинности",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Переход к ресурсу",
|
||||
"pacCLI.authPanel.copyUser.title": "Копировать пользователя",
|
||||
"pacCLI.solutionPanel.title": "Решения",
|
||||
"pacCLI.solutionPanel.refresh.title": "Обновить",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Копировать понятное имя",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Копировать номер версии",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Администрирование сред",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Обновить",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Копировать отображаемое имя",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Копировать ИД среды",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Копировать URL-адрес среды",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Копировать ИД организации",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Портал PowerApps -> Показать предварительную версию"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"cliAquisition.preparingMessage": "pac CLI (v{0}) hazırlanıyor...",
|
||||
"cliAquisition.successMessage": "pac CLI, VS Kod terminalinizde kullanıma hazır!",
|
||||
"cliAquisition.installationErrorMessage": "pac CLI yüklenemiyor: {0}"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.authPanel.clearAuthProfile.confirm": "Onayla",
|
||||
"pacCLI.authPanel.clearAuthProfile.prompt": "Tüm Kimlik Doğrulama Profillerini temizlemek istediğinizden emin misiniz?",
|
||||
"pacCLI.authPanel.clearAuthProfile.cancel": "İptal Et",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Yeni Dataverse Kimlik Doğrulama Profili oluşturun",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.prompt": "Ortam URL'sini girin",
|
||||
"pacCLI.authPanel.deleteAuthProfile.confirm": "Onayla",
|
||||
"pacCLI.authPanel.deleteAuthProfile.prompt": "{0}-{1} Kimlik Doğrulama Profilini silmek istediğinizden emin misiniz?",
|
||||
"pacCLI.authPanel.deleteAuthProfile.cancel": "İptal Et",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Kimlik Doğrulama Profilini Adlandır/Yeniden Adlandır",
|
||||
"pacCLI.authPanel.nameAuthProfile.prompt": "Bu kimlik doğrulama profiline vermek istediğiniz ad",
|
||||
"pacCLI.authPanel.nameAuthProfile.validation": "En fazla 12 karaktere izin verilir"
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.enableTelemetry.successMessage": "PAC Telemetrisi etkinleştirildi",
|
||||
"pacCLI.enableTelemetry.failureMessage": "PAC telemetrisi etkinleştirilmedi.",
|
||||
"pacCLI.disableTelemetry.successMessage": "PAC Telemetrisi devre dışı bırakıldı",
|
||||
"pacCLI.disableTelemetry.failureMessage": "PAC telemetrisi devre dışı bırakılamadı."
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"pacCLI.openDocumentation.title": "Belgeler",
|
||||
"pacCLI.openPacLab.title": "PAC Lab'i Aç",
|
||||
"pacCLI.pacHelp.title": "PAC Yardımını Göster",
|
||||
"pacCLI.pacAuthHelp.title": "PAC Kimlik Doğrulama Yardımını Göster",
|
||||
"pacCLI.pacPackageHelp.title": "PAC Paketi Yardımını Göster",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF Yardımını Göster",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC Çözümü Yardımını Göster",
|
||||
"pacCLI.disableTelemetry.title": "PAC Telemetrisini Devre Dışı Bırak",
|
||||
"pacCLI.enableTelemetry.title": "PAC telemetrisini etkinleştir",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Kimlik Doğrulama Profilleri",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.\n[Yönetici Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.\n[Kimlik Doğrulama Profili Yardımını Görüntüle](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Kimlik Doğrulama Profillerini Temizle",
|
||||
"pacCLI.authPanel.refresh.title": "Yenile",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Yeni Dataverse Kimlik Doğrulama Profili",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Yeni Yönetici Kimlik Doğrulama Profili",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Kimlik Doğrulama Profili Seçin",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Kimlik Doğrulama Profilini Sil",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Kimlik Doğrulama Profilini Adlandır/Yeniden Adlandır",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Kaynağa Git",
|
||||
"pacCLI.authPanel.copyUser.title": "Kullanıcıyı Kopyala",
|
||||
"pacCLI.solutionPanel.title": "Çözümler",
|
||||
"pacCLI.solutionPanel.refresh.title": "Yenile",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Kolay Adı Kopyala",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Sürüm Numarasını Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Yönetici Ortamları",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Yenile",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Görünen Adı Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Ortam Kimliğini Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Ortam URL'sini Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Kuruluş Kimliğini Kopyala",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps Portal -> Önizlemeyi göster"
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
Placeholder - place the translated XLF files in this directory.
|
||||
They will be imported as part of the build process with Task 2462031: Localization - Import translated XLF files
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="cs">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Dokumentace</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Otevřít testovací prostředí PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Zobrazit nápovědu k PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Zobrazit nápovědu k ověřování PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Zobrazit nápovědu k balíčku PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Zobrazit nápovědu k PCF PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Zobrazit nápovědu k řešení PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Zakázat telemetrii PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Povolit telemetrii PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Ověřovací profily</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">V tomto počítači nebyly nalezeny žádné ověřovací profily.
|
||||
[Přidat ověřovací profil správce](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Přidat ověřovací profil Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">V tomto počítači nebyly nalezeny žádné ověřovací profily.
|
||||
[Zobrazit nápovědu k ověřovacímu profilu](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Vymazat ověřovací profily</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualizovat</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Nový ověřovací profil Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Nový ověřovací profil správce</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Vybrat ověřovací profil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Odstranit ověřovací profil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Pojmenovat nebo přejmenovat ověřovací profil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Přejít na zdroj</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Zkopírovat uživatele</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Řešení</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualizovat</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Zkopírovat popisný název</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Zkopírovat číslo verze</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Prostředí pro správu</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualizovat</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Zkopírovat zobrazované jméno</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Zkopírovat ID prostředí</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Zkopírovat adresu URL prostředí</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Zkopírovat kód organizace</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Portál PowerApps -> Zobrazit náhled</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="cs">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Připravuje se pac CLI (verze {0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">Tento pac CLI je připraven k použití v terminálu editoru VS Code.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">Nelze nainstalovat pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="cs">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Potvrdit</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Určitě chcete vymazat všechny ověřovací profily?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Zrušit</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Vytvořit nový ověřovací profil Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Zadejte adresu URL prostředí.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Potvrdit</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Určitě chcete odstranit ověřovací profil {0}–{1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Zrušit</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Pojmenovat nebo přejmenovat ověřovací profil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Název, který chcete dát tomuto ověřovacímu profilu</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">Je povoleno maximálně 12 znaků.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="cs">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Telemetrie PAC je povolena.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">Telemetrii PAC se nepodařilo povolit.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Telemetrie PAC je zakázána.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">Telemetrii PAC se nepodařilo zakázat.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="de">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Dokumentation</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">PAC-Labor öffnen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">PAC-Hilfe anzeigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Hilfe zur PAC-Authentifizierung anzeigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Hilfe zum PAC-Paket anzeigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">PAC PCF-Hilfe anzeigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Hilfe zur PAC-Lösung anzeigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">PAC-Telemetrie deaktivieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">PAC-Telemetrie aktivieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Authentifizierungsprofile</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.
|
||||
[Administrator-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Dataverse-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.
|
||||
[Hilfe zum Authentifizierungsprofil anzeigen](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Authentifizierungsprofile löschen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualisieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Neues Dataverse-Authentifizierungsprofil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Neues Administrator-Authentifizierungsprofil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Authentifizierungsprofil auswählen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Authentifizierungsprofil löschen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Authentifizierungsprofil benennen/umbenennen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Zur Ressource navigieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Benutzer kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Lösungen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualisieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Anzeigename kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Versionsnummer kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Administratorumgebungen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aktualisieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Anzeigename kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Umgebungs-ID kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Umgebungs-URL kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Organisations-ID kopieren</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps-Portal -> Vorschauversion anzeigen</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="de">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">pac CLI (v{0}) wird vorbereitet...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">Die pac CLI ist in Ihrem VS-Code-Terminal zur Verwendung bereit!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">pac CLI kann nicht installiert werden: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="de">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Bestätigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Möchten Sie wirklich alle Authentifizierungsprofile löschen?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Abbrechen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Neues Dataverse-Authentifizierungsprofil erstellen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Umgebungs-URL eingeben</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Bestätigen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Möchten Sie das Authentifizierungsprofil {0}-{1} wirklich löschen?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Abbrechen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Authentifizierungsprofil benennen/umbenennen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Der Name, den Sie diesem Authentifizierungsprofil geben möchten</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">Maximal 12 Zeichen zulässig</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="de">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">PAC-Telemetrie aktiviert</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">PAC-Telemetrie konnte nicht aktiviert werden.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">PAC-Telemetrie deaktiviert</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">PAC-Telemetrie konnte nicht deaktiviert werden.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="es">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Documentación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Abrir laboratorio de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Mostrar ayuda de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Mostrar ayuda de autenticación de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Mostrar ayuda del paquete de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Mostrar ayuda de PCF de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Mostrar ayuda de la solución de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Deshabilitar telemetría de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Habilitar telemetría de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Perfiles de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">No se han encontrado perfiles de autenticación en este equipo.
|
||||
[Agregar perfil de autenticación de administrador](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Agregar perfil de autenticación de Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">No se han encontrado perfiles de autenticación en este equipo.
|
||||
[Ver ayuda de perfiles de autenticación](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Borrar perfiles de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Nuevo perfil de autenticación de Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Nuevo perfil de autenticación de administrador</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Seleccionar perfil de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Eliminar perfil de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Asignar nombre/Cambiar nombre del perfil de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Ir a Recurso</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Copiar usuario</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Soluciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Copiar nombre descriptivo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Copiar número de versión</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Entornos de administración</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Copiar nombre para mostrar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Copiar id. de entorno</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Copiar URL de entorno</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Copiar id. de organización</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Portal de PowerApps -> Mostrar vista previa</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="es">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Preparando pac CLI (v{0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">¡pac CLI ya se puede usar en su terminal de VS Code!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">No se puede instalar pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="es">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">¿Seguro que desea borrar todos los perfiles de autenticación?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Cancelar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Crear nuevo perfil de autenticación de Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Especificar URL de entorno</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">¿Seguro que desea eliminar el perfil de autenticación {0}-{1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Cancelar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Asignar nombre/Cambiar nombre del perfil de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Nombre que desea asignar a este perfil de autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">Se permite un máximo de 12 caracteres</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="es">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Telemetría de PAC habilitada</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">No se pudo habilitar la telemetría de PAC.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Telemetría de PAC deshabilitada</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">No se pudo deshabilitar la telemetría de PAC.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="fr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Documentation</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Ouvrir le labo PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Afficher l’aide de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Afficher l’aide de l’authentification PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Afficher l’aide du package PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Afficher l’aide de PCF PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Afficher l’aide de la solution PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Désactiver la télémétrie PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Activer la télémétrie PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Profils d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Aucun profil d’authentification trouvé sur cet ordinateur.
|
||||
[Ajouter le profil d’authentification de l’administrateur](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Ajouter un profil d’authentification Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Aucun profil d’authentification trouvé sur cet ordinateur.
|
||||
[Afficher l’aide des profils d’authentification](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Effacer les profils d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualiser</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Nouveau profil d’authentification Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Nouveau profil d’authentification de l’administrateur</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Sélectionner un profil d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Supprimer le profil d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Nommer/Renommer le profil d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Accéder à la ressource</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Copier l’utilisateur</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Solutions</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualiser</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Copier le nom convivial</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Copier le numéro de version</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Environnements d’administration</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Actualiser</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Copier le nom complet</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Copier l’ID d’environnement</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Copier l’URL de l’environnement</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Copier l’ID d’organisation</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Portail PowerApps -> Afficher la version préliminaire</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="fr">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Préparation de pac CLI (v{0}) en cours...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">Le pac CLI est prêt à être utilisé dans votre terminal VS Code !</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">Impossible d’installer pac CLI : {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="fr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmer</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Voulez-vous vraiment effacer tous les profils d’authentification ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Annuler</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Créer un nouveau profil d’authentification Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Entrer l’URL de l’environnement</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmer</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Voulez-vous vraiment supprimer le profil d’authentification {0}-{1} ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Annuler</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Nommer/Renommer le profil d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Nom que vous souhaitez attribuer à ce profil d’authentification</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">12 caractères maximum autorisés</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="fr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Télémétrie PAC activée</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">Impossible d’activer la télémétrie PAC.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Télémétrie PAC désactivée</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">Impossible de désactiver la télémétrie PAC.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="it">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Documentazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Apri esercitazione PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Mostra Guida PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Mostra la Guida per l'autenticazione PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Mostra la Guida del pacchetto PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Mostra Guida PAC PCF</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Mostra la Guida per la soluzione PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Disabilita telemetria PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Abilita telemetria PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Profili di autenticazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Nessun profilo di autenticazione trovato in questo computer.
|
||||
[Aggiungi profilo di autenticazione amministratore](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Aggiungi profilo di autenticazione Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Nessun profilo di autenticazione trovato in questo computer.
|
||||
[Visualizza la Guida del profilo di autenticazione](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Cancella profili di autenticazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aggiorna</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Nuovo profilo di autenticazione Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Nuovo profilo di autenticazione amministratore</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Seleziona profilo autenticazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Elimina profilo di autenticazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Assegna un nome/rinomina profilo di autorizzazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Passa a risorsa</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Copia utente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Soluzioni</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aggiorna</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Copia nome descrittivo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Copia numero versione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Ambienti amministratore</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Aggiorna</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Copia nome visualizzato</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Copia ID ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Copia URL ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Copia ID organizzazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Portale PowerApps -> Mostra anteprima</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="it">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Preparazione di pac CLI: in corso (v{0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">pac CLI è pronto per l'utilizzo nel terminale VS Code.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">Impossibile installare pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="it">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Conferma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Cancellare tutti i profili di autenticazione?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Annulla</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Crea nuovo profilo di autenticazione Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Immetti URL ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Conferma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Eliminare il profilo di autenticazione {0}-{1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Annulla</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Assegna un nome/rinomina profilo di autorizzazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Il nome che vuoi assegnare a questo profilo di autenticazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">È consentito un massimo di 12 caratteri</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="it">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Telemetria PAC abilitata</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">Impossibile abilitare telemetria PAC.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Telemetria PAC disabilitata</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">Impossibile disabilitare telemetria PAC.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="ja">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">ドキュメント</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">PAC ラボを開く</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">PAC のヘルプを表示する</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">PAC 認証のヘルプを表示する</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">PAC パッケージ のヘルプを表示する</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">PAC PCF のヘルプを表示する</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">PAC ソリューションのヘルプを表示する</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">PAC テレメトリを無効にする</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">PAC テレメトリを有効にする</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">認証プロファイル</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">このコンピューターには認証プロファイルが見つかりません。
|
||||
[管理者認証プロファイルの追加](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Dataverse 認証プロファイルの追加](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">このコンピューターには認証プロファイルが見つかりません。
|
||||
[認証プロファイルのヘルプを表示](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">認証プロファイルのクリア</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">最新の情報に更新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">新しい Dataverse 認証プロファイル</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">新しい管理者認証プロファイル</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">認証プロファイルの選択</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">認証プロファイルの削除</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">認証プロファイルの名前の指定/変更</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">リソースに移動</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">ユーザーのコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">ソリューション</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">最新の情報に更新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">フレンドリ名のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">バージョン番号のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">管理者環境</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">最新の情報に更新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">表示名のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">環境 ID のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">環境 URL のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">組織 ID のコピー</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps ポータル -> プレビューの表示</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="ja">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">pac CLI (v{0}) を準備しています...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">pac CLI は、VS Code ターミナルでの使用準備が完了しています。</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">pac CLI をインストールできません: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="ja">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">確認</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">すべての認証プロファイルをクリアしますか?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">キャンセル</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">新しい Dataverse 認証プロファイルの作成</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">環境 URL を入力してください</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">確認</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">認証プロファイル {0}-{1} を削除しますか?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">キャンセル</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">認証プロファイルの名前の指定/変更</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">この認証プロファイルに指定する名前</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">最大 12 文字使用可能</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="ja">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">PAC テレメトリが有効になりました</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">PAC テレメトリを有効にできませんでした。</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">PAC テレメトリが無効になりました</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">PAC テレメトリを無効にできませんでした。</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="ko">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">설명서</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">PAC 랩 열기</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">PAC 도움말 표시</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">PAC 인증 도움말 표시</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">PAC 패키지 도움말 표시</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">PAC PCF 도움말 표시</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">PAC 솔루션 도움말 표시</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">PAC 원격 분석 사용 중지</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">PAC 원격 분석 사용 설정</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">인증 프로필</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">이 컴퓨터에는 인증 프로필이 없습니다.
|
||||
[관리자 인증 프로필 추가](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Dataverse 인증 프로필 추가](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">이 컴퓨터에는 인증 프로필이 없습니다.
|
||||
[인증 프로필 도움말 보기](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">인증 프로필 지우기</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">새로 고침</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">새 Dataverse 인증 프로필</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">새 관리자 인증 프로필</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">인증 프로필 선택</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">인증 프로필 삭제</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">인증 프로필 이름 지정/이름 변경</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">리소스로 이동</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">사용자 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">솔루션</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">새로 고침</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">식별 이름 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">버전 번호 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">관리자 환경</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">새로 고침</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">표시 이름 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">환경 ID 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">환경 URL 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">조직 ID 복사</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps 포털 -> 프리뷰 보기</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="ko">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">pac CLI(v{0}) 준비 중...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">pac CLI를 VS 코드 터미널에 사용할 준비가 완료되었습니다!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">pac CLI를 설치할 수 없습니다. {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="ko">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">확인</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">모든 인증 프로필을 지우시겠습니까?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">취소</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">새 Dataverse 인증 프로필 만들기</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">환경 URL 입력</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">확인</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">인증 프로필 {0}-{1}을(를) 삭제하시겠습니까?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">취소</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">인증 프로필 이름 지정/이름 변경</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">이 인증 프로필에 지정할 이름</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">최대 12자까지 허용됩니다.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="ko">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">PAC 원격 분석 사용 설정됨</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">PAC 원격 분석 기능을 사용 설정하지 못했습니다.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">PAC 원격 분석 사용 중지됨</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">PAC 원격 분석 기능을 사용 중지하지 못했습니다.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="pt-BR">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Documentação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Abrir Laboratório de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Mostrar Ajuda de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Mostrar Ajuda da Autenticação de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Mostrar Ajuda do Pacote de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Mostrar Ajuda de PCF de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Mostrar Ajuda da Solução PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Desabilitar Telemetria de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Habilitar Telemetria de PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Perfis de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Nenhum perfil de autenticação encontrado neste computador.
|
||||
[Adicionar Administrador do Perfil de Autenticação](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Adicionar Perfil de Autenticação do Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Nenhum perfil de autenticação encontrado neste computador.
|
||||
[Exibir Ajuda do Perfil de Autenticação](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Limpar Perfis de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Atualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Novo Perfil de Autenticação do Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Novo Administrador do Perfil de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Selecionar Perfil de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Excluir Perfil de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Nomear/Renomear Perfil de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Navegar até o Recurso</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Copiar Usuário</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Soluções</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Atualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Copiar Nome Amigável</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Copiar Número da Versão</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Administrar Ambientes</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Atualizar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Copiar Nome de Exibição</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Copiar ID do Ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Copiar URL do Ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Copiar ID da Organização</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Portal do PowerApps -> Mostrar versão preliminar</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="pt-BR">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Preparando a pac CLI (v{0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">A pac CLI está pronta para uso no seu terminal do VS Code!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">Não é possível instalar a pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="pt-BR">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Tem certeza de que deseja limpar todos os Perfis de Autenticação?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Cancelar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Criar Perfil de Autenticação do Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Inserir URL do Ambiente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Confirmar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Tem certeza de que deseja excluir este Perfil de Autenticação de {0}, {1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Cancelar</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Nomear/Renomear Perfil de Autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">O nome que você deseja dar a este perfil de autenticação</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">O máximo permitido são 12 caracteres</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="pt-BR">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Telemetria de PAC habilitada</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">Falha ao habilitar a telemetria de PAC.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Telemetria de PAC desabilitada</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">Falha ao desabilitar a telemetria de PAC.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="ru">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Документация</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">Открыть лабораторию PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">Показать справку по PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">Показать справку по проверке подлинности в PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">Показать справку по пакету PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">Показать справку по PAC PCF</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">Показать справку по решению PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">Отключить телеметрию PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">Включить телеметрию PAC</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Профили проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">На компьютере не найдены профили проверки подлинности.
|
||||
[Добавить профиль проверки подлинности администратора](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Добавить профиль проверки подлинности Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">На компьютере не найдены профили проверки подлинности.
|
||||
[Открыть справку по профилям проверки подлинности](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Удаление профилей проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Обновить</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Новый профиль проверки подлинности Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Новый профиль проверки подлинности администратора</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Выбор профиля проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Удаление профиля проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Установка/изменение имени профиля проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Переход к ресурсу</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Копировать пользователя</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Решения</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Обновить</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Копировать понятное имя</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Копировать номер версии</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Администрирование сред</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Обновить</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Копировать отображаемое имя</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Копировать ИД среды</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Копировать URL-адрес среды</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Копировать ИД организации</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">Портал PowerApps -> Показать предварительную версию</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="ru">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">Подготовка pac CLI (версия {0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">Компонент pac CLI готов к использованию в терминале VS Code!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">Не удается установить pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="ru">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Подтвердить</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Вы действительно хотите удалить все профили проверки подлинности?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Отмена</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Создание профиля проверки подлинности Dataverse</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Введите URL-адрес среды</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Подтвердить</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">Вы действительно хотите удалить этот профиль проверки подлинности {0}-{1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">Отмена</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Установка/изменение имени профиля проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Имя, которое вы хотите дать этому профилю проверки подлинности</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">Допускается не более 12 знаков</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="ru">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">Телеметрия PAC включена</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">Не удалось включить телеметрию PAC.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">Телеметрия PAC отключена</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">Не удалось отключить телеметрию PAC.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="tr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">Belgeler</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">PAC Lab'i Aç</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">PAC Yardımını Göster</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">PAC Kimlik Doğrulama Yardımını Göster</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">PAC Paketi Yardımını Göster</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">PAC PCF Yardımını Göster</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">PAC Çözümü Yardımını Göster</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">PAC Telemetrisini Devre Dışı Bırak</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">PAC telemetrisini etkinleştir</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">Kimlik Doğrulama Profilleri</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.
|
||||
[Yönetici Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Dataverse Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.
|
||||
[Kimlik Doğrulama Profili Yardımını Görüntüle](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">Kimlik Doğrulama Profillerini Temizle</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Yenile</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">Yeni Dataverse Kimlik Doğrulama Profili</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">Yeni Yönetici Kimlik Doğrulama Profili</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">Kimlik Doğrulama Profili Seçin</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">Kimlik Doğrulama Profilini Sil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Kimlik Doğrulama Profilini Adlandır/Yeniden Adlandır</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">Kaynağa Git</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">Kullanıcıyı Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">Çözümler</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Yenile</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">Kolay Adı Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">Sürüm Numarasını Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">Yönetici Ortamları</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">Yenile</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">Görünen Adı Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">Ortam Kimliğini Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">Ortam URL'sini Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">Kuruluş Kimliğini Kopyala</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps Portal -> Önizlemeyi göster</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="tr">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">pac CLI (v{0}) hazırlanıyor...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">pac CLI, VS Kod terminalinizde kullanıma hazır!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">pac CLI yüklenemiyor: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="tr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Onayla</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">Tüm Kimlik Doğrulama Profillerini temizlemek istediğinizden emin misiniz?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">İptal Et</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">Yeni Dataverse Kimlik Doğrulama Profili oluşturun</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">Ortam URL'sini girin</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">Onayla</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">{0}-{1} Kimlik Doğrulama Profilini silmek istediğinizden emin misiniz?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">İptal Et</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">Kimlik Doğrulama Profilini Adlandır/Yeniden Adlandır</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">Bu kimlik doğrulama profiline vermek istediğiniz ad</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">En fazla 12 karaktere izin verilir</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="tr">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">PAC Telemetrisi etkinleştirildi</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">PAC telemetrisi etkinleştirilmedi.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">PAC Telemetrisi devre dışı bırakıldı</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">PAC telemetrisi devre dışı bırakılamadı.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="zh-CN">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">文档</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">打开 PAC Lab</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">显示 PAC 帮助</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">显示 PAC 身份验证帮助</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">显示 PAC 包帮助</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">显示 PAC PCF 帮助</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">显示 PAC 解决方案帮助</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">禁用 PAC 遥测</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">启用 PAC 遥测</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">在此计算机上找不到身份验证配置文件。
|
||||
[添加管理员身份验证配置文件](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[添加 Dataverse 身份验证配置文件](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">在此计算机上找不到身份验证配置文件。
|
||||
[查看身份验证配置文件帮助](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">清除身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">刷新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">新建 Dataverse 身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">新建管理员身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">选择身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">删除身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">命名/重命名身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">导航到资源</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">复制用户</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">解决方案</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">刷新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">复制友好名称</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">复制版本号</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">管理环境</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">刷新</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">复制显示名称</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">复制环境 ID</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">复制环境 URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">复制组织 ID</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps 门户 -> 显示预览版</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="zh-CN">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">正在准备 pac CLI (v{0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">pac CLI 已可供在 VS Code 终端中使用!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">无法安装 pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="zh-CN">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">确认</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">是否确定要清除所有身份验证配置文件?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">取消</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">创建新的 Dataverse 身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">输入环境 URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">确认</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">是否确定要删除身份验证配置文件 {0}-{1}?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">取消</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">命名/重命名身份验证配置文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">要为此身份验证配置文件指定的名称</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">最多允许 12 个字符</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="zh-CN">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">已启用 PAC 遥测</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">无法启用 PAC 遥测。</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">已禁用 PAC 遥测</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">无法禁用 PAC 遥测。</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<file original="package" source-language="en" datatype="plaintext" target-language="zh-TW">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.openDocumentation.title">
|
||||
<source xml:lang="en">Documentation</source>
|
||||
<target state="translated">文件</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.openPacLab.title">
|
||||
<source xml:lang="en">Open PAC Lab</source>
|
||||
<target state="translated">開啟 PAC Lab</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacHelp.title">
|
||||
<source xml:lang="en">Show PAC Help</source>
|
||||
<target state="translated">顯示 PAC 說明</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacAuthHelp.title">
|
||||
<source xml:lang="en">Show PAC Authentication Help</source>
|
||||
<target state="translated">顯示 PAC 驗證説明</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPackageHelp.title">
|
||||
<source xml:lang="en">Show PAC Package Help</source>
|
||||
<target state="translated">顯示 PAC 套件說明</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacPcfHelp.title">
|
||||
<source xml:lang="en">Show PAC PCF Help</source>
|
||||
<target state="translated">顯示 PAC PCF 說明</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.pacSolutionHelp.title">
|
||||
<source xml:lang="en">Show PAC Solution Help</source>
|
||||
<target state="translated">顯示 PAC 解決方案說明</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.title">
|
||||
<source xml:lang="en">Disable PAC Telemetry</source>
|
||||
<target state="translated">停用 PAC 遙測</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.title">
|
||||
<source xml:lang="en">Enable PAC telemetry</source>
|
||||
<target state="translated">啟用 PAC 遙測</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="power-platform-activitybar.title">
|
||||
<source xml:lang="en">Power Platform</source>
|
||||
<target state="translated">Power Platform</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.title">
|
||||
<source xml:lang="en">Auth Profiles</source>
|
||||
<target state="translated">驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[Add Admin Auth Profile](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[Add Dataverse Auth Profile](command:pacCLI.authPanel.newDataverseAuthProfile)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newAdminAuthProfile)', keeping brackets and the text in the parentheses unmodified
|
||||
The third line should be '[TRANSLATION HERE](command:pacCLI.authPanel.newDataverseAuthProfile)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">在此電腦上找不到驗證設定檔。
|
||||
[新增系統管理驗證設定檔](command:pacCLI.authPanel.newAdminAuthProfile)
|
||||
[新增 Dataverse 驗證設定檔](command:pacCLI.authPanel.newDataverseAuthProfile)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.welcome.whenInteractiveNotSupported">
|
||||
<source xml:lang="en">No auth profiles found on this computer.
|
||||
[View Auth Profile Help](command:pacCLI.pacAuthHelp)</source>
|
||||
<note>This is a Markdown formatted string, and the formatting must persist across translations.
|
||||
The second line should be '[TRANSLATION HERE](command:pacCLI.pacAuthHelp)', keeping brackets and the text in the parentheses unmodified</note>
|
||||
<target state="translated">在此電腦上找不到驗證設定檔。
|
||||
[檢視驗證設定檔說明](command:pacCLI.pacAuthHelp)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.title">
|
||||
<source xml:lang="en">Clear Auth Profiles</source>
|
||||
<target state="translated">清除驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">重新整理</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">New Dataverse Auth Profile</source>
|
||||
<target state="translated">新增 Dataverse 驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newAdminAuthProfile.title">
|
||||
<source xml:lang="en">New Admin Auth Profile</source>
|
||||
<target state="translated">新增系統管理驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.selectAuthProfile.title">
|
||||
<source xml:lang="en">Select Auth Profile</source>
|
||||
<target state="translated">選取驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.title">
|
||||
<source xml:lang="en">Delete Auth Profile</source>
|
||||
<target state="translated">刪除驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">命名/重新命名驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.navigateToResource.title">
|
||||
<source xml:lang="en">Navigate to Resource</source>
|
||||
<target state="translated">瀏覽至資源</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.copyUser.title">
|
||||
<source xml:lang="en">Copy User</source>
|
||||
<target state="translated">複製使用者</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.title">
|
||||
<source xml:lang="en">Solutions</source>
|
||||
<target state="translated">解決方案</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">重新整理</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyFriendlyName.title">
|
||||
<source xml:lang="en">Copy Friendly Name</source>
|
||||
<target state="translated">複製易記名稱</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.solutionPanel.copyVersionNumber.title">
|
||||
<source xml:lang="en">Copy Version Number</source>
|
||||
<target state="translated">複製版本號碼</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.title">
|
||||
<source xml:lang="en">Admin Environments</source>
|
||||
<target state="translated">系統管理環境</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.refresh.title">
|
||||
<source xml:lang="en">Refresh</source>
|
||||
<target state="translated">重新整理</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyDisplayName.title">
|
||||
<source xml:lang="en">Copy Display Name</source>
|
||||
<target state="translated">複製顯示名稱</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentId.title">
|
||||
<source xml:lang="en">Copy Environment Id</source>
|
||||
<target state="translated">複製環境識別碼</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title">
|
||||
<source xml:lang="en">Copy Environment Url</source>
|
||||
<target state="translated">複製環境 URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.adminEnvironmentPanel.copyOrganizationId.title">
|
||||
<source xml:lang="en">Copy Organization Id</source>
|
||||
<target state="translated">複製組織識別碼</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="microsoft-powerapps-portals.preview-show.title">
|
||||
<source xml:lang="en">PowerApps Portal -> Show preview</source>
|
||||
<target state="translated">PowerApps 入口網站 -> 顯示預覽</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/CliAcquisition" source-language="en" datatype="plaintext" target-language="zh-TW">
|
||||
<body>
|
||||
<trans-unit id="cliAquisition.preparingMessage">
|
||||
<source xml:lang="en">Preparing pac CLI (v{0})...</source>
|
||||
<note>{0} represents the version number</note>
|
||||
<target state="translated">正在準備 pac CLI (v{0})...</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.successMessage">
|
||||
<source xml:lang="en">The pac CLI is ready for use in your VS Code terminal!</source>
|
||||
<target state="translated">您已可在 VS Code 終端中使用 pac CLI!</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cliAquisition.installationErrorMessage">
|
||||
<source xml:lang="en">Cannot install pac CLI: {0}</source>
|
||||
<note>{0} represents the error message returned from the exception</note>
|
||||
<target state="translated">無法安裝 pac CLI: {0}</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacActivityBarUI" source-language="en" datatype="plaintext" target-language="zh-TW">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">確認</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to clear all the Auth Profiles?</source>
|
||||
<target state="translated">確定要清除所有驗證設定檔嗎?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.clearAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">取消</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.title">
|
||||
<source xml:lang="en">Create new Dataverse Auth Profile</source>
|
||||
<target state="translated">建立新的 Dataverse 驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.newDataverseAuthProfile.prompt">
|
||||
<source xml:lang="en">Enter Environment URL</source>
|
||||
<target state="translated">輸入環境 URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.confirm">
|
||||
<source xml:lang="en">Confirm</source>
|
||||
<target state="translated">確認</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.prompt">
|
||||
<source xml:lang="en">Are you sure you want to delete the Auth Profile {0}-{1}?</source>
|
||||
<note>{0} is the user name, {1} is the URL of environment of the auth profile</note>
|
||||
<target state="translated">確定要刪除驗證設定檔 {0}-{1} 嗎?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.deleteAuthProfile.cancel">
|
||||
<source xml:lang="en">Cancel</source>
|
||||
<target state="translated">取消</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.title">
|
||||
<source xml:lang="en">Name/Rename Auth Profile</source>
|
||||
<target state="translated">命名/重新命名驗證設定檔</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.prompt">
|
||||
<source xml:lang="en">The name you want to give to this authentication profile</source>
|
||||
<target state="translated">您要為此驗證設定檔指定的名稱</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.authPanel.nameAuthProfile.validation">
|
||||
<source xml:lang="en">Maximum 12 characters allowed</source>
|
||||
<target state="translated">最多允許 12 個字元</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
<file original="./client/lib/PacTerminal" source-language="en" datatype="plaintext" target-language="zh-TW">
|
||||
<body>
|
||||
<trans-unit id="pacCLI.enableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry enabled</source>
|
||||
<target state="translated">PAC 遙測已啟用</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.enableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to enable PAC telemetry.</source>
|
||||
<target state="translated">無法啟用 PAC 遙測。</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.successMessage">
|
||||
<source xml:lang="en">PAC Telemetry disabled</source>
|
||||
<target state="translated">PAC 遙測已停用</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pacCLI.disableTelemetry.failureMessage">
|
||||
<source xml:lang="en">Failed to disable PAC telemetry.</source>
|
||||
<target state="translated">無法停用 PAC 遙測。</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -10,6 +10,8 @@
|
|||
"ci": "node node_modules/gulp/bin/gulp.js ci",
|
||||
"dist": "node node_modules/gulp/bin/gulp.js dist",
|
||||
"translations-export": "node node_modules/gulp/bin/gulp.js translationsExport",
|
||||
"translations-import": "node node_modules/gulp/bin/gulp.js translationsImport",
|
||||
"translations-generate": "node node_modules/gulp/bin/gulp.js translationsGenerate",
|
||||
"set-git-authn": "node node_modules/gulp/bin/gulp.js setGitAuthN",
|
||||
"increment-version": "node node_modules/release-it/bin/release-it --increment patch --ci -VV",
|
||||
"increment-version-npm": "npm version %VSIX_VERSION%",
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Dokumentace",
|
||||
"pacCLI.openPacLab.title": "Otevřít testovací prostředí PAC",
|
||||
"pacCLI.pacHelp.title": "Zobrazit nápovědu k PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Zobrazit nápovědu k ověřování PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Zobrazit nápovědu k balíčku PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Zobrazit nápovědu k PCF PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Zobrazit nápovědu k řešení PAC",
|
||||
"pacCLI.disableTelemetry.title": "Zakázat telemetrii PAC",
|
||||
"pacCLI.enableTelemetry.title": "Povolit telemetrii PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Ověřovací profily",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "V tomto počítači nebyly nalezeny žádné ověřovací profily.\n[Přidat ověřovací profil správce](command:pacCLI.authPanel.newAdminAuthProfile)\n[Přidat ověřovací profil Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "V tomto počítači nebyly nalezeny žádné ověřovací profily.\n[Zobrazit nápovědu k ověřovacímu profilu](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Vymazat ověřovací profily",
|
||||
"pacCLI.authPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nový ověřovací profil Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nový ověřovací profil správce",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Vybrat ověřovací profil",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Odstranit ověřovací profil",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Pojmenovat nebo přejmenovat ověřovací profil",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Přejít na zdroj",
|
||||
"pacCLI.authPanel.copyUser.title": "Zkopírovat uživatele",
|
||||
"pacCLI.solutionPanel.title": "Řešení",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Zkopírovat popisný název",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Zkopírovat číslo verze",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Prostředí pro správu",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aktualizovat",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Zkopírovat zobrazované jméno",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Zkopírovat ID prostředí",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Zkopírovat adresu URL prostředí",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Zkopírovat kód organizace",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portál PowerApps -> Zobrazit náhled"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Dokumentation",
|
||||
"pacCLI.openPacLab.title": "PAC-Labor öffnen",
|
||||
"pacCLI.pacHelp.title": "PAC-Hilfe anzeigen",
|
||||
"pacCLI.pacAuthHelp.title": "Hilfe zur PAC-Authentifizierung anzeigen",
|
||||
"pacCLI.pacPackageHelp.title": "Hilfe zum PAC-Paket anzeigen",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF-Hilfe anzeigen",
|
||||
"pacCLI.pacSolutionHelp.title": "Hilfe zur PAC-Lösung anzeigen",
|
||||
"pacCLI.disableTelemetry.title": "PAC-Telemetrie deaktivieren",
|
||||
"pacCLI.enableTelemetry.title": "PAC-Telemetrie aktivieren",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Authentifizierungsprofile",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.\n[Administrator-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse-Authentifizierungsprofil hinzufügen](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Auf diesem Computer wurden keine Authentifizierungsprofile gefunden.\n[Hilfe zum Authentifizierungsprofil anzeigen](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Authentifizierungsprofile löschen",
|
||||
"pacCLI.authPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Neues Dataverse-Authentifizierungsprofil",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Neues Administrator-Authentifizierungsprofil",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Authentifizierungsprofil auswählen",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Authentifizierungsprofil löschen",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Authentifizierungsprofil benennen/umbenennen",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Zur Ressource navigieren",
|
||||
"pacCLI.authPanel.copyUser.title": "Benutzer kopieren",
|
||||
"pacCLI.solutionPanel.title": "Lösungen",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Anzeigename kopieren",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Versionsnummer kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Administratorumgebungen",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aktualisieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Anzeigename kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Umgebungs-ID kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Umgebungs-URL kopieren",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Organisations-ID kopieren",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps-Portal -> Vorschauversion anzeigen"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Documentación",
|
||||
"pacCLI.openPacLab.title": "Abrir laboratorio de PAC",
|
||||
"pacCLI.pacHelp.title": "Mostrar ayuda de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostrar ayuda de autenticación de PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostrar ayuda del paquete de PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostrar ayuda de PCF de PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostrar ayuda de la solución de PAC",
|
||||
"pacCLI.disableTelemetry.title": "Deshabilitar telemetría de PAC",
|
||||
"pacCLI.enableTelemetry.title": "Habilitar telemetría de PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Perfiles de autenticación",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "No se han encontrado perfiles de autenticación en este equipo.\n[Agregar perfil de autenticación de administrador](command:pacCLI.authPanel.newAdminAuthProfile)\n[Agregar perfil de autenticación de Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "No se han encontrado perfiles de autenticación en este equipo.\n[Ver ayuda de perfiles de autenticación](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Borrar perfiles de autenticación",
|
||||
"pacCLI.authPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nuevo perfil de autenticación de Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nuevo perfil de autenticación de administrador",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Seleccionar perfil de autenticación",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Eliminar perfil de autenticación",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Asignar nombre/Cambiar nombre del perfil de autenticación",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Ir a Recurso",
|
||||
"pacCLI.authPanel.copyUser.title": "Copiar usuario",
|
||||
"pacCLI.solutionPanel.title": "Soluciones",
|
||||
"pacCLI.solutionPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copiar nombre descriptivo",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copiar número de versión",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Entornos de administración",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Actualizar",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copiar nombre para mostrar",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copiar id. de entorno",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copiar URL de entorno",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copiar id. de organización",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portal de PowerApps -> Mostrar vista previa"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Documentation",
|
||||
"pacCLI.openPacLab.title": "Ouvrir le labo PAC",
|
||||
"pacCLI.pacHelp.title": "Afficher l’aide de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Afficher l’aide de l’authentification PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Afficher l’aide du package PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Afficher l’aide de PCF PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Afficher l’aide de la solution PAC",
|
||||
"pacCLI.disableTelemetry.title": "Désactiver la télémétrie PAC",
|
||||
"pacCLI.enableTelemetry.title": "Activer la télémétrie PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Profils d’authentification",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Aucun profil d’authentification trouvé sur cet ordinateur.\n[Ajouter le profil d’authentification de l’administrateur](command:pacCLI.authPanel.newAdminAuthProfile)\n[Ajouter un profil d’authentification Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Aucun profil d’authentification trouvé sur cet ordinateur.\n[Afficher l’aide des profils d’authentification](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Effacer les profils d’authentification",
|
||||
"pacCLI.authPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nouveau profil d’authentification Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nouveau profil d’authentification de l’administrateur",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Sélectionner un profil d’authentification",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Supprimer le profil d’authentification",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nommer/Renommer le profil d’authentification",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Accéder à la ressource",
|
||||
"pacCLI.authPanel.copyUser.title": "Copier l’utilisateur",
|
||||
"pacCLI.solutionPanel.title": "Solutions",
|
||||
"pacCLI.solutionPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copier le nom convivial",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copier le numéro de version",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Environnements d’administration",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Actualiser",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copier le nom complet",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copier l’ID d’environnement",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copier l’URL de l’environnement",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copier l’ID d’organisation",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portail PowerApps -> Afficher la version préliminaire"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Documentazione",
|
||||
"pacCLI.openPacLab.title": "Apri esercitazione PAC",
|
||||
"pacCLI.pacHelp.title": "Mostra Guida PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostra la Guida per l'autenticazione PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostra la Guida del pacchetto PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostra Guida PAC PCF",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostra la Guida per la soluzione PAC",
|
||||
"pacCLI.disableTelemetry.title": "Disabilita telemetria PAC",
|
||||
"pacCLI.enableTelemetry.title": "Abilita telemetria PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Profili di autenticazione",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Nessun profilo di autenticazione trovato in questo computer.\n[Aggiungi profilo di autenticazione amministratore](command:pacCLI.authPanel.newAdminAuthProfile)\n[Aggiungi profilo di autenticazione Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Nessun profilo di autenticazione trovato in questo computer.\n[Visualizza la Guida del profilo di autenticazione](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Cancella profili di autenticazione",
|
||||
"pacCLI.authPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Nuovo profilo di autenticazione Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Nuovo profilo di autenticazione amministratore",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Seleziona profilo autenticazione",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Elimina profilo di autenticazione",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Assegna un nome/rinomina profilo di autorizzazione",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Passa a risorsa",
|
||||
"pacCLI.authPanel.copyUser.title": "Copia utente",
|
||||
"pacCLI.solutionPanel.title": "Soluzioni",
|
||||
"pacCLI.solutionPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copia nome descrittivo",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copia numero versione",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Ambienti amministratore",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Aggiorna",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copia nome visualizzato",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copia ID ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copia URL ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copia ID organizzazione",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portale PowerApps -> Mostra anteprima"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "ドキュメント",
|
||||
"pacCLI.openPacLab.title": "PAC ラボを開く",
|
||||
"pacCLI.pacHelp.title": "PAC のヘルプを表示する",
|
||||
"pacCLI.pacAuthHelp.title": "PAC 認証のヘルプを表示する",
|
||||
"pacCLI.pacPackageHelp.title": "PAC パッケージ のヘルプを表示する",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF のヘルプを表示する",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC ソリューションのヘルプを表示する",
|
||||
"pacCLI.disableTelemetry.title": "PAC テレメトリを無効にする",
|
||||
"pacCLI.enableTelemetry.title": "PAC テレメトリを有効にする",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "認証プロファイル",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "このコンピューターには認証プロファイルが見つかりません。\n[管理者認証プロファイルの追加](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse 認証プロファイルの追加](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "このコンピューターには認証プロファイルが見つかりません。\n[認証プロファイルのヘルプを表示](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "認証プロファイルのクリア",
|
||||
"pacCLI.authPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新しい Dataverse 認証プロファイル",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新しい管理者認証プロファイル",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "認証プロファイルの選択",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "認証プロファイルの削除",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "認証プロファイルの名前の指定/変更",
|
||||
"pacCLI.authPanel.navigateToResource.title": "リソースに移動",
|
||||
"pacCLI.authPanel.copyUser.title": "ユーザーのコピー",
|
||||
"pacCLI.solutionPanel.title": "ソリューション",
|
||||
"pacCLI.solutionPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "フレンドリ名のコピー",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "バージョン番号のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.title": "管理者環境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "最新の情報に更新",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "表示名のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "環境 ID のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "環境 URL のコピー",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "組織 ID のコピー",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps ポータル -> プレビューの表示"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "설명서",
|
||||
"pacCLI.openPacLab.title": "PAC 랩 열기",
|
||||
"pacCLI.pacHelp.title": "PAC 도움말 표시",
|
||||
"pacCLI.pacAuthHelp.title": "PAC 인증 도움말 표시",
|
||||
"pacCLI.pacPackageHelp.title": "PAC 패키지 도움말 표시",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF 도움말 표시",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC 솔루션 도움말 표시",
|
||||
"pacCLI.disableTelemetry.title": "PAC 원격 분석 사용 중지",
|
||||
"pacCLI.enableTelemetry.title": "PAC 원격 분석 사용 설정",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "인증 프로필",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "이 컴퓨터에는 인증 프로필이 없습니다.\n[관리자 인증 프로필 추가](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse 인증 프로필 추가](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "이 컴퓨터에는 인증 프로필이 없습니다.\n[인증 프로필 도움말 보기](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "인증 프로필 지우기",
|
||||
"pacCLI.authPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "새 Dataverse 인증 프로필",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "새 관리자 인증 프로필",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "인증 프로필 선택",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "인증 프로필 삭제",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "인증 프로필 이름 지정/이름 변경",
|
||||
"pacCLI.authPanel.navigateToResource.title": "리소스로 이동",
|
||||
"pacCLI.authPanel.copyUser.title": "사용자 복사",
|
||||
"pacCLI.solutionPanel.title": "솔루션",
|
||||
"pacCLI.solutionPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "식별 이름 복사",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "버전 번호 복사",
|
||||
"pacCLI.adminEnvironmentPanel.title": "관리자 환경",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "새로 고침",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "표시 이름 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "환경 ID 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "환경 URL 복사",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "조직 ID 복사",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 포털 -> 프리뷰 보기"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Documentação",
|
||||
"pacCLI.openPacLab.title": "Abrir Laboratório de PAC",
|
||||
"pacCLI.pacHelp.title": "Mostrar Ajuda de PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Mostrar Ajuda da Autenticação de PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Mostrar Ajuda do Pacote de PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Mostrar Ajuda de PCF de PAC",
|
||||
"pacCLI.pacSolutionHelp.title": "Mostrar Ajuda da Solução PAC",
|
||||
"pacCLI.disableTelemetry.title": "Desabilitar Telemetria de PAC",
|
||||
"pacCLI.enableTelemetry.title": "Habilitar Telemetria de PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Perfis de Autenticação",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Nenhum perfil de autenticação encontrado neste computador.\n[Adicionar Administrador do Perfil de Autenticação](command:pacCLI.authPanel.newAdminAuthProfile)\n[Adicionar Perfil de Autenticação do Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Nenhum perfil de autenticação encontrado neste computador.\n[Exibir Ajuda do Perfil de Autenticação](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Limpar Perfis de Autenticação",
|
||||
"pacCLI.authPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Novo Perfil de Autenticação do Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Novo Administrador do Perfil de Autenticação",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Selecionar Perfil de Autenticação",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Excluir Perfil de Autenticação",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Nomear/Renomear Perfil de Autenticação",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Navegar até o Recurso",
|
||||
"pacCLI.authPanel.copyUser.title": "Copiar Usuário",
|
||||
"pacCLI.solutionPanel.title": "Soluções",
|
||||
"pacCLI.solutionPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Copiar Nome Amigável",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Copiar Número da Versão",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Administrar Ambientes",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Atualizar",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Copiar Nome de Exibição",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Copiar ID do Ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Copiar URL do Ambiente",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Copiar ID da Organização",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Portal do PowerApps -> Mostrar versão preliminar"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Документация",
|
||||
"pacCLI.openPacLab.title": "Открыть лабораторию PAC",
|
||||
"pacCLI.pacHelp.title": "Показать справку по PAC",
|
||||
"pacCLI.pacAuthHelp.title": "Показать справку по проверке подлинности в PAC",
|
||||
"pacCLI.pacPackageHelp.title": "Показать справку по пакету PAC",
|
||||
"pacCLI.pacPcfHelp.title": "Показать справку по PAC PCF",
|
||||
"pacCLI.pacSolutionHelp.title": "Показать справку по решению PAC",
|
||||
"pacCLI.disableTelemetry.title": "Отключить телеметрию PAC",
|
||||
"pacCLI.enableTelemetry.title": "Включить телеметрию PAC",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Профили проверки подлинности",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "На компьютере не найдены профили проверки подлинности.\n[Добавить профиль проверки подлинности администратора](command:pacCLI.authPanel.newAdminAuthProfile)\n[Добавить профиль проверки подлинности Dataverse](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "На компьютере не найдены профили проверки подлинности.\n[Открыть справку по профилям проверки подлинности](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Удаление профилей проверки подлинности",
|
||||
"pacCLI.authPanel.refresh.title": "Обновить",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Новый профиль проверки подлинности Dataverse",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Новый профиль проверки подлинности администратора",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Выбор профиля проверки подлинности",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Удаление профиля проверки подлинности",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Установка/изменение имени профиля проверки подлинности",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Переход к ресурсу",
|
||||
"pacCLI.authPanel.copyUser.title": "Копировать пользователя",
|
||||
"pacCLI.solutionPanel.title": "Решения",
|
||||
"pacCLI.solutionPanel.refresh.title": "Обновить",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Копировать понятное имя",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Копировать номер версии",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Администрирование сред",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Обновить",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Копировать отображаемое имя",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Копировать ИД среды",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Копировать URL-адрес среды",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Копировать ИД организации",
|
||||
"microsoft-powerapps-portals.preview-show.title": "Портал PowerApps -> Показать предварительную версию"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "Belgeler",
|
||||
"pacCLI.openPacLab.title": "PAC Lab'i Aç",
|
||||
"pacCLI.pacHelp.title": "PAC Yardımını Göster",
|
||||
"pacCLI.pacAuthHelp.title": "PAC Kimlik Doğrulama Yardımını Göster",
|
||||
"pacCLI.pacPackageHelp.title": "PAC Paketi Yardımını Göster",
|
||||
"pacCLI.pacPcfHelp.title": "PAC PCF Yardımını Göster",
|
||||
"pacCLI.pacSolutionHelp.title": "PAC Çözümü Yardımını Göster",
|
||||
"pacCLI.disableTelemetry.title": "PAC Telemetrisini Devre Dışı Bırak",
|
||||
"pacCLI.enableTelemetry.title": "PAC telemetrisini etkinleştir",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "Kimlik Doğrulama Profilleri",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.\n[Yönetici Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newAdminAuthProfile)\n[Dataverse Kimlik Doğrulama Profili Ekle](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "Bu bilgisayarda hiçbir kimlik doğrulama profili bulunamadı.\n[Kimlik Doğrulama Profili Yardımını Görüntüle](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "Kimlik Doğrulama Profillerini Temizle",
|
||||
"pacCLI.authPanel.refresh.title": "Yenile",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "Yeni Dataverse Kimlik Doğrulama Profili",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "Yeni Yönetici Kimlik Doğrulama Profili",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "Kimlik Doğrulama Profili Seçin",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "Kimlik Doğrulama Profilini Sil",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "Kimlik Doğrulama Profilini Adlandır/Yeniden Adlandır",
|
||||
"pacCLI.authPanel.navigateToResource.title": "Kaynağa Git",
|
||||
"pacCLI.authPanel.copyUser.title": "Kullanıcıyı Kopyala",
|
||||
"pacCLI.solutionPanel.title": "Çözümler",
|
||||
"pacCLI.solutionPanel.refresh.title": "Yenile",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "Kolay Adı Kopyala",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "Sürüm Numarasını Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.title": "Yönetici Ortamları",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "Yenile",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "Görünen Adı Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "Ortam Kimliğini Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "Ortam URL'sini Kopyala",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "Kuruluş Kimliğini Kopyala",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps Portal -> Önizlemeyi göster"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "文档",
|
||||
"pacCLI.openPacLab.title": "打开 PAC Lab",
|
||||
"pacCLI.pacHelp.title": "显示 PAC 帮助",
|
||||
"pacCLI.pacAuthHelp.title": "显示 PAC 身份验证帮助",
|
||||
"pacCLI.pacPackageHelp.title": "显示 PAC 包帮助",
|
||||
"pacCLI.pacPcfHelp.title": "显示 PAC PCF 帮助",
|
||||
"pacCLI.pacSolutionHelp.title": "显示 PAC 解决方案帮助",
|
||||
"pacCLI.disableTelemetry.title": "禁用 PAC 遥测",
|
||||
"pacCLI.enableTelemetry.title": "启用 PAC 遥测",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "身份验证配置文件",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "在此计算机上找不到身份验证配置文件。\n[添加管理员身份验证配置文件](command:pacCLI.authPanel.newAdminAuthProfile)\n[添加 Dataverse 身份验证配置文件](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "在此计算机上找不到身份验证配置文件。\n[查看身份验证配置文件帮助](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "清除身份验证配置文件",
|
||||
"pacCLI.authPanel.refresh.title": "刷新",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新建 Dataverse 身份验证配置文件",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新建管理员身份验证配置文件",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "选择身份验证配置文件",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "删除身份验证配置文件",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重命名身份验证配置文件",
|
||||
"pacCLI.authPanel.navigateToResource.title": "导航到资源",
|
||||
"pacCLI.authPanel.copyUser.title": "复制用户",
|
||||
"pacCLI.solutionPanel.title": "解决方案",
|
||||
"pacCLI.solutionPanel.refresh.title": "刷新",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "复制友好名称",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "复制版本号",
|
||||
"pacCLI.adminEnvironmentPanel.title": "管理环境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "刷新",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "复制显示名称",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "复制环境 ID",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "复制环境 URL",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "复制组织 ID",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 门户 -> 显示预览版"
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"pacCLI.openDocumentation.title": "文件",
|
||||
"pacCLI.openPacLab.title": "開啟 PAC Lab",
|
||||
"pacCLI.pacHelp.title": "顯示 PAC 說明",
|
||||
"pacCLI.pacAuthHelp.title": "顯示 PAC 驗證説明",
|
||||
"pacCLI.pacPackageHelp.title": "顯示 PAC 套件說明",
|
||||
"pacCLI.pacPcfHelp.title": "顯示 PAC PCF 說明",
|
||||
"pacCLI.pacSolutionHelp.title": "顯示 PAC 解決方案說明",
|
||||
"pacCLI.disableTelemetry.title": "停用 PAC 遙測",
|
||||
"pacCLI.enableTelemetry.title": "啟用 PAC 遙測",
|
||||
"power-platform-activitybar.title": "Power Platform",
|
||||
"pacCLI.authPanel.title": "驗證設定檔",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveSupported": "在此電腦上找不到驗證設定檔。\n[新增系統管理驗證設定檔](command:pacCLI.authPanel.newAdminAuthProfile)\n[新增 Dataverse 驗證設定檔](command:pacCLI.authPanel.newDataverseAuthProfile)",
|
||||
"pacCLI.authPanel.welcome.whenInteractiveNotSupported": "在此電腦上找不到驗證設定檔。\n[檢視驗證設定檔說明](command:pacCLI.pacAuthHelp)",
|
||||
"pacCLI.authPanel.clearAuthProfile.title": "清除驗證設定檔",
|
||||
"pacCLI.authPanel.refresh.title": "重新整理",
|
||||
"pacCLI.authPanel.newDataverseAuthProfile.title": "新增 Dataverse 驗證設定檔",
|
||||
"pacCLI.authPanel.newAdminAuthProfile.title": "新增系統管理驗證設定檔",
|
||||
"pacCLI.authPanel.selectAuthProfile.title": "選取驗證設定檔",
|
||||
"pacCLI.authPanel.deleteAuthProfile.title": "刪除驗證設定檔",
|
||||
"pacCLI.authPanel.nameAuthProfile.title": "命名/重新命名驗證設定檔",
|
||||
"pacCLI.authPanel.navigateToResource.title": "瀏覽至資源",
|
||||
"pacCLI.authPanel.copyUser.title": "複製使用者",
|
||||
"pacCLI.solutionPanel.title": "解決方案",
|
||||
"pacCLI.solutionPanel.refresh.title": "重新整理",
|
||||
"pacCLI.solutionPanel.copyFriendlyName.title": "複製易記名稱",
|
||||
"pacCLI.solutionPanel.copyVersionNumber.title": "複製版本號碼",
|
||||
"pacCLI.adminEnvironmentPanel.title": "系統管理環境",
|
||||
"pacCLI.adminEnvironmentPanel.refresh.title": "重新整理",
|
||||
"pacCLI.adminEnvironmentPanel.copyDisplayName.title": "複製顯示名稱",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentId.title": "複製環境識別碼",
|
||||
"pacCLI.adminEnvironmentPanel.copyEnvironmentUrl.title": "複製環境 URL",
|
||||
"pacCLI.adminEnvironmentPanel.copyOrganizationId.title": "複製組織識別碼",
|
||||
"microsoft-powerapps-portals.preview-show.title": "PowerApps 入口網站 -> 顯示預覽"
|
||||
}
|
Загрузка…
Ссылка в новой задаче