Changeset 71845 in vbox
- Timestamp:
- Apr 12, 2018 10:19:15 AM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/machine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.cpp
r71839 r71845 394 394 if (extPack.isNull() || !extPack.GetUsable()) 395 395 { 396 message.second << tr("You are trying enable disk encryption for this virtual machine. "396 message.second << tr("You are trying to enable disk encryption for this virtual machine. " 397 397 "However, this requires the <i>%1</i> to be installed. " 398 398 "Please install the Extension Pack from the VirtualBox download site.") … … 408 408 { 409 409 if (m_pComboCipher->currentIndex() == 0) 410 message.second << tr("Disk Encryption cipher type not specified.");410 message.second << tr("Disk encryption cipher type not specified."); 411 411 fPass = false; 412 412 } … … 419 419 { 420 420 if (m_pEditorEncryptionPassword->text().isEmpty()) 421 message.second << tr("Disk Encryption password empty.");421 message.second << tr("Disk encryption password empty."); 422 422 else 423 423 if (m_pEditorEncryptionPassword->text() != 424 424 m_pEditorEncryptionPasswordConfirm->text()) 425 message.second << tr("Disk Encryption passwords do not match.");425 message.second << tr("Disk encryption passwords do not match."); 426 426 fPass = false; 427 427 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.ui
r71839 r71845 216 216 <widget class="QCheckBox" name="m_pCheckBoxEncryption"> 217 217 <property name="whatsThis"> 218 <string>When checked, disks that are attached to this virtual machine are encrypted.</string>218 <string>When checked, disks attached to this virtual machine will be encrypted.</string> 219 219 </property> 220 220 <property name="text"> … … 296 296 <widget class="QLineEdit" name="m_pEditorEncryptionPassword"> 297 297 <property name="whatsThis" > 298 <string>Holds the encryption password for disk attached to this virtual machine.</string>298 <string>Holds the encryption password for disks attached to this virtual machine.</string> 299 299 </property> 300 300 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.