-
Notifications
You must be signed in to change notification settings - Fork 307
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
Fix problems with context keys and strings for remote connections #10768
Conversation
Codecov Report
@@ Coverage Diff @@
## main #10768 +/- ##
======================================
Coverage 63% 63%
======================================
Files 476 476
Lines 33039 33048 +9
Branches 5384 5387 +3
======================================
+ Hits 20828 20840 +12
+ Misses 10201 10200 -1
+ Partials 2010 2008 -2
|
@DonJayamanne @amunger @IanMatthewHuff @sadasant can somebody take a look? Thanks. |
@@ -780,7 +780,7 @@ | |||
"comment": ["{Locked='python -m jupyter notebook --version'}"] | |||
}, | |||
"DataScience.savePngTitle": "Save Image", | |||
"DataScience.jupyterSelectURIQuickPickTitle": "Pick how to connect to Jupyter", | |||
"DataScience.jupyterSelectURIQuickPickTitle": "Enter the URI of the running Jupyter server", |
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.
Isn't there a localize.ts entry as well?
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.
The bug here was that this file didn't have the new text. the localize.ts file alredy says 'Enter the URI of the running Jupyter server'.
On web we use the nls.json file. On desktop the localize.ts file is translated by the translation files.
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.
@rchiodo Ahh should have paid more attention to the bug. I just saw one file and not the other. Sounds good.
Fixes #10672
Also fixes some problems with the 'back' button on the quick pick and supporting undefined as the URI (default state on web).