updated documentdb text changes

This commit is contained in:
Sakshi Gupta 2025-10-07 16:42:57 +05:30
parent a5c3e6bea0
commit e5438b0a0a
4 changed files with 8 additions and 8 deletions

View File

@ -136,7 +136,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
describe("Open Postgres and vCore Mongo buttons", () => {
const openPostgresShellButtonLabel = "Open PSQL shell";
const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell";
const openVCoreMongoShellButtonLabel = "Open MongoDB (DocumentDB) shell";
beforeAll(() => {
mockExplorer = {} as Explorer;

View File

@ -450,7 +450,7 @@ function createOpenTerminalButtonByKind(
case ViewModels.TerminalKind.Postgres:
return "PSQL";
case ViewModels.TerminalKind.VCoreMongo:
return "MongoDB (vCore)";
return "MongoDB (DocumentDB)";
default:
return "";
}

View File

@ -46,7 +46,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
<Stack style={{ paddingTop: 8, height: "100%", width: "100%" }}>
<Stack style={{ flexGrow: 1, padding: "0 20px", overflow: "auto" }}>
<Text variant="xxLarge">Quick start guide</Text>
<Text variant="small">Getting started in Cosmos DB Mongo DB (vCore)</Text>
<Text variant="small">Getting started in Azure DocumentDB (with MongoDB compatibility)</Text>
{currentStep < 5 && (
<Pivot
style={{ marginTop: 10, width: "100%" }}
@ -68,12 +68,12 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
This tutorial guides you to create and query distributed tables using a sample dataset.
<br />
<br />
To start, input the admin password you used during the cluster creation process into the MongoDB vCore
To start, input the admin password you used during the cluster creation process into the Document DB
terminal.
<br />
<br />
<br />
Note: If you navigate out of the Quick start blade &#40;MongoDB vCore Shell&#41;, the session will be
Note: If you navigate out of the Quick start blade &#40;MongoDB Shell&#41;, the session will be
closed and all ongoing commands might be interrupted.
</Text>
</Stack>
@ -295,7 +295,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
<br />
<br />
Modernize your data seamlessly from an existing MongoDB cluster, whether it&apos;s on-premises or
hosted in the cloud, to Azure Cosmos DB for MongoDB vCore.&nbsp;
hosted in the cloud, to Azure DocumentDB.&nbsp;
<Link
target="_blank"
href="https://learn.microsoft.com/azure/cosmos-db/mongodb/vcore/migration-options"

View File

@ -273,7 +273,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
break;
case "VCoreMongo":
title = "Welcome to Azure Cosmos DB for MongoDB (vCore)";
title = "Welcome to Azure DocumentDB (with MongoDB compatibility)";
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
break;
default:
@ -456,7 +456,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
if (userContext.apiType === "VCoreMongo") {
icon = VisualStudioIcon;
title = "Connect with VS Code";
description = "Query and Manage your MongoDB cluster in Visual Studio Code";
description = "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code";
onClick = () => this.container.openInVsCode();
}