Skip to content

Commit

Permalink
fix: unify descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitowo committed Nov 13, 2024
1 parent 2aa0775 commit d45792c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/ql-vscode/src/databases/local-databases-ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export class DatabaseUI extends DisposableObject {
await this.chooseDatabasesParentFolder(progress);
},
{
title: "Choose a Folder contains all Database Folders",
title: "Choose a Parent Folder contains all Databases to import",
},
);
}
Expand Down Expand Up @@ -1076,7 +1076,7 @@ export class DatabaseUI extends DisposableObject {
this.app.logger,
`Failed to import ${failures.length} database(s), successfully imported ${databases.length} database(s).`,
{
fullMessage: `Failed to import ${failures.length} database(s), successfully imported ${databases.length} database(s). Failed folders to import:\n - ${failures.join("\n - ")}`,
fullMessage: `Failed to import ${failures.length} database(s), successfully imported ${databases.length} database(s).\nFailed databases to import:\n - ${failures.join("\n - ")}`,
},
);
} else if (databases.length === 0) {
Expand Down

0 comments on commit d45792c

Please sign in to comment.