Changeset 56305 in vbox
- Timestamp:
- Jun 9, 2015 4:47:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r56304 r56305 852 852 QString strCPUExecCap = QString::number(machine.GetCPUExecutionCap()); 853 853 854 /* Paravirtualization feature: */ 855 const QString strParavirt = gpConverter->toString(machine.GetEffectiveParavirtProvider()); 856 854 857 /* Prepare tool-tip: */ 855 858 QString tip(QApplication::translate("UIIndicatorsPool", … … 864 867 .arg(VBoxGlobal::tr("Unrestricted Execution"), unrestrictExec) 865 868 .arg(VBoxGlobal::tr("Execution Cap", "details report"), strCPUExecCap)); 869 870 // TODO: We had to use that large NLS above for now. 871 // Later it should be reworked to be well-maintainable.. 872 /* Separately add information about paravirtualization interface feature: */ 873 tip += QApplication::translate("UIIndicatorsPool", "<br><nobr><b>%1:</b> %2</nobr>", "Virtualization Stuff LED") 874 .arg(VBoxGlobal::tr("Paravirtualization Interface", "details report"), strParavirt); 866 875 867 876 /* CPU count: */
Note:
See TracChangeset
for help on using the changeset viewer.