- Timestamp:
- May 27, 2015 3:40:21 PM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp
r55135 r56105 286 286 switch (iSection) 287 287 { 288 case UIEncryptionDataTableSection_Status: return tr("Status", "password table field");289 case UIEncryptionDataTableSection_Id: return tr("ID", "password table field");290 case UIEncryptionDataTableSection_Password: return tr("Password", "password table field");288 case UIEncryptionDataTableSection_Status: return UIAddDiskEncryptionPasswordDialog::tr("Status", "password table field"); 289 case UIEncryptionDataTableSection_Id: return UIAddDiskEncryptionPasswordDialog::tr("ID", "password table field"); 290 case UIEncryptionDataTableSection_Password: return UIAddDiskEncryptionPasswordDialog::tr("Password", "password table field"); 291 291 default: break; 292 292 } … … 347 347 * but be quiet, it's safe enough because the tool-tip being re-acquired every time on mouse-hovering. */ 348 348 const QStringList encryptedMediums = m_encryptedMediums.values(m_encryptionPasswords.keys().at(index.row())); 349 return tr("<nobr>Used by the following %n hard drive(s):</nobr><br>%1",350 "This text is never used with n == 0. "351 "Feel free to drop the %n where possible, "352 "we only included it because of problems with Qt Linguist "353 "(but the user can see how many hard drives are in the tool-tip "354 "and doesn't need to be told).",355 encryptedMediums.size())356 .arg(encryptedMediums.join("<br>"));349 return UIAddDiskEncryptionPasswordDialog::tr("<nobr>Used by the following %n hard drive(s):</nobr><br>%1", 350 "This text is never used with n == 0. " 351 "Feel free to drop the %n where possible, " 352 "we only included it because of problems with Qt Linguist " 353 "(but the user can see how many hard drives are in the tool-tip " 354 "and doesn't need to be told).", 355 encryptedMediums.size()) 356 .arg(encryptedMediums.join("<br>")); 357 357 } 358 358 default: -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.ui
r54956 r56105 276 276 <widget class="QComboBox" name="m_pComboCipher"> 277 277 <property name="whatsThis" > 278 <string> Holds the cipher to be used for encrypting the virtual machine disks.</string>278 <string>Selects the cipher to be used for encrypting the virtual machine disks.</string> 279 279 </property> 280 280 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.