Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install.iss: rephrase menu item labels #507

Merged
merged 2 commits into from
Jul 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions installer/install.iss
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ Name: icons; Description: Additional icons
Name: icons\quicklaunch; Description: In the Quick Launch; Check: not IsAdminLoggedOn
Name: icons\desktop; Description: On the Desktop
Name: ext; Description: Windows Explorer integration; Types: default
Name: ext\shellhere; Description: Git Bash Here; Types: default
Name: ext\guihere; Description: Git GUI Here; Types: default
Name: ext\shellhere; Description: Open Git Bash here; Types: default
Name: ext\guihere; Description: Open Git GUI here; Types: default
Name: gitlfs; Description: Git LFS (Large File Support); Types: default; Flags: disablenouninstallwarning
Name: assoc; Description: Associate .git* configuration files with the default text editor; Types: default
Name: assoc_sh; Description: Associate .sh files to be run with Bash; Types: default
Expand Down Expand Up @@ -3310,7 +3310,7 @@ begin
end;

if IsComponentSelected('ext\shellhere') then begin
Msg:='Git Ba&sh Here';
Msg:='Open Git Ba&sh here';
Cmd:='"'+AppDir+'\git-bash.exe" "--cd=%1"';
Ico:=AppDir+'\git-bash.exe';
if (not RegWriteStringValue(RootKey,'SOFTWARE\Classes\Directory\shell\git_shell','',Msg)) or
Expand All @@ -3327,7 +3327,7 @@ begin
end;

if IsComponentSelected('ext\guihere') then begin
Msg:='Git &GUI Here';
Msg:='Open Git &GUI here';
Cmd:='"'+AppDir+'\cmd\git-gui.exe" "--working-dir" "%1"';
Ico:=AppDir+'\cmd\git-gui.exe';
if (not RegWriteStringValue(RootKey,'SOFTWARE\Classes\Directory\shell\git_gui','',Msg)) or
Expand Down
Loading