Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.cpp	(revision 92470)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.cpp	(revision 92471)
@@ -150,5 +150,5 @@
 
 UIVisoBrowserBase::UIVisoBrowserBase(QWidget *pParent /* = 0 */)
-    : QIWithRetranslateUI<QWidget>(pParent)
+    : QIWithRetranslateUI<QGroupBox>(pParent)
     , m_pTreeView(0)
     , m_pMainLayout(0)
@@ -225,5 +225,5 @@
 void UIVisoBrowserBase::resizeEvent(QResizeEvent *pEvent)
 {
-    QIWithRetranslateUI<QWidget>::resizeEvent(pEvent);
+    QIWithRetranslateUI<QGroupBox>::resizeEvent(pEvent);
     if (m_pTreeView)
         updateTreeViewGeometry(m_pTreeView->isVisible());
@@ -235,5 +235,5 @@
     /* Handle only events sent to m_pTreeView only: */
     if (pObj != m_pTreeView)
-        return QIWithRetranslateUI<QWidget>::eventFilter(pObj, pEvent);
+        return QIWithRetranslateUI<QGroupBox>::eventFilter(pObj, pEvent);
 
     if (pEvent->type() == QEvent::KeyPress)
@@ -253,5 +253,5 @@
 
     /* Call to base-class: */
-    return QIWithRetranslateUI<QWidget>::eventFilter(pObj, pEvent);
+    return QIWithRetranslateUI<QGroupBox>::eventFilter(pObj, pEvent);
 }
 
@@ -264,5 +264,5 @@
 
     }
-    QIWithRetranslateUI<QWidget>::keyPressEvent(pEvent);
+    QIWithRetranslateUI<QGroupBox>::keyPressEvent(pEvent);
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.h	(revision 92470)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.h	(revision 92471)
@@ -24,5 +24,5 @@
 /* Qt includes: */
 #include <QModelIndex>
-#include <QWidget>
+#include <QGroupBox>
 
 /* GUI includes: */
@@ -36,5 +36,5 @@
 
 /** An abstract QWidget extension hosting a tree and table view. */
-class UIVisoBrowserBase : public QIWithRetranslateUI<QWidget>
+class UIVisoBrowserBase : public QIWithRetranslateUI<QGroupBox>
 {
     Q_OBJECT;
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.cpp	(revision 92470)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.cpp	(revision 92471)
@@ -58,5 +58,5 @@
     , m_pMainLayout(0)
     , m_pHostBrowser(0)
-    , m_pVisoBrowser(0)
+    , m_pVISOContentBrowser(0)
     , m_pToolBar(0)
     , m_pVerticalToolBar(0)
@@ -77,7 +77,7 @@
 QStringList UIVisoCreatorWidget::entryList() const
 {
-    if (!m_pVisoBrowser)
+    if (!m_pVISOContentBrowser)
         return QStringList();
-    return m_pVisoBrowser->entryList();
+    return m_pVISOContentBrowser->entryList();
 }
 
@@ -113,10 +113,14 @@
 void UIVisoCreatorWidget::retranslateUi()
 {
+    if (m_pHostBrowser)
+        m_pHostBrowser->setTitle(UIVisoCreatorWidget::tr("Host File System"));
+    if (m_pVISOContentBrowser)
+        m_pVISOContentBrowser->setTitle(UIVisoCreatorWidget::tr("VISO Content"));
 }
 
 void UIVisoCreatorWidget::sltHandleAddObjectsToViso(QStringList pathList)
 {
-    if (m_pVisoBrowser)
-        m_pVisoBrowser->addObjectsToViso(pathList);
+    if (m_pVISOContentBrowser)
+        m_pVISOContentBrowser->addObjectsToViso(pathList);
 }
 
@@ -147,6 +151,6 @@
         return;
     m_visoOptions.m_strVisoName = strVisoName;
-    if(m_pVisoBrowser)
-        m_pVisoBrowser->setVisoName(m_visoOptions.m_strVisoName);
+    if(m_pVISOContentBrowser)
+        m_pVISOContentBrowser->setVisoName(m_visoOptions.m_strVisoName);
 }
 
@@ -200,5 +204,5 @@
         menu.addAction(m_pAddAction);
     }
-    else if (sender() == m_pVisoBrowser)
+    else if (sender() == m_pVISOContentBrowser)
     {
         menu.addAction(m_pRemoveAction);
@@ -245,4 +249,6 @@
     {
         m_pMainLayout->addWidget(m_pHostBrowser, 1, 0, 1, 2);
+        m_pHostBrowser->setAlignment(Qt::AlignLeft);
+
         m_pMainLayout->setColumnStretch(m_pMainLayout->indexOf(m_pHostBrowser), 2);
     }
@@ -255,10 +261,10 @@
     }
 
