Changeset 71839 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Apr 12, 2018 9:13:27 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
r71027 r71839 394 394 if (extPack.isNull() || !extPack.GetUsable()) 395 395 { 396 message.second << tr("You are trying to encryptthis virtual machine. "396 message.second << tr("You are trying 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(" 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(" 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(" Encryption passwords do not match.");425 message.second << tr("Disk Encryption passwords do not match."); 426 426 fPass = false; 427 427 } … … 946 946 return fSuccess; 947 947 } 948 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.ui
r71027 r71839 210 210 <widget class="QWidget" name="m_pTabEncryption"> 211 211 <attribute name="title"> 212 <string> Enc&ryption</string>212 <string>Disk Enc&ryption</string> 213 213 </attribute> 214 214 <layout class="QGridLayout" name="m_pLayoutEncryption"> … … 216 216 <widget class="QCheckBox" name="m_pCheckBoxEncryption"> 217 217 <property name="whatsThis"> 218 <string>When checked, enables encryption for this virtual machine.</string>218 <string>When checked, disks that are attached to this virtual machine are encrypted.</string> 219 219 </property> 220 220 <property name="text"> 221 <string>En&able Encryption</string>221 <string>En&able Disk Encryption</string> 222 222 </property> 223 223 </widget> … … 263 263 <widget class="QLabel" name="m_pLabelCipher"> 264 264 <property name="text"> 265 <string> Encryption C&ipher:</string>265 <string>Disk Encryption C&ipher:</string> 266 266 </property> 267 267 <property name="alignment"> … … 296 296 <widget class="QLineEdit" name="m_pEditorEncryptionPassword"> 297 297 <property name="whatsThis" > 298 <string>Holds the password to be assigned to thevirtual machine.</string>298 <string>Holds the encryption password for disk attached to this virtual machine.</string> 299 299 </property> 300 300 </widget> … … 316 316 <widget class="QLineEdit" name="m_pEditorEncryptionPasswordConfirm"> 317 317 <property name="whatsThis" > 318 <string>Confirms the password to be assigned to the virtual machine.</string>318 <string>Confirms the disk encryption password.</string> 319 319 </property> 320 320 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.