Changeset 37838 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 8, 2011 11:27:16 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72727
- 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 1244 1244 { 1245 1245 case KMediumVariant_Standard: 1246 return tr("Dynamically expandingstorage");1246 return tr("Dynamically allocated storage"); 1247 1247 case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_Fixed): 1248 1248 return tr("Fixed size storage"); 1249 1249 case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_VmdkSplit2G): 1250 return tr("Dynamically expandingstorage split into files of less than 2GB");1250 return tr("Dynamically allocated storage split into files of less than 2GB"); 1251 1251 case (KMediumVariant)(KMediumVariant_Standard | KMediumVariant_Fixed | KMediumVariant_VmdkSplit2G): 1252 1252 return tr("Fixed size storage split into files of less than 2GB"); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newhd/UINewHDWizard.cpp
r37684 r37838 529 529 /* Translate 'variant' page: */ 530 530 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."); 532 532 533 533 /* Translate other text: */ … … 535 535 CMediumFormat mediumFormat = field("mediumFormat").value<CMediumFormat>(); 536 536 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, " 538 538 "although it will not shrink again automatically when space on it is freed.</p>"); 539 539 if (mediumFormat.isNull() || (mediumFormat.GetCapabilities() & KMediumFormatCapabilities_CreateFixed)) … … 546 546 547 547 /* Translate buttons: */ 548 m_pDynamicalButton->setText(UINewHDWizard::tr("&Dynamically expanding"));548 m_pDynamicalButton->setText(UINewHDWizard::tr("&Dynamically allocated")); 549 549 m_pFixedButton->setText(UINewHDWizard::tr("&Fixed size")); 550 550 m_pSplitBox->setText(UINewHDWizard::tr("&Split into files of less than 2GB"));
Note:
See TracChangeset
for help on using the changeset viewer.