Skip to content

Commit 4087620

Browse files
committed
Polish copy
1 parent 250089a commit 4087620

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

extensions/ql-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@
518518
},
519519
{
520520
"command": "codeQLVariantAnalysisRepositories.importFromCodeSearch",
521-
"title": "Import Repos from GitHub Code Search"
521+
"title": "Add repositories with GitHub Code Search"
522522
},
523523
{
524524
"command": "codeQLVariantAnalysisRepositories.setSelectedItem",

extensions/ql-vscode/src/databases/ui/db-panel.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ export class DbPanel extends DisposableObject {
363363
await window.showQuickPick<CodeSearchQuickPickItem>(
364364
languageQuickPickItems,
365365
{
366-
title: "Select the language you want to query",
366+
title: "Select a language for your search",
367367
placeHolder: "Select an option",
368368
ignoreFocusOut: true,
369369
},
@@ -373,8 +373,9 @@ export class DbPanel extends DisposableObject {
373373
}
374374

375375
const codeSearchQuery = await window.showInputBox({
376-
title: "Code search query",
377-
prompt: "Insert code search query",
376+
title: "GitHub Code Search",
377+
prompt:
378+
"Use [GitHub's Code Search syntax](https://docs.github.com/en/search-github/github-code-search/understanding-github-code-search-syntax), including code qualifiers, regular expressions, and boolean operations, to search for repositories.",
378379
placeHolder: "org:github",
379380
});
380381
if (codeSearchQuery === undefined || codeSearchQuery === "") {

0 commit comments

Comments
 (0)