Changeset 37585 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 22, 2011 9:57:30 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72429
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r37525 r37585 2986 2986 tr ("Host-only Adapter", "NetworkAttachmentType"); 2987 2987 mNetworkAttachmentTypes [KNetworkAttachmentType_Generic] = 2988 tr ("Generic ", "NetworkAttachmentType");2988 tr ("Generic Driver", "NetworkAttachmentType"); 2989 2989 2990 2990 mNetworkAdapterPromiscModePolicyTypes [KNetworkAdapterPromiscModePolicy_Deny] = -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMDesktop.cpp
r37571 r37585 842 842 "details report (network)").arg(adapter.GetHostOnlyInterface())); 843 843 else if (type == KNetworkAttachmentType_Generic) 844 attType = attType.arg(tr("Generic , '%1' { %2 }",844 attType = attType.arg(tr("Generic driver, '%1' { %2 }", 845 845 "details report (network)").arg(adapter.GetGenericDriver(), summarizeGenericProperties(adapter))); 846 846 else -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.cpp
r37571 r37585 240 240 { 241 241 strWarning = tr("no host-only network adapter is selected"); 242 fValid = false; 243 } 244 break; 245 case KNetworkAttachmentType_Generic: 246 if (alternativeName().isNull()) 247 { 248 strWarning = tr("no generic driver is selected"); 242 249 fValid = false; 243 250 }
Note:
See TracChangeset
for help on using the changeset viewer.