;NSIS Modern User Interface ;Start Menu Folder Selection Example Script ;Written by Joost Verburg ;-------------------------------- ;Include Modern UI !include "MUI2.nsh" !include "WinMessages.NSH" !include "StrFunc.nsh" !include "EnvVarUpdate.nsh" ;-------------------------------- ;General ;Name and file Name "Zenity 2.28.0" OutFile "zenity-2.28.0_win32-3.exe" ;Default installation folder InstallDir "$PROGRAMFILES\zenity" ;Get installation folder from registry if available InstallDirRegKey HKCU "Software\zenity" "" ;Request application privileges for Windows Vista RequestExecutionLevel user ;-------------------------------- ;Variables Var StartMenuFolder ;-------------------------------- ;Interface Settings !define MUI_ABORTWARNING ;-------------------------------- ;Pages !insertmacro MUI_PAGE_LICENSE "C:\zenity-2.28.0_win32-1\LICENCE.txt" !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY ;Start Menu Folder Page Configuration !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\zenity" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" !insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;-------------------------------- ;Installer Sections Section "zenity 2.28.0" SecDummy SetOutPath "$INSTDIR\" File "C:\zenity-2.28.0_win32-1\LICENCE.TXT" File "C:\zenity-2.28.0_win32-1\README.TXT" SetOutPath "$INSTDIR\bin" File "C:\zenity-2.28.0_win32-1\bin\freetype6.dll" File "C:\zenity-2.28.0_win32-1\bin\iconv.dll" File "C:\zenity-2.28.0_win32-1\bin\intl.dll" File "C:\zenity-2.28.0_win32-1\bin\libart_lgpl_2-2.dll" File "C:\zenity-2.28.0_win32-1\bin\libatk-1.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libcairo-2.dll" File "C:\zenity-2.28.0_win32-1\bin\libfontconfig-1.dll" File "C:\zenity-2.28.0_win32-1\bin\libfreetype.dll" File "C:\zenity-2.28.0_win32-1\bin\libgailutil-18.dll" File "C:\zenity-2.28.0_win32-1\bin\libgconf-2-4.dll" File "C:\zenity-2.28.0_win32-1\bin\libgdk-win32-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgdk_pixbuf-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgio-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libglade-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libglib-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgmodule-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgnomecanvas-2-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgobject-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgthread-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libgtk-win32-2.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libiconv-2.dll" File "C:\zenity-2.28.0_win32-1\bin\libintl-2.dll" File "C:\zenity-2.28.0_win32-1\bin\libORBit-2-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libpango-1.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libpangocairo-1.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libpangoft2-1.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libpangowin32-1.0-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libpng12-0.dll" File "C:\zenity-2.28.0_win32-1\bin\libxml2.dll" File "C:\zenity-2.28.0_win32-1\bin\zenity.exe" File "C:\zenity-2.28.0_win32-1\bin\zlib1.dll" SetOutPath "$INSTDIR\lib" File "C:\zenity-2.28.0_win32-1\lib\charset.alias" SetOutPath "$INSTDIR\lib\gtk-2.0\2.10.0\engines" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\engines\libpixmap.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\engines\libwimp.dll" SetOutPath "$INSTDIR\lib\gtk-2.0\2.10.0\loaders" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ani.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-bmp.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-gif.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-icns.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ico.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-jpeg.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pcx.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-png.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pnm.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ras.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tga.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tiff.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-wbmp.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xbm.dll" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xpm.dll" SetOutPath "$INSTDIR\lib\gtk-2.0\modules\modules" File "C:\zenity-2.28.0_win32-1\lib\gtk-2.0\modules\modules\libgail.dll" SetOutPath "$INSTDIR\examples" File "C:\zenity-2.28.0_win32-1\examples\calendar.cmd" File "C:\zenity-2.28.0_win32-1\examples\list.cmd" File "C:\zenity-2.28.0_win32-1\examples\progress-helper.cmd" File "C:\zenity-2.28.0_win32-1\examples\progress.cmd" File "C:\zenity-2.28.0_win32-1\examples\question.cmd" File "C:\zenity-2.28.0_win32-1\examples\README.TXT" SetOutPath "$INSTDIR\share\data" File "C:\zenity-2.28.0_win32-1\share\data\zenity-calendar.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-entry.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-file.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-list.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-notification.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-progress.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-scale.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity-text.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity.png" File "C:\zenity-2.28.0_win32-1\share\data\zenity.ui" SetOutPath "$INSTDIR\etc\fonts\" File "C:\zenity-2.28.0_win32-1\etc\fonts\fonts.conf" SetOutPath "$INSTDIR\etc\pango\" File "C:\zenity-2.28.0_win32-1\etc\pango\pango.modules" SetOutPath "$INSTDIR\etc\gtk-2.0\" File "C:\zenity-2.28.0_win32-1\etc\gtk-2.0\gtkrc" File "C:\zenity-2.28.0_win32-1\etc\gtk-2.0\gtkrc.default" File "C:\zenity-2.28.0_win32-1\etc\gtk-2.0\gtk.immodules" File "C:\zenity-2.28.0_win32-1\etc\gtk-2.0\gdk-pixbuf.loaders" File "C:\zenity-2.28.0_win32-1\etc\gtk-2.0\im-multipress.conf" SetOutPath "$INSTDIR\share\Themes\MS-Windows\gtk-2.0\" File "C:\zenity-2.28.0_win32-1\share\Themes\MS-Windows\gtk-2.0\gtkrc" SetOutPath "$INSTDIR\share\locale\am\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\am\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\am\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\am\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ar\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ar\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ar\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ar\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\as\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\as\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\as\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\as\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\az\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\az\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\az\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\az\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\be\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\be\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\be\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\be\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\be@latin\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\be@latin\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\be@latin\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\be@latin\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\bg\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\bg\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bg\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bg\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\bn\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\bn\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bn\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bn\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\bn_IN\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\bn_IN\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bn_IN\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bn_IN\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\bs\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\bs\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bs\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\bs\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ca\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ca\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ca\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ca\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ca@valencia\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ca@valencia\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ca@valencia\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\cs\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\cs\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\cs\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\cs\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\cy\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\cy\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\cy\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\cy\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\da\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\da\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\da\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\da\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\de\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\de\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\de\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\de\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\dz\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\dz\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\dz\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\dz\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\el\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\el\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\el\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\el\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\en_CA\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\en_CA\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\en_CA\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\en_CA\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\en_GB\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\en_GB\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\en_GB\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\en_GB\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\es\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\es\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\es\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\es\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\et\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\et\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\et\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\et\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\eu\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\eu\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\eu\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\eu\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\fa\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\fa\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fa\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fa\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\fi\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\fi\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fi\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fi\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\fr\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\fr\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fr\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\fr\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ga\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ga\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ga\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ga\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\gl\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\gl\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\gl\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\gl\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\gu\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\gu\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\gu\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\gu\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\he\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\he\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\he\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\he\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\hi\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\hi\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hi\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hi\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\hr\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\hr\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hr\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hr\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\hu\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\hu\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hu\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\hu\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\id\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\id\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\id\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\id\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\is\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\is\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\is\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\is\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\it\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\it\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\it\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\it\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ja\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ja\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ja\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ja\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ka\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ka\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ka\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ka\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\kn\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\kn\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\kn\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\kn\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ko\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ko\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ko\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ko\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ku\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ku\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ku\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ku\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\lt\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\lt\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\lt\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\lt\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\lv\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\lv\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\lv\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\lv\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\mai\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\mai\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mai\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mai\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\mi\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\mi\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mi\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mi\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\mk\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\mk\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mk\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mk\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ml\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ml\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ml\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ml\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\mn\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\mn\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mn\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mn\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\mr\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\mr\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mr\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\mr\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ms\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ms\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ms\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ms\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\nb\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\nb\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nb\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nb\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ne\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ne\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ne\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ne\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\nl\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\nl\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nl\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nl\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\nn\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\nn\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nn\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\nn\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\oc\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\oc\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\oc\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\oc\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\or\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\or\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\or\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\or\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\pa\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\pa\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pa\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pa\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\pl\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\pl\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pl\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pl\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ps\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ps\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ps\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ps\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\pt\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\pt\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pt\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pt\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\pt_BR\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pt_BR\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\pt_BR\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ro\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ro\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ro\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ro\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ru\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ru\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ru\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ru\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\rw\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\rw\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\rw\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\rw\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\si\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\si\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\si\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\si\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sk\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sk\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sk\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sk\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sl\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sl\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sl\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sl\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sq\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sq\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sq\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sq\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sr\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sr\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sr\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sr\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sr@latin\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sr@latin\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sr@latin\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sr@latin\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\sv\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\sv\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sv\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\sv\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\ta\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\ta\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ta\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\ta\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\te\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\te\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\te\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\te\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\th\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\th\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\th\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\th\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\tr\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\tr\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\tr\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\tr\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\uk\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\uk\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\uk\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\uk\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\vi\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\vi\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\vi\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\vi\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\xh\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\xh\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\xh\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\xh\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\zh_CN\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_CN\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_CN\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\zh_HK\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\zh_HK\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_HK\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_HK\LC_MESSAGES\zenity.mo" SetOutPath "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\" File "C:\zenity-2.28.0_win32-1\share\locale\zh_TW\LC_MESSAGES\gtk20-properties.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_TW\LC_MESSAGES\gtk20.mo" File "C:\zenity-2.28.0_win32-1\share\locale\zh_TW\LC_MESSAGES\zenity.mo" ;ADD YOUR OWN FILES HERE... ; include for some of the windows messages defines !include "winmessages.nsh" ; HKLM (all users) vs HKCU (current user) defines !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hkcu 'HKCU "Environment"' ; set variable WriteRegExpandStr ${env_hklm} ZENITY_DATADIR "$INSTDIR\share\" ; make sure windows knows about the change SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 ${EnvVarUpdate} $0 "PATH" "A" "HKLM" "$INSTDIR\bin\" ;Store installation folder WriteRegStr HKCU "Software\zenity" "" $INSTDIR ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application ;Create shortcuts CreateDirectory "$SMPROGRAMS\$StartMenuFolder" CreateShortCut "$SMPROGRAMS\$StartMenuFolder\ReadMe.lnk" "$INSTDIR\README.TXT" CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Examples.lnk" "$INSTDIR\examples\" CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe" !insertmacro MUI_STARTMENU_WRITE_END SectionEnd ;-------------------------------- ;Descriptions ;Language strings LangString DESC_SecDummy ${LANG_ENGLISH} "zenity binaries and examples." ;Assign language strings to sections !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy) !insertmacro MUI_FUNCTION_DESCRIPTION_END ;-------------------------------- ;Uninstaller Section Section "Uninstall" ;ADD YOUR OWN FILES HERE... Delete "$INSTDIR\*.*" Delete "$INSTDIR\bin\*.*" Delete "$INSTDIR\lib\*.*" Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\*.*" Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\*.*" Delete "$INSTDIR\lib\gtk-2.0\modules\modules\*.*" Delete "$INSTDIR\examples\*.*" Delete "$INSTDIR\share\data\*.*" Delete "$INSTDIR\etc\fonts\*.*" Delete "$INSTDIR\etc\pango\*.*" Delete "$INSTDIR\etc\gtk-2.0\*.*" Delete "$INSTDIR\share\Themes\MS-Windows\gtk-2.0\*.*" Delete "$INSTDIR\share\locale\am\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ar\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\as\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\az\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\be\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\be@latin\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\bn\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\bn_IN\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\cy\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\dz\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\en_CA\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\eu\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\fa\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ga\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\gu\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\he\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\hi\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\hr\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\id\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\is\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\kn\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ku\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\lt\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\mai\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\mi\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\mk\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ml\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\mn\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\mr\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ms\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ne\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\oc\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\or\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\pa\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ps\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ro\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\rw\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\si\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sq\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sr\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sr@latin\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\ta\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\te\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\th\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\vi\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\xh\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\zh_HK\LC_MESSAGES\*.*" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\*.*" RMDir "$INSTDIR\share\data\" RMDir "$INSTDIR\share\locale\am\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ar\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\as\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\az\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\be\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\be@latin\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\bg\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\bn\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\bn_IN\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\bs\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ca\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\cs\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\cy\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\da\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\de\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\dz\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\el\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\en_CA\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\en_GB\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\es\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\et\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\eu\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\fa\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\fi\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\fr\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ga\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\gl\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\gu\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\he\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\hi\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\hr\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\hu\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\id\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\is\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\it\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ja\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ka\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\kn\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ko\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ku\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\lt\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\lv\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\mai\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\mi\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\mk\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ml\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\mn\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\mr\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ms\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\nb\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ne\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\nl\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\nn\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\oc\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\or\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\pa\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\pl\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ps\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\pt\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ro\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ru\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\rw\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\si\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sk\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sl\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sq\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sr\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sr@latin\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\sv\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\ta\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\te\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\th\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\tr\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\uk\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\vi\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\xh\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\zh_HK\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\" RMDir "$INSTDIR\share\locale\am\" RMDir "$INSTDIR\share\locale\ar\" RMDir "$INSTDIR\share\locale\as\" RMDir "$INSTDIR\share\locale\az\" RMDir "$INSTDIR\share\locale\be\" RMDir "$INSTDIR\share\locale\be@latin\" RMDir "$INSTDIR\share\locale\bg\" RMDir "$INSTDIR\share\locale\bn\" RMDir "$INSTDIR\share\locale\bn_IN\" RMDir "$INSTDIR\share\locale\bs\" RMDir "$INSTDIR\share\locale\ca\" RMDir "$INSTDIR\share\locale\ca@valencia\" RMDir "$INSTDIR\share\locale\cs\" RMDir "$INSTDIR\share\locale\cy\" RMDir "$INSTDIR\share\locale\da\" RMDir "$INSTDIR\share\locale\de\" RMDir "$INSTDIR\share\locale\dz\" RMDir "$INSTDIR\share\locale\el\" RMDir "$INSTDIR\share\locale\en_CA\" RMDir "$INSTDIR\share\locale\en_GB\" RMDir "$INSTDIR\share\locale\es\" RMDir "$INSTDIR\share\locale\et\" RMDir "$INSTDIR\share\locale\eu\" RMDir "$INSTDIR\share\locale\fa\" RMDir "$INSTDIR\share\locale\fi\" RMDir "$INSTDIR\share\locale\fr\" RMDir "$INSTDIR\share\locale\ga\" RMDir "$INSTDIR\share\locale\gl\" RMDir "$INSTDIR\share\locale\gu\" RMDir "$INSTDIR\share\locale\he\" RMDir "$INSTDIR\share\locale\hi\" RMDir "$INSTDIR\share\locale\hr\" RMDir "$INSTDIR\share\locale\hu\" RMDir "$INSTDIR\share\locale\id\" RMDir "$INSTDIR\share\locale\is\" RMDir "$INSTDIR\share\locale\it\" RMDir "$INSTDIR\share\locale\ja\" RMDir "$INSTDIR\share\locale\ka\" RMDir "$INSTDIR\share\locale\kn\" RMDir "$INSTDIR\share\locale\ko\" RMDir "$INSTDIR\share\locale\ku\" RMDir "$INSTDIR\share\locale\lt\" RMDir "$INSTDIR\share\locale\lv\" RMDir "$INSTDIR\share\locale\mai\" RMDir "$INSTDIR\share\locale\mi\" RMDir "$INSTDIR\share\locale\mk\" RMDir "$INSTDIR\share\locale\ml\" RMDir "$INSTDIR\share\locale\mn\" RMDir "$INSTDIR\share\locale\mr\" RMDir "$INSTDIR\share\locale\ms\" RMDir "$INSTDIR\share\locale\nb\" RMDir "$INSTDIR\share\locale\ne\" RMDir "$INSTDIR\share\locale\nl\" RMDir "$INSTDIR\share\locale\nn\" RMDir "$INSTDIR\share\locale\oc\" RMDir "$INSTDIR\share\locale\or\" RMDir "$INSTDIR\share\locale\pa\" RMDir "$INSTDIR\share\locale\pl\" RMDir "$INSTDIR\share\locale\ps\" RMDir "$INSTDIR\share\locale\pt\" RMDir "$INSTDIR\share\locale\pt_BR\" RMDir "$INSTDIR\share\locale\ro\" RMDir "$INSTDIR\share\locale\ru\" RMDir "$INSTDIR\share\locale\rw\" RMDir "$INSTDIR\share\locale\si\" RMDir "$INSTDIR\share\locale\sk\" RMDir "$INSTDIR\share\locale\sl\" RMDir "$INSTDIR\share\locale\sq\" RMDir "$INSTDIR\share\locale\sr\" RMDir "$INSTDIR\share\locale\sr@latin\" RMDir "$INSTDIR\share\locale\sv\" RMDir "$INSTDIR\share\locale\ta\" RMDir "$INSTDIR\share\locale\te\" RMDir "$INSTDIR\share\locale\th\" RMDir "$INSTDIR\share\locale\tr\" RMDir "$INSTDIR\share\locale\uk\" RMDir "$INSTDIR\share\locale\vi\" RMDir "$INSTDIR\share\locale\xh\" RMDir "$INSTDIR\share\locale\zh_CN\" RMDir "$INSTDIR\share\locale\zh_HK\" RMDir "$INSTDIR\share\locale\zh_TW\" RMDir "$INSTDIR\share\locale\" RMDir "$INSTDIR\share\Themes\MS-Windows\gtk-2.0\" RMDir "$INSTDIR\share\Themes\MS-Windows\" RMDir "$INSTDIR\share\Themes\" RMDir "$INSTDIR\share\" RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\engines\" RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\" RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\" RMDir "$INSTDIR\lib\gtk-2.0\modules\modules\" RMDir "$INSTDIR\lib\gtk-2.0\modules\" RMDir "$INSTDIR\lib\gtk-2.0\" RMDir "$INSTDIR\lib\" RMDir "$INSTDIR\examples\" RMDir "$INSTDIR\etc\fonts\" RMDir "$INSTDIR\etc\pango\" RMDir "$INSTDIR\etc\gtk-2.0\" RMDir "$INSTDIR\etc\" RMDir "$INSTDIR\bin\" RMDir "$INSTDIR\" !insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder Delete "$SMPROGRAMS\$StartMenuFolder\*.*" RMDir "$SMPROGRAMS\$StartMenuFolder" DeleteRegKey /ifempty HKCU "Software\zenity" ; delete variable DeleteRegValue ${env_hklm} ZENITY_DATADIR ; make sure windows knows about the change SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 ${un.EnvVarUpdate} $0 "PATH" "R" "HKLM" "$INSTDIR\bin\" SectionEnd