Changeset 12300 in vbox
- Timestamp:
- Sep 9, 2008 3:07:21 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r11284 r12300 1682 1682 PDMDevHlpVMSetRuntimeError (pDevIns, false, "HostAudioNotResponding", 1683 1683 N_ ("No audio devices could be opened. Selecting the NULL audio backend " 1684 "with the consequence that no sound is audible ."));1684 "with the consequence that no sound is audible")); 1685 1685 } 1686 1686 #ifndef RT_OS_DARWIN … … 1700 1700 "output or depending on audio input may hang. Make sure your host audio device " 1701 1701 "is working properly. Check the logfile for error messages of the audio " 1702 "subsystem ."), szMissingVoices);1702 "subsystem"), szMissingVoices); 1703 1703 } 1704 1704 #endif -
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r11284 r12300 1837 1837 PDMDevHlpVMSetRuntimeError(pDevIns, false, "HostAudioNotResponding", 1838 1838 N_("No audio devices could be opened. Selecting the NULL audio backend " 1839 "with the consequence that no sound is audible ."));1839 "with the consequence that no sound is audible")); 1840 1840 } 1841 1841 return VINF_SUCCESS; -
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r11451 r12300 879 879 if (rc < 0) 880 880 PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail", 881 N_("Suspending serial monitor thread failed for serial device '%s' (%Vrc). The shutdown may take extremly long ."),881 N_("Suspending serial monitor thread failed for serial device '%s' (%Vrc). The shutdown may take extremly long"), 882 882 pThis->pszDevicePath, RTErrConvertFromErrno(errno)); 883 883 … … 885 885 if (rc < 0) 886 886 PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail", 887 N_("Suspending serial monitor thread failed for serial device '%s' (%Vrc). The shutdown may take extremly long ."),887 N_("Suspending serial monitor thread failed for serial device '%s' (%Vrc). The shutdown may take extremly long"), 888 888 pThis->pszDevicePath, RTErrConvertFromErrno(rc)); 889 889 -
trunk/src/VBox/VMM/PGM.cpp
r11997 r12300 3340 3340 3341 3341 VMSetRuntimeError(pVM, true, "PAEmode", 3342 N_("The guest is trying to switch to the PAE mode which is currently disabled by default in VirtualBox. Experimental PAE support can be enabled using the -pae option with VBoxManage ."));3342 N_("The guest is trying to switch to the PAE mode which is currently disabled by default in VirtualBox. Experimental PAE support can be enabled using the -pae option with VBoxManage")); 3343 3343 /* we must return TRUE here otherwise the recompiler will assert */ 3344 3344 return VINF_SUCCESS; -
trunk/src/VBox/VMM/PGMPhys.cpp
r11299 r12300 2024 2024 AssertRC(rc); 2025 2025 2026 VMSetRuntimeError(pVM, false, "HostMemoryLow", "Unable to allocate and lock memory. The virtual machine will be paused. Please close applications to free up memory or close the VM .");2026 VMSetRuntimeError(pVM, false, "HostMemoryLow", "Unable to allocate and lock memory. The virtual machine will be paused. Please close applications to free up memory or close the VM"); 2027 2027 2028 2028 /* Wait for resume event; will only return in that case. If the VM is stopped, the EMT thread will be destroyed. */
Note:
See TracChangeset
for help on using the changeset viewer.