- NSIS Discussion
- mui language string "uninstall"
Archive: mui language string "uninstall"
emiste7
25th September 2003 03:21 UTC
mui language string "uninstall"
!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TITLE "Welcome to the ${PROD_NAME} ${VER_MAJOR} ${VER_MINOR} \
Setup Wizard"
!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT "This wizard will guide you through \
the installation of the ${PROD_NAME}, version ${VER_MAJOR} ${VER_MINOR}.\r\n\r\nIt is strongly\
recommended that you\ close all other applications before starting Setup.\
This will allow Setup to update certain system files without rebooting your computer.\r\n\r\n"
!insertmacro MUI_LANGUAGEFILE_STRING MUI_UNTEXT_CONFIRM_TITLE "Uninstall "***" "
!insertmacro MUI_LANGUAGEFILE_STRING MUI_UNTEXT_CONFIRM_SUBTITLE "Remove "***" from your computer."
!insertmacro MUI_LANGUAGEFILE_STRING MUI_UNTEXT_UNINSTALLING_TITLE "Uninstalling "***" "
!insertmacro MUI_LANGUAGEFILE_STRING MUI_UNTEXT_UNINSTALLING_SUBTITLE "Please wait while "***" is being uninstalled."
"***"
my program name ....no version no numbers just the name of my program
with $(^Name) I have the ${PROD_NAME} ${VER_MAJOR} ${VER_MINOR} and I want only the ${PROD_NAME}.
Its possible?????.....with the Welcome page it works but with uninstall no.
Joost Verburg
26th September 2003 12:30 UTC
You are not custozing texts in the right way.
Get the latest develment version and see the Readme.
emiste7
27th September 2003 05:56 UTC
Thank you.......now I have fixed all of them but im still with a problem.
I need to change this too:
This wizard will uninstall $(^Name) from your computer. $_CLICK
# ^UninstallingSubText
Uninstalling from:
Its possible too.
kichik
27th September 2003 10:28 UTC
That can be changed using UninstallText, assuming you're using the latest CVS version.
emiste7
27th September 2003 16:39 UTC
Thank you
Joost Verburg
27th September 2003 22:37 UTC
Or, if using the Modern UI, with MUI_UNCONFIMPAGE_TEXT.
emiste7
28th September 2003 01:14 UTC
Sorry Joost, but I want to ask if is correct:
MUI_UNCONFIMPAGE_TEXT or MUI_UNCONFIMRPAGE_TEXT
Joost Verburg
28th September 2003 13:35 UTC
Sorry, it should be MUI_UNCONFIRMPAGE_TEXT
emiste7
28th September 2003 15:34 UTC
I wrote the
!define MUI_UNCONFIRMPAGE_TEXT his wizard will uninstall the program from your computer.Click Uninstall to start the uninstallation."
But doesnt work.
With UninstallText,it work.
Joost Verburg
28th September 2003 15:52 UTC
Are you sure you are using the latest development version?
emiste7
29th September 2003 05:02 UTC
Ok downloaded the new development version...and now doesnt work anything anymore...I need to rebuild everything........
I have this one and the installer still give an error
;!define MUI_UNTEXT_CONFIRM_TITLE "Uninstall "
LangString "MUI_UNTEXT_CONFIRM_TITLE" is not set in language table of language 1033
For all of them I have an error.
Joost Verburg
29th September 2003 07:34 UTC
You should define MUI_UNCONFIRMPAGE_TEXT before inserting the page.
See http://forums.winamp.com/showthread....hreadid=150416
emiste7
29th September 2003 12:41 UTC
If you check there in the script I have the ";" command and the installer read the command.
Another problem my banner now is just a couple words.....my installer now dont read the welcome page and more. All "old" command there the ";" before.
emiste7
1st October 2003 04:05 UTC
It was like a bug...I just copied the script....Line after line in a blank text file and saved with the NSIS extension.
When I installed the NSIS ...I was wondering why it took a long time all my script...ahhhhhhhh screwed...I uninstalled and reinstalled again and in a couple sec the installation it was finish.
Its working now but Im missing the title and subtitle.
Thank you guy for your help
kichik
1st October 2003 11:21 UTC
Are you talking about the text on the white square on the top? To set it define MUI_PAGE_HEADER_TEXT and MUI_PAGE_HEADER_SUBTEXT before you insert the page macro.