diff --git a/src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al b/src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al index 11b968dc51..d3a582d138 100644 --- a/src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al +++ b/src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al @@ -164,8 +164,8 @@ page 6103 "E-Document Services" action(OpenAppSourceInstallableServices) { ApplicationArea = Basic, Suite; - Caption = 'Install E-Document integrations from AppSource'; - Tooltip = 'Open AppSource to install services.'; + Caption = 'Install E-Document integrations from Marketplace'; + Tooltip = 'Open Marketplace to install services.'; Image = Insert; trigger OnAction() diff --git a/src/System Application/App/AppSource Gallery/README.md b/src/System Application/App/AppSource Gallery/README.md index d8496b3e79..b65cbc0fcc 100644 --- a/src/System Application/App/AppSource Gallery/README.md +++ b/src/System Application/App/AppSource Gallery/README.md @@ -1,7 +1,7 @@ -This module provides functionality for listing AppSource apps. +This module provides functionality for listing Marketplace apps. Use this module to do the following: -- list AppSource products -- view AppSource product details -- start installation of AppSource product +- list Marketplace products +- view Marketplace product details +- start installation of Marketplace product diff --git a/src/System Application/App/AppSource Gallery/app.json b/src/System Application/App/AppSource Gallery/app.json index 899845f7cb..6ff6f12ddf 100644 --- a/src/System Application/App/AppSource Gallery/app.json +++ b/src/System Application/App/AppSource Gallery/app.json @@ -2,8 +2,8 @@ "id": "79952567-63d7-4586-8b47-ba13a11a8a18", "name": "AppSource Product Gallery", "publisher": "Microsoft", - "brief": "AppSource Product Gallery app provides a Gallery for navigating Microsoft AppSource apps.", - "description": "Using AppSource Product Gallery you can explore apps from Microsoft AppSource and choose to install them on the current environment.", + "brief": "AppSource Product Gallery app provides a Gallery for navigating Microsoft Marketplace apps.", + "description": "Using AppSource Product Gallery you can explore apps from Microsoft Marketplace and choose to install them on the current environment.", "version": "28.0.0.0", "privacyStatement": "https://go.microsoft.com/fwlink/?linkid=724009", "EULA": "https://go.microsoft.com/fwlink/?linkid=2009120", diff --git a/src/System Application/App/AppSource Gallery/src/AppSourceExtensionManagement.PageExt.al b/src/System Application/App/AppSource Gallery/src/AppSourceExtensionManagement.PageExt.al index b2ca73ad91..91ce60d032 100644 --- a/src/System Application/App/AppSource Gallery/src/AppSourceExtensionManagement.PageExt.al +++ b/src/System Application/App/AppSource Gallery/src/AppSourceExtensionManagement.PageExt.al @@ -14,10 +14,10 @@ pageextension 2515 AppSourceExtensionManagement extends "Extension Management" action("Microsoft AppSource Gallery") { ApplicationArea = All; - Caption = 'AppSource Gallery'; + Caption = 'Marketplace Gallery'; Enabled = IsSaas; Image = NewItem; - ToolTip = 'Browse the Microsoft AppSource Gallery for new extensions to install.'; + ToolTip = 'Browse the Microsoft Marketplace Gallery for new extensions to install.'; Visible = not IsOnPremDisplay; RunObject = Page "AppSource Product List"; RunPageMode = View; diff --git a/src/System Application/App/AppSource Gallery/src/AppSourceProductDetails.Page.al b/src/System Application/App/AppSource Gallery/src/AppSourceProductDetails.Page.al index 9cd22e7200..08e0e52642 100644 --- a/src/System Application/App/AppSource Gallery/src/AppSourceProductDetails.Page.al +++ b/src/System Application/App/AppSource Gallery/src/AppSourceProductDetails.Page.al @@ -156,10 +156,10 @@ page 2516 "AppSource Product Details" { action(OpenInAppSource) { - Caption = 'View on AppSource'; + Caption = 'View on Marketplace'; Scope = Page; Image = Info; - ToolTip = 'Opens the app on AppSource.'; + ToolTip = 'Opens the app on Marketplace.'; trigger OnAction() begin @@ -190,10 +190,10 @@ page 2516 "AppSource Product Details" action(InstallFromAppSource) { - Caption = 'Install from AppSource'; + Caption = 'Install from Marketplace'; Scope = Page; Image = Download; - ToolTip = 'Installs the app from Microsoft AppSource.'; + ToolTip = 'Installs the app from Microsoft Marketplace.'; Enabled = (not CurrentRecordCanBeUninstalled) and (not CurrentRecordCanBeInstalled); Visible = (not CurrentRecordCanBeUninstalled) and (not CurrentRecordCanBeInstalled); diff --git a/src/System Application/App/AppSource Gallery/src/AppSourceProductList.Page.al b/src/System Application/App/AppSource Gallery/src/AppSourceProductList.Page.al index b2fd2ba3ad..5b78d65abf 100644 --- a/src/System Application/App/AppSource Gallery/src/AppSourceProductList.Page.al +++ b/src/System Application/App/AppSource Gallery/src/AppSourceProductList.Page.al @@ -13,7 +13,7 @@ using System.Environment.Configuration; page 2515 "AppSource Product List" { PageType = List; - Caption = 'Microsoft AppSource apps'; + Caption = 'Microsoft Marketplace apps'; ApplicationArea = All; UsageCategory = Administration; Editable = false; @@ -106,10 +106,10 @@ page 2515 "AppSource Product List" { action(OpenAppSource) { - Caption = 'Go to AppSource'; + Caption = 'Go to Marketplace'; Scope = Page; Image = GoTo; - ToolTip = 'View all apps on AppSource'; + ToolTip = 'View all apps on Marketplace'; trigger OnAction() begin @@ -119,10 +119,10 @@ page 2515 "AppSource Product List" action(OpenInAppSource) { - Caption = 'View on AppSource'; + Caption = 'View on Marketplace'; Scope = Repeater; Image = Info; - ToolTip = 'View selected app on AppSource'; + ToolTip = 'View selected app on Marketplace'; trigger OnAction() begin @@ -135,7 +135,7 @@ page 2515 "AppSource Product List" Caption = 'Edit User Settings'; RunObject = page "User Settings"; Image = UserSetup; - ToolTip = 'Locale determines the language used for details about the app in Business Central and on AppSource.'; + ToolTip = 'Locale determines the language used for details about the app in Business Central and on Marketplace.'; } } @@ -145,7 +145,7 @@ page 2515 "AppSource Product List" { Caption = 'Refresh apps'; Scope = Page; - ToolTip = 'Refreshes the list by downloading the latest apps from Microsoft AppSource'; + ToolTip = 'Refreshes the list by downloading the latest apps from Microsoft Marketplace'; Image = Refresh; trigger OnAction() diff --git a/src/System Application/App/AppSource Gallery/src/AppSourceProductManager.Codeunit.al b/src/System Application/App/AppSource Gallery/src/AppSourceProductManager.Codeunit.al index 67fb89c98b..b25813cb41 100644 --- a/src/System Application/App/AppSource Gallery/src/AppSourceProductManager.Codeunit.al +++ b/src/System Application/App/AppSource Gallery/src/AppSourceProductManager.Codeunit.al @@ -38,7 +38,7 @@ codeunit 2515 "AppSource Product Manager" AppSourceListingUriLbl: Label 'https://appsource.microsoft.com/%1/product/dynamics-365-business-central/%2', Comment = '%1=Language ID, such as en-US, %2=Url Query Content', Locked = true; AppSourceUriLbl: Label 'https://appsource.microsoft.com/%1/marketplace/apps?product=dynamics-365-business-central', Comment = '1%=Language ID, such as en-US', Locked = true; NotSupportedOnPremisesErrorLbl: Label 'Not supported on premises.'; - UnsupportedLanguageNotificationLbl: Label 'Language %1 is not supported by AppSource. Defaulting to "en". Change the language in the user profile to use another language.', Comment = '%1=Language ID, such as en'; + UnsupportedLanguageNotificationLbl: Label 'Language %1 is not supported by Marketplace. Defaulting to "en". Change the language in the user profile to use another language.', Comment = '%1=Language ID, such as en'; #region Product helpers /// diff --git a/src/System Application/App/Edit in Excel/src/ExcelCentralizedDeplWizard.Page.al b/src/System Application/App/Edit in Excel/src/ExcelCentralizedDeplWizard.Page.al index bc295e9f39..b0de255a59 100644 --- a/src/System Application/App/Edit in Excel/src/ExcelCentralizedDeplWizard.Page.al +++ b/src/System Application/App/Edit in Excel/src/ExcelCentralizedDeplWizard.Page.al @@ -57,7 +57,7 @@ page 1480 "Excel Centralized Depl. Wizard" group(IntroductionGroup) { Caption = ''; - InstructionalText = 'If your organization does not allow users to access the Office Store (AppSource), administrators can configure Centralized Deployment to control which users or groups can continue accessing the Excel add-in.'; + InstructionalText = 'If your organization doesn''t allow users to access Microsoft Marketplace, administrators can configure Centralized Deployment to control who can continue to use the Excel add-in.'; } field(LearnHowExcelFilesAreImpactedField; LearnHowExcelFilesAreImpactedTxt) { @@ -332,7 +332,7 @@ page 1480 "Excel Centralized Depl. Wizard" Step2Visible: Boolean; Step3Visible: Boolean; CentralizedDeploymentLinkTxt: Label 'Requirements for Centralized Deployment of Add-ins'; - LearnHowExcelFilesAreImpactedTxt: Label 'Learn how Excel files are impacted by removing AppSource access'; + LearnHowExcelFilesAreImpactedTxt: Label 'Learn how Excel files are affected by removing Marketplace access.'; GoToIntegratedAppsLinkTxt: Label '1. In the Microsoft 365 admin center, go to Integrated Apps.'; LearnAboutConfiguringBcForCentralizedDeploymentLinkTxt: Label 'Learn more about Configuring Business Central for Centralized Deployment​'; } diff --git a/src/System Application/App/Email/src/Account/EmailAccountWizard.Page.al b/src/System Application/App/Email/src/Account/EmailAccountWizard.Page.al index 004e7ef4a1..ddd63a09f4 100644 --- a/src/System Application/App/Email/src/Account/EmailAccountWizard.Page.al +++ b/src/System Application/App/Email/src/Account/EmailAccountWizard.Page.al @@ -173,7 +173,7 @@ page 8886 "Email Account Wizard" label(NoConnectorsAvailable2) { ApplicationArea = All; - Caption = 'Email apps are available in Extension Management and AppSource.'; + Caption = 'Email apps are available in Extension Management and Marketplace.'; } field(ExtensionManagement; ExtensionManagementTok) @@ -197,7 +197,7 @@ page 8886 "Email Account Wizard" ShowCaption = false; Visible = AppSourceAvailable; Caption = ' '; - ToolTip = 'Navigate to AppSource.'; + ToolTip = 'Go to Marketplace.'; trigger OnDrillDown() begin diff --git a/src/System Application/App/Extension Management/src/ExtensionMarketplace.Codeunit.al b/src/System Application/App/Extension Management/src/ExtensionMarketplace.Codeunit.al index 928bfbe3a2..2220740901 100644 --- a/src/System Application/App/Extension Management/src/ExtensionMarketplace.Codeunit.al +++ b/src/System Application/App/Extension Management/src/ExtensionMarketplace.Codeunit.al @@ -35,7 +35,7 @@ codeunit 2501 "Extension Marketplace" HttpWebRequest: DotNet HttpWebRequest; GlobalPropertyValue: Text; ParseFailureErr: Label 'Failed to extract ''%1'' property from JSON object.', Comment = 'JSON parsing error. %1=target property name'; - TelemetryBodyTxt: Label '{"acquisitionResult":"%1", "detail":"%2"}', Comment = '%1=AppSource operation result option, %2=details describing the context or reason for the result', Locked = true; + TelemetryBodyTxt: Label '{"acquisitionResult":"%1", "detail":"%2"}', Comment = '%1=Marketplace operation result option, %2=details describing the context or reason for the result', Locked = true; ParseApplicationIdErr: Label 'Failed to extract ''%1'' token from Application Id.', Comment = '%1=Name of token that we expected '; Token: Option PUBID,AID,PAPPID; MarketplaceDisabledSecretTxt: Label 'extmgmt-marketplace-disable', Locked = true; diff --git a/src/System Application/App/Extension Management/src/MarketplaceExtnDeployment.Page.al b/src/System Application/App/Extension Management/src/MarketplaceExtnDeployment.Page.al index 9042f0ef4d..ab1cabe1e2 100644 --- a/src/System Application/App/Extension Management/src/MarketplaceExtnDeployment.Page.al +++ b/src/System Application/App/Extension Management/src/MarketplaceExtnDeployment.Page.al @@ -263,7 +263,7 @@ page 2510 "Marketplace Extn Deployment" ActiveUsersLbl: Label 'Note: There might be other users working in the system.'; WarningLbl: Label 'Installing extensions during business hours will disrupt other users.'; ImportantInfoLbl: Label 'Important'; - ImportantDisclaimerLbl: Label 'When installing an AppSource app, it may require additional apps to be installed as dependencies. Make sure to review the provider''s terms of use and privacy policy review before proceeding. For more information on installing and uninstalling apps, see the link below.'; + ImportantDisclaimerLbl: Label 'When installing an Marketplace app, it may require additional apps to be installed as dependencies. Make sure to review the provider''s terms of use and privacy policy review before proceeding. For more information on installing and uninstalling apps, see the link below.'; RefreshInfoLbl: Label 'After installation, your session will refresh, and you can set up your extension.'; PreviewInfoLbl: Label 'Note: A preview key was provided for the installation. A preview version of the extension is about to be installed. If a higher public version exists for your environment, it will be installed instead of the preview version.'; DisclaimerLbl: Label 'This extension/app is provided to you by a third-party publisher and not Microsoft. The extension/app may require additional apps to be installed as dependencies. Please review the providers'' terms and privacy policy before proceeding and note that the third-party publisher may not meet the same compliance and security standards as Dynamics 365 Business Central.'; diff --git a/src/System Application/App/External File Storage/src/Account/FileAccountWizard.Page.al b/src/System Application/App/External File Storage/src/Account/FileAccountWizard.Page.al index 29048f87b7..80232c2347 100644 --- a/src/System Application/App/External File Storage/src/Account/FileAccountWizard.Page.al +++ b/src/System Application/App/External File Storage/src/Account/FileAccountWizard.Page.al @@ -152,7 +152,7 @@ page 9451 "File Account Wizard" } label(NoConnectorsAvailable2) { - Caption = 'File apps are available in Extension Management and AppSource.'; + Caption = 'File apps are available in Extension Management and Marketplace.'; } field(ExtensionManagement; ExtensionManagementTok) { @@ -172,7 +172,7 @@ page 9451 "File Account Wizard" ShowCaption = false; Visible = AppSourceAvailable; Caption = ' '; - ToolTip = 'Navigate to AppSource.'; + ToolTip = 'Go to Marketplace.'; trigger OnDrillDown() begin