-
Notifications
You must be signed in to change notification settings - Fork 585
Code review changes for SQL Notebooks #21439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f5a4337
1f95bc7
f7495ad
f33f24f
3470b5e
50b2803
0a07c46
aeae4ea
1b03b03
29d7c98
5eb496b
d3e43ac
fe270e4
c78b5d9
57a6440
931bbf6
f15c5bc
b3a0fee
46b9cb0
30b3378
a7fad96
52921a9
4361e3b
85fabf2
537e00e
1628e83
3f54f20
cda5284
93c5a5d
b7f9893
ab29b03
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -640,11 +640,9 @@ export let newDeployment = l10n.t("New Deployment"); | |
|
|
||
| export class Notebooks { | ||
| // Status bar | ||
| public static statusBarNotConnected = l10n.t("SQL: Not connected"); | ||
| public static statusBarClickToChangeDatabase = l10n.t( | ||
| "SQL Notebooks: click to change database", | ||
| ); | ||
| public static statusBarClickToConnect = l10n.t("SQL Notebooks: click to connect"); | ||
| public static statusBarNotConnected = l10n.t("MSSQL: Not connected"); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NIT: Maybe we shold keep the labels consistent with codelens.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point. We should point to the same strings. |
||
| public static statusBarClickToChangeDatabase = l10n.t("MSSQL: Click to change database"); | ||
| public static statusBarClickToConnect = l10n.t("MSSQL: Click to connect"); | ||
|
|
||
| // Errors | ||
| public static connectionFailed = l10n.t("Connection failed"); | ||
|
|
@@ -715,7 +713,7 @@ export class Notebooks { | |
| // Info | ||
| public static notebookConnectedTo(label: string) { | ||
| return l10n.t({ | ||
| message: "SQL Notebook connected to {0}", | ||
| message: "MSSQL Notebook connected to {0}", | ||
| args: [label], | ||
| comment: ["{0} is the connection label"], | ||
| }); | ||
|
|
@@ -729,7 +727,7 @@ export class Notebooks { | |
| } | ||
|
|
||
| // Cancellation | ||
| public static executionCancelled = l10n.t("Query execution was cancelled."); | ||
| public static executionCanceled = l10n.t("Query execution was canceled."); | ||
|
|
||
| // Controller | ||
| public static controllerDescription = l10n.t("Execute SQL against SQL Server / Azure SQL"); | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably we should look into merging all the bundling files as there is a lot of repeated code.