You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constaskLater: MessageItem={title: localize('not now',"Ask Me Later")};
60
-
constresult=awaitwindow.showInformationMessage(localize('suggest auto fetch',"Would you like Code to periodically run `git fetch`?"),yes,readMore,no,askLater);
60
+
constresult=awaitwindow.showInformationMessage(localize('suggest auto fetch',"Would you like Code to periodically run 'git fetch'?"),yes,readMore,no,askLater);
notificationService.info(nls.localize('no.provider',"Sorry, but there is no formatter for '{0}'-files installed.",editor.getModel().getLanguageIdentifier().language));
288
+
notificationService.info(nls.localize('no.provider',"There is no formatter for '{0}'-files installed.",editor.getModel().getLanguageIdentifier().language));
this._host.showMessage(Severity.Error,nls.localize('failedDep2',"Extension `{0}` failed to activate. Reason: more than 10 levels of dependencies (most likely a dependency loop).",extensionDescriptions[i].id));
287
+
this._host.showMessage(Severity.Error,nls.localize('failedDep2',"Extension '{0}' failed to activate. Reason: more than 10 levels of dependencies (most likely a dependency loop).",extensionDescriptions[i].id));
thrownewError(localize('duplicateId',"A view with id `{0}` is already registered in the location `{1}`",viewDescriptor.id,viewDescriptor.location.id));
100
+
thrownewError(localize('duplicateId',"A view with id '{0}' is already registered in the location '{1}'",viewDescriptor.id,viewDescriptor.location.id));
Copy file name to clipboardExpand all lines: src/vs/workbench/parts/debug/electron-browser/debugService.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -708,7 +708,7 @@ export class DebugService implements debug.IDebugService {
708
708
launchForName=launch;
709
709
}else{
710
710
returnTPromise.wrapError(newError(launchesContainingName.length===0 ? nls.localize('noConfigurationNameInWorkspace',"Could not find launch configuration '{0}' in the workspace.",name)
711
-
: nls.localize('multipleConfigurationNamesInWorkspace',"There are multiple launch configurations `{0}` in the workspace. Use folder name to qualify the configuration.",name)));
711
+
: nls.localize('multipleConfigurationNamesInWorkspace',"There are multiple launch configurations '{0}' in the workspace. Use folder name to qualify the configuration.",name)));
message=config.request ? nls.localize('debugRequestNotSupported',"Attribute `{0}` has an unsupported value '{1}' in the chosen debug configuration.",'request',config.request)
783
+
message=config.request ? nls.localize('debugRequestNotSupported',"Attribute '{0}' has an unsupported value '{1}' in the chosen debug configuration.",'request',config.request)
784
784
: nls.localize('debugRequesMissing',"Attribute '{0}' is missing from the chosen debug configuration.",'request');
785
785
786
786
}else{
787
787
message=resolvedConfig.type ? nls.localize('debugTypeNotSupported',"Configured debug type '{0}' is not supported.",resolvedConfig.type) :
788
-
nls.localize('debugTypeMissing',"Missing property `type` for the chosen launch configuration.");
788
+
nls.localize('debugTypeMissing',"Missing property 'type' for the chosen launch configuration.");
constconflictEditorHelp=nls.localize('userGuide',"Use the actions in the editor tool bar to either **undo** your changes or **overwrite** the content on disk with your changes");
39
+
constconflictEditorHelp=nls.localize('userGuide',"Use the actions in the editor tool bar to either undo your changes or overwrite the content on disk with your changes");
40
40
41
41
// A handler for save error happening with conflict resolution actions
message=nls.localize('staleSaveError',"Failed to save '{0}': The content on disk is newer. Click on **Compare** to compare your version with the one on disk.",paths.basename(resource.fsPath));
121
+
message=nls.localize('staleSaveError',"Failed to save '{0}': The content on disk is newer. Please compare your version with the one on disk.",paths.basename(resource.fsPath));
0 commit comments