Index: /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp	(revision 41331)
@@ -4477,4 +4477,22 @@
 }
 #endif /* Q_WS_MAC */
+
+/* static */
+QString VBoxGlobal::fullMediumFormatName(const QString &strBaseMediumFormatName)
+{
+    if (strBaseMediumFormatName == "VDI")
+        return tr("VDI (VirtualBox Disk Image)");
+    else if (strBaseMediumFormatName == "VMDK")
+        return tr("VMDK (Virtual Machine Disk)");
+    else if (strBaseMediumFormatName == "VHD")
+        return tr("VHD (Virtual Hard Disk)");
+    else if (strBaseMediumFormatName == "Parallels")
+        return tr("HDD (Parallels Hard Disk)");
+    else if (strBaseMediumFormatName == "QED")
+        return tr("QED (QEMU enhanced disk)");
+    else if (strBaseMediumFormatName == "QCOW")
+        return tr("QCOW (QEMU Copy-On-Write)");
+    return strBaseMediumFormatName;
+}
 
 // Public slots
Index: /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h	(revision 41331)
@@ -743,4 +743,7 @@
 #endif /* Q_WS_MAC */
 
+    /* Returns full medium-format name for the given base medium-format name: */
+    static QString fullMediumFormatName(const QString &strBaseMediumFormatName);
+
 signals:
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp	(revision 41331)
@@ -43,22 +43,4 @@
     assignBackground(":/vmw_new_harddisk_bg.png");
 #endif /* Q_WS_MAC */
-}
-
-/* static */
-QString UIWizardCloneVD::fullFormatName(const QString &strBaseFormatName)
-{
-    if (strBaseFormatName == "VDI")
-        return QApplication::translate("UIWizardCloneVD", "&VDI (VirtualBox Disk Image)");
-    else if (strBaseFormatName == "VMDK")
-        return QApplication::translate("UIWizardCloneVD", "V&MDK (Virtual Machine Disk)");
-    else if (strBaseFormatName == "VHD")
-        return QApplication::translate("UIWizardCloneVD", "V&HD (Virtual Hard Disk)");
-    else if (strBaseFormatName == "Parallels")
-        return QApplication::translate("UIWizardCloneVD", "H&DD (Parallels Hard Disk)");
-    else if (strBaseFormatName == "QED")
-        return QApplication::translate("UIWizardCloneVD", "Q&ED (QEMU enhanced disk)");
-    else if (strBaseFormatName == "QCOW")
-        return QApplication::translate("UIWizardCloneVD", "&QCOW (QEMU Copy-On-Write)");
-    return strBaseFormatName;
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.h	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.h	(revision 41331)
@@ -53,7 +53,4 @@
     CMedium virtualDisk() const { return m_virtualDisk; }
 
-    /* Returns full medium format name: */
-    static QString fullFormatName(const QString &strBaseFormatName);
-
 protected:
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic2.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic2.cpp	(revision 41331)
@@ -144,10 +144,10 @@
                                           "to use it with other virtualization software you can "
                                           "leave this setting unchanged."));
-    m_pFormatCnt->setTitle(UIWizardCloneVD::tr("File type"));
+    m_pFormatCnt->setTitle(UIWizardCloneVD::tr("File &type"));
     QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons();
     for (int i = 0; i < buttons.size(); ++i)
     {
         QAbstractButton *pButton = buttons[i];
-        pButton->setText(UIWizardCloneVD::fullFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
+        pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
     }
 }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic5.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic5.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic5.cpp	(revision 41331)
@@ -69,5 +69,5 @@
     )
     .arg(UIWizardCloneVD::tr("File type", "summary"), mediumFormat.isNull() ?
-             QString() : VBoxGlobal::removeAccelMark(UIWizardCloneVD::fullFormatName(mediumFormat.GetName())))
+         QString() : VBoxGlobal::removeAccelMark(VBoxGlobal::fullMediumFormatName(mediumFormat.GetName())))
     .arg(UIWizardCloneVD::tr("Details", "summary"), vboxGlobal().toString((KMediumVariant)uVariant))
     .arg(UIWizardCloneVD::tr("Location", "summary"), strMediumPath)
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp	(revision 41331)
@@ -239,10 +239,10 @@
     m_pDestinationCnt->setTitle(UIWizardCloneVD::tr("&Destination virtual disk"));
     m_pDestinationDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a virtual hard disk file..."));