-    m_pVisoBrowser = new UIVisoContentBrowser;
-    if (m_pVisoBrowser)
-    {
-        m_pMainLayout->addWidget(m_pVisoBrowser, 1, 3, 1, 2);
-        m_pVisoBrowser->setVisoName(m_visoOptions.m_strVisoName);
-        m_pMainLayout->setColumnStretch(m_pMainLayout->indexOf(m_pVisoBrowser), 2);
+    m_pVISOContentBrowser = new UIVisoContentBrowser;
+    if (m_pVISOContentBrowser)
+    {
+        m_pMainLayout->addWidget(m_pVISOContentBrowser, 1, 3, 1, 2);
+        m_pVISOContentBrowser->setVisoName(m_visoOptions.m_strVisoName);
+        m_pMainLayout->setColumnStretch(m_pMainLayout->indexOf(m_pVISOContentBrowser), 2);
     }
 
@@ -295,9 +301,9 @@
     }
 
-    if (m_pVisoBrowser)
-    {
-        connect(m_pVisoBrowser, &UIVisoContentBrowser::sigTableSelectionChanged,
+    if (m_pVISOContentBrowser)
+    {
+        connect(m_pVISOContentBrowser, &UIVisoContentBrowser::sigTableSelectionChanged,
                 this, &UIVisoCreatorWidget::sltHandleContentBrowserTableSelectionChanged);
-        connect(m_pVisoBrowser, &UIVisoContentBrowser::sigCreateFileTableViewContextMenu,
+        connect(m_pVISOContentBrowser, &UIVisoContentBrowser::sigCreateFileTableViewContextMenu,
                 this, &UIVisoCreatorWidget::sltHandleShowContextMenu);
     }
@@ -334,14 +340,14 @@
     if (m_pCreateNewDirectoryAction)
         connect(m_pCreateNewDirectoryAction, &QAction::triggered,
-                m_pVisoBrowser, &UIVisoContentBrowser::sltHandleCreateNewDirectory);
+                m_pVISOContentBrowser, &UIVisoContentBrowser::sltHandleCreateNewDirectory);
     if (m_pRemoveAction)
         connect(m_pRemoveAction, &QAction::triggered,
-                m_pVisoBrowser, &UIVisoContentBrowser::sltHandleRemoveItems);
+                m_pVISOContentBrowser, &UIVisoContentBrowser::sltHandleRemoveItems);
     if (m_pResetAction)
         connect(m_pResetAction, &QAction::triggered,
-                m_pVisoBrowser, &UIVisoContentBrowser::sltHandleResetAction);
+                m_pVISOContentBrowser, &UIVisoContentBrowser::sltHandleResetAction);
     if (m_pRenameAction)
         connect(m_pRenameAction, &QAction::triggered,
-                m_pVisoBrowser,&UIVisoContentBrowser::sltHandleItemRenameAction);
+                m_pVISOContentBrowser,&UIVisoContentBrowser::sltHandleItemRenameAction);
 }
 
@@ -440,5 +446,5 @@
     //    host and/or content browser is open. We use the escape key to close those first: */
     // if ((m_pHostBrowser && m_pHostBrowser->isTreeViewVisible()) ||
-    //     (m_pVisoBrowser && m_pVisoBrowser->isTreeViewVisible()))
+    //     (m_pVISOContentBrowser && m_pVISOContentBrowser->isTreeViewVisible()))
     // {
     //     if (m_pButtonBox && m_pButtonBox->button(QDialogButtonBox::Cancel))
@@ -590,13 +596,13 @@
 {
     if (!m_strMachineName.isEmpty())
-        setWindowTitle(QString("%1 - %2").arg(m_strMachineName).arg(tr("VISO Creator")));
+        setWindowTitle(QString("%1 - %2").arg(m_strMachineName).arg(UIVisoCreatorWidget::tr("VISO Creator")));
     else
-        setWindowTitle(QString("%1").arg(tr("VISO Creator")));
+        setWindowTitle(QString("%1").arg(UIVisoCreatorWidget::tr("VISO Creator")));
     if (m_pButtonBox && m_pButtonBox->button(QDialogButtonBox::Ok))
     {
-        m_pButtonBox->button(QDialogButtonBox::Ok)->setText(QApplication::translate("UIVisoCreator", "C&reate"));
-        m_pButtonBox->button(QDialogButtonBox::Ok)->setToolTip(QApplication::translate("UIVisoCreator", "Creates VISO file with the selected content"));
+        m_pButtonBox->button(QDialogButtonBox::Ok)->setText(UIVisoCreatorWidget::tr("C&reate"));
+        m_pButtonBox->button(QDialogButtonBox::Ok)->setToolTip(UIVisoCreatorWidget::tr("Creates VISO file with the selected content"));
     }
     if (m_pButtonBox && m_pButtonBox->button(QDialogButtonBox::Help))
-        m_pButtonBox->button(QDialogButtonBox::Help)->setToolTip(QApplication::translate("UIVisoCreator", "Opens the help browser and navigates to the related section"));
-}
+        m_pButtonBox->button(QDialogButtonBox::Help)->setToolTip(UIVisoCreatorWidget::tr("Opens the help browser and navigates to the related section"));
+}
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h	(revision 92470)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h	(revision 92471)
@@ -152,5 +152,5 @@
     QGridLayout          *m_pMainLayout;
     UIVisoHostBrowser    *m_pHostBrowser;
-    UIVisoContentBrowser *m_pVisoBrowser;
+    UIVisoContentBrowser *m_pVISOContentBrowser;
 
     QIToolBar            *m_pToolBar;
