mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Windows installer: add 3 new features/bugfixes
As discussed with Vincent I added 3 new features: * LyX can now also be installed over an existing installation of the same LyX version if the users really wants this. (A message box appears recommending not to do so for test releases and when there are problems with an existing installation of the same release.) * LyX can now also be installed if the uninstaller executable of a former LyX was accidentally deleted. (That this case was not handled was more a bug. Thanks Vicent for the pointer.) * If a user set MiKTeX's automatic package installation to "No" the installer will. (As discussed with Vincent, if a user has disabled this MiKTeX feature he most probably know the consequences. So respect his decision.) respect that and not re-enable it. I would be happy if anybody can spend a translation of the changed installer message.
This commit is contained in:
parent
024e1175dc
commit
62cbf893d2
@ -1,4 +1,23 @@
|
||||
Changelog for LyX-207-4:
|
||||
Changelog for LyX-210-2:
|
||||
- LyX can now also be installed over an existing installation of the same LyX version
|
||||
if the users really wants this.
|
||||
- LyX can now also be installed if the uninstaller executable of a former LyX was
|
||||
accidentally deleted.
|
||||
- If a user set MiKTeX's automatic package installation to "No" the installer will
|
||||
respect that and not re-enable it.
|
||||
|
||||
|
||||
Changelog for LyX-210-1:
|
||||
- installs LyX 2.1.0
|
||||
- fixed a bug that MiKTeX was not found if Windows' PATH variable is very long
|
||||
|
||||
|
||||
Changelog for LyX-208-1:
|
||||
- installs LyX 2.0.7
|
||||
- fixed a bug that MiKTeX was not found if Windows' PATH variable is very long
|
||||
|
||||
|
||||
Changelog for LyX-207-4:
|
||||
- downgraded to Qt 4.8.4
|
||||
(there is a bug in the newer Qt 4.8.5 that destroys some shortcuts)
|
||||
- updated to JabRef 2.10
|
||||
|
@ -306,6 +306,11 @@ Function ConfigureMiKTeX
|
||||
SetRegView 32
|
||||
${endif}
|
||||
${if} $MiKTeXUser == "HKCU" # if only for current user
|
||||
# if AutoInstall is set to "0" we can assume that this was set purposly since the default is "1"
|
||||
ReadRegStr $2 HKCU "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "AutoInstall"
|
||||
${if} $2 == "0"
|
||||
Goto NoAutoInstall
|
||||
${endif}
|
||||
WriteRegStr HKCU "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "AutoInstall" "1"
|
||||
ReadRegStr $1 HKCU "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "RemoteRepository"
|
||||
${if} $1 == ""
|
||||
@ -313,6 +318,11 @@ Function ConfigureMiKTeX
|
||||
WriteRegStr HKCU "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "RepositoryType" "remote"
|
||||
${endif}
|
||||
${else}
|
||||
# if AutoInstall is set to "0" we can assume that this was set purposly since the default is "1"
|
||||
ReadRegStr $2 HKLM "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "AutoInstall"
|
||||
${if} $2 == "0"
|
||||
Goto NoAutoInstall
|
||||
${endif}
|
||||
WriteRegStr HKLM "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "AutoInstall" "1"
|
||||
ReadRegStr $1 HKLM "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "RemoteRepository"
|
||||
${if} $1 == ""
|
||||
@ -322,6 +332,7 @@ Function ConfigureMiKTeX
|
||||
# we need to state that missing packages should be installed for all users too
|
||||
WriteRegStr HKCU "SOFTWARE\MiKTeX.org\MiKTeX\$MiKTeXVersion\MPM" "AutoAdmin" "t"
|
||||
${endif}
|
||||
NoAutoInstall:
|
||||
|
||||
# update MiKTeX's package file list
|
||||
ExecWait '$PathLaTeX\mpm.exe --update-fndb'
|
||||
|
@ -635,8 +635,13 @@ Function .onInit
|
||||
${endif}
|
||||
${endif}
|
||||
${if} $0 != ""
|
||||
MessageBox MB_OK|MB_ICONSTOP "$(StillInstalled)" /SD IDOK
|
||||
# installing over an existing installation of the same LyX release is not necessary
|
||||
# if the users does this he most probably has a problem with LyX that can better be solved
|
||||
# by reinstalling LyX
|
||||
# for beta and other test releases over-installing can even cause errors
|
||||
MessageBox MB_YESNO|MB_DEFBUTTON2|MB_ICONEXCLAMATION "$(AlreadyInstalled)" /SD IDNO IDYES ForceInstallation
|
||||
Abort
|
||||
ForceInstallation:
|
||||
${endif}
|
||||
|
||||
# check if there is an existing LyX installation of the same LyX series
|
||||
|
@ -75,7 +75,11 @@ ${LangFileString} ModifyingConfigureFailed "Could not set 'path_prefix' in the c
|
||||
${LangFileString} RunConfigureFailed "äÇ êåãæ ÊæáêÐ Çäà configure script"
|
||||
${LangFileString} NotAdmin "êÌÈ Ãæ Êãèæ ÈÕäÇÍêÉ ÇäåÏêÑ äãê ääâêÇå ÈÙåäêÉ ÇäÊÑãêÈ!"
|
||||
${LangFileString} InstallRunning "Êå ÈÇäáÙä ÇäÈÏÁ ÈÙåäêÉ ÇäÊÑãêÈ!"
|
||||
${LangFileString} StillInstalled "تم ${APP_SERIES_KEY2} بالفعل تركيب برنامج ليك لذا عليك اولاً الغاء تركيب النسخةالسابقة."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} is already installed!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} MiKTeXInfo 'LaTeX-en $\"MiKTeX$\" banaketa LyX-ekin batera era
|
||||
${LangFileString} ModifyingConfigureFailed "Ezin izan da 'path_prefix' ezarri konfigurazioaren script-ean"
|
||||
#${LangFileString} RunConfigureFailed "Ezin izan da konfigurazioaren script-a exekutatu"
|
||||
${LangFileString} InstallRunning "Instalatzailea jadanik exekutatzen ari da."
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} jadanik instalatuta dago. Aurrenik LyX desinstalatu."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} jadanik instalatuta dago!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Instalatuta dagoen LyX baino bertsio zaharragoa instalatzen saiatzen ari zara.$\r$\n\
|
||||
Hori egitea nahi baduzu, lehenbizi existitzen den LyX $OldVersionNumber desinstalatu beharko duzu."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "No es pot establir 'path_prefix' dur
|
||||
${LangFileString} RunConfigureFailed "No es pot executar el programa de configuració"
|
||||
${LangFileString} NotAdmin "Necessiteu drets d'administrador per instal·lar el LyX!"
|
||||
${LangFileString} InstallRunning "L'instal·lador ja s'està executant!"
|
||||
${LangFileString} StillInstalled "El LyX ${APP_SERIES_KEY2} ja es troba instal·lat! Desinstal·leu-lo primer."
|
||||
${LangFileString} AlreadyInstalled "El LyX ${APP_SERIES_KEY2} ja es troba instal·lat!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Nelze nastavit 'path_prefix' v konfi
|
||||
${LangFileString} RunConfigureFailed "Nelze spustit konfiguraèní skript"
|
||||
${LangFileString} NotAdmin "Potøebujete administrátorská práva pro nainstalování LyXu!"
|
||||
${LangFileString} InstallRunning "Instalátor je již spuštìn!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} je již nainstalován! Nejprve LyX odinstalujte."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} je již nainstalován!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Forsoget p
|
||||
${LangFileString} RunConfigureFailed "Mislykket forsog på at afvikle konfigurations-scriptet"
|
||||
${LangFileString} NotAdmin "Du skal have administrator-rettigheder for at installere LyX!"
|
||||
${LangFileString} InstallRunning "Installationsprogrammet kører allerede!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} er allerede installeret! Afinstaller LyX først."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} er allerede installeret!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Mislukte poging om 'path_prefix' te
|
||||
${LangFileString} RunConfigureFailed "Mislukte configuratie poging"
|
||||
${LangFileString} NotAdmin "U heeft systeem-beheerrechten nodig om LyX te installeren!"
|
||||
${LangFileString} InstallRunning "Het installatieprogramma is al gestart!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} is reeds geinstalleerd! Verwijder LyX eerst."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} is reeds geinstalleerd!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -82,7 +82,11 @@ ${LangFileString} MiKTeXInfo 'The LaTeX-distribution $\"MiKTeX$\" will be used t
|
||||
${LangFileString} ModifyingConfigureFailed "Could not set 'path_prefix' in the configure script"
|
||||
#${LangFileString} RunConfigureFailed "Could not execute the configure script"
|
||||
${LangFileString} InstallRunning "The installer is already running!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} is already installed! Deinstall LyX first."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} is already installed!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "
|
||||
${LangFileString} RunConfigureFailed "Échec de la tentative de configuration initiale de LyX."
|
||||
${LangFileString} NotAdmin "Vous devez avoir les droits d$\'administration pour installer LyX !"
|
||||
${LangFileString} InstallRunning "Le programme d$\'installation est toujours en cours !"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} est déjà installé ! Le désinstaller d'abord."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} est déjà installé !$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version ?"
|
||||
${LangFileString} NewerInstalled "Vous essayez d$\'installer une version de LyX plus ancienne que celle qui est déjà installée.$\r$\n\
|
||||
Si c$\'est ce qu vous voulez, vous devez d$\'abord désinstaller LyX $OldVersionNumber."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Non se puido engadir o 'path_prefix'
|
||||
${LangFileString} RunConfigureFailed "Non se deu executado o script de configuración"
|
||||
${LangFileString} NotAdmin "Precisa de priviléxios de administrador para instalar o LyX!"
|
||||
${LangFileString} InstallRunning "O instalador xa está a correr!"
|
||||
${LangFileString} StillInstalled "O LyX ${APP_SERIES_KEY2} xa está instalado! Desinstale o LyX primeiro."
|
||||
${LangFileString} AlreadyInstalled "O LyX ${APP_SERIES_KEY2} xa está instalado!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed 'Der $\"PATH_pr
|
||||
#${LangFileString} RunConfigureFailed "Konnte das Konfigurationsskript nicht ausführen."
|
||||
${LangFileString} NotAdmin "Sie benötigen Administratorrechte um LyX zu installieren!"
|
||||
${LangFileString} InstallRunning "Der Installer läuft bereits!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} ist bereits installiert! Deinstallieren Sie LyX zuerst."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} ist bereits installiert!$\r$\n\
|
||||
Das Installieren über bestehende Installationen ist nicht empfohlen, wenn die installierte Version$\r$\n\
|
||||
eine Testversion ist oder wenn es Probleme mit der bestehenden LyX-Installation gibt.$\r$\n\
|
||||
Besser Sie deinstallieren in diesen Fällen LyX zuerst.$\r$\n\
|
||||
Wollen Sie LyX dennoch über die bestehende Version installieren?"
|
||||
${LangFileString} NewerInstalled "Sie versuchen eine Vesion von LyX zu installieren, die älter als die derzeit installierte ist.$\r$\n\
|
||||
Wenn Sie das wirklich wollen, müssen Sie erst das existierende LyX $OldVersionNumber deinstallieren."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "Nem tudom be
|
||||
${LangFileString} RunConfigureFailed "Nem tudom végrehajtani a configure parancsfájlt!"
|
||||
${LangFileString} NotAdmin "A LyX telepítéséhez rendszergazdai jogok szükségesek!"
|
||||
${LangFileString} InstallRunning "A telepítő már fut!"
|
||||
${LangFileString} StillInstalled "A LyX ${APP_SERIES_KEY2} már teleptve van! Elõször távolítsa el a régit."
|
||||
${LangFileString} AlreadyInstalled "A LyX ${APP_SERIES_KEY2} már teleptve van!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "A jelenleg telepítettnél régebbi LyX verziót próbál telepíteni.$\r$\n\
|
||||
Ha valóban ezt akarja, először el kell távolítania a meglévő LyX $OldVersionNumber változatot."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "Tidak bisa menyatakan 'path_prefix'
|
||||
${LangFileString} RunConfigureFailed "Tidak bisa menjalankan skrip konfigurasi"
|
||||
${LangFileString} NotAdmin "Anda harus berlaku dan mempunyai hak sebagai administrator untuk instalasi LyX!"
|
||||
${LangFileString} InstallRunning "Program instalasi sedang berjalan!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} sudah pernah diinstal! Perlu menghapus LyX yang ada terlebih dahulu."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} sudah pernah diinstal!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Anda akan memasang versi LyX yang lama dari yang sudah terpasang.$\r$\n\
|
||||
Jika memang dikehendaki, anda harus menghapus dulu LyX yang ada, LyX $OldVersionNumber."
|
||||
|
||||
|
@ -85,7 +85,11 @@ ${LangFileString} ModifyingConfigureFailed "Fallito tentativo di aggiornare 'pat
|
||||
${LangFileString} RunConfigureFailed "Fallito tentativo di eseguire lo script di configurazione"
|
||||
${LangFileString} NotAdmin "Occorrono i privilegi da amministratore per installare LyX!"
|
||||
${LangFileString} InstallRunning "Il programma di installazione è già in esecuzione!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} è già installato! Occorre rimuoverlo per poter procedere."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} è già installato!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "configure
|
||||
${LangFileString} RunConfigureFailed "configureスクリプトを実行することができませんでした"
|
||||
${LangFileString} NotAdmin "LyXを導入するには、管理者権限を持っていなくてはなりません!"
|
||||
${LangFileString} InstallRunning "導入プログラムは既に動作中です!"
|
||||
${LangFileString} StillInstalled "LyX${APP_SERIES_KEY2}は既に導入済みです!先にLyXの導入を解除してください。"
|
||||
${LangFileString} AlreadyInstalled "LyX${APP_SERIES_KEY2}は既に導入済みです!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?。"
|
||||
${LangFileString} NewerInstalled "あなたは、既に導入済みのLyXよりも古い版を導入しようとしています。$\r$\n\
|
||||
本当にそうしたいのであれば、既存の LyX $OldVersionNumber をまず導入解除してください。"
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "Fors
|
||||
${LangFileString} RunConfigureFailed "Fikk ikke kjørt konfigurasjonsscriptet"
|
||||
${LangFileString} NotAdmin "Du trenger administratorrettigheter for å installere LyX!"
|
||||
${LangFileString} InstallRunning "Installasjonsprogrammet er allerede i gang!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} er allerede installert! Fjern LyX først."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} er allerede installert!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Du prøver å installere en eldre versjon av Lyx enn den du har installert fra før.$\r$\n\
|
||||
Dersom du ønsker dette må du avinstallere LyX $OldVersionNumber først."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Nieudana pr
|
||||
${LangFileString} RunConfigureFailed "Niedana próba wykonania skryptu konfiguracyjnego"
|
||||
${LangFileString} NotAdmin "Musisz mieć prawa administratora aby zainstalować LyX$\'a!"
|
||||
${LangFileString} InstallRunning "Instalator jest już uruchomiony!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} jest już zainstalowany! Aby kontynować musisz go najpierw usunšć."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} jest ju¿ zainstalowany!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Próbujesz zainstalować starszš wersję LyX, niż ta która jest już zainstalowana.$\r$\n\
|
||||
Jeżeli naprawdę chcesz tego dokonać, musisz wpierw odinstalować LyX $OldVersionNumber."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "N
|
||||
${LangFileString} RunConfigureFailed "Não foi possível executar o script de configuração"
|
||||
${LangFileString} NotAdmin "Precisa de privilégios de administrador para instalar o LyX!"
|
||||
${LangFileString} InstallRunning "O instalador já está a correr!"
|
||||
${LangFileString} StillInstalled "O LyX ${APP_SERIES_KEY2} já está instalado! Desinstale o LyX primeiro."
|
||||
${LangFileString} AlreadyInstalled "O LyX ${APP_SERIES_KEY2} já está instalado!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -78,7 +78,11 @@ ${LangFileString} ModifyingConfigureFailed "Nu am putut seta 'path_prefix'
|
||||
${LangFileString} RunConfigureFailed "Nu am putut executa scriptul de configurare"
|
||||
${LangFileString} NotAdmin "Trebuie sã aveþi drepturi de administrator pentru instalarea programului LyX!"
|
||||
${LangFileString} InstallRunning "Programul de instalare este deja pornit!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} este deja instalat! Dezinstalaþi LyX prima oarã."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} este deja instalat!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -84,7 +84,11 @@ ${LangFileString} ModifyingConfigureFailed "Nedal sa nastavi
|
||||
${LangFileString} RunConfigureFailed "Nedal sa spusti<74> konfiguraèný skript"
|
||||
${LangFileString} NotAdmin "Pre inštaláciu LyXu potrebujete administrátorské práva!"
|
||||
${LangFileString} InstallRunning "Inštalatér už beží!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} je už inštalovaný! LyX treba najprv odinštalova<76>."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} je už inštalovaný!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Pokúšate sa inštalova<76> verziu LyXu ktorá je staršia ako tá ktorá je inštalovaná.$\r$\n\
|
||||
Keï to naozaj chcete, odinštalujte najprv existujúci LyX $OldVersionNumber."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "Error al intentar a
|
||||
${LangFileString} RunConfigureFailed "Error al intentar ejecutar el programa de configuración"
|
||||
${LangFileString} NotAdmin "Necesita privilegios de administrador para instalar LyX!"
|
||||
${LangFileString} InstallRunning "El instalador ya esta siendo ejecutado!"
|
||||
${LangFileString} StillInstalled "¡LyX ${APP_SERIES_KEY2} ya esta instalado! Antes desinstale LyX."
|
||||
${LangFileString} AlreadyInstalled "¡LyX ${APP_SERIES_KEY2} ya esta instalado!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Está tratando de instalar una versión de LyX más antigua que la que tiene instalada.$\r$\n\
|
||||
Si realmente lo desea, debe desinstalar antes la versión de LyX instalada $OldVersionNumber."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Kunde inte s
|
||||
${LangFileString} RunConfigureFailed "Kunde inte köra konfigurationsskriptet"
|
||||
${LangFileString} NotAdmin "Du måste ha administratörsrättigheter för att installera LyX!"
|
||||
${LangFileString} InstallRunning "Installationsprogrammet körs redan!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} är redan installerad! Avinstallera LyX först."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} är redan installerad!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Du försöker att installera en äldre version av LyX än vad du har installerad.$\r$\n\
|
||||
Om du verkligen vill detta måste du avinstallera den befintliga LyX $OldVersionNumber innan."
|
||||
|
||||
|
@ -77,7 +77,11 @@ ${LangFileString} ModifyingConfigureFailed "Yap
|
||||
${LangFileString} RunConfigureFailed "Yapýlandýrma programý çalýþtýrýlamadý"
|
||||
${LangFileString} NotAdmin "LyX kurabilmek için yönetici yetkileri gerekiyor!"
|
||||
${LangFileString} InstallRunning "Kurulum programý zaten çalýþýyor!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} kurulu zaten! Önce onu kaldýrýn."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} kurulu zaten!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "You are trying to install an older version of LyX than what you have installed.$\r$\n\
|
||||
If you really want this, you must uninstall the existing LyX $OldVersionNumber before."
|
||||
|
||||
|
@ -83,7 +83,11 @@ ${LangFileString} ModifyingConfigureFailed "
|
||||
${LangFileString} RunConfigureFailed "Не вдалося виконати скрипт налаштування"
|
||||
${LangFileString} NotAdmin "Для встановлення LyX вам потрібні привілеї адміністратора!"
|
||||
${LangFileString} InstallRunning "Засіб для встановлення вже працює!"
|
||||
${LangFileString} StillInstalled "LyX ${APP_SERIES_KEY2} вже встановлено! Спочатку вилучіть його LyX."
|
||||
${LangFileString} AlreadyInstalled "LyX ${APP_SERIES_KEY2} âæå âñòàíîâëåíî!$\r$\n\
|
||||
Installing over existing installations is not recommended if the installed version$\r$\n\
|
||||
is a test release or if you have problems with your existing LyX installation.$\r$\n\
|
||||
In these cases better reinstall LyX.$\r$\n\
|
||||
Dou you nevertheles want to install LyX over the existing version?"
|
||||
${LangFileString} NewerInstalled "Ви намагаєтеся встановити версію LyX, яка є застарілою порівняно з вже встановленою.$\r$\n\
|
||||
Якщо ви хочете встановити застарілу версію, вам слід спочатку вилучити вже встановлений LyX $OldVersionNumber."
|
||||
|
||||
|
@ -55,8 +55,8 @@ Section -InstallData
|
||||
WriteRegDWORD SHCTX ${APP_UNINST_KEY} "NoRepair" 0x00000001
|
||||
WriteRegStr SHCTX ${APP_UNINST_KEY} "StartMenu" "$SMPROGRAMS\$StartmenuFolder"
|
||||
|
||||
# if we install over an existing version, remove the old uninstaller information
|
||||
${if} $OldVersionNumber != ""
|
||||
# if we install over an older existing version, remove the old uninstaller information
|
||||
${if} $OldVersionNumber < ${APP_SERIES_KEY}
|
||||
DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}$OldVersionNumber"
|
||||
# also delete in the case of an emergency release
|
||||
DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}$OldVersionNumber1"
|
||||
|
Loading…
Reference in New Issue
Block a user