Changeset 43008 in vbox for trunk/src/VBox/Installer/darwin/VirtualBox_mpkg
- Timestamp:
- Aug 27, 2012 7:10:03 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 80341
- Location:
- trunk/src/VBox/Installer/darwin/VirtualBox_mpkg
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/Localizable.strings
r31655 r43008 17 17 18 18 'UNSUPPORTED_HW_MACHINE_TLE' = "Unsupported hardware architecture detected!"; 19 'UNSUPPORTED_HW_MACHINE_MSG' = "The installer has detected an unsupported architecture. VirtualBox runs on the x86 architecture only.";19 'UNSUPPORTED_HW_MACHINE_MSG' = "The installer has detected an unsupported architecture. VirtualBox only runs on the x86 and amd64 architectures."; 20 20 21 21 'UNSUPPORTED_OS_TLE' = "Unsupported OS version detected!"; 22 'UNSUPPORTED_OS_MSG' = "The installer has detected an unsupported operation system. VirtualBox runs on Mac OS X 10.5 and higher only."; 22 'UNSUPPORTED_OS_MSG' = "The installer has detected an unsupported operation system. VirtualBox requires Mac OS X 10.6 or later."; 23 -
trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/distribution.dist
r42987 r43008 41 41 test = system.version['ProductVersion']; 42 42 system.log("OS version detected: " + test); 43 result = (system.compareVersions(test, '10. 5') >= 0);43 result = (system.compareVersions(test, '10.6') >= 0); 44 44 } catch (e) { system.log(e); result = false; } 45 45
Note:
See TracChangeset
for help on using the changeset viewer.