diff --git a/l10n/bundle.l10n.json b/l10n/bundle.l10n.json index 5032b3955f..64885d6e58 100644 --- a/l10n/bundle.l10n.json +++ b/l10n/bundle.l10n.json @@ -148,6 +148,7 @@ "project.json is no longer a supported project format for .NET Core applications.": "project.json is no longer a supported project format for .NET Core applications.", "More Detail": "More Detail", "Some projects have trouble loading. Please review the output for more details.": "Some projects have trouble loading. Please review the output for more details.", + "Select project": "Select project", "There are unresolved dependencies. Please execute the restore command to continue.": "There are unresolved dependencies. Please execute the restore command to continue.", "Restore": "Restore", "Package {0} download from {1} failed integrity check. Some features may not work as expected. Please restart Visual Studio Code to retrigger the download": "Package {0} download from {1} failed integrity check. Some features may not work as expected. Please restart Visual Studio Code to retrigger the download", diff --git a/src/omnisharp/observers/projectStatusBarObserver.ts b/src/omnisharp/observers/projectStatusBarObserver.ts index b79167daa0..419bd4e232 100644 --- a/src/omnisharp/observers/projectStatusBarObserver.ts +++ b/src/omnisharp/observers/projectStatusBarObserver.ts @@ -3,6 +3,7 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +import * as vscode from 'vscode'; import { basename } from 'path'; import { BaseEvent } from '../../shared/loggingEvents'; import { WorkspaceInformationUpdated } from '../omnisharpLoggingEvents'; @@ -14,7 +15,7 @@ export class ProjectStatusBarObserver extends BaseStatusBarItemObserver { switch (event.type) { case EventType.OmnisharpOnMultipleLaunchTargets: this.SetAndShowStatusBar( - '$(file-submodule) Select project', + '$(file-submodule) ' + vscode.l10n.t('Select project'), 'o.pickProjectAndStart', 'rgb(90, 218, 90)' );