-    m_pFormatCnt->setTitle(UIWizardCloneVD::tr("File type"));
+    m_pFormatCnt->setTitle(UIWizardCloneVD::tr("File &type"));
     QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons();
     for (int i = 0; i < buttons.size(); ++i)
     {
         QAbstractButton *pButton = buttons[i];
-        pButton->setText(UIWizardCloneVD::fullFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
+        pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
     }
     m_pVariantCnt->setTitle(UIWizardCloneVD::tr("Storage details"));
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp	(revision 41331)
@@ -44,22 +44,4 @@
     assignBackground(":/vmw_new_harddisk_bg.png");
 #endif /* Q_WS_MAC */
-}
-
-/* static */
-QString UIWizardNewVD::fullFormatName(const QString &strBaseFormatName)
-{
-    if (strBaseFormatName == "VDI")
-        return QApplication::translate("UIWizardNewVD", "&VDI (VirtualBox Disk Image)");
-    else if (strBaseFormatName == "VMDK")
-        return QApplication::translate("UIWizardNewVD", "V&MDK (Virtual Machine Disk)");
-    else if (strBaseFormatName == "VHD")
-        return QApplication::translate("UIWizardNewVD", "V&HD (Virtual Hard Disk)");
-    else if (strBaseFormatName == "Parallels")
-        return QApplication::translate("UIWizardNewVD", "H&DD (Parallels Hard Disk)");
-    else if (strBaseFormatName == "QED")
-        return QApplication::translate("UIWizardNewVD", "Q&ED (QEMU enhanced disk)");
-    else if (strBaseFormatName == "QCOW")
-        return QApplication::translate("UIWizardNewVD", "&QCOW (QEMU Copy-On-Write)");
-    return strBaseFormatName;
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.h	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.h	(revision 41331)
@@ -54,7 +54,4 @@
     CMedium virtualDisk() const { return m_virtualDisk; }
 
-    /* Returns full medium format name: */
-    static QString fullFormatName(const QString &strBaseFormatName);
-
 protected:
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic1.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic1.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic1.cpp	(revision 41331)
@@ -146,10 +146,10 @@
                                                            "to use it with other virtualization software you can "
                                                            "leave this setting unchanged.</p>"));
-    m_pFormatCnt->setTitle(UIWizardNewVD::tr("File type"));
+    m_pFormatCnt->setTitle(UIWizardNewVD::tr("File &type"));
     QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons();
     for (int i = 0; i < buttons.size(); ++i)
     {
         QAbstractButton *pButton = buttons[i];
-        pButton->setText(UIWizardNewVD::fullFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
+        pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
     }
 }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic4.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic4.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic4.cpp	(revision 41331)
@@ -67,5 +67,6 @@
         "<tr><td><nobr>%7: </nobr></td><td><nobr>%8 (%9)</nobr></td></tr>"
     )
-    .arg(UIWizardNewVD::tr("File type", "summary"), mediumFormat.isNull() ? QString() : VBoxGlobal::removeAccelMark(UIWizardNewVD::fullFormatName(mediumFormat.GetName())))
+    .arg(UIWizardNewVD::tr("File type", "summary"), mediumFormat.isNull() ?
+         QString() : VBoxGlobal::removeAccelMark(VBoxGlobal::fullMediumFormatName(mediumFormat.GetName())))
     .arg(UIWizardNewVD::tr("Details", "summary"), vboxGlobal().toString((KMediumVariant)uVariant))
     .arg(UIWizardNewVD::tr("Location", "summary"), strMediumPath)
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.cpp	(revision 41330)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.cpp	(revision 41331)
@@ -258,10 +258,10 @@
     m_pLocationOpenButton->setToolTip(UIWizardNewVD::tr("Choose a virtual hard disk file..."));
     m_pSizeCnt->setTitle(UIWizardNewVD::tr("&Size"));
-    m_pFormatCnt->setTitle(UIWizardNewVD::tr("File type"));
+    m_pFormatCnt->setTitle(UIWizardNewVD::tr("File &type"));
     QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons();
     for (int i = 0; i < buttons.size(); ++i)
     {
         QAbstractButton *pButton = buttons[i];
-        pButton->setText(UIWizardNewVD::fullFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
+        pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)]));
     }
     m_pVariantCnt->setTitle(UIWizardNewVD::tr("Storage details"));
