Changeset 106846 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 6, 2024 2:21:06 AM (2 months ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/Languages/English.nsh
r106061 r106846 30 30 LangString VBOX_NOADMIN ${LANG_ENGLISH} "You need administrator rights to install or uninstall the $(^Name).$\r$\nThis application will exit now." 31 31 32 LangString VBOX_NOTICE_ARCH_X86 ${LANG_ENGLISH} "This application only runs on 32-bit Windows systems. Please install the 64-bit version of $(^Name)!" 33 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_ENGLISH} "This application only runs on 64-bit Windows systems. Please install the 32-bit version of $(^Name)!" 32 LangString VBOX_NOTICE_ARCH_X86 ${LANG_ENGLISH} "This application only runs on 32-bit Windows systems. Please pick the variant of the $(^Name) installer matching your guest OS!" 33 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_ENGLISH} "This application only runs on 64-bit Windows systems. Please pick the variant of the $(^Name) installer matching your guest OS!" 34 LangString VBOX_NOTICE_ARCH_ARM64 ${LANG_ENGLISH} "This application only runs on Windows ARM64 systems. Please pick the variant of the $(^Name) installer matching your guest OS!" 34 35 LangString VBOX_NT4_NO_SP6 ${LANG_ENGLISH} "You do not seem to have Service Pack 6 for Windows NT4 installed.$\r$\nWe recommend that you install it first. Do you wish to continue anyway?" 35 36 -
trunk/src/VBox/Additions/WINNT/Installer/Languages/French.nsh
r106061 r106846 30 30 LangString VBOX_NOADMIN ${LANG_FRENCH} "Vous avez besoin de droits d'administrateur pour (dés)installer $(^Name)!$\r$\nCe programme d'installation se terminera maintenant." 31 31 32 LangString VBOX_NOTICE_ARCH_X86 ${LANG_FRENCH} "Cette application peut seulement être executée sur des systèmes Windows 32-bit. Veuillez installer la version 64-bit de $(^Name)!" 33 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_FRENCH} "Cette application peut seulement être executée sur des systèmes Windows 64-bit. Veuillez installer la version 32-bit de $(^Name)!" 32 ;; @todo win.arm64: check spelling of the next three messages. 33 LangString VBOX_NOTICE_ARCH_X86 ${LANG_FRENCH} "Cette application peut seulement être executée sur des systèmes Windows 32-bit. Veuillez installer la version correspondante de $(^Name)!" 34 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_FRENCH} "Cette application peut seulement être executée sur des systèmes Windows 64-bit. Veuillez installer la version correspondante de $(^Name)!" 35 LangString VBOX_NOTICE_ARCH_ARM64 ${LANG_FRENCH} "Cette application peut seulement être executée sur des systèmes Windows ARM64. Veuillez installer la version correspondante de $(^Name)!" 34 36 LangString VBOX_NT4_NO_SP6 ${LANG_FRENCH} "Le programme d'installation a détécté que vous utilisez Windows NT4 sans Service Pack 6.$\r$\nNous vous conseillons d'installer ce Service Pack avant de continuer. Désirez vous cependant continuer?" 35 37 -
trunk/src/VBox/Additions/WINNT/Installer/Languages/German.nsh
r106061 r106846 30 30 LangString VBOX_NOADMIN ${LANG_GERMAN} "Sie benötigen Administrations-Rechte zum (De-)Installieren der $(^Name)!$\r$\nDas Setup wird nun beendet." 31 31 32 LangString VBOX_NOTICE_ARCH_X86 ${LANG_GERMAN} "Diese Applikation läuft nur auf 32-bit Windows-Systemen. Bitte installieren Sie die 64-bit Version der $(^Name)!" 33 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_GERMAN} "Diese Applikation läuft nur auf 64-bit Windows-Systemen. Bitte installieren Sie die 32-bit Version der $(^Name)!" 32 ;; @todo win.arm64: Check spelling meaning of the next three messages. 33 LangString VBOX_NOTICE_ARCH_X86 ${LANG_GERMAN} "Diese Applikation läuft nur auf 32-bit Windows-Systemen. Bitte installieren Sie den passende Version der $(^Name) für Ihren Gast!" 34 LangString VBOX_NOTICE_ARCH_AMD64 ${LANG_GERMAN} "Diese Applikation läuft nur auf 64-bit Windows-Systemen. Bitte installieren Sie den passende Version der $(^Name) für Ihren Gast!" 35 LangString VBOX_NOTICE_ARCH_ARM64 ${LANG_GERMAN} "Diese Applikation läuft nur auf Windows-ARM64-Systemen. Bitte installieren Sie den passende Version der $(^Name) für Ihren Gast!" 34 36 LangString VBOX_NT4_NO_SP6 ${LANG_GERMAN} "Es ist kein Service Pack 6 für NT 4.0 installiert.$\r$\nEs wird empfohlen das Service-Pack vor dieser Installation zu installieren. Trotzdem jetzt ohne Service-Pack installieren?" 35 37 -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r106061 r106846 1073 1073 !if $%KBUILD_TARGET_ARCH% == "amd64" 1074 1074 MessageBox MB_ICONSTOP $(VBOX_NOTICE_ARCH_AMD64) /SD IDOK 1075 !else if $%KBUILD_TARGET_ARCH% == "arm64" 1076 MessageBox MB_ICONSTOP $(VBOX_NOTICE_ARCH_ARM64) /SD IDOK 1075 1077 !else 1076 1078 MessageBox MB_ICONSTOP $(VBOX_NOTICE_ARCH_X86) /SD IDOK
Note:
See TracChangeset
for help on using the changeset viewer.