mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
Fix my attempt to pretty print the list of paths; add missing language strings to the italian translation.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10079 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c81f205007
commit
3f7a629257
@ -20,7 +20,7 @@
|
||||
CRCCheck force
|
||||
|
||||
; Make the installer as small as possible.
|
||||
SetCompressor lzma
|
||||
;SetCompressor lzma
|
||||
|
||||
;--------------------------------
|
||||
; You should need to change only these macros...
|
||||
@ -627,25 +627,25 @@ Function SummariseDownloads
|
||||
|
||||
StrCpy $PathPrefix ""
|
||||
${if} $MinSYSPath != ""
|
||||
StrCpy $PathPrefix "$\r$\n$MinSYSPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$MinSYSPath"
|
||||
${endif}
|
||||
${if} $PythonPath != ""
|
||||
StrCpy $PathPrefix "$PathPrefix$\r$\n$PythonPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$PythonPath"
|
||||
${endif}
|
||||
${if} $MiKTeXPath != ""
|
||||
StrCpy $PathPrefix "$PathPrefix$\r$\n$MiKTeXPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$MiKTeXPath"
|
||||
${endif}
|
||||
${if} $PerlPath != ""
|
||||
StrCpy $PathPrefix "$PathPrefix$\r$\n$PerlPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$PerlPath"
|
||||
${endif}
|
||||
${if} $GhostscriptPath != ""
|
||||
StrCpy $PathPrefix "$PathPrefix$\r$\n$GhostscriptPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$GhostscriptPath"
|
||||
${endif}
|
||||
${if} $ImageMagickPath != ""
|
||||
StrCpy $PathPrefix "$PathPrefix$\r$\n$ImageMagickPath"
|
||||
StrCpy $PathPrefix "$PathPrefix;$ImageMagickPath"
|
||||
${endif}
|
||||
; Remove the leading '\r\n'
|
||||
${StrLTrim} $PathPrefix "$PathPrefix"
|
||||
; Remove the leading ';'
|
||||
StrCpy $PathPrefix "$PathPrefix" "" 1
|
||||
|
||||
IntOp $DoNotInstallLyX $DownloadMinSYS + $DownloadPython
|
||||
IntOp $DoNotInstallLyX $DoNotInstallLyX + $DownloadMiKTeX
|
||||
@ -657,6 +657,7 @@ Function SummariseDownloads
|
||||
!insertmacro MUI_INSTALLOPTIONS_WRITE "io_summary.ini" "Field 1" "Text" "$(SummaryPleaseInstall)"
|
||||
${else}
|
||||
${StrNSISToIO} $0 '$PathPrefix'
|
||||
${StrRep} $0 "$0" ";" "\r\n"
|
||||
StrCpy $0 "$(SummaryPathPrefix)\r\n\r\n$0"
|
||||
!insertmacro MUI_INSTALLOPTIONS_WRITE "io_summary.ini" "Field 1" "Text" "$0"
|
||||
${endif}
|
||||
|
@ -18,6 +18,7 @@ LangString SecFileAssocDescription "${LYX_LANG}" "Crea le associazioni tra il pr
|
||||
LangString SecDesktopDescription "${LYX_LANG}" "Icona ${PRODUCT_NAME} sul desktop."
|
||||
|
||||
LangString ModifyingConfigureFailed "${LYX_LANG}" "Fallito tentativo di aggiornare 'path_prefix' nello script di configurazione"
|
||||
LangString CreateCmdFilesFailed "${LYX_LANG}" "Failed atempting to create lyx.cmd and reLyX.cmd"
|
||||
LangString RunConfigureFailed "${LYX_LANG}" "Fallito tentativo di eseguire lo script di configurazione"
|
||||
|
||||
LangString FinishPageMessage "${LYX_LANG}" "Congratulazioni! LyX è stato installato con successo."
|
||||
@ -71,6 +72,9 @@ LangString SummaryTitle "${LYX_LANG}" "Sommario del software"
|
||||
LangString SummaryPleaseInstall "${LYX_LANG}" "Siete pregati di installare i pacchetti scaricati e quindi lanciare nuovamente l'installazione di LyX."
|
||||
LangString SummaryPathPrefix "${LYX_LANG}" "Verrà aggiunta una stringa 'path_prefix' al file 'lyxrc.defaults' contenente:"
|
||||
|
||||
LangString UILangageTitle "${LYX_LANG}" "The language of LyX's interface"
|
||||
LangString UILangageDescription "${LYX_LANG}" "As used for menus, messages, etc."
|
||||
|
||||
LangString UnNotInRegistryLabel "${LYX_LANG}" "Non riesco a trovare $(^Name) nel registro$\r$\nI collegamenti sul desktop e nel menu Start non saranno rimossi."
|
||||
LangString UnNotAdminLabel "${LYX_LANG}" "Spiacente! Occorrono privilegi da amministratore$\r$\nper disinstallare $(^Name)."
|
||||
LangString UnReallyRemoveLabel "${LYX_LANG}" "Siete sicuri di voler rimuovere completamente $(^Name) e tutti i suoi componenti?"
|
||||
|
Loading…
Reference in New Issue
Block a user