installer:

- updates
 - support for Korean as LyX menu language

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18601 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2007-05-31 21:21:37 +00:00
parent 6e4b8150bf
commit 6435eb18d6
4 changed files with 25 additions and 13 deletions

View File

@ -1,13 +1,14 @@
Version LyX 1.5pre1-xx-05-2007 Version LyX 1.5pre1-xx-05-2007
- LyX 1.5 pre1 from xx-05-2007 - LyX 1.5 pre1 from xx-05-2007
- support for Farsi
- new Korean and Japanese translation of LyX's menus
- updated to MiKTeX 2.6 (version 2693) - updated to MiKTeX 2.6 (version 2693)
- new Windows Vista-compatible launcher for LyX - new Windows Vista-compatible launcher for LyX
- fixed PDF view program to make it Windows Vista-compatible
- fixed layout file for the LaTeX-package powerdot - fixed layout file for the LaTeX-package powerdot
- support for SVG-images: when Inkscape is installed, it will be - support for SVG-images: when Inkscape is installed, it will be
used as SVG to PDF converter used as SVG to PDF converter
- support to set Hebrew and Japanese as LyX's menu language - support to set Hebrew and Japanese, and Korean as LyX's menu language
Thanks to Pavel Sanda: Thanks to Pavel Sanda:
- new Czech translation of the installer - new Czech translation of the installer

View File

@ -124,12 +124,13 @@
StrCpy ${LangSysEnc} "932" StrCpy ${LangSysEnc} "932"
${endif} ${endif}
# currently no dictionary available # currently no dictionary available
# ${if} ${LangISOCode} = 1042 ${if} ${LangISOCode} = 1042
# StrCpy ${LangCdeSys} "ko" StrCpy ${LangNme} "Korean"
# StrCpy ${LangNmeSys} "Korean" StrCpy ${LangCdeSys} "ko"
# StrCpy ${LangSysEnc} "949" StrCpy ${LangNmeSys} "Korean"
# ${endif} StrCpy ${LangSysEnc} "949"
${endif}
${if} ${LangISOCode} = 1043 ${if} ${LangISOCode} = 1043
StrCpy ${LangNme} "Nederlands" StrCpy ${LangNme} "Nederlands"
@ -438,7 +439,7 @@
StrCpy ${LangCde} "cs_CZ" StrCpy ${LangCde} "cs_CZ"
StrCpy ${LangEnc} "cp-1250" StrCpy ${LangEnc} "cp-1250"
${endif} ${endif}
${if} ${Name} == "Dansk" ${if} ${Name} == "Dansk"
StrCpy ${LangCde} "da_DK" StrCpy ${LangCde} "da_DK"
StrCpy ${LangEnc} "cp-1252" StrCpy ${LangEnc} "cp-1252"
@ -478,17 +479,22 @@
StrCpy ${LangCde} "he_IL" StrCpy ${LangCde} "he_IL"
StrCpy ${LangEnc} "cp-1255" StrCpy ${LangEnc} "cp-1255"
${endif} ${endif}
${if} ${Name} == "Italiano" ${if} ${Name} == "Italiano"
StrCpy ${LangCde} "it_IT" StrCpy ${LangCde} "it_IT"
StrCpy ${LangEnc} "cp-1252" StrCpy ${LangEnc} "cp-1252"
${endif} ${endif}
${if} ${Name} == "Japanese" ${if} ${Name} == "Japanese"
StrCpy ${LangCde} "ja_JP" StrCpy ${LangCde} "ja_JP"
StrCpy ${LangEnc} "cp-932" StrCpy ${LangEnc} "cp-932"
${endif} ${endif}
${if} ${Name} == "Korean"
StrCpy ${LangCde} "ko" # no country code, see the definition in the file "SVN ~/lib/languages"
StrCpy ${LangEnc} "cp-949"
${endif}
${if} ${Name} == "Magyar" ${if} ${Name} == "Magyar"
StrCpy ${LangCde} "hu_HU" StrCpy ${LangCde} "hu_HU"
StrCpy ${LangEnc} "cp-1250" StrCpy ${LangEnc} "cp-1250"

