From cec559a9d0b6698c3b33f3ac88701e1d375a096f Mon Sep 17 00:00:00 2001 From: Mark Wiemer <7833360+mark-wiemer@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:11:21 -0800 Subject: [PATCH] Rename AutoHotkey2 to AHK v2 in user-facing text (#78) --- client/src/extension.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/extension.ts b/client/src/extension.ts index 72f6528..43ed9fd 100644 --- a/client/src/extension.ts +++ b/client/src/extension.ts @@ -66,13 +66,13 @@ const textdecoders = [new TextDecoder('utf8', { fatal: true }), new TextDecoder( const isWindows = process.platform === 'win32'; let extlist: string[] = [], debugexts: Record = {}, langs: string[] = []; const loadedCollection = { - 'ahk2.browse': 'Browse your file system to find AutoHotkey2 interpreter', + 'ahk2.browse': 'Browse your file system to find AHK v2 interpreter', 'ahk2.compiledfailed': 'Compiled failed!', 'ahk2.compiledsuccessfully': 'Compiled successfully!', 'ahk2.current': 'Current: {0}', 'ahk2.debugextnotexist': 'The debug extension was not found, please install the debug extension first!', 'ahk2.diagnose.all': 'Diagnostic All', - 'ahk2.enterahkpath': 'Enter path to AutoHotkey2 interpreter', + 'ahk2.enterahkpath': 'Enter path to AHK v2 interpreter', 'ahk2.entercmd': 'Enter the command line parameters that need to be passed', 'ahk2.enterorfind': 'Enter path or find an existing interpreter', 'ahk2.enterversion': 'Enter version', @@ -80,7 +80,7 @@ const loadedCollection = { 'ahk2.find': 'Find...', 'ahk2.savebeforecompilation': 'Please save the script before compilation', 'ahk2.select': 'Select', - 'ahk2.set.interpreter': 'Select AutoHotkey2 Interpreter', + 'ahk2.set.interpreter': 'Select AHK v2 Interpreter', 'ahk2.unknownversion': 'Unknown version', };