Skip to content

Commit

Permalink
Rename AutoHotkey2 to AHK v2 in user-facing text (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer authored Nov 8, 2024
1 parent 53d6b48 commit cec559a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,21 @@ const textdecoders = [new TextDecoder('utf8', { fatal: true }), new TextDecoder(
const isWindows = process.platform === 'win32';
let extlist: string[] = [], debugexts: Record<string, string> = {}, 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',
'ahk2.filenotexist': '\'{0}\' does not exist',
'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',
};

Expand Down

0 comments on commit cec559a

Please sign in to comment.