|
From: <xue...@us...> - 2003-09-22 12:56:22
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv16215
Modified Files:
translator.nsi
Log Message:
Updated to use new custom UI (for improved banner display) and to support Greek.
Index: translator.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/translator.nsi,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** translator.nsi 15 Aug 2003 18:20:29 -0000 1.1
--- translator.nsi 22 Sep 2003 12:56:14 -0000 1.2
***************
*** 59,62 ****
--- 59,63 ----
# windows\POPFileIcon\popfile.ico
#
+ # windows\UI\pfi_modern.exe
# windows\UI\pfi_headerbmpr.exe
#
***************
*** 85,89 ****
;
; This version of the script has been tested with NSIS 2.0b4 (CVS) after updating it by using
! ; the 11 August 2003 (19:44 GMT) version of the NSIS CVS snapshot.
#--------------------------------------------------------------------------
--- 86,90 ----
;
; This version of the script has been tested with NSIS 2.0b4 (CVS) after updating it by using
! ; the 27 August 2003 (19:44 GMT) version of the NSIS CVS snapshot.
#--------------------------------------------------------------------------
***************
*** 154,160 ****
!ifndef ENGLISH_ONLY
! !define MUI_VERSION "0.6.0 (ML)"
!else
! !define MUI_VERSION "0.6.0 (English)"
!endif
--- 155,161 ----
!ifndef ENGLISH_ONLY
! !define MUI_VERSION "0.6.1 (ML)"
!else
! !define MUI_VERSION "0.6.1 (English)"
!endif
***************
*** 211,219 ****
; representing the following values: Major.Minor.Release.Build
! VIProductVersion "0.6.0.0"
VIAddVersionKey "ProductName" "POPFile Installer Language Testbed"
VIAddVersionKey "Comments" "POPFile Homepage: http://popfile.sf.net"
! VIAddVersionKey "CompanyName" "POPFile Team"
VIAddVersionKey "LegalCopyright" "© 2001-2003 John Graham-Cumming"
VIAddVersionKey "FileDescription" "POPFile Installer Language Testbed"
--- 212,220 ----
; representing the following values: Major.Minor.Release.Build
! VIProductVersion "0.6.1.0"
VIAddVersionKey "ProductName" "POPFile Installer Language Testbed"
VIAddVersionKey "Comments" "POPFile Homepage: http://popfile.sf.net"
! VIAddVersionKey "CompanyName" "The POPFile Project"
VIAddVersionKey "LegalCopyright" "© 2001-2003 John Graham-Cumming"
VIAddVersionKey "FileDescription" "POPFile Installer Language Testbed"
***************
*** 328,331 ****
--- 329,338 ----
;-----------------------------------------
+ ; The banner provided by the default 'modern.exe' UI does not provide much room for the
+ ; two lines of text, e.g. the German version is truncated, so we use a custom UI which
+ ; provides slightly wider text areas. Each area is still limited to a single line of text.
+
+ !define MUI_UI "UI\pfi_modern.exe"
+
; The 'hdr-common.bmp' logo is only 90 x 57 pixels, much smaller than the 150 x 57 pixel
; space provided by the default 'modern_headerbmpr.exe' UI, so we use a custom UI which
***************
*** 443,446 ****
--- 450,454 ----
!insertmacro PFI_LANG_LOAD "Spanish"
!insertmacro PFI_LANG_LOAD "French"
+ !insertmacro PFI_LANG_LOAD "Greek"
!insertmacro PFI_LANG_LOAD "Japanese"
!insertmacro PFI_LANG_LOAD "Korean"
***************
*** 796,799 ****
--- 804,808 ----
!insertmacro UI_LANG_CONFIG "SPANISH" "Español"
!insertmacro UI_LANG_CONFIG "FRENCH" "Francais"
+ !insertmacro UI_LANG_CONFIG "GREEK" "Hellenic"
!insertmacro UI_LANG_CONFIG "JAPANESE" "Nihongo"
!insertmacro UI_LANG_CONFIG "KOREAN" "Korean"
|