Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12199 Modified Files: Tag: b0_22_2 adduser-Version.nsh adduser.nsi installer.nsi MonitorCC.nsi pfi-languages.nsh pfi-library.nsh Log Message: Avoid the need to patch the standard NSIS MUI Japanese language file in order to change the language selection menu entry from "Japanese" to "Nihongo". Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.242.4.6 retrieving revision 1.242.4.7 diff -C2 -d -r1.242.4.6 -r1.242.4.7 *** installer.nsi 29 Aug 2006 15:55:45 -0000 1.242.4.6 --- installer.nsi 5 Dec 2006 20:33:50 -0000 1.242.4.7 *************** *** 48,63 **** #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.19" compiler, ! ; released 6 August 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.19-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.19_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.19 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ --- 48,63 ---- #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.22" compiler, ! ; released 27 November 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.22-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.22_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.22 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ *************** *** 72,79 **** ; These "PFI_LANG_NSISDL_PLURAL" warnings can be safely ignored (at present only the ; 'Japanese-pfi.nsh' file generates this warning). - ; - ; NOTE: The language selection menu order used in this script assumes that the NSIS MUI - ; 'Japanese.nsh' language file has been patched to use 'Nihongo' instead of 'Japanese' - ; [see 'SMALL NSIS PATCH REQUIRED' in the 'pfi-languages.nsh' file] ; INSTALLER SIZE: The LZMA compression method is used to reduce the size of the 'setup.exe' --- 72,75 ---- *************** *** 168,173 **** # (assuming that the default compression method is used). If the command-line switch # /DNO_KAKASI is used then a smaller installer can be built by omitting the Japanese support. - # - # SMALL NSIS PATCH REQUIRED: See 'pfi-languages.nsh' for details. #-------------------------------------------------------------------------- --- 164,167 ---- *************** *** 618,622 **** ; At least one language must be specified for the installer (the default is "English") ! !insertmacro PFI_LANG_LOAD "English" ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' --- 612,616 ---- ; At least one language must be specified for the installer (the default is "English") ! !insertmacro PFI_LANG_LOAD "English" "-" ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' *************** *** 677,684 **** --- 671,680 ---- ReserveFile "${NSISDIR}\Plugins\Banner.dll" ReserveFile "${NSISDIR}\Plugins\DumpLog.dll" + ReserveFile "${NSISDIR}\Plugins\inetc.dll" ReserveFile "${NSISDIR}\Plugins\NSISdl.dll" ReserveFile "${NSISDIR}\Plugins\System.dll" ReserveFile "${NSISDIR}\Plugins\untgz.dll" ReserveFile "${NSISDIR}\Plugins\UserInfo.dll" + ReserveFile "${NSISDIR}\Plugins\vpatch.dll" ReserveFile "ioG.ini" ReserveFile "${C_RELEASE_NOTES}" *************** *** 1203,1221 **** SetOutPath "$G_MPLIBDIR" ! File "${C_PERL_DIR}\site\lib\LWP.pm" File "${C_PERL_DIR}\lib\re.pm" ! File "${C_PERL_DIR}\site\lib\URI.pm" SetOutPath "$G_MPLIBDIR\HTTP" ! File /r "${C_PERL_DIR}\site\lib\HTTP\*" SetOutPath "$G_MPLIBDIR\LWP" ! File /r "${C_PERL_DIR}\site\lib\LWP\*" SetOutPath "$G_MPLIBDIR\Net" ! File "${C_PERL_DIR}\site\lib\Net\HTT*" SetOutPath "$G_MPLIBDIR\Net\HTTP" ! File "${C_PERL_DIR}\site\lib\Net\HTTP\*" SetOutPath "$G_MPLIBDIR\SOAP" --- 1199,1217 ---- SetOutPath "$G_MPLIBDIR" ! File "${C_PERL_DIR}\lib\LWP.pm" File "${C_PERL_DIR}\lib\re.pm" ! File "${C_PERL_DIR}\lib\URI.pm" SetOutPath "$G_MPLIBDIR\HTTP" ! File /r "${C_PERL_DIR}\lib\HTTP\*" SetOutPath "$G_MPLIBDIR\LWP" ! File /r "${C_PERL_DIR}\lib\LWP\*" SetOutPath "$G_MPLIBDIR\Net" ! File "${C_PERL_DIR}\lib\Net\HTT*" SetOutPath "$G_MPLIBDIR\Net\HTTP" ! File "${C_PERL_DIR}\lib\Net\HTTP\*" SetOutPath "$G_MPLIBDIR\SOAP" *************** *** 1226,1233 **** SetOutPath "$G_MPLIBDIR\URI" ! File /r "${C_PERL_DIR}\site\lib\URI\*" SetOutPath "$G_MPLIBDIR\XML" ! File /r "${C_PERL_DIR}\site\lib\XML\*" SetOutPath "$G_MPLIBDIR\XMLRPC" --- 1222,1229 ---- SetOutPath "$G_MPLIBDIR\URI" ! File /r "${C_PERL_DIR}\lib\URI\*" SetOutPath "$G_MPLIBDIR\XML" ! File /r "${C_PERL_DIR}\lib\XML\*" SetOutPath "$G_MPLIBDIR\XMLRPC" Index: pfi-languages.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-languages.nsh,v retrieving revision 1.2.6.5 retrieving revision 1.2.6.6 diff -C2 -d -r1.2.6.5 -r1.2.6.6 *** pfi-languages.nsh 29 Aug 2006 15:49:19 -0000 1.2.6.5 --- pfi-languages.nsh 5 Dec 2006 20:33:50 -0000 1.2.6.6 *************** *** 29,33 **** # For example, to remove support for the 'Dutch' language, comment-out the line # ! # !insertmacro PFI_LANG_LOAD "Dutch" # #-------------------------------------------------------------------------- --- 29,33 ---- # For example, to remove support for the 'Dutch' language, comment-out the line # ! # !insertmacro PFI_LANG_LOAD "Dutch" "-" ; Language 1043 # #-------------------------------------------------------------------------- *************** *** 53,76 **** # required to the code in 'adduser.nsi' which attempts to select an appropriate UI language. #-------------------------------------------------------------------------- - # SMALL NSIS PATCH REQUIRED: - # - # The POPFile User Interface 'Language' menu uses the name 'Nihongo' to select the Japanese - # language texts. The NSIS default name used to select the Japanese language texts is 'Japanese' - # which can cause some confusion. - # - # It is an easy matter to make the installer display 'Nihongo' in the list of languages offered. - # However this requires a small change to one of the NSIS MUI language files: - # - # In the file ${NSISDIR}\Contrib\Modern UI\Language files\Japanese.nsh, change the value of the - # MUI_LANGNAME string from "Japanese" to "Nihongo". For example, using the file supplied with - # NSIS 2.19, released 6 August 2006, change line 13 from: - # - # !define MUI_LANGNAME "Japanese" ;(ú{ê) Use only ASCII characters (if this is not possible, use the English name) - # - # to: - # - # !define MUI_LANGNAME "Nihongo" ;(ú{ê) Use only ASCII characters (if this is not possible, use the English name) - # - #-------------------------------------------------------------------------- # USAGE EXAMPLES # --- 53,56 ---- *************** *** 82,86 **** # ; At least one language must be specified for the installer (the default is "English") # ! # !insertmacro PFI_LANG_LOAD "English" # # ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' --- 62,66 ---- # ; At least one language must be specified for the installer (the default is "English") # ! # !insertmacro PFI_LANG_LOAD "English" "-" # # ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' *************** *** 94,98 **** # ; Default language (appears first in the drop-down list) # ! # !insertmacro PFI_LANG_LOAD "English" # # ; Additional languages supported by the utility --- 74,78 ---- # ; Default language (appears first in the drop-down list) # ! # !insertmacro PFI_LANG_LOAD "English" "-" # # ; Additional languages supported by the utility *************** *** 108,113 **** ; before including this file (which is why "English" does not appear in the list below). ! ; NOTE: The order used here assumes that the NSIS MUI 'Japanese.nsh' language file has ! ; been patched to use 'Nihongo' instead of 'Japanese' [see 'SMALL NSIS PATCH REQUIRED' above] ; Currently a subset of the languages supported by NSIS MUI 1.75 (using the NSIS names) --- 88,93 ---- ; before including this file (which is why "English" does not appear in the list below). ! ; NOTE: The order used here makes the names appear in alphabetic order in the language ! ; selection menu (NB we override the normal "Japanese" menu entry with "Nihongo" here) ; Currently a subset of the languages supported by NSIS MUI 1.75 (using the NSIS names) *************** *** 124,153 **** ; Note: 'English' is 'Language 1033' ! !insertmacro PFI_LANG_LOAD "Arabic" ; Language 1025 ! !insertmacro PFI_LANG_LOAD "Bulgarian" ; Language 1026 ! !insertmacro PFI_LANG_LOAD "Catalan" ; Language 1027 ! !insertmacro PFI_LANG_LOAD "SimpChinese" ; Language 2052 ! !insertmacro PFI_LANG_LOAD "TradChinese" ; Language 1028 ! !insertmacro PFI_LANG_LOAD "Czech" ; Language 1029 ! !insertmacro PFI_LANG_LOAD "Danish" ; Language 1030 ! !insertmacro PFI_LANG_LOAD "German" ; Language 1031 ! !insertmacro PFI_LANG_LOAD "Spanish" ; Language 1034 ! !insertmacro PFI_LANG_LOAD "French" ; Language 1036 ! !insertmacro PFI_LANG_LOAD "Greek" ; Language 1032 ! !insertmacro PFI_LANG_LOAD "Italian" ; Language 1040 ! !insertmacro PFI_LANG_LOAD "Korean" ; Language 1042 ! !insertmacro PFI_LANG_LOAD "Hungarian" ; Language 1038 ! !insertmacro PFI_LANG_LOAD "Dutch" ; Language 1043 ! !insertmacro PFI_LANG_LOAD "Japanese" ; Language 1041 ! !insertmacro PFI_LANG_LOAD "Norwegian" ; Language 1044 ! !insertmacro PFI_LANG_LOAD "Polish" ; Language 1045 ! !insertmacro PFI_LANG_LOAD "Portuguese" ; Language 2070 ! !insertmacro PFI_LANG_LOAD "PortugueseBR" ; Language 1046 ! !insertmacro PFI_LANG_LOAD "Russian" ; Language 1049 ! !insertmacro PFI_LANG_LOAD "Slovak" ; Language 1051 ! !insertmacro PFI_LANG_LOAD "Finnish" ; Language 1035 ! !insertmacro PFI_LANG_LOAD "Swedish" ; Language 1053 ! !insertmacro PFI_LANG_LOAD "Turkish" ; Language 1055 ! !insertmacro PFI_LANG_LOAD "Ukrainian" ; Language 1058 #-------------------------------------------------------------------------- --- 104,136 ---- ; Note: 'English' is 'Language 1033' ! ; Note: The "-" parameter means "use the language name specified in the standard NSIS ! ; MUI language file when adding the language to the installer's language selection menu" ! ! !insertmacro PFI_LANG_LOAD "Arabic" "-" ; Language 1025 ! !insertmacro PFI_LANG_LOAD "Bulgarian" "-" ; Language 1026 ! !insertmacro PFI_LANG_LOAD "Catalan" "-" ; Language 1027 ! !insertmacro PFI_LANG_LOAD "SimpChinese" "-" ; Language 2052 ! !insertmacro PFI_LANG_LOAD "TradChinese" "-" ; Language 1028 ! !insertmacro PFI_LANG_LOAD "Czech" "-" ; Language 1029 ! !insertmacro PFI_LANG_LOAD "Danish" "-" ; Language 1030 ! !insertmacro PFI_LANG_LOAD "German" "-" ; Language 1031 ! !insertmacro PFI_LANG_LOAD "Spanish" "-" ; Language 1034 ! !insertmacro PFI_LANG_LOAD "French" "-" ; Language 1036 ! !insertmacro PFI_LANG_LOAD "Greek" "-" ; Language 1032 ! !insertmacro PFI_LANG_LOAD "Italian" "-" ; Language 1040 ! !insertmacro PFI_LANG_LOAD "Korean" "-" ; Language 1042 ! !insertmacro PFI_LANG_LOAD "Hungarian" "-" ; Language 1038 ! !insertmacro PFI_LANG_LOAD "Dutch" "-" ; Language 1043 ! !insertmacro PFI_LANG_LOAD "Japanese" "Nihongo" ; Language 1041 ! !insertmacro PFI_LANG_LOAD "Norwegian" "-" ; Language 1044 ! !insertmacro PFI_LANG_LOAD "Polish" "-" ; Language 1045 ! !insertmacro PFI_LANG_LOAD "Portuguese" "-" ; Language 2070 ! !insertmacro PFI_LANG_LOAD "PortugueseBR" "-" ; Language 1046 ! !insertmacro PFI_LANG_LOAD "Russian" "-" ; Language 1049 ! !insertmacro PFI_LANG_LOAD "Slovak" "-" ; Language 1051 ! !insertmacro PFI_LANG_LOAD "Finnish" "-" ; Language 1035 ! !insertmacro PFI_LANG_LOAD "Swedish" "-" ; Language 1053 ! !insertmacro PFI_LANG_LOAD "Turkish" "-" ; Language 1055 ! !insertmacro PFI_LANG_LOAD "Ukrainian" "-" ; Language 1058 #-------------------------------------------------------------------------- Index: MonitorCC.nsi =================================================================== RCS file: /cvsroot/popfile/windows/MonitorCC.nsi,v retrieving revision 1.19.4.4 retrieving revision 1.19.4.5 diff -C2 -d -r1.19.4.4 -r1.19.4.5 *** MonitorCC.nsi 29 Aug 2006 15:59:40 -0000 1.19.4.4 --- MonitorCC.nsi 5 Dec 2006 20:33:50 -0000 1.19.4.5 *************** *** 24,39 **** #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.19" compiler, ! ; released 6 August 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.19-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.19_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.19 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ --- 24,39 ---- #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.22" compiler, ! ; released 27 November 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.22-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.22_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.22 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ *************** *** 111,115 **** Name "${C_PFI_PRODUCT}" ! !define C_PFI_VERSION "0.2.0" !define C_OUTFILE "monitorcc.exe" --- 111,115 ---- Name "${C_PFI_PRODUCT}" ! !define C_PFI_VERSION "0.2.3" !define C_OUTFILE "monitorcc.exe" *************** *** 306,311 **** ; (1) The MUI_LANGUAGE macro loads the standard MUI text strings for a particular language ; (2) '*-pfi.nsh' contains the text strings used for pages, progress reports, logs etc ! !macro PFI_LANG_LOAD LANG !insertmacro MUI_LANGUAGE "${LANG}" !include "languages\${LANG}-pfi.nsh" --- 306,319 ---- ; (1) The MUI_LANGUAGE macro loads the standard MUI text strings for a particular language ; (2) '*-pfi.nsh' contains the text strings used for pages, progress reports, logs etc + ; (3) Normally the MUI's language selection menu uses the name defined in the MUI language + ; file, however it is possible to override this by supplying an alternative string + ; (the MENUNAME parameter in this macro). At present the only alternative string used + ; is "Nihongo" which replaces "Japanese" to make things easier for non-English-speaking + ; users. ! !macro PFI_LANG_LOAD LANG MENUNAME ! !if "${MENUNAME}" != "-" ! !define MUI_${LANG}_LANGNAME "${MENUNAME}" ! !endif !insertmacro MUI_LANGUAGE "${LANG}" !include "languages\${LANG}-pfi.nsh" *************** *** 318,322 **** ; Default language (appears first in the drop-down list) ! !insertmacro PFI_LANG_LOAD "English" ; Additional languages supported by the utility --- 326,330 ---- ; Default language (appears first in the drop-down list) ! !insertmacro PFI_LANG_LOAD "English" "-" ; Additional languages supported by the utility Index: pfi-library.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-library.nsh,v retrieving revision 1.53.4.5 retrieving revision 1.53.4.6 diff -C2 -d -r1.53.4.5 -r1.53.4.6 *** pfi-library.nsh 3 Dec 2006 15:28:36 -0000 1.53.4.5 --- pfi-library.nsh 5 Dec 2006 20:33:50 -0000 1.53.4.6 *************** *** 58,62 **** #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.2.1" #-------------------------------------------------------------------------- --- 58,62 ---- #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.2.3" #-------------------------------------------------------------------------- *************** *** 142,157 **** ; (1) The MUI_LANGUAGE macro loads the standard MUI text strings for a particular language ; (2) '*-pfi.nsh' contains the text strings used for pages, progress reports, logs etc ! !ifdef ADDSSL | TRANSLATOR | TRANSLATOR_AUW ! !macro PFI_LANG_LOAD LANG ! !insertmacro MUI_LANGUAGE "${LANG}" ! !include "..\languages\${LANG}-pfi.nsh" ! !macroend ! !else ! !macro PFI_LANG_LOAD LANG ! !insertmacro MUI_LANGUAGE "${LANG}" ! !include "languages\${LANG}-pfi.nsh" ! !macroend ! !endif #-------------------------------------------------------------------------- --- 142,162 ---- ; (1) The MUI_LANGUAGE macro loads the standard MUI text strings for a particular language ; (2) '*-pfi.nsh' contains the text strings used for pages, progress reports, logs etc + ; (3) Normally the MUI's language selection menu uses the name defined in the MUI language + ; file, however it is possible to override this by supplying an alternative string + ; (the MENUNAME parameter in this macro). At present the only alternative string used + ; is "Nihongo" which replaces "Japanese" to make things easier for non-English-speaking + ; users - see 'pfi-languages.nsh' for details. ! !macro PFI_LANG_LOAD LANG MENUNAME ! !if "${MENUNAME}" != "-" ! !define MUI_${LANG}_LANGNAME "${MENUNAME}" ! !endif ! !insertmacro MUI_LANGUAGE "${LANG}" ! !ifdef ADDSSL | TRANSLATOR | TRANSLATOR_AUW ! !include "..\languages\${LANG}-pfi.nsh" ! !else ! !include "languages\${LANG}-pfi.nsh" ! !endif ! !macroend #-------------------------------------------------------------------------- *************** *** 4124,4127 **** --- 4129,4133 ---- !undef DECIMAL_DIGIT + !undef BAD_OFFSET FunctionEnd Index: adduser-Version.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Version.nsh,v retrieving revision 1.6.2.8 retrieving revision 1.6.2.9 diff -C2 -d -r1.6.2.8 -r1.6.2.9 *** adduser-Version.nsh 28 Sep 2006 18:30:06 -0000 1.6.2.8 --- adduser-Version.nsh 5 Dec 2006 20:33:50 -0000 1.6.2.9 *************** *** 7,11 **** #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.3.1" #-------------------------------------------------------------------------- --- 7,11 ---- #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.3.4" #-------------------------------------------------------------------------- Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.59.4.9 retrieving revision 1.59.4.10 diff -C2 -d -r1.59.4.9 -r1.59.4.10 *** adduser.nsi 28 Sep 2006 18:30:06 -0000 1.59.4.9 --- adduser.nsi 5 Dec 2006 20:33:50 -0000 1.59.4.10 *************** *** 34,49 **** #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.19" compiler, ! ; released 6 August 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.19-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.19_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.19 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ --- 34,49 ---- #-------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS v2.22" compiler, ! ; released 27 November 2006. This particular compiler can be downloaded from ! ; http://prdownloads.sourceforge.net/nsis/nsis-2.22-setup.exe?download !define ${NSIS_VERSION}_found ! !ifndef v2.22_found !warning \ "$\r$\n\ $\r$\n*** NSIS COMPILER WARNING:\ $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS v2.22 compiler\ $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ $\r$\n***\ *************** *** 54,60 **** !undef ${NSIS_VERSION}_found ! ; NOTE: The language selection menu order used in this script assumes that the NSIS MUI ! ; 'Japanese.nsh' language file has been patched to use 'Nihongo' instead of 'Japanese' ! ; [see 'SMALL NSIS PATCH REQUIRED' in the 'pfi-languages.nsh' file] #-------------------------------------------------------------------------- --- 54,59 ---- !undef ${NSIS_VERSION}_found ! ; NOTE: The language selection menu order used in this script assumes that "Nihongo" is ! ; used instead of "Japanese" in the language selection menu (see the 'pfi-languages.nsh' file) #-------------------------------------------------------------------------- *************** *** 127,131 **** # For example, to remove support for the 'Dutch' language, comment-out the line # ! # !insertmacro PFI_LANG_LOAD "Dutch" # # in the 'pfi-languages.nsh' file, and comment-out the line --- 126,130 ---- # For example, to remove support for the 'Dutch' language, comment-out the line # ! # !insertmacro PFI_LANG_LOAD "Dutch" "-" ; Language 1043 # # in the 'pfi-languages.nsh' file, and comment-out the line *************** *** 665,669 **** ; At least one language must be specified for the installer (the default is "English") ! !insertmacro PFI_LANG_LOAD "English" ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' --- 664,668 ---- ; At least one language must be specified for the installer (the default is "English") ! !insertmacro PFI_LANG_LOAD "English" "-" ; Conditional compilation: if ENGLISH_MODE is defined, support only 'English' |