Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Aeschlimann <martinae@microsoft.com>2021-06-09 13:12:50 +0300
committerMartin Aeschlimann <martinae@microsoft.com>2021-06-09 13:12:50 +0300
commit33d504f8455b5c0ddf27d529739ca17bb634092d (patch)
tree41432aa6784bd64c7090ecc46816722ef3551d7d
parentd5fbc9f45fa76fd58a88f7f478f680a4fbe10d7e (diff)
clarify nls comment
-rw-r--r--src/vs/workbench/contrib/remote/browser/remoteIndicator.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts b/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts
index d14756a807d..a1f3501b511 100644
--- a/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts
+++ b/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts
@@ -302,7 +302,7 @@ export class RemoteStatusIndicator extends Disposable implements IWorkbenchContr
if (workspaceLabel) {
const toolTip: IMarkdownString = {
value: nls.localize(
- { key: 'workspace.tooltip2', comment: ['[abc]({1}) is a link. Only translate `Some features`. Do not change brackets and parentheses or {1}'] },
+ { key: 'workspace.tooltip2', comment: ['{0} is a remote location name, e.g. GitHub', '[Some features]({1}) is a link. Only translate `Some features`. Do not change brackets and parentheses or {1}'] },
"Virtual workspace on {0}\n\n[Some features]({1}) are not available for resources located on a virtual file system.",
workspaceLabel, `command:${LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID}`
),