Changeset 34132 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Nov 17, 2010 8:30:23 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r34095 r34132 1112 1112 } 1113 1113 const QString strBase = tr("<p>You are about to remove the virtual machine <b>%1</b> from the machine list.</p>" 1114 "<p>Would you like to remove itfrom your hard disk as well?</p>")1114 "<p>Would you like to delete the files containing the virtual machine from your hard disk as well?</p>") 1115 1115 .arg(machine.GetName()); 1116 1116 const QString strExtd = tr("<p>You are about to remove the virtual machine <b>%1</b> from the machine list.</p>" 1117 "<p>Would you like to remove it from your hard disk as well? " 1118 "Doing this will also remove the files containing the machine's virtual hard disks.</p>") 1117 "<p>Would you like to delete the files containing the virtual machine from your hard disk as well? " 1118 "Doing this will also remove the files containing the machine's virtual hard disks " 1119 "if they are not in use by another machine.</p>") 1119 1120 .arg(machine.GetName()); 1120 1121 return message(&vboxGlobal().selectorWnd(), … … 1124 1125 QIMessageBox::Yes, 1125 1126 QIMessageBox::No, 1126 QIMessageBox::Cancel | QIMessageBox::Escape | QIMessageBox::Default); 1127 QIMessageBox::Cancel | QIMessageBox::Escape | QIMessageBox::Default, 1128 tr("Delete all files"), 1129 tr("Remove only")); 1127 1130 } 1128 1131 else … … 1139 1142 0, /* auto-confirm id */ 1140 1143 QIMessageBox::Ok, 1141 QIMessageBox::Cancel | QIMessageBox::Escape | QIMessageBox::Default); 1144 QIMessageBox::Cancel | QIMessageBox::Escape | QIMessageBox::Default, 1145 0, 1146 tr("Remove")); 1142 1147 } 1143 1148 }
Note:
See TracChangeset
for help on using the changeset viewer.