Skip to content

Commit

Permalink
nsis: Fix some comments, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Oct 2, 2018
1 parent 6058c3e commit 5a1bcd4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions nsis/gvim.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ RequestExecutionLevel highest
!define MUI_FINISHPAGE_RUN_TEXT $(str_show_readme)
!define MUI_FINISHPAGE_RUN_PARAMETERS "-R $\"$0\README.txt$\""

# This adds '\vim' to the user choice automagically. The actual value is
# obtained below with ReadINIStr.
# This adds '\Vim' to the user choice automagically. The actual value is
# obtained below with CheckOldVim.
InstallDir "$PROGRAMFILES\Vim"

# Types of installs we can perform:
Expand Down Expand Up @@ -273,7 +273,7 @@ Section "$(str_section_old_ver)" id_section_old_ver
nsExec::Exec "$TEMP\install.exe -uninstall-check"
Pop $3
Delete $TEMP\install.exe
Delete $TEMP\vimini.ini
Delete $TEMP\vimini.ini # install.exe creates this, but we don't need it.

# We may have been put to the background when uninstall did something.
BringToFront
Expand Down Expand Up @@ -319,7 +319,7 @@ Function .onInstSuccess
FunctionEnd

Function .onInstFailed
MessageBox MB_OK|MB_ICONEXCLAMATION "Installation failed. Better luck next time."
MessageBox MB_OK|MB_ICONEXCLAMATION "$(str_msg_install_fail)"
FunctionEnd

##########################################################
Expand Down
2 changes: 1 addition & 1 deletion nsis/lang/japanese.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LangString ^UninstallCaption ${LANG_JAPANESE} \
# These should be better to be fixed by the NSIS upstream.
LangString ^SpaceAvailable ${LANG_JAPANESE} \
"利用可能なディスク容量:"
LangString ^SpaceRequired ${LANG_JAPANESE} \
LangString ^SpaceRequired ${LANG_JAPANESE} \
"必要なディスク容量:"

##############################################################################
Expand Down

0 comments on commit 5a1bcd4

Please sign in to comment.