Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp	(revision 54753)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp	(revision 54754)
@@ -22,4 +22,5 @@
 /* Qt includes: */
 # include <QVBoxLayout>
+# include <QLabel>
 # include <QLineEdit>
 # include <QTableView>
@@ -30,5 +31,4 @@
 
 /* GUI includes: */
-# include "QILabel.h"
 # include "QIDialogButtonBox.h"
 # include "QIWithRetranslateUI.h"
@@ -374,6 +374,9 @@
 }
 
-UIAddDiskEncryptionPasswordDialog::UIAddDiskEncryptionPasswordDialog(QWidget *pParent, const EncryptedMediumMap &encryptedMediums)
+UIAddDiskEncryptionPasswordDialog::UIAddDiskEncryptionPasswordDialog(QWidget *pParent,
+                                                                     const QString &strMachineName,
+                                                                     const EncryptedMediumMap &encryptedMediums)
     : QIWithRetranslateUI<QDialog>(pParent)
+    , m_strMachineName(strMachineName)
     , m_encryptedMediums(encryptedMediums)
     , m_pLabelDescription(0)
@@ -403,11 +406,7 @@
         {
             /* Create description label: */
-            m_pLabelDescription = new QILabel;
-            m_pLabelDescription->useSizeHintForWidth(450);
-            m_pLabelDescription->updateGeometry();
+            m_pLabelDescription = new QLabel;
             AssertPtrReturnVoid(m_pLabelDescription);
             {
-                /* Configure description label: */
-                m_pLabelDescription->setWordWrap(true);
                 /* Add label into layout: */
                 pInputLayout->addWidget(m_pLabelDescription);
@@ -439,4 +438,8 @@
 void UIAddDiskEncryptionPasswordDialog::retranslateUi()
 {
+    /* Translate the dialog title: */
+    setWindowTitle(tr("%1 - Disk Encryption").arg(m_strMachineName));
+
+    /* Translate the description label: */
     AssertPtrReturnVoid(m_pLabelDescription);
     m_pLabelDescription->setText(tr("This virtual machine is password protected. "
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.h	(revision 54753)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.h	(revision 54754)
@@ -28,5 +28,5 @@
 /* Forward declarations: */
 class UIEncryptionDataTable;
-class QILabel;
+class QLabel;
 
 /* Type definitions: */
@@ -44,6 +44,7 @@
     /** Constructor.
       * @param pParent          being passed to the base-class,
+      * @param strMachineName   holds the name of the machine we show this dialog for,
       * @param encryptedMediums contains the lists of medium ids (values) encrypted with passwords with ids (keys). */
-    UIAddDiskEncryptionPasswordDialog(QWidget *pParent, const EncryptedMediumMap &encryptedMediums);
+    UIAddDiskEncryptionPasswordDialog(QWidget *pParent, const QString &strMachineName, const EncryptedMediumMap &encryptedMediums);
 
     /** Returns the shallow copy of the encryption password map
@@ -59,9 +60,12 @@
     void retranslateUi();
 
+    /** Holds the name of the machine we show this dialog for. */
+    const QString m_strMachineName;
+
     /** Holds the encrypted medium map reference. */
     const EncryptedMediumMap &m_encryptedMediums;
 
     /** Holds the description label instance. */
-    QILabel *m_pLabelDescription;
+    QLabel *m_pLabelDescription;
     /** Holds the encryption-data table instance. */
     UIEncryptionDataTable *m_pTableEncryptionData;
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp	(revision 54753)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp	(revision 54754)
@@ -2437,5 +2437,7 @@
         /* Create corresponding dialog: */
         QPointer<UIAddDiskEncryptionPasswordDialog> pDlg =
-             new UIAddDiskEncryptionPasswordDialog(activeMachineWindow(), encryptedMediums);
+             new UIAddDiskEncryptionPasswordDialog(activeMachineWindow(),
+                                                   machineName(),
+                                                   encryptedMediums);
         /* Execute it and acquire the result: */
         if (pDlg->exec() == QDialog::Accepted)
