Changeset 97260 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 20, 2022 11:02:43 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 154246
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r96407 r97260 486 486 } 487 487 } 488 if ((enmMediumVariant & MediumVariant_VmdkRawDisk) && strcmp(format, "VMDK")) 489 return errorSyntax(Disk::tr("Variant 'Rawdisk' requires '--format=VMDK'")); 488 490 } 489 491 else … … 491 493 if ( !filename 492 494 || !*filename) 493 return errorSyntax(Disk::tr("Parameter s--filename is required"));495 return errorSyntax(Disk::tr("Parameter --filename is required")); 494 496 size = 0; 495 497 if (cmd != CMD_DISK) … … 596 598 if (!fPropertyFound) 597 599 return RTMsgErrorExit(RTEXITCODE_FAILURE, 598 Disk::tr(" The %s is not found in the property list of the requested medium format."),599 pszKey );600 Disk::tr("Property '%s' was not found in the list of medium properties for the requested medium format (%s)."), 601 pszKey, format); 600 602 if (!fBinary) 601 603 CHECK_ERROR2I_RET(pMedium, SetProperty(Bstr(pszKey).raw(), Bstr(it->m_pszValue).raw()),
Note:
See TracChangeset
for help on using the changeset viewer.