Changeset 78260 in vbox for trunk/src/VBox
- Timestamp:
- Apr 23, 2019 3:24:42 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic2.cpp
r78217 r78260 100 100 setTitle(UIWizardImportApp::tr("Appliance settings")); 101 101 102 /* Translate widgets: */ 103 m_pLabel->setText(UIWizardImportApp::tr("These are the virtual machines contained in the appliance " 104 "and the suggested settings of the imported VirtualBox machines. " 105 "You can change many of the properties shown by double-clicking " 106 "on the items and disable others using the check boxes below.")); 102 /* Translate the description label: */ 103 const bool fIsSourceCloudOne = field("isSourceCloudOne").toBool(); 104 if (fIsSourceCloudOne) 105 m_pLabel->setText(UIWizardImportApp::tr("These are the the suggested settings of the cloud VM import " 106 "procedure, they are influencing the resulting local VM instance. " 107 "You can change many of the properties shown by double-clicking " 108 "on the items and disable others using the check boxes below.")); 109 else 110 m_pLabel->setText(UIWizardImportApp::tr("These are the virtual machines contained in the appliance " 111 "and the suggested settings of the imported VirtualBox machines. " 112 "You can change many of the properties shown by double-clicking " 113 "on the items and disable others using the check boxes below.")); 114 115 /* Translate the certificate label: */ 107 116 switch (m_enmCertText) 108 117 {
Note:
See TracChangeset
for help on using the changeset viewer.