From f8e09e80ad1bafc16aef0512fdf641df6214febc Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Thu, 2 Feb 2017 09:57:56 +0100 Subject: [PATCH] Another wording change to the PHP executable validation. --- extensions/php/src/features/validationProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/php/src/features/validationProvider.ts b/extensions/php/src/features/validationProvider.ts index 7da55426ef7..3e4d3714578 100644 --- a/extensions/php/src/features/validationProvider.ts +++ b/extensions/php/src/features/validationProvider.ts @@ -184,7 +184,7 @@ export default class PHPValidationProvider { let checkedExecutablePath = this.workspaceStore.get(CheckedExecutablePath, undefined); if (!checkedExecutablePath || checkedExecutablePath !== this.executable) { vscode.window.showInformationMessage( - localize('php.useExecutablePath', 'Do you allow {0} to be executed to lint PHP files?', this.executable), + localize('php.useExecutablePath', 'Do you allow {0} (defined as a workspace setting) to be executed to lint PHP files?', this.executable), { title: localize('php.yes', 'Yes'), id: 'yes'