View File

@ -3,10 +3,13 @@ Function UpdateModifiedFiles
# list with modified files for LyX 1.5pre1 xx-05-2007 # list with modified files for LyX 1.5pre1 xx-05-2007
SetOutPath "$INSTDIR\bin" SetOutPath "$INSTDIR\bin"
File "${PRODUCT_SOURCEDIR}\bin\lyx.exe" # always here File "${PRODUCT_SOURCEDIR}\bin\lyx.exe" # always here
File "${PRODUCT_SOURCEDIR}\bin\LyXLauncher.exe"
File "${PRODUCT_SOURCEDIR}\bin\PDFViewWin.exe"
File "${PRODUCT_SOURCEDIR}\bin\tex2lyx.exe" # always here File "${PRODUCT_SOURCEDIR}\bin\tex2lyx.exe" # always here
SetOutPath "$INSTDIR\Resources" SetOutPath "$INSTDIR\Resources"
File "${PRODUCT_SOURCEDIR}\Resources\configure.py" File "${PRODUCT_SOURCEDIR}\Resources\configure.py"
File "${PRODUCT_SOURCEDIR}\Resources\CREDITS" File "${PRODUCT_SOURCEDIR}\Resources\CREDITS"
File "${PRODUCT_SOURCEDIR}\Resources\languages"
File "${PRODUCT_SOURCEDIR}\Resources\unicodesymbols" File "${PRODUCT_SOURCEDIR}\Resources\unicodesymbols"
File /r "${PRODUCT_SOURCEDIR}\Resources\locale" # always here File /r "${PRODUCT_SOURCEDIR}\Resources\locale" # always here
SetOutPath "$INSTDIR\Resources\bind" SetOutPath "$INSTDIR\Resources\bind"
@ -44,7 +47,9 @@ Function UpdateModifiedFiles
File "${PRODUCT_SOURCEDIR}\Resources\images\tabular-insert.xpm" File "${PRODUCT_SOURCEDIR}\Resources\images\tabular-insert.xpm"
SetOutPath "$INSTDIR\Resources\layouts" SetOutPath "$INSTDIR\Resources\layouts"
File "${PRODUCT_SOURCEDIR}\Resources\layouts\beamer.layout" File "${PRODUCT_SOURCEDIR}\Resources\layouts\beamer.layout"
File "${PRODUCT_SOURCEDIR}\Resources\layouts\powerdot.layout" File "${PRODUCT_SOURCEDIR}\Resources\layouts\powerdot.layout"
SetOutPath "$INSTDIR\Resources\lyx2lyx"
File "${PRODUCT_SOURCEDIR}\Resources\lyx2lyx\LyX.py"
SetOutPath "$INSTDIR\Resources\ui" SetOutPath "$INSTDIR\Resources\ui"
File "${PRODUCT_SOURCEDIR}\Resources\ui\default.ui" File "${PRODUCT_SOURCEDIR}\Resources\ui\default.ui"
File "${PRODUCT_SOURCEDIR}\Resources\ui\stdmenus.inc" File "${PRODUCT_SOURCEDIR}\Resources\ui\stdmenus.inc"

View File

@ -11,7 +11,7 @@ Text=" Available Languages "
[Field 2] [Field 2]
Type=Droplist Type=Droplist
ListItems=Ceština|Dansk|Deutsch|English|Español|Euskara|Français|Galego|Hebrew|Italiano|Japanese|Magyar|Nederlands|Norsk|Nynorsk|Polski|Româna|Russian|Slovenský|Slovenšcina|Suomi|Türkçe ListItems=Ceština|Dansk|Deutsch|English|Español|Euskara|Français|Galego|Hebrew|Italiano|Japanese|Korean|Magyar|Nederlands|Norsk|Nynorsk|Polski|Româna|Russian|Slovenský|Slovenšcina|Suomi|Türkçe
Left=20 Left=20
Right=130 Right=130
Top=15 Top=15