Changeset 105819 in vbox
- Timestamp:
- Aug 22, 2024 2:20:59 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164532
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r105804 r105819 820 820 "or install the Guest Additions without it!</p>"), 821 821 0 /* auto-confirm id */, 822 tr(" &Remove", "medium") /* ok button text */,822 tr("Remove", "medium") /* ok button text */, 823 823 QString() /* cancel button text */, 824 824 false /* ok button by default? */); … … 1253 1253 .arg(strPackName), 1254 1254 0 /* auto-confirm id */, 1255 tr(" &Remove") /* ok button text */,1255 tr("Remove") /* ok button text */, 1256 1256 QString() /* cancel button text */, 1257 1257 false /* ok button by default? */); … … 1428 1428 "<p>Are you sure you want to proceed?</p>"), 1429 1429 0 /* auto-confirm id */, 1430 tr(" &Discard") /* ok button text */,1430 tr("Discard") /* ok button text */, 1431 1431 QString() /* cancel button text */, 1432 1432 false /* ok button by default? */); … … 1597 1597 .arg(strUrl, strSrc), 1598 1598 0 /* auto-confirm id */, 1599 tr("Continue", "a dditions"));1599 tr("Continue", "agree with additions installation")); 1600 1600 } 1601 1601 … … 2010 2010 "machine using a virtual optical disk or from the network."), 2011 2011 0 /* auto-confirm id */, 2012 tr("Continue", " no hard disk attached"),2013 tr("Go Back", " no hard disk attached"));2012 tr("Continue", "agree to create VM with no hard disk attached"), 2013 tr("Go Back", "reject to create VM with no hard disk attached")); 2014 2014 } 2015 2015 … … 2025 2025 .arg(machineNames.join(", ")), 2026 2026 0 /* auto-confirm id */, 2027 tr("Continue" ));2027 tr("Continue", "agree to export VMs without saved-state")); 2028 2028 } 2029 2029 -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r105817 r105819 1012 1012 createMessage( 1013 1013 QApplication::translate("UIMessageCenter", "Debugger failure ..."), 1014 QApplication::translate("UIMessageCenter", "Failed to change the parameter of machine debugger.") +1014 QApplication::translate("UIMessageCenter", "Failed to change machine debugger parameter.") + 1015 1015 UIErrorString::formatErrorInfo(comMachineDebugger)); 1016 1016 } … … 1102 1102 createMessage( 1103 1103 QApplication::translate("UIMessageCenter", "Cloud failure ..."), 1104 QApplication::translate("UIMessageCenter", "Failed to assigncloud profile parameter.") +1104 QApplication::translate("UIMessageCenter", "Failed to change cloud profile parameter.") + 1105 1105 UIErrorString::formatErrorInfo(comProfile)); 1106 1106 } … … 1111 1111 createMessage( 1112 1112 QApplication::translate("UIMessageCenter", "Update failure ..."), 1113 QApplication::translate("UIMessageCenter", "Failed to assignupdate agent parameter.") +1113 QApplication::translate("UIMessageCenter", "Failed to change update agent parameter.") + 1114 1114 UIErrorString::formatErrorInfo(comAgent)); 1115 1115 } … … 1120 1120 createMessage( 1121 1121 QApplication::translate("UIMessageCenter", "Keyboard failure ..."), 1122 QApplication::translate("UIMessageCenter", "Failed to assignkeyboard parameter.") +1122 QApplication::translate("UIMessageCenter", "Failed to change keyboard parameter.") + 1123 1123 UIErrorString::formatErrorInfo(comKeyboard)); 1124 1124 } … … 1129 1129 createMessage( 1130 1130 QApplication::translate("UIMessageCenter", "Mouse failure ..."), 1131 QApplication::translate("UIMessageCenter", "Failed to assignmouse parameter.") +1131 QApplication::translate("UIMessageCenter", "Failed to change mouse parameter.") + 1132 1132 UIErrorString::formatErrorInfo(comMouse)); 1133 1133 } … … 1139 1139 createMessage( 1140 1140 QApplication::translate("UIMessageCenter", "VSD failure ..."), 1141 QApplication::translate("UIMessageCenter", "Failed to assignVSD parameter.") +1141 QApplication::translate("UIMessageCenter", "Failed to change VSD parameter.") + 1142 1142 UIErrorString::formatErrorInfo(comVsd), 1143 1143 QString(), QString(), pParent); … … 4237 4237 QString UINotificationProgressHostOnlyNetworkInterfaceCreate::name() const 4238 4238 { 4239 return UINotificationProgress::tr("Creating Host-only Network Interface ...");4239 return UINotificationProgress::tr("Creating host-only network interface ..."); 4240 4240 } 4241 4241 … … 4277 4277 QString UINotificationProgressHostOnlyNetworkInterfaceRemove::name() const 4278 4278 { 4279 return UINotificationProgress::tr("Removing Host-only Network Interface ...");4279 return UINotificationProgress::tr("Removing host-only network interface ..."); 4280 4280 } 4281 4281
Note:
See TracChangeset
for help on using the changeset viewer.