You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nsis/installer.nsi
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
/*
2
2
3
+
DataLab-WinPython installer script
4
+
----------------------------------
5
+
3
6
Licensed under the terms of the BSD 3-Clause
4
7
(see ../LICENSE for details)
5
8
@@ -56,7 +59,7 @@ RequestExecutionLevel user
56
59
!define MUI_FINISHPAGE_LINK "$(explore_str)"
57
60
!define MUI_FINISHPAGE_LINK_LOCATION "$INSTDIR"
58
61
!define MUI_FINISHPAGE_RUN
59
-
!define MUI_FINISHPAGE_RUN_TEXT "$(wpcp_str)"
62
+
!define MUI_FINISHPAGE_RUN_TEXT "$(datalab_str)"
60
63
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink"
61
64
!insertmacro MUI_PAGE_FINISH
62
65
!insertmacro MUI_UNPAGE_WELCOME
@@ -67,10 +70,12 @@ RequestExecutionLevel user
67
70
!insertmacro MUI_LANGUAGE "French"
68
71
LangString welcome_str ${LANG_ENGLISH}"This will install ${PRODNAME} on your computer.$\r$\n${PRODNAME} deploys itself as a simple folder unzipping to a custom target directory. Installing this software has thus limited effect on the operating system and will not compromise any existing Python installation.$\r$\n$\r$\nPlease click on Next to continue."
69
72
LangString welcome_str ${LANG_FRENCH}"Vous êtes sur le point d'installer ${PRODNAME} sur votre ordinateur.$\r$\n${PRODNAME} s'installe par une simple copie de fichiers dans un répertoire de destination paramétrable. L'installation n'est pas invasive et peut cohabiter (sans effet de bord) avec n'importe quelle autre distribution Python déjà installée sur cet ordinateur.$\r$\n$\r$\nCliquez sur Suivant pour continuer."
0 commit comments