Changeset 37753 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 4, 2011 10:09:18 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72623
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r37735 r37753 1650 1650 tr ("<nobr>%1</nobr>", "details report")) 1651 1651 .arg (aMachine.GetCPUCount()) 1652 + QString (sSectionItemTpl2).arg (tr (" CPUExecution Cap", "details report"),1652 + QString (sSectionItemTpl2).arg (tr ("Execution Cap", "details report"), 1653 1653 tr ("<nobr>%1%</nobr>", "details report")) 1654 1654 .arg (aMachine.GetCPUExecutionCap()) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r37712 r37753 577 577 .arg(VBoxGlobal::tr("VT-x/AMD-V", "details report"), virtualization) 578 578 .arg(VBoxGlobal::tr("Nested Paging"), nestedPaging) 579 .arg(VBoxGlobal::tr(" CPUExecution Cap", "details report"), strCPUExecCap));579 .arg(VBoxGlobal::tr("Execution Cap", "details report"), strCPUExecCap)); 580 580 581 581 int cpuCount = console.GetMachine().GetCPUCount(); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMDesktop.cpp
r37712 r37753 597 597 598 598 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 599 /* CPUExecution Cap599 /* Execution Cap 600 600 * is NOT such important attribute to be reflected in details page... */ 601 601 int iCPUExecCap = m_machine.GetCPUExecutionCap(); 602 602 if (iCPUExecCap < 100) 603 item += sSectionItemTpl2.arg(tr(" CPUExecution Cap", "details report"),603 item += sSectionItemTpl2.arg(tr("Execution Cap", "details report"), 604 604 tr("<nobr>%1%</nobr>", "details report")) 605 605 .arg(iCPUExecCap); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r37712 r37753 456 456 if (mSlCPUExecCap->value() < (int)mMedGuestCPUExecCap) 457 457 { 458 aWarning = tr("you have set CPU execution cap to low value, which may"459 " distort audio and have other side effects.");458 aWarning = tr("you have set the processor execution cap to a low value. " 459 "This can make the machine feel slow to respond."); 460 460 return true; 461 461 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.ui
r37715 r37753 547 547 </property> 548 548 <property name="text"> 549 <string>& CPUExecution Cap:</string>549 <string>&Execution Cap:</string> 550 550 </property> 551 551 <property name="alignment"> … … 565 565 <widget class="QIAdvancedSlider" name="mSlCPUExecCap"> 566 566 <property name="whatsThis"> 567 <string>Limits the amount of time that each virtual CPU is allowed to run for. Each virtual CPU will be allowed to use up to this percentage of the processing time available on one physical CPU. The execution cap can be disabled by setting it to 100%. </string>567 <string>Limits the amount of time that each virtual CPU is allowed to run for. Each virtual CPU will be allowed to use up to this percentage of the processing time available on one physical CPU. The execution cap can be disabled by setting it to 100%. Setting the cap too low can make the machine feel slow to respond.</string> 568 568 </property> 569 569 <property name="maximum"> … … 638 638 </property> 639 639 <property name="whatsThis"> 640 <string>Limits the amount of time that each virtual CPU is allowed to run for. Each virtual CPU will be allowed to use up to this percentage of the processing time available on one physical CPU. The execution cap can be disabled by setting it to 100%. </string>640 <string>Limits the amount of time that each virtual CPU is allowed to run for. Each virtual CPU will be allowed to use up to this percentage of the processing time available on one physical CPU. The execution cap can be disabled by setting it to 100%. Setting the cap too low can make the machine feel slow to respond.</string> 641 641 </property> 642 642 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.