VirtualBox

Ignore:
Timestamp:
Jul 8, 2011 11:27:16 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
72727
Message:

FE/Qt: 'dynamically expanded image' => 'dynamically allocated image'

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp

    r37753 r37838  
    12441244    {
    12451245        case KMediumVariant_Standard:
    1246             return tr("Dynamically expanding storage");
     1246            return tr("Dynamically allocated storage");
    12471247        case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_Fixed):
    12481248            return tr("Fixed size storage");
    12491249        case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_VmdkSplit2G):
    1250             return tr("Dynamically expanding storage split into files of less than 2GB");
     1250            return tr("Dynamically allocated storage split into files of less than 2GB");
    12511251        case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_Fixed | KMediumVariant_VmdkSplit2G):
    12521252            return tr("Fixed size storage split into files of less than 2GB");
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newhd/UINewHDWizard.cpp

    r37684 r37838  
    529529    /* Translate 'variant' page: */
    530530    setTitle(UINewHDWizard::tr("Virtual disk storage details"));
    531     m_pLabel->setText("Please choose whether the new virtual disk file should expand as it is used or be created fully expanded.");
     531    m_pLabel->setText("Please choose whether the new virtual disk file should be allocated as it is used or if it should be created fully allocated.");
    532532
    533533    /* Translate other text: */
     
    535535    CMediumFormat mediumFormat = field("mediumFormat").value<CMediumFormat>();
    536536    if (mediumFormat.isNull() || (mediumFormat.GetCapabilities() & KMediumFormatCapabilities_CreateDynamic))
    537         strText += UINewHDWizard::tr("<p>A <b>dynamically expanding</b> virtual disk file will only use space on your physical hard disk as it fills up, "
     537        strText += UINewHDWizard::tr("<p>A <b>dynamically allocated</b> virtual disk file will only use space on your physical hard disk as it fills up, "
    538538                                     "although it will not shrink again automatically when space on it is freed.</p>");
    539539    if (mediumFormat.isNull() || (mediumFormat.GetCapabilities() & KMediumFormatCapabilities_CreateFixed))
     
    546546
    547547    /* Translate buttons: */
    548     m_pDynamicalButton->setText(UINewHDWizard::tr("&Dynamically expanding"));
     548    m_pDynamicalButton->setText(UINewHDWizard::tr("&Dynamically allocated"));
    549549    m_pFixedButton->setText(UINewHDWizard::tr("&Fixed size"));
    550550    m_pSplitBox->setText(UINewHDWizard::tr("&Split into files of less than 2GB"));
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette