- Timestamp:
- Mar 25, 2015 7:20:23 PM (10 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
r54953 r54956 403 403 { 404 404 if (m_pComboCipher->currentIndex() == 0) 405 message.second << tr("Encryption cipher type isnot specified.");405 message.second << tr("Encryption cipher type not specified."); 406 406 } 407 407 /* Password should be entered and confirmed if once changed: */ … … 412 412 { 413 413 if (m_pEditorEncryptionPassword->text().isEmpty()) 414 message.second << tr("Encryption password is not entered."); 415 else 416 if (m_pEditorEncryptionPasswordConfirm->text().isEmpty()) 417 message.second << tr("Encryption password is not confirmed."); 414 message.second << tr("Encryption password empty."); 418 415 else 419 416 if (m_pEditorEncryptionPassword->text() != 420 417 m_pEditorEncryptionPasswordConfirm->text()) 421 message.second << tr("En tered and confirmed encryption passwords doesn't match.");418 message.second << tr("Encryption passwords do not match."); 422 419 fPass = false; 423 420 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.ui
r54953 r54956 216 216 <widget class="QCheckBox" name="m_pCheckBoxEncryption"> 217 217 <property name="whatsThis"> 218 <string>When checked, enables the encryption ofthis virtual machine.</string>218 <string>When checked, enables encryption for this virtual machine.</string> 219 219 </property> 220 220 <property name="text"> … … 276 276 <widget class="QComboBox" name="m_pComboCipher"> 277 277 <property name="whatsThis" > 278 <string>Holds the cipher to be used for the virtual machine storage encryption.</string>278 <string>Holds the cipher to be used for encrypting the virtual machine disks.</string> 279 279 </property> 280 280 </widget> … … 296 296 <widget class="QLineEdit" name="m_pEditorEncryptionPassword"> 297 297 <property name="whatsThis" > 298 <string>Holds the password to be assigned forthe virtual machine.</string>298 <string>Holds the password to be assigned to the 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 forthe virtual machine.</string>318 <string>Confirms the password to be assigned to the virtual machine.</string> 319 319 </property> 320 320 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.