Changeset 48530 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 19, 2013 12:00:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r48314 r48530 545 545 546 546 /* Update LED tool-tip: */ 547 QString strToolTip = QApplication::translate("UIIndicatorsPool", "<nobr>Indicates the activity of the video capture:</nobr>"); 548 strToolTip += "<br>"; 547 QString strToolTip = QApplication::translate("UIIndicatorsPool", "<nobr>Indicates the activity of the video capture:</nobr><br>%1"); 549 548 switch (state()) 550 549 { 551 550 case UIIndicatorStateVideoCapture_Disabled: 552 551 { 553 strToolTip += QApplication::translate("UIIndicatorsPool", "<b>Video capture disabled</b>");552 strToolTip = strToolTip.arg(QApplication::translate("UIIndicatorsPool", "<nobr><b>Video capture disabled</b></nobr>")); 554 553 break; 555 554 } 556 555 case UIIndicatorStateVideoCapture_Enabled: 557 556 { 558 strToolTip += QApplication::translate("UIIndicatorsPool", "<nobr><b>Video capture file:</b> %1</nobr>")559 557 strToolTip = strToolTip.arg(QApplication::translate("UIIndicatorsPool", "<nobr><b>Video capture file:</b> %1</nobr>")); 558 strToolTip = strToolTip.arg(machine.GetVideoCaptureFile()); 560 559 break; 561 560 }
Note:
See TracChangeset
for help on using the changeset viewer.