Skip to content

Commit 405ab9c

Browse files
committed
Improve connections prompts
1 parent f42d3cb commit 405ab9c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/commands/appSettings/connectionSettings/azureWebJobsStorage/StorageConnectionListStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class StorageConnectionListStep<T extends IStorageConnectionWizardContext
4646

4747
buttons.push(skipForNow);
4848

49-
const message: string = localize('connectAzureWebJobsStorage', 'In order to proceed, you must connect a storage account for internal use by the Azure Functions runtime.');
49+
const message: string = localize('connectAzureWebJobsStorage', 'Azure Functions needs to be configured to use an Azure Storage account.');
5050
context.azureWebJobsStorageType = (await context.ui.showWarningMessage(message, { modal: true }, ...buttons) as {
5151
title: string;
5252
data: Exclude<ConnectionType, 'Custom'>;

src/commands/appSettings/connectionSettings/durableTaskScheduler/DTSConnectionListStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class DTSConnectionListStep<T extends IDTSConnectionWizardContext> extend
2626
}
2727

2828
public async prompt(context: T): Promise<void> {
29-
const connectAzureButton = { title: localize('connectAzureTaskScheduler', 'Connect Azure Task Scheduler'), data: ConnectionType.Azure };
29+
const connectAzureButton = { title: localize('connectDurableTaskScheduler', 'Connect Durable Task Scheduler'), data: ConnectionType.Azure };
3030
const connectEmulatorButton = { title: useEmulator, data: ConnectionType.Emulator };
3131
const connectCustomDTSButton = { title: localize('connectCustomTaskScheduler', 'Manually Set a Connection String'), data: ConnectionType.Custom };
3232
const skipForNow = { title: localize('skipForNow', 'Skip for now'), data: undefined };

src/commands/appSettings/connectionSettings/netherite/EventHubsConnectionListStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class EventHubsConnectionListStep<T extends INetheriteConnectionWizardCon
3838

3939
buttons.push(skipForNow);
4040

41-
const message: string = localize('selectEventHubsNamespace', 'In order to proceed, you must connect an event hubs namespace for internal use by the Azure Functions runtime.');
41+
const message: string = localize('selectEventHubsNamespace', 'Durable Functions needs to be configured to use an Event Hubs Namespace.');
4242
context.eventHubsConnectionType = (await context.ui.showWarningMessage(message, { modal: true }, ...buttons) as {
4343
title: string;
4444
data: Exclude<ConnectionType, 'Custom'>;

src/commands/appSettings/connectionSettings/sqlDatabase/SqlConnectionListStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class SqlConnectionListStep<T extends ISqlDatabaseConnectionWizardContext
3535

3636
buttons.push(skipForNow);
3737

38-
const message: string = localize('selectSqlDatabaseConnection', 'In order to proceed, you must connect a SQL database for internal use by the Azure Functions runtime.');
38+
const message: string = localize('selectSqlDatabaseConnection', 'Durable Functions needs to be configured to use a SQL database.');
3939
context.sqlDbConnectionType = (await context.ui.showWarningMessage(message, { modal: true }, ...buttons) as {
4040
title: string;
4141
data: Exclude<ConnectionType, 'Emulator'> | undefined;

0 commit comments

Comments
 (0)