Skip to content

Commit 6ccd93a

Browse files
committed
Fix wording
1 parent 56424bb commit 6ccd93a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/link/LinkMySQLToModuleDialog.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ private void doLink(LinkConfig<MySQLResourceConfig, ModuleResourceConfig> linkCo
101101
final ProgressIndicator indicator = ProgressManager.getInstance().getProgressIndicator();
102102
indicator.setIndeterminate(true);
103103
AzureLinkService.getInstance().link(project, linkConfig, finalStorageResource);
104-
final String message = String.format("Connect database %s to project %s successfully.", resourceConfig.getDatabase().name(), project.getName());
104+
final String message = String.format("The connection between database %s and project %s is created successfully.",
105+
resourceConfig.getDatabase().name(), project.getName());
105106
DefaultLoader.getUIHelper().showInfoNotification(LinkMySQLAction.ACTION_NAME, message);
106107
};
107108
final IAzureOperationTitle title = AzureOperationBundle.title("azure-mysql.azure-mysql-link-to-module");

0 commit comments

Comments
 (0)