Changeset 94643 in vbox for trunk/src/VBox
- Timestamp:
- Apr 20, 2022 9:08:37 AM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 18 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r94521 r94643 22 22 23 23 24 ## @todo r=andy Sort this stuff alphabetically! 24 25 VBOX_COMMON_VBOXMANAGE_DEFS = \ 25 26 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \ … … 51 52 $(if $(VBOX_WITH_IOMMU_AMD),VBOX_WITH_IOMMU_AMD) \ 52 53 $(if $(VBOX_WITH_IOMMU_INTEL),VBOX_WITH_IOMMU_INTEL) \ 54 $(if $(VBOX_WITH_UPDATE_AGENT), VBOX_WITH_UPDATE_AGENT) \ 53 55 $(if $(VBOX_WITH_VMSVGA),VBOX_WITH_VMSVGA) \ 54 56 $(if $(VBOX_WITH_MAIN_NLS),VBOX_WITH_MAIN_NLS) \ … … 91 93 VBoxManageSnapshot.cpp \ 92 94 VBoxManageStorageController.cpp \ 93 VBoxManageUpdateCheck.cpp\95 $(if $(VBOX_WITH_UPDATE_AGENT),VBoxManageUpdateCheck.cpp) \ 94 96 VBoxManageUSB.cpp \ 95 97 $(if $(VBOX_WITH_NAT_SERVICE),VBoxManageNATNetwork.cpp,) \ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r94290 r94643 253 253 { "cloudprofile", HELP_CMD_CLOUDPROFILE, handleCloudProfile, 0 }, 254 254 { "cloud", HELP_CMD_CLOUD, handleCloud, 0 }, 255 #ifdef VBOX_WITH_UPDATE_AGENT 255 256 { "updatecheck", HELP_CMD_UPDATECHECK, handleUpdateCheck, 0 }, 257 #endif 256 258 { "modifynvram", HELP_CMD_MODIFYNVRAM, handleModifyNvram, 0 }, 257 259 }; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r94290 r94643 290 290 const char *pcszProfileName); 291 291 292 #ifdef VBOX_WITH_UPDATE_AGENT 292 293 /* VBoxManageUpdateCheck.cpp */ 293 294 RTEXITCODE handleUpdateCheck(HandlerArg *a); 295 #endif 294 296 295 297 /* VBoxManageModifyNvram.cpp */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r94236 r94643 875 875 systemProperties->COMGETTER(ProxyURL)(str.asOutParam()); 876 876 RTPrintf(List::tr("Proxy URL: %ls\n"), str.raw()); 877 systemProperties->COMGETTER(VBoxUpdateEnabled)(&fValue);878 RTPrintf(List::tr("Update check enabled: %s\n"), fValue ? List::tr("yes") : List::tr("no"));879 systemProperties->COMGETTER(VBoxUpdateCount)(&ulValue);880 RTPrintf(List::tr("Update check count: %u\n"), ulValue);881 systemProperties->COMGETTER(VBoxUpdateFrequency)(&ulValue);882 if (ulValue == 0)883 RTPrintf(List::tr("Update check frequency: never\n"));884 else if (ulValue == 1)885 RTPrintf(List::tr("Update check frequency: every day\n"));886 else887 RTPrintf(List::tr("Update check frequency: every %u days\n", "", ulValue), ulValue);888 VBoxUpdateTarget_T enmVBoxUpdateTarget;889 systemProperties->COMGETTER(VBoxUpdateTarget)(&enmVBoxUpdateTarget);890 switch (enmVBoxUpdateTarget)891 {892 case VBoxUpdateTarget_Stable:893 psz = List::tr("Stable: new minor and maintenance releases");894 break;895 case VBoxUpdateTarget_AllReleases:896 psz = List::tr("All releases: new minor, maintenance, and major releases");897 break;898 case VBoxUpdateTarget_WithBetas:899 psz = List::tr("With Betas: new minor, maintenance, major, and beta releases");900 break;901 default:902 psz = List::tr("Unset");903 break;904 }905 RTPrintf(List::tr("Update check target: %s\n"), psz);906 systemProperties->COMGETTER(VBoxUpdateLastCheckDate)(str.asOutParam());907 RTPrintf(List::tr("Last check date: %ls\n"), str.raw());908 877 #ifdef VBOX_WITH_MAIN_NLS 909 878 systemProperties->COMGETTER(LanguageId)(str.asOutParam()); … … 913 882 } 914 883 884 #ifdef VBOX_WITH_UPDATE_AGENT 885 static HRESULT listUpdateAgentConfig(ComPtr<IUpdateAgent> ptrUpdateAgent) 886 { 887 BOOL fValue; 888 ptrUpdateAgent->COMGETTER(Enabled)(&fValue); 889 RTPrintf(List::tr("Enabled: %s\n"), fValue ? List::tr("yes") : List::tr("no")); 890 ULONG ulValue; 891 ptrUpdateAgent->COMGETTER(CheckCount)(&ulValue); 892 RTPrintf(List::tr("Check count: %u\n"), ulValue); 893 ptrUpdateAgent->COMGETTER(CheckFrequency)(&ulValue); 894 if (ulValue == 0) 895 RTPrintf(List::tr("Check frequency: never\n")); 896 else if (ulValue == 1) 897 RTPrintf(List::tr("Check frequency: every day\n")); 898 else 899 RTPrintf(List::tr("Check frequency: every %u days\n", "", ulValue), ulValue); 900 901 Bstr str; 902 const char *psz; 903 UpdateChannel_T enmUpdateChannel; 904 ptrUpdateAgent->COMGETTER(Channel)(&enmUpdateChannel); 905 switch (enmUpdateChannel) 906 { 907 case UpdateChannel_Stable: 908 psz = List::tr("Stable: Maintenance and minor releases within the same major release"); 909 break; 910 case UpdateChannel_All: 911 psz = List::tr("All releases: All stable releases, including major versions"); 912 break; 913 case UpdateChannel_WithBetas: 914 psz = List::tr("With Betas: All stable and major releases, including beta versions"); 915 break; 916 case UpdateChannel_WithTesting: 917 psz = List::tr("With Testing: All stable, major and beta releases, including testing versions"); 918 break; 919 default: 920 psz = List::tr("Unset"); 921 break; 922 } 923 RTPrintf(List::tr("Channel: %s\n"), psz); 924 ptrUpdateAgent->COMGETTER(RepositoryURL)(str.asOutParam()); 925 RTPrintf(List::tr("Repository: %ls\n"), str.raw()); 926 ptrUpdateAgent->COMGETTER(LastCheckDate)(str.asOutParam()); 927 RTPrintf(List::tr("Last check date: %ls\n"), str.raw()); 928 929 return S_OK; 930 } 931 932 static HRESULT listUpdateAgents(const ComPtr<IVirtualBox> &pVirtualBox) 933 { 934 ComPtr<IHost> pHost; 935 CHECK_ERROR2I_RET(pVirtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE); 936 937 ComPtr<IUpdateAgent> pUpdateHost; 938 CHECK_ERROR2I_RET(pHost, COMGETTER(UpdateHost)(pUpdateHost.asOutParam()), RTEXITCODE_FAILURE); 939 /** @todo Add other update agents here. */ 940 941 return listUpdateAgentConfig(pUpdateHost); 942 } 943 #endif /* VBOX_WITH_UPDATE_AGENT */ 915 944 916 945 /** … … 1883 1912 kListUsbFilters, 1884 1913 kListSystemProperties, 1914 #if defined(VBOX_WITH_UPDATE_AGENT) 1915 kListUpdateAgents, 1916 #endif 1885 1917 kListDhcpServers, 1886 1918 kListExtPacks, … … 2167 2199 break; 2168 2200 2201 #ifdef VBOX_WITH_UPDATE_AGENT 2202 case kListUpdateAgents: 2203 rc = listUpdateAgents(pVirtualBox); 2204 break; 2205 #endif 2169 2206 case kListDhcpServers: 2170 2207 rc = listDhcpServers(pVirtualBox); … … 2261 2298 { "usbfilters", kListUsbFilters, RTGETOPT_REQ_NOTHING }, 2262 2299 { "systemproperties", kListSystemProperties, RTGETOPT_REQ_NOTHING }, 2300 #if defined(VBOX_WITH_UPDATE_AGENT) 2301 { "updates", kListUpdateAgents, RTGETOPT_REQ_NOTHING }, 2302 #endif 2263 2303 { "dhcpservers", kListDhcpServers, RTGETOPT_REQ_NOTHING }, 2264 2304 { "extpacks", kListExtPacks, RTGETOPT_REQ_NOTHING }, … … 2321 2361 case kListUsbFilters: 2322 2362 case kListSystemProperties: 2363 #if defined(VBOX_WITH_UPDATE_AGENT) 2364 case kListUpdateAgents: 2365 #endif 2323 2366 case kListDhcpServers: 2324 2367 case kListExtPacks: -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp
r94438 r94643 41 41 using namespace com; // SafeArray 42 42 43 /** 44 * updatecheck getsettings 45 */ 46 static RTEXITCODE doVBoxUpdateGetSettings(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox) 43 static RTEXITCODE doUpdateList(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent) 47 44 { 48 45 /* … … 77 74 * Do the work. 78 75 */ 79 ComPtr<ISystemProperties> pSystemProperties; 80 CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(SystemProperties)(pSystemProperties.asOutParam()), RTEXITCODE_FAILURE); 81 82 BOOL fVBoxUpdateEnabled; 83 CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled), RTEXITCODE_FAILURE); 84 if (fMachineReadable) 85 outputMachineReadableBool("enabled", &fVBoxUpdateEnabled); 76 BOOL fEnabled; 77 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Enabled)(&fEnabled), RTEXITCODE_FAILURE); 78 if (fMachineReadable) 79 outputMachineReadableBool("enabled", &fEnabled); 86 80 else 87 81 RTPrintf(UpdateCheck::tr("Enabled: %s\n"), 88 f VBoxUpdateEnabled ? UpdateCheck::tr("yes") : UpdateCheck::tr("no"));89 90 ULONG c VBoxUpdateCount;91 CHECK_ERROR2I_RET(p SystemProperties, COMGETTER(VBoxUpdateCount)(&cVBoxUpdateCount), RTEXITCODE_FAILURE);92 if (fMachineReadable) 93 outputMachineReadableULong("count", &c VBoxUpdateCount);82 fEnabled ? UpdateCheck::tr("yes") : UpdateCheck::tr("no")); 83 84 ULONG cCheckCount; 85 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(CheckCount)(&cCheckCount), RTEXITCODE_FAILURE); 86 if (fMachineReadable) 87 outputMachineReadableULong("count", &cCheckCount); 94 88 else 95 RTPrintf(UpdateCheck::tr("Count: %u\n"), cVBoxUpdateCount); 96 97 ULONG cDaysFrequencey; 98 CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateFrequency)(&cDaysFrequencey), RTEXITCODE_FAILURE); 99 if (fMachineReadable) 100 outputMachineReadableULong("frequency", &cDaysFrequencey); 101 else if (cDaysFrequencey == 0) 89 RTPrintf(UpdateCheck::tr("Count: %u\n"), cCheckCount); 90 91 ULONG uCheckFreqSeconds; 92 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(CheckFrequency)(&uCheckFreqSeconds), RTEXITCODE_FAILURE); 93 94 ULONG const uCheckFreqDays = uCheckFreqSeconds / RT_SEC_1DAY; 95 96 if (fMachineReadable) 97 outputMachineReadableULong("frequency", &uCheckFreqSeconds); 98 else if (uCheckFreqDays == 0) 102 99 RTPrintf(UpdateCheck::tr("Frequency: never\n")); /** @todo r=bird: Two inconsistencies here. HostUpdateImpl.cpp code will indicate the need for updating if no last-check-date. modifysettings cannot set it to zero (I added the error message, you just skipped setting it originally). */ 103 else if ( cDaysFrequencey== 1)100 else if (uCheckFreqDays == 1) 104 101 RTPrintf(UpdateCheck::tr("Frequency: every day\n")); 105 102 else 106 RTPrintf(UpdateCheck::tr("Frequency: every %u days\n"), cDaysFrequencey);107 108 VBoxUpdateTarget_T enmVBoxUpdateTarget;109 CHECK_ERROR2I_RET(p SystemProperties, COMGETTER(VBoxUpdateTarget)(&enmVBoxUpdateTarget), RTEXITCODE_FAILURE);103 RTPrintf(UpdateCheck::tr("Frequency: every %u days\n"), uCheckFreqDays); 104 105 UpdateChannel_T enmUpdateChannel; 106 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Channel)(&enmUpdateChannel), RTEXITCODE_FAILURE); 110 107 const char *psz; 111 108 const char *pszMachine; 112 switch (enm VBoxUpdateTarget)113 { 114 case VBoxUpdateTarget_Stable:109 switch (enmUpdateChannel) 110 { 111 case UpdateChannel_Stable: 115 112 psz = UpdateCheck::tr("Stable - new minor and maintenance releases"); 116 113 pszMachine = "stable"; 117 114 break; 118 case VBoxUpdateTarget_AllReleases:115 case UpdateChannel_All: 119 116 psz = UpdateCheck::tr("All releases - new minor, maintenance, and major releases"); 120 117 pszMachine = "all-releases"; 121 118 break; 122 case VBoxUpdateTarget_WithBetas:119 case UpdateChannel_WithBetas: 123 120 psz = UpdateCheck::tr("With Betas - new minor, maintenance, major, and beta releases"); 124 121 pszMachine = "with-betas"; … … 131 128 } 132 129 if (fMachineReadable) 133 outputMachineReadableString(" target", pszMachine);130 outputMachineReadableString("channel", pszMachine); 134 131 else 135 RTPrintf(UpdateCheck::tr(" Target:%s\n"), psz);132 RTPrintf(UpdateCheck::tr("Channel: %s\n"), psz); 136 133 137 134 Bstr bstrLastCheckDate; 138 CHECK_ERROR2I_RET(p SystemProperties, COMGETTER(VBoxUpdateLastCheckDate)(bstrLastCheckDate.asOutParam()),135 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(LastCheckDate)(bstrLastCheckDate.asOutParam()), 139 136 RTEXITCODE_FAILURE); 140 137 if (fMachineReadable) … … 146 143 } 147 144 148 /** 149 * updatecheck modifysettings 150 */ 151 static RTEXITCODE doVBoxUpdateModifySettings(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox) 145 static RTEXITCODE doUpdateModify(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent) 152 146 { 153 147 /* … … 158 152 { "--enable", 'e', RTGETOPT_REQ_NOTHING }, 159 153 { "--disable", 'd', RTGETOPT_REQ_NOTHING }, 160 { "-- target", 't', RTGETOPT_REQ_STRING },154 { "--channel", 'c', RTGETOPT_REQ_STRING }, 161 155 { "--frequency", 'f', RTGETOPT_REQ_UINT32 }, 162 156 }; … … 166 160 AssertRCReturn(vrc, RTEXITCODE_INIT); 167 161 168 int fEnabled 169 VBoxUpdateTarget_T const enmVBoxUpdateTargetNil = (VBoxUpdateTarget_T)-999;170 VBoxUpdateTarget_T enmVBoxUpdateTarget = enmVBoxUpdateTargetNil;171 uint32_t c DaysUpdateFrequency= 0;162 int fEnabled = -1; /* tristate: -1 (not modified), false, true */ 163 UpdateChannel_T const enmChannelNil = (UpdateChannel_T)-999; 164 UpdateChannel_T enmChannel = enmChannelNil; 165 uint32_t cFrequencyDays = 0; 172 166 173 167 int c; … … 185 179 break; 186 180 187 case ' t':181 case 'c': 188 182 if (!RTStrICmp(ValueUnion.psz, "stable")) 189 enm VBoxUpdateTarget = VBoxUpdateTarget_Stable;183 enmChannel = UpdateChannel_Stable; 190 184 else if (!RTStrICmp(ValueUnion.psz, "withbetas")) 191 enm VBoxUpdateTarget = VBoxUpdateTarget_WithBetas;192 else if (!RTStrICmp(ValueUnion.psz, "all releases"))193 enm VBoxUpdateTarget = VBoxUpdateTarget_AllReleases;185 enmChannel = UpdateChannel_WithBetas; 186 else if (!RTStrICmp(ValueUnion.psz, "all")) 187 enmChannel = UpdateChannel_All; 194 188 else 195 return errorArgument(UpdateCheck::tr("Unknown targetspecified: '%s'"), ValueUnion.psz);189 return errorArgument(UpdateCheck::tr("Unknown channel specified: '%s'"), ValueUnion.psz); 196 190 break; 197 191 198 192 case 'f': 199 c DaysUpdateFrequency= ValueUnion.u32;200 if (c DaysUpdateFrequency== 0)193 cFrequencyDays = ValueUnion.u32; 194 if (cFrequencyDays == 0) 201 195 return errorArgument(UpdateCheck::tr("The update frequency cannot be zero")); 202 196 break; … … 208 202 209 203 if ( fEnabled == -1 210 && enm VBoxUpdateTarget != enmVBoxUpdateTargetNil211 && c DaysUpdateFrequency== 0)204 && enmChannel != enmChannelNil 205 && cFrequencyDays == 0) 212 206 return errorSyntax(UpdateCheck::tr("No change requested")); 213 207 … … 215 209 * Make the changes. 216 210 */ 217 ComPtr<ISystemProperties> pSystemProperties; 218 CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(SystemProperties)(pSystemProperties.asOutParam()), RTEXITCODE_FAILURE); 219 220 if (enmVBoxUpdateTarget != enmVBoxUpdateTargetNil) 221 { 222 CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateTarget)(enmVBoxUpdateTarget), RTEXITCODE_FAILURE); 223 } 224 211 if (enmChannel != enmChannelNil) 212 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Channel)(enmChannel), RTEXITCODE_FAILURE); 225 213 if (fEnabled != -1) 226 { 227 CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateEnabled)((BOOL)fEnabled), RTEXITCODE_FAILURE); 228 } 229 230 if (cDaysUpdateFrequency) 231 { 232 CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateFrequency)(cDaysUpdateFrequency), RTEXITCODE_FAILURE); 233 } 214 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Enabled)((BOOL)fEnabled), RTEXITCODE_FAILURE); 215 if (cFrequencyDays) 216 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(CheckFrequency)(cFrequencyDays * RT_SEC_1DAY), RTEXITCODE_FAILURE); 234 217 235 218 return RTEXITCODE_SUCCESS; 236 219 } 237 220 238 /** 239 * updatecheck perform 240 */ 241 static RTEXITCODE doVBoxUpdate(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox) 221 static RTEXITCODE doUpdateCheck(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent) 242 222 { 243 223 /* … … 272 252 * Do the work. 273 253 */ 274 ComPtr<IHost> pHost; 275 CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE); 276 277 ComPtr<IHostUpdate> pHostUpdate; 278 CHECK_ERROR2I_RET(pHost, COMGETTER(Update)(pHostUpdate.asOutParam()), RTEXITCODE_FAILURE); 279 280 UpdateCheckType_T updateCheckType = UpdateCheckType_VirtualBox; 281 ComPtr<IProgress> ptrProgress; 254 Bstr bstrName; 255 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Name)(bstrName.asOutParam()), RTEXITCODE_FAILURE); 282 256 283 257 if (!fMachineReadable) 284 RTPrintf(UpdateCheck::tr("Checking for a new VirtualBox version...\n")); 285 286 // we don't call CHECK_ERROR2I_RET(pHostUpdate, VBoxUpdate(updateCheckType, ...); here so we can check for a specific 287 // return value indicating update checks are disabled. 288 HRESULT rc = pHostUpdate->UpdateCheck(updateCheckType, ptrProgress.asOutParam()); 258 RTPrintf(UpdateCheck::tr("Checking for a new %ls version...\n"), bstrName.raw()); 259 260 /* 261 * We don't call CHECK_ERROR2I_RET(pHostUpdate, VBoxUpdate(updateCheckType, ...); here so we can check for a specific 262 * return value indicating update checks are disabled. 263 */ 264 ComPtr<IProgress> pProgress; 265 HRESULT rc = pUpdateAgent->Check(pProgress.asOutParam()); 289 266 if (FAILED(rc)) 290 267 { 291 /** @todo r=bird: WTF? This makes no sense. I've commented upon this in the 292 * HostUpdateImpl.cpp code too. */ 293 if (rc == E_NOTIMPL) 294 { 295 RTPrintf(UpdateCheck::tr("VirtualBox update checking has been disabled.\n")); 296 return RTEXITCODE_SUCCESS; 297 } 298 299 if (ptrProgress.isNull()) 300 RTStrmPrintf(g_pStdErr, UpdateCheck::tr("Failed to create ptrProgress object: %Rhrc\n"), rc); 268 if (pProgress.isNull()) 269 RTStrmPrintf(g_pStdErr, UpdateCheck::tr("Failed to create update progress object: %Rhrc\n"), rc); 301 270 else 302 com::GlueHandleComError(p HostUpdate, "VBoxUpdate(updateCheckType, ptrProgress.asOutParam())",271 com::GlueHandleComError(pUpdateAgent, "HostUpdate(UpdateChannel_Stable, pProgress.asOutParam())", 303 272 rc, __FILE__, __LINE__); 304 273 return RTEXITCODE_FAILURE; 305 274 } 306 275 307 /* HRESULT hrc = */ showProgress(ptrProgress, fMachineReadable ? SHOW_PROGRESS_NONE : SHOW_PROGRESS); 308 CHECK_PROGRESS_ERROR_RET(ptrProgress, (UpdateCheck::tr("Check for update failed.")), RTEXITCODE_FAILURE); 309 310 BOOL fUpdateNeeded = FALSE; 311 CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateResponse)(&fUpdateNeeded), RTEXITCODE_FAILURE); 312 276 /* HRESULT hrc = */ showProgress(pProgress, fMachineReadable ? SHOW_PROGRESS_NONE : SHOW_PROGRESS); 277 CHECK_PROGRESS_ERROR_RET(pProgress, (UpdateCheck::tr("Checking for update failed.")), RTEXITCODE_FAILURE); 278 279 UpdateState_T updateState; 280 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(State)(&updateState), RTEXITCODE_FAILURE); 281 282 BOOL const fUpdateNeeded = updateState == UpdateState_Available; 313 283 if (fMachineReadable) 314 284 outputMachineReadableBool("update-needed", &fUpdateNeeded); 315 285 316 if (fUpdateNeeded) 317 { 318 Bstr bstrUpdateVersion; 319 CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateVersion)(bstrUpdateVersion.asOutParam()), RTEXITCODE_FAILURE); 320 Bstr bstrUpdateURL; 321 CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateURL)(bstrUpdateURL.asOutParam()), RTEXITCODE_FAILURE); 322 323 if (!fMachineReadable) 324 RTPrintf(UpdateCheck::tr( 325 "A new version of VirtualBox has been released! Version %ls is available at virtualbox.org.\n" 326 "You can download this version here: %ls\n"), 327 bstrUpdateVersion.raw(), bstrUpdateURL.raw()); 328 else 329 { 330 outputMachineReadableString("update-version", &bstrUpdateVersion); 331 outputMachineReadableString("update-url", &bstrUpdateURL); 332 } 333 } 334 else if (!fMachineReadable) 335 RTPrintf(UpdateCheck::tr("You are already running the most recent version of VirtualBox.\n")); 286 switch (updateState) 287 { 288 case UpdateState_Available: 289 { 290 Bstr bstrUpdateVersion; 291 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Version)(bstrUpdateVersion.asOutParam()), RTEXITCODE_FAILURE); 292 Bstr bstrUpdateURL; 293 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(DownloadUrl)(bstrUpdateURL.asOutParam()), RTEXITCODE_FAILURE); 294 295 if (!fMachineReadable) 296 RTPrintf(UpdateCheck::tr( 297 "A new version of %ls has been released! Version %ls is available at virtualbox.org.\n" 298 "You can download this version here: %ls\n"), 299 bstrName.raw(), bstrUpdateVersion.raw(), bstrUpdateURL.raw()); 300 else 301 { 302 outputMachineReadableString("update-version", &bstrUpdateVersion); 303 outputMachineReadableString("update-url", &bstrUpdateURL); 304 } 305 306 break; 307 } 308 309 case UpdateState_NotAvailable: 310 { 311 if (!fMachineReadable) 312 RTPrintf(UpdateCheck::tr("You are already running the most recent version of %ls.\n"), bstrName.raw()); 313 break; 314 } 315 316 case UpdateState_Canceled: 317 break; 318 319 case UpdateState_Error: 320 RT_FALL_THROUGH(); 321 default: 322 { 323 if (!fMachineReadable) 324 RTPrintf(UpdateCheck::tr("Something went wrong while checking for updates!\n" 325 "Please check network connection and try again later.\n")); 326 break; 327 } 328 } 336 329 337 330 return RTEXITCODE_SUCCESS; … … 346 339 RTEXITCODE handleUpdateCheck(HandlerArg *a) 347 340 { 341 ComPtr<IHost> pHost; 342 CHECK_ERROR2I_RET(a->virtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE); 343 344 ComPtr<IUpdateAgent> pUpdate; 345 CHECK_ERROR2I_RET(pHost, COMGETTER(UpdateHost)(pUpdate.asOutParam()), RTEXITCODE_FAILURE); 346 /** @todo Add other update agents here. */ 347 348 348 if (a->argc < 1) 349 349 return errorNoSubcommand(); 350 if (! strcmp(a->argv[0], "perform"))350 if (!RTStrICmp(a->argv[0], "perform")) 351 351 { 352 352 setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_PERFORM); 353 return do VBoxUpdate(a->argc - 1, &a->argv[1], a->virtualBox);354 } 355 if (! strcmp(a->argv[0], "getsettings"))356 { 357 setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_ GETSETTINGS);358 return do VBoxUpdateGetSettings(a->argc - 1, &a->argv[1], a->virtualBox);359 } 360 if (! strcmp(a->argv[0], "modifysettings"))361 { 362 setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_MODIFY SETTINGS);363 return do VBoxUpdateModifySettings(a->argc - 1, &a->argv[1], a->virtualBox);353 return doUpdateCheck(a->argc - 1, &a->argv[1], pUpdate); 354 } 355 if (!RTStrICmp(a->argv[0], "list")) 356 { 357 setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_LIST); 358 return doUpdateList(a->argc - 1, &a->argv[1], pUpdate); 359 } 360 if (!RTStrICmp(a->argv[0], "modify")) 361 { 362 setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_MODIFY); 363 return doUpdateModify(a->argc - 1, &a->argv[1], pUpdate); 364 364 } 365 365 return errorUnknownSubcommand(a->argv[0]); -
trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_ru.ts
r93011 r94643 5 5 <name>Appliance</name> 6 6 <message> 7 <location filename="../VBoxManageAppliance.cpp" line="2 15"/>8 <location filename="../VBoxManageAppliance.cpp" line="1 369"/>7 <location filename="../VBoxManageAppliance.cpp" line="256"/> 8 <location filename="../VBoxManageAppliance.cpp" line="1551"/> 9 9 <source>Option "%s" can't be used together with "--cloud" option.</source> 10 10 <translation>Опция "%s" не может быть использована вместе с "--cloud".</translation> 11 11 </message> 12 12 <message> 13 <location filename="../VBoxManageAppliance.cpp" line="2 19"/>14 <location filename="../VBoxManageAppliance.cpp" line="3 05"/>15 <location filename="../VBoxManageAppliance.cpp" line="1 373"/>16 <location filename="../VBoxManageAppliance.cpp" line="1 467"/>13 <location filename="../VBoxManageAppliance.cpp" line="259"/> 14 <location filename="../VBoxManageAppliance.cpp" line="334"/> 15 <location filename="../VBoxManageAppliance.cpp" line="1554"/> 16 <location filename="../VBoxManageAppliance.cpp" line="1637"/> 17 17 <source>Value of option "%s" is out of range.</source> 18 18 <translation>Значение опции "%s" выходит за границы диапазона.</translation> 19 19 </message> 20 20 <message> 21 <location filename="../VBoxManageAppliance.cpp" line="2 29"/>22 <location filename="../VBoxManageAppliance.cpp" line="2 37"/>23 <location filename="../VBoxManageAppliance.cpp" line="2 53"/>24 <location filename="../VBoxManageAppliance.cpp" line=" 269"/>25 <location filename="../VBoxManageAppliance.cpp" line=" 285"/>26 <location filename="../VBoxManageAppliance.cpp" line=" 293"/>27 <location filename="../VBoxManageAppliance.cpp" line="1 382"/>21 <location filename="../VBoxManageAppliance.cpp" line="268"/> 22 <location filename="../VBoxManageAppliance.cpp" line="275"/> 23 <location filename="../VBoxManageAppliance.cpp" line="289"/> 24 <location filename="../VBoxManageAppliance.cpp" line="303"/> 25 <location filename="../VBoxManageAppliance.cpp" line="317"/> 26 <location filename="../VBoxManageAppliance.cpp" line="324"/> 27 <location filename="../VBoxManageAppliance.cpp" line="1562"/> 28 28 <source>Option "%s" requires preceding --vsys or --cloud option.</source> 29 29 <translation>Опция "%s" требует наличия предшествуещего --vsys или --cloud.</translation> 30 30 </message> 31 31 <message> 32 <location filename="../VBoxManageAppliance.cpp" line="245"/> 33 <location filename="../VBoxManageAppliance.cpp" line="261"/> 34 <location filename="../VBoxManageAppliance.cpp" line="277"/> 35 <location filename="../VBoxManageAppliance.cpp" line="301"/> 36 <location filename="../VBoxManageAppliance.cpp" line="314"/> 37 <location filename="../VBoxManageAppliance.cpp" line="326"/> 38 <location filename="../VBoxManageAppliance.cpp" line="338"/> 39 <location filename="../VBoxManageAppliance.cpp" line="350"/> 40 <location filename="../VBoxManageAppliance.cpp" line="1390"/> 41 <location filename="../VBoxManageAppliance.cpp" line="1398"/> 42 <location filename="../VBoxManageAppliance.cpp" line="1406"/> 43 <location filename="../VBoxManageAppliance.cpp" line="1414"/> 44 <location filename="../VBoxManageAppliance.cpp" line="1422"/> 45 <location filename="../VBoxManageAppliance.cpp" line="1430"/> 46 <location filename="../VBoxManageAppliance.cpp" line="1438"/> 47 <location filename="../VBoxManageAppliance.cpp" line="1446"/> 32 <location filename="../VBoxManageAppliance.cpp" line="282"/> 33 <location filename="../VBoxManageAppliance.cpp" line="296"/> 34 <location filename="../VBoxManageAppliance.cpp" line="310"/> 35 <location filename="../VBoxManageAppliance.cpp" line="331"/> 36 <location filename="../VBoxManageAppliance.cpp" line="342"/> 37 <location filename="../VBoxManageAppliance.cpp" line="352"/> 38 <location filename="../VBoxManageAppliance.cpp" line="362"/> 39 <location filename="../VBoxManageAppliance.cpp" line="372"/> 40 <location filename="../VBoxManageAppliance.cpp" line="382"/> 41 <location filename="../VBoxManageAppliance.cpp" line="1569"/> 42 <location filename="../VBoxManageAppliance.cpp" line="1576"/> 43 <location filename="../VBoxManageAppliance.cpp" line="1583"/> 44 <location filename="../VBoxManageAppliance.cpp" line="1590"/> 45 <location filename="../VBoxManageAppliance.cpp" line="1597"/> 46 <location filename="../VBoxManageAppliance.cpp" line="1604"/> 47 <location filename="../VBoxManageAppliance.cpp" line="1611"/> 48 <location filename="../VBoxManageAppliance.cpp" line="1618"/> 48 49 <source>Option "%s" requires preceding --vsys option.</source> 49 50 <translation>Опция "%s" требует наличия предшествуещего --vsys.</translation> 50 51 </message> 51 52 <message> 52 <location filename="../VBoxManageAppliance.cpp" line="318"/> 53 <location filename="../VBoxManageAppliance.cpp" line="330"/> 54 <location filename="../VBoxManageAppliance.cpp" line="342"/> 55 <location filename="../VBoxManageAppliance.cpp" line="354"/> 53 <location filename="../VBoxManageAppliance.cpp" line="345"/> 54 <location filename="../VBoxManageAppliance.cpp" line="355"/> 55 <location filename="../VBoxManageAppliance.cpp" line="365"/> 56 <location filename="../VBoxManageAppliance.cpp" line="375"/> 57 <location filename="../VBoxManageAppliance.cpp" line="385"/> 56 58 <source>Option "%s" requires preceding --unit option.</source> 57 59 <translation>Опция "%s" требует наличия предшествуещего --unit.</translation> 58 60 </message> 59 61 <message> 60 <location filename="../VBoxManageAppliance.cpp" line="3 61"/>62 <location filename="../VBoxManageAppliance.cpp" line="392"/> 61 63 <source>Invalid import options '%s' 62 64 </source> … … 65 67 </message> 66 68 <message> 67 <location filename="../VBoxManageAppliance.cpp" line=" 371"/>68 <location filename="../VBoxManageAppliance.cpp" line="1 463"/>69 <location filename="../VBoxManageAppliance.cpp" line="401"/> 70 <location filename="../VBoxManageAppliance.cpp" line="1634"/> 69 71 <source>Option "%s" can't be used together with "--vsys" option.</source> 70 72 <translation>Опция "%s" не может быть использована вместе с "--vsys".</translation> 71 73 </message> 72 74 <message> 73 <location filename="../VBoxManageAppliance.cpp" line=" 380"/>74 <location filename="../VBoxManageAppliance.cpp" line=" 387"/>75 <location filename="../VBoxManageAppliance.cpp" line=" 394"/>76 <location filename="../VBoxManageAppliance.cpp" line="1 477"/>77 <location filename="../VBoxManageAppliance.cpp" line="1 485"/>78 <location filename="../VBoxManageAppliance.cpp" line="1 493"/>79 <location filename="../VBoxManageAppliance.cpp" line="1 501"/>80 <location filename="../VBoxManageAppliance.cpp" line="1 509"/>81 <location filename="../VBoxManageAppliance.cpp" line="1 517"/>82 <location filename="../VBoxManageAppliance.cpp" line="1 525"/>83 <location filename="../VBoxManageAppliance.cpp" line="1 533"/>84 <location filename="../VBoxManageAppliance.cpp" line="1 541"/>85 <location filename="../VBoxManageAppliance.cpp" line="1 549"/>86 <location filename="../VBoxManageAppliance.cpp" line="1 557"/>87 <location filename="../VBoxManageAppliance.cpp" line="1 565"/>88 <location filename="../VBoxManageAppliance.cpp" line="1 573"/>75 <location filename="../VBoxManageAppliance.cpp" line="410"/> 76 <location filename="../VBoxManageAppliance.cpp" line="417"/> 77 <location filename="../VBoxManageAppliance.cpp" line="424"/> 78 <location filename="../VBoxManageAppliance.cpp" line="1646"/> 79 <location filename="../VBoxManageAppliance.cpp" line="1653"/> 80 <location filename="../VBoxManageAppliance.cpp" line="1660"/> 81 <location filename="../VBoxManageAppliance.cpp" line="1667"/> 82 <location filename="../VBoxManageAppliance.cpp" line="1674"/> 83 <location filename="../VBoxManageAppliance.cpp" line="1681"/> 84 <location filename="../VBoxManageAppliance.cpp" line="1688"/> 85 <location filename="../VBoxManageAppliance.cpp" line="1695"/> 86 <location filename="../VBoxManageAppliance.cpp" line="1702"/> 87 <location filename="../VBoxManageAppliance.cpp" line="1709"/> 88 <location filename="../VBoxManageAppliance.cpp" line="1716"/> 89 <location filename="../VBoxManageAppliance.cpp" line="1723"/> 90 <location filename="../VBoxManageAppliance.cpp" line="1730"/> 89 91 <source>Option "%s" requires preceding --cloud option.</source> 90 92 <translation>Опция "%s" требует наличия предшествуещего --cloud.</translation> 91 93 </message> 92 94 <message> 93 <location filename="../VBoxManageAppliance.cpp" line="4 03"/>95 <location filename="../VBoxManageAppliance.cpp" line="433"/> 94 96 <source>Invalid parameter '%s'</source> 95 97 <translation>Недопустимый параметр '%s'</translation> 96 98 </message> 97 99 <message> 98 <location filename="../VBoxManageAppliance.cpp" line="4 10"/>100 <location filename="../VBoxManageAppliance.cpp" line="440"/> 99 101 <source>Invalid option -%c</source> 100 102 <translation>Недопустимая опция -%c</translation> 101 103 </message> 102 104 <message> 103 <location filename="../VBoxManageAppliance.cpp" line="4 12"/>105 <location filename="../VBoxManageAppliance.cpp" line="442"/> 104 106 <source>Invalid option case %i</source> 105 107 <translation>Недопустимый вариант опции %i</translation> 106 108 </message> 107 109 <message> 108 <location filename="../VBoxManageAppliance.cpp" line="4 15"/>110 <location filename="../VBoxManageAppliance.cpp" line="445"/> 109 111 <source>unknown option: %s 110 112 </source> … … 113 115 </message> 114 116 <message> 115 <location filename="../VBoxManageAppliance.cpp" line="4 19"/>117 <location filename="../VBoxManageAppliance.cpp" line="449"/> 116 118 <source>error: %Rrs</source> 117 119 <translation>Ошибка: %Rrs</translation> 118 120 </message> 119 121 <message> 120 <location filename="../VBoxManageAppliance.cpp" line="4 25"/>122 <location filename="../VBoxManageAppliance.cpp" line="455"/> 121 123 <source>Not enough arguments for "import" command.</source> 122 124 <translation>Недостаточно аргументов для команды "import".</translation> 123 125 </message> 124 126 <message> 125 <location filename="../VBoxManageAppliance.cpp" line="4 47"/>127 <location filename="../VBoxManageAppliance.cpp" line="477"/> 126 128 <source>Not enough arguments for import from the Cloud.</source> 127 129 <translation>Недостаточно аргументов для импорта из облака.</translation> 128 130 </message> 129 131 <message> 130 <location filename="../VBoxManageAppliance.cpp" line=" 470"/>132 <location filename="../VBoxManageAppliance.cpp" line="500"/> 131 133 <source>Appliance read failed</source> 132 134 <translation>Не удалось прочесть конфигурацию</translation> 133 135 </message> 134 136 <message> 135 <location filename="../VBoxManageAppliance.cpp" line=" 482"/>137 <location filename="../VBoxManageAppliance.cpp" line="512"/> 136 138 <source>Interpreting %ls... 137 139 </source> … … 140 142 </message> 141 143 <message> 142 <location filename="../VBoxManageAppliance.cpp" line="5 14"/>144 <location filename="../VBoxManageAppliance.cpp" line="544"/> 143 145 <source>Disks: 144 146 </source> … … 147 149 </message> 148 150 <message numerus="yes"> 149 <location filename="../VBoxManageAppliance.cpp" line="5 36"/>151 <location filename="../VBoxManageAppliance.cpp" line="565"/> 150 152 <source>Invalid index %RI32 with -vsys option; the OVF contains only %zu virtual system(s).</source> 151 153 <translation> … … 156 158 </message> 157 159 <message> 158 <location filename="../VBoxManageAppliance.cpp" line=" 571"/>160 <location filename="../VBoxManageAppliance.cpp" line="600"/> 159 161 <source>Virtual system %u: 160 162 </source> … … 163 165 </message> 164 166 <message> 165 <location filename="../VBoxManageAppliance.cpp" line="6 01"/>167 <location filename="../VBoxManageAppliance.cpp" line="630"/> 166 168 <source>%2u: OS type specified with --ostype: "%ls" 167 169 </source> … … 170 172 </message> 171 173 <message> 172 <location filename="../VBoxManageAppliance.cpp" line="6 05"/>174 <location filename="../VBoxManageAppliance.cpp" line="634"/> 173 175 <source>%2u: Suggested OS type: "%ls" 174 176 (change with "--vsys %u --ostype <type>"; use "list ostypes" to list all possible values) … … 179 181 </message> 180 182 <message> 181 <location filename="../VBoxManageAppliance.cpp" line="6 15"/>183 <location filename="../VBoxManageAppliance.cpp" line="643"/> 182 184 <source>%2u: VM name specified with --vmname: "%ls" 183 185 </source> … … 186 188 </message> 187 189 <message> 188 <location filename="../VBoxManageAppliance.cpp" line="6 19"/>190 <location filename="../VBoxManageAppliance.cpp" line="647"/> 189 191 <source>%2u: Suggested VM name "%ls" 190 192 (change with "--vsys %u --vmname <name>") … … 195 197 </message> 196 198 <message> 197 <location filename="../VBoxManageAppliance.cpp" line="6 26"/>199 <location filename="../VBoxManageAppliance.cpp" line="653"/> 198 200 <source>%2u: Product (ignored): %ls 199 201 </source> … … 202 204 </message> 203 205 <message> 204 <location filename="../VBoxManageAppliance.cpp" line="6 31"/>206 <location filename="../VBoxManageAppliance.cpp" line="658"/> 205 207 <source>%2u: ProductUrl (ignored): %ls 206 208 </source> … … 209 211 </message> 210 212 <message> 211 <location filename="../VBoxManageAppliance.cpp" line="6 36"/>213 <location filename="../VBoxManageAppliance.cpp" line="663"/> 212 214 <source>%2u: Vendor (ignored): %ls 213 215 </source> … … 216 218 </message> 217 219 <message> 218 <location filename="../VBoxManageAppliance.cpp" line="6 41"/>220 <location filename="../VBoxManageAppliance.cpp" line="668"/> 219 221 <source>%2u: VendorUrl (ignored): %ls 220 222 </source> … … 223 225 </message> 224 226 <message> 225 <location filename="../VBoxManageAppliance.cpp" line="6 46"/>227 <location filename="../VBoxManageAppliance.cpp" line="673"/> 226 228 <source>%2u: Version (ignored): %ls 227 229 </source> … … 230 232 </message> 231 233 <message> 232 <location filename="../VBoxManageAppliance.cpp" line="6 54"/>234 <location filename="../VBoxManageAppliance.cpp" line="681"/> 233 235 <source>%2u: Description specified with --description: "%ls" 234 236 </source> … … 237 239 </message> 238 240 <message> 239 <location filename="../VBoxManageAppliance.cpp" line="6 58"/>241 <location filename="../VBoxManageAppliance.cpp" line="685"/> 240 242 <source>%2u: Description "%ls" 241 243 (change with "--vsys %u --description <desc>") … … 246 248 </message> 247 249 <message> 248 <location filename="../VBoxManageAppliance.cpp" line="6 70"/>250 <location filename="../VBoxManageAppliance.cpp" line="696"/> 249 251 <source>%2u: End-user license agreement 250 252 (accept with "--vsys %u --eula accept"): … … 261 263 </message> 262 264 <message> 263 <location filename="../VBoxManageAppliance.cpp" line=" 678"/>265 <location filename="../VBoxManageAppliance.cpp" line="703"/> 264 266 <source>%2u: End-user license agreement (accepted) 265 267 </source> … … 268 270 </message> 269 271 <message> 270 <location filename="../VBoxManageAppliance.cpp" line=" 684"/>272 <location filename="../VBoxManageAppliance.cpp" line="708"/> 271 273 <source>Argument to --eula must be either "show" or "accept".</source> 272 274 <translation>Аргумент к --eula должен быть или "show" или "accept".</translation> 273 275 </message> 274 276 <message> 275 <location filename="../VBoxManageAppliance.cpp" line=" 687"/>277 <location filename="../VBoxManageAppliance.cpp" line="711"/> 276 278 <source>%2u: End-user license agreement 277 279 (display with "--vsys %u --eula show"; … … 284 286 </message> 285 287 <message> 286 <location filename="../VBoxManageAppliance.cpp" line="7 04"/>288 <location filename="../VBoxManageAppliance.cpp" line="727"/> 287 289 <source>%2u: No. of CPUs specified with --cpus: %ls 288 290 </source> … … 291 293 </message> 292 294 <message> 293 <location filename="../VBoxManageAppliance.cpp" line="7 09"/>295 <location filename="../VBoxManageAppliance.cpp" line="731"/> 294 296 <source>Argument to --cpus option must be a number greater than %d and less than %d.</source> 295 297 <translation>Аргумент к --cpus дожен быть числом больше %d и меньше %d.</translation> 296 298 </message> 297 299 <message> 298 <location filename="../VBoxManageAppliance.cpp" line="7 13"/>300 <location filename="../VBoxManageAppliance.cpp" line="735"/> 299 301 <source>%2u: Number of CPUs: %ls 300 302 (change with "--vsys %u --cpus <n>") … … 305 307 </message> 306 308 <message> 307 <location filename="../VBoxManageAppliance.cpp" line="7 25"/>309 <location filename="../VBoxManageAppliance.cpp" line="747"/> 308 310 <source>%2u: Guest memory specified with --memory: %ls MB 309 311 </source> … … 312 314 </message> 313 315 <message> 314 <location filename="../VBoxManageAppliance.cpp" line="7 30"/>316 <location filename="../VBoxManageAppliance.cpp" line="751"/> 315 317 <source>Argument to --memory option must be a non-negative number.</source> 316 318 <translation>Аргумент к --memory должен быть неотрицательным числом.</translation> 317 319 </message> 318 320 <message> 319 <location filename="../VBoxManageAppliance.cpp" line="7 33"/>321 <location filename="../VBoxManageAppliance.cpp" line="754"/> 320 322 <source>%2u: Guest memory: %ls MB 321 323 (change with "--vsys %u --memory <MB>") … … 326 328 </message> 327 329 <message> 328 <location filename="../VBoxManageAppliance.cpp" line="7 41"/>330 <location filename="../VBoxManageAppliance.cpp" line="762"/> 329 331 <source>%2u: IDE controller, type %ls -- disabled 330 332 </source> … … 333 335 </message> 334 336 <message> 335 <location filename="../VBoxManageAppliance.cpp" line="7 47"/>337 <location filename="../VBoxManageAppliance.cpp" line="768"/> 336 338 <source>%2u: IDE controller, type %ls 337 339 (disable with "--vsys %u --unit %u --ignore") … … 342 344 </message> 343 345 <message> 344 <location filename="../VBoxManageAppliance.cpp" line="7 58"/>346 <location filename="../VBoxManageAppliance.cpp" line="778"/> 345 347 <source>%2u: SATA controller, type %ls -- disabled 346 348 </source> … … 349 351 </message> 350 352 <message> 351 <location filename="../VBoxManageAppliance.cpp" line="7 64"/>353 <location filename="../VBoxManageAppliance.cpp" line="784"/> 352 354 <source>%2u: SATA controller, type %ls 353 355 (disable with "--vsys %u --unit %u --ignore") … … 358 360 </message> 359 361 <message> 360 <location filename="../VBoxManageAppliance.cpp" line="7 75"/>362 <location filename="../VBoxManageAppliance.cpp" line="794"/> 361 363 <source>%2u: SAS controller, type %ls -- disabled 362 364 </source> … … 365 367 </message> 366 368 <message> 367 <location filename="../VBoxManageAppliance.cpp" line=" 781"/>369 <location filename="../VBoxManageAppliance.cpp" line="800"/> 368 370 <source>%2u: SAS controller, type %ls 369 371 (disable with "--vsys %u --unit %u --ignore") … … 374 376 </message> 375 377 <message> 376 <location filename="../VBoxManageAppliance.cpp" line=" 792"/>378 <location filename="../VBoxManageAppliance.cpp" line="810"/> 377 379 <source>%2u: SCSI controller, type %ls -- disabled 378 380 </source> … … 381 383 </message> 382 384 <message> 383 <location filename="../VBoxManageAppliance.cpp" line="8 03"/>385 <location filename="../VBoxManageAppliance.cpp" line="821"/> 384 386 <source>%2u: SCSI controller, type set with --unit %u --scsitype: "%ls" 385 387 </source> … … 388 390 </message> 389 391 <message> 390 <location filename="../VBoxManageAppliance.cpp" line="8 09"/>392 <location filename="../VBoxManageAppliance.cpp" line="827"/> 391 393 <source>%2u: SCSI controller, type %ls 392 394 (change with "--vsys %u --unit %u --scsitype {BusLogic|LsiLogic}"; … … 399 401 </message> 400 402 <message> 401 <location filename="../VBoxManageAppliance.cpp" line="8 22"/>403 <location filename="../VBoxManageAppliance.cpp" line="839"/> 402 404 <source>%2u: VirtioSCSI controller, type %ls -- disabled 403 405 </source> … … 406 408 </message> 407 409 <message> 408 <location filename="../VBoxManageAppliance.cpp" line="8 28"/>410 <location filename="../VBoxManageAppliance.cpp" line="845"/> 409 411 <source>%2u: VirtioSCSI controller, type %ls 410 412 (disable with "--vsys %u --unit %u --ignore") … … 415 417 </message> 416 418 <message> 417 <location filename="../VBoxManageAppliance.cpp" line="8 39"/>419 <location filename="../VBoxManageAppliance.cpp" line="855"/> 418 420 <source>%2u: Hard disk image: source image=%ls -- disabled 419 421 </source> … … 422 424 </message> 423 425 <message> 424 <location filename="../VBoxManageAppliance.cpp" line="875"/>425 426 <source>Option --ImportToVDI shall not be used together with manually set target path.</source> 426 <translation>Опция --ImportToVDI не должна использоваться вместе с путем назначения, указанным вручную.</translation> 427 </message> 428 <message> 429 <location filename="../VBoxManageAppliance.cpp" line="880"/> 430 <location filename="../VBoxManageAppliance.cpp" line="898"/> 427 <translation type="vanished">Опция --ImportToVDI не должна использоваться вместе с путем назначения, указанным вручную.</translation> 428 </message> 429 <message> 431 430 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls 432 431 </source> 433 <translation>%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls 434 </translation> 435 </message> 436 <message> 437 <location filename="../VBoxManageAppliance.cpp" line="984"/> 432 <translation type="vanished">%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls 433 </translation> 434 </message> 435 <message> 438 436 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls 439 437 (change target path with "--vsys %u --unit %u --disk path"; 440 438 disable with "--vsys %u --unit %u --ignore") 441 439 </source> 442 <translation >%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls440 <translation type="vanished">%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls 443 441 (изменить путь назначения через "--vsys %u --unit %u --disk путь"; 444 442 отключить через "--vsys %u --unit %u --ignore") … … 446 444 </message> 447 445 <message> 448 <location filename="../VBoxManageAppliance.cpp" line="1000"/> 446 <location filename="../VBoxManageAppliance.cpp" line="870"/> 447 <source>Option --ImportToVDI can not be used together with a manually set target path.</source> 448 <translation type="unfinished"></translation> 449 </message> 450 <message> 451 <location filename="../VBoxManageAppliance.cpp" line="898"/> 452 <source>Invalid controller value: '%s'</source> 453 <translation type="unfinished"></translation> 454 </message> 455 <message> 456 <location filename="../VBoxManageAppliance.cpp" line="903"/> 457 <location filename="../VBoxManageAppliance.cpp" line="970"/> 458 <source>Invalid storage controller specified: %u</source> 459 <translation type="unfinished"></translation> 460 </message> 461 <message> 462 <location filename="../VBoxManageAppliance.cpp" line="916"/> 463 <source>Invalid port value: '%s'</source> 464 <translation type="unfinished"></translation> 465 </message> 466 <message> 467 <location filename="../VBoxManageAppliance.cpp" line="931"/> 468 <source>Failed to extract controller value from ExtraConfig: '%s'</source> 469 <translation type="unfinished"></translation> 470 </message> 471 <message> 472 <location filename="../VBoxManageAppliance.cpp" line="937"/> 473 <source>Failed to extract channel value from ExtraConfig: '%s'</source> 474 <translation type="unfinished"></translation> 475 </message> 476 <message> 477 <location filename="../VBoxManageAppliance.cpp" line="963"/> 478 <source>Device already attached to controller %u at this port (%u) location.</source> 479 <translation type="unfinished"></translation> 480 </message> 481 <message> 482 <location filename="../VBoxManageAppliance.cpp" line="1001"/> 483 <source>Illegal port value: %u. For %ls controllers the only valid values are 0 to %lu (inclusive)</source> 484 <translation type="unfinished"></translation> 485 </message> 486 <message> 487 <location filename="../VBoxManageAppliance.cpp" line="1023"/> 488 <source>%2u: Hard disk image specified with --disk: source image=%ls, target path=%ls, %s 489 (change controller with "--vsys %u --unit %u --controller <index>"; 490 change controller port with "--vsys %u --unit %u --port <n>") 491 </source> 492 <translation type="unfinished"></translation> 493 </message> 494 <message> 495 <location filename="../VBoxManageAppliance.cpp" line="1035"/> 496 <source>%2u: Hard disk image specified with --disk and --controller: source image=%ls, target path=%ls, %s 497 (change controller port with "--vsys %u --unit %u --port <n>") 498 </source> 499 <translation type="unfinished"></translation> 500 </message> 501 <message> 502 <location filename="../VBoxManageAppliance.cpp" line="1045"/> 503 <source>%2u: Hard disk image specified with --disk and --port: source image=%ls, target path=%ls, %s 504 (change controller with "--vsys %u --unit %u --controller <index>") 505 </source> 506 <translation type="unfinished"></translation> 507 </message> 508 <message> 509 <location filename="../VBoxManageAppliance.cpp" line="1055"/> 510 <source>%2u: Hard disk image specified with --controller and --port: source image=%ls, target path=%ls, %s 511 (change target path with "--vsys %u --unit %u --disk path") 512 </source> 513 <translation type="unfinished"></translation> 514 </message> 515 <message> 516 <location filename="../VBoxManageAppliance.cpp" line="1065"/> 517 <source>%2u: Hard disk image specified with --port: source image=%ls, target path=%ls, %s 518 (change target path with "--vsys %u --unit %u --disk path"; 519 change controller with "--vsys %u --unit %u --controller <index>") 520 </source> 521 <translation type="unfinished"></translation> 522 </message> 523 <message> 524 <location filename="../VBoxManageAppliance.cpp" line="1077"/> 525 <source>%2u: Hard disk image specified with --controller: source image=%ls, target path=%ls, %s 526 (change target path with "--vsys %u --unit %u --disk path"; 527 change controller port with "--vsys %u --unit %u --port <n>") 528 </source> 529 <translation type="unfinished"></translation> 530 </message> 531 <message> 532 <location filename="../VBoxManageAppliance.cpp" line="1089"/> 533 <source>%2u: Hard disk image specified with --disk and --controller and --port: source image=%ls, target path=%ls, %s 534 </source> 535 <translation type="unfinished"></translation> 536 </message> 537 <message> 538 <location filename="../VBoxManageAppliance.cpp" line="1174"/> 539 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %s 540 (change target path with "--vsys %u --unit %u --disk path"; 541 change controller with "--vsys %u --unit %u --controller <index>"; 542 change controller port with "--vsys %u --unit %u --port <n>"; 543 disable with "--vsys %u --unit %u --ignore") 544 </source> 545 <translation type="unfinished"></translation> 546 </message> 547 <message> 548 <location filename="../VBoxManageAppliance.cpp" line="1191"/> 449 549 <source>%2u: CD-ROM -- disabled 450 550 </source> … … 453 553 </message> 454 554 <message> 455 <location filename="../VBoxManageAppliance.cpp" line="1 005"/>555 <location filename="../VBoxManageAppliance.cpp" line="1196"/> 456 556 <source>%2u: CD-ROM 457 557 (disable with "--vsys %u --unit %u --ignore") … … 462 562 </message> 463 563 <message> 464 <location filename="../VBoxManageAppliance.cpp" line="1 014"/>564 <location filename="../VBoxManageAppliance.cpp" line="1204"/> 465 565 <source>%2u: Floppy -- disabled 466 566 </source> … … 469 569 </message> 470 570 <message> 471 <location filename="../VBoxManageAppliance.cpp" line="1 019"/>571 <location filename="../VBoxManageAppliance.cpp" line="1209"/> 472 572 <source>%2u: Floppy 473 573 (disable with "--vsys %u --unit %u --ignore") … … 478 578 </message> 479 579 <message> 480 <location filename="../VBoxManageAppliance.cpp" line="1 026"/>580 <location filename="../VBoxManageAppliance.cpp" line="1215"/> 481 581 <source>%2u: Network adapter: orig %ls, config %ls, extra %ls 482 582 </source> … … 485 585 </message> 486 586 <message> 487 <location filename="../VBoxManageAppliance.cpp" line="1 036"/>587 <location filename="../VBoxManageAppliance.cpp" line="1225"/> 488 588 <source>%2u: USB controller -- disabled 489 589 </source> … … 492 592 </message> 493 593 <message> 494 <location filename="../VBoxManageAppliance.cpp" line="1 041"/>594 <location filename="../VBoxManageAppliance.cpp" line="1230"/> 495 595 <source>%2u: USB controller 496 596 (disable with "--vsys %u --unit %u --ignore") … … 501 601 </message> 502 602 <message> 503 <location filename="../VBoxManageAppliance.cpp" line="1 050"/>603 <location filename="../VBoxManageAppliance.cpp" line="1238"/> 504 604 <source>%2u: Sound card "%ls" -- disabled 505 605 </source> … … 508 608 </message> 509 609 <message> 510 <location filename="../VBoxManageAppliance.cpp" line="1 056"/>610 <location filename="../VBoxManageAppliance.cpp" line="1244"/> 511 611 <source>%2u: Sound card (appliance expects "%ls", can change on import) 512 612 (disable with "--vsys %u --unit %u --ignore") … … 517 617 </message> 518 618 <message> 519 <location filename="../VBoxManageAppliance.cpp" line="1 069"/>619 <location filename="../VBoxManageAppliance.cpp" line="1256"/> 520 620 <source>%2u: VM settings file name specified with --settingsfile: "%ls" 521 621 </source> … … 524 624 </message> 525 625 <message> 526 <location filename="../VBoxManageAppliance.cpp" line="1 073"/>626 <location filename="../VBoxManageAppliance.cpp" line="1260"/> 527 627 <source>%2u: Suggested VM settings file name "%ls" 528 628 (change with "--vsys %u --settingsfile <filename>") … … 533 633 </message> 534 634 <message> 535 <location filename="../VBoxManageAppliance.cpp" line="1 083"/>635 <location filename="../VBoxManageAppliance.cpp" line="1269"/> 536 636 <source>%2u: VM base folder specified with --basefolder: "%ls" 537 637 </source> … … 540 640 </message> 541 641 <message> 542 <location filename="../VBoxManageAppliance.cpp" line="1 087"/>642 <location filename="../VBoxManageAppliance.cpp" line="1273"/> 543 643 <source>%2u: Suggested VM base folder "%ls" 544 644 (change with "--vsys %u --basefolder <path>") … … 549 649 </message> 550 650 <message> 551 <location filename="../VBoxManageAppliance.cpp" line="1 097"/>651 <location filename="../VBoxManageAppliance.cpp" line="1282"/> 552 652 <source>%2u: VM group specified with --group: "%ls" 553 653 </source> … … 556 656 </message> 557 657 <message> 558 <location filename="../VBoxManageAppliance.cpp" line="1 101"/>658 <location filename="../VBoxManageAppliance.cpp" line="1286"/> 559 659 <source>%2u: Suggested VM group "%ls" 560 660 (change with "--vsys %u --group <group>") … … 565 665 </message> 566 666 <message> 567 <location filename="../VBoxManageAppliance.cpp" line="1 108"/>667 <location filename="../VBoxManageAppliance.cpp" line="1292"/> 568 668 <source>%2u: Suggested cloud shape "%ls" 569 669 </source> … … 572 672 </message> 573 673 <message> 574 <location filename="../VBoxManageAppliance.cpp" line="1 116"/>674 <location filename="../VBoxManageAppliance.cpp" line="1300"/> 575 675 <source>%2u: Cloud bucket id specified with --cloudbucket: "%ls" 576 676 </source> … … 579 679 </message> 580 680 <message> 581 <location filename="../VBoxManageAppliance.cpp" line="1 120"/>681 <location filename="../VBoxManageAppliance.cpp" line="1304"/> 582 682 <source>%2u: Suggested cloud bucket id "%ls" 583 683 (change with "--cloud %u --cloudbucket <id>") … … 588 688 </message> 589 689 <message> 590 <location filename="../VBoxManageAppliance.cpp" line="1 130"/>690 <location filename="../VBoxManageAppliance.cpp" line="1313"/> 591 691 <source>%2u: Cloud profile name specified with --cloudprofile: "%ls" 592 692 </source> … … 595 695 </message> 596 696 <message> 597 <location filename="../VBoxManageAppliance.cpp" line="1 134"/>697 <location filename="../VBoxManageAppliance.cpp" line="1317"/> 598 698 <source>%2u: Suggested cloud profile name "%ls" 599 699 (change with "--cloud %u --cloudprofile <id>") … … 604 704 </message> 605 705 <message> 606 <location filename="../VBoxManageAppliance.cpp" line="1 144"/>706 <location filename="../VBoxManageAppliance.cpp" line="1326"/> 607 707 <source>%2u: Cloud instance id specified with --cloudinstanceid: "%ls" 608 708 </source> … … 611 711 </message> 612 712 <message> 613 <location filename="../VBoxManageAppliance.cpp" line="1 148"/>713 <location filename="../VBoxManageAppliance.cpp" line="1330"/> 614 714 <source>%2u: Suggested cloud instance id "%ls" 615 715 (change with "--cloud %u --cloudinstanceid <id>") … … 620 720 </message> 621 721 <message> 622 <location filename="../VBoxManageAppliance.cpp" line="1 155"/>722 <location filename="../VBoxManageAppliance.cpp" line="1336"/> 623 723 <source>%2u: Suggested cloud base image id "%ls" 624 724 </source> … … 627 727 </message> 628 728 <message> 629 <location filename="../VBoxManageAppliance.cpp" line="1 201"/>729 <location filename="../VBoxManageAppliance.cpp" line="1384"/> 630 730 <source>Cannot import until the license agreement listed above is accepted.</source> 631 731 <translation>Невозможно произвести импорт пока не приняты условия лицензионного соглашения, показанные выше.</translation> 632 732 </message> 633 733 <message> 634 <location filename="../VBoxManageAppliance.cpp" line="1 203"/>734 <location filename="../VBoxManageAppliance.cpp" line="1386"/> 635 735 <source>Cannot import until the %c license agreements listed above are accepted.</source> 636 736 <translation>Невозможно произвести импорт пока не приняты условия лицензионного соглашения %c, показанные выше.</translation> 637 737 </message> 638 738 <message> 639 <location filename="../VBoxManageAppliance.cpp" line="1 214"/>739 <location filename="../VBoxManageAppliance.cpp" line="1397"/> 640 740 <source>Appliance import failed</source> 641 741 <translation>Не удалось произвести импорт конфигурации</translation> 642 742 </message> 643 743 <message> 644 <location filename="../VBoxManageAppliance.cpp" line="1 217"/>744 <location filename="../VBoxManageAppliance.cpp" line="1400"/> 645 745 <source>Successfully imported the appliance. 646 746 </source> … … 649 749 </message> 650 750 <message> 651 <location filename="../VBoxManageAppliance.cpp" line="1 334"/>751 <location filename="../VBoxManageAppliance.cpp" line="1517"/> 652 752 <source>You can only specify --output once.</source> 653 753 <translation>--output можно указать только один раз.</translation> 654 754 </message> 655 755 <message> 656 <location filename="../VBoxManageAppliance.cpp" line="1 453"/>756 <location filename="../VBoxManageAppliance.cpp" line="1625"/> 657 757 <source>Invalid export options '%s' 658 758 </source> … … 661 761 </message> 662 762 <message> 663 <location filename="../VBoxManageAppliance.cpp" line="1 594"/>763 <location filename="../VBoxManageAppliance.cpp" line="1751"/> 664 764 <source>unhandled option: -%c</source> 665 765 <translation>необработанная опция: -%c</translation> 666 766 </message> 667 767 <message> 668 <location filename="../VBoxManageAppliance.cpp" line="1 596"/>768 <location filename="../VBoxManageAppliance.cpp" line="1753"/> 669 769 <source>unhandled option: %i</source> 670 770 <translation>необработанная опция: %i</translation> 671 771 </message> 672 772 <message> 673 <location filename="../VBoxManageAppliance.cpp" line="1 599"/>773 <location filename="../VBoxManageAppliance.cpp" line="1756"/> 674 774 <source>unknown option: %s</source> 675 775 <translation>неизвестная опция: %s</translation> 676 776 </message> 677 777 <message> 678 <location filename="../VBoxManageAppliance.cpp" line="1 615"/>778 <location filename="../VBoxManageAppliance.cpp" line="1771"/> 679 779 <source>At least one machine must be specified with the export command.</source> 680 780 <translation>Как минимум одна машина должна быть указана в команде экспорта.</translation> 681 781 </message> 682 782 <message> 683 <location filename="../VBoxManageAppliance.cpp" line="1 619"/>783 <location filename="../VBoxManageAppliance.cpp" line="1775"/> 684 784 <source>Missing --output argument with export command.</source> 685 785 <translation>Отсутствует аргумент --output у команды экспорта.</translation> 686 786 </message> 687 787 <message numerus="yes"> 688 <location filename="../VBoxManageAppliance.cpp" line="1 634"/>788 <location filename="../VBoxManageAppliance.cpp" line="1789"/> 689 789 <source>Invalid index %RI32 with -vsys option; you specified only %zu virtual system(s).</source> 690 790 <translation> … … 695 795 </message> 696 796 <message> 697 <location filename="../VBoxManageAppliance.cpp" line="1 723"/>797 <location filename="../VBoxManageAppliance.cpp" line="1878"/> 698 798 <source>Cannot read license file "%s" which should be included in the virtual system %u.</source> 699 799 <translation>Невозможно прочесть файл лицензии "%s", который должен быть включен в виртуальную систему %u.</translation> 700 800 </message> 701 801 <message> 702 <location filename="../VBoxManageAppliance.cpp" line="1 786"/>802 <location filename="../VBoxManageAppliance.cpp" line="1941"/> 703 803 <source>Enter the passwords for the following identifiers to export the apppliance: 704 804 </source> … … 707 807 </message> 708 808 <message> 709 <location filename="../VBoxManageAppliance.cpp" line="1 793"/>809 <location filename="../VBoxManageAppliance.cpp" line="1948"/> 710 810 <source>Password ID %s:</source> 711 811 <translation>ID пароля %s:</translation> 712 812 </message> 713 813 <message> 714 <location filename="../VBoxManageAppliance.cpp" line="1 823"/>814 <location filename="../VBoxManageAppliance.cpp" line="1978"/> 715 815 <source>Appliance write failed</source> 716 816 <translation>Не удалось записать конфигурацию</translation> 717 817 </message> 718 818 <message numerus="yes"> 719 <location filename="../VBoxManageAppliance.cpp" line="1 826"/>819 <location filename="../VBoxManageAppliance.cpp" line="1981"/> 720 820 <source>Successfully exported %d machine(s). 721 821 </source> … … 730 830 </message> 731 831 <message> 732 <location filename="../VBoxManageAppliance.cpp" line=" 1882"/>832 <location filename="../VBoxManageAppliance.cpp" line="2037"/> 733 833 <source>Creating a cloud instance... 734 834 </source> … … 737 837 </message> 738 838 <message> 739 <location filename="../VBoxManageAppliance.cpp" line=" 1887"/>839 <location filename="../VBoxManageAppliance.cpp" line="2042"/> 740 840 <source>Creating the cloud instance failed</source> 741 841 <translation>Не удалось создать облачный экземпляр</translation> 742 842 </message> 743 843 <message> 744 <location filename="../VBoxManageAppliance.cpp" line=" 1899"/>844 <location filename="../VBoxManageAppliance.cpp" line="2054"/> 745 845 <source>A cloud instance with id '%s' (provider '%s') was created 746 846 </source> … … 749 849 </message> 750 850 <message> 751 <location filename="../VBoxManageAppliance.cpp" line=" 1952"/>851 <location filename="../VBoxManageAppliance.cpp" line="2107"/> 752 852 <source>Failed to open OVA '%s' for updating: %Rrc</source> 753 853 <translation>Не удалось открыть OVA '%s' для обновления: %Rrc</translation> 754 854 </message> 755 855 <message> 756 <location filename="../VBoxManageAppliance.cpp" line=" 1958"/>856 <location filename="../VBoxManageAppliance.cpp" line="2113"/> 757 857 <source>Failed to open OVA '%s' as a TAR file: %Rrc</source> 758 858 <translation>Не удалось открыть OVA '%s' как файл TAR: %Rrc</translation> 759 859 </message> 760 860 <message> 761 <location filename="../VBoxManageAppliance.cpp" line=" 1965"/>861 <location filename="../VBoxManageAppliance.cpp" line="2120"/> 762 862 <source>Scanning OVA '%s' for a manifest and signature...</source> 763 863 <translation>Сканирование OVA '%s' на наличие манифеста и подписи...</translation> 764 864 </message> 765 865 <message> 766 <location filename="../VBoxManageAppliance.cpp" line=" 1981"/>866 <location filename="../VBoxManageAppliance.cpp" line="2136"/> 767 867 <source>RTVfsFsStrmNext returned %Rrc</source> 768 868 <translation>RTVfsFsStrmNext возвратил %Rrc</translation> 769 869 </message> 770 870 <message> 771 <location filename="../VBoxManageAppliance.cpp" line=" 1997"/>871 <location filename="../VBoxManageAppliance.cpp" line="2152"/> 772 872 <source>OVA contains multiple manifests! first: %s second: %s</source> 773 873 <translation>OVA содержит несколько манифестов! первый: %s второй: %s</translation> 774 874 </message> 775 875 <message> 776 <location filename="../VBoxManageAppliance.cpp" line="2 001"/>777 <location filename="../VBoxManageAppliance.cpp" line="2 039"/>876 <location filename="../VBoxManageAppliance.cpp" line="2156"/> 877 <location filename="../VBoxManageAppliance.cpp" line="2194"/> 778 878 <source>Unsupported OVA file ordering! Signature file ('%s') as succeeded by '%s'.</source> 779 879 <translation>Неподдерживаемый порядок файлов OVA! Файл подписи ('%s') после '%s'.</translation> 780 880 </message> 781 881 <message> 782 <location filename="../VBoxManageAppliance.cpp" line="2 006"/>882 <location filename="../VBoxManageAppliance.cpp" line="2161"/> 783 883 <source>Found manifest file: %s</source> 784 884 <translation>Найден файл манифеста: %s</translation> 785 885 </message> 786 886 <message> 787 <location filename="../VBoxManageAppliance.cpp" line="2 015"/>887 <location filename="../VBoxManageAppliance.cpp" line="2170"/> 788 888 <source>Failed to memorize the manifest: %Rrc</source> 789 889 <translation>Не удалось запомнить манифест: %Rrc</translation> 790 890 </message> 791 891 <message> 792 <location filename="../VBoxManageAppliance.cpp" line="2 018"/>793 <location filename="../VBoxManageAppliance.cpp" line="2 259"/>794 <location filename="../VBoxManageAppliance.cpp" line="2 333"/>795 <location filename="../VBoxManageAppliance.cpp" line="2 493"/>892 <location filename="../VBoxManageAppliance.cpp" line="2173"/> 893 <location filename="../VBoxManageAppliance.cpp" line="2414"/> 894 <location filename="../VBoxManageAppliance.cpp" line="2488"/> 895 <location filename="../VBoxManageAppliance.cpp" line="2647"/> 796 896 <source>Out of memory!</source> 797 897 <translation>Не хватает памяти!</translation> 798 898 </message> 799 899 <message> 800 <location filename="../VBoxManageAppliance.cpp" line="2 026"/>900 <location filename="../VBoxManageAppliance.cpp" line="2181"/> 801 901 <source>Multiple signature files! (%s)</source> 802 902 <translation>Несколько файлов подписей! (%s)</translation> 803 903 </message> 804 904 <message> 805 <location filename="../VBoxManageAppliance.cpp" line="2 030"/>905 <location filename="../VBoxManageAppliance.cpp" line="2185"/> 806 906 <source>Found existing signature file: %s</source> 807 907 <translation>Найден существующий файл сигнатуры: %s</translation> 808 908 </message> 809 909 <message> 810 <location filename="../VBoxManageAppliance.cpp" line="2 055"/>910 <location filename="../VBoxManageAppliance.cpp" line="2210"/> 811 911 <source>The OVA contains no manifest and cannot be signed!</source> 812 912 <translation>OVA не содержит манифеста и не может быть подписан!</translation> 813 913 </message> 814 914 <message> 815 <location filename="../VBoxManageAppliance.cpp" line="2 058"/>915 <location filename="../VBoxManageAppliance.cpp" line="2213"/> 816 916 <source>The OVA is already signed ('%s')! (Use the --force option to force re-signing it.)</source> 817 917 <translation>OVA уже подписан ('%s')! (Используйте опцию --force, чтобы заново подписать его.)</translation> 818 918 </message> 819 919 <message> 820 <location filename="../VBoxManageAppliance.cpp" line="2 078"/>920 <location filename="../VBoxManageAppliance.cpp" line="2233"/> 821 921 <source>Writing '%s' to the OVA...</source> 822 922 <translation>Запись '%s' в OVA...</translation> 823 923 </message> 824 924 <message> 825 <location filename="../VBoxManageAppliance.cpp" line="2 088"/>925 <location filename="../VBoxManageAppliance.cpp" line="2243"/> 826 926 <source>RTZipTarFsStreamTruncate failed on '%s': %Rrc</source> 827 927 <translation>RTZipTarFsStreamTruncate завершился с ошибкой на '%s': %Rrc</translation> 828 928 </message> 829 929 <message> 830 <location filename="../VBoxManageAppliance.cpp" line="2 097"/>930 <location filename="../VBoxManageAppliance.cpp" line="2252"/> 831 931 <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source> 832 932 <translation>RTVfsFileSeek(hVfsFileSignature) завершился с ошибкой: %Rrc</translation> 833 933 </message> 834 934 <message> 835 <location filename="../VBoxManageAppliance.cpp" line="2 103"/>935 <location filename="../VBoxManageAppliance.cpp" line="2258"/> 836 936 <source>RTVfsFsStrmAdd('%s') failed on '%s': %Rrc</source> 837 937 <translation>RTVfsFsStrmAdd('%s') завершился с ошибкой на '%s': %Rrc</translation> 838 938 </message> 839 939 <message> 840 <location filename="../VBoxManageAppliance.cpp" line="2 110"/>940 <location filename="../VBoxManageAppliance.cpp" line="2265"/> 841 941 <source>RTVfsFsStrmEnd failed on '%s': %Rrc</source> 842 942 <translation>RTVfsFsStrmEnd завершился с ошибкой на '%s': %Rrc</translation> 843 943 </message> 844 944 <message> 845 <location filename="../VBoxManageAppliance.cpp" line="2 146"/>945 <location filename="../VBoxManageAppliance.cpp" line="2301"/> 846 946 <source> Successfully decoded the PKCS#7/CMS signature...</source> 847 947 <translation> PKCS#7/CMS подпись декодирована успешно...</translation> 848 948 </message> 849 949 <message> 850 <location filename="../VBoxManageAppliance.cpp" line="2 162"/>950 <location filename="../VBoxManageAppliance.cpp" line="2317"/> 851 951 <source> Successfully verified the PKCS#7/CMS signature</source> 852 952 <translation> PKCS#7/CMS подпись проверена успешно</translation> 853 953 </message> 854 954 <message> 855 <location filename="../VBoxManageAppliance.cpp" line="2 165"/>955 <location filename="../VBoxManageAppliance.cpp" line="2320"/> 856 956 <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source> 857 957 <translation>Не удалось проверить PKCS#7/CMS подпись: %Rrc%RTeim</translation> 858 958 </message> 859 959 <message> 860 <location filename="../VBoxManageAppliance.cpp" line="2 169"/>960 <location filename="../VBoxManageAppliance.cpp" line="2324"/> 861 961 <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source> 862 962 <translation>RTCrPkcs7SignedData_CheckSanity завершена с ошибкой на PKCS#7/CMS подписи: %Rrc%RTeim</translation> 863 963 </message> 864 964 <message> 865 <location filename="../VBoxManageAppliance.cpp" line="2 174"/>965 <location filename="../VBoxManageAppliance.cpp" line="2329"/> 866 966 <source>PKCS#7/CMS signature inner ContentType isn't 'data' but: %s</source> 867 967 <translation>Внутреннее поле ContentType PKCS#7/CMS подписи является не данными, а: %s</translation> 868 968 </message> 869 969 <message> 870 <location filename="../VBoxManageAppliance.cpp" line="2 178"/>970 <location filename="../VBoxManageAppliance.cpp" line="2333"/> 871 971 <source>PKCS#7/CMD signature is not 'signedData': %s</source> 872 972 <translation>PKCS#7/CMD подпись не 'signedData': %s</translation> 873 973 </message> 874 974 <message> 875 <location filename="../VBoxManageAppliance.cpp" line="2 219"/>975 <location filename="../VBoxManageAppliance.cpp" line="2374"/> 876 976 <source>RTCrPkcs7ContentInfo_Clone failed: %Rrc</source> 877 977 <translation>RTCrPkcs7ContentInfo_Clone завершен с ошибкой: %Rrc</translation> 878 978 </message> 879 979 <message> 880 <location filename="../VBoxManageAppliance.cpp" line="2 223"/>980 <location filename="../VBoxManageAppliance.cpp" line="2378"/> 881 981 <source>RTCrPkcs7ContentInfo_DecodeAsn1 failed to decode PKCS#7/CMS signature: %Rrc%RTemi</source> 882 982 <translation>RTCrPkcs7ContentInfo_DecodeAsn1 не смог декодировать PKCS#7/CMS подпись: %Rrc%RTemi</translation> 883 983 </message> 884 984 <message numerus="yes"> 885 <location filename="../VBoxManageAppliance.cpp" line="2 254"/>985 <location filename="../VBoxManageAppliance.cpp" line="2409"/> 886 986 <source>Manifest is too big: %#RX64 bytes, max 4MiB</source> 887 987 <translation> … … 892 992 </message> 893 993 <message> 894 <location filename="../VBoxManageAppliance.cpp" line="2 279"/>994 <location filename="../VBoxManageAppliance.cpp" line="2434"/> 895 995 <source>RTCrStoreCertAddFromFile failed on '%s': %Rrc%#RTeim</source> 896 996 <translation>RTCrStoreCertAddFromFile завершился с ошибкой на '%s': %Rrc%#RTeim</translation> 897 997 </message> 898 998 <message> 899 <location filename="../VBoxManageAppliance.cpp" line="2 285"/>999 <location filename="../VBoxManageAppliance.cpp" line="2440"/> 900 1000 <source>RTCrStoreCreateInMem failed: %Rrc</source> 901 1001 <translation>RTCrStoreCreateInMem завершился с ошибкой: %Rrc</translation> 902 1002 </message> 903 1003 <message numerus="yes"> 904 <location filename="../VBoxManageAppliance.cpp" line="2 316"/>1004 <location filename="../VBoxManageAppliance.cpp" line="2471"/> 905 1005 <source>Created PKCS#7/CMS signature: %zu bytes, %s.</source> 906 1006 <translation> … … 911 1011 </message> 912 1012 <message> 913 <location filename="../VBoxManageAppliance.cpp" line="2 319"/>1013 <location filename="../VBoxManageAppliance.cpp" line="2474"/> 914 1014 <source>Using SHA-1 instead of SHA-3 for the PKCS#7/CMS signature.</source> 915 1015 <translation>Используется SHA-1 вместо SHA-3 для PKCS#7/CMS подписи.</translation> 916 1016 </message> 917 1017 <message> 918 <location filename="../VBoxManageAppliance.cpp" line="2 328"/>1018 <location filename="../VBoxManageAppliance.cpp" line="2483"/> 919 1019 <source>RTCrPemWriteBlobToVfsFile failed: %Rrc</source> 920 1020 <translation>RTCrPemWriteBlobToVfsFile завершился с ошибкой: %Rrc</translation> 921 1021 </message> 922 1022 <message> 923 <location filename="../VBoxManageAppliance.cpp" line="2 336"/>1023 <location filename="../VBoxManageAppliance.cpp" line="2491"/> 924 1024 <source>RTCrPkcs7SimpleSignSignedData failed: %Rrc%#RTeim</source> 925 1025 <translation>RTCrPkcs7SimpleSignSignedData завершился с ошибкой: %Rrc%#RTeim</translation> 926 1026 </message> 927 1027 <message> 928 <location filename="../VBoxManageAppliance.cpp" line="2 340"/>1028 <location filename="../VBoxManageAppliance.cpp" line="2495"/> 929 1029 <source>RTVfsFileReadAt failed: %Rrc</source> 930 1030 <translation>RTVfsFileReadAt завершился с ошибкой: %Rrc</translation> 931 1031 </message> 932 1032 <message> 933 <location filename="../VBoxManageAppliance.cpp" line="2 393"/>1033 <location filename="../VBoxManageAppliance.cpp" line="2548"/> 934 1034 <source>Unsupported digest type: %s</source> 935 1035 <translation>Неподдерживаемый тип дайджеста: %s</translation> 936 1036 </message> 937 1037 <message> 938 <location filename="../VBoxManageAppliance.cpp" line="2 402"/>1038 <location filename="../VBoxManageAppliance.cpp" line="2557"/> 939 1039 <source>Failed to create digest for %s: %Rrc</source> 940 1040 <translation>Не удалось создать дайджест для %s: %Rrc</translation> 941 1041 </message> 942 1042 <message numerus="yes"> 943 <location filename="../VBoxManageAppliance.cpp" line="2 428"/>1043 <location filename="../VBoxManageAppliance.cpp" line="2583"/> 944 1044 <source>Created OVA signature: %zu bytes, %s</source> 945 1045 <translation> … … 950 1050 </message> 951 1051 <message> 952 <location filename="../VBoxManageAppliance.cpp" line="2 441"/>1052 <location filename="../VBoxManageAppliance.cpp" line="2596"/> 953 1053 <source> Successfully decoded and verified the OVA signature. 954 1054 </source> … … 957 1057 </message> 958 1058 <message> 959 <location filename="../VBoxManageAppliance.cpp" line="2 472"/>1059 <location filename="../VBoxManageAppliance.cpp" line="2627"/> 960 1060 <source>Failed to write certificate to signature file: %Rrc%#RTeim</source> 961 1061 <translation>Не удалось записать сертификат в файл подписи: %Rrc%#RTeim</translation> 962 1062 </message> 963 1063 <message> 964 <location filename="../VBoxManageAppliance.cpp" line="2 476"/>1064 <location filename="../VBoxManageAppliance.cpp" line="2631"/> 965 1065 <source>Failed to produce signature file: %Rrc</source> 966 1066 <translation>Не удалось сделать файл сигнатуры: %Rrc</translation> 967 1067 </message> 968 1068 <message> 969 <location filename="../VBoxManageAppliance.cpp" line="2 480"/>1069 <location filename="../VBoxManageAppliance.cpp" line="2635"/> 970 1070 <source>RTVfsMemFileCreate failed: %Rrc</source> 971 1071 <translation>RTVfsMemFileCreate завершен с ошибкой: %Rrc</translation> 972 1072 </message> 973 1073 <message> 974 <location filename="../VBoxManageAppliance.cpp" line="2483"/> 1074 <location filename="../VBoxManageAppliance.cpp" line="2638"/> 1075 <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim 1076 Please make sure the certificate and private key matches.</source> 1077 <translation type="unfinished"></translation> 1078 </message> 1079 <message> 975 1080 <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim 976 1081 Plase make sure the certificate and private key matches.</source> 977 <translation >Столкнулись с проблемой при проверке только что созданной подписи: %Rrc%#RTeim1082 <translation type="vanished">Столкнулись с проблемой при проверке только что созданной подписи: %Rrc%#RTeim 978 1083 Пожалуйста, убедитесь, что сертификат и приватный ключ соответствуют друг другу.</translation> 979 1084 </message> 980 1085 <message> 981 <location filename="../VBoxManageAppliance.cpp" line="2 489"/>1086 <location filename="../VBoxManageAppliance.cpp" line="2643"/> 982 1087 <source>2nd RTCrPkixPubKeySignDigest call failed: %Rrc%#RTeim</source> 983 1088 <translation>Второй вызов RTCrPkixPubKeySignDigest завершился с ошибкой: %Rrc%#RTeim</translation> 984 1089 </message> 985 1090 <message> 986 <location filename="../VBoxManageAppliance.cpp" line="2 496"/>1091 <location filename="../VBoxManageAppliance.cpp" line="2650"/> 987 1092 <source>RTCrPkixPubKeySignDigest failed: %Rrc%#RTeim</source> 988 1093 <translation>RTCrPkixPubKeySignDigest завершился с ошибкой: %Rrc%#RTeim</translation> 989 1094 </message> 990 1095 <message> 991 <location filename="../VBoxManageAppliance.cpp" line="2 499"/>1096 <location filename="../VBoxManageAppliance.cpp" line="2653"/> 992 1097 <source>Failed to create digest %s: %Rrc</source> 993 1098 <translation>Не удалось создать дайджест %s: %Rrc</translation> 994 1099 </message> 995 1100 <message> 996 <location filename="../VBoxManageAppliance.cpp" line="2 563"/>997 <location filename="../VBoxManageAppliance.cpp" line="2 570"/>1101 <location filename="../VBoxManageAppliance.cpp" line="2717"/> 1102 <location filename="../VBoxManageAppliance.cpp" line="2724"/> 998 1103 <source>Password is given more than once.</source> 999 1104 <translation>Пароль указан несколько раз.</translation> 1000 1105 </message> 1001 1106 <message> 1002 <location filename="../VBoxManageAppliance.cpp" line="2 588"/>1107 <location filename="../VBoxManageAppliance.cpp" line="2742"/> 1003 1108 <source>Unknown digest type: %s</source> 1004 1109 <translation>Неизвестный тип дайджеста: %s</translation> 1005 1110 </message> 1006 1111 <message> 1007 <location filename="../VBoxManageAppliance.cpp" line="2 601"/>1112 <location filename="../VBoxManageAppliance.cpp" line="2755"/> 1008 1113 <source>Too many intermediate certificates: max %zu</source> 1009 1114 <translation>Слишком много промежуточных сертификатов: максимально %zu</translation> 1010 1115 </message> 1011 1116 <message> 1012 <location filename="../VBoxManageAppliance.cpp" line="2 637"/>1117 <location filename="../VBoxManageAppliance.cpp" line="2791"/> 1013 1118 <source>No OVA file was specified!</source> 1014 1119 <translation>Не указан файл OVA!</translation> 1015 1120 </message> 1016 1121 <message> 1017 <location filename="../VBoxManageAppliance.cpp" line="2 639"/>1122 <location filename="../VBoxManageAppliance.cpp" line="2793"/> 1018 1123 <source>No signing certificate (--certificate=<file>) was specified!</source> 1019 1124 <translation>Не указан сертификат (--certificate=<файл>)!</translation> 1020 1125 </message> 1021 1126 <message> 1022 <location filename="../VBoxManageAppliance.cpp" line="2 641"/>1127 <location filename="../VBoxManageAppliance.cpp" line="2795"/> 1023 1128 <source>No signing private key (--private-key=<file>) was specified!</source> 1024 1129 <translation>Не указан приватный ключ (--private-key=<файл>)!</translation> 1025 1130 </message> 1026 1131 <message> 1027 <location filename="../VBoxManageAppliance.cpp" line="2 645"/>1132 <location filename="../VBoxManageAppliance.cpp" line="2799"/> 1028 1133 <source>The specified OVA file was not found: %s</source> 1029 1134 <translation>Не найден указанный файл OVA: %s</translation> 1030 1135 </message> 1031 1136 <message> 1032 <location filename="../VBoxManageAppliance.cpp" line="2 647"/>1137 <location filename="../VBoxManageAppliance.cpp" line="2801"/> 1033 1138 <source>The specified certificate file was not found: %s</source> 1034 1139 <translation>Указанный файл сертификата не найден: %s</translation> 1035 1140 </message> 1036 1141 <message> 1037 <location filename="../VBoxManageAppliance.cpp" line="2 649"/>1142 <location filename="../VBoxManageAppliance.cpp" line="2803"/> 1038 1143 <source>The specified private key file was not found: %s</source> 1039 1144 <translation>Указанный файл приватного ключа не найден: %s</translation> 1040 1145 </message> 1041 1146 <message> 1042 <location filename="../VBoxManageAppliance.cpp" line="2 670"/>1147 <location filename="../VBoxManageAppliance.cpp" line="2824"/> 1043 1148 <source>Error reading certificate from '%s': %Rrc%#RTeim</source> 1044 1149 <translation>Ошибка чтения сертификата из '%s': %Rrc%#RTeim</translation> 1045 1150 </message> 1046 1151 <message> 1047 <location filename="../VBoxManageAppliance.cpp" line="2 679"/>1152 <location filename="../VBoxManageAppliance.cpp" line="2833"/> 1048 1153 <source>Successfully read the certificate and private key.</source> 1049 1154 <translation>Успешно прочтены сертификат и приватный ключ.</translation> 1050 1155 </message> 1051 1156 <message> 1052 <location filename="../VBoxManageAppliance.cpp" line="2 705"/>1157 <location filename="../VBoxManageAppliance.cpp" line="2859"/> 1053 1158 <source>Successfully signed '%s'.</source> 1054 1159 <translation>'%s' подписан успешно.</translation> 1055 1160 </message> 1056 1161 <message> 1057 <location filename="../VBoxManageAppliance.cpp" line="2 711"/>1162 <location filename="../VBoxManageAppliance.cpp" line="2865"/> 1058 1163 <source>Error reading the private key from %s: %Rrc%#RTeim</source> 1059 1164 <translation>Ошибка чтения приватного ключа из %s: %Rrc%#RTeim</translation> … … 1063 1168 <name>BWControl</name> 1064 1169 <message> 1065 <location filename="../VBoxManageBandwidthControl.cpp" line="6 7"/>1066 <location filename="../VBoxManageBandwidthControl.cpp" line=" 90"/>1170 <location filename="../VBoxManageBandwidthControl.cpp" line="65"/> 1171 <location filename="../VBoxManageBandwidthControl.cpp" line="88"/> 1067 1172 <source>Limit is too big 1068 1173 </source> … … 1071 1176 </message> 1072 1177 <message> 1073 <location filename="../VBoxManageBandwidthControl.cpp" line="7 7"/>1178 <location filename="../VBoxManageBandwidthControl.cpp" line="75"/> 1074 1179 <source>Invalid unit suffix. Valid suffixes are: k, m, g, K, M, G 1075 1180 </source> … … 1078 1183 </message> 1079 1184 <message> 1185 <location filename="../VBoxManageBandwidthControl.cpp" line="79"/> 1186 <source>Trailing spaces in limit! 1187 </source> 1188 <translation>У лимита пробелы в конце строки! 1189 </translation> 1190 </message> 1191 <message> 1080 1192 <location filename="../VBoxManageBandwidthControl.cpp" line="81"/> 1081 <source> Trailing spaces in limit!1082 </source> 1083 <translation> У лимита пробелы в конце строки!1193 <source>No digits in limit specifier 1194 </source> 1195 <translation>Нет цифр в спецификаторе лимита 1084 1196 </translation> 1085 1197 </message> 1086 1198 <message> 1087 1199 <location filename="../VBoxManageBandwidthControl.cpp" line="83"/> 1088 <source>No digits in limit specifier1089 </source>1090 <translation>Нет цифр в спецификаторе лимита1091 </translation>1092 </message>1093 <message>1094 <location filename="../VBoxManageBandwidthControl.cpp" line="85"/>1095 1200 <source>Invalid limit specifier 1096 1201 </source> … … 1099 1204 </message> 1100 1205 <message> 1101 <location filename="../VBoxManageBandwidthControl.cpp" line="8 8"/>1206 <location filename="../VBoxManageBandwidthControl.cpp" line="86"/> 1102 1207 <source>Limit cannot be negative 1103 1208 </source> … … 1106 1211 </message> 1107 1212 <message> 1108 <location filename="../VBoxManageBandwidthControl.cpp" line="11 5"/>1213 <location filename="../VBoxManageBandwidthControl.cpp" line="114"/> 1109 1214 <source>Bandwidth group name must not be empty! 1110 1215 </source> … … 1113 1218 </message> 1114 1219 <message> 1115 <location filename="../VBoxManageBandwidthControl.cpp" line="17 5"/>1220 <location filename="../VBoxManageBandwidthControl.cpp" line="174"/> 1116 1221 <source>Invalid bandwidth group type 1117 1222 </source> … … 1120 1225 </message> 1121 1226 <message> 1122 <location filename="../VBoxManageBandwidthControl.cpp" line="31 5"/>1227 <location filename="../VBoxManageBandwidthControl.cpp" line="318"/> 1123 1228 <source>Too few parameters</source> 1124 1229 <translation>Слишком мало параметров</translation> 1125 1230 </message> 1126 1231 <message> 1127 <location filename="../VBoxManageBandwidthControl.cpp" line="3 17"/>1232 <location filename="../VBoxManageBandwidthControl.cpp" line="320"/> 1128 1233 <source>Too many parameters</source> 1129 1234 <translation>Слишком много параметров</translation> 1130 1235 </message> 1131 1236 <message> 1132 <location filename="../VBoxManageBandwidthControl.cpp" line="3 38"/>1237 <location filename="../VBoxManageBandwidthControl.cpp" line="341"/> 1133 1238 <source>Bandwidth groups cannot be created while the VM is running 1134 1239 </source> … … 1137 1242 </message> 1138 1243 <message> 1139 <location filename="../VBoxManageBandwidthControl.cpp" line="3 47"/>1244 <location filename="../VBoxManageBandwidthControl.cpp" line="350"/> 1140 1245 <source>Bandwidth groups cannot be deleted while the VM is running 1141 1246 </source> … … 1144 1249 </message> 1145 1250 <message> 1146 <location filename="../VBoxManageBandwidthControl.cpp" line="3 58"/>1251 <location filename="../VBoxManageBandwidthControl.cpp" line="361"/> 1147 1252 <source>Invalid parameter '%s'</source> 1148 1253 <translation>Недопустимый параметр '%s'</translation> … … 1167 1272 </message> 1168 1273 <message> 1169 <location filename="../VBoxManageCloud.cpp" line="21 1"/>1170 <location filename="../VBoxManageCloud.cpp" line="37 3"/>1274 <location filename="../VBoxManageCloud.cpp" line="210"/> 1275 <location filename="../VBoxManageCloud.cpp" line="371"/> 1171 1276 <source>Parameter 'compartment' is empty or absent. 1172 1277 Trying to get the compartment from the passed cloud profile '%s' … … 1177 1282 </message> 1178 1283 <message> 1179 <location filename="../VBoxManageCloud.cpp" line="220"/> 1284 <location filename="../VBoxManageCloud.cpp" line="219"/> 1285 <location filename="../VBoxManageCloud.cpp" line="380"/> 1286 <source>Found the compartment '%s': 1287 </source> 1288 <translation>Найдена секция '%s': 1289 </translation> 1290 </message> 1291 <message> 1292 <location filename="../VBoxManageCloud.cpp" line="221"/> 1180 1293 <location filename="../VBoxManageCloud.cpp" line="382"/> 1181 <source>Found the compartment '%s':1182 </source>1183 <translation>Найдена секция '%s':1184 </translation>1185 </message>1186 <message>1187 <location filename="../VBoxManageCloud.cpp" line="222"/>1188 <location filename="../VBoxManageCloud.cpp" line="384"/>1189 1294 <source>Parameter --compartment-id is required</source> 1190 1295 <translation>Требуется параметр --compartment-id</translation> 1191 1296 </message> 1192 1297 <message> 1193 <location filename="../VBoxManageCloud.cpp" line="23 9"/>1298 <location filename="../VBoxManageCloud.cpp" line="238"/> 1194 1299 <source>Reply is in the form 'instance name' = 'instance id' 1195 1300 </source> … … 1198 1303 </message> 1199 1304 <message> 1200 <location filename="../VBoxManageCloud.cpp" line="24 8"/>1305 <location filename="../VBoxManageCloud.cpp" line="247"/> 1201 1306 <source>Failed to list instances</source> 1202 1307 <translation>Не удалось перечислить экземпляры</translation> 1203 1308 </message> 1204 1309 <message> 1205 <location filename="../VBoxManageCloud.cpp" line="25 7"/>1310 <location filename="../VBoxManageCloud.cpp" line="256"/> 1206 1311 <source>The list of the instances for the cloud profile '%ls' 1207 1312 and compartment '%s': … … 1212 1317 </message> 1213 1318 <message> 1214 <location filename="../VBoxManageCloud.cpp" line="32 5"/>1319 <location filename="../VBoxManageCloud.cpp" line="324"/> 1215 1320 <source>Unknown cloud image state "%s"</source> 1216 1321 <translation>Неизвестное состояние облачного образа "%s"</translation> 1217 1322 </message> 1218 1323 <message> 1219 <location filename="../VBoxManageCloud.cpp" line=" 401"/>1324 <location filename="../VBoxManageCloud.cpp" line="399"/> 1220 1325 <source>Reply is in the form 'image name' = 'image id' 1221 1326 </source> … … 1224 1329 </message> 1225 1330 <message> 1226 <location filename="../VBoxManageCloud.cpp" line="40 9"/>1331 <location filename="../VBoxManageCloud.cpp" line="407"/> 1227 1332 <source>Failed to list images</source> 1228 1333 <translation>Не удалось перечислить образы</translation> 1229 1334 </message> 1230 1335 <message> 1231 <location filename="../VBoxManageCloud.cpp" line="41 8"/>1336 <location filename="../VBoxManageCloud.cpp" line="416"/> 1232 1337 <source>The list of the images for the cloud profile '%ls' 1233 1338 and compartment '%s': … … 1238 1343 </message> 1239 1344 <message> 1240 <location filename="../VBoxManageCloud.cpp" line="47 5"/>1241 <location filename="../VBoxManageCloud.cpp" line="5 46"/>1242 <location filename="../VBoxManageCloud.cpp" line="7 29"/>1243 <location filename="../VBoxManageCloud.cpp" line="8 81"/>1244 <location filename="../VBoxManageCloud.cpp" line="9 64"/>1245 <location filename="../VBoxManageCloud.cpp" line="10 47"/>1246 <location filename="../VBoxManageCloud.cpp" line="11 45"/>1247 <location filename="../VBoxManageCloud.cpp" line="12 22"/>1248 <location filename="../VBoxManageCloud.cpp" line="13 29"/>1249 <location filename="../VBoxManageCloud.cpp" line="15 25"/>1250 <location filename="../VBoxManageCloud.cpp" line="16 11"/>1251 <location filename="../VBoxManageCloud.cpp" line="17 03"/>1252 <location filename="../VBoxManageCloud.cpp" line="1 799"/>1345 <location filename="../VBoxManageCloud.cpp" line="473"/> 1346 <location filename="../VBoxManageCloud.cpp" line="553"/> 1347 <location filename="../VBoxManageCloud.cpp" line="747"/> 1348 <location filename="../VBoxManageCloud.cpp" line="898"/> 1349 <location filename="../VBoxManageCloud.cpp" line="980"/> 1350 <location filename="../VBoxManageCloud.cpp" line="1062"/> 1351 <location filename="../VBoxManageCloud.cpp" line="1159"/> 1352 <location filename="../VBoxManageCloud.cpp" line="1236"/> 1353 <location filename="../VBoxManageCloud.cpp" line="1342"/> 1354 <location filename="../VBoxManageCloud.cpp" line="1537"/> 1355 <location filename="../VBoxManageCloud.cpp" line="1622"/> 1356 <location filename="../VBoxManageCloud.cpp" line="1713"/> 1357 <location filename="../VBoxManageCloud.cpp" line="1808"/> 1253 1358 <source>Empty command parameter list, show help. 1254 1359 </source> … … 1257 1362 </message> 1258 1363 <message> 1259 <location filename="../VBoxManageCloud.cpp" line="6 45"/>1364 <location filename="../VBoxManageCloud.cpp" line="663"/> 1260 1365 <source>Warning!!! Public SSH key doesn't present in the passed arguments... 1261 1366 </source> … … 1264 1369 </message> 1265 1370 <message> 1266 <location filename="../VBoxManageCloud.cpp" line="6 48"/>1371 <location filename="../VBoxManageCloud.cpp" line="666"/> 1267 1372 <source>Parameters --image-id and --boot-volume-id are mutually exclusive. Only one of them must be presented.</source> 1268 1373 <translation>Параметры --image-id и --boot-volume-id взаимоисключающие. Может быть указан только один из них.</translation> 1269 1374 </message> 1270 1375 <message> 1271 <location filename="../VBoxManageCloud.cpp" line="6 52"/>1376 <location filename="../VBoxManageCloud.cpp" line="670"/> 1272 1377 <source>Missing parameter --image-id or --boot-volume-id. One of them must be presented.</source> 1273 1378 <translation>Отсутствуют параметры --image-id и --boot-volume-id. Один из них должен быть указан.</translation> 1274 1379 </message> 1275 1380 <message> 1276 <location filename="../VBoxManageCloud.cpp" line="6 74"/>1381 <location filename="../VBoxManageCloud.cpp" line="692"/> 1277 1382 <source>Checking the cloud image with id '%s'... 1278 1383 </source> … … 1281 1386 </message> 1282 1387 <message> 1283 <location filename="../VBoxManageCloud.cpp" line=" 682"/>1388 <location filename="../VBoxManageCloud.cpp" line="700"/> 1284 1389 <source>Checking the cloud image failed</source> 1285 1390 <translation>Не удалось проверить облачный образ</translation> 1286 1391 </message> 1287 1392 <message> 1288 <location filename="../VBoxManageCloud.cpp" line=" 688"/>1393 <location filename="../VBoxManageCloud.cpp" line="706"/> 1289 1394 <source>Creating cloud instance with name '%s' from the image '%s'... 1290 1395 </source> … … 1293 1398 </message> 1294 1399 <message> 1295 <location filename="../VBoxManageCloud.cpp" line=" 691"/>1400 <location filename="../VBoxManageCloud.cpp" line="709"/> 1296 1401 <source>Creating cloud instance with name '%s' from the boot volume '%s'... 1297 1402 </source> … … 1300 1405 </message> 1301 1406 <message> 1302 <location filename="../VBoxManageCloud.cpp" line=" 697"/>1407 <location filename="../VBoxManageCloud.cpp" line="715"/> 1303 1408 <source>Creating cloud instance failed</source> 1304 1409 <translation>Не удалось создать облачный экземпляр</translation> 1305 1410 </message> 1306 1411 <message> 1307 <location filename="../VBoxManageCloud.cpp" line="7 00"/>1412 <location filename="../VBoxManageCloud.cpp" line="718"/> 1308 1413 <source>Cloud instance was created successfully 1309 1414 </source> … … 1312 1417 </message> 1313 1418 <message> 1314 <location filename="../VBoxManageCloud.cpp" line="7 44"/>1315 <location filename="../VBoxManageCloud.cpp" line=" 896"/>1316 <location filename="../VBoxManageCloud.cpp" line="9 79"/>1317 <location filename="../VBoxManageCloud.cpp" line="10 62"/>1318 <location filename="../VBoxManageCloud.cpp" line="13 73"/>1319 <location filename="../VBoxManageCloud.cpp" line="17 18"/>1419 <location filename="../VBoxManageCloud.cpp" line="762"/> 1420 <location filename="../VBoxManageCloud.cpp" line="913"/> 1421 <location filename="../VBoxManageCloud.cpp" line="995"/> 1422 <location filename="../VBoxManageCloud.cpp" line="1077"/> 1423 <location filename="../VBoxManageCloud.cpp" line="1386"/> 1424 <location filename="../VBoxManageCloud.cpp" line="1728"/> 1320 1425 <source>Duplicate parameter: --id</source> 1321 1426 <translation>Дублированный параметр: --id</translation> 1322 1427 </message> 1323 1428 <message> 1324 <location filename="../VBoxManageCloud.cpp" line="7 48"/>1325 <location filename="../VBoxManageCloud.cpp" line="9 00"/>1326 <location filename="../VBoxManageCloud.cpp" line="9 83"/>1327 <location filename="../VBoxManageCloud.cpp" line="10 66"/>1328 <location filename="../VBoxManageCloud.cpp" line="13 77"/>1329 <location filename="../VBoxManageCloud.cpp" line="17 22"/>1429 <location filename="../VBoxManageCloud.cpp" line="766"/> 1430 <location filename="../VBoxManageCloud.cpp" line="917"/> 1431 <location filename="../VBoxManageCloud.cpp" line="999"/> 1432 <location filename="../VBoxManageCloud.cpp" line="1081"/> 1433 <location filename="../VBoxManageCloud.cpp" line="1390"/> 1434 <location filename="../VBoxManageCloud.cpp" line="1732"/> 1330 1435 <source>Empty parameter: --id</source> 1331 1436 <translation>Пустой параметр: --id</translation> 1332 1437 </message> 1333 1438 <message> 1334 <location filename="../VBoxManageCloud.cpp" line="7 70"/>1335 <location filename="../VBoxManageCloud.cpp" line="9 22"/>1336 <location filename="../VBoxManageCloud.cpp" line="10 05"/>1337 <location filename="../VBoxManageCloud.cpp" line="1 088"/>1338 <location filename="../VBoxManageCloud.cpp" line="14 27"/>1339 <location filename="../VBoxManageCloud.cpp" line="17 45"/>1439 <location filename="../VBoxManageCloud.cpp" line="787"/> 1440 <location filename="../VBoxManageCloud.cpp" line="938"/> 1441 <location filename="../VBoxManageCloud.cpp" line="1020"/> 1442 <location filename="../VBoxManageCloud.cpp" line="1102"/> 1443 <location filename="../VBoxManageCloud.cpp" line="1439"/> 1444 <location filename="../VBoxManageCloud.cpp" line="1754"/> 1340 1445 <source>Missing parameter: --id</source> 1341 1446 <translation>Отсутствует параметр: --id</translation> 1342 1447 </message> 1343 1448 <message> 1344 <location filename="../VBoxManageCloud.cpp" line="7 78"/>1449 <location filename="../VBoxManageCloud.cpp" line="795"/> 1345 1450 <source>Getting information about cloud instance with id %s... 1346 1451 </source> … … 1349 1454 </message> 1350 1455 <message> 1351 <location filename="../VBoxManageCloud.cpp" line="7 79"/>1456 <location filename="../VBoxManageCloud.cpp" line="796"/> 1352 1457 <source>Reply is in the form 'setting name' = 'value' 1353 1458 </source> … … 1356 1461 </message> 1357 1462 <message> 1358 <location filename="../VBoxManageCloud.cpp" line="8 00"/>1463 <location filename="../VBoxManageCloud.cpp" line="817"/> 1359 1464 <source>Getting information about cloud instance failed</source> 1360 1465 <translation>Не удалось получить информацию об облачном экземпляре</translation> 1361 1466 </message> 1362 1467 <message> 1363 <location filename="../VBoxManageCloud.cpp" line="8 02"/>1468 <location filename="../VBoxManageCloud.cpp" line="819"/> 1364 1469 <source>Cloud instance info (provider '%s'): 1365 1470 </source> … … 1368 1473 </message> 1369 1474 <message> 1370 <location filename="../VBoxManageCloud.cpp" line="8 13"/>1475 <location filename="../VBoxManageCloud.cpp" line="830"/> 1371 1476 <source>Availability domain = %ls 1372 1477 </source> … … 1375 1480 </message> 1376 1481 <message> 1377 <location filename="../VBoxManageCloud.cpp" line="8 13"/>1482 <location filename="../VBoxManageCloud.cpp" line="830"/> 1378 1483 <source>Availability domain wasn't found 1379 1484 </source> … … 1382 1487 </message> 1383 1488 <message> 1384 <location filename="../VBoxManageCloud.cpp" line="8 14"/>1489 <location filename="../VBoxManageCloud.cpp" line="831"/> 1385 1490 <source>Instance displayed name = %ls 1386 1491 </source> … … 1389 1494 </message> 1390 1495 <message> 1391 <location filename="../VBoxManageCloud.cpp" line="8 14"/>1496 <location filename="../VBoxManageCloud.cpp" line="831"/> 1392 1497 <source>Instance displayed name wasn't found 1393 1498 </source> … … 1396 1501 </message> 1397 1502 <message> 1398 <location filename="../VBoxManageCloud.cpp" line="8 15"/>1503 <location filename="../VBoxManageCloud.cpp" line="832"/> 1399 1504 <source>Instance state = %ls 1400 1505 </source> … … 1403 1508 </message> 1404 1509 <message> 1405 <location filename="../VBoxManageCloud.cpp" line="8 15"/>1510 <location filename="../VBoxManageCloud.cpp" line="832"/> 1406 1511 <source>Instance state wasn't found 1407 1512 </source> … … 1410 1515 </message> 1411 1516 <message> 1412 <location filename="../VBoxManageCloud.cpp" line="8 16"/>1517 <location filename="../VBoxManageCloud.cpp" line="833"/> 1413 1518 <source>Instance Id = %ls 1414 1519 </source> … … 1417 1522 </message> 1418 1523 <message> 1419 <location filename="../VBoxManageCloud.cpp" line="8 16"/>1524 <location filename="../VBoxManageCloud.cpp" line="833"/> 1420 1525 <source>Instance Id wasn't found 1421 1526 </source> … … 1424 1529 </message> 1425 1530 <message> 1426 <location filename="../VBoxManageCloud.cpp" line="8 17"/>1531 <location filename="../VBoxManageCloud.cpp" line="834"/> 1427 1532 <source>Instance name = %ls 1428 1533 </source> … … 1431 1536 </message> 1432 1537 <message> 1433 <location filename="../VBoxManageCloud.cpp" line="8 17"/>1538 <location filename="../VBoxManageCloud.cpp" line="834"/> 1434 1539 <source>Instance name wasn't found 1435 1540 </source> … … 1438 1543 </message> 1439 1544 <message> 1440 <location filename="../VBoxManageCloud.cpp" line="8 18"/>1545 <location filename="../VBoxManageCloud.cpp" line="835"/> 1441 1546 <source>Bootable image Id = %ls 1442 1547 </source> … … 1445 1550 </message> 1446 1551 <message> 1447 <location filename="../VBoxManageCloud.cpp" line="8 19"/>1552 <location filename="../VBoxManageCloud.cpp" line="836"/> 1448 1553 <source>Image Id whom the instance is booted up wasn't found 1449 1554 </source> … … 1452 1557 </message> 1453 1558 <message> 1454 <location filename="../VBoxManageCloud.cpp" line="8 20"/>1559 <location filename="../VBoxManageCloud.cpp" line="837"/> 1455 1560 <source>Shape of the instance = %ls 1456 1561 </source> … … 1459 1564 </message> 1460 1565 <message> 1461 <location filename="../VBoxManageCloud.cpp" line="8 21"/>1566 <location filename="../VBoxManageCloud.cpp" line="838"/> 1462 1567 <source>The shape of the instance wasn't found 1463 1568 </source> … … 1466 1571 </message> 1467 1572 <message> 1468 <location filename="../VBoxManageCloud.cpp" line="8 22"/>1573 <location filename="../VBoxManageCloud.cpp" line="839"/> 1469 1574 <source>Type of guest OS = %ls 1470 1575 </source> … … 1473 1578 </message> 1474 1579 <message> 1475 <location filename="../VBoxManageCloud.cpp" line="8 22"/>1580 <location filename="../VBoxManageCloud.cpp" line="839"/> 1476 1581 <source>Type of guest OS wasn't found 1477 1582 </source> … … 1480 1585 </message> 1481 1586 <message> 1482 <location filename="../VBoxManageCloud.cpp" line="8 23"/>1587 <location filename="../VBoxManageCloud.cpp" line="840"/> 1483 1588 <source>RAM = %ls MB 1484 1589 </source> … … 1487 1592 </message> 1488 1593 <message> 1489 <location filename="../VBoxManageCloud.cpp" line="8 23"/>1594 <location filename="../VBoxManageCloud.cpp" line="840"/> 1490 1595 <source>Value for RAM wasn't found 1491 1596 </source> … … 1494 1599 </message> 1495 1600 <message> 1496 <location filename="../VBoxManageCloud.cpp" line="8 24"/>1601 <location filename="../VBoxManageCloud.cpp" line="841"/> 1497 1602 <source>CPUs = %ls 1498 1603 </source> … … 1501 1606 </message> 1502 1607 <message> 1503 <location filename="../VBoxManageCloud.cpp" line="8 24"/>1608 <location filename="../VBoxManageCloud.cpp" line="841"/> 1504 1609 <source>Numbers of CPUs weren't found 1505 1610 </source> … … 1508 1613 </message> 1509 1614 <message> 1510 <location filename="../VBoxManageCloud.cpp" line="8 25"/>1615 <location filename="../VBoxManageCloud.cpp" line="842"/> 1511 1616 <source>Instance public IP = %ls 1512 1617 </source> … … 1515 1620 </message> 1516 1621 <message> 1517 <location filename="../VBoxManageCloud.cpp" line="8 25"/>1622 <location filename="../VBoxManageCloud.cpp" line="842"/> 1518 1623 <source>Public IP wasn't found 1519 1624 </source> … … 1522 1627 </message> 1523 1628 <message> 1524 <location filename="../VBoxManageCloud.cpp" line="8 26"/>1629 <location filename="../VBoxManageCloud.cpp" line="843"/> 1525 1630 <source>Free-form tags or metadata weren't found 1526 1631 </source> … … 1529 1634 </message> 1530 1635 <message> 1531 <location filename="../VBoxManageCloud.cpp" line="8 27"/>1636 <location filename="../VBoxManageCloud.cpp" line="844"/> 1532 1637 <source>Cloud-init script wasn't found 1533 1638 </source> … … 1536 1641 </message> 1537 1642 <message> 1538 <location filename="../VBoxManageCloud.cpp" line="9 30"/>1643 <location filename="../VBoxManageCloud.cpp" line="946"/> 1539 1644 <source>Starting cloud instance with id %s... 1540 1645 </source> … … 1543 1648 </message> 1544 1649 <message> 1545 <location filename="../VBoxManageCloud.cpp" line="9 37"/>1650 <location filename="../VBoxManageCloud.cpp" line="953"/> 1546 1651 <source>Starting the cloud instance failed</source> 1547 1652 <translation>Не удалось запустить облачный экземпляр</translation> 1548 1653 </message> 1549 1654 <message> 1550 <location filename="../VBoxManageCloud.cpp" line="9 40"/>1655 <location filename="../VBoxManageCloud.cpp" line="956"/> 1551 1656 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was started 1552 1657 </source> … … 1555 1660 </message> 1556 1661 <message> 1557 <location filename="../VBoxManageCloud.cpp" line="10 13"/>1662 <location filename="../VBoxManageCloud.cpp" line="1028"/> 1558 1663 <source>Pausing cloud instance with id %s... 1559 1664 </source> … … 1562 1667 </message> 1563 1668 <message> 1564 <location filename="../VBoxManageCloud.cpp" line="10 20"/>1669 <location filename="../VBoxManageCloud.cpp" line="1035"/> 1565 1670 <source>Pause the cloud instance failed</source> 1566 1671 <translation>Не удалось приостановить облачный экземпляр</translation> 1567 1672 </message> 1568 1673 <message> 1569 <location filename="../VBoxManageCloud.cpp" line="10 23"/>1674 <location filename="../VBoxManageCloud.cpp" line="1038"/> 1570 1675 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was paused 1571 1676 </source> … … 1574 1679 </message> 1575 1680 <message> 1576 <location filename="../VBoxManageCloud.cpp" line="1 097"/>1681 <location filename="../VBoxManageCloud.cpp" line="1111"/> 1577 1682 <source>Terminating cloud instance with id %s... 1578 1683 </source> … … 1581 1686 </message> 1582 1687 <message> 1583 <location filename="../VBoxManageCloud.cpp" line="11 04"/>1688 <location filename="../VBoxManageCloud.cpp" line="1118"/> 1584 1689 <source>Termination the cloud instance failed</source> 1585 1690 <translation>Не удалось завершить работу облачного экземпляра</translation> 1586 1691 </message> 1587 1692 <message> 1588 <location filename="../VBoxManageCloud.cpp" line="11 07"/>1693 <location filename="../VBoxManageCloud.cpp" line="1121"/> 1589 1694 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was terminated 1590 1695 </source> … … 1593 1698 </message> 1594 1699 <message> 1595 <location filename="../VBoxManageCloud.cpp" line="12 80"/>1700 <location filename="../VBoxManageCloud.cpp" line="1293"/> 1596 1701 <source>Conflicting parameters: --instance-id and --object-name can't be used together. Choose one.</source> 1597 1702 <translation>Конфликтующие параметры: --instance-id и --object-name не могут быть использованы вместе. Выберите один.</translation> 1598 1703 </message> 1599 1704 <message> 1600 <location filename="../VBoxManageCloud.cpp" line="1 289"/>1705 <location filename="../VBoxManageCloud.cpp" line="1302"/> 1601 1706 <source>Creating cloud image with name '%s' from the instance '%s'... 1602 1707 </source> … … 1605 1710 </message> 1606 1711 <message> 1607 <location filename="../VBoxManageCloud.cpp" line="1 292"/>1712 <location filename="../VBoxManageCloud.cpp" line="1305"/> 1608 1713 <source>Creating cloud image with name '%s' from the object '%s' in the bucket '%s'... 1609 1714 </source> … … 1612 1717 </message> 1613 1718 <message> 1614 <location filename="../VBoxManageCloud.cpp" line="13 00"/>1719 <location filename="../VBoxManageCloud.cpp" line="1313"/> 1615 1720 <source>Creating cloud image failed</source> 1616 1721 <translation>Не удалось создать облачный образ</translation> 1617 1722 </message> 1618 1723 <message> 1619 <location filename="../VBoxManageCloud.cpp" line="13 03"/>1724 <location filename="../VBoxManageCloud.cpp" line="1316"/> 1620 1725 <source>Cloud image was created successfully 1621 1726 </source> … … 1624 1729 </message> 1625 1730 <message> 1626 <location filename="../VBoxManageCloud.cpp" line="13 49"/>1731 <location filename="../VBoxManageCloud.cpp" line="1362"/> 1627 1732 <source>Duplicate parameter: --bucket-name</source> 1628 1733 <translation>Дублированный параметр: --bucket-name</translation> 1629 1734 </message> 1630 1735 <message> 1631 <location filename="../VBoxManageCloud.cpp" line="13 53"/>1736 <location filename="../VBoxManageCloud.cpp" line="1366"/> 1632 1737 <source>Empty parameter: --bucket-name</source> 1633 1738 <translation>Пустой параметр: --bucket-name</translation> 1634 1739 </message> 1635 1740 <message> 1636 <location filename="../VBoxManageCloud.cpp" line="13 61"/>1741 <location filename="../VBoxManageCloud.cpp" line="1374"/> 1637 1742 <source>Duplicate parameter: --object-name</source> 1638 1743 <translation>Дублированный параметр: --object-name</translation> 1639 1744 </message> 1640 1745 <message> 1641 <location filename="../VBoxManageCloud.cpp" line="13 65"/>1746 <location filename="../VBoxManageCloud.cpp" line="1378"/> 1642 1747 <source>Empty parameter: --object-name</source> 1643 1748 <translation>Пустой параметр: --object-name</translation> 1644 1749 </message> 1645 1750 <message> 1646 <location filename="../VBoxManageCloud.cpp" line="13 85"/>1751 <location filename="../VBoxManageCloud.cpp" line="1398"/> 1647 1752 <source>Duplicate parameter: --display-name</source> 1648 1753 <translation>Дублированный параметр: --display-name</translation> 1649 1754 </message> 1650 1755 <message> 1651 <location filename="../VBoxManageCloud.cpp" line="1 389"/>1756 <location filename="../VBoxManageCloud.cpp" line="1402"/> 1652 1757 <source>Empty parameter: --display-name</source> 1653 1758 <translation>Пустой параметр: --display-name</translation> 1654 1759 </message> 1655 1760 <message> 1656 <location filename="../VBoxManageCloud.cpp" line="1 397"/>1761 <location filename="../VBoxManageCloud.cpp" line="1410"/> 1657 1762 <source>Duplicate parameter: --launch-mode</source> 1658 1763 <translation>Дублированный параметр: --launch-mode</translation> 1659 1764 </message> 1660 1765 <message> 1661 <location filename="../VBoxManageCloud.cpp" line="14 01"/>1766 <location filename="../VBoxManageCloud.cpp" line="1414"/> 1662 1767 <source>Empty parameter: --launch-mode</source> 1663 1768 <translation>Пустой параметр: --launch-mode</translation> 1664 1769 </message> 1665 1770 <message> 1666 <location filename="../VBoxManageCloud.cpp" line="14 32"/>1771 <location filename="../VBoxManageCloud.cpp" line="1444"/> 1667 1772 <source>Missing parameter: --bucket-name</source> 1668 1773 <translation>Отсутствует параметр: --bucket-name</translation> 1669 1774 </message> 1670 1775 <message> 1671 <location filename="../VBoxManageCloud.cpp" line="14 52"/>1776 <location filename="../VBoxManageCloud.cpp" line="1464"/> 1672 1777 <source>Exporting image '%s' to the Cloud with name '%s'... 1673 1778 </source> … … 1676 1781 </message> 1677 1782 <message> 1678 <location filename="../VBoxManageCloud.cpp" line="14 55"/>1783 <location filename="../VBoxManageCloud.cpp" line="1467"/> 1679 1784 <source>Exporting image '%s' to the Cloud with default name 1680 1785 </source> … … 1683 1788 </message> 1684 1789 <message> 1685 <location filename="../VBoxManageCloud.cpp" line="14 83"/>1790 <location filename="../VBoxManageCloud.cpp" line="1495"/> 1686 1791 <source>Image %s was found 1687 1792 </source> … … 1690 1795 </message> 1691 1796 <message> 1692 <location filename="../VBoxManageCloud.cpp" line="1 490"/>1797 <location filename="../VBoxManageCloud.cpp" line="1502"/> 1693 1798 <source>Process of exporting the image to the Cloud was interrupted. The image wasn't found. 1694 1799 </source> … … 1697 1802 </message> 1698 1803 <message> 1699 <location filename="../VBoxManageCloud.cpp" line="1 499"/>1804 <location filename="../VBoxManageCloud.cpp" line="1511"/> 1700 1805 <source>Export the image to the Cloud failed</source> 1701 1806 <translation>Не удалось экспортировать образ в облако</translation> 1702 1807 </message> 1703 1808 <message> 1704 <location filename="../VBoxManageCloud.cpp" line="15 02"/>1809 <location filename="../VBoxManageCloud.cpp" line="1514"/> 1705 1810 <source>Export the image to the Cloud was successfull 1706 1811 </source> … … 1709 1814 </message> 1710 1815 <message> 1711 <location filename="../VBoxManageCloud.cpp" line="15 76"/>1816 <location filename="../VBoxManageCloud.cpp" line="1587"/> 1712 1817 <source>Creating an object '%s' from the cloud image '%s'... 1713 1818 </source> … … 1716 1821 </message> 1717 1822 <message> 1718 <location filename="../VBoxManageCloud.cpp" line="15 83"/>1823 <location filename="../VBoxManageCloud.cpp" line="1594"/> 1719 1824 <source>Cloud image import failed</source> 1720 1825 <translation>Не удалось импортировать облачный образ</translation> 1721 1826 </message> 1722 1827 <message> 1723 <location filename="../VBoxManageCloud.cpp" line="15 87"/>1828 <location filename="../VBoxManageCloud.cpp" line="1598"/> 1724 1829 <source>Cloud image was imported successfully. Find the downloaded object with the name %s in the system temp folder (find the possible environment variables like TEMP, TMP and etc.) 1725 1830 </source> … … 1728 1833 </message> 1729 1834 <message> 1730 <location filename="../VBoxManageCloud.cpp" line="16 48"/>1835 <location filename="../VBoxManageCloud.cpp" line="1658"/> 1731 1836 <source>Getting information about the cloud image with id '%s'... 1732 1837 </source> … … 1735 1840 </message> 1736 1841 <message> 1737 <location filename="../VBoxManageCloud.cpp" line="16 54"/>1842 <location filename="../VBoxManageCloud.cpp" line="1664"/> 1738 1843 <source>Reply is in the form 'image property' = 'value' 1739 1844 </source> … … 1742 1847 </message> 1743 1848 <message> 1744 <location filename="../VBoxManageCloud.cpp" line="16 62"/>1849 <location filename="../VBoxManageCloud.cpp" line="1672"/> 1745 1850 <source>Getting information about the cloud image failed</source> 1746 1851 <translation>Не удалось получить информацию об облачном образе</translation> 1747 1852 </message> 1748 1853 <message> 1749 <location filename="../VBoxManageCloud.cpp" line="16 68"/>1854 <location filename="../VBoxManageCloud.cpp" line="1678"/> 1750 1855 <source>General information about the image: 1751 1856 </source> … … 1754 1859 </message> 1755 1860 <message> 1756 <location filename="../VBoxManageCloud.cpp" line="17 54"/>1861 <location filename="../VBoxManageCloud.cpp" line="1763"/> 1757 1862 <source>Deleting cloud image with id %s... 1758 1863 </source> … … 1761 1866 </message> 1762 1867 <message> 1763 <location filename="../VBoxManageCloud.cpp" line="17 61"/>1868 <location filename="../VBoxManageCloud.cpp" line="1770"/> 1764 1869 <source>Deleting cloud image failed</source> 1765 1870 <translation>Не удалось удалить облачный образ</translation> 1766 1871 </message> 1767 1872 <message> 1768 <location filename="../VBoxManageCloud.cpp" line="17 64"/>1873 <location filename="../VBoxManageCloud.cpp" line="1773"/> 1769 1874 <source>Cloud image was deleted successfully 1770 1875 </source> … … 1773 1878 </message> 1774 1879 <message> 1775 <location filename="../VBoxManageCloud.cpp" line="19 47"/>1776 <location filename="../VBoxManageCloud.cpp" line=" 1998"/>1777 <location filename="../VBoxManageCloud.cpp" line="20 72"/>1778 <location filename="../VBoxManageCloud.cpp" line="21 19"/>1880 <location filename="../VBoxManageCloud.cpp" line="1956"/> 1881 <location filename="../VBoxManageCloud.cpp" line="2007"/> 1882 <location filename="../VBoxManageCloud.cpp" line="2081"/> 1883 <location filename="../VBoxManageCloud.cpp" line="2128"/> 1779 1884 <source>Missing --name parameter</source> 1780 1885 <translation>Отсутствует параметр --name</translation> 1781 1886 </message> 1782 1887 <message> 1783 <location filename="../VBoxManageCloud.cpp" line="19 49"/>1888 <location filename="../VBoxManageCloud.cpp" line="1958"/> 1784 1889 <source>Missing --network-id parameter</source> 1785 1890 <translation>Отсутствует параметр --network-id</translation> 1786 1891 </message> 1787 1892 <message> 1788 <location filename="../VBoxManageCloud.cpp" line="19 61"/>1893 <location filename="../VBoxManageCloud.cpp" line="1970"/> 1789 1894 <source>Cloud network was created successfully 1790 1895 </source> … … 1793 1898 </message> 1794 1899 <message> 1795 <location filename="../VBoxManageCloud.cpp" line="20 06"/>1900 <location filename="../VBoxManageCloud.cpp" line="2015"/> 1796 1901 <source>Name: %ls 1797 1902 </source> … … 1800 1905 </message> 1801 1906 <message> 1802 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1907 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1803 1908 <source>State: %s 1804 1909 </source> … … 1807 1912 </message> 1808 1913 <message> 1809 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1914 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1810 1915 <source>Enabled</source> 1811 1916 <translation>Включено</translation> 1812 1917 </message> 1813 1918 <message> 1814 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1919 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1815 1920 <source>Disabled</source> 1816 1921 <translation>Отключено</translation> 1817 1922 </message> 1818 1923 <message> 1819 <location filename="../VBoxManageCloud.cpp" line="20 12"/>1924 <location filename="../VBoxManageCloud.cpp" line="2021"/> 1820 1925 <source>CloudProvider: %ls 1821 1926 </source> … … 1824 1929 </message> 1825 1930 <message> 1826 <location filename="../VBoxManageCloud.cpp" line="20 15"/>1931 <location filename="../VBoxManageCloud.cpp" line="2024"/> 1827 1932 <source>CloudProfile: %ls 1828 1933 </source> … … 1831 1936 </message> 1832 1937 <message> 1833 <location filename="../VBoxManageCloud.cpp" line="20 18"/>1938 <location filename="../VBoxManageCloud.cpp" line="2027"/> 1834 1939 <source>CloudNetworkId: %ls 1835 1940 </source> … … 1838 1943 </message> 1839 1944 <message> 1840 <location filename="../VBoxManageCloud.cpp" line="202 0"/>1945 <location filename="../VBoxManageCloud.cpp" line="2029"/> 1841 1946 <source>VBoxNetworkName: %ls 1842 1947 … … 1847 1952 </message> 1848 1953 <message> 1849 <location filename="../VBoxManageCloud.cpp" line="20 82"/>1954 <location filename="../VBoxManageCloud.cpp" line="2091"/> 1850 1955 <source>Cloud network %ls was updated successfully 1851 1956 </source> … … 1854 1959 </message> 1855 1960 <message> 1856 <location filename="../VBoxManageCloud.cpp" line="21 32"/>1961 <location filename="../VBoxManageCloud.cpp" line="2141"/> 1857 1962 <source>Cloud network %ls was deleted successfully 1858 1963 </source> … … 1861 1966 </message> 1862 1967 <message> 1863 <location filename="../VBoxManageCloud.cpp" line="2164"/>1864 1968 <source>Failed to compose path to the unattended installer script templates (%Rrc)</source> 1865 <translation>Не удалось собрать путь для шаблонов скриптов unattended инсталлятора (%Rrc)</translation> 1866 </message> 1867 <message> 1868 <location filename="../VBoxManageCloud.cpp" line="2289"/> 1969 <translation type="vanished">Не удалось собрать путь для шаблонов скриптов unattended инсталлятора (%Rrc)</translation> 1970 </message> 1971 <message> 1869 1972 <source>Failed to obtain system properties.</source> 1870 <translation>Не удалось получить свойства системы.</translation> 1871 </message> 1872 <message> 1873 <location filename="../VBoxManageCloud.cpp" line="2296"/> 1973 <translation type="vanished">Не удалось получить свойства системы.</translation> 1974 </message> 1975 <message> 1874 1976 <source>Failed to obtain proxy mode.</source> 1875 <translation>Не удалось получить режим прокси.</translation> 1876 </message> 1877 <message> 1878 <location filename="../VBoxManageCloud.cpp" line="2305"/> 1977 <translation type="vanished">Не удалось получить режим прокси.</translation> 1978 </message> 1979 <message> 1879 1980 <source>Failed to obtain proxy URL.</source> 1880 <translation>Не удалось получить URL прокси.</translation> 1881 </message> 1882 <message> 1883 <location filename="../VBoxManageCloud.cpp" line="2311"/> 1981 <translation type="vanished">Не удалось получить URL прокси.</translation> 1982 </message> 1983 <message> 1884 1984 <source>Failed to get system proxy for https://dl.fedoraproject.org. Will use direct connection.</source> 1885 <translation>Не удалось получить системный прокси для https://dl.fedoraproject.org. Будет использовано прямое соединение.</translation> 1886 </message> 1887 <message> 1888 <location filename="../VBoxManageCloud.cpp" line="2320"/> 1985 <translation type="vanished">Не удалось получить системный прокси для https://dl.fedoraproject.org. Будет использовано прямое соединение.</translation> 1986 </message> 1987 <message> 1889 1988 <source>Failed to obtain default machine folder.</source> 1890 <translation>Не удалось получить папку машины по умолчанию.</translation> 1891 </message> 1892 <message> 1893 <location filename="../VBoxManageCloud.cpp" line="2325"/> 1989 <translation type="vanished">Не удалось получить папку машины по умолчанию.</translation> 1990 </message> 1991 <message> 1894 1992 <source>Failed to obtain default guest additions ISO path.</source> 1895 <translation>Не удалось получить путь по умолчанию к ISO Дополнений Гостевой ОС.</translation> 1896 </message> 1897 <message> 1898 <location filename="../VBoxManageCloud.cpp" line="2329"/> 1993 <translation type="vanished">Не удалось получить путь по умолчанию к ISO Дополнений Гостевой ОС.</translation> 1994 </message> 1995 <message> 1899 1996 <source>The default guest additions ISO path is empty nor it is provided as --guest-additions-iso parameter. Cannot proceed without it.</source> 1900 <translation>Путь по умолчанию к ISO Дополнений Гостевой ОС пуст или не указан через --guest-additions-iso parameter. Продолжение невозможно без этого.</translation> 1901 </message> 1902 <message> 1903 <location filename="../VBoxManageCloud.cpp" line="2340"/> 1997 <translation type="vanished">Путь по умолчанию к ISO Дополнений Гостевой ОС пуст или не указан через --guest-additions-iso parameter. Продолжение невозможно без этого.</translation> 1998 </message> 1999 <message> 1904 2000 <source>Failed to compose a path to the local gateway image (%Rrc)</source> 1905 <translation>Не удалось собрать путь к образу локального шлюза (%Rrc)</translation> 1906 </message> 1907 <message> 1908 <location filename="../VBoxManageCloud.cpp" line="2348"/> 2001 <translation type="vanished">Не удалось собрать путь к образу локального шлюза (%Rrc)</translation> 2002 </message> 2003 <message> 1909 2004 <source>Local gateway image already exists, skipping image preparation step. 1910 2005 </source> 1911 <translation>Образ локального шлюза уже существует, пропуск шага подготовки образа. 1912 </translation> 1913 </message> 1914 <message> 1915 <location filename="../VBoxManageCloud.cpp" line="2352"/> 2006 <translation type="vanished">Образ локального шлюза уже существует, пропуск шага подготовки образа. 2007 </translation> 2008 </message> 2009 <message> 1916 2010 <source>Preparing unattended install of temporary local gateway machine from %ls... 1917 2011 </source> 1918 <translation>Подготовка unattended установки машины временного локального шлюза из %ls... 1919 </translation> 1920 </message> 1921 <message> 1922 <location filename="../VBoxManageCloud.cpp" line="2356"/> 2012 <translation type="vanished">Подготовка unattended установки машины временного локального шлюза из %ls... 2013 </translation> 2014 </message> 2015 <message> 1923 2016 <source>Failed to open %ls.</source> 1924 <translation>Не удалось открыть %ls.</translation> 1925 </message> 1926 <message> 1927 <location filename="../VBoxManageCloud.cpp" line="2363"/> 2017 <translation type="vanished">Не удалось открыть %ls.</translation> 2018 </message> 2019 <message> 1928 2020 <source>Failed to create '%ls'.</source> 1929 <translation>Не удалось создать '%ls'.</translation> 1930 </message> 1931 <message> 1932 <location filename="../VBoxManageCloud.cpp" line="2367"/> 2021 <translation type="vanished">Не удалось создать '%ls'.</translation> 2022 </message> 2023 <message> 1933 2024 <source>Failed to apply defaults to '%ls'.</source> 1934 <translation>Не удалось применить настройки по умолчанию к '%ls'.</translation> 1935 </message> 1936 <message> 1937 <location filename="../VBoxManageCloud.cpp" line="2371"/> 2025 <translation type="vanished">Не удалось применить настройки по умолчанию к '%ls'.</translation> 2026 </message> 2027 <message> 1938 2028 <source>Failed to adjust CPU count for '%ls'.</source> 1939 <translation>Не удалось подстроить количество ЦПУ для '%ls'.</translation> 1940 </message> 1941 <message> 1942 <location filename="../VBoxManageCloud.cpp" line="2375"/> 2029 <translation type="vanished">Не удалось подстроить количество ЦПУ для '%ls'.</translation> 2030 </message> 2031 <message> 1943 2032 <source>Failed to adjust memory size for '%ls'.</source> 1944 <translation>Не удалось подстроить размер памяти для '%ls'.</translation> 1945 </message> 1946 <message> 1947 <location filename="../VBoxManageCloud.cpp" line="2381"/> 2033 <translation type="vanished">Не удалось подстроить размер памяти для '%ls'.</translation> 2034 </message> 2035 <message> 1948 2036 <source>Failed to set attachment type for the second network adapter.</source> 1949 <translation>Не удалось установить тип подключения для второго сетевого адаптера.</translation> 1950 </message> 1951 <message> 1952 <location filename="../VBoxManageCloud.cpp" line="2385"/> 2037 <translation type="vanished">Не удалось установить тип подключения для второго сетевого адаптера.</translation> 2038 </message> 2039 <message> 1953 2040 <source>Failed to disable the audio adapter.</source> 1954 <translation>Не удалось отключить аудио адаптер.</translation> 1955 </message> 1956 <message> 1957 <location filename="../VBoxManageCloud.cpp" line="2390"/> 2041 <translation type="vanished">Не удалось отключить аудио адаптер.</translation> 2042 </message> 2043 <message> 1958 2044 <source>Failed to register '%ls'.</source> 1959 <translation>Не удалось зарегистрировать '%ls'.</translation> 1960 </message> 1961 <message> 1962 <location filename="../VBoxManageCloud.cpp" line="2394"/> 2045 <translation type="vanished">Не удалось зарегистрировать '%ls'.</translation> 2046 </message> 2047 <message> 1963 2048 <source>Failed to create %ls.</source> 1964 <translation>Не удалось создать %ls.</translation> 1965 </message> 1966 <message> 1967 <location filename="../VBoxManageCloud.cpp" line="2405"/> 1968 <location filename="../VBoxManageCloud.cpp" line="2409"/> 2049 <translation type="vanished">Не удалось создать %ls.</translation> 2050 </message> 2051 <message> 1969 2052 <source>Failed to create base storage for local gateway image.</source> 1970 <translation>Не удалось создать базовое хранилище для образа локального шлюза.</translation> 1971 </message> 1972 <message> 1973 <location filename="../VBoxManageCloud.cpp" line="2414"/> 1974 <location filename="../VBoxManageCloud.cpp" line="2588"/> 2053 <translation type="vanished">Не удалось создать базовое хранилище для образа локального шлюза.</translation> 2054 </message> 2055 <message> 1975 2056 <source>Failed to lock '%ls' for modifications.</source> 1976 <translation>Не удалось заблокировать '%ls' для изменения.</translation> 1977 </message> 1978 <message> 1979 <location filename="../VBoxManageCloud.cpp" line="2419"/> 1980 <location filename="../VBoxManageCloud.cpp" line="2593"/> 2057 <translation type="vanished">Не удалось заблокировать '%ls' для изменения.</translation> 2058 </message> 2059 <message> 1981 2060 <source>Failed to obtain a mutable machine.</source> 1982 <translation>Не удалось получить изменяемую машину.</translation> 1983 </message> 1984 <message> 1985 <location filename="../VBoxManageCloud.cpp" line="2423"/> 2061 <translation type="vanished">Не удалось получить изменяемую машину.</translation> 2062 </message> 2063 <message> 1986 2064 <source>Failed to attach HD to '%ls'.</source> 1987 <translation>Не удалось подключить жесткий диск к '%ls'.</translation> 1988 </message> 1989 <message> 1990 <location filename="../VBoxManageCloud.cpp" line="2427"/> 2065 <translation type="vanished">Не удалось подключить жесткий диск к '%ls'.</translation> 2066 </message> 2067 <message> 1991 2068 <source>Failed to attach ISO to '%ls'.</source> 1992 <translation>Не удалось подключить ISO к '%ls'.</translation> 1993 </message> 1994 <message> 1995 <location filename="../VBoxManageCloud.cpp" line="2432"/> 1996 <location filename="../VBoxManageCloud.cpp" line="2605"/> 2069 <translation type="vanished">Не удалось подключить ISO к '%ls'.</translation> 2070 </message> 2071 <message> 1997 2072 <source>Failed to save '%ls' settings.</source> 1998 <translation>Не удалось сохранить настройки '%ls'.</translation> 1999 </message> 2000 <message> 2001 <location filename="../VBoxManageCloud.cpp" line="2439"/> 2073 <translation type="vanished">Не удалось сохранить настройки '%ls'.</translation> 2074 </message> 2075 <message> 2002 2076 <source>Failed to create unattended installer.</source> 2003 <translation>Не удалось создать unattended инсталлятор.</translation> 2004 </message> 2005 <message> 2006 <location filename="../VBoxManageCloud.cpp" line="2443"/> 2007 <location filename="../VBoxManageCloud.cpp" line="2447"/> 2077 <translation type="vanished">Не удалось создать unattended инсталлятор.</translation> 2078 </message> 2079 <message> 2008 2080 <source>Failed to set machine for the unattended installer.</source> 2009 <translation>Не удалось задать машину для unattended инсталлятора.</translation> 2010 </message> 2011 <message> 2012 <location filename="../VBoxManageCloud.cpp" line="2451"/> 2081 <translation type="vanished">Не удалось задать машину для unattended инсталлятора.</translation> 2082 </message> 2083 <message> 2013 2084 <source>Failed to set user for the unattended installer.</source> 2014 <translation>Не удалось задать пользователя для unattended инсталлятора.</translation> 2015 </message> 2016 <message> 2017 <location filename="../VBoxManageCloud.cpp" line="2455"/> 2085 <translation type="vanished">Не удалось задать пользователя для unattended инсталлятора.</translation> 2086 </message> 2087 <message> 2018 2088 <source>Failed to set password for the unattended installer.</source> 2019 <translation>Не удалось задать пользователя для unattended инсталлятора.</translation> 2020 </message> 2021 <message> 2022 <location filename="../VBoxManageCloud.cpp" line="2459"/> 2089 <translation type="vanished">Не удалось задать пользователя для unattended инсталлятора.</translation> 2090 </message> 2091 <message> 2023 2092 <source>Failed to set full user name for the unattended installer.</source> 2024 <translation>Не удалось задать полное имя пользователя для unattended инсталлятора.</translation> 2025 </message> 2026 <message> 2027 <location filename="../VBoxManageCloud.cpp" line="2463"/> 2093 <translation type="vanished">Не удалось задать полное имя пользователя для unattended инсталлятора.</translation> 2094 </message> 2095 <message> 2028 2096 <source>Failed to enable guest addtions for the unattended installer.</source> 2029 <translation>Не удалось включить Дополнения Гостевой ОС для unattended инсталлятора.</translation> 2030 </message> 2031 <message> 2032 <location filename="../VBoxManageCloud.cpp" line="2467"/> 2097 <translation type="vanished">Не удалось включить Дополнения Гостевой ОС для unattended инсталлятора.</translation> 2098 </message> 2099 <message> 2033 2100 <source>Failed to set guest addtions ISO path for the unattended installer.</source> 2034 <translation>Не удалось задать путь к Дополнениям Гостевой ОС для unattended инсталлятора.</translation> 2035 </message> 2036 <message> 2037 <location filename="../VBoxManageCloud.cpp" line="2471"/> 2101 <translation type="vanished">Не удалось задать путь к Дополнениям Гостевой ОС для unattended инсталлятора.</translation> 2102 </message> 2103 <message> 2038 2104 <source>Failed to set script template for the unattended installer.</source> 2039 <translation>Не удалось задать шаблон скрипта для unattended инсталлятора.</translation> 2040 </message> 2041 <message> 2042 <location filename="../VBoxManageCloud.cpp" line="2475"/> 2043 <location filename="../VBoxManageCloud.cpp" line="2481"/> 2105 <translation type="vanished">Не удалось задать шаблон скрипта для unattended инсталлятора.</translation> 2106 </message> 2107 <message> 2044 2108 <source>Failed to set post install script template for the unattended installer.</source> 2045 <translation>Не удалось задать шалон post-install скрипта для unattended инсталлятора.</translation> 2046 </message> 2047 <message> 2048 <location filename="../VBoxManageCloud.cpp" line="2486"/> 2109 <translation type="vanished">Не удалось задать шалон post-install скрипта для unattended инсталлятора.</translation> 2110 </message> 2111 <message> 2049 2112 <source>Failed to prepare unattended installation.</source> 2050 <translation>Не удалось подготовить unattended установку.</translation> 2051 </message> 2052 <message> 2053 <location filename="../VBoxManageCloud.cpp" line="2490"/> 2113 <translation type="vanished">Не удалось подготовить unattended установку.</translation> 2114 </message> 2115 <message> 2054 2116 <source>Failed to construct media for unattended installation.</source> 2055 <translation>Не удалось собрать носитель для unattended установки.</translation> 2056 </message> 2057 <message> 2058 <location filename="../VBoxManageCloud.cpp" line="2494"/> 2117 <translation type="vanished">Не удалось собрать носитель для unattended установки.</translation> 2118 </message> 2119 <message> 2059 2120 <source>Failed to reconfigure %ls for unattended installation.</source> 2060 <translation>Не удалось переконфигурировать %ls для unattended установки.</translation> 2061 </message> 2062 <message> 2063 <location filename="../VBoxManageCloud.cpp" line="2503"/> 2064 <location filename="../VBoxManageCloud.cpp" line="2511"/> 2121 <translation type="vanished">Не удалось переконфигурировать %ls для unattended установки.</translation> 2122 </message> 2123 <message> 2065 2124 <source> %32s = failed: %Rhrc 2066 2125 </source> 2067 <translation> %32s = завершено с ошибкой: %Rhrc 2068 </translation> 2069 </message> 2070 <message> 2071 <location filename="../VBoxManageCloud.cpp" line="2548"/> 2126 <translation type="vanished"> %32s = завершено с ошибкой: %Rhrc 2127 </translation> 2128 </message> 2129 <message> 2072 2130 <source>Performing unattended install of temporary local gateway... 2073 2131 </source> 2074 <translation>Производится unattended установка временного локального шлюза... 2075 </translation> 2076 </message> 2077 <message> 2078 <location filename="../VBoxManageCloud.cpp" line="2551"/> 2079 <location filename="../VBoxManageCloud.cpp" line="2555"/> 2132 <translation type="vanished">Производится unattended установка временного локального шлюза... 2133 </translation> 2134 </message> 2135 <message> 2080 2136 <source>Failed to launch '%ls'.</source> 2081 <translation>Не удалось запустить '%ls'.</translation> 2082 </message> 2083 <message> 2084 <location filename="../VBoxManageCloud.cpp" line="2566"/> 2137 <translation type="vanished">Не удалось запустить '%ls'.</translation> 2138 </message> 2139 <message> 2085 2140 <source>Failed to get machine state.</source> 2086 <translation>Не удалось получить состояние машины.</translation> 2087 </message> 2088 <message> 2089 <location filename="../VBoxManageCloud.cpp" line="2571"/> 2141 <translation type="vanished">Не удалось получить состояние машины.</translation> 2142 </message> 2143 <message> 2090 2144 <source>Temporary local gateway VM has aborted.</source> 2091 <translation>ВМ временного локального шлюза прервана.</translation> 2092 </message> 2093 <message> 2094 <location filename="../VBoxManageCloud.cpp" line="2579"/> 2145 <translation type="vanished">ВМ временного локального шлюза прервана.</translation> 2146 </message> 2147 <message> 2095 2148 <source>Timed out (40min) while waiting for unattended install to finish.</source> 2096 <translation>Превышено время ожидания (40 мин) завершения unattended установки.</translation> 2097 </message> 2098 <message> 2099 <location filename="../VBoxManageCloud.cpp" line="2585"/> 2149 <translation type="vanished">Превышено время ожидания (40 мин) завершения unattended установки.</translation> 2150 </message> 2151 <message> 2100 2152 <source><byte value="xd"/>Done. 2101 2153 </source> 2102 <translation><byte value="xd"/>Сделано. 2103 </translation> 2104 </message> 2105 <message> 2106 <location filename="../VBoxManageCloud.cpp" line="2591"/> 2154 <translation type="vanished"><byte value="xd"/>Сделано. 2155 </translation> 2156 </message> 2157 <message> 2107 2158 <source>Detaching local gateway image... 2108 2159 </source> 2109 <translation>Отключение образа локального шлюза... 2110 </translation> 2111 </message> 2112 <message> 2113 <location filename="../VBoxManageCloud.cpp" line="2597"/> 2160 <translation type="vanished">Отключение образа локального шлюза... 2161 </translation> 2162 </message> 2163 <message> 2114 2164 <source>Failed to detach HD to '%ls'.</source> 2115 <translation>Не удалось отключить жесткий диск от '%ls'.</translation> 2116 </message> 2117 <message> 2118 <location filename="../VBoxManageCloud.cpp" line="2611"/> 2165 <translation type="vanished">Не удалось отключить жесткий диск от '%ls'.</translation> 2166 </message> 2167 <message> 2119 2168 <source>Unregistering temporary local gateway machine... 2120 2169 </source> 2121 <translation>Отмена регистрации машины временного локального шлюза... 2122 </translation> 2123 </message> 2124 <message> 2125 <location filename="../VBoxManageCloud.cpp" line="2614"/> 2170 <translation type="vanished">Отмена регистрации машины временного локального шлюза... 2171 </translation> 2172 </message> 2173 <message> 2126 2174 <source>Failed to unregister '%ls'.</source> 2127 <translation>Не удалось отменить регистрацию '%ls'.</translation> 2128 </message> 2129 <message> 2130 <location filename="../VBoxManageCloud.cpp" line="2617"/> 2131 <location filename="../VBoxManageCloud.cpp" line="2620"/> 2175 <translation type="vanished">Не удалось отменить регистрацию '%ls'.</translation> 2176 </message> 2177 <message> 2132 2178 <source>Failed to delete config for '%ls'.</source> 2133 <translation>Не удалось удалить конфигурацию для '%ls'.</translation> 2134 </message> 2135 <message> 2136 <location filename="../VBoxManageCloud.cpp" line="2624"/> 2179 <translation type="vanished">Не удалось удалить конфигурацию для '%ls'.</translation> 2180 </message> 2181 <message> 2137 2182 <source>Making local gateway image immutable... 2138 2183 </source> 2139 <translation>Преобразование образа локального шлюза в неизменяемый... 2140 </translation> 2141 </message> 2142 <message> 2143 <location filename="../VBoxManageCloud.cpp" line="2626"/> 2184 <translation type="vanished">Преобразование образа локального шлюза в неизменяемый... 2185 </translation> 2186 </message> 2187 <message> 2144 2188 <source>Failed to open '%ls'.</source> 2145 <translation>Не удалось открыть '%ls'.</translation> 2146 </message> 2147 <message> 2148 <location filename="../VBoxManageCloud.cpp" line="2629"/> 2189 <translation type="vanished">Не удалось открыть '%ls'.</translation> 2190 </message> 2191 <message> 2149 2192 <source>Failed to make '%ls' immutable.</source> 2150 <translation>Не удалось сделать '%ls' неизменяемым.</translation> 2151 </message> 2152 <message> 2153 <location filename="../VBoxManageCloud.cpp" line="2712"/> 2193 <translation type="vanished">Не удалось сделать '%ls' неизменяемым.</translation> 2194 </message> 2195 <message> 2154 2196 <source>Missing --local-gateway-iso parameter</source> 2155 <translation >Отсутствует параметр --local-gateway-iso</translation>2156 </message> 2157 <message> 2158 <location filename="../VBoxManageCloud.cpp" line="2 720"/>2197 <translation type="vanished">Отсутствует параметр --local-gateway-iso</translation> 2198 </message> 2199 <message> 2200 <location filename="../VBoxManageCloud.cpp" line="2209"/> 2159 2201 <source>Setting up tunnel network in the cloud... 2160 2202 </source> … … 2163 2205 </message> 2164 2206 <message> 2165 <location filename="../VBoxManageCloud.cpp" line="2 746"/>2207 <location filename="../VBoxManageCloud.cpp" line="2235"/> 2166 2208 <source>Setting up cloud network environment failed</source> 2167 2209 <translation>Не удалось установить окружение облачной сети</translation> 2168 2210 </message> 2169 2211 <message> 2170 <location filename="../VBoxManageCloud.cpp" line="2 750"/>2212 <location filename="../VBoxManageCloud.cpp" line="2239"/> 2171 2213 <source>Cloud network environment was set up successfully. Tunnel network id is: %ls 2172 2214 </source> … … 2406 2448 <name>CloudVM</name> 2407 2449 <message> 2408 <location filename="../VBoxManageControlVM.cpp" line="65"/>2409 2450 <source>Invalid %s number '%s'</source> 2410 <translation>Недействительный номер %s '%s'</translation> 2411 </message> 2412 <message> 2413 <location filename="../VBoxManageControlVM.cpp" line="223"/> 2451 <translation type="vanished">Недействительный номер %s '%s'</translation> 2452 </message> 2453 <message> 2414 2454 <source>Failed to send a scancode</source> 2415 <translation >Не удалось послать сканкод</translation>2455 <translation type="vanished">Не удалось послать сканкод</translation> 2416 2456 </message> 2417 2457 <message numerus="yes"> 2418 <location filename="../VBoxManageControlVM.cpp" line="236"/>2419 2458 <source>Only %d scancodes were stored</source> 2420 <translation >2459 <translation type="vanished"> 2421 2460 <numerusform>Сохранен только %d сканкод</numerusform> 2422 2461 <numerusform>Сохранено только %d сканкода</numerusform> … … 2425 2464 </message> 2426 2465 <message numerus="yes"> 2427 <location filename="../VBoxManageControlVM.cpp" line="335"/>2428 2466 <source>Out of memory allocating %d bytes</source> 2429 <translation >2467 <translation type="vanished"> 2430 2468 <numerusform>Не хватает памяти под буфер %d байт</numerusform> 2431 2469 <numerusform>Не хватает памяти под буфер %d байта</numerusform> … … 2434 2472 </message> 2435 2473 <message> 2436 <location filename="../VBoxManageControlVM.cpp" line="338"/>2437 2474 <source>File size %RI64 is greater than %RI64: '%s'</source> 2438 <translation>Размер файла %RI64 больше чем %RI64: '%s'</translation> 2439 </message> 2440 <message> 2441 <location filename="../VBoxManageControlVM.cpp" line="341"/> 2475 <translation type="vanished">Размер файла %RI64 больше чем %RI64: '%s'</translation> 2476 </message> 2477 <message> 2442 2478 <source>Cannot get size of file '%s': %Rrc</source> 2443 <translation>Невозможно получить размер файла '%s': %Rrc</translation> 2444 </message> 2445 <message> 2446 <location filename="../VBoxManageControlVM.cpp" line="346"/> 2479 <translation type="vanished">Невозможно получить размер файла '%s': %Rrc</translation> 2480 </message> 2481 <message> 2447 2482 <source>Cannot open file '%s': %Rrc</source> 2448 <translation>Невозможно открыть файл '%s': %Rrc</translation> 2449 </message> 2450 <message> 2451 <location filename="../VBoxManageControlVM.cpp" line="363"/> 2483 <translation type="vanished">Невозможно открыть файл '%s': %Rrc</translation> 2484 </message> 2485 <message> 2486 <source>Not enough parameters</source> 2487 <translation type="vanished">Недостаточно параметров</translation> 2488 </message> 2489 <message> 2490 <source>Machine '%s' is not currently running</source> 2491 <translation type="vanished">Машина '%s' сейчас не запущена</translation> 2492 </message> 2493 <message> 2494 <source>Missing argument to '%s'. Expected CPU number.</source> 2495 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается номер ЦПУ.</translation> 2496 </message> 2497 <message> 2498 <source>Missing argument to '%s'. Expected execution cap number.</source> 2499 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается %% времени в %% выделенного для выполнения.</translation> 2500 </message> 2501 <message> 2502 <source>Invalid value '%s'</source> 2503 <translation type="vanished">Недопустимое значение '%s'</translation> 2504 </message> 2505 <message> 2506 <source>audio adapter not enabled in VM configuration</source> 2507 <translation type="vanished">аудио адаптер не включен в конфигурации ВМ</translation> 2508 </message> 2509 <message> 2510 <source>Missing argument to '%s'.</source> 2511 <translation type="vanished">Отсутствует аргумент к '%s'.</translation> 2512 </message> 2513 <message> 2514 <source>Invalid '%s' argument '%s'.</source> 2515 <translation type="vanished">Недопустимый аргумент к '%s' '%s'.</translation> 2516 </message> 2517 <message> 2518 <source>Missing argument to '%s'. Expected enabled / disabled.</source> 2519 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается enabled / disabled.</translation> 2520 </message> 2521 <message> 2522 <source>Missing argument to '%s'. Expected drag and drop mode.</source> 2523 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается режим drag and drop.</translation> 2524 </message> 2525 <message> 2526 <source>Failed to power off machine</source> 2527 <translation type="vanished">Не удалось выключить машину</translation> 2528 </message> 2529 <message> 2530 <source>Machine in invalid state %d -- %s 2531 </source> 2532 <translation type="vanished">Машина в недопустимом состоянии %d -- %s 2533 </translation> 2534 </message> 2535 <message> 2536 <source>Failed to save machine state</source> 2537 <translation type="vanished">Не удалось сохранить состояние машины</translation> 2538 </message> 2539 <message> 2540 <source>Guest not running</source> 2541 <translation type="vanished">Гостевая система не запущена</translation> 2542 </message> 2543 <message> 2544 <source>Current installed Guest Additions don't support %s the guest.</source> 2545 <translation type="vanished">Текущие установленные Дополнения Гостевой ОС не поддерживают %s гостевой системы.</translation> 2546 </message> 2547 <message> 2548 <source>rebooting</source> 2549 <translation type="vanished">перезагрузку</translation> 2550 </message> 2551 <message> 2552 <source>shutting down</source> 2553 <translation type="vanished">завершение</translation> 2554 </message> 2555 <message> 2556 <source>Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source> 2557 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидаются сканкоды клавиатуры IBM PC AT set 2 в виде hex байтов.</translation> 2558 </message> 2559 <message> 2560 <source>Converting '%s' returned %Rrc!</source> 2561 <translation type="vanished">Преобразование '%s' вернуло %Rrc!</translation> 2562 </message> 2563 <message> 2564 <source>Error: '%s' is not a hex byte!</source> 2565 <translation type="vanished">Ошибка: '%s' не является hex байтом!</translation> 2566 </message> 2567 <message> 2568 <source>Missing argument to '%s'. Expected ASCII string(s).</source> 2569 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается строка ASCII.</translation> 2570 </message> 2571 <message> 2572 <source>Missing argument to '%s'. Expected file name.</source> 2573 <translation type="vanished">Отсутствует аргумент к '%s'. Ожидается имя файла.</translation> 2574 </message> 2575 <message> 2576 <source>Missing argument to '%s'</source> 2577 <translation type="vanished">Отсутствует аргумент к '%s'</translation> 2578 </message> 2579 <message> 2580 <source>Invalid link state '%s'</source> 2581 <translation type="vanished">Недопустимое состояние подключения '%s'</translation> 2582 </message> 2583 <message> 2584 <source>Invalid filename or filename not specified for NIC %lu</source> 2585 <translation type="vanished">Недействительное имя файла или имя файла не указано для сетевого адаптера %lu</translation> 2586 </message> 2587 <message> 2588 <source>The NIC %d is currently disabled and thus its tracefile can't be changed</source> 2589 <translation type="vanished">NIC %d в настоящее время отключен и поэтому его трассировочный файл не может быть изменен</translation> 2590 </message> 2591 <message> 2592 <source>Invalid nictrace%lu argument '%s'</source> 2593 <translation type="vanished">Недопустимый аргумент к nictrace%lu '%s'</translation> 2594 </message> 2595 <message> 2596 <source>The NIC %d is currently disabled and thus its trace flag can't be changed</source> 2597 <translation type="vanished">NIC %d в настоящее время отключен и поэтому его трассировочный флаг не может быть изменен</translation> 2598 </message> 2599 <message> 2600 <source>Missing or invalid argument to '%s'</source> 2601 <translation type="vanished">Отсутствует или недопустимый аргумент к '%s'</translation> 2602 </message> 2603 <message> 2604 <source>Wrong rule proto '%s' specified -- only 'udp' and 'tcp' are allowed.</source> 2605 <translation type="vanished">Указан неправильный протокол правила '%s' -- разрешены только 'udp' и 'tcp'.</translation> 2606 </message> 2607 <message> 2608 <source>Invalid nicproperty%d argument '%s'</source> 2609 <translation type="vanished">Недопустимый аргумент к nicproperty%d '%s'</translation> 2610 </message> 2611 <message> 2612 <source>Error: Failed to allocate memory for nicproperty%d '%s' 2613 </source> 2614 <translation type="vanished">Ошибка: Не удалось выделить память для nicproperty%d '%s' 2615 </translation> 2616 </message> 2617 <message> 2618 <source>The NIC %d is currently disabled and thus its properties can't be changed</source> 2619 <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить его свойства</translation> 2620 </message> 2621 <message> 2622 <source>Unknown promiscuous mode policy '%s'</source> 2623 <translation type="vanished">Неизвестная политика неразборчивого режима '%s'</translation> 2624 </message> 2625 <message> 2626 <source>The NIC %d is currently disabled and thus its promiscuous mode can't be changed</source> 2627 <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить неразборчивый режим</translation> 2628 </message> 2629 <message> 2630 <source>Invalid type '%s' specfied for NIC %lu</source> 2631 <translation type="vanished">Указан недопустимый тип '%s' для NIC %lu</translation> 2632 </message> 2633 <message> 2634 <source>The NIC %d is currently disabled and thus its attachment type can't be changed</source> 2635 <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить тип подключения</translation> 2636 </message> 2637 <message> 2638 <source>Warning: 'vrdp' is deprecated. Use 'vrde'. 2639 </source> 2640 <translation type="vanished">Предупреждение: 'vrdp' устарел. Используйте 'vrde'. 2641 </translation> 2642 </message> 2643 <message> 2644 <source>Invalid remote desktop server state '%s'</source> 2645 <translation type="vanished">Недопустимое состояние сервера удаленного рабочего стола '%s'</translation> 2646 </message> 2647 <message> 2648 <source>Warning: 'vrdpport' is deprecated. Use 'vrdeport'. 2649 </source> 2650 <translation type="vanished">Предупреждение: 'vrdpport' устарел. Используйте 'vrdeport'. 2651 </translation> 2652 </message> 2653 <message> 2654 <source>Warning: 'vrdpvideochannelquality' is deprecated. Use 'vrdevideochannelquality'. 2655 </source> 2656 <translation type="vanished">Предупреждение: 'vrdpvideochannelquality' устарел. Используйте 'vrdevideochannelquality'. 2657 </translation> 2658 </message> 2659 <message> 2660 <source>Invalid vrdeproperty argument '%s'</source> 2661 <translation type="vanished">Недопустимый аргумент к vrdeproperty '%s'</translation> 2662 </message> 2663 <message> 2664 <source>Error: Failed to allocate memory for VRDE property '%s' 2665 </source> 2666 <translation type="vanished">Ошибка: Не удалось выделить память для свойства VRDE '%s' 2667 </translation> 2668 </message> 2669 <message> 2670 <source>Wrong number of arguments</source> 2671 <translation type="vanished">Неправильное количество аргументов</translation> 2672 </message> 2673 <message> 2674 <source>Invalid parameter '%s'</source> 2675 <translation type="vanished">Недопустимый параметр '%s'</translation> 2676 </message> 2677 <message> 2678 <source>Zero UUID argument '%s'</source> 2679 <translation type="vanished">Нулевой UUID аргумент '%s'</translation> 2680 </message> 2681 <message> 2682 <source>Incorrect number of parameters</source> 2683 <translation type="vanished">Некорректное количество параметров</translation> 2684 </message> 2685 <message> 2686 <source>Either "yes" or "no" is expected</source> 2687 <translation type="vanished">Ожидается только "yes" или "no"</translation> 2688 </message> 2689 <message> 2690 <source>Display status must be <on> or <off></source> 2691 <translation type="vanished">Статус экрана должен быть <on> или <off></translation> 2692 </message> 2693 <message> 2694 <source>Invalid host DVD drive name "%s"</source> 2695 <translation type="vanished">Недопустимое имя DVD дисковода хоста "%s"</translation> 2696 </message> 2697 <message> 2698 <source>IDE Controller</source> 2699 <translation type="vanished">IDE Контроллер</translation> 2700 </message> 2701 <message> 2702 <source>Invalid host floppy drive name "%s"</source> 2703 <translation type="vanished">Недопустимое имя флоппи дисковода хоста "%s"</translation> 2704 </message> 2705 <message> 2706 <source>Floppy Controller</source> 2707 <translation type="vanished">Флоппи Контроллер</translation> 2708 </message> 2709 <message> 2710 <source>Error parsing guest memory balloon size '%s'</source> 2711 <translation type="vanished">Ошибка разбора размера balloon памяти гостевой системы '%s'</translation> 2712 </message> 2713 <message> 2714 <source>Teleportation failed</source> 2715 <translation type="vanished">Не удалось произвести портирование</translation> 2716 </message> 2717 <message> 2718 <source>Error parsing display number '%s'</source> 2719 <translation type="vanished">Ошибка разбора номера экрана '%s'</translation> 2720 </message> 2721 <message> 2722 <source>Failed to create file '%s' (%Rrc)</source> 2723 <translation type="vanished">Не удалось создать файл '%s' (%Rrc)</translation> 2724 </message> 2725 <message> 2726 <source>Failed to write screenshot to file '%s' (%Rrc)</source> 2727 <translation type="vanished">Не удалось записать снимок экрана в файл '%s' (%Rrc)</translation> 2728 </message> 2729 <message> 2730 <source>Invalid screen ID specified '%u'</source> 2731 <translation type="vanished">Указан недопустимый ID экрана '%u'</translation> 2732 </message> 2733 <message> 2734 <source>Error parsing video width '%s'</source> 2735 <translation type="vanished">Ошибка при разборе ширины видео '%s'</translation> 2736 </message> 2737 <message> 2738 <source>Error parsing video height '%s'</source> 2739 <translation type="vanished">Ошибка при разборе высоты видео '%s'</translation> 2740 </message> 2741 <message> 2742 <source>Error parsing video rate '%s'</source> 2743 <translation type="vanished">Ошибка при разборе битрейта видео '%s'</translation> 2744 </message> 2745 <message> 2746 <source>Error parsing video FPS '%s'</source> 2747 <translation type="vanished">Ошибка при разборе FPS видео '%s'</translation> 2748 </message> 2749 <message> 2750 <source>Error parsing maximum time '%s'</source> 2751 <translation type="vanished">Ошибка при разборе максимального времени '%s'</translation> 2752 </message> 2753 <message> 2754 <source>Error parsing maximum file size '%s'</source> 2755 <translation type="vanished">Ошибка при разборе максимального размера файла '%s'</translation> 2756 </message> 2757 <message> 2758 <source>Invalid argument to '%s'</source> 2759 <translation type="vanished">Недопустимый аргумент к '%s'</translation> 2760 </message> 2761 <message> 2762 <source>Invalid parameters</source> 2763 <translation type="vanished">Недопустимые параметры</translation> 2764 </message> 2765 <message> 2766 <source>Enter password:</source> 2767 <translation type="vanished">Введите пароль:</translation> 2768 </message> 2769 <message> 2770 <source>Failed to read new password from file</source> 2771 <translation type="vanished">Не удалось прочесть новый пароль из файла</translation> 2772 </message> 2773 <message> 2774 <source>Incorrect arguments to '%s'</source> 2775 <translation type="vanished">Некорректные аргументы к '%s'</translation> 2776 </message> 2777 <message> 2778 <source>Invalid vm-process-priority '%s'</source> 2779 <translation type="vanished">Недопустимый vm-process-priority '%s'</translation> 2780 </message> 2781 <message> 2782 <source>Invalid autostart delay number '%s'</source> 2783 <translation type="vanished">Недопустимое время задержки автостарта '%s'</translation> 2784 </message> 2785 </context> 2786 <context> 2787 <name>ControlVM</name> 2788 <message> 2789 <location filename="../VBoxManageControlVM.cpp" line="65"/> 2790 <source>Invalid %s number '%s'.</source> 2791 <translation type="unfinished"></translation> 2792 </message> 2793 <message> 2794 <location filename="../VBoxManageControlVM.cpp" line="222"/> 2795 <source>Failed to send a scancode.</source> 2796 <translation type="unfinished"></translation> 2797 </message> 2798 <message numerus="yes"> 2799 <location filename="../VBoxManageControlVM.cpp" line="323"/> 2800 <source>Out of memory allocating %d bytes.</source> 2801 <translation type="unfinished"> 2802 <numerusform></numerusform> 2803 <numerusform></numerusform> 2804 <numerusform></numerusform> 2805 </translation> 2806 </message> 2807 <message> 2808 <location filename="../VBoxManageControlVM.cpp" line="326"/> 2809 <source>File size %RI64 is greater than %RI64: '%s'.</source> 2810 <translation type="unfinished"></translation> 2811 </message> 2812 <message> 2813 <location filename="../VBoxManageControlVM.cpp" line="329"/> 2814 <source>Cannot get size of file '%s': %Rrc.</source> 2815 <translation type="unfinished"></translation> 2816 </message> 2817 <message> 2818 <location filename="../VBoxManageControlVM.cpp" line="334"/> 2819 <source>Cannot open file '%s': %Rrc.</source> 2820 <translation type="unfinished"></translation> 2821 </message> 2822 <message> 2823 <location filename="../VBoxManageControlVM.cpp" line="351"/> 2824 <location filename="../VBoxManageControlVM.cpp" line="1372"/> 2825 <source>Not enough parameters.</source> 2826 <translation type="unfinished"></translation> 2827 </message> 2828 <message> 2829 <location filename="../VBoxManageControlVM.cpp" line="371"/> 2830 <source>Machine '%s' is not currently running.</source> 2831 <translation type="unfinished">Машина '%s' сейчас не запущена.</translation> 2832 </message> 2833 <message> 2834 <location filename="../VBoxManageControlVM.cpp" line="397"/> 2835 <location filename="../VBoxManageControlVM.cpp" line="411"/> 2836 <location filename="../VBoxManageControlVM.cpp" line="425"/> 2837 <location filename="../VBoxManageControlVM.cpp" line="487"/> 2838 <location filename="../VBoxManageControlVM.cpp" line="558"/> 2839 <location filename="../VBoxManageControlVM.cpp" line="782"/> 2840 <location filename="../VBoxManageControlVM.cpp" line="802"/> 2841 <location filename="../VBoxManageControlVM.cpp" line="840"/> 2842 <location filename="../VBoxManageControlVM.cpp" line="884"/> 2843 <location filename="../VBoxManageControlVM.cpp" line="925"/> 2844 <location filename="../VBoxManageControlVM.cpp" line="1019"/> 2845 <location filename="../VBoxManageControlVM.cpp" line="1081"/> 2846 <location filename="../VBoxManageControlVM.cpp" line="1131"/> 2847 <location filename="../VBoxManageControlVM.cpp" line="1160"/> 2848 <location filename="../VBoxManageControlVM.cpp" line="1172"/> 2849 <location filename="../VBoxManageControlVM.cpp" line="1184"/> 2850 <location filename="../VBoxManageControlVM.cpp" line="1197"/> 2851 <location filename="../VBoxManageControlVM.cpp" line="1208"/> 2852 <location filename="../VBoxManageControlVM.cpp" line="1237"/> 2853 <location filename="../VBoxManageControlVM.cpp" line="1266"/> 2854 <location filename="../VBoxManageControlVM.cpp" line="1297"/> 2855 <location filename="../VBoxManageControlVM.cpp" line="1318"/> 2856 <location filename="../VBoxManageControlVM.cpp" line="1992"/> 2857 <location filename="../VBoxManageControlVM.cpp" line="2115"/> 2858 <source>Missing argument to '%s'.</source> 2859 <translation type="unfinished">Отсутствует аргумент к '%s'.</translation> 2860 </message> 2861 <message> 2862 <location filename="../VBoxManageControlVM.cpp" line="444"/> 2863 <location filename="../VBoxManageControlVM.cpp" line="468"/> 2864 <location filename="../VBoxManageControlVM.cpp" line="2226"/> 2865 <source>Invalid value '%s'.</source> 2866 <translation type="unfinished"></translation> 2867 </message> 2868 <message> 2869 <location filename="../VBoxManageControlVM.cpp" line="453"/> 2870 <location filename="../VBoxManageControlVM.cpp" line="477"/> 2871 <source>Audio adapter not enabled in VM configuration.</source> 2872 <translation type="unfinished"></translation> 2873 </message> 2874 <message> 2875 <location filename="../VBoxManageControlVM.cpp" line="498"/> 2876 <location filename="../VBoxManageControlVM.cpp" line="528"/> 2877 <source>Missing argument to '%s %s'.</source> 2878 <translation type="unfinished"></translation> 2879 </message> 2880 <message> 2881 <location filename="../VBoxManageControlVM.cpp" line="513"/> 2882 <location filename="../VBoxManageControlVM.cpp" line="536"/> 2883 <source>Invalid '%s %s' argument '%s'.</source> 2884 <translation type="unfinished"></translation> 2885 </message> 2886 <message> 2887 <location filename="../VBoxManageControlVM.cpp" line="547"/> 2888 <location filename="../VBoxManageControlVM.cpp" line="574"/> 2889 <source>Invalid '%s' argument '%s'.</source> 2890 <translation type="unfinished">Недопустимый аргумент к '%s' '%s'.</translation> 2891 </message> 2892 <message> 2893 <location filename="../VBoxManageControlVM.cpp" line="591"/> 2894 <source>Failed to power off machine.</source> 2895 <translation type="unfinished"></translation> 2896 </message> 2897 <message> 2898 <location filename="../VBoxManageControlVM.cpp" line="611"/> 2899 <source>Machine in invalid state %d -- %s.</source> 2900 <translation type="unfinished"></translation> 2901 </message> 2902 <message> 2903 <location filename="../VBoxManageControlVM.cpp" line="634"/> 2904 <source>Failed to save machine state.</source> 2905 <translation type="unfinished"></translation> 2906 </message> 2907 <message> 2908 <location filename="../VBoxManageControlVM.cpp" line="665"/> 2909 <location filename="../VBoxManageControlVM.cpp" line="700"/> 2910 <location filename="../VBoxManageControlVM.cpp" line="754"/> 2911 <location filename="../VBoxManageControlVM.cpp" line="775"/> 2912 <location filename="../VBoxManageControlVM.cpp" line="1478"/> 2913 <location filename="../VBoxManageControlVM.cpp" line="1500"/> 2914 <location filename="../VBoxManageControlVM.cpp" line="1624"/> 2915 <location filename="../VBoxManageControlVM.cpp" line="1658"/> 2916 <location filename="../VBoxManageControlVM.cpp" line="1755"/> 2917 <location filename="../VBoxManageControlVM.cpp" line="2001"/> 2918 <source>Guest not running.</source> 2919 <translation type="unfinished"></translation> 2920 </message> 2921 <message> 2922 <location filename="../VBoxManageControlVM.cpp" line="686"/> 2923 <source>Current installed Guest Additions don't support rebooting the guest.</source> 2924 <translation type="unfinished"></translation> 2925 </message> 2926 <message> 2927 <location filename="../VBoxManageControlVM.cpp" line="688"/> 2928 <source>Current installed Guest Additions don't support shutting down the guest.</source> 2929 <translation type="unfinished"></translation> 2930 </message> 2931 <message> 2932 <location filename="../VBoxManageControlVM.cpp" line="707"/> 2933 <source>Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s).</source> 2934 <translation type="unfinished"></translation> 2935 </message> 2936 <message> 2937 <location filename="../VBoxManageControlVM.cpp" line="727"/> 2938 <source>Converting '%s' returned %Rrc!</source> 2939 <translation type="unfinished">Преобразование '%s' вернуло %Rrc!</translation> 2940 </message> 2941 <message> 2942 <location filename="../VBoxManageControlVM.cpp" line="736"/> 2943 <source>'%s' is not a hex byte!</source> 2944 <translation type="unfinished"></translation> 2945 </message> 2946 <message> 2947 <location filename="../VBoxManageControlVM.cpp" line="761"/> 2948 <source>Missing argument to '%s'. Expected ASCII string(s).</source> 2949 <translation type="unfinished">Отсутствует аргумент к '%s'. Ожидается строка ASCII.</translation> 2950 </message> 2951 <message> 2952 <location filename="../VBoxManageControlVM.cpp" line="814"/> 2953 <source>Invalid link state '%s'.</source> 2954 <translation type="unfinished"></translation> 2955 </message> 2956 <message> 2957 <location filename="../VBoxManageControlVM.cpp" line="860"/> 2958 <source>Filename not specified for NIC %lu.</source> 2959 <translation type="unfinished"></translation> 2960 </message> 2961 <message> 2962 <location filename="../VBoxManageControlVM.cpp" line="868"/> 2963 <source>The NIC %d is currently disabled and thus its tracefile can't be changed.</source> 2964 <translation type="unfinished"></translation> 2965 </message> 2966 <message> 2967 <location filename="../VBoxManageControlVM.cpp" line="901"/> 2968 <source>Invalid nictrace%lu argument '%s'.</source> 2969 <translation type="unfinished"></translation> 2970 </message> 2971 <message> 2972 <location filename="../VBoxManageControlVM.cpp" line="909"/> 2973 <source>The NIC %d is currently disabled and thus its trace flag can't be changed.</source> 2974 <translation type="unfinished"></translation> 2975 </message> 2976 <message> 2977 <location filename="../VBoxManageControlVM.cpp" line="961"/> 2978 <source>Missing or invalid argument to '%s'.</source> 2979 <translation type="unfinished"></translation> 2980 </message> 2981 <message> 2982 <location filename="../VBoxManageControlVM.cpp" line="996"/> 2983 <source>Wrong rule proto '%s' specified -- only 'udp' and 'tcp' are allowed.</source> 2984 <translation type="unfinished">Указан неправильный протокол правила '%s' -- разрешены только 'udp' и 'tcp'.</translation> 2985 </message> 2986 <message> 2987 <location filename="../VBoxManageControlVM.cpp" line="1050"/> 2988 <source>Invalid nicproperty%d argument '%s'.</source> 2989 <translation type="unfinished"></translation> 2990 </message> 2991 <message> 2992 <location filename="../VBoxManageControlVM.cpp" line="1057"/> 2993 <source>Failed to allocate memory for nicproperty%d '%s'.</source> 2994 <translation type="unfinished"></translation> 2995 </message> 2996 <message> 2997 <location filename="../VBoxManageControlVM.cpp" line="1065"/> 2998 <source>The NIC %d is currently disabled and thus its properties can't be changed.</source> 2999 <translation type="unfinished"></translation> 3000 </message> 3001 <message> 3002 <location filename="../VBoxManageControlVM.cpp" line="1105"/> 3003 <source>Unknown promiscuous mode policy '%s'.</source> 3004 <translation type="unfinished"></translation> 3005 </message> 3006 <message> 3007 <location filename="../VBoxManageControlVM.cpp" line="1115"/> 3008 <source>The NIC %d is currently disabled and thus its promiscuous mode can't be changed.</source> 3009 <translation type="unfinished"></translation> 3010 </message> 3011 <message> 3012 <location filename="../VBoxManageControlVM.cpp" line="1217"/> 3013 <source>Invalid type '%s' specfied for NIC %lu.</source> 3014 <translation type="unfinished"></translation> 3015 </message> 3016 <message> 3017 <location filename="../VBoxManageControlVM.cpp" line="1225"/> 3018 <source>The NIC %d is currently disabled and thus its attachment type can't be changed.</source> 3019 <translation type="unfinished"></translation> 3020 </message> 3021 <message> 3022 <location filename="../VBoxManageControlVM.cpp" line="1233"/> 3023 <source>'vrdp' is deprecated. Use 'vrde'.</source> 3024 <translation type="unfinished"></translation> 3025 </message> 3026 <message> 3027 <location filename="../VBoxManageControlVM.cpp" line="1249"/> 3028 <source>Invalid remote desktop server state '%s'.</source> 3029 <translation type="unfinished"></translation> 3030 </message> 3031 <message> 3032 <location filename="../VBoxManageControlVM.cpp" line="1262"/> 3033 <source>'vrdpport' is deprecated. Use 'vrdeport'.</source> 3034 <translation type="unfinished"></translation> 3035 </message> 3036 <message> 3037 <location filename="../VBoxManageControlVM.cpp" line="1293"/> 3038 <source>'vrdpvideochannelquality' is deprecated. Use 'vrdevideochannelquality'.</source> 3039 <translation type="unfinished"></translation> 3040 </message> 3041 <message> 3042 <location filename="../VBoxManageControlVM.cpp" line="1344"/> 3043 <source>Invalid vrdeproperty argument '%s'.</source> 3044 <translation type="unfinished"></translation> 3045 </message> 3046 <message> 3047 <location filename="../VBoxManageControlVM.cpp" line="1351"/> 3048 <source>Failed to allocate memory for VRDE property '%s'.</source> 3049 <translation type="unfinished"></translation> 3050 </message> 3051 <message> 3052 <location filename="../VBoxManageControlVM.cpp" line="1378"/> 3053 <source>Wrong number of arguments.</source> 3054 <translation type="unfinished"></translation> 3055 </message> 3056 <message> 2452 3057 <location filename="../VBoxManageControlVM.cpp" line="1392"/> 2453 <source>Not enough parameters</source> 2454 <translation>Недостаточно параметров</translation> 2455 </message> 2456 <message> 2457 <location filename="../VBoxManageControlVM.cpp" line="383"/> 2458 <source>Machine '%s' is not currently running</source> 2459 <translation>Машина '%s' сейчас не запущена</translation> 2460 </message> 2461 <message> 2462 <location filename="../VBoxManageControlVM.cpp" line="405"/> 2463 <location filename="../VBoxManageControlVM.cpp" line="418"/> 2464 <source>Missing argument to '%s'. Expected CPU number.</source> 2465 <translation>Отсутствует аргумент к '%s'. Ожидается номер ЦПУ.</translation> 2466 </message> 2467 <message> 2468 <location filename="../VBoxManageControlVM.cpp" line="431"/> 2469 <source>Missing argument to '%s'. Expected execution cap number.</source> 2470 <translation>Отсутствует аргумент к '%s'. Ожидается %% времени в %% выделенного для выполнения.</translation> 2471 </message> 2472 <message> 2473 <location filename="../VBoxManageControlVM.cpp" line="456"/> 2474 <location filename="../VBoxManageControlVM.cpp" line="486"/> 2475 <location filename="../VBoxManageControlVM.cpp" line="2385"/> 2476 <source>Invalid value '%s'</source> 2477 <translation>Недопустимое значение '%s'</translation> 2478 </message> 2479 <message> 2480 <location filename="../VBoxManageControlVM.cpp" line="465"/> 2481 <location filename="../VBoxManageControlVM.cpp" line="495"/> 2482 <source>audio adapter not enabled in VM configuration</source> 2483 <translation>аудио адаптер не включен в конфигурации ВМ</translation> 2484 </message> 2485 <message> 2486 <location filename="../VBoxManageControlVM.cpp" line="505"/> 2487 <source>Missing argument to '%s'.</source> 2488 <translation>Отсутствует аргумент к '%s'.</translation> 2489 </message> 2490 <message> 2491 <location filename="../VBoxManageControlVM.cpp" line="523"/> 2492 <location filename="../VBoxManageControlVM.cpp" line="553"/> 2493 <location filename="../VBoxManageControlVM.cpp" line="565"/> 2494 <location filename="../VBoxManageControlVM.cpp" line="591"/> 2495 <source>Invalid '%s' argument '%s'.</source> 2496 <translation>Недопустимый аргумент к '%s' '%s'.</translation> 2497 </message> 2498 <message> 2499 <location filename="../VBoxManageControlVM.cpp" line="537"/> 2500 <source>Missing argument to '%s'. Expected enabled / disabled.</source> 2501 <translation>Отсутствует аргумент к '%s'. Ожидается enabled / disabled.</translation> 2502 </message> 2503 <message> 2504 <location filename="../VBoxManageControlVM.cpp" line="575"/> 2505 <source>Missing argument to '%s'. Expected drag and drop mode.</source> 2506 <translation>Отсутствует аргумент к '%s'. Ожидается режим drag and drop.</translation> 2507 </message> 2508 <message> 2509 <location filename="../VBoxManageControlVM.cpp" line="607"/> 2510 <source>Failed to power off machine</source> 2511 <translation>Не удалось выключить машину</translation> 2512 </message> 2513 <message> 2514 <location filename="../VBoxManageControlVM.cpp" line="626"/> 2515 <source>Machine in invalid state %d -- %s 2516 </source> 2517 <translation>Машина в недопустимом состоянии %d -- %s 2518 </translation> 2519 </message> 2520 <message> 2521 <location filename="../VBoxManageControlVM.cpp" line="649"/> 2522 <source>Failed to save machine state</source> 2523 <translation>Не удалось сохранить состояние машины</translation> 2524 </message> 2525 <message> 2526 <location filename="../VBoxManageControlVM.cpp" line="672"/> 2527 <location filename="../VBoxManageControlVM.cpp" line="704"/> 2528 <location filename="../VBoxManageControlVM.cpp" line="757"/> 2529 <location filename="../VBoxManageControlVM.cpp" line="777"/> 2530 <location filename="../VBoxManageControlVM.cpp" line="1501"/> 2531 <location filename="../VBoxManageControlVM.cpp" line="1522"/> 2532 <location filename="../VBoxManageControlVM.cpp" line="1645"/> 2533 <location filename="../VBoxManageControlVM.cpp" line="1800"/> 2534 <location filename="../VBoxManageControlVM.cpp" line="1896"/> 2535 <location filename="../VBoxManageControlVM.cpp" line="2162"/> 2536 <source>Guest not running</source> 2537 <translation>Гостевая система не запущена</translation> 2538 </message> 2539 <message> 2540 <location filename="../VBoxManageControlVM.cpp" line="693"/> 2541 <source>Current installed Guest Additions don't support %s the guest.</source> 2542 <translation>Текущие установленные Дополнения Гостевой ОС не поддерживают %s гостевой системы.</translation> 2543 </message> 2544 <message> 2545 <location filename="../VBoxManageControlVM.cpp" line="694"/> 2546 <source>rebooting</source> 2547 <translation>перезагрузку</translation> 2548 </message> 2549 <message> 2550 <location filename="../VBoxManageControlVM.cpp" line="694"/> 2551 <source>shutting down</source> 2552 <translation>завершение</translation> 2553 </message> 2554 <message> 2555 <location filename="../VBoxManageControlVM.cpp" line="711"/> 2556 <source>Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source> 2557 <translation>Отсутствует аргумент к '%s'. Ожидаются сканкоды клавиатуры IBM PC AT set 2 в виде hex байтов.</translation> 2558 </message> 2559 <message> 2560 <location filename="../VBoxManageControlVM.cpp" line="731"/> 2561 <source>Converting '%s' returned %Rrc!</source> 2562 <translation>Преобразование '%s' вернуло %Rrc!</translation> 2563 </message> 2564 <message> 2565 <location filename="../VBoxManageControlVM.cpp" line="740"/> 2566 <source>Error: '%s' is not a hex byte!</source> 2567 <translation>Ошибка: '%s' не является hex байтом!</translation> 2568 </message> 2569 <message> 2570 <location filename="../VBoxManageControlVM.cpp" line="764"/> 2571 <source>Missing argument to '%s'. Expected ASCII string(s).</source> 2572 <translation>Отсутствует аргумент к '%s'. Ожидается строка ASCII.</translation> 2573 </message> 2574 <message> 2575 <location filename="../VBoxManageControlVM.cpp" line="784"/> 2576 <source>Missing argument to '%s'. Expected file name.</source> 2577 <translation>Отсутствует аргумент к '%s'. Ожидается имя файла.</translation> 2578 </message> 2579 <message> 2580 <location filename="../VBoxManageControlVM.cpp" line="803"/> 2581 <location filename="../VBoxManageControlVM.cpp" line="847"/> 2582 <location filename="../VBoxManageControlVM.cpp" line="890"/> 2583 <location filename="../VBoxManageControlVM.cpp" line="938"/> 2584 <location filename="../VBoxManageControlVM.cpp" line="1031"/> 2585 <location filename="../VBoxManageControlVM.cpp" line="1092"/> 2586 <location filename="../VBoxManageControlVM.cpp" line="1141"/> 2587 <location filename="../VBoxManageControlVM.cpp" line="1170"/> 2588 <location filename="../VBoxManageControlVM.cpp" line="1182"/> 2589 <location filename="../VBoxManageControlVM.cpp" line="1194"/> 2590 <location filename="../VBoxManageControlVM.cpp" line="1207"/> 2591 <location filename="../VBoxManageControlVM.cpp" line="1218"/> 2592 <location filename="../VBoxManageControlVM.cpp" line="1230"/> 2593 <location filename="../VBoxManageControlVM.cpp" line="1258"/> 2594 <location filename="../VBoxManageControlVM.cpp" line="1293"/> 2595 <location filename="../VBoxManageControlVM.cpp" line="1324"/> 2596 <location filename="../VBoxManageControlVM.cpp" line="1344"/> 2597 <location filename="../VBoxManageControlVM.cpp" line="2153"/> 2598 <location filename="../VBoxManageControlVM.cpp" line="2269"/> 2599 <source>Missing argument to '%s'</source> 2600 <translation>Отсутствует аргумент к '%s'</translation> 2601 </message> 2602 <message> 2603 <location filename="../VBoxManageControlVM.cpp" line="822"/> 2604 <source>Invalid link state '%s'</source> 2605 <translation>Недопустимое состояние подключения '%s'</translation> 2606 </message> 2607 <message> 2608 <location filename="../VBoxManageControlVM.cpp" line="867"/> 2609 <source>Invalid filename or filename not specified for NIC %lu</source> 2610 <translation>Недействительное имя файла или имя файла не указано для сетевого адаптера %lu</translation> 2611 </message> 2612 <message> 2613 <location filename="../VBoxManageControlVM.cpp" line="875"/> 2614 <source>The NIC %d is currently disabled and thus its tracefile can't be changed</source> 2615 <translation>NIC %d в настоящее время отключен и поэтому его трассировочный файл не может быть изменен</translation> 2616 </message> 2617 <message> 2618 <location filename="../VBoxManageControlVM.cpp" line="914"/> 2619 <source>Invalid nictrace%lu argument '%s'</source> 2620 <translation>Недопустимый аргумент к nictrace%lu '%s'</translation> 2621 </message> 2622 <message> 2623 <location filename="../VBoxManageControlVM.cpp" line="922"/> 2624 <source>The NIC %d is currently disabled and thus its trace flag can't be changed</source> 2625 <translation>NIC %d в настоящее время отключен и поэтому его трассировочный флаг не может быть изменен</translation> 2626 </message> 2627 <message> 2628 <location filename="../VBoxManageControlVM.cpp" line="973"/> 2629 <source>Missing or invalid argument to '%s'</source> 2630 <translation>Отсутствует или недопустимый аргумент к '%s'</translation> 2631 </message> 2632 <message> 2633 <location filename="../VBoxManageControlVM.cpp" line="1009"/> 2634 <source>Wrong rule proto '%s' specified -- only 'udp' and 'tcp' are allowed.</source> 2635 <translation>Указан неправильный протокол правила '%s' -- разрешены только 'udp' и 'tcp'.</translation> 2636 </message> 2637 <message> 2638 <location filename="../VBoxManageControlVM.cpp" line="1062"/> 2639 <source>Invalid nicproperty%d argument '%s'</source> 2640 <translation>Недопустимый аргумент к nicproperty%d '%s'</translation> 2641 </message> 2642 <message> 2643 <location filename="../VBoxManageControlVM.cpp" line="1069"/> 2644 <source>Error: Failed to allocate memory for nicproperty%d '%s' 2645 </source> 2646 <translation>Ошибка: Не удалось выделить память для nicproperty%d '%s' 2647 </translation> 2648 </message> 2649 <message> 2650 <location filename="../VBoxManageControlVM.cpp" line="1077"/> 2651 <source>The NIC %d is currently disabled and thus its properties can't be changed</source> 2652 <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить его свойства</translation> 2653 </message> 2654 <message> 2655 <location filename="../VBoxManageControlVM.cpp" line="1116"/> 2656 <source>Unknown promiscuous mode policy '%s'</source> 2657 <translation>Неизвестная политика неразборчивого режима '%s'</translation> 2658 </message> 2659 <message> 2660 <location filename="../VBoxManageControlVM.cpp" line="1126"/> 2661 <source>The NIC %d is currently disabled and thus its promiscuous mode can't be changed</source> 2662 <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить неразборчивый режим</translation> 2663 </message> 2664 <message> 2665 <location filename="../VBoxManageControlVM.cpp" line="1239"/> 2666 <source>Invalid type '%s' specfied for NIC %lu</source> 2667 <translation>Указан недопустимый тип '%s' для NIC %lu</translation> 2668 </message> 2669 <message> 2670 <location filename="../VBoxManageControlVM.cpp" line="1247"/> 2671 <source>The NIC %d is currently disabled and thus its attachment type can't be changed</source> 2672 <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить тип подключения</translation> 2673 </message> 2674 <message> 2675 <location filename="../VBoxManageControlVM.cpp" line="1254"/> 2676 <source>Warning: 'vrdp' is deprecated. Use 'vrde'. 2677 </source> 2678 <translation>Предупреждение: 'vrdp' устарел. Используйте 'vrde'. 2679 </translation> 2680 </message> 2681 <message> 2682 <location filename="../VBoxManageControlVM.cpp" line="1277"/> 2683 <source>Invalid remote desktop server state '%s'</source> 2684 <translation>Недопустимое состояние сервера удаленного рабочего стола '%s'</translation> 2685 </message> 2686 <message> 2687 <location filename="../VBoxManageControlVM.cpp" line="1289"/> 2688 <source>Warning: 'vrdpport' is deprecated. Use 'vrdeport'. 2689 </source> 2690 <translation>Предупреждение: 'vrdpport' устарел. Используйте 'vrdeport'. 2691 </translation> 2692 </message> 2693 <message> 2694 <location filename="../VBoxManageControlVM.cpp" line="1320"/> 2695 <source>Warning: 'vrdpvideochannelquality' is deprecated. Use 'vrdevideochannelquality'. 2696 </source> 2697 <translation>Предупреждение: 'vrdpvideochannelquality' устарел. Используйте 'vrdevideochannelquality'. 2698 </translation> 2699 </message> 2700 <message> 2701 <location filename="../VBoxManageControlVM.cpp" line="1370"/> 2702 <source>Invalid vrdeproperty argument '%s'</source> 2703 <translation>Недопустимый аргумент к vrdeproperty '%s'</translation> 2704 </message> 2705 <message> 2706 <location filename="../VBoxManageControlVM.cpp" line="1377"/> 2707 <source>Error: Failed to allocate memory for VRDE property '%s' 2708 </source> 2709 <translation>Ошибка: Не удалось выделить память для свойства VRDE '%s' 2710 </translation> 2711 </message> 2712 <message> 2713 <location filename="../VBoxManageControlVM.cpp" line="1398"/> 2714 <source>Wrong number of arguments</source> 2715 <translation>Неправильное количество аргументов</translation> 2716 </message> 2717 <message> 2718 <location filename="../VBoxManageControlVM.cpp" line="1414"/> 2719 <location filename="../VBoxManageControlVM.cpp" line="1608"/> 2720 <location filename="../VBoxManageControlVM.cpp" line="2417"/> 2721 <source>Invalid parameter '%s'</source> 2722 <translation>Недопустимый параметр '%s'</translation> 2723 </message> 2724 <message> 2725 <location filename="../VBoxManageControlVM.cpp" line="1447"/> 2726 <source>Zero UUID argument '%s'</source> 2727 <translation>Нулевой UUID аргумент '%s'</translation> 2728 </message> 2729 <message> 2730 <location filename="../VBoxManageControlVM.cpp" line="1465"/> 2731 <location filename="../VBoxManageControlVM.cpp" line="1513"/> 2732 <location filename="../VBoxManageControlVM.cpp" line="1564"/> 2733 <location filename="../VBoxManageControlVM.cpp" line="1620"/> 2734 <location filename="../VBoxManageControlVM.cpp" line="1660"/> 2735 <location filename="../VBoxManageControlVM.cpp" line="1724"/> 2736 <location filename="../VBoxManageControlVM.cpp" line="1780"/> 2737 <location filename="../VBoxManageControlVM.cpp" line="1876"/> 2738 <location filename="../VBoxManageControlVM.cpp" line="1928"/> 2739 <location filename="../VBoxManageControlVM.cpp" line="2009"/> 2740 <location filename="../VBoxManageControlVM.cpp" line="2022"/> 2741 <location filename="../VBoxManageControlVM.cpp" line="2055"/> 2742 <location filename="../VBoxManageControlVM.cpp" line="2076"/> 2743 <location filename="../VBoxManageControlVM.cpp" line="2097"/> 2744 <location filename="../VBoxManageControlVM.cpp" line="2118"/> 2745 <location filename="../VBoxManageControlVM.cpp" line="2139"/> 3058 <location filename="../VBoxManageControlVM.cpp" line="1587"/> 3059 <location filename="../VBoxManageControlVM.cpp" line="2259"/> 3060 <source>Invalid parameter '%s'.</source> 3061 <translation type="unfinished"></translation> 3062 </message> 3063 <message> 3064 <location filename="../VBoxManageControlVM.cpp" line="1425"/> 3065 <source>Zero UUID argument '%s'.</source> 3066 <translation type="unfinished"></translation> 3067 </message> 3068 <message> 3069 <location filename="../VBoxManageControlVM.cpp" line="1444"/> 3070 <location filename="../VBoxManageControlVM.cpp" line="1491"/> 3071 <location filename="../VBoxManageControlVM.cpp" line="1542"/> 3072 <location filename="../VBoxManageControlVM.cpp" line="1599"/> 3073 <location filename="../VBoxManageControlVM.cpp" line="1638"/> 3074 <location filename="../VBoxManageControlVM.cpp" line="1735"/> 3075 <location filename="../VBoxManageControlVM.cpp" line="1787"/> 3076 <location filename="../VBoxManageControlVM.cpp" line="1821"/> 3077 <location filename="../VBoxManageControlVM.cpp" line="1840"/> 3078 <location filename="../VBoxManageControlVM.cpp" line="1854"/> 3079 <location filename="../VBoxManageControlVM.cpp" line="1888"/> 3080 <location filename="../VBoxManageControlVM.cpp" line="1910"/> 3081 <location filename="../VBoxManageControlVM.cpp" line="1932"/> 3082 <location filename="../VBoxManageControlVM.cpp" line="1954"/> 3083 <location filename="../VBoxManageControlVM.cpp" line="1978"/> 3084 <location filename="../VBoxManageControlVM.cpp" line="2048"/> 3085 <location filename="../VBoxManageControlVM.cpp" line="2093"/> 3086 <source>Incorrect number of parameters.</source> 3087 <translation type="unfinished"></translation> 3088 </message> 3089 <message> 3090 <location filename="../VBoxManageControlVM.cpp" line="1462"/> 3091 <source>Either "yes" or "no" is expected.</source> 3092 <translation type="unfinished"></translation> 3093 </message> 3094 <message> 3095 <location filename="../VBoxManageControlVM.cpp" line="1527"/> 3096 <source>Display status must be <on> or <off>.</source> 3097 <translation type="unfinished"></translation> 3098 </message> 3099 <message> 3100 <location filename="../VBoxManageControlVM.cpp" line="1647"/> 3101 <source>Error parsing guest memory balloon size '%s'.</source> 3102 <translation type="unfinished"></translation> 3103 </message> 3104 <message> 3105 <location filename="../VBoxManageControlVM.cpp" line="1728"/> 3106 <source>Teleportation failed</source> 3107 <translation type="unfinished">Не удалось произвести портирование</translation> 3108 </message> 3109 <message> 3110 <location filename="../VBoxManageControlVM.cpp" line="1746"/> 3111 <source>Error parsing display number '%s'.</source> 3112 <translation type="unfinished"></translation> 3113 </message> 3114 <message> 3115 <location filename="../VBoxManageControlVM.cpp" line="1769"/> 3116 <source>Failed to create file '%s' (%Rrc).</source> 3117 <translation type="unfinished"></translation> 3118 </message> 3119 <message> 3120 <location filename="../VBoxManageControlVM.cpp" line="1776"/> 3121 <source>Failed to write screenshot to file '%s' (%Rrc).</source> 3122 <translation type="unfinished"></translation> 3123 </message> 3124 <message> 3125 <location filename="../VBoxManageControlVM.cpp" line="1827"/> 3126 <source>Error parsing list of screen IDs '%s'.</source> 3127 <translation type="unfinished"></translation> 3128 </message> 3129 <message> 3130 <location filename="../VBoxManageControlVM.cpp" line="1863"/> 3131 <source>Error parsing video width '%s'.</source> 3132 <translation type="unfinished"></translation> 3133 </message> 3134 <message> 3135 <location filename="../VBoxManageControlVM.cpp" line="1872"/> 3136 <source>Error parsing video height '%s'.</source> 3137 <translation type="unfinished"></translation> 3138 </message> 3139 <message> 3140 <location filename="../VBoxManageControlVM.cpp" line="1897"/> 3141 <source>Error parsing video rate '%s'.</source> 3142 <translation type="unfinished"></translation> 3143 </message> 3144 <message> 3145 <location filename="../VBoxManageControlVM.cpp" line="1919"/> 3146 <source>Error parsing video FPS '%s'.</source> 3147 <translation type="unfinished"></translation> 3148 </message> 3149 <message> 3150 <location filename="../VBoxManageControlVM.cpp" line="1941"/> 3151 <source>Error parsing maximum time '%s'.</source> 3152 <translation type="unfinished"></translation> 3153 </message> 3154 <message> 3155 <location filename="../VBoxManageControlVM.cpp" line="1963"/> 3156 <source>Error parsing maximum file size '%s'.</source> 3157 <translation type="unfinished"></translation> 3158 </message> 3159 <message> 3160 <location filename="../VBoxManageControlVM.cpp" line="2037"/> 3161 <source>Invalid argument to '%s'.</source> 3162 <translation type="unfinished"></translation> 3163 </message> 3164 <message> 3165 <location filename="../VBoxManageControlVM.cpp" line="2059"/> 3166 <source>Invalid parameters.</source> 3167 <translation type="unfinished"></translation> 3168 </message> 3169 <message> 3170 <location filename="../VBoxManageControlVM.cpp" line="2072"/> 3171 <source>Enter password:</source> 3172 <translation type="unfinished">Введите пароль:</translation> 3173 </message> 3174 <message> 3175 <location filename="../VBoxManageControlVM.cpp" line="2081"/> 3176 <source>Failed to read new password from file.</source> 3177 <translation type="unfinished"></translation> 3178 </message> 3179 <message> 3180 <location filename="../VBoxManageControlVM.cpp" line="2129"/> 3181 <location filename="../VBoxManageControlVM.cpp" line="2144"/> 3182 <location filename="../VBoxManageControlVM.cpp" line="2185"/> 3183 <location filename="../VBoxManageControlVM.cpp" line="2198"/> 3184 <location filename="../VBoxManageControlVM.cpp" line="2219"/> 3185 <location filename="../VBoxManageControlVM.cpp" line="2239"/> 3186 <source>Incorrect arguments to '%s'.</source> 3187 <translation type="unfinished"></translation> 3188 </message> 3189 <message> 2746 3190 <location filename="../VBoxManageControlVM.cpp" line="2205"/> 2747 <location filename="../VBoxManageControlVM.cpp" line="2249"/> 2748 <source>Incorrect number of parameters</source> 2749 <translation>Некорректное количество параметров</translation> 2750 </message> 2751 <message> 2752 <location filename="../VBoxManageControlVM.cpp" line="1484"/> 2753 <source>Either "yes" or "no" is expected</source> 2754 <translation>Ожидается только "yes" или "no"</translation> 2755 </message> 2756 <message> 2757 <location filename="../VBoxManageControlVM.cpp" line="1549"/> 2758 <source>Display status must be <on> or <off></source> 2759 <translation>Статус экрана должен быть <on> или <off></translation> 2760 </message> 2761 <message> 2762 <location filename="../VBoxManageControlVM.cpp" line="1681"/> 2763 <source>Invalid host DVD drive name "%s"</source> 2764 <translation>Недопустимое имя DVD дисковода хоста "%s"</translation> 2765 </message> 2766 <message> 2767 <location filename="../VBoxManageControlVM.cpp" line="1717"/> 2768 <source>IDE Controller</source> 2769 <translation>IDE Контроллер</translation> 2770 </message> 2771 <message> 2772 <location filename="../VBoxManageControlVM.cpp" line="1744"/> 2773 <source>Invalid host floppy drive name "%s"</source> 2774 <translation>Недопустимое имя флоппи дисковода хоста "%s"</translation> 2775 </message> 2776 <message> 2777 <location filename="../VBoxManageControlVM.cpp" line="1773"/> 2778 <source>Floppy Controller</source> 2779 <translation>Флоппи Контроллер</translation> 2780 </message> 2781 <message> 2782 <location filename="../VBoxManageControlVM.cpp" line="1789"/> 2783 <source>Error parsing guest memory balloon size '%s'</source> 2784 <translation>Ошибка разбора размера balloon памяти гостевой системы '%s'</translation> 2785 </message> 2786 <message> 2787 <location filename="../VBoxManageControlVM.cpp" line="1870"/> 2788 <source>Teleportation failed</source> 2789 <translation>Не удалось произвести портирование</translation> 2790 </message> 2791 <message> 2792 <location filename="../VBoxManageControlVM.cpp" line="1887"/> 2793 <location filename="../VBoxManageControlVM.cpp" line="1988"/> 2794 <source>Error parsing display number '%s'</source> 2795 <translation>Ошибка разбора номера экрана '%s'</translation> 2796 </message> 2797 <message> 2798 <location filename="../VBoxManageControlVM.cpp" line="1910"/> 2799 <source>Failed to create file '%s' (%Rrc)</source> 2800 <translation>Не удалось создать файл '%s' (%Rrc)</translation> 2801 </message> 2802 <message> 2803 <location filename="../VBoxManageControlVM.cpp" line="1917"/> 2804 <source>Failed to write screenshot to file '%s' (%Rrc)</source> 2805 <translation>Не удалось записать снимок экрана в файл '%s' (%Rrc)</translation> 2806 </message> 2807 <message> 2808 <location filename="../VBoxManageControlVM.cpp" line="1994"/> 2809 <source>Invalid screen ID specified '%u'</source> 2810 <translation>Указан недопустимый ID экрана '%u'</translation> 2811 </message> 2812 <message> 2813 <location filename="../VBoxManageControlVM.cpp" line="2031"/> 2814 <source>Error parsing video width '%s'</source> 2815 <translation>Ошибка при разборе ширины видео '%s'</translation> 2816 </message> 2817 <message> 2818 <location filename="../VBoxManageControlVM.cpp" line="2040"/> 2819 <source>Error parsing video height '%s'</source> 2820 <translation>Ошибка при разборе высоты видео '%s'</translation> 2821 </message> 2822 <message> 2823 <location filename="../VBoxManageControlVM.cpp" line="2064"/> 2824 <source>Error parsing video rate '%s'</source> 2825 <translation>Ошибка при разборе битрейта видео '%s'</translation> 2826 </message> 2827 <message> 2828 <location filename="../VBoxManageControlVM.cpp" line="2085"/> 2829 <source>Error parsing video FPS '%s'</source> 2830 <translation>Ошибка при разборе FPS видео '%s'</translation> 2831 </message> 2832 <message> 2833 <location filename="../VBoxManageControlVM.cpp" line="2106"/> 2834 <source>Error parsing maximum time '%s'</source> 2835 <translation>Ошибка при разборе максимального времени '%s'</translation> 2836 </message> 2837 <message> 2838 <location filename="../VBoxManageControlVM.cpp" line="2127"/> 2839 <source>Error parsing maximum file size '%s'</source> 2840 <translation>Ошибка при разборе максимального размера файла '%s'</translation> 2841 </message> 2842 <message> 2843 <location filename="../VBoxManageControlVM.cpp" line="2195"/> 2844 <source>Invalid argument to '%s'</source> 2845 <translation>Недопустимый аргумент к '%s'</translation> 2846 </message> 2847 <message> 2848 <location filename="../VBoxManageControlVM.cpp" line="2216"/> 2849 <source>Invalid parameters</source> 2850 <translation>Недопустимые параметры</translation> 2851 </message> 2852 <message> 2853 <location filename="../VBoxManageControlVM.cpp" line="2229"/> 2854 <source>Enter password:</source> 2855 <translation>Введите пароль:</translation> 2856 </message> 2857 <message> 2858 <location filename="../VBoxManageControlVM.cpp" line="2238"/> 2859 <source>Failed to read new password from file</source> 2860 <translation>Не удалось прочесть новый пароль из файла</translation> 2861 </message> 2862 <message> 2863 <location filename="../VBoxManageControlVM.cpp" line="2283"/> 2864 <location filename="../VBoxManageControlVM.cpp" line="2298"/> 2865 <location filename="../VBoxManageControlVM.cpp" line="2339"/> 2866 <location filename="../VBoxManageControlVM.cpp" line="2351"/> 2867 <location filename="../VBoxManageControlVM.cpp" line="2371"/> 2868 <location filename="../VBoxManageControlVM.cpp" line="2397"/> 2869 <source>Incorrect arguments to '%s'</source> 2870 <translation>Некорректные аргументы к '%s'</translation> 2871 </message> 2872 <message> 2873 <location filename="../VBoxManageControlVM.cpp" line="2358"/> 2874 <source>Invalid vm-process-priority '%s'</source> 2875 <translation>Недопустимый vm-process-priority '%s'</translation> 2876 </message> 2877 <message> 2878 <location filename="../VBoxManageControlVM.cpp" line="2406"/> 2879 <source>Invalid autostart delay number '%s'</source> 2880 <translation>Недопустимое время задержки автостарта '%s'</translation> 3191 <source>Invalid vm-process-priority '%s'.</source> 3192 <translation type="unfinished"></translation> 3193 </message> 3194 <message> 3195 <location filename="../VBoxManageControlVM.cpp" line="2248"/> 3196 <source>Invalid autostart delay number '%s'.</source> 3197 <translation type="unfinished"></translation> 2881 3198 </message> 2882 3199 </context> … … 3285 3602 <name>Disk</name> 3286 3603 <message> 3287 <location filename="../VBoxManageDisk.cpp" line="6 6"/>3604 <location filename="../VBoxManageDisk.cpp" line="64"/> 3288 3605 <source>Error code %Rrc at %s(%u) in function %s</source> 3289 3606 <translation>Код ошибки %Rrc в %s(%u) в функции %s</translation> 3290 3607 </message> 3291 3608 <message> 3292 <location filename="../VBoxManageDisk.cpp" line="18 6"/>3293 <location filename="../VBoxManageDisk.cpp" line="2 21"/>3609 <location filename="../VBoxManageDisk.cpp" line="184"/> 3610 <location filename="../VBoxManageDisk.cpp" line="219"/> 3294 3611 <source>Cannot convert filename "%s" to absolute path</source> 3295 3612 <translation>Невозможно преобразовать имя файла "%s" в абсолютный путь</translation> 3296 3613 </message> 3297 3614 <message> 3298 <location filename="../VBoxManageDisk.cpp" line="2 90"/>3615 <location filename="../VBoxManageDisk.cpp" line="288"/> 3299 3616 <source>Out of memory copying '%s'</source> 3300 3617 <translation>Не хватает памяти для копирования '%s'</translation> 3301 3618 </message> 3302 3619 <message> 3303 <location filename="../VBoxManageDisk.cpp" line="3 30"/>3304 <location filename="../VBoxManageDisk.cpp" line="33 6"/>3305 <location filename="../VBoxManageDisk.cpp" line="34 2"/>3306 <location filename="../VBoxManageDisk.cpp" line=" 701"/>3307 <location filename="../VBoxManageDisk.cpp" line="70 7"/>3308 <location filename="../VBoxManageDisk.cpp" line="71 3"/>3309 <location filename="../VBoxManageDisk.cpp" line="102 7"/>3310 <location filename="../VBoxManageDisk.cpp" line="103 3"/>3311 <location filename="../VBoxManageDisk.cpp" line="103 9"/>3312 <location filename="../VBoxManageDisk.cpp" line="166 2"/>3313 <location filename="../VBoxManageDisk.cpp" line="166 8"/>3314 <location filename="../VBoxManageDisk.cpp" line="167 4"/>3315 <location filename="../VBoxManageDisk.cpp" line="177 4"/>3316 <location filename="../VBoxManageDisk.cpp" line="17 80"/>3317 <location filename="../VBoxManageDisk.cpp" line="178 6"/>3620 <location filename="../VBoxManageDisk.cpp" line="328"/> 3621 <location filename="../VBoxManageDisk.cpp" line="334"/> 3622 <location filename="../VBoxManageDisk.cpp" line="340"/> 3623 <location filename="../VBoxManageDisk.cpp" line="699"/> 3624 <location filename="../VBoxManageDisk.cpp" line="705"/> 3625 <location filename="../VBoxManageDisk.cpp" line="711"/> 3626 <location filename="../VBoxManageDisk.cpp" line="1025"/> 3627 <location filename="../VBoxManageDisk.cpp" line="1031"/> 3628 <location filename="../VBoxManageDisk.cpp" line="1037"/> 3629 <location filename="../VBoxManageDisk.cpp" line="1660"/> 3630 <location filename="../VBoxManageDisk.cpp" line="1666"/> 3631 <location filename="../VBoxManageDisk.cpp" line="1672"/> 3632 <location filename="../VBoxManageDisk.cpp" line="1772"/> 3633 <location filename="../VBoxManageDisk.cpp" line="1778"/> 3634 <location filename="../VBoxManageDisk.cpp" line="1784"/> 3318 3635 <source>Only one command can be specified: '%s'</source> 3319 3636 <translation>Может быть указана только одна команда: '%s'</translation> 3320 3637 </message> 3321 3638 <message> 3322 <location filename="../VBoxManageDisk.cpp" line="37 3"/>3639 <location filename="../VBoxManageDisk.cpp" line="371"/> 3323 3640 <source>Invalid key value pair: No '='.</source> 3324 3641 <translation>Недопустимая пара ключ/значение: Нет '='.</translation> 3325 3642 </message> 3326 3643 <message> 3327 <location filename="../VBoxManageDisk.cpp" line="38 9"/>3644 <location filename="../VBoxManageDisk.cpp" line="387"/> 3328 3645 <source>Cannot open replacement value file '%s': %Rrc</source> 3329 3646 <translation>Невозможно открыть файл с подменяемым значением '%s': %Rrc</translation> 3330 3647 </message> 3331 3648 <message> 3332 <location filename="../VBoxManageDisk.cpp" line="40 5"/>3649 <location filename="../VBoxManageDisk.cpp" line="403"/> 3333 3650 <source>Error reading replacement MBR file '%s': %Rrc</source> 3334 3651 <translation>Ошибка чтения файла с подменяемым MBR '%s': %Rrc</translation> 3335 3652 </message> 3336 3653 <message> 3337 <location filename="../VBoxManageDisk.cpp" line="40 8"/>3654 <location filename="../VBoxManageDisk.cpp" line="406"/> 3338 3655 <source>Out of memory reading '%s': %Rrc</source> 3339 3656 <translation>Не хватает памяти при чтении '%s': %Rrc</translation> 3340 3657 </message> 3341 3658 <message> 3342 <location filename="../VBoxManageDisk.cpp" line="41 2"/>3659 <location filename="../VBoxManageDisk.cpp" line="410"/> 3343 3660 <source>Replacement value file '%s' is to big: %Rhcb, max 16MiB</source> 3344 3661 <translation>Файл с подменяемым значением '%s' слишком большой: %Rhcb, максимально 16MiB</translation> 3345 3662 </message> 3346 3663 <message> 3347 <location filename="../VBoxManageDisk.cpp" line="41 6"/>3664 <location filename="../VBoxManageDisk.cpp" line="414"/> 3348 3665 <source>Cannot get the size of the value file '%s': %Rrc</source> 3349 3666 <translation>Невозможно получить размер файла '%s', содержащим значение: %Rrc</translation> 3350 3667 </message> 3351 3668 <message> 3352 <location filename="../VBoxManageDisk.cpp" line="43 5"/>3353 <location filename="../VBoxManageDisk.cpp" line="106 2"/>3354 <location filename="../VBoxManageDisk.cpp" line="124 7"/>3355 <location filename="../VBoxManageDisk.cpp" line="258 8"/>3669 <location filename="../VBoxManageDisk.cpp" line="433"/> 3670 <location filename="../VBoxManageDisk.cpp" line="1060"/> 3671 <location filename="../VBoxManageDisk.cpp" line="1245"/> 3672 <location filename="../VBoxManageDisk.cpp" line="2585"/> 3356 3673 <source>Invalid medium variant '%s'</source> 3357 3674 <translation>Недопустимый вариант носителя '%s'</translation> 3358 3675 </message> 3359 3676 <message> 3360 <location filename="../VBoxManageDisk.cpp" line="43 9"/>3361 <location filename="../VBoxManageDisk.cpp" line=" 801"/>3362 <location filename="../VBoxManageDisk.cpp" line="10 71"/>3363 <location filename="../VBoxManageDisk.cpp" line="126 3"/>3364 <location filename="../VBoxManageDisk.cpp" line="168 2"/>3365 <location filename="../VBoxManageDisk.cpp" line="179 8"/>3366 <location filename="../VBoxManageDisk.cpp" line="20 10"/>3677 <location filename="../VBoxManageDisk.cpp" line="437"/> 3678 <location filename="../VBoxManageDisk.cpp" line="799"/> 3679 <location filename="../VBoxManageDisk.cpp" line="1069"/> 3680 <location filename="../VBoxManageDisk.cpp" line="1261"/> 3681 <location filename="../VBoxManageDisk.cpp" line="1680"/> 3682 <location filename="../VBoxManageDisk.cpp" line="1796"/> 3683 <location filename="../VBoxManageDisk.cpp" line="2008"/> 3367 3684 <source>Invalid parameter '%s'</source> 3368 3685 <translation>Недопустимый параметр '%s'</translation> 3686 </message> 3687 <message> 3688 <location filename="../VBoxManageDisk.cpp" line="443"/> 3689 <location filename="../VBoxManageDisk.cpp" line="806"/> 3690 <location filename="../VBoxManageDisk.cpp" line="1687"/> 3691 <location filename="../VBoxManageDisk.cpp" line="1803"/> 3692 <location filename="../VBoxManageDisk.cpp" line="2015"/> 3693 <source>Invalid option -%c</source> 3694 <translation>Недопустимая опция -%c</translation> 3369 3695 </message> 3370 3696 <message> … … 3374 3700 <location filename="../VBoxManageDisk.cpp" line="1805"/> 3375 3701 <location filename="../VBoxManageDisk.cpp" line="2017"/> 3376 <source>Invalid option -%c</source>3377 <translation>Недопустимая опция -%c</translation>3378 </message>3379 <message>3380 <location filename="../VBoxManageDisk.cpp" line="447"/>3381 <location filename="../VBoxManageDisk.cpp" line="810"/>3382 <location filename="../VBoxManageDisk.cpp" line="1691"/>3383 <location filename="../VBoxManageDisk.cpp" line="1807"/>3384 <location filename="../VBoxManageDisk.cpp" line="2019"/>3385 3702 <source>Invalid option case %i</source> 3386 3703 <translation>Недопустимый вариант опции %i</translation> 3387 3704 </message> 3388 3705 <message> 3389 <location filename="../VBoxManageDisk.cpp" line="4 50"/>3390 <location filename="../VBoxManageDisk.cpp" line="81 3"/>3391 <location filename="../VBoxManageDisk.cpp" line="169 4"/>3392 <location filename="../VBoxManageDisk.cpp" line="18 10"/>3393 <location filename="../VBoxManageDisk.cpp" line="202 2"/>3706 <location filename="../VBoxManageDisk.cpp" line="448"/> 3707 <location filename="../VBoxManageDisk.cpp" line="811"/> 3708 <location filename="../VBoxManageDisk.cpp" line="1692"/> 3709 <location filename="../VBoxManageDisk.cpp" line="1808"/> 3710 <location filename="../VBoxManageDisk.cpp" line="2020"/> 3394 3711 <source>unknown option: %s 3395 3712 </source> … … 3398 3715 </message> 3399 3716 <message> 3400 <location filename="../VBoxManageDisk.cpp" line="45 4"/>3401 <location filename="../VBoxManageDisk.cpp" line="81 7"/>3402 <location filename="../VBoxManageDisk.cpp" line="108 7"/>3403 <location filename="../VBoxManageDisk.cpp" line="169 8"/>3404 <location filename="../VBoxManageDisk.cpp" line="181 4"/>3405 <location filename="../VBoxManageDisk.cpp" line="202 6"/>3717 <location filename="../VBoxManageDisk.cpp" line="452"/> 3718 <location filename="../VBoxManageDisk.cpp" line="815"/> 3719 <location filename="../VBoxManageDisk.cpp" line="1085"/> 3720 <location filename="../VBoxManageDisk.cpp" line="1696"/> 3721 <location filename="../VBoxManageDisk.cpp" line="1812"/> 3722 <location filename="../VBoxManageDisk.cpp" line="2024"/> 3406 3723 <source>error: %Rrs</source> 3407 3724 <translation>ошибка: %Rrs</translation> 3408 3725 </message> 3409 3726 <message> 3410 <location filename="../VBoxManageDisk.cpp" line="46 5"/>3411 <location filename="../VBoxManageDisk.cpp" line="48 5"/>3727 <location filename="../VBoxManageDisk.cpp" line="463"/> 3728 <location filename="../VBoxManageDisk.cpp" line="483"/> 3412 3729 <source>Parameters --filename is required</source> 3413 3730 <translation>Требуется параметр --filename</translation> 3414 3731 </message> 3415 3732 <message> 3416 <location filename="../VBoxManageDisk.cpp" line="46 7"/>3733 <location filename="../VBoxManageDisk.cpp" line="465"/> 3417 3734 <source>Parameters --size is required</source> 3418 3735 <translation>Требуется параметр --size</translation> 3419 3736 </message> 3420 3737 <message> 3421 <location filename="../VBoxManageDisk.cpp" line="48 8"/>3738 <location filename="../VBoxManageDisk.cpp" line="486"/> 3422 3739 <source>Creating a differencing medium is only supported for hard disks</source> 3423 3740 <translation>Создание разностного носителя поддерживается только для жестких дисков</translation> 3424 3741 </message> 3425 3742 <message> 3426 <location filename="../VBoxManageDisk.cpp" line="50 7"/>3743 <location filename="../VBoxManageDisk.cpp" line="505"/> 3427 3744 <source>Invalid parent hard disk reference, avoiding crash</source> 3428 3745 <translation>Недопустимая ссылка на родительский жесткий диск, предотвращение краха</translation> 3429 3746 </message> 3430 3747 <message> 3431 <location filename="../VBoxManageDisk.cpp" line="5 90"/>3748 <location filename="../VBoxManageDisk.cpp" line="588"/> 3432 3749 <source>The %s is not found in the property list of the requested medium format.</source> 3433 3750 <translation>%s не найден в списке свойств запрошенного формата носителя.</translation> 3434 3751 </message> 3435 3752 <message> 3436 <location filename="../VBoxManageDisk.cpp" line=" 600"/>3753 <location filename="../VBoxManageDisk.cpp" line="598"/> 3437 3754 <source>Base64 encoding of the property %s failed. (%Rhrc)</source> 3438 3755 <translation>Не удалось закодировать свойство, используя Base64. (%Rhrc)</translation> 3439 3756 </message> 3440 3757 <message> 3441 <location filename="../VBoxManageDisk.cpp" line="62 4"/>3758 <location filename="../VBoxManageDisk.cpp" line="622"/> 3442 3759 <source>Failed to create medium</source> 3443 3760 <translation>Не удалось создать носитель</translation> 3444 3761 </message> 3445 3762 <message> 3446 <location filename="../VBoxManageDisk.cpp" line="63 2"/>3763 <location filename="../VBoxManageDisk.cpp" line="630"/> 3447 3764 <source>Medium created. UUID: %s 3448 3765 </source> … … 3451 3768 </message> 3452 3769 <message> 3453 <location filename="../VBoxManageDisk.cpp" line="7 20"/>3770 <location filename="../VBoxManageDisk.cpp" line="718"/> 3454 3771 <source>Invalid medium type '%s'</source> 3455 3772 <translation>Недопустимый тип носителя '%s'</translation> 3456 3773 </message> 3457 3774 <message> 3458 <location filename="../VBoxManageDisk.cpp" line="72 7"/>3775 <location filename="../VBoxManageDisk.cpp" line="725"/> 3459 3776 <source>Invalid autoreset parameter '%s'</source> 3460 3777 <translation>Недопустимый параметр автосброса '%s'</translation> 3461 3778 </message> 3462 3779 <message> 3463 <location filename="../VBoxManageDisk.cpp" line="7 50"/>3780 <location filename="../VBoxManageDisk.cpp" line="748"/> 3464 3781 <source>Invalid --property argument '%s'</source> 3465 3782 <translation>Недопустимый аргумент к --property '%s'</translation> 3466 3783 </message> 3467 3784 <message> 3468 <location filename="../VBoxManageDisk.cpp" line="75 7"/>3785 <location filename="../VBoxManageDisk.cpp" line="755"/> 3469 3786 <source>Error: Failed to allocate memory for medium property '%s' 3470 3787 </source> … … 3473 3790 </message> 3474 3791 <message> 3475 <location filename="../VBoxManageDisk.cpp" line="82 5"/>3476 <location filename="../VBoxManageDisk.cpp" line="170 7"/>3477 <location filename="../VBoxManageDisk.cpp" line="182 2"/>3792 <location filename="../VBoxManageDisk.cpp" line="823"/> 3793 <location filename="../VBoxManageDisk.cpp" line="1705"/> 3794 <location filename="../VBoxManageDisk.cpp" line="1820"/> 3478 3795 <source>Medium name or UUID required</source> 3479 3796 <translation>Требуется имя или UUID носителя</translation> 3480 3797 </message> 3481 3798 <message> 3482 <location filename="../VBoxManageDisk.cpp" line="83 6"/>3799 <location filename="../VBoxManageDisk.cpp" line="834"/> 3483 3800 <source>No operation specified</source> 3484 3801 <translation>Не указана операция</translation> 3485 3802 </message> 3486 3803 <message> 3487 <location filename="../VBoxManageDisk.cpp" line="85 7"/>3804 <location filename="../VBoxManageDisk.cpp" line="855"/> 3488 3805 <source>Invalid medium reference, avoiding crash</source> 3489 3806 <translation>Недопустимая ссылка на носитель, предотвращение краха</translation> 3490 3807 </message> 3491 3808 <message> 3492 <location filename="../VBoxManageDisk.cpp" line="87 8"/>3809 <location filename="../VBoxManageDisk.cpp" line="876"/> 3493 3810 <source>Error: Attempt to resize the medium from %RU64.%RU64 MB to %RU64.%RU64 MB. Use --resizebyte if this is intended! 3494 3811 </source> … … 3497 3814 </message> 3498 3815 <message> 3499 <location filename="../VBoxManageDisk.cpp" line="91 2"/>3816 <location filename="../VBoxManageDisk.cpp" line="910"/> 3500 3817 <source>Compact medium operation is not implemented!</source> 3501 3818 <translation>Операция сжатия носителя не реализована!</translation> 3502 3819 </message> 3503 3820 <message> 3504 <location filename="../VBoxManageDisk.cpp" line="91 4"/>3821 <location filename="../VBoxManageDisk.cpp" line="912"/> 3505 3822 <source>Compact medium operation for this format is not implemented yet!</source> 3506 3823 <translation>Операция сжатия носителя для этого формата еще не реализована!</translation> 3507 3824 </message> 3508 3825 <message> 3509 <location filename="../VBoxManageDisk.cpp" line="91 6"/>3826 <location filename="../VBoxManageDisk.cpp" line="914"/> 3510 3827 <source>Failed to compact medium</source> 3511 3828 <translation>Не удалось сжать носитель</translation> 3512 3829 </message> 3513 3830 <message> 3514 <location filename="../VBoxManageDisk.cpp" line="91 8"/>3831 <location filename="../VBoxManageDisk.cpp" line="916"/> 3515 3832 <source>Failed to compact medium!</source> 3516 3833 <translation>Не удалось сжать носитель!</translation> 3517 3834 </message> 3518 3835 <message> 3519 <location filename="../VBoxManageDisk.cpp" line="9 31"/>3836 <location filename="../VBoxManageDisk.cpp" line="929"/> 3520 3837 <source>Failed to resize medium</source> 3521 3838 <translation>Не удалось изменить размер носителя</translation> 3522 3839 </message> 3523 3840 <message> 3524 <location filename="../VBoxManageDisk.cpp" line="93 3"/>3841 <location filename="../VBoxManageDisk.cpp" line="931"/> 3525 3842 <source>Resize medium operation is not implemented!</source> 3526 3843 <translation>Операция изменения размера носителя не реализована!</translation> 3527 3844 </message> 3528 3845 <message> 3529 <location filename="../VBoxManageDisk.cpp" line="93 5"/>3846 <location filename="../VBoxManageDisk.cpp" line="933"/> 3530 3847 <source>Resize medium operation for this format is not implemented yet!</source> 3531 3848 <translation>Операция изменения размера носителя для этого формата еще не реализована!</translation> 3532 3849 </message> 3533 3850 <message> 3534 <location filename="../VBoxManageDisk.cpp" line="93 7"/>3851 <location filename="../VBoxManageDisk.cpp" line="935"/> 3535 3852 <source>Failed to resize medium!</source> 3536 3853 <translation>Не удалось изменить размер носителя!</translation> 3537 3854 </message> 3538 3855 <message> 3539 <location filename="../VBoxManageDisk.cpp" line="95 3"/>3856 <location filename="../VBoxManageDisk.cpp" line="951"/> 3540 3857 <source>Failed to move medium</source> 3541 3858 <translation>Не удалось переместить носитель</translation> 3542 3859 </message> 3543 3860 <message> 3544 <location filename="../VBoxManageDisk.cpp" line="95 9"/>3861 <location filename="../VBoxManageDisk.cpp" line="957"/> 3545 3862 <source>Move medium with UUID %s finished 3546 3863 </source> … … 3549 3866 </message> 3550 3867 <message> 3551 <location filename="../VBoxManageDisk.cpp" line="97 2"/>3868 <location filename="../VBoxManageDisk.cpp" line="970"/> 3552 3869 <source>Set new location of medium with UUID %s finished 3553 3870 </source> … … 3556 3873 </message> 3557 3874 <message> 3558 <location filename="../VBoxManageDisk.cpp" line="97 9"/>3875 <location filename="../VBoxManageDisk.cpp" line="977"/> 3559 3876 <source>Medium description has been changed. 3560 3877 </source> … … 3563 3880 </message> 3564 3881 <message> 3565 <location filename="../VBoxManageDisk.cpp" line="107 8"/>3882 <location filename="../VBoxManageDisk.cpp" line="1076"/> 3566 3883 <source>unhandled option: -%c</source> 3567 3884 <translation>необработанная опция: -%c</translation> 3568 3885 </message> 3569 3886 <message> 3570 <location filename="../VBoxManageDisk.cpp" line="10 80"/>3887 <location filename="../VBoxManageDisk.cpp" line="1078"/> 3571 3888 <source>unhandled option: %i</source> 3572 3889 <translation>необработанная опция: %i</translation> 3573 3890 </message> 3574 3891 <message> 3575 <location filename="../VBoxManageDisk.cpp" line="108 3"/>3892 <location filename="../VBoxManageDisk.cpp" line="1081"/> 3576 3893 <source>unknown option: %s</source> 3577 3894 <translation>неизвестная опция: %s</translation> 3578 3895 </message> 3579 3896 <message> 3580 <location filename="../VBoxManageDisk.cpp" line="109 4"/>3897 <location filename="../VBoxManageDisk.cpp" line="1092"/> 3581 3898 <source>Mandatory UUID or input file parameter missing</source> 3582 3899 <translation>Отсутствует обязательный параметр: или UUID или входной файл</translation> 3583 3900 </message> 3584 3901 <message> 3585 <location filename="../VBoxManageDisk.cpp" line="109 6"/>3902 <location filename="../VBoxManageDisk.cpp" line="1094"/> 3586 3903 <source>Mandatory output file parameter missing</source> 3587 3904 <translation>Отсутствует обязательный параметр: выходной файл</translation> 3588 3905 </message> 3589 3906 <message> 3590 <location filename="../VBoxManageDisk.cpp" line="109 8"/>3907 <location filename="../VBoxManageDisk.cpp" line="1096"/> 3591 3908 <source>Specified options which cannot be used with --existing</source> 3592 3909 <translation>Указана опция, которая не может использоваться с --existing</translation> 3593 3910 </message> 3594 3911 <message> 3595 <location filename="../VBoxManageDisk.cpp" line="118 6"/>3912 <location filename="../VBoxManageDisk.cpp" line="1184"/> 3596 3913 <source>Failed to clone medium</source> 3597 3914 <translation>Не удалось клонировать носитель</translation> 3598 3915 </message> 3599 3916 <message> 3600 <location filename="../VBoxManageDisk.cpp" line="11 91"/>3917 <location filename="../VBoxManageDisk.cpp" line="1189"/> 3601 3918 <source>Clone medium created in format '%ls'. UUID: %s 3602 3919 </source> … … 3605 3922 </message> 3606 3923 <message> 3607 <location filename="../VBoxManageDisk.cpp" line="123 5"/>3924 <location filename="../VBoxManageDisk.cpp" line="1233"/> 3608 3925 <source>Invalid UUID '%s'</source> 3609 3926 <translation>Недопустимый UUID '%s'</translation> 3610 3927 </message> 3611 3928 <message> 3612 <location filename="../VBoxManageDisk.cpp" line="127 2"/>3929 <location filename="../VBoxManageDisk.cpp" line="1270"/> 3613 3930 <source>Incorrect number of parameters</source> 3614 3931 <translation>Некорректное количество параметров</translation> 3615 3932 </message> 3616 3933 <message> 3617 <location filename="../VBoxManageDisk.cpp" line="127 3"/>3934 <location filename="../VBoxManageDisk.cpp" line="1271"/> 3618 3935 <source>Converting from raw image file="%s" to file="%s"... 3619 3936 </source> … … 3622 3939 </message> 3623 3940 <message> 3624 <location filename="../VBoxManageDisk.cpp" line="129 5"/>3941 <location filename="../VBoxManageDisk.cpp" line="1293"/> 3625 3942 <source>Cannot open file "%s": %Rrc</source> 3626 3943 <translation>Невозможно открыть файл "%s": %Rrc</translation> 3627 3944 </message> 3628 3945 <message> 3629 <location filename="../VBoxManageDisk.cpp" line="130 7"/>3946 <location filename="../VBoxManageDisk.cpp" line="1305"/> 3630 3947 <source>Cannot get image size for file "%s": %Rrc</source> 3631 3948 <translation>Невозможно получить размер образа для файла "%s": %Rrc</translation> 3632 3949 </message> 3633 3950 <message numerus="yes"> 3634 <location filename="../VBoxManageDisk.cpp" line="13 11"/>3951 <location filename="../VBoxManageDisk.cpp" line="1309"/> 3635 3952 <source>Creating %s image with size %RU64 bytes (%RU64MB)... 3636 3953 </source> … … 3645 3962 </message> 3646 3963 <message> 3647 <location filename="../VBoxManageDisk.cpp" line="15 20"/>3964 <location filename="../VBoxManageDisk.cpp" line="1518"/> 3648 3965 <source>fixed</source> 3649 3966 <translation>фиксированный</translation> 3650 3967 </message> 3651 3968 <message> 3652 <location filename="../VBoxManageDisk.cpp" line="151 8"/>3969 <location filename="../VBoxManageDisk.cpp" line="1516"/> 3653 3970 <source>dynamic</source> 3654 3971 <translation>динамический</translation> 3655 3972 </message> 3656 3973 <message> 3657 <location filename="../VBoxManageDisk.cpp" line="131 2"/>3974 <location filename="../VBoxManageDisk.cpp" line="1310"/> 3658 3975 <source>fixed</source> 3659 3976 <comment>adjective</comment> … … 3661 3978 </message> 3662 3979 <message> 3663 <location filename="../VBoxManageDisk.cpp" line="131 2"/>3980 <location filename="../VBoxManageDisk.cpp" line="1310"/> 3664 3981 <source>dynamic</source> 3665 3982 <comment>adjective</comment> … … 3667 3984 </message> 3668 3985 <message> 3669 <location filename="../VBoxManageDisk.cpp" line="131 5"/>3986 <location filename="../VBoxManageDisk.cpp" line="1313"/> 3670 3987 <source>Converted image from %s</source> 3671 3988 <translation>Преобразован образ из %s</translation> 3672 3989 </message> 3673 3990 <message> 3674 <location filename="../VBoxManageDisk.cpp" line="131 9"/>3991 <location filename="../VBoxManageDisk.cpp" line="1317"/> 3675 3992 <source>Cannot create the virtual disk container: %Rrc</source> 3676 3993 <translation>Невозможно создать контейнер виртуального диска: %Rrc</translation> 3677 3994 </message> 3678 3995 <message> 3679 <location filename="../VBoxManageDisk.cpp" line="133 7"/>3996 <location filename="../VBoxManageDisk.cpp" line="1335"/> 3680 3997 <source>Cannot create the disk image "%s": %Rrc</source> 3681 3998 <translation>Невозможно создать образ диска "%s": %Rrc</translation> 3682 3999 </message> 3683 4000 <message> 3684 <location filename="../VBoxManageDisk.cpp" line="134 7"/>4001 <location filename="../VBoxManageDisk.cpp" line="1345"/> 3685 4002 <source>Out of memory allocating buffers for image "%s": %Rrc</source> 3686 4003 <translation>Не хватает памяти под буферов для образа "%s": %Rrc</translation> 3687 4004 </message> 3688 4005 <message> 3689 <location filename="../VBoxManageDisk.cpp" line="136 6"/>4006 <location filename="../VBoxManageDisk.cpp" line="1364"/> 3690 4007 <source>Failed to write to disk image "%s": %Rrc</source> 3691 4008 <translation>Не удалось записать в образ диска "%s": %Rrc</translation> 3692 4009 </message> 3693 4010 <message> 3694 <location filename="../VBoxManageDisk.cpp" line="139 5"/>4011 <location filename="../VBoxManageDisk.cpp" line="1393"/> 3695 4012 <source>Parent UUID: %s 3696 4013 </source> … … 3699 4016 </message> 3700 4017 <message> 3701 <location filename="../VBoxManageDisk.cpp" line="1 400"/>3702 <location filename="../VBoxManageDisk.cpp" line="144 7"/>3703 <location filename="../VBoxManageDisk.cpp" line="150 2"/>4018 <location filename="../VBoxManageDisk.cpp" line="1398"/> 4019 <location filename="../VBoxManageDisk.cpp" line="1445"/> 4020 <location filename="../VBoxManageDisk.cpp" line="1500"/> 3704 4021 <source>unknown</source> 3705 4022 <translation>неизвестно</translation> 3706 4023 </message> 3707 4024 <message> 3708 <location filename="../VBoxManageDisk.cpp" line="140 4"/>4025 <location filename="../VBoxManageDisk.cpp" line="1402"/> 3709 4026 <source>not created</source> 3710 4027 <translation>не создан</translation> 3711 4028 </message> 3712 4029 <message> 3713 <location filename="../VBoxManageDisk.cpp" line="140 7"/>4030 <location filename="../VBoxManageDisk.cpp" line="1405"/> 3714 4031 <source>created</source> 3715 4032 <translation>создан</translation> 3716 4033 </message> 3717 4034 <message> 3718 <location filename="../VBoxManageDisk.cpp" line="14 10"/>4035 <location filename="../VBoxManageDisk.cpp" line="1408"/> 3719 4036 <source>locked read</source> 3720 4037 <translation>заблокирован на чтение</translation> 3721 4038 </message> 3722 4039 <message> 3723 <location filename="../VBoxManageDisk.cpp" line="141 3"/>4040 <location filename="../VBoxManageDisk.cpp" line="1411"/> 3724 4041 <source>locked write</source> 3725 4042 <translation>заблокирован на запись</translation> 3726 4043 </message> 3727 4044 <message> 3728 <location filename="../VBoxManageDisk.cpp" line="141 6"/>4045 <location filename="../VBoxManageDisk.cpp" line="1414"/> 3729 4046 <source>inaccessible</source> 3730 4047 <translation>недоступен</translation> 3731 4048 </message> 3732 4049 <message> 3733 <location filename="../VBoxManageDisk.cpp" line="141 9"/>4050 <location filename="../VBoxManageDisk.cpp" line="1417"/> 3734 4051 <source>creating</source> 3735 4052 <translation>создание</translation> 3736 4053 </message> 3737 4054 <message> 3738 <location filename="../VBoxManageDisk.cpp" line="142 2"/>4055 <location filename="../VBoxManageDisk.cpp" line="1420"/> 3739 4056 <source>deleting</source> 3740 4057 <translation>удаление</translation> 3741 4058 </message> 3742 4059 <message> 3743 <location filename="../VBoxManageDisk.cpp" line="142 8"/>4060 <location filename="../VBoxManageDisk.cpp" line="1426"/> 3744 4061 <source>State: %s 3745 4062 </source> … … 3748 4065 </message> 3749 4066 <message> 3750 <location filename="../VBoxManageDisk.cpp" line="143 4"/>4067 <location filename="../VBoxManageDisk.cpp" line="1432"/> 3751 4068 <source>Access Error: %ls 3752 4069 </source> … … 3755 4072 </message> 3756 4073 <message> 3757 <location filename="../VBoxManageDisk.cpp" line="144 2"/>4074 <location filename="../VBoxManageDisk.cpp" line="1440"/> 3758 4075 <source>Description: %ls 3759 4076 </source> … … 3762 4079 </message> 3763 4080 <message> 3764 <location filename="../VBoxManageDisk.cpp" line="145 2"/>4081 <location filename="../VBoxManageDisk.cpp" line="1450"/> 3765 4082 <source>normal (differencing)</source> 3766 4083 <translation>нормальный (разностный)</translation> 3767 4084 </message> 3768 4085 <message> 3769 <location filename="../VBoxManageDisk.cpp" line="145 4"/>4086 <location filename="../VBoxManageDisk.cpp" line="1452"/> 3770 4087 <source>normal (base)</source> 3771 4088 <translation>нормальный (базовый)</translation> 3772 4089 </message> 3773 4090 <message> 3774 <location filename="../VBoxManageDisk.cpp" line="145 7"/>4091 <location filename="../VBoxManageDisk.cpp" line="1455"/> 3775 4092 <source>immutable</source> 3776 4093 <translation>неизменяемый</translation> 3777 4094 </message> 3778 4095 <message> 3779 <location filename="../VBoxManageDisk.cpp" line="14 60"/>4096 <location filename="../VBoxManageDisk.cpp" line="1458"/> 3780 4097 <source>writethrough</source> 3781 4098 <translation>сквозная запись</translation> 3782 4099 </message> 3783 4100 <message> 3784 <location filename="../VBoxManageDisk.cpp" line="146 3"/>4101 <location filename="../VBoxManageDisk.cpp" line="1461"/> 3785 4102 <source>shareable</source> 3786 4103 <translation>разделяемый</translation> 3787 4104 </message> 3788 4105 <message> 3789 <location filename="../VBoxManageDisk.cpp" line="146 6"/>4106 <location filename="../VBoxManageDisk.cpp" line="1464"/> 3790 4107 <source>readonly</source> 3791 4108 <translation>только для чтения</translation> 3792 4109 </message> 3793 4110 <message> 3794 <location filename="../VBoxManageDisk.cpp" line="146 9"/>4111 <location filename="../VBoxManageDisk.cpp" line="1467"/> 3795 4112 <source>multiattach</source> 3796 4113 <translation>множественное подключение</translation> 3797 4114 </message> 3798 4115 <message> 3799 <location filename="../VBoxManageDisk.cpp" line="147 5"/>4116 <location filename="../VBoxManageDisk.cpp" line="1473"/> 3800 4117 <source>Type: %s 3801 4118 </source> … … 3804 4121 </message> 3805 4122 <message> 3806 <location filename="../VBoxManageDisk.cpp" line="148 2"/>4123 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3807 4124 <source>Auto-Reset: %s 3808 4125 </source> … … 3811 4128 </message> 3812 4129 <message> 3813 <location filename="../VBoxManageDisk.cpp" line="148 2"/>4130 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3814 4131 <source>on</source> 3815 4132 <translation>вкл</translation> 3816 4133 </message> 3817 4134 <message> 3818 <location filename="../VBoxManageDisk.cpp" line="148 2"/>4135 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3819 4136 <source>off</source> 3820 4137 <translation>выкл</translation> 3821 4138 </message> 3822 4139 <message> 3823 <location filename="../VBoxManageDisk.cpp" line="148 7"/>4140 <location filename="../VBoxManageDisk.cpp" line="1485"/> 3824 4141 <source>Location: %ls 3825 4142 </source> … … 3828 4145 </message> 3829 4146 <message> 3830 <location filename="../VBoxManageDisk.cpp" line="14 91"/>4147 <location filename="../VBoxManageDisk.cpp" line="1489"/> 3831 4148 <source>Storage format: %ls 3832 4149 </source> … … 3835 4152 </message> 3836 4153 <message> 3837 <location filename="../VBoxManageDisk.cpp" line="150 6"/>4154 <location filename="../VBoxManageDisk.cpp" line="1504"/> 3838 4155 <source>split2G</source> 3839 4156 <translation>Делить по 2G</translation> 3840 4157 </message> 3841 4158 <message> 3842 <location filename="../VBoxManageDisk.cpp" line="150 9"/>4159 <location filename="../VBoxManageDisk.cpp" line="1507"/> 3843 4160 <source>streamOptimized</source> 3844 4161 <translation>оптимизирован для потока</translation> 3845 4162 </message> 3846 4163 <message> 3847 <location filename="../VBoxManageDisk.cpp" line="151 2"/>4164 <location filename="../VBoxManageDisk.cpp" line="1510"/> 3848 4165 <source>ESX</source> 3849 4166 <translation>ESX</translation> 3850 4167 </message> 3851 4168 <message> 3852 <location filename="../VBoxManageDisk.cpp" line="151 5"/>4169 <location filename="../VBoxManageDisk.cpp" line="1513"/> 3853 4170 <source>default</source> 3854 4171 <translation>по умолчанию</translation> 3855 4172 </message> 3856 4173 <message> 3857 <location filename="../VBoxManageDisk.cpp" line="152 2"/>4174 <location filename="../VBoxManageDisk.cpp" line="1520"/> 3858 4175 <source>differencing</source> 3859 4176 <translation>разностный</translation> 3860 4177 </message> 3861 4178 <message> 3862 <location filename="../VBoxManageDisk.cpp" line="152 3"/>4179 <location filename="../VBoxManageDisk.cpp" line="1521"/> 3863 4180 <source>Format variant: %s %s 3864 4181 </source> … … 3867 4184 </message> 3868 4185 <message> 3869 <location filename="../VBoxManageDisk.cpp" line="152 8"/>4186 <location filename="../VBoxManageDisk.cpp" line="1526"/> 3870 4187 <source>Capacity: %lld MBytes 3871 4188 </source> … … 3874 4191 </message> 3875 4192 <message> 3876 <location filename="../VBoxManageDisk.cpp" line="153 3"/>4193 <location filename="../VBoxManageDisk.cpp" line="1531"/> 3877 4194 <source>Size on disk: %lld MBytes 3878 4195 </source> … … 3881 4198 </message> 3882 4199 <message> 3883 <location filename="../VBoxManageDisk.cpp" line="15 41"/>4200 <location filename="../VBoxManageDisk.cpp" line="1539"/> 3884 4201 <source>Encryption: enabled 3885 4202 </source> … … 3888 4205 </message> 3889 4206 <message> 3890 <location filename="../VBoxManageDisk.cpp" line="154 4"/>4207 <location filename="../VBoxManageDisk.cpp" line="1542"/> 3891 4208 <source>Cipher: %ls 3892 4209 </source> … … 3895 4212 </message> 3896 4213 <message> 3897 <location filename="../VBoxManageDisk.cpp" line="154 5"/>4214 <location filename="../VBoxManageDisk.cpp" line="1543"/> 3898 4215 <source>Password ID: %ls 3899 4216 </source> … … 3902 4219 </message> 3903 4220 <message> 3904 <location filename="../VBoxManageDisk.cpp" line="154 9"/>4221 <location filename="../VBoxManageDisk.cpp" line="1547"/> 3905 4222 <source>Encryption: disabled 3906 4223 </source> … … 3909 4226 </message> 3910 4227 <message> 3911 <location filename="../VBoxManageDisk.cpp" line="156 5"/>4228 <location filename="../VBoxManageDisk.cpp" line="1563"/> 3912 4229 <source>Property: </source> 3913 4230 <translation>Свойство: </translation> 3914 4231 </message> 3915 4232 <message> 3916 <location filename="../VBoxManageDisk.cpp" line="158 6"/>4233 <location filename="../VBoxManageDisk.cpp" line="1584"/> 3917 4234 <source>In use by VMs: </source> 3918 4235 <translation>Используется в ВМ: </translation> 3919 4236 </message> 3920 4237 <message> 3921 <location filename="../VBoxManageDisk.cpp" line="16 21"/>4238 <location filename="../VBoxManageDisk.cpp" line="1619"/> 3922 4239 <source>Child UUIDs: </source> 3923 4240 <translation>Дочерние UUID: </translation> 3924 4241 </message> 3925 4242 <message> 3926 <location filename="../VBoxManageDisk.cpp" line="172 7"/>4243 <location filename="../VBoxManageDisk.cpp" line="1725"/> 3927 4244 <source>base</source> 3928 4245 <translation>базовый</translation> 3929 4246 </message> 3930 4247 <message> 3931 <location filename="../VBoxManageDisk.cpp" line="184 7"/>4248 <location filename="../VBoxManageDisk.cpp" line="1845"/> 3932 4249 <source>Failed to delete medium</source> 3933 4250 <translation>Не удалось удалить носитель</translation> 3934 4251 </message> 3935 4252 <message> 3936 <location filename="../VBoxManageDisk.cpp" line="18 50"/>4253 <location filename="../VBoxManageDisk.cpp" line="1848"/> 3937 4254 <source>Failed to delete medium. Error code %Rrc</source> 3938 4255 <translation>Не удалось удалить носитель. Код ошибки %Rrc</translation> 3939 4256 </message> 3940 4257 <message> 3941 <location filename="../VBoxManageDisk.cpp" line="188 6"/>4258 <location filename="../VBoxManageDisk.cpp" line="1884"/> 3942 4259 <source>unexpected parameter %s 3943 4260 </source> … … 3946 4263 </message> 3947 4264 <message> 3948 <location filename="../VBoxManageDisk.cpp" line="189 9"/>4265 <location filename="../VBoxManageDisk.cpp" line="1897"/> 3949 4266 <source>Missing action</source> 3950 4267 <translation>Отсутствует действие</translation> 3951 4268 </message> 3952 4269 <message> 3953 <location filename="../VBoxManageDisk.cpp" line="190 5"/>4270 <location filename="../VBoxManageDisk.cpp" line="1903"/> 3954 4271 <source>Invalid action given: %s</source> 3955 4272 <translation>Указано недопустимое действие: %s</translation> 3956 4273 </message> 3957 4274 <message> 3958 <location filename="../VBoxManageDisk.cpp" line="19 11"/>4275 <location filename="../VBoxManageDisk.cpp" line="1909"/> 3959 4276 <source>Invalid number of arguments given for action: %s</source> 3960 4277 <translation>Недопустимое число аргументов, указанное для действия: %s</translation> 3961 4278 </message> 3962 4279 <message> 3963 <location filename="../VBoxManageDisk.cpp" line="20 31"/>4280 <location filename="../VBoxManageDisk.cpp" line="2029"/> 3964 4281 <source>Disk name or UUID required</source> 3965 4282 <translation>Требуется имя или UUID диска</translation> 3966 4283 </message> 3967 4284 <message> 3968 <location filename="../VBoxManageDisk.cpp" line="203 4"/>4285 <location filename="../VBoxManageDisk.cpp" line="2032"/> 3969 4286 <source>No password specified</source> 3970 4287 <translation>Не указан пароль</translation> 3971 4288 </message> 3972 4289 <message> 3973 <location filename="../VBoxManageDisk.cpp" line="203 9"/>4290 <location filename="../VBoxManageDisk.cpp" line="2036"/> 3974 4291 <source>A new password must always have a valid identifier set at the same time</source> 3975 4292 <translation>Новый пароль должен всегда иметь действительный идентификатор заданный в то же время</translation> 3976 4293 </message> 3977 4294 <message> 3978 <location filename="../VBoxManageDisk.cpp" line="204 6"/>4295 <location filename="../VBoxManageDisk.cpp" line="2043"/> 3979 4296 <source>Enter new password:</source> 3980 4297 <translation>Введите новый пароль:</translation> 3981 4298 </message> 3982 4299 <message> 3983 <location filename="../VBoxManageDisk.cpp" line="205 5"/>4300 <location filename="../VBoxManageDisk.cpp" line="2052"/> 3984 4301 <source>Failed to read new password from file</source> 3985 4302 <translation>Не удалось прочесть новый пароль из файла</translation> 3986 4303 </message> 3987 4304 <message> 3988 <location filename="../VBoxManageDisk.cpp" line="206 6"/>4305 <location filename="../VBoxManageDisk.cpp" line="2063"/> 3989 4306 <source>Enter old password:</source> 3990 4307 <translation>Введите старый пароль:</translation> 3991 4308 </message> 3992 4309 <message> 3993 <location filename="../VBoxManageDisk.cpp" line="207 5"/>4310 <location filename="../VBoxManageDisk.cpp" line="2072"/> 3994 4311 <source>Failed to read old password from file</source> 3995 4312 <translation>Не удалось прочесть старый пароль из файла</translation> 3996 4313 </message> 3997 4314 <message> 3998 <location filename="../VBoxManageDisk.cpp" line="208 8"/>3999 <location filename="../VBoxManageDisk.cpp" line="214 7"/>4315 <location filename="../VBoxManageDisk.cpp" line="2085"/> 4316 <location filename="../VBoxManageDisk.cpp" line="2144"/> 4000 4317 <source>Invalid hard disk reference, avoiding crash</source> 4001 4318 <translation>Недопустимая ссылка на жесткий диск, предотвращение краха</translation> 4002 4319 </message> 4003 4320 <message> 4004 <location filename="../VBoxManageDisk.cpp" line="209 9"/>4321 <location filename="../VBoxManageDisk.cpp" line="2096"/> 4005 4322 <source>Encrypt hard disk operation is not implemented!</source> 4006 4323 <translation>Операция шифрования жесткого диска не реализована!</translation> 4007 4324 </message> 4008 4325 <message> 4009 <location filename="../VBoxManageDisk.cpp" line="2 101"/>4326 <location filename="../VBoxManageDisk.cpp" line="2098"/> 4010 4327 <source>Encrypt hard disk operation for this cipher is not implemented yet!</source> 4011 4328 <translation>Операция шфирования жесткого диска для этого шифра еще не реализована!</translation> 4012 4329 </message> 4013 4330 <message> 4014 <location filename="../VBoxManageDisk.cpp" line="210 3"/>4331 <location filename="../VBoxManageDisk.cpp" line="2100"/> 4015 4332 <source>Failed to encrypt hard disk</source> 4016 4333 <translation>Не удалось зашифровать жесткий диск</translation> 4017 4334 </message> 4018 4335 <message> 4019 <location filename="../VBoxManageDisk.cpp" line="210 5"/>4336 <location filename="../VBoxManageDisk.cpp" line="2102"/> 4020 4337 <source>Failed to encrypt hard disk!</source> 4021 4338 <translation>Не удалось зашифровать жесткий диск!</translation> 4022 4339 </message> 4023 4340 <message> 4024 <location filename="../VBoxManageDisk.cpp" line="211 9"/>4341 <location filename="../VBoxManageDisk.cpp" line="2116"/> 4025 4342 <source>Invalid number of arguments: %d</source> 4026 4343 <translation>Неправильное количество аргументов: %d</translation> 4027 4344 </message> 4028 4345 <message> 4029 <location filename="../VBoxManageDisk.cpp" line="212 6"/>4346 <location filename="../VBoxManageDisk.cpp" line="2123"/> 4030 4347 <source>Enter password:</source> 4031 4348 <translation>Введите пароль:</translation> 4032 4349 </message> 4033 4350 <message> 4034 <location filename="../VBoxManageDisk.cpp" line="213 5"/>4351 <location filename="../VBoxManageDisk.cpp" line="2132"/> 4035 4352 <source>Failed to read password from file</source> 4036 4353 <translation>Не удалось прочесть пароль из файла</translation> 4037 4354 </message> 4038 4355 <message> 4039 <location filename="../VBoxManageDisk.cpp" line="21 51"/>4356 <location filename="../VBoxManageDisk.cpp" line="2148"/> 4040 4357 <source>The given password is correct 4041 4358 </source> … … 4044 4361 </message> 4045 4362 <message> 4046 <location filename="../VBoxManageDisk.cpp" line="222 9"/>4363 <location filename="../VBoxManageDisk.cpp" line="2226"/> 4047 4364 <source>No medium specified!</source> 4048 4365 <translation>Не указан носитель!</translation> 4049 4366 </message> 4050 4367 <message> 4051 <location filename="../VBoxManageDisk.cpp" line="22 40"/>4368 <location filename="../VBoxManageDisk.cpp" line="2237"/> 4052 4369 <source>Enter encryption password:</source> 4053 4370 <translation>Введите пароль для шифрования:</translation> 4054 4371 </message> 4055 4372 <message> 4056 <location filename="../VBoxManageDisk.cpp" line="23 92"/>4057 <location filename="../VBoxManageDisk.cpp" line="261 3"/>4373 <location filename="../VBoxManageDisk.cpp" line="2389"/> 4374 <location filename="../VBoxManageDisk.cpp" line="2610"/> 4058 4375 <source>Error opening '%s' for writing: %Rrc</source> 4059 4376 <translation>Не удалось открыть '%s' для записи: %Rrc</translation> 4060 4377 </message> 4061 4378 <message> 4062 <location filename="../VBoxManageDisk.cpp" line="240 8"/>4379 <location filename="../VBoxManageDisk.cpp" line="2405"/> 4063 4380 <source>Specified offset (%#RX64) is beyond the end of the medium (%#RX64)</source> 4064 4381 <translation>Указанная позиция (%#RX64) выходит за границу носителя (%#RX64)</translation> 4065 4382 </message> 4066 4383 <message numerus="yes"> 4067 <location filename="../VBoxManageDisk.cpp" line="243 8"/>4384 <location filename="../VBoxManageDisk.cpp" line="2435"/> 4068 4385 <source>Read(%zu bytes at %#RX64)</source> 4069 4386 <translation> … … 4074 4391 </message> 4075 4392 <message> 4076 <location filename="../VBoxManageDisk.cpp" line="246 7"/>4393 <location filename="../VBoxManageDisk.cpp" line="2464"/> 4077 4394 <source>********** <ditto x %RU64> 4078 4395 </source> … … 4081 4398 </message> 4082 4399 <message> 4083 <location filename="../VBoxManageDisk.cpp" line="251 6"/>4084 <location filename="../VBoxManageDisk.cpp" line="265 7"/>4400 <location filename="../VBoxManageDisk.cpp" line="2513"/> 4401 <location filename="../VBoxManageDisk.cpp" line="2654"/> 4085 4402 <source>Error writing to '%s': %Rrc</source> 4086 4403 <translation>Ошибка при записи в '%s': %Rrc</translation> 4087 4404 </message> 4088 4405 <message numerus="yes"> 4089 <location filename="../VBoxManageDisk.cpp" line="252 4"/>4406 <location filename="../VBoxManageDisk.cpp" line="2521"/> 4090 4407 <source>Expected read() at offset %RU64 (%#RX64) to return %#zx bytes, only got %#zx! 4091 4408 </source> … … 4100 4417 </message> 4101 4418 <message> 4102 <location filename="../VBoxManageDisk.cpp" line="25 40"/>4103 <location filename="../VBoxManageDisk.cpp" line="267 8"/>4419 <location filename="../VBoxManageDisk.cpp" line="2537"/> 4420 <location filename="../VBoxManageDisk.cpp" line="2675"/> 4104 4421 <source>Error closing '%s': %Rrc</source> 4105 4422 <translation>Ошибка при закрытии '%s': %Rrc</translation> … … 4109 4426 <name>GuestCtrl</name> 4110 4427 <message> 4111 <location filename="../VBoxManageGuestCtrl.cpp" line=" 419"/>4428 <location filename="../VBoxManageGuestCtrl.cpp" line="276"/> 4112 4429 <source>Unable to install console control handler, rc=%Rrc 4113 4430 </source> … … 4116 4433 </message> 4117 4434 <message> 4118 <location filename="../VBoxManageGuestCtrl.cpp" line=" 446"/>4435 <location filename="../VBoxManageGuestCtrl.cpp" line="303"/> 4119 4436 <source>Unable to uninstall console control handler, rc=%Rrc 4120 4437 </source> … … 4123 4440 </message> 4124 4441 <message> 4125 <location filename="../VBoxManageGuestCtrl.cpp" line=" 473"/>4126 <location filename="../VBoxManageGuestCtrl.cpp" line=" 539"/>4442 <location filename="../VBoxManageGuestCtrl.cpp" line="332"/> 4443 <location filename="../VBoxManageGuestCtrl.cpp" line="398"/> 4127 4444 <source>starting</source> 4128 4445 <translation>запуск</translation> 4129 4446 </message> 4130 4447 <message> 4131 <location filename="../VBoxManageGuestCtrl.cpp" line=" 475"/>4132 <location filename="../VBoxManageGuestCtrl.cpp" line=" 508"/>4133 <location filename="../VBoxManageGuestCtrl.cpp" line=" 541"/>4448 <location filename="../VBoxManageGuestCtrl.cpp" line="334"/> 4449 <location filename="../VBoxManageGuestCtrl.cpp" line="367"/> 4450 <location filename="../VBoxManageGuestCtrl.cpp" line="400"/> 4134 4451 <source>started</source> 4135 4452 <translation>запущен</translation> 4136 4453 </message> 4137 4454 <message> 4138 <location filename="../VBoxManageGuestCtrl.cpp" line=" 477"/>4455 <location filename="../VBoxManageGuestCtrl.cpp" line="336"/> 4139 4456 <source>paused</source> 4140 4457 <translation>приостановлен</translation> 4141 4458 </message> 4142 4459 <message> 4143 <location filename="../VBoxManageGuestCtrl.cpp" line=" 479"/>4144 <location filename="../VBoxManageGuestCtrl.cpp" line=" 543"/>4460 <location filename="../VBoxManageGuestCtrl.cpp" line="338"/> 4461 <location filename="../VBoxManageGuestCtrl.cpp" line="402"/> 4145 4462 <source>terminating</source> 4146 4463 <translation>завершение</translation> 4147 4464 </message> 4148 4465 <message> 4149 <location filename="../VBoxManageGuestCtrl.cpp" line=" 481"/>4466 <location filename="../VBoxManageGuestCtrl.cpp" line="340"/> 4150 4467 <source>successfully terminated</source> 4151 4468 <translation>успешно завершен</translation> 4152 4469 </message> 4153 4470 <message> 4154 <location filename="../VBoxManageGuestCtrl.cpp" line=" 483"/>4471 <location filename="../VBoxManageGuestCtrl.cpp" line="342"/> 4155 4472 <source>terminated by signal</source> 4156 4473 <translation>завершен по сигналу</translation> 4157 4474 </message> 4158 4475 <message> 4159 <location filename="../VBoxManageGuestCtrl.cpp" line=" 485"/>4476 <location filename="../VBoxManageGuestCtrl.cpp" line="344"/> 4160 4477 <source>abnormally aborted</source> 4161 4478 <translation>ненормально прерван</translation> 4162 4479 </message> 4163 4480 <message> 4164 <location filename="../VBoxManageGuestCtrl.cpp" line=" 487"/>4165 <location filename="../VBoxManageGuestCtrl.cpp" line=" 516"/>4166 <location filename="../VBoxManageGuestCtrl.cpp" line=" 547"/>4481 <location filename="../VBoxManageGuestCtrl.cpp" line="346"/> 4482 <location filename="../VBoxManageGuestCtrl.cpp" line="375"/> 4483 <location filename="../VBoxManageGuestCtrl.cpp" line="406"/> 4167 4484 <source>timed out</source> 4168 4485 <translation>превышено время ожидания</translation> 4169 4486 </message> 4170 4487 <message> 4171 <location filename="../VBoxManageGuestCtrl.cpp" line=" 489"/>4172 <location filename="../VBoxManageGuestCtrl.cpp" line=" 549"/>4488 <location filename="../VBoxManageGuestCtrl.cpp" line="348"/> 4489 <location filename="../VBoxManageGuestCtrl.cpp" line="408"/> 4173 4490 <source>timed out, hanging</source> 4174 4491 <translation>превышено время ожидания, завис</translation> 4175 4492 </message> 4176 4493 <message> 4177 <location filename="../VBoxManageGuestCtrl.cpp" line=" 491"/>4178 <location filename="../VBoxManageGuestCtrl.cpp" line=" 551"/>4179 <location filename="../VBoxManageGuestCtrl.cpp" line=" 576"/>4494 <location filename="../VBoxManageGuestCtrl.cpp" line="350"/> 4495 <location filename="../VBoxManageGuestCtrl.cpp" line="410"/> 4496 <location filename="../VBoxManageGuestCtrl.cpp" line="435"/> 4180 4497 <source>killed</source> 4181 4498 <translation>убит</translation> 4182 4499 </message> 4183 4500 <message> 4184 <location filename="../VBoxManageGuestCtrl.cpp" line=" 493"/>4185 <location filename="../VBoxManageGuestCtrl.cpp" line=" 514"/>4186 <location filename="../VBoxManageGuestCtrl.cpp" line=" 553"/>4187 <location filename="../VBoxManageGuestCtrl.cpp" line=" 578"/>4501 <location filename="../VBoxManageGuestCtrl.cpp" line="352"/> 4502 <location filename="../VBoxManageGuestCtrl.cpp" line="373"/> 4503 <location filename="../VBoxManageGuestCtrl.cpp" line="412"/> 4504 <location filename="../VBoxManageGuestCtrl.cpp" line="437"/> 4188 4505 <source>error</source> 4189 4506 <translation>ошибка</translation> 4190 4507 </message> 4191 4508 <message> 4192 <location filename="../VBoxManageGuestCtrl.cpp" line=" 497"/>4193 <location filename="../VBoxManageGuestCtrl.cpp" line=" 528"/>4194 <location filename="../VBoxManageGuestCtrl.cpp" line=" 557"/>4195 <location filename="../VBoxManageGuestCtrl.cpp" line=" 582"/>4196 <location filename="../VBoxManageGuestCtrl.cpp" line=" 592"/>4197 <location filename="../VBoxManageGuestCtrl.cpp" line=" 605"/>4509 <location filename="../VBoxManageGuestCtrl.cpp" line="356"/> 4510 <location filename="../VBoxManageGuestCtrl.cpp" line="387"/> 4511 <location filename="../VBoxManageGuestCtrl.cpp" line="416"/> 4512 <location filename="../VBoxManageGuestCtrl.cpp" line="441"/> 4513 <location filename="../VBoxManageGuestCtrl.cpp" line="451"/> 4514 <location filename="../VBoxManageGuestCtrl.cpp" line="464"/> 4198 4515 <source>unknown</source> 4199 4516 <translation>неизвестно</translation> 4200 4517 </message> 4201 4518 <message> 4202 <location filename="../VBoxManageGuestCtrl.cpp" line=" 510"/>4203 <location filename="../VBoxManageGuestCtrl.cpp" line=" 545"/>4519 <location filename="../VBoxManageGuestCtrl.cpp" line="369"/> 4520 <location filename="../VBoxManageGuestCtrl.cpp" line="404"/> 4204 4521 <source>terminated</source> 4205 4522 <translation>завершен</translation> 4206 4523 </message> 4207 4524 <message> 4208 <location filename="../VBoxManageGuestCtrl.cpp" line=" 512"/>4525 <location filename="../VBoxManageGuestCtrl.cpp" line="371"/> 4209 4526 <source>status changed</source> 4210 4527 <translation>статус изменен</translation> 4211 4528 </message> 4212 4529 <message> 4213 <location filename="../VBoxManageGuestCtrl.cpp" line=" 518"/>4530 <location filename="../VBoxManageGuestCtrl.cpp" line="377"/> 4214 4531 <source>stdin ready</source> 4215 4532 <translation>stdin готов</translation> 4216 4533 </message> 4217 4534 <message> 4218 <location filename="../VBoxManageGuestCtrl.cpp" line=" 520"/>4535 <location filename="../VBoxManageGuestCtrl.cpp" line="379"/> 4219 4536 <source>data on stdout</source> 4220 4537 <translation>данные в stdout</translation> 4221 4538 </message> 4222 4539 <message> 4223 <location filename="../VBoxManageGuestCtrl.cpp" line=" 522"/>4540 <location filename="../VBoxManageGuestCtrl.cpp" line="381"/> 4224 4541 <source>data on stderr</source> 4225 4542 <translation>данные в stderr</translation> 4226 4543 </message> 4227 4544 <message> 4228 <location filename="../VBoxManageGuestCtrl.cpp" line=" 524"/>4545 <location filename="../VBoxManageGuestCtrl.cpp" line="383"/> 4229 4546 <source>waiting flag not supported</source> 4230 4547 <translation>флаг ожидания не поддерживается</translation> 4231 4548 </message> 4232 4549 <message> 4233 <location filename="../VBoxManageGuestCtrl.cpp" line=" 568"/>4550 <location filename="../VBoxManageGuestCtrl.cpp" line="427"/> 4234 4551 <source>opening</source> 4235 4552 <translation>открывается</translation> 4236 4553 </message> 4237 4554 <message> 4238 <location filename="../VBoxManageGuestCtrl.cpp" line=" 570"/>4555 <location filename="../VBoxManageGuestCtrl.cpp" line="429"/> 4239 4556 <source>open</source> 4240 4557 <translation>открыт</translation> 4241 4558 </message> 4242 4559 <message> 4243 <location filename="../VBoxManageGuestCtrl.cpp" line=" 572"/>4560 <location filename="../VBoxManageGuestCtrl.cpp" line="431"/> 4244 4561 <source>closing</source> 4245 4562 <translation>закрывается</translation> 4246 4563 </message> 4247 4564 <message> 4248 <location filename="../VBoxManageGuestCtrl.cpp" line=" 574"/>4565 <location filename="../VBoxManageGuestCtrl.cpp" line="433"/> 4249 4566 <source>closed</source> 4250 4567 <translation>закрыт</translation> 4251 4568 </message> 4252 4569 <message> 4253 <location filename="../VBoxManageGuestCtrl.cpp" line=" 593"/>4570 <location filename="../VBoxManageGuestCtrl.cpp" line="452"/> 4254 4571 <source>fifo</source> 4255 4572 <translation>fifo</translation> 4256 4573 </message> 4257 4574 <message> 4258 <location filename="../VBoxManageGuestCtrl.cpp" line=" 594"/>4575 <location filename="../VBoxManageGuestCtrl.cpp" line="453"/> 4259 4576 <source>char-device</source> 4260 4577 <translation>символьное устройство</translation> 4261 4578 </message> 4262 4579 <message> 4263 <location filename="../VBoxManageGuestCtrl.cpp" line=" 595"/>4580 <location filename="../VBoxManageGuestCtrl.cpp" line="454"/> 4264 4581 <source>directory</source> 4265 4582 <translation>директория</translation> 4266 4583 </message> 4267 4584 <message> 4268 <location filename="../VBoxManageGuestCtrl.cpp" line=" 596"/>4585 <location filename="../VBoxManageGuestCtrl.cpp" line="455"/> 4269 4586 <source>block-device</source> 4270 4587 <translation>блочное устройство</translation> 4271 4588 </message> 4272 4589 <message> 4273 <location filename="../VBoxManageGuestCtrl.cpp" line=" 597"/>4590 <location filename="../VBoxManageGuestCtrl.cpp" line="456"/> 4274 4591 <source>file</source> 4275 4592 <translation>файл</translation> 4276 4593 </message> 4277 4594 <message> 4278 <location filename="../VBoxManageGuestCtrl.cpp" line=" 598"/>4595 <location filename="../VBoxManageGuestCtrl.cpp" line="457"/> 4279 4596 <source>symlink</source> 4280 4597 <translation>сиволическая ссылка</translation> 4281 4598 </message> 4282 4599 <message> 4283 <location filename="../VBoxManageGuestCtrl.cpp" line=" 599"/>4600 <location filename="../VBoxManageGuestCtrl.cpp" line="458"/> 4284 4601 <source>socket</source> 4285 4602 <translation>сокет</translation> 4286 4603 </message> 4287 4604 <message> 4288 <location filename="../VBoxManageGuestCtrl.cpp" line=" 600"/>4605 <location filename="../VBoxManageGuestCtrl.cpp" line="459"/> 4289 4606 <source>white-out</source> 4290 4607 <translation>white-out</translation> 4291 4608 </message> 4292 4609 <message> 4293 <location filename="../VBoxManageGuestCtrl.cpp" line=" 619"/>4610 <location filename="../VBoxManageGuestCtrl.cpp" line="478"/> 4294 4611 <source>Error details:</source> 4295 4612 <translation>Подробности ошибки:</translation> 4296 4613 </message> 4297 4614 <message> 4298 <location filename="../VBoxManageGuestCtrl.cpp" line=" 624"/>4615 <location filename="../VBoxManageGuestCtrl.cpp" line="483"/> 4299 4616 <source>Object has indicated no error (%Rhrc)!? 4300 4617 </source> … … 4303 4620 </message> 4304 4621 <message> 4305 <location filename="../VBoxManageGuestCtrl.cpp" line=" 656"/>4622 <location filename="../VBoxManageGuestCtrl.cpp" line="515"/> 4306 4623 <source>Could not lookup progress information 4307 4624 </source> … … 4310 4627 </message> 4311 4628 <message> 4312 <location filename="../VBoxManageGuestCtrl.cpp" line=" 715"/>4313 <location filename="../VBoxManageGuestCtrl.cpp" line="3 400"/>4629 <location filename="../VBoxManageGuestCtrl.cpp" line="574"/> 4630 <location filename="../VBoxManageGuestCtrl.cpp" line="3247"/> 4314 4631 <source>Out of memory</source> 4315 4632 <translation>Не хватает памяти</translation> 4316 4633 </message> 4317 4634 <message> 4318 <location filename="../VBoxManageGuestCtrl.cpp" line=" 743"/>4635 <location filename="../VBoxManageGuestCtrl.cpp" line="602"/> 4319 4636 <source>The --username|-u option is ignored by '%s'</source> 4320 4637 <translation>Опция --username|-u проигнорирована '%s'</translation> 4321 4638 </message> 4322 4639 <message> 4323 <location filename="../VBoxManageGuestCtrl.cpp" line=" 750"/>4640 <location filename="../VBoxManageGuestCtrl.cpp" line="609"/> 4324 4641 <source>Password is given more than once.</source> 4325 4642 <translation>Пароль указан несколько раз.</translation> 4326 4643 </message> 4327 4644 <message> 4328 <location filename="../VBoxManageGuestCtrl.cpp" line=" 754"/>4645 <location filename="../VBoxManageGuestCtrl.cpp" line="613"/> 4329 4646 <source>The --password option is ignored by '%s'</source> 4330 4647 <translation>Опция --password проигнорирована '%s'</translation> 4331 4648 </message> 4332 4649 <message> 4333 <location filename="../VBoxManageGuestCtrl.cpp" line=" 761"/>4650 <location filename="../VBoxManageGuestCtrl.cpp" line="620"/> 4334 4651 <source>The --password-file|-p option is ignored by '%s'</source> 4335 4652 <translation>Опция --password-file|-p проигнорирована '%s'</translation> 4336 4653 </message> 4337 4654 <message> 4338 <location filename="../VBoxManageGuestCtrl.cpp" line=" 768"/>4655 <location filename="../VBoxManageGuestCtrl.cpp" line="627"/> 4339 4656 <source>The --domain option is ignored by '%s'</source> 4340 4657 <translation>Опци --domain проигнорирована '%s'</translation> 4341 4658 </message> 4342 4659 <message> 4343 <location filename="../VBoxManageGuestCtrl.cpp" line=" 833"/>4660 <location filename="../VBoxManageGuestCtrl.cpp" line="692"/> 4344 4661 <source>Failed to get a IConsole pointer for the machine. Is it still running? 4345 4662 </source> … … 4348 4665 </message> 4349 4666 <message> 4350 <location filename="../VBoxManageGuestCtrl.cpp" line=" 838"/>4667 <location filename="../VBoxManageGuestCtrl.cpp" line="697"/> 4351 4668 <source>Machine "%s" is not running (currently %s)! 4352 4669 </source> … … 4355 4672 </message> 4356 4673 <message> 4357 <location filename="../VBoxManageGuestCtrl.cpp" line=" 867"/>4674 <location filename="../VBoxManageGuestCtrl.cpp" line="726"/> 4358 4675 <source>[%RU32] VBoxManage Guest Control [%s] - %s</source> 4359 4676 <translation>[%RU32] VBoxManage Гостевое Управление [%s] - %s</translation> 4360 4677 </message> 4361 4678 <message> 4362 <location filename="../VBoxManageGuestCtrl.cpp" line=" 869"/>4679 <location filename="../VBoxManageGuestCtrl.cpp" line="728"/> 4363 4680 <source>No enough memory for session name</source> 4364 4681 <translation>Недостаточно памяти для имени сессии</translation> 4365 4682 </message> 4366 4683 <message> 4367 <location filename="../VBoxManageGuestCtrl.cpp" line=" 875"/>4684 <location filename="../VBoxManageGuestCtrl.cpp" line="734"/> 4368 4685 <source>Creating guest session as user '%s'... 4369 4686 </source> … … 4372 4689 </message> 4373 4690 <message> 4374 <location filename="../VBoxManageGuestCtrl.cpp" line=" 886"/>4691 <location filename="../VBoxManageGuestCtrl.cpp" line="745"/> 4375 4692 <source>Out of memory setting up IGuest::CreateSession call</source> 4376 4693 <translation>Не хватает памяти для настройки вызова IGuest::CreateSession</translation> 4377 4694 </message> 4378 4695 <message> 4379 <location filename="../VBoxManageGuestCtrl.cpp" line=" 895"/>4696 <location filename="../VBoxManageGuestCtrl.cpp" line="754"/> 4380 4697 <source>Waiting for guest session to start... 4381 4698 </source> … … 4384 4701 </message> 4385 4702 <message> 4386 <location filename="../VBoxManageGuestCtrl.cpp" line=" 907"/>4703 <location filename="../VBoxManageGuestCtrl.cpp" line="766"/> 4387 4704 <source>Out of memory setting up IGuestSession::WaitForArray call</source> 4388 4705 <translation>Не хватает памяти для настройки вызова IGuestSession::WaitForArray</translation> 4389 4706 </message> 4390 4707 <message> 4391 <location filename="../VBoxManageGuestCtrl.cpp" line=" 923"/>4708 <location filename="../VBoxManageGuestCtrl.cpp" line="782"/> 4392 4709 <source>Successfully started guest session (ID %RU32) 4393 4710 </source> … … 4396 4713 </message> 4397 4714 <message> 4398 <location filename="../VBoxManageGuestCtrl.cpp" line=" 932"/>4715 <location filename="../VBoxManageGuestCtrl.cpp" line="791"/> 4399 4716 <source>Error starting guest session (current status is: %s) 4400 4717 </source> … … 4403 4720 </message> 4404 4721 <message> 4405 <location filename="../VBoxManageGuestCtrl.cpp" line=" 933"/>4722 <location filename="../VBoxManageGuestCtrl.cpp" line="792"/> 4406 4723 <source><unknown></source> 4407 4724 <translation><неизвестно></translation> 4408 4725 </message> 4409 4726 <message> 4410 <location filename="../VBoxManageGuestCtrl.cpp" line=" 992"/>4727 <location filename="../VBoxManageGuestCtrl.cpp" line="851"/> 4411 4728 <source>No user name specified!</source> 4412 4729 <translation>Не указано имя пользователя!</translation> 4413 4730 </message> 4414 4731 <message> 4415 <location filename="../VBoxManageGuestCtrl.cpp" line=" 1032"/>4732 <location filename="../VBoxManageGuestCtrl.cpp" line="891"/> 4416 4733 <source>Closing guest session ... 4417 4734 </source> … … 4420 4737 </message> 4421 4738 <message> 4422 <location filename="../VBoxManageGuestCtrl.cpp" line=" 1038"/>4739 <location filename="../VBoxManageGuestCtrl.cpp" line="897"/> 4423 4740 <source>Guest session detached 4424 4741 </source> … … 4427 4744 </message> 4428 4745 <message> 4429 <location filename="../VBoxManageGuestCtrl.cpp" line="1 199"/>4746 <location filename="../VBoxManageGuestCtrl.cpp" line="1058"/> 4430 4747 <source>Unable to write output, rc=%Rrc 4431 4748 </source> … … 4434 4751 </message> 4435 4752 <message> 4436 <location filename="../VBoxManageGuestCtrl.cpp" line="1 229"/>4753 <location filename="../VBoxManageGuestCtrl.cpp" line="1088"/> 4437 4754 <source>Unsupported %s line ending conversion</source> 4438 4755 <translation>Неподдерживаемое преобразование %s завершения строки</translation> 4439 4756 </message> 4440 4757 <message> 4441 <location filename="../VBoxManageGuestCtrl.cpp" line="1 234"/>4758 <location filename="../VBoxManageGuestCtrl.cpp" line="1093"/> 4442 4759 <source>Error getting %s handle: %Rrc</source> 4443 4760 <translation>Ошибка при получении %s обработчика: %Rrc</translation> 4444 4761 </message> 4445 4762 <message> 4446 <location filename="../VBoxManageGuestCtrl.cpp" line="1 360"/>4763 <location filename="../VBoxManageGuestCtrl.cpp" line="1216"/> 4447 4764 <source>Invalid argument variable[=value]: '%s'</source> 4448 4765 <translation>Недопустимая переменная аргумента[=значение]: '%s'</translation> 4449 4766 </message> 4450 4767 <message> 4451 <location filename="../VBoxManageGuestCtrl.cpp" line="1 370"/>4768 <location filename="../VBoxManageGuestCtrl.cpp" line="1226"/> 4452 4769 <source>Warning: Deprecated option "--no-profile" specified 4453 4770 </source> … … 4456 4773 </message> 4457 4774 <message> 4458 <location filename="../VBoxManageGuestCtrl.cpp" line="1 436"/>4775 <location filename="../VBoxManageGuestCtrl.cpp" line="1292"/> 4459 4776 <source>No executable specified!</source> 4460 4777 <translation>Не указан выполняемый файл!</translation> 4461 4778 </message> 4462 4779 <message> 4463 <location filename="../VBoxManageGuestCtrl.cpp" line="1 488"/>4780 <location filename="../VBoxManageGuestCtrl.cpp" line="1344"/> 4464 4781 <source>Starting guest process ... 4465 4782 </source> … … 4468 4785 </message> 4469 4786 <message> 4470 <location filename="../VBoxManageGuestCtrl.cpp" line="1 490"/>4787 <location filename="../VBoxManageGuestCtrl.cpp" line="1346"/> 4471 4788 <source>Starting guest process (within %ums) 4472 4789 </source> … … 4475 4792 </message> 4476 4793 <message> 4477 <location filename="../VBoxManageGuestCtrl.cpp" line="1 512"/>4794 <location filename="../VBoxManageGuestCtrl.cpp" line="1368"/> 4478 4795 <source>Process '%s' (PID %RU32) started 4479 4796 </source> … … 4482 4799 </message> 4483 4800 <message> 4484 <location filename="../VBoxManageGuestCtrl.cpp" line="1 517"/>4801 <location filename="../VBoxManageGuestCtrl.cpp" line="1373"/> 4485 4802 <source>[%RU32 - Session %RU32] 4486 4803 </source> … … 4489 4806 </message> 4490 4807 <message> 4491 <location filename="../VBoxManageGuestCtrl.cpp" line="1 538"/>4808 <location filename="../VBoxManageGuestCtrl.cpp" line="1394"/> 4492 4809 <source>waitResult: %d 4493 4810 </source> … … 4496 4813 </message> 4497 4814 <message> 4498 <location filename="../VBoxManageGuestCtrl.cpp" line="1 554"/>4815 <location filename="../VBoxManageGuestCtrl.cpp" line="1410"/> 4499 4816 <source>Process terminated 4500 4817 </source> … … 4503 4820 </message> 4504 4821 <message> 4505 <location filename="../VBoxManageGuestCtrl.cpp" line="1 631"/>4822 <location filename="../VBoxManageGuestCtrl.cpp" line="1487"/> 4506 4823 <source>Process execution aborted! 4507 4824 </source> … … 4510 4827 </message> 4511 4828 <message> 4512 <location filename="../VBoxManageGuestCtrl.cpp" line="1 637"/>4829 <location filename="../VBoxManageGuestCtrl.cpp" line="1493"/> 4513 4830 <source>Process successfully started! 4514 4831 </source> … … 4517 4834 </message> 4518 4835 <message> 4519 <location filename="../VBoxManageGuestCtrl.cpp" line="1 651"/>4836 <location filename="../VBoxManageGuestCtrl.cpp" line="1507"/> 4520 4837 <source>Exit code=%u (Status=%u [%s]) 4521 4838 </source> … … 4524 4841 </message> 4525 4842 <message> 4526 <location filename="../VBoxManageGuestCtrl.cpp" line="1 660"/>4843 <location filename="../VBoxManageGuestCtrl.cpp" line="1516"/> 4527 4844 <source>Process timed out (guest side) and %s 4528 4845 </source> … … 4531 4848 </message> 4532 4849 <message> 4533 <location filename="../VBoxManageGuestCtrl.cpp" line="1 662"/>4850 <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/> 4534 4851 <source>failed to terminate so far</source> 4535 4852 <translation>не удалось до сих пор завершить</translation> 4536 4853 </message> 4537 4854 <message> 4538 <location filename="../VBoxManageGuestCtrl.cpp" line="1 662"/>4855 <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/> 4539 4856 <source>was terminated</source> 4540 4857 <translation>завершен</translation> 4541 4858 </message> 4542 4859 <message> 4543 <location filename="../VBoxManageGuestCtrl.cpp" line="1 668"/>4860 <location filename="../VBoxManageGuestCtrl.cpp" line="1524"/> 4544 4861 <source>Process now is in status [%s] (unexpected) 4545 4862 </source> … … 4548 4865 </message> 4549 4866 <message> 4550 <location filename="../VBoxManageGuestCtrl.cpp" line="1 676"/>4867 <location filename="../VBoxManageGuestCtrl.cpp" line="1532"/> 4551 4868 <source>Process monitor loop quit with vrc=%Rrc 4552 4869 </source> … … 4555 4872 </message> 4556 4873 <message> 4557 <location filename="../VBoxManageGuestCtrl.cpp" line="1 682"/>4874 <location filename="../VBoxManageGuestCtrl.cpp" line="1538"/> 4558 4875 <source>Process monitor loop timed out 4559 4876 </source> … … 4562 4879 </message> 4563 4880 <message> 4564 <location filename="../VBoxManageGuestCtrl.cpp" line="1 786"/>4881 <location filename="../VBoxManageGuestCtrl.cpp" line="1641"/> 4565 4882 <source>No sources specified!</source> 4566 4883 <translation>Не указан источник!</translation> 4567 4884 </message> 4568 4885 <message> 4569 <location filename="../VBoxManageGuestCtrl.cpp" line="1 794"/>4570 <location filename="../VBoxManageGuestCtrl.cpp" line="2 348"/>4886 <location filename="../VBoxManageGuestCtrl.cpp" line="1649"/> 4887 <location filename="../VBoxManageGuestCtrl.cpp" line="2201"/> 4571 4888 <source>No destination specified!</source> 4572 4889 <translation>Не указано назначение!</translation> 4573 4890 </message> 4574 4891 <message> 4575 <location filename="../VBoxManageGuestCtrl.cpp" line="1 803"/>4576 <location filename="../VBoxManageGuestCtrl.cpp" line="1 907"/>4892 <location filename="../VBoxManageGuestCtrl.cpp" line="1658"/> 4893 <location filename="../VBoxManageGuestCtrl.cpp" line="1762"/> 4577 4894 <source>RTPathAbs failed on '%s': %Rrc</source> 4578 4895 <translation>RTPathAbs завершился с ошибкой на '%s': %Rrc</translation> 4579 4896 </message> 4580 4897 <message> 4581 <location filename="../VBoxManageGuestCtrl.cpp" line="1 816"/>4898 <location filename="../VBoxManageGuestCtrl.cpp" line="1671"/> 4582 4899 <source>Copying from host to guest ... 4583 4900 </source> … … 4586 4903 </message> 4587 4904 <message> 4588 <location filename="../VBoxManageGuestCtrl.cpp" line="1 818"/>4905 <location filename="../VBoxManageGuestCtrl.cpp" line="1673"/> 4589 4906 <source>Copying from guest to host ... 4590 4907 </source> … … 4593 4910 </message> 4594 4911 <message> 4595 <location filename="../VBoxManageGuestCtrl.cpp" line="1 880"/>4596 <location filename="../VBoxManageGuestCtrl.cpp" line="1 941"/>4912 <location filename="../VBoxManageGuestCtrl.cpp" line="1735"/> 4913 <location filename="../VBoxManageGuestCtrl.cpp" line="1796"/> 4597 4914 <source>File '%s' -> '%s' 4598 4915 </source> … … 4601 4918 </message> 4602 4919 <message> 4603 <location filename="../VBoxManageGuestCtrl.cpp" line="1 889"/>4604 <location filename="../VBoxManageGuestCtrl.cpp" line="1 927"/>4920 <location filename="../VBoxManageGuestCtrl.cpp" line="1744"/> 4921 <location filename="../VBoxManageGuestCtrl.cpp" line="1782"/> 4605 4922 <source>Directory '%s' -> '%s' 4606 4923 </source> … … 4609 4926 </message> 4610 4927 <message> 4611 <location filename="../VBoxManageGuestCtrl.cpp" line="1 901"/>4612 <location filename="../VBoxManageGuestCtrl.cpp" line="1 950"/>4928 <location filename="../VBoxManageGuestCtrl.cpp" line="1756"/> 4929 <location filename="../VBoxManageGuestCtrl.cpp" line="1805"/> 4613 4930 <source>Not a file or directory: %s 4614 4931 </source> … … 4617 4934 </message> 4618 4935 <message> 4619 <location filename="../VBoxManageGuestCtrl.cpp" line="1 830"/>4620 <location filename="../VBoxManageGuestCtrl.cpp" line="1 904"/>4936 <location filename="../VBoxManageGuestCtrl.cpp" line="1685"/> 4937 <location filename="../VBoxManageGuestCtrl.cpp" line="1759"/> 4621 4938 <source>RTPathQueryInfo failed on '%s': %Rrc</source> 4622 4939 <translation>RTPathQueryInfo завершен с ошибкой на '%s': %Rrc</translation> 4623 4940 </message> 4624 4941 <message> 4625 <location filename="../VBoxManageGuestCtrl.cpp" line="1 848"/>4942 <location filename="../VBoxManageGuestCtrl.cpp" line="1703"/> 4626 4943 <source>Destination must be a directory!</source> 4627 4944 <translation>Назначение должно быть директорией!</translation> 4628 4945 </message> 4629 4946 <message> 4630 <location filename="../VBoxManageGuestCtrl.cpp" line="1 956"/>4947 <location filename="../VBoxManageGuestCtrl.cpp" line="1811"/> 4631 4948 <source>FsObjQueryInfo failed on '%s': %Rhrc</source> 4632 4949 <translation>FsObjQueryInfo завершен с ошибкой на '%s': %Rhrc</translation> 4633 4950 </message> 4634 4951 <message> 4635 <location filename="../VBoxManageGuestCtrl.cpp" line="1 970"/>4952 <location filename="../VBoxManageGuestCtrl.cpp" line="1825"/> 4636 4953 <source>File copy failed</source> 4637 4954 <translation>Не удалось скопировать файл</translation> 4638 4955 </message> 4639 4956 <message numerus="yes"> 4640 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2039"/>4957 <location filename="../VBoxManageGuestCtrl.cpp" line="1894"/> 4641 4958 <source>Creating %RU32 directories... 4642 4959 </source> … … 4651 4968 </message> 4652 4969 <message> 4653 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2043"/>4970 <location filename="../VBoxManageGuestCtrl.cpp" line="1898"/> 4654 4971 <source>mkdir was interrupted by Ctrl-C (%u left) 4655 4972 </source> … … 4658 4975 </message> 4659 4976 <message> 4660 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2056"/>4977 <location filename="../VBoxManageGuestCtrl.cpp" line="1911"/> 4661 4978 <source>Creating directory "%s" ... 4662 4979 </source> … … 4665 4982 </message> 4666 4983 <message> 4667 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2067"/>4668 <location filename="../VBoxManageGuestCtrl.cpp" line="2 151"/>4669 <location filename="../VBoxManageGuestCtrl.cpp" line="2 272"/>4984 <location filename="../VBoxManageGuestCtrl.cpp" line="1922"/> 4985 <location filename="../VBoxManageGuestCtrl.cpp" line="2006"/> 4986 <location filename="../VBoxManageGuestCtrl.cpp" line="2127"/> 4670 4987 <source>Out of memory 4671 4988 </source> … … 4674 4991 </message> 4675 4992 <message> 4676 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2077"/>4993 <location filename="../VBoxManageGuestCtrl.cpp" line="1932"/> 4677 4994 <source>No directory to create specified!</source> 4678 4995 <translation>Не указана директория для создания!</translation> 4679 4996 </message> 4680 4997 <message numerus="yes"> 4681 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2125"/>4998 <location filename="../VBoxManageGuestCtrl.cpp" line="1980"/> 4682 4999 <source>Removing %RU32 directory tree(s)... 4683 5000 </source> … … 4692 5009 </message> 4693 5010 <message numerus="yes"> 4694 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2128"/>5011 <location filename="../VBoxManageGuestCtrl.cpp" line="1983"/> 4695 5012 <source>Removing %RU32 directorie(s)... 4696 5013 </source> … … 4705 5022 </message> 4706 5023 <message> 4707 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2133"/>5024 <location filename="../VBoxManageGuestCtrl.cpp" line="1988"/> 4708 5025 <source>rmdir was interrupted by Ctrl-C (%u left) 4709 5026 </source> … … 4712 5029 </message> 4713 5030 <message> 4714 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2144"/>5031 <location filename="../VBoxManageGuestCtrl.cpp" line="1999"/> 4715 5032 <source>Removing directory "%s" ... 4716 5033 </source> … … 4719 5036 </message> 4720 5037 <message> 4721 <location filename="../VBoxManageGuestCtrl.cpp" line="2 163"/>5038 <location filename="../VBoxManageGuestCtrl.cpp" line="2018"/> 4722 5039 <source>Recursively removing directory "%s" ... 4723 5040 </source> … … 4726 5043 </message> 4727 5044 <message> 4728 <location filename="../VBoxManageGuestCtrl.cpp" line="2 181"/>5045 <location filename="../VBoxManageGuestCtrl.cpp" line="2036"/> 4729 5046 <source>Directory deletion failed</source> 4730 5047 <translation>Не удалось удалить директорию</translation> 4731 5048 </message> 4732 5049 <message> 4733 <location filename="../VBoxManageGuestCtrl.cpp" line="2 187"/>5050 <location filename="../VBoxManageGuestCtrl.cpp" line="2042"/> 4734 5051 <source>Out of memory during recursive rmdir 4735 5052 </source> … … 4738 5055 </message> 4739 5056 <message> 4740 <location filename="../VBoxManageGuestCtrl.cpp" line="2 205"/>5057 <location filename="../VBoxManageGuestCtrl.cpp" line="2060"/> 4741 5058 <source>No directory to remove specified!</source> 4742 5059 <translation>Не указана директория для удаления!</translation> 4743 5060 </message> 4744 5061 <message numerus="yes"> 4745 <location filename="../VBoxManageGuestCtrl.cpp" line="2 245"/>5062 <location filename="../VBoxManageGuestCtrl.cpp" line="2100"/> 4746 5063 <source>Removing %RU32 file(s)... 4747 5064 </source> … … 4756 5073 </message> 4757 5074 <message> 4758 <location filename="../VBoxManageGuestCtrl.cpp" line="2 249"/>5075 <location filename="../VBoxManageGuestCtrl.cpp" line="2104"/> 4759 5076 <source>rm was interrupted by Ctrl-C (%u left) 4760 5077 </source> … … 4763 5080 </message> 4764 5081 <message> 4765 <location filename="../VBoxManageGuestCtrl.cpp" line="2 260"/>5082 <location filename="../VBoxManageGuestCtrl.cpp" line="2115"/> 4766 5083 <source>Removing file "%s" ... 4767 5084 </source> … … 4770 5087 </message> 4771 5088 <message> 4772 <location filename="../VBoxManageGuestCtrl.cpp" line="2 282"/>5089 <location filename="../VBoxManageGuestCtrl.cpp" line="2137"/> 4773 5090 <source>No file to remove specified!</source> 4774 5091 <translation>Не указан файл для удаления!</translation> 4775 5092 </message> 4776 5093 <message> 4777 <location filename="../VBoxManageGuestCtrl.cpp" line="2 340"/>5094 <location filename="../VBoxManageGuestCtrl.cpp" line="2195"/> 4778 5095 <source>Failed to initialize, rc=%Rrc 4779 5096 </source> … … 4782 5099 </message> 4783 5100 <message> 4784 <location filename="../VBoxManageGuestCtrl.cpp" line="2 345"/>5101 <location filename="../VBoxManageGuestCtrl.cpp" line="2199"/> 4785 5102 <source>No source(s) to move specified!</source> 4786 5103 <translation>Не указан источник(и) для перемещения!</translation> 4787 5104 </message> 4788 5105 <message> 4789 <location filename="../VBoxManageGuestCtrl.cpp" line="2 367"/>5106 <location filename="../VBoxManageGuestCtrl.cpp" line="2220"/> 4790 5107 <source>Destination does not exist 4791 5108 </source> … … 4794 5111 </message> 4795 5112 <message> 4796 <location filename="../VBoxManageGuestCtrl.cpp" line="2 377"/>5113 <location filename="../VBoxManageGuestCtrl.cpp" line="2230"/> 4797 5114 <source>Destination must be a directory when specifying multiple sources 4798 5115 </source> … … 4801 5118 </message> 4802 5119 <message> 4803 <location filename="../VBoxManageGuestCtrl.cpp" line="2 381"/>5120 <location filename="../VBoxManageGuestCtrl.cpp" line="2234"/> 4804 5121 <source>Unable to determine destination type: %Rhrc 4805 5122 </source> … … 4808 5125 </message> 4809 5126 <message> 4810 <location filename="../VBoxManageGuestCtrl.cpp" line="2 390"/>5127 <location filename="../VBoxManageGuestCtrl.cpp" line="2243"/> 4811 5128 <source>Renaming %RU32 %s ... 4812 5129 </source> … … 4815 5132 </message> 4816 5133 <message numerus="yes"> 4817 <location filename="../VBoxManageGuestCtrl.cpp" line="2 391"/>5134 <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/> 4818 5135 <source>sources</source> 4819 5136 <translation> … … 4824 5141 </message> 4825 5142 <message> 4826 <location filename="../VBoxManageGuestCtrl.cpp" line="2 391"/>5143 <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/> 4827 5144 <source>source</source> 4828 5145 <translation>источника</translation> 4829 5146 </message> 4830 5147 <message> 4831 <location filename="../VBoxManageGuestCtrl.cpp" line="2 406"/>5148 <location filename="../VBoxManageGuestCtrl.cpp" line="2259"/> 4832 5149 <source>Cannot stat "%s": No such file or directory 4833 5150 </source> … … 4836 5153 </message> 4837 5154 <message> 4838 <location filename="../VBoxManageGuestCtrl.cpp" line="2 423"/>5155 <location filename="../VBoxManageGuestCtrl.cpp" line="2276"/> 4839 5156 <source>Renaming %s "%s" to "%s" ... 4840 5157 </source> … … 4843 5160 </message> 4844 5161 <message> 4845 <location filename="../VBoxManageGuestCtrl.cpp" line="2 424"/>5162 <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/> 4846 5163 <source>directory</source> 4847 5164 <comment>object</comment> … … 4849 5166 </message> 4850 5167 <message> 4851 <location filename="../VBoxManageGuestCtrl.cpp" line="2 424"/>5168 <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/> 4852 5169 <source>file</source> 4853 5170 <comment>object</comment> … … 4855 5172 </message> 4856 5173 <message> 4857 <location filename="../VBoxManageGuestCtrl.cpp" line="2 443"/>5174 <location filename="../VBoxManageGuestCtrl.cpp" line="2296"/> 4858 5175 <source>Warning: Not all sources were renamed 4859 5176 </source> … … 4862 5179 </message> 4863 5180 <message> 4864 <location filename="../VBoxManageGuestCtrl.cpp" line="2 503"/>5181 <location filename="../VBoxManageGuestCtrl.cpp" line="2355"/> 4865 5182 <source>More than one template specified! 4866 5183 </source> … … 4869 5186 </message> 4870 5187 <message> 4871 <location filename="../VBoxManageGuestCtrl.cpp" line="2 513"/>5188 <location filename="../VBoxManageGuestCtrl.cpp" line="2364"/> 4872 5189 <source>No template specified!</source> 4873 5190 <translation>Шаблоны не указаны!</translation> 4874 5191 </message> 4875 5192 <message> 4876 <location filename="../VBoxManageGuestCtrl.cpp" line="2 517"/>5193 <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/> 4877 5194 <source>Creating temporary files is currently not supported!</source> 4878 5195 <translation>Создание временных файлов сейчас не поддерживается!</translation> 4879 5196 </message> 4880 5197 <message> 4881 <location filename="../VBoxManageGuestCtrl.cpp" line="2 529"/>5198 <location filename="../VBoxManageGuestCtrl.cpp" line="2379"/> 4882 5199 <source>Creating temporary directory from template '%s' in directory '%s' ... 4883 5200 </source> … … 4886 5203 </message> 4887 5204 <message> 4888 <location filename="../VBoxManageGuestCtrl.cpp" line="2 532"/>5205 <location filename="../VBoxManageGuestCtrl.cpp" line="2382"/> 4889 5206 <source>Creating temporary directory from template '%s' in default temporary directory ... 4890 5207 </source> … … 4893 5210 </message> 4894 5211 <message> 4895 <location filename="../VBoxManageGuestCtrl.cpp" line="2 535"/>5212 <location filename="../VBoxManageGuestCtrl.cpp" line="2385"/> 4896 5213 <source>Creating temporary file from template '%s' in directory '%s' ... 4897 5214 </source> … … 4900 5217 </message> 4901 5218 <message> 4902 <location filename="../VBoxManageGuestCtrl.cpp" line="2 538"/>5219 <location filename="../VBoxManageGuestCtrl.cpp" line="2388"/> 4903 5220 <source>Creating temporary file from template '%s' in default temporary directory ... 4904 5221 </source> … … 4907 5224 </message> 4908 5225 <message> 4909 <location filename="../VBoxManageGuestCtrl.cpp" line="2 551"/>5226 <location filename="../VBoxManageGuestCtrl.cpp" line="2401"/> 4910 5227 <source>Directory name: %ls 4911 5228 </source> … … 4914 5231 </message> 4915 5232 <message> 4916 <location filename="../VBoxManageGuestCtrl.cpp" line="2 595"/>5233 <location filename="../VBoxManageGuestCtrl.cpp" line="2444"/> 4917 5234 <source>Command "%s" not implemented yet!</source> 4918 5235 <translation>Команда "%s" еще не реализована!</translation> 4919 5236 </message> 4920 5237 <message> 4921 <location filename="../VBoxManageGuestCtrl.cpp" line="2 603"/>5238 <location filename="../VBoxManageGuestCtrl.cpp" line="2452"/> 4922 5239 <source>Nothing to stat!</source> 4923 5240 <translation>Нет объекта для запроса информации!</translation> 4924 5241 </message> 4925 5242 <message> 4926 <location filename="../VBoxManageGuestCtrl.cpp" line="2 616"/>5243 <location filename="../VBoxManageGuestCtrl.cpp" line="2465"/> 4927 5244 <source>Checking for element "%s" ... 4928 5245 </source> … … 4931 5248 </message> 4932 5249 <message> 4933 <location filename="../VBoxManageGuestCtrl.cpp" line="2 626"/>5250 <location filename="../VBoxManageGuestCtrl.cpp" line="2475"/> 4934 5251 <source>Failed to stat '%s': No such file 4935 5252 </source> … … 4938 5255 </message> 4939 5256 <message> 4940 <location filename="../VBoxManageGuestCtrl.cpp" line="2 631"/>5257 <location filename="../VBoxManageGuestCtrl.cpp" line="2480"/> 4941 5258 <source> File: '%s' 4942 5259 </source> … … 4945 5262 </message> 4946 5263 <message> 4947 <location filename="../VBoxManageGuestCtrl.cpp" line="2 666"/>5264 <location filename="../VBoxManageGuestCtrl.cpp" line="2515"/> 4948 5265 <source> Size: %-17RU64 Alloc: %-19RU64 Type: %s 4949 5266 </source> … … 4952 5269 </message> 4953 5270 <message> 4954 <location filename="../VBoxManageGuestCtrl.cpp" line="2 668"/>5271 <location filename="../VBoxManageGuestCtrl.cpp" line="2517"/> 4955 5272 <source>Device: %#-17RX32 INode: %-18RU64 Links: %u 4956 5273 </source> … … 4959 5276 </message> 4960 5277 <message> 4961 <location filename="../VBoxManageGuestCtrl.cpp" line="2 679"/>5278 <location filename="../VBoxManageGuestCtrl.cpp" line="2528"/> 4962 5279 <source> Mode: %-16s Attrib: %-17s Dev ID: %#RX32 4963 5280 </source> … … 4966 5283 </message> 4967 5284 <message> 4968 <location filename="../VBoxManageGuestCtrl.cpp" line="2 681"/>5285 <location filename="../VBoxManageGuestCtrl.cpp" line="2530"/> 4969 5286 <source> Mode: %-16s Attrib: %s 4970 5287 </source> … … 4973 5290 </message> 4974 5291 <message> 4975 <location filename="../VBoxManageGuestCtrl.cpp" line="2 683"/>5292 <location filename="../VBoxManageGuestCtrl.cpp" line="2532"/> 4976 5293 <source> Owner: %4d/%-12ls Group: %4d/%ls 4977 5294 </source> … … 4980 5297 </message> 4981 5298 <message> 4982 <location filename="../VBoxManageGuestCtrl.cpp" line="2 687"/>5299 <location filename="../VBoxManageGuestCtrl.cpp" line="2536"/> 4983 5300 <source> Birth: %s 4984 5301 </source> … … 4987 5304 </message> 4988 5305 <message> 4989 <location filename="../VBoxManageGuestCtrl.cpp" line="2 689"/>5306 <location filename="../VBoxManageGuestCtrl.cpp" line="2538"/> 4990 5307 <source>Change: %s 4991 5308 </source> … … 4994 5311 </message> 4995 5312 <message> 4996 <location filename="../VBoxManageGuestCtrl.cpp" line="2 691"/>5313 <location filename="../VBoxManageGuestCtrl.cpp" line="2540"/> 4997 5314 <source>Modify: %s 4998 5315 </source> … … 5001 5318 </message> 5002 5319 <message> 5003 <location filename="../VBoxManageGuestCtrl.cpp" line="2 693"/>5320 <location filename="../VBoxManageGuestCtrl.cpp" line="2542"/> 5004 5321 <source>Access: %s 5005 5322 </source> … … 5008 5325 </message> 5009 5326 <message> 5010 <location filename="../VBoxManageGuestCtrl.cpp" line="2 746"/>5327 <location filename="../VBoxManageGuestCtrl.cpp" line="2595"/> 5011 5328 <source>Current run level is %RU32 5012 5329 </source> … … 5015 5332 </message> 5016 5333 <message> 5017 <location filename="../VBoxManageGuestCtrl.cpp" line="2 753"/>5334 <location filename="../VBoxManageGuestCtrl.cpp" line="2602"/> 5018 5335 <source>Waiting for run level %RU32 ... 5019 5336 </source> … … 5022 5339 </message> 5023 5340 <message> 5024 <location filename="../VBoxManageGuestCtrl.cpp" line="2 766"/>5025 <location filename="../VBoxManageGuestCtrl.cpp" line="3 724"/>5341 <location filename="../VBoxManageGuestCtrl.cpp" line="2615"/> 5342 <location filename="../VBoxManageGuestCtrl.cpp" line="3565"/> 5026 5343 <source>Waiting failed with %Rrc 5027 5344 </source> … … 5030 5347 </message> 5031 5348 <message> 5032 <location filename="../VBoxManageGuestCtrl.cpp" line="2 772"/>5349 <location filename="../VBoxManageGuestCtrl.cpp" line="2621"/> 5033 5350 <source>Run level %RU32 reached 5034 5351 </source> … … 5037 5354 </message> 5038 5355 <message> 5039 <location filename="../VBoxManageGuestCtrl.cpp" line="2 781"/>5356 <location filename="../VBoxManageGuestCtrl.cpp" line="2630"/> 5040 5357 <source>Run level %RU32 not reached within time 5041 5358 </source> … … 5044 5361 </message> 5045 5362 <message> 5046 <location filename="../VBoxManageGuestCtrl.cpp" line="2 867"/>5363 <location filename="../VBoxManageGuestCtrl.cpp" line="2716"/> 5047 5364 <source>RTPathAbsCxx failed on '%s': %Rrc</source> 5048 5365 <translation>RTPathAbsCxx завершился с ошибкой '%s': %Rrc</translation> 5049 5366 </message> 5050 5367 <message> 5051 <location filename="../VBoxManageGuestCtrl.cpp" line="2 896"/>5368 <location filename="../VBoxManageGuestCtrl.cpp" line="2745"/> 5052 5369 <source>Updating Guest Additions ... 5053 5370 </source> … … 5056 5373 </message> 5057 5374 <message> 5058 <location filename="../VBoxManageGuestCtrl.cpp" line="2 912"/>5375 <location filename="../VBoxManageGuestCtrl.cpp" line="2761"/> 5059 5376 <source>No Guest Additions source found or specified, aborting 5060 5377 </source> … … 5063 5380 </message> 5064 5381 <message> 5065 <location filename="../VBoxManageGuestCtrl.cpp" line="2 917"/>5382 <location filename="../VBoxManageGuestCtrl.cpp" line="2766"/> 5066 5383 <source>Source "%s" does not exist! 5067 5384 </source> … … 5070 5387 </message> 5071 5388 <message> 5072 <location filename="../VBoxManageGuestCtrl.cpp" line="2 928"/>5389 <location filename="../VBoxManageGuestCtrl.cpp" line="2777"/> 5073 5390 <source>OS type:</source> 5074 5391 <translation>Тип ОС:</translation> 5075 5392 </message> 5076 5393 <message> 5077 <location filename="../VBoxManageGuestCtrl.cpp" line="2 933"/>5394 <location filename="../VBoxManageGuestCtrl.cpp" line="2782"/> 5078 5395 <source>Additions run level:</source> 5079 5396 <translation>Уровень выполнения Дополнений:</translation> 5080 5397 </message> 5081 5398 <message> 5082 <location filename="../VBoxManageGuestCtrl.cpp" line="2 945"/>5399 <location filename="../VBoxManageGuestCtrl.cpp" line="2794"/> 5083 5400 <source>Additions version:</source> 5084 5401 <translation>Версия Дополнений:</translation> 5085 5402 </message> 5086 5403 <message> 5087 <location filename="../VBoxManageGuestCtrl.cpp" line="2 953"/>5404 <location filename="../VBoxManageGuestCtrl.cpp" line="2802"/> 5088 5405 <source>Using source: %s 5089 5406 </source> … … 5092 5409 </message> 5093 5410 <message> 5094 <location filename="../VBoxManageGuestCtrl.cpp" line="2 962"/>5411 <location filename="../VBoxManageGuestCtrl.cpp" line="2811"/> 5095 5412 <source>Waiting for current Guest Additions inside VM getting ready for updating ... 5096 5413 </source> … … 5099 5416 </message> 5100 5417 <message> 5101 <location filename="../VBoxManageGuestCtrl.cpp" line="2 983"/>5418 <location filename="../VBoxManageGuestCtrl.cpp" line="2832"/> 5102 5419 <source>Guest Additions %lsr%RU64 currently installed, waiting for Guest Additions installer to start ... 5103 5420 </source> … … 5106 5423 </message> 5107 5424 <message> 5108 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3007"/>5425 <location filename="../VBoxManageGuestCtrl.cpp" line="2856"/> 5109 5426 <source>Guest Additions update failed</source> 5110 5427 <translation>Не удалось обновить Дополнения Гостевой ОС</translation> 5111 5428 </message> 5112 5429 <message> 5113 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3012"/>5430 <location filename="../VBoxManageGuestCtrl.cpp" line="2861"/> 5114 5431 <source>Guest Additions update successful. 5115 5432 </source> … … 5118 5435 </message> 5119 5436 <message> 5120 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3017"/>5437 <location filename="../VBoxManageGuestCtrl.cpp" line="2866"/> 5121 5438 <source>Rebooting guest ... 5122 5439 </source> … … 5125 5442 </message> 5126 5443 <message> 5127 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3025"/>5444 <location filename="../VBoxManageGuestCtrl.cpp" line="2874"/> 5128 5445 <source>Current installed Guest Additions don't support automatic rebooting. Please reboot manually. 5129 5446 </source> … … 5132 5449 </message> 5133 5450 <message> 5134 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3037"/>5451 <location filename="../VBoxManageGuestCtrl.cpp" line="2886"/> 5135 5452 <source>Waiting for new Guest Additions inside VM getting ready ... 5136 5453 </source> … … 5139 5456 </message> 5140 5457 <message> 5141 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3045"/>5458 <location filename="../VBoxManageGuestCtrl.cpp" line="2894"/> 5142 5459 <source>Verifying Guest Additions update ... 5143 5460 </source> … … 5146 5463 </message> 5147 5464 <message> 5148 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3064"/>5465 <location filename="../VBoxManageGuestCtrl.cpp" line="2913"/> 5149 5466 <source>Old Guest Additions: %ls%RU64 5150 5467 </source> … … 5153 5470 </message> 5154 5471 <message> 5155 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3066"/>5472 <location filename="../VBoxManageGuestCtrl.cpp" line="2915"/> 5156 5473 <source>New Guest Additions: %ls%RU64 5157 5474 </source> … … 5160 5477 </message> 5161 5478 <message> 5162 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3071"/>5479 <location filename="../VBoxManageGuestCtrl.cpp" line="2920"/> 5163 5480 <source> 5164 5481 Error updating Guest Additions, please check guest installer log … … 5169 5486 </message> 5170 5487 <message> 5171 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3076"/>5488 <location filename="../VBoxManageGuestCtrl.cpp" line="2925"/> 5172 5489 <source> 5173 5490 WARNING: Guest Additions were downgraded … … 5178 5495 </message> 5179 5496 <message> 5180 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3083"/>5497 <location filename="../VBoxManageGuestCtrl.cpp" line="2932"/> 5181 5498 <source>The guest needs to be restarted in order to make use of the updated Guest Additions. 5182 5499 </source> … … 5185 5502 </message> 5186 5503 <message> 5187 <location filename="../VBoxManageGuestCtrl.cpp" line="3 157"/>5504 <location filename="../VBoxManageGuestCtrl.cpp" line="3005"/> 5188 5505 <source>Invalid run level specified. Valid values are: system, userland, desktop</source> 5189 5506 <translation>Указан недопустимый уровень выполнения. Допустимые значения: system, userland, desktop</translation> 5190 5507 </message> 5191 5508 <message> 5192 <location filename="../VBoxManageGuestCtrl.cpp" line="3 171"/>5509 <location filename="../VBoxManageGuestCtrl.cpp" line="3019"/> 5193 5510 <source>Missing run level to wait for</source> 5194 5511 <translation>Отсутствует уровень выполнения для ожидания</translation> 5195 5512 </message> 5196 5513 <message> 5197 <location filename="../VBoxManageGuestCtrl.cpp" line="3 219"/>5514 <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/> 5198 5515 <source>Unknown list: '%s'</source> 5199 5516 <translation>Неизвестный список: '%s'</translation> 5200 5517 </message> 5201 5518 <message> 5202 <location filename="../VBoxManageGuestCtrl.cpp" line="3 229"/>5519 <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/> 5203 5520 <source>Missing list name</source> 5204 5521 <translation>Отсутствует имя списка</translation> 5205 5522 </message> 5206 5523 <message> 5207 <location filename="../VBoxManageGuestCtrl.cpp" line="3 250"/>5524 <location filename="../VBoxManageGuestCtrl.cpp" line="3097"/> 5208 5525 <source>Active guest sessions: 5209 5526 </source> … … 5212 5529 </message> 5213 5530 <message> 5214 <location filename="../VBoxManageGuestCtrl.cpp" line="3 269"/>5531 <location filename="../VBoxManageGuestCtrl.cpp" line="3116"/> 5215 5532 <source> 5216 5533 Session #%-3zu ID=%-3RU32 User=%-16ls Status=[%s] Name=%ls</source> … … 5219 5536 </message> 5220 5537 <message> 5221 <location filename="../VBoxManageGuestCtrl.cpp" line="3 292"/>5538 <location filename="../VBoxManageGuestCtrl.cpp" line="3139"/> 5222 5539 <source> 5223 5540 Process #%-03zu PID=%-6RU32 Status=[%s] Command=%ls</source> … … 5226 5543 </message> 5227 5544 <message> 5228 <location filename="../VBoxManageGuestCtrl.cpp" line="3 320"/>5545 <location filename="../VBoxManageGuestCtrl.cpp" line="3167"/> 5229 5546 <source> 5230 5547 File #%-03zu ID=%-6RU32 Status=[%s] Name=%ls</source> … … 5233 5550 </message> 5234 5551 <message> 5235 <location filename="../VBoxManageGuestCtrl.cpp" line="3 331"/>5552 <location filename="../VBoxManageGuestCtrl.cpp" line="3178"/> 5236 5553 <source> 5237 5554 … … 5244 5561 </message> 5245 5562 <message> 5246 <location filename="../VBoxManageGuestCtrl.cpp" line="3 333"/>5563 <location filename="../VBoxManageGuestCtrl.cpp" line="3180"/> 5247 5564 <source>Total guest processes: %zu 5248 5565 </source> … … 5251 5568 </message> 5252 5569 <message> 5253 <location filename="../VBoxManageGuestCtrl.cpp" line="3 335"/>5570 <location filename="../VBoxManageGuestCtrl.cpp" line="3182"/> 5254 5571 <source>Total guest files: %zu 5255 5572 </source> … … 5258 5575 </message> 5259 5576 <message> 5260 <location filename="../VBoxManageGuestCtrl.cpp" line="3 338"/>5577 <location filename="../VBoxManageGuestCtrl.cpp" line="3185"/> 5261 5578 <source>No active guest sessions found 5262 5579 </source> … … 5265 5582 </message> 5266 5583 <message> 5267 <location filename="../VBoxManageGuestCtrl.cpp" line="3 405"/>5584 <location filename="../VBoxManageGuestCtrl.cpp" line="3251"/> 5268 5585 <source>Invalid PID value: 0</source> 5269 5586 <translation>Недопустимое значение PID: 0</translation> 5270 5587 </message> 5271 5588 <message> 5272 <location filename="../VBoxManageGuestCtrl.cpp" line="3 409"/>5589 <location filename="../VBoxManageGuestCtrl.cpp" line="3254"/> 5273 5590 <source>Error parsing PID value: %Rrc</source> 5274 5591 <translation>Ошибка при разборе значения PID: %Rrc</translation> 5275 5592 </message> 5276 5593 <message> 5277 <location filename="../VBoxManageGuestCtrl.cpp" line="3 420"/>5594 <location filename="../VBoxManageGuestCtrl.cpp" line="3264"/> 5278 5595 <source>At least one PID must be specified to kill!</source> 5279 5596 <translation>Нужно указать хотя бы один PID, который надо убить!</translation> 5280 5597 </message> 5281 5598 <message> 5282 <location filename="../VBoxManageGuestCtrl.cpp" line="3 424"/>5283 <location filename="../VBoxManageGuestCtrl.cpp" line="3 580"/>5599 <location filename="../VBoxManageGuestCtrl.cpp" line="3268"/> 5600 <location filename="../VBoxManageGuestCtrl.cpp" line="3422"/> 5284 5601 <source>No session ID specified!</source> 5285 5602 <translation>Не указан ID сессии!</translation> 5286 5603 </message> 5287 5604 <message> 5288 <location filename="../VBoxManageGuestCtrl.cpp" line="3 429"/>5289 <location filename="../VBoxManageGuestCtrl.cpp" line="3 585"/>5605 <location filename="../VBoxManageGuestCtrl.cpp" line="3272"/> 5606 <location filename="../VBoxManageGuestCtrl.cpp" line="3426"/> 5290 5607 <source>Either session ID or name (pattern) must be specified</source> 5291 5608 <translation>Нужно указать либо ID сессии либо имя (шаблон)</translation> 5292 5609 </message> 5293 5610 <message> 5294 <location filename="../VBoxManageGuestCtrl.cpp" line="3 492"/>5611 <location filename="../VBoxManageGuestCtrl.cpp" line="3335"/> 5295 5612 <source>Terminating process (PID %RU32) (session ID %RU32) ... 5296 5613 </source> … … 5299 5616 </message> 5300 5617 <message> 5301 <location filename="../VBoxManageGuestCtrl.cpp" line="3 500"/>5618 <location filename="../VBoxManageGuestCtrl.cpp" line="3343"/> 5302 5619 <source>No matching process(es) for session ID %RU32 found 5303 5620 </source> … … 5306 5623 </message> 5307 5624 <message> 5308 <location filename="../VBoxManageGuestCtrl.cpp" line="3 512"/>5625 <location filename="../VBoxManageGuestCtrl.cpp" line="3355"/> 5309 5626 <source>No matching session(s) found 5310 5627 </source> … … 5313 5630 </message> 5314 5631 <message numerus="yes"> 5315 <location filename="../VBoxManageGuestCtrl.cpp" line="3 515"/>5632 <location filename="../VBoxManageGuestCtrl.cpp" line="3358"/> 5316 5633 <source>%RU32 process(es) terminated 5317 5634 </source> … … 5326 5643 </message> 5327 5644 <message> 5328 <location filename="../VBoxManageGuestCtrl.cpp" line="3 623"/>5645 <location filename="../VBoxManageGuestCtrl.cpp" line="3464"/> 5329 5646 <source>Closing guest session ID=#%RU32 "%s" ... 5330 5647 </source> … … 5333 5650 </message> 5334 5651 <message> 5335 <location filename="../VBoxManageGuestCtrl.cpp" line="3 627"/>5652 <location filename="../VBoxManageGuestCtrl.cpp" line="3468"/> 5336 5653 <source>Guest session successfully closed 5337 5654 </source> … … 5340 5657 </message> 5341 5658 <message> 5342 <location filename="../VBoxManageGuestCtrl.cpp" line="3 635"/>5659 <location filename="../VBoxManageGuestCtrl.cpp" line="3476"/> 5343 5660 <source>No guest session(s) found 5344 5661 </source> … … 5347 5664 </message> 5348 5665 <message> 5349 <location filename="../VBoxManageGuestCtrl.cpp" line="3 713"/>5666 <location filename="../VBoxManageGuestCtrl.cpp" line="3554"/> 5350 5667 <source>Waiting for events ... 5351 5668 </source> … … 5354 5671 </message> 5355 5672 <message> 5356 <location filename="../VBoxManageGuestCtrl.cpp" line="3 867"/>5673 <location filename="../VBoxManageGuestCtrl.cpp" line="3709"/> 5357 5674 <source>Unknown sub-command: '%s'</source> 5358 5675 <translation>Неизвестная подкоманда: '%s'</translation> 5359 5676 </message> 5360 5677 <message> 5361 <location filename="../VBoxManageGuestCtrl.cpp" line="3 876"/>5678 <location filename="../VBoxManageGuestCtrl.cpp" line="3718"/> 5362 5679 <source>Missing sub-command</source> 5363 5680 <translation>Отсутствует подкоманда</translation> 5364 5681 </message> 5365 5682 <message> 5366 <location filename="../VBoxManageGuestCtrl.cpp" line="3 878"/>5683 <location filename="../VBoxManageGuestCtrl.cpp" line="3720"/> 5367 5684 <source>Missing VM name and sub-command</source> 5368 5685 <translation>Отсутствует имя ВМ и подкоманда</translation> … … 5372 5689 <name>GuestCtrlLsnr</name> 5373 5690 <message> 5374 <location filename="../VBoxManageGuestCtrlListener.cpp" line="10 8"/>5691 <location filename="../VBoxManageGuestCtrlListener.cpp" line="106"/> 5375 5692 <source>File ID=%RU32 "%s" changed status to [%s] 5376 5693 </source> … … 5379 5696 </message> 5380 5697 <message> 5381 <location filename="../VBoxManageGuestCtrlListener.cpp" line="16 4"/>5698 <location filename="../VBoxManageGuestCtrlListener.cpp" line="162"/> 5382 5699 <source>Process PID=%RU32 "%s" changed status to [%s] 5383 5700 </source> … … 5386 5703 </message> 5387 5704 <message> 5705 <location filename="../VBoxManageGuestCtrlListener.cpp" line="254"/> 5706 <source>File "%s" %s 5707 </source> 5708 <translation>Файл "%s" %s 5709 </translation> 5710 </message> 5711 <message> 5388 5712 <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/> 5389 <source>File "%s" %s 5390 </source> 5391 <translation>Файл "%s" %s 5392 </translation> 5393 </message> 5394 <message> 5395 <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/> 5396 <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/> 5397 <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/> 5713 <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/> 5714 <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/> 5398 5715 <source>registered</source> 5399 5716 <translation>регистрация сделана</translation> 5400 5717 </message> 5401 5718 <message> 5402 <location filename="../VBoxManageGuestCtrlListener.cpp" line="25 8"/>5403 <location filename="../VBoxManageGuestCtrlListener.cpp" line="32 2"/>5404 <location filename="../VBoxManageGuestCtrlListener.cpp" line="46 3"/>5719 <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/> 5720 <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/> 5721 <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/> 5405 5722 <source>unregistered</source> 5406 5723 <translation>регистрация отменена</translation> 5407 5724 </message> 5408 5725 <message> 5409 <location filename="../VBoxManageGuestCtrlListener.cpp" line="26 2"/>5410 <location filename="../VBoxManageGuestCtrlListener.cpp" line="32 6"/>5411 <location filename="../VBoxManageGuestCtrlListener.cpp" line="46 7"/>5726 <location filename="../VBoxManageGuestCtrlListener.cpp" line="260"/> 5727 <location filename="../VBoxManageGuestCtrlListener.cpp" line="324"/> 5728 <location filename="../VBoxManageGuestCtrlListener.cpp" line="465"/> 5412 5729 <source>Registering ... 5413 5730 </source> … … 5416 5733 </message> 5417 5734 <message> 5418 <location filename="../VBoxManageGuestCtrlListener.cpp" line="28 5"/>5735 <location filename="../VBoxManageGuestCtrlListener.cpp" line="283"/> 5419 5736 <source>Unregistering file ... 5420 5737 </source> … … 5423 5740 </message> 5424 5741 <message> 5425 <location filename="../VBoxManageGuestCtrlListener.cpp" line="3 20"/>5742 <location filename="../VBoxManageGuestCtrlListener.cpp" line="318"/> 5426 5743 <source>Process "%s" %s 5427 5744 </source> … … 5430 5747 </message> 5431 5748 <message> 5432 <location filename="../VBoxManageGuestCtrlListener.cpp" line="34 9"/>5749 <location filename="../VBoxManageGuestCtrlListener.cpp" line="347"/> 5433 5750 <source>Unregistering process ... 5434 5751 </source> … … 5437 5754 </message> 5438 5755 <message> 5439 <location filename="../VBoxManageGuestCtrlListener.cpp" line="38 6"/>5756 <location filename="../VBoxManageGuestCtrlListener.cpp" line="384"/> 5440 5757 <source>Session ID=%RU32 "%s" changed status to [%s] 5441 5758 </source> … … 5444 5761 </message> 5445 5762 <message> 5446 <location filename="../VBoxManageGuestCtrlListener.cpp" line="4 61"/>5763 <location filename="../VBoxManageGuestCtrlListener.cpp" line="459"/> 5447 5764 <source>Session ID=%RU32 "%s" %s 5448 5765 </source> … … 5451 5768 </message> 5452 5769 <message> 5453 <location filename="../VBoxManageGuestCtrlListener.cpp" line="49 2"/>5770 <location filename="../VBoxManageGuestCtrlListener.cpp" line="490"/> 5454 5771 <source>Unregistering ... 5455 5772 </source> … … 5458 5775 </message> 5459 5776 <message> 5460 <location filename="../VBoxManageGuestCtrlListener.cpp" line="55 4"/>5777 <location filename="../VBoxManageGuestCtrlListener.cpp" line="552"/> 5461 5778 <source>Reached run level %RU32 5462 5779 </source> … … 5468 5785 <name>GuestProp</name> 5469 5786 <message> 5470 <location filename="../VBoxManageGuestProp.cpp" line=" 87"/>5471 <location filename="../VBoxManageGuestProp.cpp" line="1 46"/>5472 <location filename="../VBoxManageGuestProp.cpp" line="1 90"/>5473 <location filename="../VBoxManageGuestProp.cpp" line="2 32"/>5474 <location filename="../VBoxManageGuestProp.cpp" line="3 19"/>5475 <location filename="../VBoxManageGuestProp.cpp" line="4 17"/>5476 <location filename="../VBoxManageGuestProp.cpp" line="4 32"/>5787 <location filename="../VBoxManageGuestProp.cpp" line="64"/> 5788 <location filename="../VBoxManageGuestProp.cpp" line="125"/> 5789 <location filename="../VBoxManageGuestProp.cpp" line="171"/> 5790 <location filename="../VBoxManageGuestProp.cpp" line="215"/> 5791 <location filename="../VBoxManageGuestProp.cpp" line="304"/> 5792 <location filename="../VBoxManageGuestProp.cpp" line="407"/> 5793 <location filename="../VBoxManageGuestProp.cpp" line="422"/> 5477 5794 <source>Incorrect parameters</source> 5478 5795 <translation>Некорректные параметры</translation> 5479 5796 </message> 5480 5797 <message> 5481 <location filename="../VBoxManageGuestProp.cpp" line=" 107"/>5798 <location filename="../VBoxManageGuestProp.cpp" line="84"/> 5482 5799 <source>No value set! 5483 5800 </source> … … 5486 5803 </message> 5487 5804 <message> 5488 <location filename="../VBoxManageGuestProp.cpp" line=" 109"/>5805 <location filename="../VBoxManageGuestProp.cpp" line="86"/> 5489 5806 <source>Value: %ls 5490 5807 </source> … … 5493 5810 </message> 5494 5811 <message> 5495 <location filename="../VBoxManageGuestProp.cpp" line=" 112"/>5812 <location filename="../VBoxManageGuestProp.cpp" line="89"/> 5496 5813 <source>Timestamp: %lld 5497 5814 </source> … … 5500 5817 </message> 5501 5818 <message> 5502 <location filename="../VBoxManageGuestProp.cpp" line=" 113"/>5819 <location filename="../VBoxManageGuestProp.cpp" line="90"/> 5503 5820 <source>Flags: %ls 5504 5821 </source> … … 5507 5824 </message> 5508 5825 <message> 5509 <location filename="../VBoxManageGuestProp.cpp" line="2 68"/>5826 <location filename="../VBoxManageGuestProp.cpp" line="251"/> 5510 5827 <source>No properties found. 5511 5828 </source> … … 5514 5831 </message> 5515 5832 <message> 5516 <location filename="../VBoxManageGuestProp.cpp" line="2 70"/>5833 <location filename="../VBoxManageGuestProp.cpp" line="253"/> 5517 5834 <source>Name: %ls, value: %ls, timestamp: %lld, flags: %ls 5518 5835 </source> … … 5521 5838 </message> 5522 5839 <message> 5523 <location filename="../VBoxManageGuestProp.cpp" line="374"/> 5840 <location filename="../VBoxManageGuestProp.cpp" line="362"/> 5841 <source>Property %ls was deleted 5842 </source> 5843 <translation type="unfinished"></translation> 5844 </message> 5845 <message> 5846 <location filename="../VBoxManageGuestProp.cpp" line="364"/> 5524 5847 <source>Name: %ls, value: %ls, flags: %ls 5525 5848 </source> … … 5528 5851 </message> 5529 5852 <message> 5530 <location filename="../VBoxManageGuestProp.cpp" line="3 91"/>5853 <location filename="../VBoxManageGuestProp.cpp" line="381"/> 5531 5854 <source>Time out or interruption while waiting for a notification.</source> 5532 5855 <translation>Превышено время ожидания или прерывание во время ожидания оповещения.</translation> … … 5566 5889 <message> 5567 5890 <location filename="../VBoxManageHelp.cpp" line="397"/> 5568 <location filename="../VBoxManageHelp.cpp" line="1164"/>5569 5891 <source>Invalid parameter '%s'</source> 5570 5892 <translation>Недопустимый параметр '%s'</translation> … … 5572 5894 <message> 5573 5895 <location filename="../VBoxManageHelp.cpp" line="401"/> 5574 <location filename="../VBoxManageHelp.cpp" line="1168"/>5575 5896 <source>Invalid option -%c</source> 5576 5897 <translation>Недопустимая опция -%c</translation> … … 5578 5899 <message> 5579 5900 <location filename="../VBoxManageHelp.cpp" line="403"/> 5580 <location filename="../VBoxManageHelp.cpp" line="1169"/>5581 5901 <source>Invalid option case %i</source> 5582 5902 <translation>Недопустимый вариант опции %i</translation> … … 5584 5904 <message> 5585 5905 <location filename="../VBoxManageHelp.cpp" line="406"/> 5586 <location filename="../VBoxManageHelp.cpp" line="1172"/>5587 5906 <source>Unknown option: %s</source> 5588 5907 <translation>Неизвестная опция: %s</translation> … … 5590 5909 <message> 5591 5910 <location filename="../VBoxManageHelp.cpp" line="408"/> 5592 <location filename="../VBoxManageHelp.cpp" line="1174"/>5593 5911 <source>Invalid argument format: %s</source> 5594 5912 <translation>Недопустимый формат аргумента: %s</translation> … … 5620 5938 </message> 5621 5939 <message> 5622 <location filename="../VBoxManageHelp.cpp" line="563"/>5623 5940 <source>Usage: 5624 5941 5625 5942 </source> 5626 <translation >Использование:5943 <translation type="vanished">Использование: 5627 5944 5628 5945 </translation> 5629 5946 </message> 5630 5947 <message> 5631 <location filename="../VBoxManageHelp.cpp" line="1081"/>5632 <location filename="../VBoxManageHelp.cpp" line="1105"/>5633 5948 <source> 5634 5949 Syntax error: %N 5635 5950 </source> 5636 <translation >5951 <translation type="vanished"> 5637 5952 Синтаксическая ошибка: %N 5638 5953 </translation> … … 5642 5957 <name>HostOnly</name> 5643 5958 <message> 5644 <location filename="../VBoxManageHostonly.cpp" line="9 7"/>5959 <location filename="../VBoxManageHostonly.cpp" line="95"/> 5645 5960 <source>Failed to create the host-only adapter</source> 5646 5961 <translation>Не удалось создать виртуальный адаптер хоста</translation> 5647 5962 </message> 5648 5963 <message> 5649 <location filename="../VBoxManageHostonly.cpp" line="10 6"/>5964 <location filename="../VBoxManageHostonly.cpp" line="104"/> 5650 5965 <source>Interface '%ls' was successfully created 5651 5966 </source> … … 5654 5969 </message> 5655 5970 <message> 5656 <location filename="../VBoxManageHostonly.cpp" line="12 5"/>5657 <location filename="../VBoxManageHostonly.cpp" line="21 6"/>5971 <location filename="../VBoxManageHostonly.cpp" line="123"/> 5972 <location filename="../VBoxManageHostonly.cpp" line="214"/> 5658 5973 <source>Only one interface name can be specified</source> 5659 5974 <translation>Может быть указано только одно имя интерфейса</translation> 5660 5975 </message> 5661 5976 <message> 5662 <location filename="../VBoxManageHostonly.cpp" line="13 3"/>5977 <location filename="../VBoxManageHostonly.cpp" line="131"/> 5663 5978 <source>No interface name was specified</source> 5664 5979 <translation>Не указано имя интерфейса</translation> 5665 5980 </message> 5666 5981 <message> 5667 <location filename="../VBoxManageHostonly.cpp" line="1 51"/>5982 <location filename="../VBoxManageHostonly.cpp" line="149"/> 5668 5983 <source>Failed to remove the host-only adapter</source> 5669 5984 <translation>Не удалось удалить виртуальный адаптер хоста</translation> 5670 5985 </message> 5671 5986 <message> 5672 <location filename="../VBoxManageHostonly.cpp" line="19 5"/>5987 <location filename="../VBoxManageHostonly.cpp" line="193"/> 5673 5988 <source>The --ip option is specified more than once</source> 5674 5989 <translation>Опция --ip указана более одного раза</translation> 5675 5990 </message> 5676 5991 <message> 5677 <location filename="../VBoxManageHostonly.cpp" line=" 200"/>5992 <location filename="../VBoxManageHostonly.cpp" line="198"/> 5678 5993 <source>The --netmask option is specified more than once</source> 5679 5994 <translation>Опция --netmask указана более одного раза</translation> 5680 5995 </message> 5681 5996 <message> 5682 <location filename="../VBoxManageHostonly.cpp" line="20 5"/>5997 <location filename="../VBoxManageHostonly.cpp" line="203"/> 5683 5998 <source>The --ipv6 option is specified more than once</source> 5684 5999 <translation>Опция --ipv6 указана более одного раза</translation> 5685 6000 </message> 5686 6001 <message> 5687 <location filename="../VBoxManageHostonly.cpp" line="2 10"/>6002 <location filename="../VBoxManageHostonly.cpp" line="208"/> 5688 6003 <source>The --netmasklengthv6 option is specified more than once</source> 5689 6004 <translation>Опция --netmasklengthv6 указана более одного раза</translation> 5690 6005 </message> 5691 6006 <message> 5692 <location filename="../VBoxManageHostonly.cpp" line="22 7"/>6007 <location filename="../VBoxManageHostonly.cpp" line="224"/> 5693 6008 <source>You can not use --dhcp with static ip configuration parameters: --ip, --netmask, --ipv6 and --netmasklengthv6.</source> 5694 6009 <translation>Нельзя использовать --dhcp с параметрами конфигурации статического ip: --ip, --netmask, --ipv6 and --netmasklengthv6.</translation> 5695 6010 </message> 5696 6011 <message> 5697 <location filename="../VBoxManageHostonly.cpp" line="2 30"/>6012 <location filename="../VBoxManageHostonly.cpp" line="226"/> 5698 6013 <source>You can not use ipv4 configuration (--ip and --netmask) with ipv6 (--ipv6 and --netmasklengthv6) simultaneously.</source> 5699 6014 <translation>Нельзя использовать конфигурацию ipv4 (--ip и --netmask) с ipv6 (--ipv6 и --netmasklengthv6) одновременно.</translation> 5700 6015 </message> 5701 6016 <message> 5702 <location filename="../VBoxManageHostonly.cpp" line="23 8"/>6017 <location filename="../VBoxManageHostonly.cpp" line="234"/> 5703 6018 <source>Could not find interface '%s'</source> 5704 6019 <translation>Невозможно найти интерфейс '%s'</translation> 5705 6020 </message> 5706 6021 <message> 5707 <location filename="../VBoxManageHostonly.cpp" line="25 4"/>6022 <location filename="../VBoxManageHostonly.cpp" line="250"/> 5708 6023 <source>IPv6 setting is not supported for this adapter</source> 5709 6024 <translation>Найстройки IPv6 не поддерживаются для этого адаптера</translation> 5710 6025 </message> 5711 6026 <message> 5712 <location filename="../VBoxManageHostonly.cpp" line="2 63"/>6027 <location filename="../VBoxManageHostonly.cpp" line="259"/> 5713 6028 <source>Neither -dhcp nor -ip nor -ipv6 was specfified</source> 5714 6029 <translation>Не указаны ни -dhcp ни -ip ни -ipv6</translation> 5715 6030 </message> 5716 6031 <message> 5717 <location filename="../VBoxManageHostonly.cpp" line="2 72"/>5718 <location filename="../VBoxManageHostonly.cpp" line="5 09"/>6032 <location filename="../VBoxManageHostonly.cpp" line="268"/> 6033 <location filename="../VBoxManageHostonly.cpp" line="514"/> 5719 6034 <source>No sub-command specified</source> 5720 6035 <translation>Не указана подкоманда</translation> 5721 6036 </message> 5722 6037 <message> 5723 <location filename="../VBoxManageHostonly.cpp" line="28 4"/>5724 <location filename="../VBoxManageHostonly.cpp" line="5 28"/>6038 <location filename="../VBoxManageHostonly.cpp" line="289"/> 6039 <location filename="../VBoxManageHostonly.cpp" line="533"/> 5725 6040 <source>Unknown sub-command '%s'</source> 5726 6041 <translation>Неизвестная подкоманда: '%s'</translation> 5727 6042 </message> 5728 6043 <message> 5729 <location filename="../VBoxManageHostonly.cpp" line="4 05"/>6044 <location filename="../VBoxManageHostonly.cpp" line="410"/> 5730 6045 <source>The --name parameter must be specified</source> 5731 6046 <translation>Параметр --name должен быть указан</translation> 5732 6047 </message> 5733 6048 <message> 5734 <location filename="../VBoxManageHostonly.cpp" line="4 07"/>6049 <location filename="../VBoxManageHostonly.cpp" line="412"/> 5735 6050 <source>The --netmask parameter must be specified</source> 5736 6051 <translation>Параметр --netmask должен быть указан</translation> 5737 6052 </message> 5738 6053 <message> 5739 <location filename="../VBoxManageHostonly.cpp" line="4 09"/>6054 <location filename="../VBoxManageHostonly.cpp" line="414"/> 5740 6055 <source>The --lower-ip parameter must be specified</source> 5741 6056 <translation>Параметр --lower-ip должен быть указан</translation> 5742 6057 </message> 5743 6058 <message> 5744 <location filename="../VBoxManageHostonly.cpp" line="41 1"/>6059 <location filename="../VBoxManageHostonly.cpp" line="416"/> 5745 6060 <source>The --upper-ip parameter must be specified</source> 5746 6061 <translation>Параметр --upper-ip должен быть указан</translation> 5747 6062 </message> 5748 6063 <message> 5749 <location filename="../VBoxManageHostonly.cpp" line="44 2"/>5750 <location filename="../VBoxManageHostonly.cpp" line=" 498"/>6064 <location filename="../VBoxManageHostonly.cpp" line="447"/> 6065 <location filename="../VBoxManageHostonly.cpp" line="503"/> 5751 6066 <source>Either --name or --id parameter must be specified</source> 5752 6067 <translation>Необходимо указать либо --name либо --id</translation> … … 5756 6071 <name>Info</name> 5757 6072 <message> 5758 <location filename="../VBoxManageInfo.cpp" line="28 6"/>6073 <location filename="../VBoxManageInfo.cpp" line="284"/> 5759 6074 <source> %sName: %ls (UUID: %s)%s 5760 6075 </source> … … 5763 6078 </message> 5764 6079 <message> 5765 <location filename="../VBoxManageInfo.cpp" line="29 4"/>6080 <location filename="../VBoxManageInfo.cpp" line="292"/> 5766 6081 <source> %sDescription: 5767 6082 %ls … … 5772 6087 </message> 5773 6088 <message> 5774 <location filename="../VBoxManageInfo.cpp" line="34 3"/>6089 <location filename="../VBoxManageInfo.cpp" line="341"/> 5775 6090 <source>powered off</source> 5776 6091 <translation>выключена</translation> 5777 6092 </message> 5778 6093 <message> 5779 <location filename="../VBoxManageInfo.cpp" line="34 5"/>6094 <location filename="../VBoxManageInfo.cpp" line="343"/> 5780 6095 <source>saved</source> 5781 6096 <translation>сохранена</translation> 5782 6097 </message> 5783 6098 <message> 5784 <location filename="../VBoxManageInfo.cpp" line="34 7"/>6099 <location filename="../VBoxManageInfo.cpp" line="345"/> 5785 6100 <source>teleported</source> 5786 6101 <translation>портирована</translation> 5787 6102 </message> 5788 6103 <message> 5789 <location filename="../VBoxManageInfo.cpp" line="34 9"/>6104 <location filename="../VBoxManageInfo.cpp" line="347"/> 5790 6105 <source>aborted</source> 5791 6106 <translation>прервана</translation> 5792 6107 </message> 5793 6108 <message> 5794 <location filename="../VBoxManageInfo.cpp" line="3 51"/>6109 <location filename="../VBoxManageInfo.cpp" line="349"/> 5795 6110 <source>aborted-saved</source> 5796 6111 <translation>прервана-сохранена</translation> 5797 6112 </message> 5798 6113 <message> 5799 <location filename="../VBoxManageInfo.cpp" line="35 3"/>6114 <location filename="../VBoxManageInfo.cpp" line="351"/> 5800 6115 <source>running</source> 5801 6116 <translation>работает</translation> 5802 6117 </message> 5803 6118 <message> 5804 <location filename="../VBoxManageInfo.cpp" line="35 5"/>5805 <location filename="../VBoxManageInfo.cpp" line=" 401"/>6119 <location filename="../VBoxManageInfo.cpp" line="353"/> 6120 <location filename="../VBoxManageInfo.cpp" line="399"/> 5806 6121 <source>paused</source> 5807 6122 <translation>приостановлена</translation> 5808 6123 </message> 5809 6124 <message> 5810 <location filename="../VBoxManageInfo.cpp" line="35 7"/>6125 <location filename="../VBoxManageInfo.cpp" line="355"/> 5811 6126 <source>guru meditation</source> 5812 6127 <translation>гуру медитация</translation> 5813 6128 </message> 5814 6129 <message> 5815 <location filename="../VBoxManageInfo.cpp" line="35 9"/>6130 <location filename="../VBoxManageInfo.cpp" line="357"/> 5816 6131 <source>teleporting</source> 5817 6132 <translation>портирование</translation> 5818 6133 </message> 5819 6134 <message> 5820 <location filename="../VBoxManageInfo.cpp" line="3 61"/>6135 <location filename="../VBoxManageInfo.cpp" line="359"/> 5821 6136 <source>live snapshotting</source> 5822 6137 <translation>создание живого снимка</translation> 5823 6138 </message> 5824 6139 <message> 5825 <location filename="../VBoxManageInfo.cpp" line="36 3"/>6140 <location filename="../VBoxManageInfo.cpp" line="361"/> 5826 6141 <source>starting</source> 5827 6142 <translation>запуск</translation> 5828 6143 </message> 5829 6144 <message> 5830 <location filename="../VBoxManageInfo.cpp" line="36 5"/>6145 <location filename="../VBoxManageInfo.cpp" line="363"/> 5831 6146 <source>stopping</source> 5832 6147 <translation>остановка</translation> 5833 6148 </message> 5834 6149 <message> 5835 <location filename="../VBoxManageInfo.cpp" line="36 7"/>6150 <location filename="../VBoxManageInfo.cpp" line="365"/> 5836 6151 <source>saving</source> 5837 6152 <translation>сохранение</translation> 5838 6153 </message> 5839 6154 <message> 5840 <location filename="../VBoxManageInfo.cpp" line="36 9"/>6155 <location filename="../VBoxManageInfo.cpp" line="367"/> 5841 6156 <source>restoring</source> 5842 6157 <translation>восстановление</translation> 5843 6158 </message> 5844 6159 <message> 5845 <location filename="../VBoxManageInfo.cpp" line="3 71"/>6160 <location filename="../VBoxManageInfo.cpp" line="369"/> 5846 6161 <source>teleporting paused vm</source> 5847 6162 <translation>портирование приостановленной вм</translation> 5848 6163 </message> 5849 6164 <message> 5850 <location filename="../VBoxManageInfo.cpp" line="37 3"/>6165 <location filename="../VBoxManageInfo.cpp" line="371"/> 5851 6166 <source>teleporting (incoming)</source> 5852 6167 <translation>портирование (извне)</translation> 5853 6168 </message> 5854 6169 <message> 5855 <location filename="../VBoxManageInfo.cpp" line="37 5"/>6170 <location filename="../VBoxManageInfo.cpp" line="373"/> 5856 6171 <source>deleting snapshot live</source> 5857 6172 <translation>удаление живого снимка</translation> 5858 6173 </message> 5859 6174 <message> 5860 <location filename="../VBoxManageInfo.cpp" line="37 7"/>6175 <location filename="../VBoxManageInfo.cpp" line="375"/> 5861 6176 <source>deleting snapshot live paused</source> 5862 6177 <translation>удаление живого снимка приостановлено</translation> 5863 6178 </message> 5864 6179 <message> 5865 <location filename="../VBoxManageInfo.cpp" line="37 9"/>6180 <location filename="../VBoxManageInfo.cpp" line="377"/> 5866 6181 <source>online snapshotting</source> 5867 6182 <translation>создание онлайн снимка</translation> 5868 6183 </message> 5869 6184 <message> 5870 <location filename="../VBoxManageInfo.cpp" line="3 81"/>6185 <location filename="../VBoxManageInfo.cpp" line="379"/> 5871 6186 <source>restoring snapshot</source> 5872 6187 <translation>восстановление снимка</translation> 5873 6188 </message> 5874 6189 <message> 5875 <location filename="../VBoxManageInfo.cpp" line="38 3"/>6190 <location filename="../VBoxManageInfo.cpp" line="381"/> 5876 6191 <source>deleting snapshot</source> 5877 6192 <translation>удаление снимка</translation> 5878 6193 </message> 5879 6194 <message> 5880 <location filename="../VBoxManageInfo.cpp" line="38 5"/>6195 <location filename="../VBoxManageInfo.cpp" line="383"/> 5881 6196 <source>setting up</source> 5882 6197 <translation>настройка</translation> 5883 6198 </message> 5884 6199 <message> 5885 <location filename="../VBoxManageInfo.cpp" line="38 7"/>6200 <location filename="../VBoxManageInfo.cpp" line="385"/> 5886 6201 <source>offline snapshotting</source> 5887 6202 <translation>создание офлайн снимка</translation> 5888 6203 </message> 5889 6204 <message> 5890 <location filename="../VBoxManageInfo.cpp" line="3 91"/>5891 <location filename="../VBoxManageInfo.cpp" line="41 8"/>5892 <location filename="../VBoxManageInfo.cpp" line="44 8"/>5893 <location filename="../VBoxManageInfo.cpp" line="69 1"/>5894 <location filename="../VBoxManageInfo.cpp" line="11 53"/>5895 <location filename="../VBoxManageInfo.cpp" line="1 173"/>5896 <location filename="../VBoxManageInfo.cpp" line="1 773"/>5897 <location filename="../VBoxManageInfo.cpp" line="18 25"/>5898 <location filename="../VBoxManageInfo.cpp" line="2 377"/>6205 <location filename="../VBoxManageInfo.cpp" line="389"/> 6206 <location filename="../VBoxManageInfo.cpp" line="416"/> 6207 <location filename="../VBoxManageInfo.cpp" line="446"/> 6208 <location filename="../VBoxManageInfo.cpp" line="699"/> 6209 <location filename="../VBoxManageInfo.cpp" line="1186"/> 6210 <location filename="../VBoxManageInfo.cpp" line="1206"/> 6211 <location filename="../VBoxManageInfo.cpp" line="1806"/> 6212 <location filename="../VBoxManageInfo.cpp" line="1860"/> 6213 <location filename="../VBoxManageInfo.cpp" line="2412"/> 5899 6214 <source>unknown</source> 5900 6215 <translation>неизвестно</translation> 5901 6216 </message> 5902 6217 <message> 5903 <location filename="../VBoxManageInfo.cpp" line="39 9"/>5904 <location filename="../VBoxManageInfo.cpp" line="27 03"/>5905 <location filename="../VBoxManageInfo.cpp" line="2 793"/>5906 <location filename="../VBoxManageInfo.cpp" line="2 795"/>6218 <location filename="../VBoxManageInfo.cpp" line="397"/> 6219 <location filename="../VBoxManageInfo.cpp" line="2738"/> 6220 <location filename="../VBoxManageInfo.cpp" line="2828"/> 6221 <location filename="../VBoxManageInfo.cpp" line="2830"/> 5907 6222 <source>not active</source> 5908 6223 <translation>неактивно</translation> 5909 6224 </message> 5910 6225 <message> 5911 <location filename="../VBoxManageInfo.cpp" line="40 3"/>6226 <location filename="../VBoxManageInfo.cpp" line="401"/> 5912 6227 <source>pre-initializing</source> 5913 6228 <translation>преинициализация</translation> 5914 6229 </message> 5915 6230 <message> 5916 <location filename="../VBoxManageInfo.cpp" line="40 5"/>6231 <location filename="../VBoxManageInfo.cpp" line="403"/> 5917 6232 <source>initializing</source> 5918 6233 <translation>инициализация</translation> 5919 6234 </message> 5920 6235 <message> 5921 <location filename="../VBoxManageInfo.cpp" line="40 7"/>6236 <location filename="../VBoxManageInfo.cpp" line="405"/> 5922 6237 <source>active/running</source> 5923 6238 <translation>активно/работает</translation> 5924 6239 </message> 5925 6240 <message> 5926 <location filename="../VBoxManageInfo.cpp" line="40 9"/>6241 <location filename="../VBoxManageInfo.cpp" line="407"/> 5927 6242 <source>terminating</source> 5928 6243 <translation>завершение</translation> 5929 6244 </message> 5930 6245 <message> 5931 <location filename="../VBoxManageInfo.cpp" line="4 11"/>6246 <location filename="../VBoxManageInfo.cpp" line="409"/> 5932 6247 <source>terminated</source> 5933 6248 <translation>завершено</translation> 5934 6249 </message> 5935 6250 <message> 5936 <location filename="../VBoxManageInfo.cpp" line="41 3"/>6251 <location filename="../VBoxManageInfo.cpp" line="411"/> 5937 6252 <source>failed</source> 5938 6253 <translation>отказ</translation> 5939 6254 </message> 5940 6255 <message> 5941 <location filename="../VBoxManageInfo.cpp" line="6 84"/>5942 <location filename="../VBoxManageInfo.cpp" line="1 371"/>5943 <location filename="../VBoxManageInfo.cpp" line="21 04"/>6256 <location filename="../VBoxManageInfo.cpp" line="692"/> 6257 <location filename="../VBoxManageInfo.cpp" line="1404"/> 6258 <location filename="../VBoxManageInfo.cpp" line="2139"/> 5944 6259 <source>Null</source> 5945 6260 <translation>Пусто</translation> 5946 6261 </message> 5947 6262 <message> 5948 <location filename="../VBoxManageInfo.cpp" line="6 85"/>6263 <location filename="../VBoxManageInfo.cpp" line="693"/> 5949 6264 <source>Disk</source> 5950 6265 <translation>Диск</translation> 5951 6266 </message> 5952 6267 <message> 5953 <location filename="../VBoxManageInfo.cpp" line="6 86"/>5954 <location filename="../VBoxManageInfo.cpp" line="12 62"/>6268 <location filename="../VBoxManageInfo.cpp" line="694"/> 6269 <location filename="../VBoxManageInfo.cpp" line="1295"/> 5955 6270 <source>Network</source> 5956 6271 <translation>Сеть</translation> 5957 6272 </message> 5958 6273 <message> 5959 <location filename="../VBoxManageInfo.cpp" line="723"/>5960 6274 <source>Name: '%ls', Type: %s, Limit: none (disabled) 5961 6275 </source> 5962 <translation>Имя: '%ls', Тип: %s, Лимит: нет(отключено) 5963 </translation> 5964 </message> 5965 <message> 5966 <location filename="../VBoxManageInfo.cpp" line="764"/> 6276 <translation type="vanished">Имя: '%ls', Тип: %s, Лимит: нет(отключено) 6277 </translation> 6278 </message> 6279 <message> 5967 6280 <source>Name: '%ls', Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec) 5968 6281 </source> 5969 <translation>Имя: '%ls', Тип: %s, Лимит: %lld %sбит/сек (%lld %sбайт/сек) 5970 </translation> 5971 </message> 5972 <message> 5973 <location filename="../VBoxManageInfo.cpp" line="769"/> 6282 <translation type="vanished">Имя: '%ls', Тип: %s, Лимит: %lld %sбит/сек (%lld %sбайт/сек) 6283 </translation> 6284 </message> 6285 <message> 5974 6286 <source>Name: '%ls', Type: %s, Limit: %lld %sbytes/sec 5975 6287 </source> 5976 <translation >Имя: '%ls', Тип: %s, Лимит: %lld %sбайт/сек5977 </translation> 5978 </message> 5979 <message> 5980 <location filename="../VBoxManageInfo.cpp" line="8 00"/>6288 <translation type="vanished">Имя: '%ls', Тип: %s, Лимит: %lld %sбайт/сек 6289 </translation> 6290 </message> 6291 <message> 6292 <location filename="../VBoxManageInfo.cpp" line="813"/> 5981 6293 <source>Name: '%ls', Host path: '%ls' (%s), %s%s</source> 5982 6294 <translation>Имя: '%ls', Путь хоста: '%ls' (%s), %s%s</translation> 5983 6295 </message> 5984 6296 <message> 5985 <location filename="../VBoxManageInfo.cpp" line="8 01"/>6297 <location filename="../VBoxManageInfo.cpp" line="814"/> 5986 6298 <source>writable</source> 5987 6299 <translation>записываемый</translation> 5988 6300 </message> 5989 6301 <message> 5990 <location filename="../VBoxManageInfo.cpp" line="8 01"/>6302 <location filename="../VBoxManageInfo.cpp" line="814"/> 5991 6303 <source>readonly</source> 5992 6304 <translation>только для чтения</translation> 5993 6305 </message> 5994 6306 <message> 5995 <location filename="../VBoxManageInfo.cpp" line="8 02"/>6307 <location filename="../VBoxManageInfo.cpp" line="815"/> 5996 6308 <source>, auto-mount</source> 5997 6309 <translation>, автомонтирование</translation> 5998 6310 </message> 5999 6311 <message> 6000 <location filename="../VBoxManageInfo.cpp" line="8 04"/>6312 <location filename="../VBoxManageInfo.cpp" line="817"/> 6001 6313 <source>, mount-point: '%ls' 6002 6314 </source> … … 6005 6317 </message> 6006 6318 <message> 6007 <location filename="../VBoxManageInfo.cpp" line="9 62"/>6008 <location filename="../VBoxManageInfo.cpp" line=" 994"/>6009 <location filename="../VBoxManageInfo.cpp" line="1 879"/>6010 <location filename="../VBoxManageInfo.cpp" line="19 15"/>6319 <location filename="../VBoxManageInfo.cpp" line="995"/> 6320 <location filename="../VBoxManageInfo.cpp" line="1027"/> 6321 <location filename="../VBoxManageInfo.cpp" line="1914"/> 6322 <location filename="../VBoxManageInfo.cpp" line="1950"/> 6011 6323 <source>None</source> 6012 6324 <translation>Нет</translation> 6013 6325 </message> 6014 6326 <message> 6015 <location filename="../VBoxManageInfo.cpp" line=" 967"/>6327 <location filename="../VBoxManageInfo.cpp" line="1000"/> 6016 6328 <source>Automatic</source> 6017 6329 <translation>Автоматически</translation> 6018 6330 </message> 6019 6331 <message> 6020 <location filename="../VBoxManageInfo.cpp" line=" 982"/>6021 <location filename="../VBoxManageInfo.cpp" line="10 24"/>6022 <location filename="../VBoxManageInfo.cpp" line="1 395"/>6023 <location filename="../VBoxManageInfo.cpp" line="1 873"/>6024 <location filename="../VBoxManageInfo.cpp" line="19 10"/>6025 <location filename="../VBoxManageInfo.cpp" line="2 089"/>6026 <location filename="../VBoxManageInfo.cpp" line="2 090"/>6027 <location filename="../VBoxManageInfo.cpp" line="2 091"/>6028 <location filename="../VBoxManageInfo.cpp" line="22 34"/>6029 <location filename="../VBoxManageInfo.cpp" line="22 63"/>6332 <location filename="../VBoxManageInfo.cpp" line="1015"/> 6333 <location filename="../VBoxManageInfo.cpp" line="1057"/> 6334 <location filename="../VBoxManageInfo.cpp" line="1428"/> 6335 <location filename="../VBoxManageInfo.cpp" line="1908"/> 6336 <location filename="../VBoxManageInfo.cpp" line="1945"/> 6337 <location filename="../VBoxManageInfo.cpp" line="2124"/> 6338 <location filename="../VBoxManageInfo.cpp" line="2125"/> 6339 <location filename="../VBoxManageInfo.cpp" line="2126"/> 6340 <location filename="../VBoxManageInfo.cpp" line="2269"/> 6341 <location filename="../VBoxManageInfo.cpp" line="2298"/> 6030 6342 <source>Unknown</source> 6031 6343 <translation>Неизвестно</translation> 6032 6344 </message> 6033 6345 <message> 6034 <location filename="../VBoxManageInfo.cpp" line=" 999"/>6346 <location filename="../VBoxManageInfo.cpp" line="1032"/> 6035 6347 <source>Default</source> 6036 6348 <translation>По умолчанию</translation> 6037 6349 </message> 6038 6350 <message> 6039 <location filename="../VBoxManageInfo.cpp" line="10 04"/>6351 <location filename="../VBoxManageInfo.cpp" line="1037"/> 6040 6352 <source>Legacy</source> 6041 6353 <translation>Устаревший</translation> 6042 6354 </message> 6043 6355 <message> 6044 <location filename="../VBoxManageInfo.cpp" line="10 09"/>6356 <location filename="../VBoxManageInfo.cpp" line="1042"/> 6045 6357 <source>Minimal</source> 6046 6358 <translation>Минимальный</translation> 6047 6359 </message> 6048 6360 <message> 6049 <location filename="../VBoxManageInfo.cpp" line="8 7"/>6050 <location filename="../VBoxManageInfo.cpp" line="1 10"/>6051 <location filename="../VBoxManageInfo.cpp" line="13 3"/>6052 <location filename="../VBoxManageInfo.cpp" line="22 05"/>6053 <location filename="../VBoxManageInfo.cpp" line="23 14"/>6054 <location filename="../VBoxManageInfo.cpp" line="28 47"/>6055 <location filename="../VBoxManageInfo.cpp" line="28 49"/>6361 <location filename="../VBoxManageInfo.cpp" line="85"/> 6362 <location filename="../VBoxManageInfo.cpp" line="108"/> 6363 <location filename="../VBoxManageInfo.cpp" line="131"/> 6364 <location filename="../VBoxManageInfo.cpp" line="2240"/> 6365 <location filename="../VBoxManageInfo.cpp" line="2349"/> 6366 <location filename="../VBoxManageInfo.cpp" line="2882"/> 6367 <location filename="../VBoxManageInfo.cpp" line="2884"/> 6056 6368 <source>enabled</source> 6057 6369 <translation>включено</translation> 6058 6370 </message> 6059 6371 <message> 6060 <location filename="../VBoxManageInfo.cpp" line="8 7"/>6061 <location filename="../VBoxManageInfo.cpp" line="1 10"/>6062 <location filename="../VBoxManageInfo.cpp" line="13 3"/>6063 <location filename="../VBoxManageInfo.cpp" line="12 30"/>6064 <location filename="../VBoxManageInfo.cpp" line="1 284"/>6065 <location filename="../VBoxManageInfo.cpp" line="22 05"/>6066 <location filename="../VBoxManageInfo.cpp" line="23 15"/>6067 <location filename="../VBoxManageInfo.cpp" line="28 47"/>6068 <location filename="../VBoxManageInfo.cpp" line="28 49"/>6372 <location filename="../VBoxManageInfo.cpp" line="85"/> 6373 <location filename="../VBoxManageInfo.cpp" line="108"/> 6374 <location filename="../VBoxManageInfo.cpp" line="131"/> 6375 <location filename="../VBoxManageInfo.cpp" line="1263"/> 6376 <location filename="../VBoxManageInfo.cpp" line="1317"/> 6377 <location filename="../VBoxManageInfo.cpp" line="2240"/> 6378 <location filename="../VBoxManageInfo.cpp" line="2350"/> 6379 <location filename="../VBoxManageInfo.cpp" line="2882"/> 6380 <location filename="../VBoxManageInfo.cpp" line="2884"/> 6069 6381 <source>disabled</source> 6070 6382 <translation>выключено</translation> 6071 6383 </message> 6072 6384 <message> 6073 <location filename="../VBoxManageInfo.cpp" line="29 2"/>6385 <location filename="../VBoxManageInfo.cpp" line="290"/> 6074 6386 <source> %sDescription: %ls 6075 6387 </source> … … 6078 6390 </message> 6079 6391 <message> 6080 <location filename="../VBoxManageInfo.cpp" line="8 49"/>6081 <location filename="../VBoxManageInfo.cpp" line="15 09"/>6082 <location filename="../VBoxManageInfo.cpp" line="25 37"/>6083 <location filename="../VBoxManageInfo.cpp" line="29 50"/>6392 <location filename="../VBoxManageInfo.cpp" line="862"/> 6393 <location filename="../VBoxManageInfo.cpp" line="1542"/> 6394 <location filename="../VBoxManageInfo.cpp" line="2572"/> 6395 <location filename="../VBoxManageInfo.cpp" line="2985"/> 6084 6396 <source><none></source> 6085 6397 <translation><нет></translation> 6086 6398 </message> 6087 6399 <message> 6088 <location filename="../VBoxManageInfo.cpp" line="901"/>6089 6400 <source> Port %u, Unit %u: UUID: %ls%s%s%s 6090 6401 Location: "%ls" 6091 6402 </source> 6092 <translation > Порт %u, Устройство %u: UUID: %ls%s%s%s6403 <translation type="vanished"> Порт %u, Устройство %u: UUID: %ls%s%s%s 6093 6404 Расположение: "%ls" 6094 6405 </translation> 6095 6406 </message> 6096 6407 <message> 6097 <location filename="../VBoxManageInfo.cpp" line="9 03"/>6408 <location filename="../VBoxManageInfo.cpp" line="922"/> 6098 6409 <source>, passthrough enabled</source> 6099 6410 <translation>, прямой доступ включен</translation> 6100 6411 </message> 6101 6412 <message> 6102 <location filename="../VBoxManageInfo.cpp" line="9 04"/>6103 <location filename="../VBoxManageInfo.cpp" line="9 33"/>6413 <location filename="../VBoxManageInfo.cpp" line="923"/> 6414 <location filename="../VBoxManageInfo.cpp" line="966"/> 6104 6415 <source>, temp eject</source> 6105 6416 <translation>, временно извлечь</translation> 6106 6417 </message> 6107 6418 <message> 6108 <location filename="../VBoxManageInfo.cpp" line="9 05"/>6109 <location filename="../VBoxManageInfo.cpp" line="9 34"/>6419 <location filename="../VBoxManageInfo.cpp" line="924"/> 6420 <location filename="../VBoxManageInfo.cpp" line="967"/> 6110 6421 <source>, ejected</source> 6111 6422 <translation>, извлечено</translation> 6112 6423 </message> 6113 6424 <message> 6114 <location filename="../VBoxManageInfo.cpp" line="932"/> 6425 <location filename="../VBoxManageInfo.cpp" line="925"/> 6426 <source>, hot-pluggable</source> 6427 <translation type="unfinished"></translation> 6428 </message> 6429 <message> 6430 <location filename="../VBoxManageInfo.cpp" line="926"/> 6431 <source>, non-rotational (SSD)</source> 6432 <translation type="unfinished"></translation> 6433 </message> 6434 <message> 6435 <location filename="../VBoxManageInfo.cpp" line="927"/> 6436 <source>, discards unused blocks</source> 6437 <translation type="unfinished"></translation> 6438 </message> 6439 <message> 6440 <location filename="../VBoxManageInfo.cpp" line="965"/> 6115 6441 <source> Port %u, Unit %u: Empty%s%s 6116 6442 </source> … … 6119 6445 </message> 6120 6446 <message> 6121 <location filename="../VBoxManageInfo.cpp" line="9 46"/>6447 <location filename="../VBoxManageInfo.cpp" line="979"/> 6122 6448 <source> Port %u, Unit %u: GetMedium failed: %Rhrc 6123 6449 </source> … … 6126 6452 </message> 6127 6453 <message> 6128 <location filename="../VBoxManageInfo.cpp" line="1 073"/>6454 <location filename="../VBoxManageInfo.cpp" line="1106"/> 6129 6455 <source>"<inaccessible>" {%s} 6130 6456 </source> … … 6133 6459 </message> 6134 6460 <message> 6135 <location filename="../VBoxManageInfo.cpp" line="1 079"/>6461 <location filename="../VBoxManageInfo.cpp" line="1112"/> 6136 6462 <source>Name: <inaccessible!> 6137 6463 </source> … … 6140 6466 </message> 6141 6467 <message> 6142 <location filename="../VBoxManageInfo.cpp" line="1 088"/>6468 <location filename="../VBoxManageInfo.cpp" line="1121"/> 6143 6469 <source>Config file: %ls 6144 6470 </source> … … 6147 6473 </message> 6148 6474 <message> 6149 <location filename="../VBoxManageInfo.cpp" line="1 091"/>6475 <location filename="../VBoxManageInfo.cpp" line="1124"/> 6150 6476 <source>Access error details: 6151 6477 </source> … … 6154 6480 </message> 6155 6481 <message> 6156 <location filename="../VBoxManageInfo.cpp" line="11 11"/>6482 <location filename="../VBoxManageInfo.cpp" line="1144"/> 6157 6483 <source>Name:</source> 6158 6484 <translation>Имя:</translation> 6159 6485 </message> 6160 6486 <message> 6161 <location filename="../VBoxManageInfo.cpp" line="11 12"/>6487 <location filename="../VBoxManageInfo.cpp" line="1145"/> 6162 6488 <source>Groups:</source> 6163 6489 <translation>Группы:</translation> 6164 6490 </message> 6165 6491 <message> 6166 <location filename="../VBoxManageInfo.cpp" line="11 18"/>6167 <location filename="../VBoxManageInfo.cpp" line="11 20"/>6492 <location filename="../VBoxManageInfo.cpp" line="1151"/> 6493 <location filename="../VBoxManageInfo.cpp" line="1153"/> 6168 6494 <source>Guest OS:</source> 6169 6495 <translation>Гостевая ОС:</translation> 6170 6496 </message> 6171 6497 <message> 6172 <location filename="../VBoxManageInfo.cpp" line="11 22"/>6498 <location filename="../VBoxManageInfo.cpp" line="1155"/> 6173 6499 <source>Config file:</source> 6174 6500 <translation>Файл конфигурации:</translation> 6175 6501 </message> 6176 6502 <message> 6177 <location filename="../VBoxManageInfo.cpp" line="11 23"/>6503 <location filename="../VBoxManageInfo.cpp" line="1156"/> 6178 6504 <source>Snapshot folder:</source> 6179 6505 <translation>Папка снимков:</translation> 6180 6506 </message> 6181 6507 <message> 6182 <location filename="../VBoxManageInfo.cpp" line="11 24"/>6508 <location filename="../VBoxManageInfo.cpp" line="1157"/> 6183 6509 <source>Log folder:</source> 6184 6510 <translation>Папка журналов:</translation> 6185 6511 </message> 6186 6512 <message> 6187 <location filename="../VBoxManageInfo.cpp" line="11 25"/>6513 <location filename="../VBoxManageInfo.cpp" line="1158"/> 6188 6514 <source>Hardware UUID:</source> 6189 6515 <translation>Аппаратный UUID:</translation> 6190 6516 </message> 6191 6517 <message> 6192 <location filename="../VBoxManageInfo.cpp" line="11 26"/>6518 <location filename="../VBoxManageInfo.cpp" line="1159"/> 6193 6519 <source>Memory size:</source> 6194 6520 <translation>Размер памяти:</translation> 6195 6521 </message> 6196 6522 <message> 6197 <location filename="../VBoxManageInfo.cpp" line="11 27"/>6523 <location filename="../VBoxManageInfo.cpp" line="1160"/> 6198 6524 <source>Page Fusion:</source> 6199 6525 <translation>Page Fusion:</translation> 6200 6526 </message> 6201 6527 <message> 6202 <location filename="../VBoxManageInfo.cpp" line="11 30"/>6528 <location filename="../VBoxManageInfo.cpp" line="1163"/> 6203 6529 <source>VRAM size:</source> 6204 6530 <translation>Размер VRAM:</translation> 6205 6531 </message> 6206 6532 <message> 6207 <location filename="../VBoxManageInfo.cpp" line="11 31"/>6533 <location filename="../VBoxManageInfo.cpp" line="1164"/> 6208 6534 <source>CPU exec cap:</source> 6209 6535 <translation>Процент выполнения ЦПУ:</translation> 6210 6536 </message> 6211 6537 <message> 6212 <location filename="../VBoxManageInfo.cpp" line="11 32"/>6538 <location filename="../VBoxManageInfo.cpp" line="1165"/> 6213 6539 <source>HPET:</source> 6214 6540 <translation>HPET:</translation> 6215 6541 </message> 6216 6542 <message> 6217 <location filename="../VBoxManageInfo.cpp" line="11 33"/>6543 <location filename="../VBoxManageInfo.cpp" line="1166"/> 6218 6544 <source>CPUProfile:</source> 6219 6545 <translation>Профиль ЦПУ:</translation> 6220 6546 </message> 6221 6547 <message> 6222 <location filename="../VBoxManageInfo.cpp" line="11 44"/>6548 <location filename="../VBoxManageInfo.cpp" line="1177"/> 6223 6549 <source>invalid</source> 6224 6550 <translation>недействительный</translation> 6225 6551 </message> 6226 6552 <message> 6227 <location filename="../VBoxManageInfo.cpp" line="11 56"/>6553 <location filename="../VBoxManageInfo.cpp" line="1189"/> 6228 6554 <source>Chipset:</source> 6229 6555 <translation>Чипсет:</translation> 6230 6556 </message> 6231 6557 <message> 6232 <location filename="../VBoxManageInfo.cpp" line="1 176"/>6558 <location filename="../VBoxManageInfo.cpp" line="1209"/> 6233 6559 <source>Firmware:</source> 6234 6560 <translation>Прошивка:</translation> 6235 6561 </message> 6236 6562 <message> 6237 <location filename="../VBoxManageInfo.cpp" line="1 178"/>6563 <location filename="../VBoxManageInfo.cpp" line="1211"/> 6238 6564 <source>Number of CPUs:</source> 6239 6565 <translation>Число ЦПУ:</translation> 6240 6566 </message> 6241 6567 <message> 6242 <location filename="../VBoxManageInfo.cpp" line="1 180"/>6568 <location filename="../VBoxManageInfo.cpp" line="1213"/> 6243 6569 <source>Long Mode:</source> 6244 6570 <translation>Длинный режим:</translation> 6245 6571 </message> 6246 6572 <message> 6247 <location filename="../VBoxManageInfo.cpp" line="1 181"/>6573 <location filename="../VBoxManageInfo.cpp" line="1214"/> 6248 6574 <source>Triple Fault Reset:</source> 6249 6575 <translation>Сброс Тройного Отказа:</translation> 6250 6576 </message> 6251 6577 <message> 6252 <location filename="../VBoxManageInfo.cpp" line="1 184"/>6578 <location filename="../VBoxManageInfo.cpp" line="1217"/> 6253 6579 <source>Nested VT-x/AMD-V:</source> 6254 6580 <translation>Вложенные Nested VT-x/AMD-V:</translation> 6255 6581 </message> 6256 6582 <message> 6257 <location filename="../VBoxManageInfo.cpp" line="1 185"/>6583 <location filename="../VBoxManageInfo.cpp" line="1218"/> 6258 6584 <source>CPUID Portability Level:</source> 6259 6585 <translation>Уровень Портативности CPUID:</translation> 6260 6586 </message> 6261 6587 <message> 6262 <location filename="../VBoxManageInfo.cpp" line="1 188"/>6588 <location filename="../VBoxManageInfo.cpp" line="1221"/> 6263 6589 <source>CPUID overrides:</source> 6264 6590 <translation>CPUID замены:</translation> 6265 6591 </message> 6266 6592 <message> 6267 <location filename="../VBoxManageInfo.cpp" line="12 01"/>6593 <location filename="../VBoxManageInfo.cpp" line="1234"/> 6268 6594 <source>Leaf no. EAX EBX ECX EDX 6269 6595 </source> … … 6272 6598 </message> 6273 6599 <message> 6274 <location filename="../VBoxManageInfo.cpp" line="12 13"/>6600 <location filename="../VBoxManageInfo.cpp" line="1246"/> 6275 6601 <source>None 6276 6602 </source> … … 6279 6605 </message> 6280 6606 <message> 6281 <location filename="../VBoxManageInfo.cpp" line="12 36"/>6607 <location filename="../VBoxManageInfo.cpp" line="1269"/> 6282 6608 <source>menu only</source> 6283 6609 <translation>только меню</translation> 6284 6610 </message> 6285 6611 <message> 6286 <location filename="../VBoxManageInfo.cpp" line="12 42"/>6612 <location filename="../VBoxManageInfo.cpp" line="1275"/> 6287 6613 <source>message and menu</source> 6288 6614 <translation>сообщения и меню</translation> 6289 6615 </message> 6290 6616 <message> 6291 <location filename="../VBoxManageInfo.cpp" line="12 44"/>6617 <location filename="../VBoxManageInfo.cpp" line="1277"/> 6292 6618 <source>Boot menu mode:</source> 6293 6619 <translation>Режим загрузочного меню:</translation> 6294 6620 </message> 6295 6621 <message> 6296 <location filename="../VBoxManageInfo.cpp" line="12 56"/>6622 <location filename="../VBoxManageInfo.cpp" line="1289"/> 6297 6623 <source>Floppy</source> 6298 6624 <translation>Флоппи</translation> 6299 6625 </message> 6300 6626 <message> 6301 <location filename="../VBoxManageInfo.cpp" line="12 60"/>6627 <location filename="../VBoxManageInfo.cpp" line="1293"/> 6302 6628 <source>HardDisk</source> 6303 6629 <translation>Жесткий Диск</translation> 6304 6630 </message> 6305 6631 <message> 6306 <location filename="../VBoxManageInfo.cpp" line="12 66"/>6632 <location filename="../VBoxManageInfo.cpp" line="1299"/> 6307 6633 <source>Shared Folder</source> 6308 6634 <translation>Общая папка</translation> 6309 6635 </message> 6310 6636 <message> 6311 <location filename="../VBoxManageInfo.cpp" line="1 268"/>6637 <location filename="../VBoxManageInfo.cpp" line="1301"/> 6312 6638 <source>Not Assigned</source> 6313 6639 <translation>Не назначено</translation> 6314 6640 </message> 6315 6641 <message> 6316 <location filename="../VBoxManageInfo.cpp" line="1 269"/>6642 <location filename="../VBoxManageInfo.cpp" line="1302"/> 6317 6643 <source>Boot Device %u:</source> 6318 6644 <translation>Загрузочное устройство %u:</translation> 6319 6645 </message> 6320 6646 <message> 6321 <location filename="../VBoxManageInfo.cpp" line="13 00"/>6647 <location filename="../VBoxManageInfo.cpp" line="1333"/> 6322 6648 <source>BIOS APIC mode:</source> 6323 6649 <translation>Режим BIOS APIC:</translation> 6324 6650 </message> 6325 6651 <message> 6326 <location filename="../VBoxManageInfo.cpp" line="13 02"/>6652 <location filename="../VBoxManageInfo.cpp" line="1335"/> 6327 6653 <source>Time offset:</source> 6328 6654 <translation>Часовой пояс:</translation> 6329 6655 </message> 6330 6656 <message> 6331 <location filename="../VBoxManageInfo.cpp" line="13 02"/>6657 <location filename="../VBoxManageInfo.cpp" line="1335"/> 6332 6658 <source>ms</source> 6333 6659 <translation>мс</translation> 6334 6660 </message> 6335 6661 <message> 6336 <location filename="../VBoxManageInfo.cpp" line="13 06"/>6662 <location filename="../VBoxManageInfo.cpp" line="1339"/> 6337 6663 <source>BIOS NVRAM File:</source> 6338 6664 <translation>Файл BIOS NVRAM:</translation> 6339 6665 </message> 6340 6666 <message> 6341 <location filename="../VBoxManageInfo.cpp" line="13 07"/>6667 <location filename="../VBoxManageInfo.cpp" line="1340"/> 6342 6668 <source>RTC:</source> 6343 6669 <translation>RTC:</translation> 6344 6670 </message> 6345 6671 <message> 6346 <location filename="../VBoxManageInfo.cpp" line="13 07"/>6672 <location filename="../VBoxManageInfo.cpp" line="1340"/> 6347 6673 <source>local time</source> 6348 6674 <translation>локальное время</translation> 6349 6675 </message> 6350 6676 <message> 6351 <location filename="../VBoxManageInfo.cpp" line="13 08"/>6677 <location filename="../VBoxManageInfo.cpp" line="1341"/> 6352 6678 <source>Hardware Virtualization:</source> 6353 6679 <translation>Аппаратная Виртуализация:</translation> 6354 6680 </message> 6355 6681 <message> 6356 <location filename="../VBoxManageInfo.cpp" line="13 09"/>6682 <location filename="../VBoxManageInfo.cpp" line="1342"/> 6357 6683 <source>Nested Paging:</source> 6358 6684 <translation>Вложенные страницы:</translation> 6359 6685 </message> 6360 6686 <message> 6361 <location filename="../VBoxManageInfo.cpp" line="13 10"/>6687 <location filename="../VBoxManageInfo.cpp" line="1343"/> 6362 6688 <source>Large Pages:</source> 6363 6689 <translation>Большие Страницы:</translation> 6364 6690 </message> 6365 6691 <message> 6366 <location filename="../VBoxManageInfo.cpp" line="13 12"/>6692 <location filename="../VBoxManageInfo.cpp" line="1345"/> 6367 6693 <source>VT-x Unrestricted Exec.:</source> 6368 6694 <translation>VT-x Неограниченное выполнение:</translation> 6369 6695 </message> 6370 6696 <message> 6371 <location filename="../VBoxManageInfo.cpp" line="13 13"/>6697 <location filename="../VBoxManageInfo.cpp" line="1346"/> 6372 6698 <source>AMD-V Virt. Vmsave/Vmload:</source> 6373 6699 <translation>AMD-V Virt. Vmsave/Vmload:</translation> 6374 6700 </message> 6375 6701 <message> 6376 <location filename="../VBoxManageInfo.cpp" line="13 25"/>6702 <location filename="../VBoxManageInfo.cpp" line="1358"/> 6377 6703 <source>Paravirt. Provider:</source> 6378 6704 <translation>Паравиртуальный провайдер:</translation> 6379 6705 </message> 6380 6706 <message> 6381 <location filename="../VBoxManageInfo.cpp" line="13 30"/>6707 <location filename="../VBoxManageInfo.cpp" line="1363"/> 6382 6708 <source>Effective Paravirt. Prov.:</source> 6383 6709 <translation>Эффективный Паравиртуальный провайдер:</translation> 6384 6710 </message> 6385 6711 <message> 6386 <location filename="../VBoxManageInfo.cpp" line="13 35"/>6712 <location filename="../VBoxManageInfo.cpp" line="1368"/> 6387 6713 <source>Paravirt. Debug:</source> 6388 6714 <translation>Паравирутальная отладка:</translation> 6389 6715 </message> 6390 6716 <message> 6391 <location filename="../VBoxManageInfo.cpp" line="13 58"/>6717 <location filename="../VBoxManageInfo.cpp" line="1391"/> 6392 6718 <source>%-28s %s (since %s) 6393 6719 </source> … … 6396 6722 </message> 6397 6723 <message> 6398 <location filename="../VBoxManageInfo.cpp" line="13 58"/>6724 <location filename="../VBoxManageInfo.cpp" line="1391"/> 6399 6725 <source>State:</source> 6400 6726 <translation>Состояние:</translation> 6401 6727 </message> 6402 6728 <message> 6403 <location filename="../VBoxManageInfo.cpp" line="14 02"/>6729 <location filename="../VBoxManageInfo.cpp" line="1435"/> 6404 6730 <source>Graphics Controller:</source> 6405 6731 <translation>Графический Контроллер:</translation> 6406 6732 </message> 6407 6733 <message> 6408 <location filename="../VBoxManageInfo.cpp" line="14 05"/>6734 <location filename="../VBoxManageInfo.cpp" line="1438"/> 6409 6735 <source>Monitor count:</source> 6410 6736 <translation>Число мониторов:</translation> 6411 6737 </message> 6412 6738 <message> 6413 <location filename="../VBoxManageInfo.cpp" line="14 06"/>6739 <location filename="../VBoxManageInfo.cpp" line="1439"/> 6414 6740 <source>3D Acceleration:</source> 6415 6741 <translation>3D Ускорение:</translation> 6416 6742 </message> 6417 6743 <message> 6418 <location filename="../VBoxManageInfo.cpp" line="14 08"/>6744 <location filename="../VBoxManageInfo.cpp" line="1441"/> 6419 6745 <source>2D Video Acceleration:</source> 6420 6746 <translation>2D Видео Ускорение:</translation> 6421 6747 </message> 6422 6748 <message> 6423 <location filename="../VBoxManageInfo.cpp" line="14 10"/>6749 <location filename="../VBoxManageInfo.cpp" line="1443"/> 6424 6750 <source>Teleporter Enabled:</source> 6425 6751 <translation>Телепортер включен:</translation> 6426 6752 </message> 6427 6753 <message> 6428 <location filename="../VBoxManageInfo.cpp" line="14 11"/>6754 <location filename="../VBoxManageInfo.cpp" line="1444"/> 6429 6755 <source>Teleporter Port:</source> 6430 6756 <translation>Порт телепортера:</translation> 6431 6757 </message> 6432 6758 <message> 6433 <location filename="../VBoxManageInfo.cpp" line="14 12"/>6759 <location filename="../VBoxManageInfo.cpp" line="1445"/> 6434 6760 <source>Teleporter Address:</source> 6435 6761 <translation>Адрес телепортера:</translation> 6436 6762 </message> 6437 6763 <message> 6438 <location filename="../VBoxManageInfo.cpp" line="14 13"/>6764 <location filename="../VBoxManageInfo.cpp" line="1446"/> 6439 6765 <source>Teleporter Password:</source> 6440 6766 <translation>Пароль телепортера:</translation> 6441 6767 </message> 6442 6768 <message> 6443 <location filename="../VBoxManageInfo.cpp" line="14 14"/>6769 <location filename="../VBoxManageInfo.cpp" line="1447"/> 6444 6770 <source>Tracing Enabled:</source> 6445 6771 <translation>Трассировка включена:</translation> 6446 6772 </message> 6447 6773 <message> 6448 <location filename="../VBoxManageInfo.cpp" line="14 15"/>6774 <location filename="../VBoxManageInfo.cpp" line="1448"/> 6449 6775 <source>Allow Tracing to Access VM:</source> 6450 6776 <translation>Разрешить трассировке доступ к ВМ:</translation> 6451 6777 </message> 6452 6778 <message> 6453 <location filename="../VBoxManageInfo.cpp" line="14 16"/>6779 <location filename="../VBoxManageInfo.cpp" line="1449"/> 6454 6780 <source>Tracing Configuration:</source> 6455 6781 <translation>Конфигурация трассировки:</translation> 6456 6782 </message> 6457 6783 <message> 6458 <location filename="../VBoxManageInfo.cpp" line="14 17"/>6784 <location filename="../VBoxManageInfo.cpp" line="1450"/> 6459 6785 <source>Autostart Enabled:</source> 6460 6786 <translation>Автостарт включен:</translation> 6461 6787 </message> 6462 6788 <message> 6463 <location filename="../VBoxManageInfo.cpp" line="14 18"/>6789 <location filename="../VBoxManageInfo.cpp" line="1451"/> 6464 6790 <source>Autostart Delay:</source> 6465 6791 <translation>Задержка автостарта:</translation> 6466 6792 </message> 6467 6793 <message> 6468 <location filename="../VBoxManageInfo.cpp" line="14 19"/>6794 <location filename="../VBoxManageInfo.cpp" line="1452"/> 6469 6795 <source>Default Frontend:</source> 6470 6796 <translation>Фронтэнд по умолчанию:</translation> 6471 6797 </message> 6472 6798 <message> 6473 <location filename="../VBoxManageInfo.cpp" line="14 30"/>6799 <location filename="../VBoxManageInfo.cpp" line="1463"/> 6474 6800 <source>flat</source> 6475 6801 <translation>равномерный</translation> 6476 6802 </message> 6477 6803 <message> 6478 <location filename="../VBoxManageInfo.cpp" line="14 36"/>6804 <location filename="../VBoxManageInfo.cpp" line="1469"/> 6479 6805 <source>low</source> 6480 6806 <translation>низкий</translation> 6481 6807 </message> 6482 6808 <message> 6483 <location filename="../VBoxManageInfo.cpp" line="14 42"/>6809 <location filename="../VBoxManageInfo.cpp" line="1475"/> 6484 6810 <source>normal</source> 6485 6811 <translation>нормальный</translation> 6486 6812 </message> 6487 6813 <message> 6488 <location filename="../VBoxManageInfo.cpp" line="14 48"/>6814 <location filename="../VBoxManageInfo.cpp" line="1481"/> 6489 6815 <source>high</source> 6490 6816 <translation>высокий</translation> 6491 6817 </message> 6492 6818 <message> 6493 <location filename="../VBoxManageInfo.cpp" line="14 54"/>6819 <location filename="../VBoxManageInfo.cpp" line="1487"/> 6494 6820 <source>default</source> 6495 6821 <translation>по умолчанию</translation> 6496 6822 </message> 6497 6823 <message> 6498 <location filename="../VBoxManageInfo.cpp" line="14 57"/>6824 <location filename="../VBoxManageInfo.cpp" line="1490"/> 6499 6825 <source>VM process priority:</source> 6500 6826 <translation>Приоритет процесса ВМ:</translation> 6501 6827 </message> 6502 6828 <message> 6503 <location filename="../VBoxManageInfo.cpp" line="28 46"/>6829 <location filename="../VBoxManageInfo.cpp" line="2881"/> 6504 6830 <source>VMMDev Testing</source> 6505 6831 <translation>Тестирование VMMDev</translation> 6506 6832 </message> 6507 6833 <message> 6508 <location filename="../VBoxManageInfo.cpp" line="28 47"/>6509 <location filename="../VBoxManageInfo.cpp" line="28 49"/>6834 <location filename="../VBoxManageInfo.cpp" line="2882"/> 6835 <location filename="../VBoxManageInfo.cpp" line="2884"/> 6510 6836 <source>misconfigured</source> 6511 6837 <translation>неправильно настроен</translation> 6512 6838 </message> 6513 6839 <message> 6514 <location filename="../VBoxManageInfo.cpp" line="2 872"/>6840 <location filename="../VBoxManageInfo.cpp" line="2907"/> 6515 6841 <source>* Snapshots: 6516 6842 </source> … … 6519 6845 </message> 6520 6846 <message> 6521 <location filename="../VBoxManageInfo.cpp" line="2 881"/>6847 <location filename="../VBoxManageInfo.cpp" line="2916"/> 6522 6848 <source>* Guest: 6523 6849 </source> … … 6526 6852 </message> 6527 6853 <message> 6528 <location filename="../VBoxManageInfo.cpp" line="29 18"/>6529 <location filename="../VBoxManageInfo.cpp" line="29 50"/>6854 <location filename="../VBoxManageInfo.cpp" line="2953"/> 6855 <location filename="../VBoxManageInfo.cpp" line="2985"/> 6530 6856 <source>Guest Facilities:</source> 6531 6857 <translation>Средства гостевой системы:</translation> 6532 6858 </message> 6533 6859 <message> 6534 <location filename="../VBoxManageInfo.cpp" line="18 55"/>6535 <location filename="../VBoxManageInfo.cpp" line="18 56"/>6536 <location filename="../VBoxManageInfo.cpp" line="24 17"/>6537 <location filename="../VBoxManageInfo.cpp" line="24 18"/>6860 <location filename="../VBoxManageInfo.cpp" line="1890"/> 6861 <location filename="../VBoxManageInfo.cpp" line="1891"/> 6862 <location filename="../VBoxManageInfo.cpp" line="2452"/> 6863 <location filename="../VBoxManageInfo.cpp" line="2453"/> 6538 6864 <source>on</source> 6539 6865 <translation>вкл</translation> 6540 6866 </message> 6541 6867 <message> 6542 <location filename="../VBoxManageInfo.cpp" line="18 55"/>6543 <location filename="../VBoxManageInfo.cpp" line="18 56"/>6544 <location filename="../VBoxManageInfo.cpp" line="24 17"/>6545 <location filename="../VBoxManageInfo.cpp" line="24 18"/>6868 <location filename="../VBoxManageInfo.cpp" line="1890"/> 6869 <location filename="../VBoxManageInfo.cpp" line="1891"/> 6870 <location filename="../VBoxManageInfo.cpp" line="2452"/> 6871 <location filename="../VBoxManageInfo.cpp" line="2453"/> 6546 6872 <source>off</source> 6547 6873 <translation>выкл</translation> 6548 6874 </message> 6549 6875 <message> 6550 <location filename="../VBoxManageInfo.cpp" line="15 28"/>6876 <location filename="../VBoxManageInfo.cpp" line="1561"/> 6551 6877 <source>NIC %u:</source> 6552 6878 <translation>NIC %u:</translation> 6553 6879 </message> 6554 6880 <message> 6555 <location filename="../VBoxManageInfo.cpp" line="1537"/> 6556 <location filename="../VBoxManageInfo.cpp" line="1957"/> 6557 <location filename="../VBoxManageInfo.cpp" line="2063"/> 6558 <location filename="../VBoxManageInfo.cpp" line="2424"/> 6559 <location filename="../VBoxManageInfo.cpp" line="2456"/> 6881 <location filename="../VBoxManageInfo.cpp" line="732"/> 6882 <source>#%zu: Name: '%ls', Type: %s, Limit: none (disabled) 6883 </source> 6884 <translation type="unfinished"></translation> 6885 </message> 6886 <message> 6887 <location filename="../VBoxManageInfo.cpp" line="780"/> 6888 <source>#%zu: Name: '%ls', Type: %s, Limit: %RI64 %s (%RI64 %s) 6889 </source> 6890 <translation type="unfinished"></translation> 6891 </message> 6892 <message> 6893 <location filename="../VBoxManageInfo.cpp" line="784"/> 6894 <source>#%zu: Name: '%ls', Type: %s, Limit: %RI64 %s 6895 </source> 6896 <translation type="unfinished"></translation> 6897 </message> 6898 <message> 6899 <location filename="../VBoxManageInfo.cpp" line="920"/> 6900 <source> Port %u, Unit %u: UUID: %ls%s%s%s%s%s%s 6901 Location: "%ls" 6902 </source> 6903 <translation type="unfinished"></translation> 6904 </message> 6905 <message> 6906 <location filename="../VBoxManageInfo.cpp" line="1570"/> 6907 <location filename="../VBoxManageInfo.cpp" line="1992"/> 6908 <location filename="../VBoxManageInfo.cpp" line="2098"/> 6909 <location filename="../VBoxManageInfo.cpp" line="2459"/> 6910 <location filename="../VBoxManageInfo.cpp" line="2491"/> 6560 6911 <source>%-28s disabled 6561 6912 </source> … … 6564 6915 </message> 6565 6916 <message> 6566 <location filename="../VBoxManageInfo.cpp" line="15 54"/>6567 <location filename="../VBoxManageInfo.cpp" line="18 57"/>6568 <location filename="../VBoxManageInfo.cpp" line="18 62"/>6917 <location filename="../VBoxManageInfo.cpp" line="1587"/> 6918 <location filename="../VBoxManageInfo.cpp" line="1892"/> 6919 <location filename="../VBoxManageInfo.cpp" line="1897"/> 6569 6920 <source>none</source> 6570 6921 <translation>нет</translation> 6571 6922 </message> 6572 6923 <message> 6573 <location filename="../VBoxManageInfo.cpp" line="16 22"/>6924 <location filename="../VBoxManageInfo.cpp" line="1655"/> 6574 6925 <source>%sNIC %d Rule(%d): name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s 6575 6926 </source> … … 6578 6929 </message> 6579 6930 <message> 6580 <location filename="../VBoxManageInfo.cpp" line="16 45"/>6931 <location filename="../VBoxManageInfo.cpp" line="1678"/> 6581 6932 <source>NIC %d Settings: MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d) 6582 6933 </source> … … 6585 6936 </message> 6586 6937 <message> 6587 <location filename="../VBoxManageInfo.cpp" line="16 61"/>6938 <location filename="../VBoxManageInfo.cpp" line="1694"/> 6588 6939 <source>Bridged Interface '%ls'</source> 6589 6940 <translation>Интерфейс Сетевого Моста '%ls'</translation> 6590 6941 </message> 6591 6942 <message> 6592 <location filename="../VBoxManageInfo.cpp" line="1 675"/>6943 <location filename="../VBoxManageInfo.cpp" line="1708"/> 6593 6944 <source>Internal Network '%s'</source> 6594 6945 <translation>Внутренняя Сеть '%s'</translation> 6595 6946 </message> 6596 6947 <message> 6597 <location filename="../VBoxManageInfo.cpp" line="1 689"/>6948 <location filename="../VBoxManageInfo.cpp" line="1722"/> 6598 6949 <source>Host-only Interface '%ls'</source> 6599 6950 <translation>Интерфейс Виртуальной Сети '%s'</translation> 6600 6951 </message> 6601 6952 <message> 6602 <location filename="../VBoxManageInfo.cpp" line="17 04"/>6953 <location filename="../VBoxManageInfo.cpp" line="1737"/> 6603 6954 <source>Generic '%ls'</source> 6604 6955 <translation>Общий '%ls'</translation> 6605 6956 </message> 6606 6957 <message> 6607 <location filename="../VBoxManageInfo.cpp" line="17 33"/>6958 <location filename="../VBoxManageInfo.cpp" line="1766"/> 6608 6959 <source>NAT Network '%s'</source> 6609 6960 <translation>Сеть NAT '%s'</translation> 6610 6961 </message> 6611 6962 <message> 6612 <location filename="../VBoxManageInfo.cpp" line="17 48"/>6963 <location filename="../VBoxManageInfo.cpp" line="1781"/> 6613 6964 <source>Host Only Network '%s'</source> 6614 6965 <translation>Виртуальная Сеть '%s'</translation> 6615 6966 </message> 6616 6967 <message> 6617 <location filename="../VBoxManageInfo.cpp" line="17 64"/>6968 <location filename="../VBoxManageInfo.cpp" line="1797"/> 6618 6969 <source>Cloud Network '%s'</source> 6619 6970 <translation>Облачная Сеть '%s'</translation> 6620 6971 </message> 6621 6972 <message> 6622 <location filename="../VBoxManageInfo.cpp" line="1 787"/>6973 <location filename="../VBoxManageInfo.cpp" line="1820"/> 6623 6974 <source>deny</source> 6624 6975 <translation>запретить</translation> 6625 6976 </message> 6626 6977 <message> 6627 <location filename="../VBoxManageInfo.cpp" line="1 788"/>6978 <location filename="../VBoxManageInfo.cpp" line="1821"/> 6628 6979 <source>allow-vms</source> 6629 6980 <translation>разрешить вм</translation> 6630 6981 </message> 6631 6982 <message> 6632 <location filename="../VBoxManageInfo.cpp" line="1 789"/>6983 <location filename="../VBoxManageInfo.cpp" line="1822"/> 6633 6984 <source>allow-all</source> 6634 6985 <translation>разрешить всем</translation> 6635 6986 </message> 6636 6987 <message> 6637 <location filename="../VBoxManageInfo.cpp" line="18 53"/>6988 <location filename="../VBoxManageInfo.cpp" line="1888"/> 6638 6989 <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls 6639 6990 </source> … … 6642 6993 </message> 6643 6994 <message> 6644 <location filename="../VBoxManageInfo.cpp" line="1 883"/>6995 <location filename="../VBoxManageInfo.cpp" line="1918"/> 6645 6996 <source>PS/2 Mouse</source> 6646 6997 <translation>PS/2 Мышь</translation> 6647 6998 </message> 6648 6999 <message> 6649 <location filename="../VBoxManageInfo.cpp" line="1 887"/>7000 <location filename="../VBoxManageInfo.cpp" line="1922"/> 6650 7001 <source>USB Mouse</source> 6651 7002 <translation>USB Мышь</translation> 6652 7003 </message> 6653 7004 <message> 6654 <location filename="../VBoxManageInfo.cpp" line="1 891"/>7005 <location filename="../VBoxManageInfo.cpp" line="1926"/> 6655 7006 <source>USB Tablet</source> 6656 7007 <translation>USB Планшет</translation> 6657 7008 </message> 6658 7009 <message> 6659 <location filename="../VBoxManageInfo.cpp" line="1 895"/>7010 <location filename="../VBoxManageInfo.cpp" line="1930"/> 6660 7011 <source>USB Tablet and PS/2 Mouse</source> 6661 7012 <translation>USB Планшет и PS/2 Мышь</translation> 6662 7013 </message> 6663 7014 <message> 6664 <location filename="../VBoxManageInfo.cpp" line="1 899"/>7015 <location filename="../VBoxManageInfo.cpp" line="1934"/> 6665 7016 <source>USB Multi-Touch</source> 6666 7017 <translation>USB Мультитач</translation> 6667 7018 </message> 6668 7019 <message> 6669 <location filename="../VBoxManageInfo.cpp" line="19 05"/>7020 <location filename="../VBoxManageInfo.cpp" line="1940"/> 6670 7021 <source>Pointing Device:</source> 6671 7022 <translation>Указательное Устройство:</translation> 6672 7023 </message> 6673 7024 <message> 6674 <location filename="../VBoxManageInfo.cpp" line="19 19"/>7025 <location filename="../VBoxManageInfo.cpp" line="1954"/> 6675 7026 <source>PS/2 Keyboard</source> 6676 7027 <translation>PS/2 Клавиатура</translation> 6677 7028 </message> 6678 7029 <message> 6679 <location filename="../VBoxManageInfo.cpp" line="19 23"/>7030 <location filename="../VBoxManageInfo.cpp" line="1958"/> 6680 7031 <source>USB Keyboard</source> 6681 7032 <translation>USB Клавиатура</translation> 6682 7033 </message> 6683 7034 <message> 6684 <location filename="../VBoxManageInfo.cpp" line="19 27"/>7035 <location filename="../VBoxManageInfo.cpp" line="1962"/> 6685 7036 <source>USB and PS/2 Keyboard</source> 6686 7037 <translation>USB и PS/2 Клавиатура</translation> 6687 7038 </message> 6688 7039 <message> 6689 <location filename="../VBoxManageInfo.cpp" line="19 33"/>7040 <location filename="../VBoxManageInfo.cpp" line="1968"/> 6690 7041 <source>Keyboard Device:</source> 6691 7042 <translation>Клавиатура:</translation> 6692 7043 </message> 6693 7044 <message> 6694 <location filename="../VBoxManageInfo.cpp" line="19 47"/>7045 <location filename="../VBoxManageInfo.cpp" line="1982"/> 6695 7046 <source>UART %u:</source> 6696 7047 <translation>UART %u:</translation> 6697 7048 </message> 6698 7049 <message> 6699 <location filename="../VBoxManageInfo.cpp" line=" 1976"/>6700 <location filename="../VBoxManageInfo.cpp" line="2 076"/>7050 <location filename="../VBoxManageInfo.cpp" line="2011"/> 7051 <location filename="../VBoxManageInfo.cpp" line="2111"/> 6701 7052 <source>%-28s I/O base: %#06x, IRQ: %d</source> 6702 7053 <translation>%-28s База I/O: %#06x, IRQ: %d</translation> 6703 7054 </message> 6704 7055 <message> 6705 <location filename="../VBoxManageInfo.cpp" line=" 1984"/>7056 <location filename="../VBoxManageInfo.cpp" line="2019"/> 6706 7057 <source>, disconnected</source> 6707 7058 <translation>, отсоединен</translation> 6708 7059 </message> 6709 7060 <message> 6710 <location filename="../VBoxManageInfo.cpp" line=" 1991"/>7061 <location filename="../VBoxManageInfo.cpp" line="2026"/> 6711 7062 <source>, attached to raw file '%ls' 6712 7063 </source> … … 6715 7066 </message> 6716 7067 <message> 6717 <location filename="../VBoxManageInfo.cpp" line=" 1999"/>7068 <location filename="../VBoxManageInfo.cpp" line="2034"/> 6718 7069 <source>, attached to tcp (%s) '%ls'</source> 6719 7070 <translation>, подключен к tcp (%s) '%ls'</translation> 6720 7071 </message> 6721 7072 <message> 6722 <location filename="../VBoxManageInfo.cpp" line="20 00"/>6723 <location filename="../VBoxManageInfo.cpp" line="20 08"/>7073 <location filename="../VBoxManageInfo.cpp" line="2035"/> 7074 <location filename="../VBoxManageInfo.cpp" line="2043"/> 6724 7075 <source>server</source> 6725 7076 <translation>сервер</translation> 6726 7077 </message> 6727 7078 <message> 6728 <location filename="../VBoxManageInfo.cpp" line="20 00"/>6729 <location filename="../VBoxManageInfo.cpp" line="20 08"/>7079 <location filename="../VBoxManageInfo.cpp" line="2035"/> 7080 <location filename="../VBoxManageInfo.cpp" line="2043"/> 6730 7081 <source>client</source> 6731 7082 <translation>клиент</translation> 6732 7083 </message> 6733 7084 <message> 6734 <location filename="../VBoxManageInfo.cpp" line="20 07"/>7085 <location filename="../VBoxManageInfo.cpp" line="2042"/> 6735 7086 <source>, attached to pipe (%s) '%ls'</source> 6736 7087 <translation>, подключен к pipe (%s) '%ls'</translation> 6737 7088 </message> 6738 7089 <message> 6739 <location filename="../VBoxManageInfo.cpp" line="20 15"/>7090 <location filename="../VBoxManageInfo.cpp" line="2050"/> 6740 7091 <source>, attached to device '%ls'</source> 6741 7092 <translation>, подключен к устройству '%ls'</translation> 6742 7093 </message> 6743 7094 <message> 6744 <location filename="../VBoxManageInfo.cpp" line="20 53"/>7095 <location filename="../VBoxManageInfo.cpp" line="2088"/> 6745 7096 <source>LPT %u:</source> 6746 7097 <translation>LPT %u:</translation> 6747 7098 </message> 6748 7099 <message> 6749 <location filename="../VBoxManageInfo.cpp" line="2 080"/>7100 <location filename="../VBoxManageInfo.cpp" line="2115"/> 6750 7101 <source>, attached to device '%ls' 6751 7102 </source> … … 6754 7105 </message> 6755 7106 <message> 6756 <location filename="../VBoxManageInfo.cpp" line="22 05"/>7107 <location filename="../VBoxManageInfo.cpp" line="2240"/> 6757 7108 <source>Audio:</source> 6758 7109 <translation>Аудио:</translation> 6759 7110 </message> 6760 7111 <message> 6761 <location filename="../VBoxManageInfo.cpp" line="22 07"/>7112 <location filename="../VBoxManageInfo.cpp" line="2242"/> 6762 7113 <source> (Driver: %s, Controller: %s, Codec: %s)</source> 6763 7114 <translation> (Драйвер: %s, Контроллер: %s, Кодек: %s)</translation> 6764 7115 </message> 6765 7116 <message> 6766 <location filename="../VBoxManageInfo.cpp" line="22 10"/>7117 <location filename="../VBoxManageInfo.cpp" line="2245"/> 6767 7118 <source>Audio playback:</source> 6768 7119 <translation>Аудио воспроизведение:</translation> 6769 7120 </message> 6770 7121 <message> 6771 <location filename="../VBoxManageInfo.cpp" line="22 11"/>7122 <location filename="../VBoxManageInfo.cpp" line="2246"/> 6772 7123 <source>Audio capture:</source> 6773 7124 <translation>Аудио захват:</translation> 6774 7125 </message> 6775 7126 <message> 6776 <location filename="../VBoxManageInfo.cpp" line="22 25"/>6777 <location filename="../VBoxManageInfo.cpp" line="22 54"/>7127 <location filename="../VBoxManageInfo.cpp" line="2260"/> 7128 <location filename="../VBoxManageInfo.cpp" line="2289"/> 6778 7129 <source>HostToGuest</source> 6779 7130 <translation>Хост->Гость</translation> 6780 7131 </message> 6781 7132 <message> 6782 <location filename="../VBoxManageInfo.cpp" line="22 28"/>6783 <location filename="../VBoxManageInfo.cpp" line="22 57"/>7133 <location filename="../VBoxManageInfo.cpp" line="2263"/> 7134 <location filename="../VBoxManageInfo.cpp" line="2292"/> 6784 7135 <source>GuestToHost</source> 6785 7136 <translation>Гость->Хост</translation> 6786 7137 </message> 6787 7138 <message> 6788 <location filename="../VBoxManageInfo.cpp" line="22 31"/>6789 <location filename="../VBoxManageInfo.cpp" line="22 60"/>7139 <location filename="../VBoxManageInfo.cpp" line="2266"/> 7140 <location filename="../VBoxManageInfo.cpp" line="2295"/> 6790 7141 <source>Bidirectional</source> 6791 7142 <translation>Двунаправленный</translation> 6792 7143 </message> 6793 7144 <message> 6794 <location filename="../VBoxManageInfo.cpp" line="22 37"/>7145 <location filename="../VBoxManageInfo.cpp" line="2272"/> 6795 7146 <source>Clipboard Mode:</source> 6796 7147 <translation>Режим буфера обмена:</translation> 6797 7148 </message> 6798 7149 <message> 6799 <location filename="../VBoxManageInfo.cpp" line="22 39"/>7150 <location filename="../VBoxManageInfo.cpp" line="2274"/> 6800 7151 <source>Clipboard file transfers:</source> 6801 7152 <translation>Передача файлов через буфер обмена:</translation> 6802 7153 </message> 6803 7154 <message> 6804 <location filename="../VBoxManageInfo.cpp" line="2 266"/>7155 <location filename="../VBoxManageInfo.cpp" line="2301"/> 6805 7156 <source>Drag and drop Mode:</source> 6806 7157 <translation>Режим Drag and Drop:</translation> 6807 7158 </message> 6808 7159 <message> 6809 <location filename="../VBoxManageInfo.cpp" line="2 277"/>7160 <location filename="../VBoxManageInfo.cpp" line="2312"/> 6810 7161 <source>Session name:</source> 6811 7162 <translation>Имя сессии:</translation> 6812 7163 </message> 6813 7164 <message> 6814 <location filename="../VBoxManageInfo.cpp" line="23 10"/>7165 <location filename="../VBoxManageInfo.cpp" line="2345"/> 6815 7166 <source>unknown status</source> 6816 7167 <translation>неизвестный статус</translation> 6817 7168 </message> 6818 7169 <message> 6819 <location filename="../VBoxManageInfo.cpp" line="23 13"/>7170 <location filename="../VBoxManageInfo.cpp" line="2348"/> 6820 7171 <source>blank</source> 6821 7172 <translation>пустой</translation> 6822 7173 </message> 6823 7174 <message> 6824 <location filename="../VBoxManageInfo.cpp" line="23 18"/>7175 <location filename="../VBoxManageInfo.cpp" line="2353"/> 6825 7176 <source>Video mode:</source> 6826 7177 <translation>Видео режим:</translation> 6827 7178 </message> 6828 7179 <message> 6829 <location filename="../VBoxManageInfo.cpp" line="23 59"/>7180 <location filename="../VBoxManageInfo.cpp" line="2394"/> 6830 7181 <source>null</source> 6831 7182 <translation>пусто</translation> 6832 7183 </message> 6833 7184 <message> 6834 <location filename="../VBoxManageInfo.cpp" line="2 365"/>7185 <location filename="../VBoxManageInfo.cpp" line="2400"/> 6835 7186 <source>external</source> 6836 7187 <translation>внешний</translation> 6837 7188 </message> 6838 7189 <message> 6839 <location filename="../VBoxManageInfo.cpp" line="2 371"/>7190 <location filename="../VBoxManageInfo.cpp" line="2406"/> 6840 7191 <source>guest</source> 6841 7192 <translation>гостевой</translation> 6842 7193 </message> 6843 7194 <message> 6844 <location filename="../VBoxManageInfo.cpp" line="24 16"/>7195 <location filename="../VBoxManageInfo.cpp" line="2451"/> 6845 7196 <source>%-28s enabled (Address %ls, Ports %ls, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s) 6846 7197 </source> … … 6849 7200 </message> 6850 7201 <message> 6851 <location filename="../VBoxManageInfo.cpp" line="24 20"/>7202 <location filename="../VBoxManageInfo.cpp" line="2455"/> 6852 7203 <source>VRDE port:</source> 6853 7204 <translation>Порт VRDE:</translation> 6854 7205 </message> 6855 7206 <message> 6856 <location filename="../VBoxManageInfo.cpp" line="24 22"/>7207 <location filename="../VBoxManageInfo.cpp" line="2457"/> 6857 7208 <source>%-28s enabled (Quality %ls) 6858 7209 </source> … … 6861 7212 </message> 6862 7213 <message> 6863 <location filename="../VBoxManageInfo.cpp" line="24 22"/>6864 <location filename="../VBoxManageInfo.cpp" line="24 24"/>7214 <location filename="../VBoxManageInfo.cpp" line="2457"/> 7215 <location filename="../VBoxManageInfo.cpp" line="2459"/> 6865 7216 <source>Video redirection:</source> 6866 7217 <translation>Видео перенаправление:</translation> 6867 7218 </message> 6868 7219 <message> 6869 <location filename="../VBoxManageInfo.cpp" line="24 44"/>7220 <location filename="../VBoxManageInfo.cpp" line="2479"/> 6870 7221 <source>%-28s: %-10lS = <not set> 6871 7222 </source> … … 6874 7225 </message> 6875 7226 <message> 6876 <location filename="../VBoxManageInfo.cpp" line="24 44"/>6877 <location filename="../VBoxManageInfo.cpp" line="24 46"/>7227 <location filename="../VBoxManageInfo.cpp" line="2479"/> 7228 <location filename="../VBoxManageInfo.cpp" line="2481"/> 6878 7229 <source>VRDE property</source> 6879 7230 <translation>Свойство VRDE</translation> 6880 7231 </message> 6881 7232 <message> 6882 <location filename="../VBoxManageInfo.cpp" line="25 17"/>7233 <location filename="../VBoxManageInfo.cpp" line="2552"/> 6883 7234 <source>Index:</source> 6884 7235 <translation>Индекс:</translation> 6885 7236 </message> 6886 7237 <message> 6887 <location filename="../VBoxManageInfo.cpp" line="25 18"/>7238 <location filename="../VBoxManageInfo.cpp" line="2553"/> 6888 7239 <source>yes</source> 6889 7240 <translation>да</translation> 6890 7241 </message> 6891 7242 <message> 6892 <location filename="../VBoxManageInfo.cpp" line="25 18"/>7243 <location filename="../VBoxManageInfo.cpp" line="2553"/> 6893 7244 <source>no</source> 6894 7245 <translation>нет</translation> 6895 7246 </message> 6896 7247 <message> 6897 <location filename="../VBoxManageInfo.cpp" line="8 27"/>7248 <location filename="../VBoxManageInfo.cpp" line="840"/> 6898 7249 <source>VendorId:</source> 6899 7250 <translation>ID поставщика:</translation> 6900 7251 </message> 6901 7252 <message> 6902 <location filename="../VBoxManageInfo.cpp" line="8 28"/>7253 <location filename="../VBoxManageInfo.cpp" line="841"/> 6903 7254 <source>ProductId:</source> 6904 7255 <translation>ID продукта:</translation> 6905 7256 </message> 6906 7257 <message> 6907 <location filename="../VBoxManageInfo.cpp" line="8 37"/>7258 <location filename="../VBoxManageInfo.cpp" line="850"/> 6908 7259 <source>Revision:</source> 6909 7260 <translation>Ревизия:</translation> 6910 7261 </message> 6911 7262 <message> 6912 <location filename="../VBoxManageInfo.cpp" line="8 39"/>7263 <location filename="../VBoxManageInfo.cpp" line="852"/> 6913 7264 <source>Manufacturer:</source> 6914 7265 <translation>Производитель:</translation> 6915 7266 </message> 6916 7267 <message> 6917 <location filename="../VBoxManageInfo.cpp" line="8 40"/>7268 <location filename="../VBoxManageInfo.cpp" line="853"/> 6918 7269 <source>Product:</source> 6919 7270 <translation>Продукт:</translation> 6920 7271 </message> 6921 7272 <message> 6922 <location filename="../VBoxManageInfo.cpp" line="25 32"/>7273 <location filename="../VBoxManageInfo.cpp" line="2567"/> 6923 7274 <source>Masked Interfaces:</source> 6924 7275 <translation>Скрытые Интерфейсы:</translation> 6925 7276 </message> 6926 7277 <message> 6927 <location filename="../VBoxManageInfo.cpp" line="8 41"/>7278 <location filename="../VBoxManageInfo.cpp" line="854"/> 6928 7279 <source>SerialNumber:</source> 6929 7280 <translation>Серийный Номер:</translation> 6930 7281 </message> 6931 7282 <message> 6932 <location filename="../VBoxManageInfo.cpp" line="8 42"/>7283 <location filename="../VBoxManageInfo.cpp" line="855"/> 6933 7284 <source>Address:</source> 6934 7285 <translation>Адрес:</translation> 6935 7286 </message> 6936 7287 <message> 6937 <location filename="../VBoxManageInfo.cpp" line="2 569"/>7288 <location filename="../VBoxManageInfo.cpp" line="2604"/> 6938 7289 <source> 6939 7290 Attached physical PCI devices: … … 6946 7297 </message> 6947 7298 <message> 6948 <location filename="../VBoxManageInfo.cpp" line="2 588"/>7299 <location filename="../VBoxManageInfo.cpp" line="2623"/> 6949 7300 <source> Host device %ls at %s attached as %s 6950 7301 </source> … … 6953 7304 </message> 6954 7305 <message> 6955 <location filename="../VBoxManageInfo.cpp" line="26 17"/>7306 <location filename="../VBoxManageInfo.cpp" line="2652"/> 6956 7307 <source>Shared folders:</source> 6957 7308 <translation>Общие Папки:</translation> 6958 7309 </message> 6959 7310 <message> 6960 <location filename="../VBoxManageInfo.cpp" line="26 27"/>7311 <location filename="../VBoxManageInfo.cpp" line="2662"/> 6961 7312 <source>global mapping</source> 6962 7313 <translation>глобальное отображение</translation> 6963 7314 </message> 6964 7315 <message> 6965 <location filename="../VBoxManageInfo.cpp" line="26 39"/>7316 <location filename="../VBoxManageInfo.cpp" line="2674"/> 6966 7317 <source>machine mapping</source> 6967 7318 <translation>машинное отображение</translation> 6968 7319 </message> 6969 7320 <message> 6970 <location filename="../VBoxManageInfo.cpp" line="26 51"/>7321 <location filename="../VBoxManageInfo.cpp" line="2686"/> 6971 7322 <source>transient mapping</source> 6972 7323 <translation>временное отображение</translation> 6973 7324 </message> 6974 7325 <message> 6975 <location filename="../VBoxManageInfo.cpp" line="7 73"/>6976 <location filename="../VBoxManageInfo.cpp" line="26 58"/>7326 <location filename="../VBoxManageInfo.cpp" line="709"/> 7327 <location filename="../VBoxManageInfo.cpp" line="2693"/> 6977 7328 <source><none> 6978 7329 </source> … … 6981 7332 </message> 6982 7333 <message> 6983 <location filename="../VBoxManageInfo.cpp" line="1 469"/>6984 <location filename="../VBoxManageInfo.cpp" line="15 09"/>7334 <location filename="../VBoxManageInfo.cpp" line="1502"/> 7335 <location filename="../VBoxManageInfo.cpp" line="1542"/> 6985 7336 <source>Storage Controllers:</source> 6986 7337 <translation>Контроллеры носителей:</translation> 6987 7338 </message> 6988 7339 <message> 6989 <location filename="../VBoxManageInfo.cpp" line="1 499"/>7340 <location filename="../VBoxManageInfo.cpp" line="1532"/> 6990 7341 <source>#%u: '%ls', Type: %s, Instance: %u, Ports: %u (max %u), %s 6991 7342 </source> … … 6994 7345 </message> 6995 7346 <message> 6996 <location filename="../VBoxManageInfo.cpp" line="15 01"/>7347 <location filename="../VBoxManageInfo.cpp" line="1534"/> 6997 7348 <source>Bootable</source> 6998 7349 <translation>Загрузочный</translation> 6999 7350 </message> 7000 7351 <message> 7001 <location filename="../VBoxManageInfo.cpp" line="15 01"/>7352 <location filename="../VBoxManageInfo.cpp" line="1534"/> 7002 7353 <source>Not bootable</source> 7003 7354 <translation>Незагрузочный</translation> 7004 7355 </message> 7005 7356 <message> 7006 <location filename="../VBoxManageInfo.cpp" line="25 11"/>7357 <location filename="../VBoxManageInfo.cpp" line="2546"/> 7007 7358 <source>USB Device Filters: 7008 7359 </source> … … 7011 7362 </message> 7012 7363 <message> 7013 <location filename="../VBoxManageInfo.cpp" line="25 18"/>7364 <location filename="../VBoxManageInfo.cpp" line="2553"/> 7014 7365 <source> Active:</source> 7015 7366 <translation> Активно:</translation> 7016 7367 </message> 7017 7368 <message> 7018 <location filename="../VBoxManageInfo.cpp" line="25 19"/>7369 <location filename="../VBoxManageInfo.cpp" line="2554"/> 7019 7370 <source> Name:</source> 7020 7371 <translation> Имя:</translation> 7021 7372 </message> 7022 7373 <message> 7023 <location filename="../VBoxManageInfo.cpp" line="25 20"/>7374 <location filename="../VBoxManageInfo.cpp" line="2555"/> 7024 7375 <source> VendorId:</source> 7025 7376 <translation> ID поставщика:</translation> 7026 7377 </message> 7027 7378 <message> 7028 <location filename="../VBoxManageInfo.cpp" line="25 21"/>7379 <location filename="../VBoxManageInfo.cpp" line="2556"/> 7029 7380 <source> ProductId:</source> 7030 7381 <translation> ID продукта:</translation> 7031 7382 </message> 7032 7383 <message> 7033 <location filename="../VBoxManageInfo.cpp" line="25 22"/>7384 <location filename="../VBoxManageInfo.cpp" line="2557"/> 7034 7385 <source> Revision:</source> 7035 7386 <translation> Ревизия:</translation> 7036 7387 </message> 7037 7388 <message> 7038 <location filename="../VBoxManageInfo.cpp" line="25 23"/>7389 <location filename="../VBoxManageInfo.cpp" line="2558"/> 7039 7390 <source> Manufacturer:</source> 7040 7391 <translation> Производитель:</translation> 7041 7392 </message> 7042 7393 <message> 7043 <location filename="../VBoxManageInfo.cpp" line="25 24"/>7394 <location filename="../VBoxManageInfo.cpp" line="2559"/> 7044 7395 <source> Product:</source> 7045 7396 <translation> Продукт:</translation> 7046 7397 </message> 7047 7398 <message> 7048 <location filename="../VBoxManageInfo.cpp" line="25 25"/>7399 <location filename="../VBoxManageInfo.cpp" line="2560"/> 7049 7400 <source> Remote:</source> 7050 7401 <translation> Удаленное:</translation> 7051 7402 </message> 7052 7403 <message> 7053 <location filename="../VBoxManageInfo.cpp" line="25 26"/>7404 <location filename="../VBoxManageInfo.cpp" line="2561"/> 7054 7405 <source> Serial Number:</source> 7055 7406 <translation> Серийный номер:</translation> 7056 7407 </message> 7057 7408 <message> 7058 <location filename="../VBoxManageInfo.cpp" line="25 37"/>7409 <location filename="../VBoxManageInfo.cpp" line="2572"/> 7059 7410 <source>USB Device Filters:</source> 7060 7411 <translation>Фильтры USB устройств:</translation> 7061 7412 </message> 7062 7413 <message> 7063 <location filename="../VBoxManageInfo.cpp" line="25 45"/>7414 <location filename="../VBoxManageInfo.cpp" line="2580"/> 7064 7415 <source>Available remote USB devices:</source> 7065 7416 <translation>Доступные удаленные USB устройства:</translation> 7066 7417 </message> 7067 7418 <message> 7068 <location filename="../VBoxManageInfo.cpp" line="25 53"/>7419 <location filename="../VBoxManageInfo.cpp" line="2588"/> 7069 7420 <source>Currently attached USB devices:</source> 7070 7421 <translation>Сейчас подключенные USB устройства:</translation> 7071 7422 </message> 7072 7423 <message> 7073 <location filename="../VBoxManageInfo.cpp" line="26 04"/>7424 <location filename="../VBoxManageInfo.cpp" line="2639"/> 7074 7425 <source>Bandwidth groups:</source> 7075 7426 <translation>Группы полосы пропускания:</translation> 7076 7427 </message> 7077 7428 <message> 7078 <location filename="../VBoxManageInfo.cpp" line="27 03"/>7429 <location filename="../VBoxManageInfo.cpp" line="2738"/> 7079 7430 <source>VRDE Connection:</source> 7080 7431 <translation>VRDE Соединение:</translation> 7081 7432 </message> 7082 7433 <message> 7083 <location filename="../VBoxManageInfo.cpp" line="27 03"/>7084 <location filename="../VBoxManageInfo.cpp" line="2 793"/>7085 <location filename="../VBoxManageInfo.cpp" line="2 795"/>7434 <location filename="../VBoxManageInfo.cpp" line="2738"/> 7435 <location filename="../VBoxManageInfo.cpp" line="2828"/> 7436 <location filename="../VBoxManageInfo.cpp" line="2830"/> 7086 7437 <source>active</source> 7087 7438 <translation>активное</translation> 7088 7439 </message> 7089 7440 <message> 7090 <location filename="../VBoxManageInfo.cpp" line="27 04"/>7441 <location filename="../VBoxManageInfo.cpp" line="2739"/> 7091 7442 <source>Clients so far:</source> 7092 7443 <translation>Клиенты на данный момент:</translation> 7093 7444 </message> 7094 7445 <message> 7095 <location filename="../VBoxManageInfo.cpp" line="27 11"/>7446 <location filename="../VBoxManageInfo.cpp" line="2746"/> 7096 7447 <source>Start time:</source> 7097 7448 <translation>Время старта:</translation> 7098 7449 </message> 7099 7450 <message> 7100 <location filename="../VBoxManageInfo.cpp" line="27 14"/>7451 <location filename="../VBoxManageInfo.cpp" line="2749"/> 7101 7452 <source>Last started:</source> 7102 7453 <translation>Последний раз начато:</translation> 7103 7454 </message> 7104 7455 <message> 7105 <location filename="../VBoxManageInfo.cpp" line="27 16"/>7456 <location filename="../VBoxManageInfo.cpp" line="2751"/> 7106 7457 <source>Last ended:</source> 7107 7458 <translation>Последний раз закончено:</translation> 7108 7459 </message> 7109 7460 <message> 7110 <location filename="../VBoxManageInfo.cpp" line="27 26"/>7461 <location filename="../VBoxManageInfo.cpp" line="2761"/> 7111 7462 <source>Sent:</source> 7112 7463 <translation>Отправлено:</translation> 7113 7464 </message> 7114 7465 <message> 7115 <location filename="../VBoxManageInfo.cpp" line="27 26"/>7116 <location filename="../VBoxManageInfo.cpp" line="27 28"/>7117 <location filename="../VBoxManageInfo.cpp" line="27 30"/>7118 <location filename="../VBoxManageInfo.cpp" line="27 32"/>7466 <location filename="../VBoxManageInfo.cpp" line="2761"/> 7467 <location filename="../VBoxManageInfo.cpp" line="2763"/> 7468 <location filename="../VBoxManageInfo.cpp" line="2765"/> 7469 <location filename="../VBoxManageInfo.cpp" line="2767"/> 7119 7470 <source>Bytes</source> 7120 7471 <translation>Байт</translation> 7121 7472 </message> 7122 7473 <message> 7123 <location filename="../VBoxManageInfo.cpp" line="27 27"/>7474 <location filename="../VBoxManageInfo.cpp" line="2762"/> 7124 7475 <source>Average speed:</source> 7125 7476 <translation>Средняя скорость:</translation> 7126 7477 </message> 7127 7478 <message> 7128 <location filename="../VBoxManageInfo.cpp" line="27 27"/>7129 <location filename="../VBoxManageInfo.cpp" line="27 31"/>7479 <location filename="../VBoxManageInfo.cpp" line="2762"/> 7480 <location filename="../VBoxManageInfo.cpp" line="2766"/> 7130 7481 <source>B/s</source> 7131 7482 <translation>Б/с</translation> 7132 7483 </message> 7133 7484 <message> 7134 <location filename="../VBoxManageInfo.cpp" line="27 28"/>7485 <location filename="../VBoxManageInfo.cpp" line="2763"/> 7135 7486 <source>Sent total:</source> 7136 7487 <translation>Всего отправлено:</translation> 7137 7488 </message> 7138 7489 <message> 7139 <location filename="../VBoxManageInfo.cpp" line="27 30"/>7490 <location filename="../VBoxManageInfo.cpp" line="2765"/> 7140 7491 <source>Received:</source> 7141 7492 <translation>Получено:</translation> 7142 7493 </message> 7143 7494 <message> 7144 <location filename="../VBoxManageInfo.cpp" line="27 31"/>7495 <location filename="../VBoxManageInfo.cpp" line="2766"/> 7145 7496 <source>Speed:</source> 7146 7497 <translation>Скорость:</translation> 7147 7498 </message> 7148 7499 <message> 7149 <location filename="../VBoxManageInfo.cpp" line="27 32"/>7500 <location filename="../VBoxManageInfo.cpp" line="2767"/> 7150 7501 <source>Received total:</source> 7151 7502 <translation>Всего получено:</translation> 7152 7503 </message> 7153 7504 <message> 7154 <location filename="../VBoxManageInfo.cpp" line="27 36"/>7505 <location filename="../VBoxManageInfo.cpp" line="2771"/> 7155 7506 <source>User name:</source> 7156 7507 <translation>Имя пользователя:</translation> 7157 7508 </message> 7158 7509 <message> 7159 <location filename="../VBoxManageInfo.cpp" line="27 37"/>7510 <location filename="../VBoxManageInfo.cpp" line="2772"/> 7160 7511 <source>Domain:</source> 7161 7512 <translation>Домен:</translation> 7162 7513 </message> 7163 7514 <message> 7164 <location filename="../VBoxManageInfo.cpp" line="27 38"/>7515 <location filename="../VBoxManageInfo.cpp" line="2773"/> 7165 7516 <source>Client name:</source> 7166 7517 <translation>Имя клиента:</translation> 7167 7518 </message> 7168 7519 <message> 7169 <location filename="../VBoxManageInfo.cpp" line="27 39"/>7520 <location filename="../VBoxManageInfo.cpp" line="2774"/> 7170 7521 <source>Client IP:</source> 7171 7522 <translation>IP клиента:</translation> 7172 7523 </message> 7173 7524 <message> 7174 <location filename="../VBoxManageInfo.cpp" line="27 40"/>7525 <location filename="../VBoxManageInfo.cpp" line="2775"/> 7175 7526 <source>Client version:</source> 7176 7527 <translation>Версия клиента:</translation> 7177 7528 </message> 7178 7529 <message> 7179 <location filename="../VBoxManageInfo.cpp" line="27 41"/>7530 <location filename="../VBoxManageInfo.cpp" line="2776"/> 7180 7531 <source>Encryption:</source> 7181 7532 <translation>Шифрование:</translation> 7182 7533 </message> 7183 7534 <message> 7184 <location filename="../VBoxManageInfo.cpp" line="2 793"/>7535 <location filename="../VBoxManageInfo.cpp" line="2828"/> 7185 7536 <source>Capturing:</source> 7186 7537 <translation>Захват:</translation> 7187 7538 </message> 7188 7539 <message> 7189 <location filename="../VBoxManageInfo.cpp" line="2 795"/>7540 <location filename="../VBoxManageInfo.cpp" line="2830"/> 7190 7541 <source>Capture audio:</source> 7191 7542 <translation>Захват аудио:</translation> 7192 7543 </message> 7193 7544 <message> 7194 <location filename="../VBoxManageInfo.cpp" line="28 05"/>7545 <location filename="../VBoxManageInfo.cpp" line="2840"/> 7195 7546 <source>Capture screens:</source> 7196 7547 <translation>Захват экранов:</translation> 7197 7548 </message> 7198 7549 <message> 7199 <location filename="../VBoxManageInfo.cpp" line="28 06"/>7550 <location filename="../VBoxManageInfo.cpp" line="2841"/> 7200 7551 <source>Capture file:</source> 7201 7552 <translation>Файл захвата:</translation> 7202 7553 </message> 7203 7554 <message> 7204 <location filename="../VBoxManageInfo.cpp" line="28 08"/>7555 <location filename="../VBoxManageInfo.cpp" line="2843"/> 7205 7556 <source>Capture dimensions:</source> 7206 7557 <translation>Размеры захвата:</translation> 7207 7558 </message> 7208 7559 <message> 7209 <location filename="../VBoxManageInfo.cpp" line="28 09"/>7560 <location filename="../VBoxManageInfo.cpp" line="2844"/> 7210 7561 <source>Capture rate:</source> 7211 7562 <translation>Битрейт захвата:</translation> 7212 7563 </message> 7213 7564 <message> 7214 <location filename="../VBoxManageInfo.cpp" line="28 09"/>7215 <location filename="../VBoxManageInfo.cpp" line="28 10"/>7565 <location filename="../VBoxManageInfo.cpp" line="2844"/> 7566 <location filename="../VBoxManageInfo.cpp" line="2845"/> 7216 7567 <source>kbps</source> 7217 7568 <translation>кб/с</translation> 7218 7569 </message> 7219 7570 <message> 7220 <location filename="../VBoxManageInfo.cpp" line="28 10"/>7571 <location filename="../VBoxManageInfo.cpp" line="2845"/> 7221 7572 <source>Capture FPS:</source> 7222 7573 <translation>FPS захвата:</translation> 7223 7574 </message> 7224 7575 <message> 7225 <location filename="../VBoxManageInfo.cpp" line="28 11"/>7576 <location filename="../VBoxManageInfo.cpp" line="2846"/> 7226 7577 <source>Capture options:</source> 7227 7578 <translation>Опции захвата:</translation> 7228 7579 </message> 7229 7580 <message> 7230 <location filename="../VBoxManageInfo.cpp" line="28 28"/>7581 <location filename="../VBoxManageInfo.cpp" line="2863"/> 7231 7582 <source>Description: 7232 7583 %ls … … 7237 7588 </message> 7238 7589 <message> 7239 <location filename="../VBoxManageInfo.cpp" line="2 884"/>7590 <location filename="../VBoxManageInfo.cpp" line="2919"/> 7240 7591 <source>MB</source> 7241 7592 <translation>МБ</translation> 7242 7593 </message> 7243 7594 <message> 7244 <location filename="../VBoxManageInfo.cpp" line="2 884"/>7595 <location filename="../VBoxManageInfo.cpp" line="2919"/> 7245 7596 <source>Configured memory balloon:</source> 7246 7597 <translation>Настроенный balloon памяти:</translation> 7247 7598 </message> 7248 7599 <message> 7249 <location filename="../VBoxManageInfo.cpp" line="2 892"/>7600 <location filename="../VBoxManageInfo.cpp" line="2927"/> 7250 7601 <source>OS type:</source> 7251 7602 <translation>Тип ОС:</translation> 7252 7603 </message> 7253 7604 <message> 7254 <location filename="../VBoxManageInfo.cpp" line="2 897"/>7605 <location filename="../VBoxManageInfo.cpp" line="2932"/> 7255 7606 <source>Additions run level:</source> 7256 7607 <translation>Уровень выполнения Дополнений:</translation> 7257 7608 </message> 7258 7609 <message> 7259 <location filename="../VBoxManageInfo.cpp" line="29 09"/>7610 <location filename="../VBoxManageInfo.cpp" line="2944"/> 7260 7611 <source>Additions version:</source> 7261 7612 <translation>Версия Дополнений:</translation> 7262 7613 </message> 7263 7614 <message> 7264 <location filename="../VBoxManageInfo.cpp" line="29 38"/>7615 <location filename="../VBoxManageInfo.cpp" line="2973"/> 7265 7616 <source>Facility "%ls": %s (last update: %s) 7266 7617 </source> … … 7269 7620 </message> 7270 7621 <message> 7271 <location filename="../VBoxManageInfo.cpp" line="30 09"/>7622 <location filename="../VBoxManageInfo.cpp" line="3044"/> 7272 7623 <source>Invalid parameter '%s'</source> 7273 7624 <translation>Недопустимый параметр '%s'</translation> 7274 7625 </message> 7275 7626 <message> 7276 <location filename="../VBoxManageInfo.cpp" line="30 19"/>7627 <location filename="../VBoxManageInfo.cpp" line="3054"/> 7277 7628 <source>VM name or UUID required</source> 7278 7629 <translation>Требуется имя ВМ или UUID</translation> 7279 7630 </message> 7280 7631 <message> 7281 <location filename="../VBoxManageInfo.cpp" line="30 30"/>7632 <location filename="../VBoxManageInfo.cpp" line="3065"/> 7282 7633 <source>Option --log is exclusive</source> 7283 7634 <translation>Опция --log эксклюзивная</translation> … … 7287 7638 <name>Internal</name> 7288 7639 <message> 7289 <location filename="../VBoxInternalManage.cpp" line="1 45"/>7640 <location filename="../VBoxInternalManage.cpp" line="169"/> 7290 7641 <source>Usage: VBoxManage internalcommands <command> [command arguments] 7291 7642 … … 7307 7658 </message> 7308 7659 <message> 7309 <location filename="../VBoxInternalManage.cpp" line="1 56"/>7660 <location filename="../VBoxInternalManage.cpp" line="180"/> 7310 7661 <source> loadmap <vmname|uuid> <symfile> <address> [module] [subtrahend] [segment] 7311 7662 This will instruct DBGF to load the given map file … … 7320 7671 </message> 7321 7672 <message> 7322 <location filename="../VBoxInternalManage.cpp" line="1 63"/>7673 <location filename="../VBoxInternalManage.cpp" line="187"/> 7323 7674 <source> loadsyms <vmname|uuid> <symfile> [delta] [module] [module address] 7324 7675 This will instruct DBGF to load the given symbol file … … 7333 7684 </message> 7334 7685 <message> 7335 <location filename="../VBoxInternalManage.cpp" line="1 70"/>7686 <location filename="../VBoxInternalManage.cpp" line="194"/> 7336 7687 <source> sethduuid <filepath> [<uuid>] 7337 7688 Assigns a new UUID to the given image file. This way, multiple copies … … 7346 7697 </message> 7347 7698 <message> 7348 <location filename="../VBoxInternalManage.cpp" line=" 177"/>7699 <location filename="../VBoxInternalManage.cpp" line="201"/> 7349 7700 <source> sethdparentuuid <filepath> <uuid> 7350 7701 Assigns a new parent UUID to the given image file. … … 7357 7708 </message> 7358 7709 <message> 7359 <location filename="../VBoxInternalManage.cpp" line=" 183"/>7710 <location filename="../VBoxInternalManage.cpp" line="207"/> 7360 7711 <source> dumphdinfo <filepath> 7361 7712 Prints information about the image at the given location. … … 7368 7719 </message> 7369 7720 <message> 7370 <location filename="../VBoxInternalManage.cpp" line=" 189"/>7721 <location filename="../VBoxInternalManage.cpp" line="213"/> 7371 7722 <source> listpartitions -rawdisk <diskname> 7372 7723 Lists all partitions on <diskname>. … … 7379 7730 </message> 7380 7731 <message> 7381 <location filename="../VBoxInternalManage.cpp" line=" 195"/>7732 <location filename="../VBoxInternalManage.cpp" line="219"/> 7382 7733 <source> createrawvmdk -filename <filename> -rawdisk <diskname> 7383 7734 [-partitions <list of partition numbers> [-mbr <filename>] ] … … 7414 7765 </message> 7415 7766 <message> 7416 <location filename="../VBoxInternalManage.cpp" line="2 14"/>7767 <location filename="../VBoxInternalManage.cpp" line="238"/> 7417 7768 <source> renamevmdk -from <filename> -to <filename> 7418 7769 Renames an existing VMDK image, including the base file and all its extents. … … 7425 7776 </message> 7426 7777 <message> 7427 <location filename="../VBoxInternalManage.cpp" line="2 21"/>7778 <location filename="../VBoxInternalManage.cpp" line="245"/> 7428 7779 <source> converttoraw [-format <fileformat>] <filename> <outputfile>|stdout 7429 7780 Convert image to raw, writing to file or stdout. … … 7436 7787 </message> 7437 7788 <message> 7438 <location filename="../VBoxInternalManage.cpp" line="2 27"/>7789 <location filename="../VBoxInternalManage.cpp" line="251"/> 7439 7790 <source> converttoraw [-format <fileformat>] <filename> <outputfile> 7440 7791 Convert image to raw, writing to file. … … 7447 7798 </message> 7448 7799 <message> 7449 <location filename="../VBoxInternalManage.cpp" line="2 35"/>7800 <location filename="../VBoxInternalManage.cpp" line="259"/> 7450 7801 <source> converthd [-srcformat VDI|VMDK|VHD|RAW] 7451 7802 [-dstformat VDI|VMDK|VHD|RAW] … … 7462 7813 </message> 7463 7814 <message> 7464 <location filename="../VBoxInternalManage.cpp" line="2 43"/>7815 <location filename="../VBoxInternalManage.cpp" line="267"/> 7465 7816 <source> repairhd [-dry-run] 7466 7817 [-format VDI|VMDK|VHD|...] … … 7477 7828 </message> 7478 7829 <message> 7479 <location filename="../VBoxInternalManage.cpp" line="2 52"/>7830 <location filename="../VBoxInternalManage.cpp" line="276"/> 7480 7831 <source> modinstall 7481 7832 Installs the necessary driver for the host OS … … 7488 7839 </message> 7489 7840 <message> 7490 <location filename="../VBoxInternalManage.cpp" line="2 58"/>7841 <location filename="../VBoxInternalManage.cpp" line="282"/> 7491 7842 <source> moduninstall 7492 7843 Deinstalls the driver … … 7499 7850 </message> 7500 7851 <message> 7501 <location filename="../VBoxInternalManage.cpp" line="2 68"/>7852 <location filename="../VBoxInternalManage.cpp" line="292"/> 7502 7853 <source> debuglog <vmname|uuid> [--enable|--disable] [--flags todo] 7503 7854 [--groups todo] [--destinations todo] … … 7512 7863 </message> 7513 7864 <message> 7514 <location filename="../VBoxInternalManage.cpp" line="2 75"/>7865 <location filename="../VBoxInternalManage.cpp" line="299"/> 7515 7866 <source> passwordhash <password> 7516 7867 Generates a password hash. … … 7523 7874 </message> 7524 7875 <message> 7525 <location filename="../VBoxInternalManage.cpp" line=" 281"/>7876 <location filename="../VBoxInternalManage.cpp" line="305"/> 7526 7877 <source> gueststats <vmname|uuid> [--interval <seconds>] 7527 7878 Obtains and prints internal guest statistics. … … 7536 7887 </message> 7537 7888 <message> 7538 <location filename="../VBoxInternalManage.cpp" line=" 343"/>7889 <location filename="../VBoxInternalManage.cpp" line="451"/> 7539 7890 <source>Cannot find unique key for '%s'!</source> 7540 7891 <translation>Невозможно найти уникальный ключ для '%s'!</translation> 7541 7892 </message> 7542 7893 <message> 7543 <location filename="../VBoxInternalManage.cpp" line=" 406"/>7894 <location filename="../VBoxInternalManage.cpp" line="514"/> 7544 7895 <source>Failed to delete key '%s' from '%s', string conversion error %Rrc!</source> 7545 7896 <translation>Не удалось удалить ключ '%s' из '%s', ошибка преобразования строк %Rrc!</translation> 7546 7897 </message> 7547 7898 <message> 7548 <location filename="../VBoxInternalManage.cpp" line=" 430"/>7899 <location filename="../VBoxInternalManage.cpp" line="538"/> 7549 7900 <source>Failed to set '%s/%s/%s' to '%s'! hrc=%#x</source> 7550 7901 <translation>Не удалось задать '%s/%s/%s' в '%s'! hrc=%#x</translation> 7551 7902 </message> 7552 7903 <message> 7553 <location filename="../VBoxInternalManage.cpp" line=" 498"/>7554 <location filename="../VBoxInternalManage.cpp" line=" 575"/>7904 <location filename="../VBoxInternalManage.cpp" line="606"/> 7905 <location filename="../VBoxInternalManage.cpp" line="683"/> 7555 7906 <source>Missing the filename argument! 7556 7907 </source> … … 7559 7910 </message> 7560 7911 <message> 7561 <location filename="../VBoxInternalManage.cpp" line=" 506"/>7912 <location filename="../VBoxInternalManage.cpp" line="614"/> 7562 7913 <source>Failed to read delta '%s', rc=%Rrc 7563 7914 </source> … … 7566 7917 </message> 7567 7918 <message> 7568 <location filename="../VBoxInternalManage.cpp" line=" 518"/>7569 <location filename="../VBoxInternalManage.cpp" line=" 583"/>7919 <location filename="../VBoxInternalManage.cpp" line="626"/> 7920 <location filename="../VBoxInternalManage.cpp" line="691"/> 7570 7921 <source>Failed to read module address '%s', rc=%Rrc 7571 7922 </source> … … 7574 7925 </message> 7575 7926 <message> 7576 <location filename="../VBoxInternalManage.cpp" line=" 526"/>7927 <location filename="../VBoxInternalManage.cpp" line="634"/> 7577 7928 <source>Failed to read module size '%s', rc=%Rrc 7578 7929 </source> … … 7581 7932 </message> 7582 7933 <message> 7583 <location filename="../VBoxInternalManage.cpp" line=" 580"/>7934 <location filename="../VBoxInternalManage.cpp" line="688"/> 7584 7935 <source>Missing the module address argument! 7585 7936 </source> … … 7588 7939 </message> 7589 7940 <message> 7590 <location filename="../VBoxInternalManage.cpp" line=" 594"/>7941 <location filename="../VBoxInternalManage.cpp" line="702"/> 7591 7942 <source>Failed to read subtrahend '%s', rc=%Rrc 7592 7943 </source> … … 7595 7946 </message> 7596 7947 <message> 7597 <location filename="../VBoxInternalManage.cpp" line=" 602"/>7948 <location filename="../VBoxInternalManage.cpp" line="710"/> 7598 7949 <source>Failed to read segment number '%s', rc=%Rrc 7599 7950 </source> … … 7602 7953 </message> 7603 7954 <message> 7604 <location filename="../VBoxInternalManage.cpp" line=" 629"/>7955 <location filename="../VBoxInternalManage.cpp" line="737"/> 7605 7956 <source>Error code %Rrc at %s(%u) in function %s</source> 7606 7957 <translation>Код ошибки %Rrc в %s(%u) в функции %s</translation> 7607 7958 </message> 7608 7959 <message> 7609 <location filename="../VBoxInternalManage.cpp" line=" 652"/>7610 <location filename="../VBoxInternalManage.cpp" line=" 666"/>7611 <location filename="../VBoxInternalManage.cpp" line=" 724"/>7960 <location filename="../VBoxInternalManage.cpp" line="760"/> 7961 <location filename="../VBoxInternalManage.cpp" line="774"/> 7962 <location filename="../VBoxInternalManage.cpp" line="832"/> 7612 7963 <source>Not enough parameters</source> 7613 7964 <translation>Недостаточно параметров</translation> 7614 7965 </message> 7615 7966 <message> 7616 <location filename="../VBoxInternalManage.cpp" line=" 657"/>7617 <location filename="../VBoxInternalManage.cpp" line=" 668"/>7967 <location filename="../VBoxInternalManage.cpp" line="765"/> 7968 <location filename="../VBoxInternalManage.cpp" line="776"/> 7618 7969 <source>Invalid UUID parameter</source> 7619 7970 <translation>Недопустимый UUID параметр</translation> 7620 7971 </message> 7621 7972 <message> 7622 <location filename="../VBoxInternalManage.cpp" line=" 672"/>7973 <location filename="../VBoxInternalManage.cpp" line="780"/> 7623 7974 <source>Invalid invocation</source> 7624 7975 <translation>Недопустимый вызов</translation> 7625 7976 </message> 7626 7977 <message> 7627 <location filename="../VBoxInternalManage.cpp" line=" 680"/>7628 <location filename="../VBoxInternalManage.cpp" line=" 733"/>7978 <location filename="../VBoxInternalManage.cpp" line="788"/> 7979 <location filename="../VBoxInternalManage.cpp" line="841"/> 7629 7980 <source>Format autodetect failed: %Rrc</source> 7630 7981 <translation>Не удалось автодетектировать формат: %Rrc</translation> 7631 7982 </message> 7632 7983 <message> 7633 <location filename="../VBoxInternalManage.cpp" line=" 695"/>7634 <location filename="../VBoxInternalManage.cpp" line=" 748"/>7635 <location filename="../VBoxInternalManage.cpp" line="1 850"/>7636 <location filename="../VBoxInternalManage.cpp" line=" 1948"/>7637 <location filename="../VBoxInternalManage.cpp" line="2 022"/>7984 <location filename="../VBoxInternalManage.cpp" line="803"/> 7985 <location filename="../VBoxInternalManage.cpp" line="856"/> 7986 <location filename="../VBoxInternalManage.cpp" line="1958"/> 7987 <location filename="../VBoxInternalManage.cpp" line="2056"/> 7988 <location filename="../VBoxInternalManage.cpp" line="2130"/> 7638 7989 <source>Cannot create the virtual disk container: %Rrc</source> 7639 7990 <translation>Невозможно создать контейнер виртуального диска: %Rrc</translation> 7640 7991 </message> 7641 7992 <message> 7642 <location filename="../VBoxInternalManage.cpp" line=" 700"/>7643 <location filename="../VBoxInternalManage.cpp" line=" 753"/>7993 <location filename="../VBoxInternalManage.cpp" line="808"/> 7994 <location filename="../VBoxInternalManage.cpp" line="861"/> 7644 7995 <source>Cannot open the image: %Rrc</source> 7645 7996 <translation>Невозможно открыть образ: %Rrc</translation> 7646 7997 </message> 7647 7998 <message> 7648 <location filename="../VBoxInternalManage.cpp" line=" 707"/>7999 <location filename="../VBoxInternalManage.cpp" line="815"/> 7649 8000 <source>Cannot set a new UUID: %Rrc</source> 7650 8001 <translation>Невозможно задать новый UUID: %Rrc</translation> 7651 8002 </message> 7652 8003 <message> 7653 <location filename="../VBoxInternalManage.cpp" line=" 709"/>8004 <location filename="../VBoxInternalManage.cpp" line="817"/> 7654 8005 <source>UUID changed to: %s 7655 8006 </source> … … 7658 8009 </message> 7659 8010 <message> 7660 <location filename="../VBoxInternalManage.cpp" line=" 834"/>8011 <location filename="../VBoxInternalManage.cpp" line="942"/> 7661 8012 <source>The GPT header seems corrupt because it contains too many entries</source> 7662 8013 <translation>Кажется, GPT заголовок поврежден, потому что он содержит слишком много элементов</translation> 7663 8014 </message> 7664 8015 <message> 7665 <location filename="../VBoxInternalManage.cpp" line=" 841"/>8016 <location filename="../VBoxInternalManage.cpp" line="949"/> 7666 8017 <source>Allocating memory for the GPT partitions entries failed</source> 7667 8018 <translation>Не удалось выделить память для элементов GPT разделов</translation> 7668 8019 </message> 7669 8020 <message> 7670 <location filename="../VBoxInternalManage.cpp" line=" 850"/>8021 <location filename="../VBoxInternalManage.cpp" line="958"/> 7671 8022 <source>Reading the partition table failed</source> 7672 8023 <translation>Не удалось прочитать таблицу разделов</translation> 7673 8024 </message> 7674 8025 <message> 7675 <location filename="../VBoxInternalManage.cpp" line=" 934"/>8026 <location filename="../VBoxInternalManage.cpp" line="1042"/> 7676 8027 <source>More than one extended partition</source> 7677 8028 <translation>Более одного расширенного раздела</translation> 7678 8029 </message> 7679 8030 <message> 7680 <location filename="../VBoxInternalManage.cpp" line=" 952"/>8031 <location filename="../VBoxInternalManage.cpp" line="1060"/> 7681 8032 <source>Inconsistency for logical partition start</source> 7682 8033 <translation>Несогласованность начала логического раздела</translation> 7683 8034 </message> 7684 8035 <message> 7685 <location filename="../VBoxInternalManage.cpp" line=" 964"/>8036 <location filename="../VBoxInternalManage.cpp" line="1072"/> 7686 8037 <source>Logical partition without magic</source> 7687 8038 <translation>Логический раздел без magic</translation> 7688 8039 </message> 7689 8040 <message> 7690 <location filename="../VBoxInternalManage.cpp" line=" 971"/>8041 <location filename="../VBoxInternalManage.cpp" line="1079"/> 7691 8042 <source>Logical partition with type 0 encountered</source> 7692 8043 <translation>Столкнулись с логическим разделом типа 0</translation> 7693 8044 </message> 7694 8045 <message> 7695 <location filename="../VBoxInternalManage.cpp" line=" 988"/>8046 <location filename="../VBoxInternalManage.cpp" line="1096"/> 7696 8047 <source>Invalid partition start offset</source> 7697 8048 <translation>Недопустимое смещение начала раздела</translation> 7698 8049 </message> 7699 8050 <message> 7700 <location filename="../VBoxInternalManage.cpp" line="1 008"/>8051 <location filename="../VBoxInternalManage.cpp" line="1116"/> 7701 8052 <source>Logical partition chain broken</source> 7702 8053 <translation>Цепочка логических разделов повреждена</translation> 7703 8054 </message> 7704 8055 <message> 7705 <location filename="../VBoxInternalManage.cpp" line="1 031"/>8056 <location filename="../VBoxInternalManage.cpp" line="1139"/> 7706 8057 <source>Two partitions start at the same place</source> 7707 8058 <translation>Два раздела начинаются с одного и того же места</translation> 7708 8059 </message> 7709 8060 <message> 7710 <location filename="../VBoxInternalManage.cpp" line="1 036"/>8061 <location filename="../VBoxInternalManage.cpp" line="1144"/> 7711 8062 <source>Partition starts at sector 0</source> 7712 8063 <translation>Раздел начинается в секторе 0</translation> 7713 8064 </message> 7714 8065 <message> 7715 <location filename="../VBoxInternalManage.cpp" line="1 072"/>8066 <location filename="../VBoxInternalManage.cpp" line="1180"/> 7716 8067 <source>Overlapping GPT partitions</source> 7717 8068 <translation>Перекрывающиеся GPT разделы</translation> 7718 8069 </message> 7719 8070 <message> 7720 <location filename="../VBoxInternalManage.cpp" line="1 088"/>8071 <location filename="../VBoxInternalManage.cpp" line="1196"/> 7721 8072 <source>Overlapping MBR partitions</source> 7722 8073 <translation>Перекрывающиеся MBR разделы</translation> 7723 8074 </message> 7724 8075 <message> 7725 <location filename="../VBoxInternalManage.cpp" line="1 111"/>7726 <location filename="../VBoxInternalManage.cpp" line="1 196"/>7727 <location filename="../VBoxInternalManage.cpp" line="1 205"/>7728 <location filename="../VBoxInternalManage.cpp" line="1 214"/>7729 <location filename="../VBoxInternalManage.cpp" line="1 223"/>7730 <location filename="../VBoxInternalManage.cpp" line=" 1910"/>7731 <location filename="../VBoxInternalManage.cpp" line=" 1919"/>7732 <location filename="../VBoxInternalManage.cpp" line=" 1980"/>7733 <location filename="../VBoxInternalManage.cpp" line="2 143"/>7734 <location filename="../VBoxInternalManage.cpp" line="2 152"/>7735 <location filename="../VBoxInternalManage.cpp" line="2 277"/>8076 <location filename="../VBoxInternalManage.cpp" line="1219"/> 8077 <location filename="../VBoxInternalManage.cpp" line="1304"/> 8078 <location filename="../VBoxInternalManage.cpp" line="1313"/> 8079 <location filename="../VBoxInternalManage.cpp" line="1322"/> 8080 <location filename="../VBoxInternalManage.cpp" line="1331"/> 8081 <location filename="../VBoxInternalManage.cpp" line="2018"/> 8082 <location filename="../VBoxInternalManage.cpp" line="2027"/> 8083 <location filename="../VBoxInternalManage.cpp" line="2088"/> 8084 <location filename="../VBoxInternalManage.cpp" line="2251"/> 8085 <location filename="../VBoxInternalManage.cpp" line="2260"/> 8086 <location filename="../VBoxInternalManage.cpp" line="2385"/> 7736 8087 <source>Missing argument to '%s'</source> 7737 8088 <translation>Отсутствует аргумент к '%s'</translation> 7738 8089 </message> 7739 8090 <message> 7740 <location filename="../VBoxInternalManage.cpp" line="1118"/> 7741 <location filename="../VBoxInternalManage.cpp" line="1235"/> 7742 <location filename="../VBoxInternalManage.cpp" line="1926"/> 7743 <location filename="../VBoxInternalManage.cpp" line="1999"/> 7744 <location filename="../VBoxInternalManage.cpp" line="2167"/> 7745 <location filename="../VBoxInternalManage.cpp" line="2288"/> 8091 <location filename="../VBoxInternalManage.cpp" line="368"/> 8092 <location filename="../VBoxInternalManage.cpp" line="1226"/> 8093 <location filename="../VBoxInternalManage.cpp" line="1343"/> 8094 <location filename="../VBoxInternalManage.cpp" line="2034"/> 8095 <location filename="../VBoxInternalManage.cpp" line="2107"/> 8096 <location filename="../VBoxInternalManage.cpp" line="2275"/> 8097 <location filename="../VBoxInternalManage.cpp" line="2396"/> 7746 8098 <source>Invalid parameter '%s'</source> 7747 8099 <translation>Недопустимый параметр '%s'</translation> 7748 8100 </message> 7749 8101 <message> 7750 <location filename="../VBoxInternalManage.cpp" line="1123"/> 7751 <location filename="../VBoxInternalManage.cpp" line="1241"/> 8102 <location filename="../VBoxInternalManage.cpp" line="327"/> 8103 <source> 8104 Syntax error: %N 8105 </source> 8106 <translation type="unfinished"> 8107 Синтаксическая ошибка: %N 8108 </translation> 8109 </message> 8110 <message> 8111 <location filename="../VBoxInternalManage.cpp" line="372"/> 8112 <source>Invalid option -%c</source> 8113 <translation type="unfinished">Недопустимая опция -%c</translation> 8114 </message> 8115 <message> 8116 <location filename="../VBoxInternalManage.cpp" line="373"/> 8117 <source>Invalid option case %i</source> 8118 <translation type="unfinished">Недопустимый вариант опции %i</translation> 8119 </message> 8120 <message> 8121 <location filename="../VBoxInternalManage.cpp" line="376"/> 8122 <source>Unknown option: %s</source> 8123 <translation type="unfinished">Неизвестная опция: %s</translation> 8124 </message> 8125 <message> 8126 <location filename="../VBoxInternalManage.cpp" line="378"/> 8127 <source>Invalid argument format: %s</source> 8128 <translation type="unfinished">Недопустимый формат аргумента: %s</translation> 8129 </message> 8130 <message> 8131 <location filename="../VBoxInternalManage.cpp" line="1231"/> 8132 <location filename="../VBoxInternalManage.cpp" line="1349"/> 7752 8133 <source>Mandatory parameter -rawdisk missing</source> 7753 8134 <translation>Отсутствует обязательный параметр -rawdisk</translation> 7754 8135 </message> 7755 8136 <message> 7756 <location filename="../VBoxInternalManage.cpp" line="1 128"/>8137 <location filename="../VBoxInternalManage.cpp" line="1236"/> 7757 8138 <source>Cannot open the raw disk: %Rrc</source> 7758 8139 <translation>Невозможно открыть raw диск: %Rrc</translation> 7759 8140 </message> 7760 8141 <message> 7761 <location filename="../VBoxInternalManage.cpp" line="1 134"/>8142 <location filename="../VBoxInternalManage.cpp" line="1242"/> 7762 8143 <source>Number Type StartCHS EndCHS Size (MiB) Start (Sect) 7763 8144 </source> … … 7766 8147 </message> 7767 8148 <message> 7768 <location filename="../VBoxInternalManage.cpp" line="1 239"/>8149 <location filename="../VBoxInternalManage.cpp" line="1347"/> 7769 8150 <source>Mandatory parameter -filename missing</source> 7770 8151 <translation>Отсутствует обязательный параметр -filename</translation> 7771 8152 </message> 7772 8153 <message> 7773 <location filename="../VBoxInternalManage.cpp" line="1 244"/>8154 <location filename="../VBoxInternalManage.cpp" line="1352"/> 7774 8155 <source>The parameter -mbr is only valid when the parameter -partitions is also present</source> 7775 8156 <translation>Параметр -mbr действителен только когда также присутствует параметр -partitions</translation> 7776 8157 </message> 7777 8158 <message> 7778 <location filename="../VBoxInternalManage.cpp" line="1 253"/>8159 <location filename="../VBoxInternalManage.cpp" line="1361"/> 7779 8160 <source>Cannot open the raw disk '%s': %Rrc</source> 7780 8161 <translation>Невозможно открыть raw диск '%s': %Rrc</translation> 7781 8162 </message> 7782 8163 <message> 7783 <location filename="../VBoxInternalManage.cpp" line="1 282"/>8164 <location filename="../VBoxInternalManage.cpp" line="1390"/> 7784 8165 <source>File '%s' is no fixed/removable medium device</source> 7785 8166 <translation>Файл '%s' не является устройством фиксированного/сменного носителя</translation> 7786 8167 </message> 7787 8168 <message> 7788 <location filename="../VBoxInternalManage.cpp" line="1 299"/>8169 <location filename="../VBoxInternalManage.cpp" line="1407"/> 7789 8170 <source>The -relative parameter is invalid for raw disk %s</source> 7790 8171 <translation>Параметр -relative недопустим для raw диска %s</translation> 7791 8172 </message> 7792 8173 <message> 7793 <location filename="../VBoxInternalManage.cpp" line="1 313"/>8174 <location filename="../VBoxInternalManage.cpp" line="1421"/> 7794 8175 <source>Cannot get the geometry of the raw disk '%s': %Rrc</source> 7795 8176 <translation>Невозможно получить геометрию raw диска '%s': %Rrc</translation> 7796 8177 </message> 7797 8178 <message> 7798 <location filename="../VBoxInternalManage.cpp" line="1 320"/>7799 <location filename="../VBoxInternalManage.cpp" line="1 369"/>7800 <location filename="../VBoxInternalManage.cpp" line="1 494"/>8179 <location filename="../VBoxInternalManage.cpp" line="1428"/> 8180 <location filename="../VBoxInternalManage.cpp" line="1477"/> 8181 <location filename="../VBoxInternalManage.cpp" line="1602"/> 7801 8182 <source>The -relative parameter is invalid for raw images</source> 7802 8183 <translation>Параметр -relative недопустим для raw образов</translation> 7803 8184 </message> 7804 8185 <message> 7805 <location filename="../VBoxInternalManage.cpp" line="1 354"/>7806 <location filename="../VBoxInternalManage.cpp" line="1 448"/>7807 <location filename="../VBoxInternalManage.cpp" line="1 519"/>8186 <location filename="../VBoxInternalManage.cpp" line="1462"/> 8187 <location filename="../VBoxInternalManage.cpp" line="1556"/> 8188 <location filename="../VBoxInternalManage.cpp" line="1627"/> 7808 8189 <source>Cannot get the size of the raw disk '%s': %Rrc</source> 7809 8190 <translation>Невозможно получить размер raw диска '%s': %Rrc</translation> 7810 8191 </message> 7811 8192 <message> 7812 <location filename="../VBoxInternalManage.cpp" line="1 364"/>7813 <location filename="../VBoxInternalManage.cpp" line="1 419"/>7814 <location filename="../VBoxInternalManage.cpp" line="1 457"/>8193 <location filename="../VBoxInternalManage.cpp" line="1472"/> 8194 <location filename="../VBoxInternalManage.cpp" line="1527"/> 8195 <location filename="../VBoxInternalManage.cpp" line="1565"/> 7815 8196 <source>Failed to get size of file '%s': %Rrc</source> 7816 8197 <translation>Невозможно получить размер файла '%s': %Rrc</translation> 7817 8198 </message> 7818 8199 <message> 7819 <location filename="../VBoxInternalManage.cpp" line="1 376"/>8200 <location filename="../VBoxInternalManage.cpp" line="1484"/> 7820 8201 <source>File '%s' is no block device</source> 7821 8202 <translation>Файл '%s' не является блочным устройством</translation> 7822 8203 </message> 7823 8204 <message> 7824 <location filename="../VBoxInternalManage.cpp" line="1 384"/>7825 <location filename="../VBoxInternalManage.cpp" line="1 433"/>7826 <location filename="../VBoxInternalManage.cpp" line="1 471"/>7827 <location filename="../VBoxInternalManage.cpp" line="1 510"/>8205 <location filename="../VBoxInternalManage.cpp" line="1492"/> 8206 <location filename="../VBoxInternalManage.cpp" line="1541"/> 8207 <location filename="../VBoxInternalManage.cpp" line="1579"/> 8208 <location filename="../VBoxInternalManage.cpp" line="1618"/> 7828 8209 <source>Failed to get file informtation for raw disk '%s': %Rrc</source> 7829 8210 <translation>Не удалось получить информацию для raw диска '%s': %Rrc</translation> 7830 8211 </message> 7831 8212 <message> 7832 <location filename="../VBoxInternalManage.cpp" line="1 401"/>8213 <location filename="../VBoxInternalManage.cpp" line="1509"/> 7833 8214 <source>Cannot get the block size for file '%s': %Rrc</source> 7834 8215 <translation>Невозможно получить размер блока файла '%s': %Rrc</translation> 7835 8216 </message> 7836 8217 <message> 7837 <location filename="../VBoxInternalManage.cpp" line="1 409"/>7838 <location filename="../VBoxInternalManage.cpp" line="1 486"/>8218 <location filename="../VBoxInternalManage.cpp" line="1517"/> 8219 <location filename="../VBoxInternalManage.cpp" line="1594"/> 7839 8220 <source>Cannot get the block count for file '%s': %Rrc</source> 7840 8221 <translation>Невозможно получить количество блоков в файле '%s': %Rrc</translation> 7841 8222 </message> 7842 8223 <message> 7843 <location filename="../VBoxInternalManage.cpp" line="1 425"/>8224 <location filename="../VBoxInternalManage.cpp" line="1533"/> 7844 8225 <source>File '%s' is neither block device nor regular file</source> 7845 8226 <translation>Файл '%s' не является ни блочным устройством, ни регулярным файлом</translation> 7846 8227 </message> 7847 8228 <message> 7848 <location filename="../VBoxInternalManage.cpp" line="1 463"/>8229 <location filename="../VBoxInternalManage.cpp" line="1571"/> 7849 8230 <source>File '%s' is no block or char device</source> 7850 8231 <translation>Файл '%s' не является ни блочным ни символьным устройством</translation> 7851 8232 </message> 7852 8233 <message> 7853 <location filename="../VBoxInternalManage.cpp" line="1 502"/>8234 <location filename="../VBoxInternalManage.cpp" line="1610"/> 7854 8235 <source>File '%s' is neither character device nor regular file</source> 7855 8236 <translation>Файл '%s' не является ни символьным устройством ни регулярным файлом</translation> 7856 8237 </message> 7857 8238 <message> 7858 <location filename="../VBoxInternalManage.cpp" line="1 527"/>8239 <location filename="../VBoxInternalManage.cpp" line="1635"/> 7859 8240 <source>Detected size of raw disk '%s' is %RU64, an invalid value</source> 7860 8241 <translation>Обнаруженный размер raw диска '%s' %RU64, что не является допустимым значением</translation> 7861 8242 </message> 7862 8243 <message> 7863 <location filename="../VBoxInternalManage.cpp" line="1 559"/>8244 <location filename="../VBoxInternalManage.cpp" line="1667"/> 7864 8245 <source>Incorrect value in partitions parameter</source> 7865 8246 <translation>Недопустимое значение в параметре partitions</translation> 7866 8247 </message> 7867 8248 <message> 7868 <location filename="../VBoxInternalManage.cpp" line="1 573"/>8249 <location filename="../VBoxInternalManage.cpp" line="1681"/> 7869 8250 <source>Incorrect separator in partitions parameter</source> 7870 8251 <translation>Недопустимый разделитель в параметре partitions</translation> 7871 8252 </message> 7872 8253 <message> 7873 <location filename="../VBoxInternalManage.cpp" line="1 583"/>8254 <location filename="../VBoxInternalManage.cpp" line="1691"/> 7874 8255 <source>Cannot read the partition information from '%s'</source> 7875 8256 <translation>Невозможно прочитать информацию о разделах из '%s'</translation> 7876 8257 </message> 7877 8258 <message> 7878 <location filename="../VBoxInternalManage.cpp" line="1 598"/>8259 <location filename="../VBoxInternalManage.cpp" line="1706"/> 7879 8260 <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source> 7880 8261 <translation>Невозможно (и не нужно) явно давать доступ к расщиренному разделу %u. Если нужно, дайте доступ ко всем логическим разделам внутри расширенного раздела.</translation> 7881 8262 </message> 7882 8263 <message> 7883 <location filename="../VBoxInternalManage.cpp" line="1 618"/>7884 <location filename="../VBoxInternalManage.cpp" line="1 686"/>8264 <location filename="../VBoxInternalManage.cpp" line="1726"/> 8265 <location filename="../VBoxInternalManage.cpp" line="1794"/> 7885 8266 <source>Out of memory allocating the partition list for '%s'</source> 7886 8267 <translation>Недостаточно памяти под список разделов для '%s'</translation> 7887 8268 </message> 7888 8269 <message> 7889 <location filename="../VBoxInternalManage.cpp" line="1 634"/>8270 <location filename="../VBoxInternalManage.cpp" line="1742"/> 7890 8271 <source>Out of memory allocating the partition descriptor for '%s'</source> 7891 8272 <translation>Недостаточно памяти под дескриптор раздела для '%s'</translation> 7892 8273 </message> 7893 8274 <message> 7894 <location filename="../VBoxInternalManage.cpp" line="1 643"/>8275 <location filename="../VBoxInternalManage.cpp" line="1751"/> 7895 8276 <source>Cannot read partition data from raw device '%s': %Rrc</source> 7896 8277 <translation>Невозможно прочитать данные раздела из raw устаройства '%s': %Rrc</translation> 7897 8278 </message> 7898 8279 <message> 7899 <location filename="../VBoxInternalManage.cpp" line="1 655"/>8280 <location filename="../VBoxInternalManage.cpp" line="1763"/> 7900 8281 <source>Cannot open replacement MBR file '%s' specified with -mbr: %Rrc</source> 7901 8282 <translation>Невозможно открыть файл замены MBR '%s', указанный через -mbr: %Rrc</translation> 7902 8283 </message> 7903 8284 <message> 7904 <location filename="../VBoxInternalManage.cpp" line="1 663"/>8285 <location filename="../VBoxInternalManage.cpp" line="1771"/> 7905 8286 <source>Cannot read replacement MBR file '%s': %Rrc</source> 7906 8287 <translation>Невозможно прочитать файл замены MBR '%s': %Rrc</translation> 7907 8288 </message> 7908 8289 <message> 7909 <location filename="../VBoxInternalManage.cpp" line="1 729"/>8290 <location filename="../VBoxInternalManage.cpp" line="1837"/> 7910 8291 <source>Cannot create reference to individual partition %u, rc=%Rrc</source> 7911 8292 <translation>Невозможно создать ссылку на индивидуальный раздел %u, rc=%Rrc</translation> 7912 8293 </message> 7913 8294 <message> 7914 <location filename="../VBoxInternalManage.cpp" line="1 744"/>8295 <location filename="../VBoxInternalManage.cpp" line="1852"/> 7915 8296 <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source> 7916 8297 <translation>Невозможно создать ссылку на индивидуальный раздел %u (пронумерованный как %u), rc=%Rrc</translation> 7917 8298 </message> 7918 8299 <message> 7919 <location filename="../VBoxInternalManage.cpp" line="1 806"/>8300 <location filename="../VBoxInternalManage.cpp" line="1914"/> 7920 8301 <source>MBR/EPT overlaps with data area</source> 7921 8302 <translation>MBR/EPT перекрывает область данных</translation> 7922 8303 </message> 7923 8304 <message> 7924 <location filename="../VBoxInternalManage.cpp" line="1 812"/>8305 <location filename="../VBoxInternalManage.cpp" line="1920"/> 7925 8306 <source>GPT overlaps with data area</source> 7926 8307 <translation>GPT перекрывает область данных</translation> 7927 8308 </message> 7928 8309 <message> 7929 <location filename="../VBoxInternalManage.cpp" line="1 869"/>8310 <location filename="../VBoxInternalManage.cpp" line="1977"/> 7930 8311 <source>Cannot create the raw disk VMDK: %Rrc</source> 7931 8312 <translation>Невозможно создать VMDK raw диск: %Rrc</translation> 7932 8313 </message> 7933 8314 <message> 7934 <location filename="../VBoxInternalManage.cpp" line="1 872"/>8315 <location filename="../VBoxInternalManage.cpp" line="1980"/> 7935 8316 <source>RAW host disk access VMDK file %s created successfully. 7936 8317 </source> … … 7939 8320 </message> 7940 8321 <message> 7941 <location filename="../VBoxInternalManage.cpp" line=" 1894"/>8322 <location filename="../VBoxInternalManage.cpp" line="2002"/> 7942 8323 <source>The raw disk vmdk file was not created</source> 7943 8324 <translation>vmdk файл к raw диску не создан</translation> 7944 8325 </message> 7945 8326 <message> 7946 <location filename="../VBoxInternalManage.cpp" line=" 1931"/>8327 <location filename="../VBoxInternalManage.cpp" line="2039"/> 7947 8328 <source>Mandatory parameter -from missing</source> 7948 8329 <translation>Отсутствует обязательный параметр -from</translation> 7949 8330 </message> 7950 8331 <message> 7951 <location filename="../VBoxInternalManage.cpp" line=" 1933"/>8332 <location filename="../VBoxInternalManage.cpp" line="2041"/> 7952 8333 <source>Mandatory parameter -to missing</source> 7953 8334 <translation>Отсутствует обязательный параметр -to</translation> 7954 8335 </message> 7955 8336 <message> 7956 <location filename="../VBoxInternalManage.cpp" line=" 1957"/>8337 <location filename="../VBoxInternalManage.cpp" line="2065"/> 7957 8338 <source>Cannot rename the image: %Rrc</source> 7958 8339 <translation>Невозможно переименовать образ: %Rrc</translation> 7959 8340 </message> 7960 8341 <message> 7961 <location filename="../VBoxInternalManage.cpp" line=" 1960"/>8342 <location filename="../VBoxInternalManage.cpp" line="2068"/> 7962 8343 <source>Cannot create the source image: %Rrc</source> 7963 8344 <translation>Невозможно создать образ источника: %Rrc</translation> 7964 8345 </message> 7965 8346 <message> 7966 <location filename="../VBoxInternalManage.cpp" line="2 004"/>8347 <location filename="../VBoxInternalManage.cpp" line="2112"/> 7967 8348 <source>Mandatory filename parameter missing</source> 7968 8349 <translation>Отсутствует обязательный параметр имя файла</translation> 7969 8350 </message> 7970 8351 <message> 7971 <location filename="../VBoxInternalManage.cpp" line="2 006"/>8352 <location filename="../VBoxInternalManage.cpp" line="2114"/> 7972 8353 <source>Mandatory outputfile parameter missing</source> 7973 8354 <translation>Отсутствует обязательный параметр: выходной файл</translation> 7974 8355 </message> 7975 8356 <message> 7976 <location filename="../VBoxInternalManage.cpp" line="2 034"/>8357 <location filename="../VBoxInternalManage.cpp" line="2142"/> 7977 8358 <source>Cannot create destination file "%s": %Rrc</source> 7978 8359 <translation>Невозможно создать файл назначения "%s": %Rrc</translation> 7979 8360 </message> 7980 8361 <message> 7981 <location filename="../VBoxInternalManage.cpp" line="2 053"/>7982 <location filename="../VBoxInternalManage.cpp" line="2 196"/>7983 <location filename="../VBoxInternalManage.cpp" line="2 316"/>8362 <location filename="../VBoxInternalManage.cpp" line="2161"/> 8363 <location filename="../VBoxInternalManage.cpp" line="2304"/> 8364 <location filename="../VBoxInternalManage.cpp" line="2424"/> 7984 8365 <source>No file format specified and autodetect failed - please specify format: %Rrc</source> 7985 8366 <translation>Не указан формат файла, также автодетект не прошел - пожалуйста, укажите формат: %Rrc</translation> 7986 8367 </message> 7987 8368 <message> 7988 <location filename="../VBoxInternalManage.cpp" line="2 056"/>8369 <location filename="../VBoxInternalManage.cpp" line="2164"/> 7989 8370 <source>Only converting harddisk images is supported</source> 7990 8371 <translation>Поддерживается только преобразование образов жестких дисков</translation> 7991 8372 </message> 7992 8373 <message> 7993 <location filename="../VBoxInternalManage.cpp" line="2 071"/>7994 <location filename="../VBoxInternalManage.cpp" line="2 215"/>8374 <location filename="../VBoxInternalManage.cpp" line="2179"/> 8375 <location filename="../VBoxInternalManage.cpp" line="2323"/> 7995 8376 <source>Cannot open the source image: %Rrc</source> 7996 8377 <translation>Невозможно открыть образ источника: %Rrc</translation> 7997 8378 </message> 7998 8379 <message numerus="yes"> 7999 <location filename="../VBoxInternalManage.cpp" line="2 081"/>8380 <location filename="../VBoxInternalManage.cpp" line="2189"/> 8000 8381 <source>Converting image "%s" with size %RU64 bytes (%RU64MB) to raw... 8001 8382 </source> … … 8010 8391 </message> 8011 8392 <message> 8012 <location filename="../VBoxInternalManage.cpp" line="2 103"/>8393 <location filename="../VBoxInternalManage.cpp" line="2211"/> 8013 8394 <source>Cannot copy image data: %Rrc</source> 8014 8395 <translation>Невозможно скопировать данные образа: %Rrc</translation> 8015 8396 </message> 8016 8397 <message> 8017 <location filename="../VBoxInternalManage.cpp" line="2 115"/>8398 <location filename="../VBoxInternalManage.cpp" line="2223"/> 8018 8399 <source>Out of memory allocating read buffer</source> 8019 8400 <translation>Не хватает памяти под буфер чтения</translation> 8020 8401 </message> 8021 8402 <message> 8022 <location filename="../VBoxInternalManage.cpp" line="2 172"/>8023 <location filename="../VBoxInternalManage.cpp" line="2 293"/>8403 <location filename="../VBoxInternalManage.cpp" line="2280"/> 8404 <location filename="../VBoxInternalManage.cpp" line="2401"/> 8024 8405 <source>Mandatory input image parameter missing</source> 8025 8406 <translation>Отсутствует обязательный параметр входной образ</translation> 8026 8407 </message> 8027 8408 <message> 8028 <location filename="../VBoxInternalManage.cpp" line="2 174"/>8409 <location filename="../VBoxInternalManage.cpp" line="2282"/> 8029 8410 <source>Mandatory output image parameter missing</source> 8030 8411 <translation>Отсутствует обязательный параметр выходной образ</translation> 8031 8412 </message> 8032 8413 <message> 8033 <location filename="../VBoxInternalManage.cpp" line="2 207"/>8414 <location filename="../VBoxInternalManage.cpp" line="2315"/> 8034 8415 <source>Cannot create the source virtual disk container: %Rrc</source> 8035 8416 <translation>Невозможно создать контейнер исходного виртуального диска: %Rrc</translation> 8036 8417 </message> 8037 8418 <message> 8038 <location filename="../VBoxInternalManage.cpp" line="2 226"/>8419 <location filename="../VBoxInternalManage.cpp" line="2334"/> 8039 8420 <source>Cannot create the destination virtual disk container: %Rrc</source> 8040 8421 <translation>Невозможно создать контейнер виртуального диска назначения: %Rrc</translation> 8041 8422 </message> 8042 8423 <message numerus="yes"> 8043 <location filename="../VBoxInternalManage.cpp" line="2 231"/>8424 <location filename="../VBoxInternalManage.cpp" line="2339"/> 8044 8425 <source>Converting image "%s" with size %RU64 bytes (%RU64MB)... 8045 8426 </source> … … 8054 8435 </message> 8055 8436 <message> 8056 <location filename="../VBoxInternalManage.cpp" line="2 240"/>8437 <location filename="../VBoxInternalManage.cpp" line="2348"/> 8057 8438 <source>Cannot copy the image: %Rrc</source> 8058 8439 <translation>Невозможно скопировать образ: %Rrc</translation> 8059 8440 </message> 8060 8441 <message> 8061 <location filename="../VBoxInternalManage.cpp" line="2 368"/>8062 <location filename="../VBoxInternalManage.cpp" line="2 503"/>8442 <location filename="../VBoxInternalManage.cpp" line="2476"/> 8443 <location filename="../VBoxInternalManage.cpp" line="2611"/> 8063 8444 <source>Missing VM name/UUID</source> 8064 8445 <translation>Отсутствует имя ВМ/UUID</translation> 8065 8446 </message> 8066 8447 <message> 8067 <location filename="../VBoxInternalManage.cpp" line="2 468"/>8448 <location filename="../VBoxInternalManage.cpp" line="2576"/> 8068 8449 <source>One or more of the requested features are not implemented! Feel free to do this.</source> 8069 8450 <translation>Один или несколько запрошенных функций не реализованы! Не стесняйтесь сделать их.</translation> 8070 8451 </message> 8071 8452 <message> 8072 <location filename="../VBoxInternalManage.cpp" line="2 484"/>8453 <location filename="../VBoxInternalManage.cpp" line="2592"/> 8073 8454 <source>password to hash required</source> 8074 8455 <translation>требуется пароль для хеша</translation> 8075 8456 </message> 8076 8457 <message> 8077 <location filename="../VBoxInternalManage.cpp" line="2 490"/>8458 <location filename="../VBoxInternalManage.cpp" line="2598"/> 8078 8459 <source>Password hash: %s 8079 8460 </source> … … 8082 8463 </message> 8083 8464 <message> 8084 <location filename="../VBoxInternalManage.cpp" line="2 533"/>8465 <location filename="../VBoxInternalManage.cpp" line="2641"/> 8085 8466 <source>Invalid update interval specified</source> 8086 8467 <translation>Указан недопустимый интервал обновления</translation> 8087 8468 </message> 8088 8469 <message> 8089 <location filename="../VBoxInternalManage.cpp" line="2 535"/>8470 <location filename="../VBoxInternalManage.cpp" line="2643"/> 8090 8471 <source>argc=%d interval=%u 8091 8472 </source> … … 8094 8475 </message> 8095 8476 <message> 8096 <location filename="../VBoxInternalManage.cpp" line="2 588"/>8477 <location filename="../VBoxInternalManage.cpp" line="2694"/> 8097 8478 <source>Command missing</source> 8098 8479 <translation>Отсутствует команда</translation> 8099 8480 </message> 8100 8481 <message> 8101 <location filename="../VBoxInternalManage.cpp" line="2 628"/>8482 <location filename="../VBoxInternalManage.cpp" line="2734"/> 8102 8483 <source>Invalid command '%s'</source> 8103 8484 <translation>Недопустимая команда '%s'</translation> … … 8107 8488 <name>List</name> 8108 8489 <message> 8109 <location filename="../VBoxManageList.cpp" line="5 6"/>8110 <location filename="../VBoxManageList.cpp" line=" 70"/>8111 <location filename="../VBoxManageList.cpp" line="9 6"/>8112 <location filename="../VBoxManageList.cpp" line="85 5"/>8113 <location filename="../VBoxManageList.cpp" line="86 6"/>8490 <location filename="../VBoxManageList.cpp" line="54"/> 8491 <location filename="../VBoxManageList.cpp" line="68"/> 8492 <location filename="../VBoxManageList.cpp" line="94"/> 8493 <location filename="../VBoxManageList.cpp" line="853"/> 8494 <location filename="../VBoxManageList.cpp" line="864"/> 8114 8495 <source>Unknown</source> 8115 8496 <translation>Неизвестно</translation> 8116 8497 </message> 8117 8498 <message> 8118 <location filename="../VBoxManageList.cpp" line=" 61"/>8119 <location filename="../VBoxManageList.cpp" line="7 5"/>8499 <location filename="../VBoxManageList.cpp" line="59"/> 8500 <location filename="../VBoxManageList.cpp" line="73"/> 8120 8501 <source>unknown</source> 8121 8502 <translation>неизвестно</translation> 8122 8503 </message> 8123 8504 <message> 8124 <location filename="../VBoxManageList.cpp" line="6 8"/>8505 <location filename="../VBoxManageList.cpp" line="66"/> 8125 8506 <source>Up</source> 8126 8507 <translation>Включен</translation> 8127 8508 </message> 8128 8509 <message> 8129 <location filename="../VBoxManageList.cpp" line="6 9"/>8510 <location filename="../VBoxManageList.cpp" line="67"/> 8130 8511 <source>Down</source> 8131 8512 <translation>Выключен</translation> 8132 8513 </message> 8133 8514 <message> 8134 <location filename="../VBoxManageList.cpp" line="8 3"/>8515 <location filename="../VBoxManageList.cpp" line="81"/> 8135 8516 <source>HardDisk</source> 8136 8517 <translation>Жесткий Диск</translation> 8137 8518 </message> 8138 8519 <message> 8139 <location filename="../VBoxManageList.cpp" line="8 5"/>8520 <location filename="../VBoxManageList.cpp" line="83"/> 8140 8521 <source>Floppy</source> 8141 8522 <translation>Флоппи</translation> 8142 8523 </message> 8143 8524 <message> 8144 <location filename="../VBoxManageList.cpp" line="8 8"/>8525 <location filename="../VBoxManageList.cpp" line="86"/> 8145 8526 <source>Network</source> 8146 8527 <translation>Сеть</translation> 8147 8528 </message> 8148 8529 <message> 8149 <location filename="../VBoxManageList.cpp" line=" 90"/>8530 <location filename="../VBoxManageList.cpp" line="88"/> 8150 8531 <source>SharedFolder</source> 8151 8532 <translation>Общая папка</translation> 8152 8533 </message> 8153 8534 <message> 8154 <location filename="../VBoxManageList.cpp" line=" 91"/>8535 <location filename="../VBoxManageList.cpp" line="89"/> 8155 8536 <source>Graphics3D</source> 8156 8537 <translation>3D графика</translation> 8157 8538 </message> 8158 8539 <message> 8159 <location filename="../VBoxManageList.cpp" line="11 3"/>8160 <location filename="../VBoxManageList.cpp" line="1 51"/>8540 <location filename="../VBoxManageList.cpp" line="111"/> 8541 <location filename="../VBoxManageList.cpp" line="149"/> 8161 8542 <source>Name: %ls 8162 8543 </source> … … 8165 8546 </message> 8166 8547 <message> 8167 <location filename="../VBoxManageList.cpp" line="15 8"/>8168 <location filename="../VBoxManageList.cpp" line="21 7"/>8169 <location filename="../VBoxManageList.cpp" line="26 3"/>8170 <location filename="../VBoxManageList.cpp" line="13 16"/>8548 <location filename="../VBoxManageList.cpp" line="156"/> 8549 <location filename="../VBoxManageList.cpp" line="215"/> 8550 <location filename="../VBoxManageList.cpp" line="261"/> 8551 <location filename="../VBoxManageList.cpp" line="1340"/> 8171 8552 <source>Name: %ls 8172 8553 </source> … … 8175 8556 </message> 8176 8557 <message> 8177 <location filename="../VBoxManageList.cpp" line="16 4"/>8178 <location filename="../VBoxManageList.cpp" line="22 3"/>8179 <location filename="../VBoxManageList.cpp" line="26 9"/>8558 <location filename="../VBoxManageList.cpp" line="162"/> 8559 <location filename="../VBoxManageList.cpp" line="221"/> 8560 <location filename="../VBoxManageList.cpp" line="267"/> 8180 8561 <source>Enabled</source> 8181 8562 <translation>Включено</translation> 8182 8563 </message> 8183 8564 <message> 8184 <location filename="../VBoxManageList.cpp" line="16 4"/>8185 <location filename="../VBoxManageList.cpp" line="22 3"/>8186 <location filename="../VBoxManageList.cpp" line="26 9"/>8565 <location filename="../VBoxManageList.cpp" line="162"/> 8566 <location filename="../VBoxManageList.cpp" line="221"/> 8567 <location filename="../VBoxManageList.cpp" line="267"/> 8187 8568 <source>Disabled</source> 8188 8569 <translation>Отключено</translation> 8189 8570 </message> 8190 8571 <message> 8191 <location filename="../VBoxManageList.cpp" line="16 8"/>8572 <location filename="../VBoxManageList.cpp" line="166"/> 8192 8573 <source>IPAddress: %ls 8193 8574 </source> … … 8196 8577 </message> 8197 8578 <message> 8198 <location filename="../VBoxManageList.cpp" line="1 71"/>8199 <location filename="../VBoxManageList.cpp" line="22 7"/>8579 <location filename="../VBoxManageList.cpp" line="169"/> 8580 <location filename="../VBoxManageList.cpp" line="225"/> 8200 8581 <source>NetworkMask: %ls 8201 8582 </source> … … 8204 8585 </message> 8205 8586 <message> 8206 <location filename="../VBoxManageList.cpp" line="17 4"/>8587 <location filename="../VBoxManageList.cpp" line="172"/> 8207 8588 <source>IPV6Address: %ls 8208 8589 </source> … … 8211 8592 </message> 8212 8593 <message> 8213 <location filename="../VBoxManageList.cpp" line="17 7"/>8594 <location filename="../VBoxManageList.cpp" line="175"/> 8214 8595 <source>IPV6NetworkMaskPrefixLength: %d 8215 8596 </source> … … 8218 8599 </message> 8219 8600 <message> 8220 <location filename="../VBoxManageList.cpp" line="1 80"/>8601 <location filename="../VBoxManageList.cpp" line="178"/> 8221 8602 <source>HardwareAddress: %ls 8222 8603 </source> … … 8225 8606 </message> 8226 8607 <message> 8227 <location filename="../VBoxManageList.cpp" line="18 3"/>8608 <location filename="../VBoxManageList.cpp" line="181"/> 8228 8609 <source>MediumType: %s 8229 8610 </source> … … 8232 8613 </message> 8233 8614 <message> 8234 <location filename="../VBoxManageList.cpp" line="18 6"/>8615 <location filename="../VBoxManageList.cpp" line="184"/> 8235 8616 <source>Wireless: %s 8236 8617 </source> … … 8239 8620 </message> 8240 8621 <message> 8241 <location filename="../VBoxManageList.cpp" line="186"/> 8242 <location filename="../VBoxManageList.cpp" line="1045"/> 8243 <location filename="../VBoxManageList.cpp" line="2201"/> 8244 <location filename="../VBoxManageList.cpp" line="2206"/> 8245 <location filename="../VBoxManageList.cpp" line="2208"/> 8622 <location filename="../VBoxManageList.cpp" line="184"/> 8623 <location filename="../VBoxManageList.cpp" line="1069"/> 8246 8624 <source>Yes</source> 8247 8625 <translation>Да</translation> 8248 8626 </message> 8249 8627 <message> 8250 <location filename="../VBoxManageList.cpp" line="186"/> 8251 <location filename="../VBoxManageList.cpp" line="1045"/> 8252 <location filename="../VBoxManageList.cpp" line="2201"/> 8253 <location filename="../VBoxManageList.cpp" line="2206"/> 8254 <location filename="../VBoxManageList.cpp" line="2208"/> 8628 <location filename="../VBoxManageList.cpp" line="184"/> 8629 <location filename="../VBoxManageList.cpp" line="1069"/> 8255 8630 <source>No</source> 8256 8631 <translation>Нет</translation> 8257 8632 </message> 8258 8633 <message> 8259 <location filename="../VBoxManageList.cpp" line="18 9"/>8634 <location filename="../VBoxManageList.cpp" line="187"/> 8260 8635 <source>Status: %s 8261 8636 </source> … … 8264 8639 </message> 8265 8640 <message> 8266 <location filename="../VBoxManageList.cpp" line="19 2"/>8267 <location filename="../VBoxManageList.cpp" line="23 8"/>8268 <location filename="../VBoxManageList.cpp" line="2 81"/>8641 <location filename="../VBoxManageList.cpp" line="190"/> 8642 <location filename="../VBoxManageList.cpp" line="236"/> 8643 <location filename="../VBoxManageList.cpp" line="279"/> 8269 8644 <source>VBoxNetworkName: %ls 8270 8645 … … 8275 8650 </message> 8276 8651 <message> 8277 <location filename="../VBoxManageList.cpp" line="22 3"/>8278 <location filename="../VBoxManageList.cpp" line="26 9"/>8652 <location filename="../VBoxManageList.cpp" line="221"/> 8653 <location filename="../VBoxManageList.cpp" line="267"/> 8279 8654 <source>State: %s 8280 8655 </source> … … 8283 8658 </message> 8284 8659 <message> 8285 <location filename="../VBoxManageList.cpp" line="2 30"/>8660 <location filename="../VBoxManageList.cpp" line="228"/> 8286 8661 <source>LowerIP: %ls 8287 8662 </source> … … 8290 8665 </message> 8291 8666 <message> 8292 <location filename="../VBoxManageList.cpp" line="23 3"/>8667 <location filename="../VBoxManageList.cpp" line="231"/> 8293 8668 <source>UpperIP: %ls 8294 8669 </source> … … 8297 8672 </message> 8298 8673 <message> 8299 <location filename="../VBoxManageList.cpp" line="27 3"/>8674 <location filename="../VBoxManageList.cpp" line="271"/> 8300 8675 <source>CloudProvider: %ls 8301 8676 </source> … … 8304 8679 </message> 8305 8680 <message> 8306 <location filename="../VBoxManageList.cpp" line="27 6"/>8681 <location filename="../VBoxManageList.cpp" line="274"/> 8307 8682 <source>CloudProfile: %ls 8308 8683 </source> … … 8311 8686 </message> 8312 8687 <message> 8313 <location filename="../VBoxManageList.cpp" line="27 9"/>8688 <location filename="../VBoxManageList.cpp" line="277"/> 8314 8689 <source>CloudNetworkId: %ls 8315 8690 </source> … … 8318 8693 </message> 8319 8694 <message> 8320 <location filename="../VBoxManageList.cpp" line="30 3"/>8695 <location filename="../VBoxManageList.cpp" line="301"/> 8321 8696 <source>HW virtualization</source> 8322 8697 <translation>Аппаратная виртуализация</translation> 8323 8698 </message> 8324 8699 <message> 8325 <location filename="../VBoxManageList.cpp" line="30 5"/>8700 <location filename="../VBoxManageList.cpp" line="303"/> 8326 8701 <source>long mode</source> 8327 8702 <translation>длинный режим</translation> 8328 8703 </message> 8329 8704 <message> 8330 <location filename="../VBoxManageList.cpp" line="30 6"/>8705 <location filename="../VBoxManageList.cpp" line="304"/> 8331 8706 <source>nested paging</source> 8332 8707 <translation>вложенные страницы</translation> 8333 8708 </message> 8334 8709 <message> 8335 <location filename="../VBoxManageList.cpp" line="30 7"/>8710 <location filename="../VBoxManageList.cpp" line="305"/> 8336 8711 <source>unrestricted guest</source> 8337 8712 <translation>неограниченный гость</translation> 8338 8713 </message> 8339 8714 <message> 8340 <location filename="../VBoxManageList.cpp" line="30 8"/>8715 <location filename="../VBoxManageList.cpp" line="306"/> 8341 8716 <source>nested HW virtualization</source> 8342 8717 <translation>вложенная аппаратная виртуализация</translation> 8343 8718 </message> 8344 8719 <message> 8345 <location filename="../VBoxManageList.cpp" line="30 9"/>8720 <location filename="../VBoxManageList.cpp" line="307"/> 8346 8721 <source>virt. vmsave/vmload</source> 8347 8722 <translation>virt. vmsave/vmload</translation> 8348 8723 </message> 8349 8724 <message> 8350 <location filename="../VBoxManageList.cpp" line="31 5"/>8725 <location filename="../VBoxManageList.cpp" line="313"/> 8351 8726 <source>Host Information: 8352 8727 … … 8357 8732 </message> 8358 8733 <message> 8359 <location filename="../VBoxManageList.cpp" line="3 21"/>8734 <location filename="../VBoxManageList.cpp" line="319"/> 8360 8735 <source>Host time: %s 8361 8736 </source> … … 8364 8739 </message> 8365 8740 <message> 8366 <location filename="../VBoxManageList.cpp" line="32 5"/>8741 <location filename="../VBoxManageList.cpp" line="323"/> 8367 8742 <source>Processor online count: %lu 8368 8743 </source> … … 8371 8746 </message> 8372 8747 <message> 8373 <location filename="../VBoxManageList.cpp" line="32 8"/>8748 <location filename="../VBoxManageList.cpp" line="326"/> 8374 8749 <source>Processor count: %lu 8375 8750 </source> … … 8378 8753 </message> 8379 8754 <message> 8380 <location filename="../VBoxManageList.cpp" line="3 31"/>8755 <location filename="../VBoxManageList.cpp" line="329"/> 8381 8756 <source>Processor online core count: %lu 8382 8757 </source> … … 8385 8760 </message> 8386 8761 <message> 8387 <location filename="../VBoxManageList.cpp" line="33 4"/>8762 <location filename="../VBoxManageList.cpp" line="332"/> 8388 8763 <source>Processor core count: %lu 8389 8764 </source> … … 8392 8767 </message> 8393 8768 <message> 8394 <location filename="../VBoxManageList.cpp" line="33 9"/>8769 <location filename="../VBoxManageList.cpp" line="337"/> 8395 8770 <source>Processor supports %s: %s 8396 8771 </source> … … 8399 8774 </message> 8400 8775 <message> 8401 <location filename="../VBoxManageList.cpp" line="33 9"/>8402 <location filename="../VBoxManageList.cpp" line="67 3"/>8403 <location filename="../VBoxManageList.cpp" line="82 7"/>8404 <location filename="../VBoxManageList.cpp" line="88 0"/>8405 <location filename="../VBoxManageList.cpp" line="1 779"/>8406 <location filename="../VBoxManageList.cpp" line="1 784"/>8776 <location filename="../VBoxManageList.cpp" line="337"/> 8777 <location filename="../VBoxManageList.cpp" line="671"/> 8778 <location filename="../VBoxManageList.cpp" line="825"/> 8779 <location filename="../VBoxManageList.cpp" line="889"/> 8780 <location filename="../VBoxManageList.cpp" line="1803"/> 8781 <location filename="../VBoxManageList.cpp" line="1808"/> 8407 8782 <source>yes</source> 8408 8783 <translation>да</translation> 8409 8784 </message> 8410 8785 <message> 8411 <location filename="../VBoxManageList.cpp" line="33 9"/>8412 <location filename="../VBoxManageList.cpp" line="67 3"/>8413 <location filename="../VBoxManageList.cpp" line="82 7"/>8414 <location filename="../VBoxManageList.cpp" line="88 0"/>8415 <location filename="../VBoxManageList.cpp" line="1 779"/>8416 <location filename="../VBoxManageList.cpp" line="1 784"/>8786 <location filename="../VBoxManageList.cpp" line="337"/> 8787 <location filename="../VBoxManageList.cpp" line="671"/> 8788 <location filename="../VBoxManageList.cpp" line="825"/> 8789 <location filename="../VBoxManageList.cpp" line="889"/> 8790 <location filename="../VBoxManageList.cpp" line="1803"/> 8791 <location filename="../VBoxManageList.cpp" line="1808"/> 8417 8792 <source>no</source> 8418 8793 <translation>нет</translation> 8419 8794 </message> 8420 8795 <message> 8796 <location filename="../VBoxManageList.cpp" line="344"/> 8797 <source>Processor#%u speed: %lu MHz 8798 </source> 8799 <translation>Скорость процессора #%u: %lu МГц 8800 </translation> 8801 </message> 8802 <message> 8421 8803 <location filename="../VBoxManageList.cpp" line="346"/> 8422 <source>Processor#%u speed: %lu MHz8423 </source>8424 <translation>Скорость процессора #%u: %lu МГц8425 </translation>8426 </message>8427 <message>8428 <location filename="../VBoxManageList.cpp" line="348"/>8429 8804 <source>Processor#%u speed: unknown 8430 8805 </source> … … 8433 8808 </message> 8434 8809 <message> 8435 <location filename="../VBoxManageList.cpp" line="3 51"/>8810 <location filename="../VBoxManageList.cpp" line="349"/> 8436 8811 <source>Processor#%u description: %ls 8437 8812 </source> … … 8440 8815 </message> 8441 8816 <message numerus="yes"> 8442 <location filename="../VBoxManageList.cpp" line="35 6"/>8817 <location filename="../VBoxManageList.cpp" line="354"/> 8443 8818 <source>Memory size: %lu MByte 8444 8819 </source> … … 8453 8828 </message> 8454 8829 <message numerus="yes"> 8455 <location filename="../VBoxManageList.cpp" line="3 60"/>8830 <location filename="../VBoxManageList.cpp" line="358"/> 8456 8831 <source>Memory available: %lu MByte 8457 8832 </source> … … 8466 8841 </message> 8467 8842 <message> 8468 <location filename="../VBoxManageList.cpp" line="36 4"/>8843 <location filename="../VBoxManageList.cpp" line="362"/> 8469 8844 <source>Operating system: %ls 8470 8845 </source> … … 8473 8848 </message> 8474 8849 <message> 8475 <location filename="../VBoxManageList.cpp" line="36 8"/>8850 <location filename="../VBoxManageList.cpp" line="366"/> 8476 8851 <source>Operating system version: %ls 8477 8852 </source> … … 8480 8855 </message> 8481 8856 <message> 8482 <location filename="../VBoxManageList.cpp" line="42 6"/>8857 <location filename="../VBoxManageList.cpp" line="424"/> 8483 8858 <source>Supported hard disk backends: 8484 8859 … … 8489 8864 </message> 8490 8865 <message> 8491 <location filename="../VBoxManageList.cpp" line="44 5"/>8866 <location filename="../VBoxManageList.cpp" line="443"/> 8492 8867 <source>Backend %u: id='%ls' description='%ls' capabilities=%#06x extensions='</source> 8493 8868 <translation>Бэкенд %u: id='%ls' описание='%ls' возможности=%#06x расширения='</translation> 8494 8869 </message> 8495 8870 <message> 8496 <location filename="../VBoxManageList.cpp" line="47 4"/>8871 <location filename="../VBoxManageList.cpp" line="472"/> 8497 8872 <source> properties=(</source> 8498 8873 <translation> свойства=(</translation> 8499 8874 </message> 8500 8875 <message> 8501 <location filename="../VBoxManageList.cpp" line="47 9"/>8876 <location filename="../VBoxManageList.cpp" line="477"/> 8502 8877 <source> 8503 8878 name='%ls' desc='%ls' type=</source> … … 8506 8881 </message> 8507 8882 <message> 8508 <location filename="../VBoxManageList.cpp" line="48 3"/>8883 <location filename="../VBoxManageList.cpp" line="481"/> 8509 8884 <source>int</source> 8510 8885 <translation>int</translation> 8511 8886 </message> 8512 8887 <message> 8513 <location filename="../VBoxManageList.cpp" line="48 4"/>8888 <location filename="../VBoxManageList.cpp" line="482"/> 8514 8889 <source>byte</source> 8515 8890 <translation>byte</translation> 8516 8891 </message> 8517 8892 <message> 8518 <location filename="../VBoxManageList.cpp" line="48 5"/>8893 <location filename="../VBoxManageList.cpp" line="483"/> 8519 8894 <source>string</source> 8520 8895 <translation>string</translation> 8521 8896 </message> 8522 8897 <message> 8523 <location filename="../VBoxManageList.cpp" line="4 90"/>8898 <location filename="../VBoxManageList.cpp" line="488"/> 8524 8899 <source> flags=%#04x</source> 8525 8900 <translation> флаги=%#04x</translation> 8526 8901 </message> 8527 8902 <message> 8528 <location filename="../VBoxManageList.cpp" line="4 91"/>8903 <location filename="../VBoxManageList.cpp" line="489"/> 8529 8904 <source> default='%ls'</source> 8530 8905 <translation> по умолчанию='%ls'</translation> 8531 8906 </message> 8532 8907 <message> 8533 <location filename="../VBoxManageList.cpp" line="51 7"/>8908 <location filename="../VBoxManageList.cpp" line="515"/> 8534 8909 <source>Host USB Devices: 8535 8910 … … 8540 8915 </message> 8541 8916 <message> 8542 <location filename="../VBoxManageList.cpp" line="5 21"/>8543 <location filename="../VBoxManageList.cpp" line="65 9"/>8917 <location filename="../VBoxManageList.cpp" line="519"/> 8918 <location filename="../VBoxManageList.cpp" line="657"/> 8544 8919 <source><none> 8545 8920 … … 8550 8925 </message> 8551 8926 <message> 8552 <location filename="../VBoxManageList.cpp" line="54 5"/>8927 <location filename="../VBoxManageList.cpp" line="543"/> 8553 8928 <source>UUID: %s 8554 8929 VendorId: %#06x (%04X) … … 8565 8940 </message> 8566 8941 <message> 8567 <location filename="../VBoxManageList.cpp" line="5 61"/>8942 <location filename="../VBoxManageList.cpp" line="559"/> 8568 8943 <source>Low</source> 8569 8944 <translation>Низкая</translation> 8570 8945 </message> 8571 8946 <message> 8572 <location filename="../VBoxManageList.cpp" line="56 4"/>8947 <location filename="../VBoxManageList.cpp" line="562"/> 8573 8948 <source>Full</source> 8574 8949 <translation>Полная</translation> 8575 8950 </message> 8576 8951 <message> 8577 <location filename="../VBoxManageList.cpp" line="56 7"/>8952 <location filename="../VBoxManageList.cpp" line="565"/> 8578 8953 <source>High</source> 8579 8954 <translation>Высокая</translation> 8580 8955 </message> 8581 8956 <message> 8582 <location filename="../VBoxManageList.cpp" line="5 70"/>8957 <location filename="../VBoxManageList.cpp" line="568"/> 8583 8958 <source>Super</source> 8584 8959 <translation>Супер</translation> 8585 8960 </message> 8586 8961 <message> 8587 <location filename="../VBoxManageList.cpp" line="57 3"/>8962 <location filename="../VBoxManageList.cpp" line="571"/> 8588 8963 <source>SuperPlus</source> 8589 8964 <translation>СуперПлюс</translation> 8590 8965 </message> 8591 8966 <message> 8592 <location filename="../VBoxManageList.cpp" line="5 80"/>8967 <location filename="../VBoxManageList.cpp" line="578"/> 8593 8968 <source>USB version/speed: %u/%s 8594 8969 </source> … … 8597 8972 </message> 8598 8973 <message> 8599 <location filename="../VBoxManageList.cpp" line="58 9"/>8974 <location filename="../VBoxManageList.cpp" line="587"/> 8600 8975 <source>Manufacturer: %ls 8601 8976 </source> … … 8604 8979 </message> 8605 8980 <message> 8606 <location filename="../VBoxManageList.cpp" line="59 3"/>8981 <location filename="../VBoxManageList.cpp" line="591"/> 8607 8982 <source>Product: %ls 8608 8983 </source> … … 8611 8986 </message> 8612 8987 <message> 8613 <location filename="../VBoxManageList.cpp" line="59 6"/>8988 <location filename="../VBoxManageList.cpp" line="594"/> 8614 8989 <source>SerialNumber: %ls 8615 8990 </source> … … 8618 8993 </message> 8619 8994 <message> 8620 <location filename="../VBoxManageList.cpp" line="59 9"/>8995 <location filename="../VBoxManageList.cpp" line="597"/> 8621 8996 <source>Address: %ls 8622 8997 </source> … … 8625 9000 </message> 8626 9001 <message> 8627 <location filename="../VBoxManageList.cpp" line="60 2"/>9002 <location filename="../VBoxManageList.cpp" line="600"/> 8628 9003 <source>Port path: %ls 8629 9004 </source> … … 8632 9007 </message> 8633 9008 <message> 8634 <location filename="../VBoxManageList.cpp" line="6 11"/>9009 <location filename="../VBoxManageList.cpp" line="609"/> 8635 9010 <source>Not supported</source> 8636 9011 <translation>Не поддерживается</translation> 8637 9012 </message> 8638 9013 <message> 8639 <location filename="../VBoxManageList.cpp" line="61 4"/>9014 <location filename="../VBoxManageList.cpp" line="612"/> 8640 9015 <source>Unavailable</source> 8641 9016 <translation>Недоступен</translation> 8642 9017 </message> 8643 9018 <message> 8644 <location filename="../VBoxManageList.cpp" line="61 7"/>9019 <location filename="../VBoxManageList.cpp" line="615"/> 8645 9020 <source>Busy</source> 8646 9021 <translation>Занят</translation> 8647 9022 </message> 8648 9023 <message> 8649 <location filename="../VBoxManageList.cpp" line="6 20"/>9024 <location filename="../VBoxManageList.cpp" line="618"/> 8650 9025 <source>Available</source> 8651 9026 <translation>Доступен</translation> 8652 9027 </message> 8653 9028 <message> 8654 <location filename="../VBoxManageList.cpp" line="62 3"/>9029 <location filename="../VBoxManageList.cpp" line="621"/> 8655 9030 <source>Held</source> 8656 9031 <translation>Удерживается</translation> 8657 9032 </message> 8658 9033 <message> 8659 <location filename="../VBoxManageList.cpp" line="62 6"/>9034 <location filename="../VBoxManageList.cpp" line="624"/> 8660 9035 <source>Captured</source> 8661 9036 <translation>Захвачен</translation> 8662 9037 </message> 8663 9038 <message> 8664 <location filename="../VBoxManageList.cpp" line="63 2"/>9039 <location filename="../VBoxManageList.cpp" line="630"/> 8665 9040 <source>Current State: %s 8666 9041 … … 8671 9046 </message> 8672 9047 <message> 8673 <location filename="../VBoxManageList.cpp" line="64 9"/>9048 <location filename="../VBoxManageList.cpp" line="647"/> 8674 9049 <source>Global USB Device Filters: 8675 9050 … … 8680 9055 </message> 8681 9056 <message> 8682 <location filename="../VBoxManageList.cpp" line="66 9"/>9057 <location filename="../VBoxManageList.cpp" line="667"/> 8683 9058 <source>Index: %zu 8684 9059 </source> … … 8687 9062 </message> 8688 9063 <message> 8689 <location filename="../VBoxManageList.cpp" line="67 3"/>9064 <location filename="../VBoxManageList.cpp" line="671"/> 8690 9065 <source>Active: %s 8691 9066 </source> … … 8694 9069 </message> 8695 9070 <message> 8696 <location filename="../VBoxManageList.cpp" line="67 7"/>9071 <location filename="../VBoxManageList.cpp" line="675"/> 8697 9072 <source><invalid></source> 8698 9073 <translation><недействительно></translation> 8699 9074 </message> 8700 9075 <message> 8701 <location filename="../VBoxManageList.cpp" line="6 81"/>9076 <location filename="../VBoxManageList.cpp" line="679"/> 8702 9077 <source>Ignore</source> 8703 9078 <translation>Игнорировать</translation> 8704 9079 </message> 8705 9080 <message> 8706 <location filename="../VBoxManageList.cpp" line="68 4"/>9081 <location filename="../VBoxManageList.cpp" line="682"/> 8707 9082 <source>Hold</source> 8708 9083 <translation>Удерживать</translation> 8709 9084 </message> 8710 9085 <message> 8711 <location filename="../VBoxManageList.cpp" line="68 9"/>9086 <location filename="../VBoxManageList.cpp" line="687"/> 8712 9087 <source>Action: %s 8713 9088 </source> … … 8716 9091 </message> 8717 9092 <message> 9093 <location filename="../VBoxManageList.cpp" line="691"/> 9094 <source>Name: %ls 9095 </source> 9096 <translation>Имя: %ls 9097 </translation> 9098 </message> 9099 <message> 8718 9100 <location filename="../VBoxManageList.cpp" line="693"/> 8719 <source> Name:%ls8720 </source> 8721 <translation> Имя:%ls9101 <source>VendorId: %ls 9102 </source> 9103 <translation>ID Поставщика: %ls 8722 9104 </translation> 8723 9105 </message> 8724 9106 <message> 8725 9107 <location filename="../VBoxManageList.cpp" line="695"/> 8726 <source> VendorId:%ls8727 </source> 8728 <translation>ID П оставщика:%ls9108 <source>ProductId: %ls 9109 </source> 9110 <translation>ID Продукта: %ls 8729 9111 </translation> 8730 9112 </message> 8731 9113 <message> 8732 9114 <location filename="../VBoxManageList.cpp" line="697"/> 8733 <source> ProductId:%ls8734 </source> 8735 <translation> ID Продукта:%ls9115 <source>Revision: %ls 9116 </source> 9117 <translation>Ревизия: %ls 8736 9118 </translation> 8737 9119 </message> 8738 9120 <message> 8739 9121 <location filename="../VBoxManageList.cpp" line="699"/> 8740 <source> Revision:%ls8741 </source> 8742 <translation> Ревизия:%ls9122 <source>Manufacturer: %ls 9123 </source> 9124 <translation>Производитель: %ls 8743 9125 </translation> 8744 9126 </message> 8745 9127 <message> 8746 9128 <location filename="../VBoxManageList.cpp" line="701"/> 8747 <source> Manufacturer:%ls8748 </source> 8749 <translation>Про изводитель:%ls9129 <source>Product: %ls 9130 </source> 9131 <translation>Продукт: %ls 8750 9132 </translation> 8751 9133 </message> 8752 9134 <message> 8753 9135 <location filename="../VBoxManageList.cpp" line="703"/> 8754 <source>Product: %ls8755 </source>8756 <translation>Продукт: %ls8757 </translation>8758 </message>8759 <message>8760 <location filename="../VBoxManageList.cpp" line="705"/>8761 9136 <source>Serial Number: %ls 8762 9137 … … 8767 9142 </message> 8768 9143 <message> 8769 <location filename="../VBoxManageList.cpp" line="7 30"/>9144 <location filename="../VBoxManageList.cpp" line="728"/> 8770 9145 <source>API version: %ls 8771 9146 </source> … … 8774 9149 </message> 8775 9150 <message numerus="yes"> 8776 <location filename="../VBoxManageList.cpp" line="73 3"/>9151 <location filename="../VBoxManageList.cpp" line="731"/> 8777 9152 <source>Minimum guest RAM size: %u Megabytes 8778 9153 </source> … … 8787 9162 </message> 8788 9163 <message numerus="yes"> 8789 <location filename="../VBoxManageList.cpp" line="73 5"/>9164 <location filename="../VBoxManageList.cpp" line="733"/> 8790 9165 <source>Maximum guest RAM size: %u Megabytes 8791 9166 </source> … … 8800 9175 </message> 8801 9176 <message numerus="yes"> 8802 <location filename="../VBoxManageList.cpp" line="73 7"/>9177 <location filename="../VBoxManageList.cpp" line="735"/> 8803 9178 <source>Minimum video RAM size: %u Megabytes 8804 9179 </source> … … 8813 9188 </message> 8814 9189 <message numerus="yes"> 8815 <location filename="../VBoxManageList.cpp" line="73 9"/>9190 <location filename="../VBoxManageList.cpp" line="737"/> 8816 9191 <source>Maximum video RAM size: %u Megabytes 8817 9192 </source> … … 8826 9201 </message> 8827 9202 <message> 9203 <location filename="../VBoxManageList.cpp" line="739"/> 9204 <source>Maximum guest monitor count: %u 9205 </source> 9206 <translation>Максимально гостевых мониторов: %u 9207 </translation> 9208 </message> 9209 <message> 8828 9210 <location filename="../VBoxManageList.cpp" line="741"/> 8829 <source>M aximum guest monitor count:%u8830 </source> 8831 <translation>М аксимально гостевых мониторов:%u9211 <source>Minimum guest CPU count: %u 9212 </source> 9213 <translation>Минимально гостевых ЦПУ: %u 8832 9214 </translation> 8833 9215 </message> 8834 9216 <message> 8835 9217 <location filename="../VBoxManageList.cpp" line="743"/> 8836 <source>M inimum guest CPU count: %u8837 </source> 8838 <translation>М инимально гостевых ЦПУ: %u8839 </translation> 8840 </message> 8841 <message >9218 <source>Maximum guest CPU count: %u 9219 </source> 9220 <translation>Максимально гостевых ЦПУ: %u 9221 </translation> 9222 </message> 9223 <message numerus="yes"> 8842 9224 <location filename="../VBoxManageList.cpp" line="745"/> 8843 <source>Maximum guest CPU count: %u8844 </source>8845 <translation>Максимально гостевых ЦПУ: %u8846 </translation>8847 </message>8848 <message numerus="yes">8849 <location filename="../VBoxManageList.cpp" line="747"/>8850 9225 <source>Virtual disk limit (info): %lld Bytes 8851 9226 </source> … … 8860 9235 </message> 8861 9236 <message> 9237 <location filename="../VBoxManageList.cpp" line="747"/> 9238 <source>Maximum Serial Port count: %u 9239 </source> 9240 <translation>Максимально последовательных портов: %u 9241 </translation> 9242 </message> 9243 <message> 8862 9244 <location filename="../VBoxManageList.cpp" line="749"/> 8863 <source>Maximum Serial Port count:%u8864 </source> 8865 <translation>Максимально п оследовательных портов: %u9245 <source>Maximum Parallel Port count: %u 9246 </source> 9247 <translation>Максимально параллельных портов: %u 8866 9248 </translation> 8867 9249 </message> 8868 9250 <message> 8869 9251 <location filename="../VBoxManageList.cpp" line="751"/> 8870 <source>Maximum Parallel Port count:%u8871 </source> 8872 <translation>Максимальн о параллельных портов:%u9252 <source>Maximum Boot Position: %u 9253 </source> 9254 <translation>Максимальная загрузочная позиция: %u 8873 9255 </translation> 8874 9256 </message> 8875 9257 <message> 8876 9258 <location filename="../VBoxManageList.cpp" line="753"/> 8877 <source>Maximum Boot Position:%u8878 </source> 8879 <translation>Максимальн ая загрузочная позиция:%u9259 <source>Maximum PIIX3 Network Adapter count: %u 9260 </source> 9261 <translation>Максимально PIIX3 сетевых адаптеров: %u 8880 9262 </translation> 8881 9263 </message> 8882 9264 <message> 8883 9265 <location filename="../VBoxManageList.cpp" line="755"/> 8884 <source>Maximum PIIX3Network Adapter count: %u8885 </source> 8886 <translation>Максимально PIIX3сетевых адаптеров: %u9266 <source>Maximum ICH9 Network Adapter count: %u 9267 </source> 9268 <translation>Максимально ICH9 сетевых адаптеров: %u 8887 9269 </translation> 8888 9270 </message> 8889 9271 <message> 8890 9272 <location filename="../VBoxManageList.cpp" line="757"/> 8891 <source>Maximum ICH9 Network Adapter count: %u8892 </source> 8893 <translation>Максимально ICH9 сетевых адаптеров: %u9273 <source>Maximum PIIX3 IDE Controllers: %u 9274 </source> 9275 <translation>Максимально PIIX3 IDE Контроллеров: %u 8894 9276 </translation> 8895 9277 </message> 8896 9278 <message> 8897 9279 <location filename="../VBoxManageList.cpp" line="759"/> 8898 <source>Maximum PIIX3 IDE Controllers:%u8899 </source> 8900 <translation>Максимально PIIX3 IDE Контроллеров:%u9280 <source>Maximum ICH9 IDE Controllers: %u 9281 </source> 9282 <translation>Максимально ICH9 IDE Контроллеров: %u 8901 9283 </translation> 8902 9284 </message> 8903 9285 <message> 8904 9286 <location filename="../VBoxManageList.cpp" line="761"/> 8905 <source>Maximum I CH9 IDE Controllers:%u8906 </source> 8907 <translation>Максимально I CH9 IDE Контроллеров:%u9287 <source>Maximum IDE Port count: %u 9288 </source> 9289 <translation>Максимально IDE портов: %u 8908 9290 </translation> 8909 9291 </message> 8910 9292 <message> 8911 9293 <location filename="../VBoxManageList.cpp" line="763"/> 8912 <source>Maximum IDE Port count:%u8913 </source> 8914 <translation>Максимально IDE портов:%u9294 <source>Maximum Devices per IDE Port: %u 9295 </source> 9296 <translation>Максимально устройств на IDE порт: %u 8915 9297 </translation> 8916 9298 </message> 8917 9299 <message> 8918 9300 <location filename="../VBoxManageList.cpp" line="765"/> 8919 <source>Maximum Devices per IDE Port:%u8920 </source> 8921 <translation>Максимально устройств на IDE порт:%u9301 <source>Maximum PIIX3 SATA Controllers: %u 9302 </source> 9303 <translation>Максимально PIIX3 SATA Контроллеров: %u 8922 9304 </translation> 8923 9305 </message> 8924 9306 <message> 8925 9307 <location filename="../VBoxManageList.cpp" line="767"/> 8926 <source>Maximum PIIX3 SATA Controllers:%u8927 </source> 8928 <translation>Максимально PIIX3 SATA Контроллеров:%u9308 <source>Maximum ICH9 SATA Controllers: %u 9309 </source> 9310 <translation>Максимально ICH9 SATA Контроллеров: %u 8929 9311 </translation> 8930 9312 </message> 8931 9313 <message> 8932 9314 <location filename="../VBoxManageList.cpp" line="769"/> 8933 <source>Maximum ICH9 SATA Controllers:%u8934 </source> 8935 <translation>Максимально ICH9 SATA Контроллеров:%u9315 <source>Maximum SATA Port count: %u 9316 </source> 9317 <translation>Максимально SATA портов: %u 8936 9318 </translation> 8937 9319 </message> 8938 9320 <message> 8939 9321 <location filename="../VBoxManageList.cpp" line="771"/> 8940 <source>Maximum SATA Port count:%u8941 </source> 8942 <translation>Максимально SATA портов:%u9322 <source>Maximum Devices per SATA Port: %u 9323 </source> 9324 <translation>Максимально устройств на SATA порт: %u 8943 9325 </translation> 8944 9326 </message> 8945 9327 <message> 8946 9328 <location filename="../VBoxManageList.cpp" line="773"/> 8947 <source>Maximum Devices per SATA Port:%u8948 </source> 8949 <translation>Максимально устройств на SATA порт: %u9329 <source>Maximum PIIX3 SCSI Controllers: %u 9330 </source> 9331 <translation>Максимально PIIX3 SCSI Контроллеров: %u 8950 9332 </translation> 8951 9333 </message> 8952 9334 <message> 8953 9335 <location filename="../VBoxManageList.cpp" line="775"/> 8954 <source>Maximum PIIX3 SCSI Controllers:%u8955 </source> 8956 <translation>Максимально PIIX3 SCSI Контроллеров:%u9336 <source>Maximum ICH9 SCSI Controllers: %u 9337 </source> 9338 <translation>Максимально ICH9 SCSI Контроллеров: %u 8957 9339 </translation> 8958 9340 </message> 8959 9341 <message> 8960 9342 <location filename="../VBoxManageList.cpp" line="777"/> 8961 <source>Maximum ICH9 SCSI Controllers:%u8962 </source> 8963 <translation>Максимально ICH9 SCSI Контроллеров:%u9343 <source>Maximum SCSI Port count: %u 9344 </source> 9345 <translation>Максимально SCSI портов: %u 8964 9346 </translation> 8965 9347 </message> 8966 9348 <message> 8967 9349 <location filename="../VBoxManageList.cpp" line="779"/> 8968 <source>Maximum SCSI Port count:%u8969 </source> 8970 <translation>Максимально SCSI портов:%u9350 <source>Maximum Devices per SCSI Port: %u 9351 </source> 9352 <translation>Максимально устройств на SCSI порт: %u 8971 9353 </translation> 8972 9354 </message> 8973 9355 <message> 8974 9356 <location filename="../VBoxManageList.cpp" line="781"/> 8975 <source>Maximum Devices per SCSI Port: %u8976 </source> 8977 <translation>Максимально устройств на SCSI порт: %u9357 <source>Maximum SAS PIIX3 Controllers: %u 9358 </source> 9359 <translation>Максимально PIIX3 SAS Контроллеров: %u 8978 9360 </translation> 8979 9361 </message> 8980 9362 <message> 8981 9363 <location filename="../VBoxManageList.cpp" line="783"/> 8982 <source>Maximum SAS PIIX3 Controllers:%u8983 </source> 8984 <translation>Максимально PIIX3 SAS Контроллеров:%u9364 <source>Maximum SAS ICH9 Controllers: %u 9365 </source> 9366 <translation>Максимально ICH9 SAS Контроллеров: %u 8985 9367 </translation> 8986 9368 </message> 8987 9369 <message> 8988 9370 <location filename="../VBoxManageList.cpp" line="785"/> 8989 <source>Maximum SAS ICH9 Controllers:%u8990 </source> 8991 <translation>Максимально ICH9 SAS Контроллеров:%u9371 <source>Maximum SAS Port count: %u 9372 </source> 9373 <translation>Максимально SAS портов: %u 8992 9374 </translation> 8993 9375 </message> 8994 9376 <message> 8995 9377 <location filename="../VBoxManageList.cpp" line="787"/> 8996 <source>Maximum SAS Port count:%u8997 </source> 8998 <translation>Максимально SAS портов:%u9378 <source>Maximum Devices per SAS Port: %u 9379 </source> 9380 <translation>Максимально устройств на SAS порт: %u 8999 9381 </translation> 9000 9382 </message> 9001 9383 <message> 9002 9384 <location filename="../VBoxManageList.cpp" line="789"/> 9003 <source>Maximum Devices per SAS Port:%u9004 </source> 9005 <translation>Максимально устройств на SAS порт: %u9385 <source>Maximum NVMe PIIX3 Controllers: %u 9386 </source> 9387 <translation>Максимально PIIX3 NVMe Контроллеров: %u 9006 9388 </translation> 9007 9389 </message> 9008 9390 <message> 9009 9391 <location filename="../VBoxManageList.cpp" line="791"/> 9010 <source>Maximum NVMe PIIX3 Controllers:%u9011 </source> 9012 <translation>Максимально PIIX3 NVMe Контроллеров:%u9392 <source>Maximum NVMe ICH9 Controllers: %u 9393 </source> 9394 <translation>Максимально ICH9 NVMe Контроллеров: %u 9013 9395 </translation> 9014 9396 </message> 9015 9397 <message> 9016 9398 <location filename="../VBoxManageList.cpp" line="793"/> 9017 <source>Maximum NVMe ICH9 Controllers:%u9018 </source> 9019 <translation>Максимально ICH9 NVMe Контроллеров:%u9399 <source>Maximum NVMe Port count: %u 9400 </source> 9401 <translation>Максимально NVMe портов: %u 9020 9402 </translation> 9021 9403 </message> 9022 9404 <message> 9023 9405 <location filename="../VBoxManageList.cpp" line="795"/> 9024 <source>Maximum NVMe Port count:%u9025 </source> 9026 <translation>Максимально NVMe портов:%u9406 <source>Maximum Devices per NVMe Port: %u 9407 </source> 9408 <translation>Максимально устройств на NVMe порт: %u 9027 9409 </translation> 9028 9410 </message> 9029 9411 <message> 9030 9412 <location filename="../VBoxManageList.cpp" line="797"/> 9031 <source>Maximum Devices per NVMe Port:%u9032 </source> 9033 <translation>Максимально устройств на NVMe порт:%u9413 <source>Maximum virtio-scsi PIIX3 Controllers: %u 9414 </source> 9415 <translation>Максимально PIIX3 virtio-scsi Контроллеров: %u 9034 9416 </translation> 9035 9417 </message> 9036 9418 <message> 9037 9419 <location filename="../VBoxManageList.cpp" line="799"/> 9038 <source>Maximum virtio-scsi PIIX3 Controllers:%u9039 </source> 9040 <translation>Максимально PIIX3 virtio-scsi Контроллеров:%u9420 <source>Maximum virtio-scsi ICH9 Controllers: %u 9421 </source> 9422 <translation>Максимально ICH9 virtio-scsi Контроллеров: %u 9041 9423 </translation> 9042 9424 </message> 9043 9425 <message> 9044 9426 <location filename="../VBoxManageList.cpp" line="801"/> 9045 <source>Maximum virtio-scsi ICH9 Controllers:%u9046 </source> 9047 <translation>Максимально ICH9 virtio-scsi Контроллеров:%u9427 <source>Maximum virtio-scsi Port count: %u 9428 </source> 9429 <translation>Максимально virtio-scsi портов: %u 9048 9430 </translation> 9049 9431 </message> 9050 9432 <message> 9051 9433 <location filename="../VBoxManageList.cpp" line="803"/> 9052 <source>Maximum virtio-scsi Port count:%u9053 </source> 9054 <translation>Максимально virtio-scsi портов:%u9434 <source>Maximum Devices per virtio-scsi Port: %u 9435 </source> 9436 <translation>Максимально устройств на virtio-scsi порт: %u 9055 9437 </translation> 9056 9438 </message> 9057 9439 <message> 9058 9440 <location filename="../VBoxManageList.cpp" line="805"/> 9059 <source>Maximum Devices per virtio-scsi Port:%u9060 </source> 9061 <translation>Максимально устройств на virtio-scsi порт: %u9441 <source>Maximum PIIX3 Floppy Controllers:%u 9442 </source> 9443 <translation>Максимально PIIX3 Флоппи Контроллеров: %u 9062 9444 </translation> 9063 9445 </message> 9064 9446 <message> 9065 9447 <location filename="../VBoxManageList.cpp" line="807"/> 9066 <source>Maximum PIIX3 Floppy Controllers:%u9067 </source> 9068 <translation>Максимально PIIX3 Флоппи Контроллеров:%u9448 <source>Maximum ICH9 Floppy Controllers: %u 9449 </source> 9450 <translation>Максимально ICH9 Флоппи Контроллеров: %u 9069 9451 </translation> 9070 9452 </message> 9071 9453 <message> 9072 9454 <location filename="../VBoxManageList.cpp" line="809"/> 9073 <source>Maximum ICH9 Floppy Controllers:%u9074 </source> 9075 <translation>Максимально ICH9 Флоппи Контроллеров:%u9455 <source>Maximum Floppy Port count: %u 9456 </source> 9457 <translation>Максимально Флоппи портов: %u 9076 9458 </translation> 9077 9459 </message> 9078 9460 <message> 9079 9461 <location filename="../VBoxManageList.cpp" line="811"/> 9080 <source>Maximum Floppy Port count: %u9081 </source>9082 <translation>Максимально Флоппи портов: %u9083 </translation>9084 </message>9085 <message>9086 <location filename="../VBoxManageList.cpp" line="813"/>9087 9462 <source>Maximum Devices per Floppy Port: %u 9088 9463 </source> … … 9091 9466 </message> 9092 9467 <message numerus="yes"> 9093 <location filename="../VBoxManageList.cpp" line="81 6"/>9468 <location filename="../VBoxManageList.cpp" line="814"/> 9094 9469 <source>Free disk space warning at: %u Bytes 9095 9470 </source> … … 9104 9479 </message> 9105 9480 <message> 9481 <location filename="../VBoxManageList.cpp" line="816"/> 9482 <source>Free disk space warning at: %u %% 9483 </source> 9484 <translation>Дать предупреждение когда на диске осталось свободно: %u %% 9485 </translation> 9486 </message> 9487 <message numerus="yes"> 9106 9488 <location filename="../VBoxManageList.cpp" line="818"/> 9107 <source>Free disk space warning at: %u %%9108 </source>9109 <translation>Дать предупреждение когда на диске осталось свободно: %u %%9110 </translation>9111 </message>9112 <message numerus="yes">9113 <location filename="../VBoxManageList.cpp" line="820"/>9114 9489 <source>Free disk space error at: %u Bytes 9115 9490 </source> … … 9124 9499 </message> 9125 9500 <message> 9126 <location filename="../VBoxManageList.cpp" line="82 2"/>9501 <location filename="../VBoxManageList.cpp" line="820"/> 9127 9502 <source>Free disk space error at: %u %% 9128 9503 </source> … … 9131 9506 </message> 9132 9507 <message> 9508 <location filename="../VBoxManageList.cpp" line="823"/> 9509 <source>Default machine folder: %ls 9510 </source> 9511 <translation>Папка машины по умолчанию: %ls 9512 </translation> 9513 </message> 9514 <message> 9133 9515 <location filename="../VBoxManageList.cpp" line="825"/> 9134 <source> Default machine folder: %ls9135 </source> 9136 <translation> Папка машины по умолчанию: %ls9516 <source>Raw-mode Supported: %s 9517 </source> 9518 <translation>Raw-режим поддерживается: %s 9137 9519 </translation> 9138 9520 </message> 9139 9521 <message> 9140 9522 <location filename="../VBoxManageList.cpp" line="827"/> 9141 <source>Raw-mode Supported: %s9142 </source>9143 <translation>Raw-режим поддерживается: %s9144 </translation>9145 </message>9146 <message>9147 <location filename="../VBoxManageList.cpp" line="829"/>9148 9523 <source>Exclusive HW virtualization use: %s 9149 9524 </source> … … 9152 9527 </message> 9153 9528 <message> 9154 <location filename="../VBoxManageList.cpp" line="82 9"/>9155 <location filename="../VBoxManageList.cpp" line="18 43"/>9156 <location filename="../VBoxManageList.cpp" line="18 47"/>9529 <location filename="../VBoxManageList.cpp" line="827"/> 9530 <location filename="../VBoxManageList.cpp" line="1867"/> 9531 <location filename="../VBoxManageList.cpp" line="1871"/> 9157 9532 <source>on</source> 9158 9533 <translation>вкл</translation> 9159 9534 </message> 9160 9535 <message> 9161 <location filename="../VBoxManageList.cpp" line="82 9"/>9162 <location filename="../VBoxManageList.cpp" line="18 43"/>9163 <location filename="../VBoxManageList.cpp" line="18 47"/>9536 <location filename="../VBoxManageList.cpp" line="827"/> 9537 <location filename="../VBoxManageList.cpp" line="1867"/> 9538 <location filename="../VBoxManageList.cpp" line="1871"/> 9164 9539 <source>off</source> 9165 9540 <translation>выкл</translation> 9166 9541 </message> 9167 9542 <message> 9543 <location filename="../VBoxManageList.cpp" line="829"/> 9544 <source>Default hard disk format: %ls 9545 </source> 9546 <translation>Формат жесткого диска по умолчанию: %ls 9547 </translation> 9548 </message> 9549 <message> 9168 9550 <location filename="../VBoxManageList.cpp" line="831"/> 9169 <source> Default hard disk format:%ls9170 </source> 9171 <translation> Формат жесткого диска по умолчанию:%ls9551 <source>VRDE auth library: %ls 9552 </source> 9553 <translation>Библиотека аутентификации VRDE: %ls 9172 9554 </translation> 9173 9555 </message> 9174 9556 <message> 9175 9557 <location filename="../VBoxManageList.cpp" line="833"/> 9176 <source> VRDE auth library:%ls9177 </source> 9178 <translation>Библиотека аутентификации VRDE:%ls9558 <source>Webservice auth. library: %ls 9559 </source> 9560 <translation>Библиотека аутентификации вебсервиса: %ls 9179 9561 </translation> 9180 9562 </message> 9181 9563 <message> 9182 9564 <location filename="../VBoxManageList.cpp" line="835"/> 9183 <source> Webservice auth. library:%ls9184 </source> 9185 <translation> Библиотека аутентификации вебсервиса:%ls9565 <source>Remote desktop ExtPack: %ls 9566 </source> 9567 <translation>Пакет расширения удаленного рабочего стола: %ls 9186 9568 </translation> 9187 9569 </message> 9188 9570 <message> 9189 9571 <location filename="../VBoxManageList.cpp" line="837"/> 9190 <source> Remote desktop ExtPack: %ls9191 </source> 9192 <translation> Пакет расширения удаленного рабочего стола: %ls9572 <source>Log history count: %u 9573 </source> 9574 <translation>Размер истории в журнале: %u 9193 9575 </translation> 9194 9576 </message> 9195 9577 <message> 9196 9578 <location filename="../VBoxManageList.cpp" line="839"/> 9197 <source>Log history count: %u9198 </source>9199 <translation>Размер истории в журнале: %u9200 </translation>9201 </message>9202 <message>9203 <location filename="../VBoxManageList.cpp" line="841"/>9204 9579 <source>Default frontend: %ls 9205 9580 </source> … … 9208 9583 </message> 9209 9584 <message> 9210 <location filename="../VBoxManageList.cpp" line="84 6"/>9585 <location filename="../VBoxManageList.cpp" line="844"/> 9211 9586 <source>Null</source> 9212 9587 <translation>Пусто</translation> 9213 9588 </message> 9214 9589 <message> 9590 <location filename="../VBoxManageList.cpp" line="855"/> 9591 <source>Default audio driver: %s 9592 </source> 9593 <translation>Аудио драйвер по умолчанию: %s 9594 </translation> 9595 </message> 9596 <message> 9215 9597 <location filename="../VBoxManageList.cpp" line="857"/> 9216 <source> Default audio driver: %s9217 </source> 9218 <translation> Аудио драйвер по умолчанию: %s9598 <source>Autostart database path: %ls 9599 </source> 9600 <translation>Путь базы данных автостарта: %ls 9219 9601 </translation> 9220 9602 </message> 9221 9603 <message> 9222 9604 <location filename="../VBoxManageList.cpp" line="859"/> 9223 <source> Autostart database path:%ls9224 </source> 9225 <translation> Путь базы данных автостарта:%ls9605 <source>Default Guest Additions ISO: %ls 9606 </source> 9607 <translation>ISO Дополнений Гостевой ОС по умолчанию: %ls 9226 9608 </translation> 9227 9609 </message> 9228 9610 <message> 9229 9611 <location filename="../VBoxManageList.cpp" line="861"/> 9230 <source>Default Guest Additions ISO: %ls9231 </source>9232 <translation>ISO Дополнений Гостевой ОС по умолчанию: %ls9233 </translation>9234 </message>9235 <message>9236 <location filename="../VBoxManageList.cpp" line="863"/>9237 9612 <source>Logging Level: %ls 9238 9613 </source> … … 9241 9616 </message> 9242 9617 <message> 9243 <location filename="../VBoxManageList.cpp" line="86 9"/>9618 <location filename="../VBoxManageList.cpp" line="867"/> 9244 9619 <source>System</source> 9245 9620 <translation>Система</translation> 9246 9621 </message> 9247 9622 <message> 9248 <location filename="../VBoxManageList.cpp" line="8 70"/>9623 <location filename="../VBoxManageList.cpp" line="868"/> 9249 9624 <source>NoProxy</source> 9250 9625 <translation>Без Прокси</translation> 9251 9626 </message> 9252 9627 <message> 9253 <location filename="../VBoxManageList.cpp" line="8 71"/>9628 <location filename="../VBoxManageList.cpp" line="869"/> 9254 9629 <source>Manual</source> 9255 9630 <translation>Вручную</translation> 9256 9631 </message> 9257 9632 <message> 9633 <location filename="../VBoxManageList.cpp" line="874"/> 9634 <source>Proxy Mode: %s 9635 </source> 9636 <translation>Режим Прокси: %s 9637 </translation> 9638 </message> 9639 <message> 9258 9640 <location filename="../VBoxManageList.cpp" line="876"/> 9259 <source>Proxy Mode: %s9260 </source>9261 <translation>Режим Прокси: %s9262 </translation>9263 </message>9264 <message>9265 <location filename="../VBoxManageList.cpp" line="878"/>9266 9641 <source>Proxy URL: %ls 9267 9642 </source> … … 9270 9645 </message> 9271 9646 <message> 9272 <location filename="../VBoxManageList.cpp" line="880"/>9273 9647 <source>Update check enabled: %s 9274 9648 </source> 9275 <translation>Проверка обновлений включена: %s 9276 </translation> 9277 </message> 9278 <message> 9279 <location filename="../VBoxManageList.cpp" line="882"/> 9649 <translation type="vanished">Проверка обновлений включена: %s 9650 </translation> 9651 </message> 9652 <message> 9280 9653 <source>Update check count: %u 9281 9654 </source> 9282 <translation>Количество проверок обновлений: %u 9283 </translation> 9284 </message> 9285 <message> 9286 <location filename="../VBoxManageList.cpp" line="885"/> 9655 <translation type="vanished">Количество проверок обновлений: %u 9656 </translation> 9657 </message> 9658 <message> 9287 9659 <source>Update check frequency: never 9288 9660 </source> 9289 <translation>Частота проверки обновлений: никогда 9290 </translation> 9291 </message> 9292 <message> 9293 <location filename="../VBoxManageList.cpp" line="887"/> 9661 <translation type="vanished">Частота проверки обновлений: никогда 9662 </translation> 9663 </message> 9664 <message> 9294 9665 <source>Update check frequency: every day 9295 9666 </source> 9296 <translation >Частота проверки обновлений: каждый день9667 <translation type="vanished">Частота проверки обновлений: каждый день 9297 9668 </translation> 9298 9669 </message> 9299 9670 <message numerus="yes"> 9300 <location filename="../VBoxManageList.cpp" line="889"/>9301 9671 <source>Update check frequency: every %u days 9302 9672 </source> 9303 <translation >9673 <translation type="vanished"> 9304 9674 <numerusform>Частота проверки обновлений: каждый %u день 9305 9675 </numerusform> … … 9311 9681 </message> 9312 9682 <message> 9313 <location filename="../VBoxManageList.cpp" line=" 895"/>9683 <location filename="../VBoxManageList.cpp" line="908"/> 9314 9684 <source>Stable: new minor and maintenance releases</source> 9315 9685 <translation>Стабильные: новые минорные и корректирующие релизы</translation> 9316 9686 </message> 9317 9687 <message> 9318 <location filename="../VBoxManageList.cpp" line=" 898"/>9688 <location filename="../VBoxManageList.cpp" line="911"/> 9319 9689 <source>All releases: new minor, maintenance, and major releases</source> 9320 9690 <translation>Все релизы: новые минорные, корректирующие и мажорные релизы</translation> 9321 9691 </message> 9322 9692 <message> 9323 <location filename="../VBoxManageList.cpp" line="9 01"/>9693 <location filename="../VBoxManageList.cpp" line="914"/> 9324 9694 <source>With Betas: new minor, maintenance, major, and beta releases</source> 9325 9695 <translation>С бетами: новые минорные, корректирующие, мажорные и бета релизы</translation> 9326 9696 </message> 9327 9697 <message> 9328 <location filename="../VBoxManageList.cpp" line="9 04"/>9698 <location filename="../VBoxManageList.cpp" line="917"/> 9329 9699 <source>Unset</source> 9330 9700 <translation>Не задано</translation> 9331 9701 </message> 9332 9702 <message> 9333 <location filename="../VBoxManageList.cpp" line="907"/>9334 9703 <source>Update check target: %s 9335 9704 </source> 9336 <translation >Цель проверки обновлений: %s9337 </translation> 9338 </message> 9339 <message> 9340 <location filename="../VBoxManageList.cpp" line="9 09"/>9705 <translation type="vanished">Цель проверки обновлений: %s 9706 </translation> 9707 </message> 9708 <message> 9709 <location filename="../VBoxManageList.cpp" line="924"/> 9341 9710 <source>Last check date: %ls 9342 9711 </source> … … 9345 9714 </message> 9346 9715 <message> 9347 <location filename="../VBoxManageList.cpp" line=" 912"/>9716 <location filename="../VBoxManageList.cpp" line="879"/> 9348 9717 <source>User language: %ls 9349 9718 </source> … … 9352 9721 </message> 9353 9722 <message> 9354 <location filename="../VBoxManageList.cpp" line="928"/> 9723 <location filename="../VBoxManageList.cpp" line="889"/> 9724 <source>Enabled: %s 9725 </source> 9726 <translation type="unfinished"></translation> 9727 </message> 9728 <message> 9729 <location filename="../VBoxManageList.cpp" line="892"/> 9730 <source>Check count: %u 9731 </source> 9732 <translation type="unfinished"></translation> 9733 </message> 9734 <message> 9735 <location filename="../VBoxManageList.cpp" line="895"/> 9736 <source>Check frequency: never 9737 </source> 9738 <translation type="unfinished"></translation> 9739 </message> 9740 <message> 9741 <location filename="../VBoxManageList.cpp" line="897"/> 9742 <source>Check frequency: every day 9743 </source> 9744 <translation type="unfinished"></translation> 9745 </message> 9746 <message numerus="yes"> 9747 <location filename="../VBoxManageList.cpp" line="899"/> 9748 <source>Check frequency: every %u days 9749 </source> 9750 <translation type="unfinished"> 9751 <numerusform></numerusform> 9752 <numerusform></numerusform> 9753 <numerusform></numerusform> 9754 </translation> 9755 </message> 9756 <message> 9757 <location filename="../VBoxManageList.cpp" line="920"/> 9758 <source>Channel: %s 9759 </source> 9760 <translation type="unfinished"></translation> 9761 </message> 9762 <message> 9763 <location filename="../VBoxManageList.cpp" line="922"/> 9764 <source>Repository: %ls 9765 </source> 9766 <translation type="unfinished"></translation> 9767 </message> 9768 <message> 9769 <location filename="../VBoxManageList.cpp" line="952"/> 9355 9770 <source> minLeaseTime: default 9356 9771 </source> … … 9359 9774 </message> 9360 9775 <message> 9361 <location filename="../VBoxManageList.cpp" line="9 30"/>9776 <location filename="../VBoxManageList.cpp" line="954"/> 9362 9777 <source> minLeaseTime: %u sec 9363 9778 </source> … … 9366 9781 </message> 9367 9782 <message> 9368 <location filename="../VBoxManageList.cpp" line="9 35"/>9783 <location filename="../VBoxManageList.cpp" line="959"/> 9369 9784 <source> defaultLeaseTime: default 9370 9785 </source> … … 9373 9788 </message> 9374 9789 <message> 9375 <location filename="../VBoxManageList.cpp" line="9 37"/>9790 <location filename="../VBoxManageList.cpp" line="961"/> 9376 9791 <source> defaultLeaseTime: %u sec 9377 9792 </source> … … 9380 9795 </message> 9381 9796 <message> 9382 <location filename="../VBoxManageList.cpp" line="9 42"/>9797 <location filename="../VBoxManageList.cpp" line="966"/> 9383 9798 <source> maxLeaseTime: default 9384 9799 </source> … … 9387 9802 </message> 9388 9803 <message> 9389 <location filename="../VBoxManageList.cpp" line="9 44"/>9804 <location filename="../VBoxManageList.cpp" line="968"/> 9390 9805 <source> maxLeaseTime: %u sec 9391 9806 </source> … … 9394 9809 </message> 9395 9810 <message> 9396 <location filename="../VBoxManageList.cpp" line="9 50"/>9811 <location filename="../VBoxManageList.cpp" line="974"/> 9397 9812 <source> Forced options: %Rhrc 9398 9813 </source> … … 9401 9816 </message> 9402 9817 <message> 9403 <location filename="../VBoxManageList.cpp" line="9 52"/>9818 <location filename="../VBoxManageList.cpp" line="976"/> 9404 9819 <source> Forced options: None 9405 9820 </source> … … 9408 9823 </message> 9409 9824 <message> 9410 <location filename="../VBoxManageList.cpp" line="9 55"/>9825 <location filename="../VBoxManageList.cpp" line="979"/> 9411 9826 <source> Forced options: </source> 9412 9827 <translation> Форсированные опции: </translation> 9413 9828 </message> 9414 9829 <message> 9415 <location filename="../VBoxManageList.cpp" line="9 63"/>9830 <location filename="../VBoxManageList.cpp" line="987"/> 9416 9831 <source> Suppressed opt.s: %Rhrc 9417 9832 </source> … … 9420 9835 </message> 9421 9836 <message> 9422 <location filename="../VBoxManageList.cpp" line="9 65"/>9837 <location filename="../VBoxManageList.cpp" line="989"/> 9423 9838 <source> Suppressed opts.: None 9424 9839 </source> … … 9427 9842 </message> 9428 9843 <message> 9429 <location filename="../VBoxManageList.cpp" line="9 68"/>9844 <location filename="../VBoxManageList.cpp" line="992"/> 9430 9845 <source> Suppressed opts.: </source> 9431 9846 <translation> Подавленные опции: </translation> 9432 9847 </message> 9433 9848 <message> 9434 <location filename="../VBoxManageList.cpp" line=" 980"/>9849 <location filename="../VBoxManageList.cpp" line="1004"/> 9435 9850 <source> DHCP options: %Rhrc 9436 9851 </source> … … 9439 9854 </message> 9440 9855 <message> 9441 <location filename="../VBoxManageList.cpp" line=" 983"/>9856 <location filename="../VBoxManageList.cpp" line="1007"/> 9442 9857 <source> DHCP options: Return count mismatch: %zu, %zu, %zu 9443 9858 </source> … … 9446 9861 </message> 9447 9862 <message> 9448 <location filename="../VBoxManageList.cpp" line=" 988"/>9863 <location filename="../VBoxManageList.cpp" line="1012"/> 9449 9864 <source> DHCP options: None 9450 9865 </source> … … 9453 9868 </message> 9454 9869 <message> 9455 <location filename="../VBoxManageList.cpp" line=" 995"/>9870 <location filename="../VBoxManageList.cpp" line="1019"/> 9456 9871 <source> %3d/legacy: %ls 9457 9872 </source> … … 9460 9875 </message> 9461 9876 <message> 9462 <location filename="../VBoxManageList.cpp" line="1029"/> 9463 <location filename="../VBoxManageList.cpp" line="2192"/> 9877 <location filename="../VBoxManageList.cpp" line="1053"/> 9464 9878 <source>NetworkName: %ls 9465 9879 </source> … … 9468 9882 </message> 9469 9883 <message> 9470 <location filename="../VBoxManageList.cpp" line="10 35"/>9884 <location filename="../VBoxManageList.cpp" line="1059"/> 9471 9885 <source>LowerIPAddress: %ls 9472 9886 </source> … … 9475 9889 </message> 9476 9890 <message> 9477 <location filename="../VBoxManageList.cpp" line="10 38"/>9891 <location filename="../VBoxManageList.cpp" line="1062"/> 9478 9892 <source>UpperIPAddress: %ls 9479 9893 </source> … … 9482 9896 </message> 9483 9897 <message> 9484 <location filename="../VBoxManageList.cpp" line="10 41"/>9898 <location filename="../VBoxManageList.cpp" line="1065"/> 9485 9899 <source>NetworkMask: %ls 9486 9900 </source> … … 9489 9903 </message> 9490 9904 <message> 9491 <location filename="../VBoxManageList.cpp" line="1045"/> 9492 <location filename="../VBoxManageList.cpp" line="2208"/> 9905 <location filename="../VBoxManageList.cpp" line="1069"/> 9493 9906 <source>Enabled: %s 9494 9907 </source> … … 9497 9910 </message> 9498 9911 <message> 9499 <location filename="../VBoxManageList.cpp" line="10 48"/>9912 <location filename="../VBoxManageList.cpp" line="1072"/> 9500 9913 <source>Global Configuration: 9501 9914 </source> … … 9504 9917 </message> 9505 9918 <message> 9506 <location filename="../VBoxManageList.cpp" line="10 63"/>9919 <location filename="../VBoxManageList.cpp" line="1087"/> 9507 9920 <source>Groups: %Rrc 9508 9921 </source> … … 9511 9924 </message> 9512 9925 <message> 9513 <location filename="../VBoxManageList.cpp" line="10 65"/>9926 <location filename="../VBoxManageList.cpp" line="1089"/> 9514 9927 <source>Groups: None 9515 9928 </source> … … 9518 9931 </message> 9519 9932 <message> 9520 <location filename="../VBoxManageList.cpp" line="10 71"/>9933 <location filename="../VBoxManageList.cpp" line="1095"/> 9521 9934 <source>Group: %ls 9522 9935 </source> … … 9525 9938 </message> 9526 9939 <message> 9527 <location filename="../VBoxManageList.cpp" line="1 076"/>9940 <location filename="../VBoxManageList.cpp" line="1100"/> 9528 9941 <source> Conditions: %Rhrc 9529 9942 </source> … … 9532 9945 </message> 9533 9946 <message> 9534 <location filename="../VBoxManageList.cpp" line="1 078"/>9947 <location filename="../VBoxManageList.cpp" line="1102"/> 9535 9948 <source> Conditions: None 9536 9949 </source> … … 9539 9952 </message> 9540 9953 <message> 9541 <location filename="../VBoxManageList.cpp" line="1 088"/>9954 <location filename="../VBoxManageList.cpp" line="1112"/> 9542 9955 <source> Conditions: %s %s %ls 9543 9956 </source> … … 9546 9959 </message> 9547 9960 <message> 9548 <location filename="../VBoxManageList.cpp" line="1 089"/>9961 <location filename="../VBoxManageList.cpp" line="1113"/> 9549 9962 <source>include</source> 9550 9963 <translation>включая</translation> 9551 9964 </message> 9552 9965 <message> 9553 <location filename="../VBoxManageList.cpp" line="1 089"/>9966 <location filename="../VBoxManageList.cpp" line="1113"/> 9554 9967 <source>exclude</source> 9555 9968 <translation>исключая</translation> 9556 9969 </message> 9557 9970 <message> 9558 <location filename="../VBoxManageList.cpp" line="11 11"/>9971 <location filename="../VBoxManageList.cpp" line="1135"/> 9559 9972 <source>Individual Configs: %Rrc 9560 9973 </source> … … 9563 9976 </message> 9564 9977 <message> 9565 <location filename="../VBoxManageList.cpp" line="11 13"/>9978 <location filename="../VBoxManageList.cpp" line="1137"/> 9566 9979 <source>Individual Configs: None 9567 9980 </source> … … 9570 9983 </message> 9571 9984 <message> 9572 <location filename="../VBoxManageList.cpp" line="11 24"/>9985 <location filename="../VBoxManageList.cpp" line="1148"/> 9573 9986 <source>Individual Config: MAC %ls 9574 9987 </source> … … 9577 9990 </message> 9578 9991 <message> 9579 <location filename="../VBoxManageList.cpp" line="11 34"/>9992 <location filename="../VBoxManageList.cpp" line="1158"/> 9580 9993 <source>Individual Config: VM NIC: %ls slot %u, MAC %ls 9581 9994 </source> … … 9584 9997 </message> 9585 9998 <message> 9586 <location filename="../VBoxManageList.cpp" line="11 37"/>9999 <location filename="../VBoxManageList.cpp" line="1161"/> 9587 10000 <source>Individual Config: VM NIC: %ls slot %u, MAC %Rhrc 9588 10001 </source> … … 9591 10004 </message> 9592 10005 <message> 9593 <location filename="../VBoxManageList.cpp" line="11 42"/>10006 <location filename="../VBoxManageList.cpp" line="1166"/> 9594 10007 <source> Fixed Address: %ls 9595 10008 </source> … … 9598 10011 </message> 9599 10012 <message> 9600 <location filename="../VBoxManageList.cpp" line="11 44"/>10013 <location filename="../VBoxManageList.cpp" line="1168"/> 9601 10014 <source> Fixed Address: dynamic 9602 10015 </source> … … 9605 10018 </message> 9606 10019 <message> 9607 <location filename="../VBoxManageList.cpp" line="11 70"/>10020 <location filename="../VBoxManageList.cpp" line="1194"/> 9608 10021 <source>Extension Packs: %u 9609 10022 </source> … … 9612 10025 </message> 9613 10026 <message> 9614 <location filename="../VBoxManageList.cpp" line="1 196"/>10027 <location filename="../VBoxManageList.cpp" line="1220"/> 9615 10028 <source>Pack no.%2zu: %ls 9616 10029 Version: %ls … … 9633 10046 </message> 9634 10047 <message> 9635 <location filename="../VBoxManageList.cpp" line="12 52"/>10048 <location filename="../VBoxManageList.cpp" line="1276"/> 9636 10049 <source>Video Input Devices: %u 9637 10050 </source> … … 9640 10053 </message> 9641 10054 <message numerus="yes"> 9642 <location filename="../VBoxManageList.cpp" line="1 281"/>10055 <location filename="../VBoxManageList.cpp" line="1305"/> 9643 10056 <source>Supported %d screen shot formats: 9644 10057 </source> … … 9653 10066 </message> 9654 10067 <message numerus="yes"> 9655 <location filename="../VBoxManageList.cpp" line="13 10"/>10068 <location filename="../VBoxManageList.cpp" line="1334"/> 9656 10069 <source>Supported %d cloud providers: 9657 10070 </source> … … 9666 10079 </message> 9667 10080 <message> 9668 <location filename="../VBoxManageList.cpp" line="13 18"/>10081 <location filename="../VBoxManageList.cpp" line="1342"/> 9669 10082 <source>Short Name: %ls 9670 10083 </source> … … 9673 10086 </message> 9674 10087 <message> 9675 <location filename="../VBoxManageList.cpp" line="13 54"/>10088 <location filename="../VBoxManageList.cpp" line="1378"/> 9676 10089 <source>Name: %ls 9677 10090 </source> … … 9680 10093 </message> 9681 10094 <message> 9682 <location filename="../VBoxManageList.cpp" line="13 57"/>10095 <location filename="../VBoxManageList.cpp" line="1381"/> 9683 10096 <source>Provider GUID: %ls 9684 10097 </source> … … 9687 10100 </message> 9688 10101 <message> 9689 <location filename="../VBoxManageList.cpp" line="13 73"/>10102 <location filename="../VBoxManageList.cpp" line="1397"/> 9690 10103 <source>Property: </source> 9691 10104 <translation>Свойство: </translation> 9692 10105 </message> 9693 10106 <message> 9694 <location filename="../VBoxManageList.cpp" line="14 11"/>10107 <location filename="../VBoxManageList.cpp" line="1435"/> 9695 10108 <source>CPU Profile #%02zu: 9696 10109 </source> … … 9699 10112 </message> 9700 10113 <message> 9701 <location filename="../VBoxManageList.cpp" line="14 12"/>10114 <location filename="../VBoxManageList.cpp" line="1436"/> 9702 10115 <source> Architecture: %s 9703 10116 </source> … … 9706 10119 </message> 9707 10120 <message> 9708 <location filename="../VBoxManageList.cpp" line="14 13"/>10121 <location filename="../VBoxManageList.cpp" line="1437"/> 9709 10122 <source> Name: %ls 9710 10123 </source> … … 9713 10126 </message> 9714 10127 <message> 9715 <location filename="../VBoxManageList.cpp" line="14 15"/>10128 <location filename="../VBoxManageList.cpp" line="1439"/> 9716 10129 <source> Full Name: %ls 9717 10130 </source> … … 9720 10133 </message> 9721 10134 <message> 9722 <location filename="../VBoxManageList.cpp" line="16 65"/>10135 <location filename="../VBoxManageList.cpp" line="1689"/> 9723 10136 <source>%sDrive: %ls 9724 10137 </source> … … 9727 10140 </message> 9728 10141 <message> 9729 <location filename="../VBoxManageList.cpp" line="16 67"/>10142 <location filename="../VBoxManageList.cpp" line="1691"/> 9730 10143 <source>%sDrive: %Rhrc 9731 10144 </source> … … 9734 10147 </message> 9735 10148 <message> 9736 <location filename="../VBoxManageList.cpp" line="16 72"/>10149 <location filename="../VBoxManageList.cpp" line="1696"/> 9737 10150 <source>Model: %Rhrc 9738 10151 </source> … … 9741 10154 </message> 9742 10155 <message> 9743 <location filename="../VBoxManageList.cpp" line="16 74"/>10156 <location filename="../VBoxManageList.cpp" line="1698"/> 9744 10157 <source>Model: "%ls" 9745 10158 </source> … … 9748 10161 </message> 9749 10162 <message> 9750 <location filename="../VBoxManageList.cpp" line="1 676"/>10163 <location filename="../VBoxManageList.cpp" line="1700"/> 9751 10164 <source>Model: unknown/inaccessible 9752 10165 </source> … … 9755 10168 </message> 9756 10169 <message> 9757 <location filename="../VBoxManageList.cpp" line="1 686"/>10170 <location filename="../VBoxManageList.cpp" line="1710"/> 9758 10171 <source>Further disk and partitioning information is not available for drive "%ls". (E_ACCESSDENIED) 9759 10172 </source> … … 9762 10175 </message> 9763 10176 <message numerus="yes"> 9764 <location filename="../VBoxManageList.cpp" line="1 699"/>10177 <location filename="../VBoxManageList.cpp" line="1723"/> 9765 10178 <source>Size: %llu bytes (%Rhcb) 9766 10179 </source> … … 9775 10188 </message> 9776 10189 <message> 9777 <location filename="../VBoxManageList.cpp" line="17 01"/>10190 <location filename="../VBoxManageList.cpp" line="1725"/> 9778 10191 <source>Size: %Rhcb 9779 10192 </source> … … 9782 10195 </message> 9783 10196 <message> 9784 <location filename="../VBoxManageList.cpp" line="17 04"/>10197 <location filename="../VBoxManageList.cpp" line="1728"/> 9785 10198 <source>Size: %Rhrc 9786 10199 </source> … … 9789 10202 </message> 9790 10203 <message numerus="yes"> 9791 <location filename="../VBoxManageList.cpp" line="17 11"/>10204 <location filename="../VBoxManageList.cpp" line="1735"/> 9792 10205 <source>Sector Size: %u bytes 9793 10206 </source> … … 9802 10215 </message> 9803 10216 <message> 9804 <location filename="../VBoxManageList.cpp" line="17 14"/>10217 <location filename="../VBoxManageList.cpp" line="1738"/> 9805 10218 <source>Sector Size: %Rhrc 9806 10219 </source> … … 9809 10222 </message> 9810 10223 <message> 9811 <location filename="../VBoxManageList.cpp" line="17 21"/>10224 <location filename="../VBoxManageList.cpp" line="1745"/> 9812 10225 <source>Scheme: %s 9813 10226 </source> … … 9816 10229 </message> 9817 10230 <message> 9818 <location filename="../VBoxManageList.cpp" line="17 24"/>10231 <location filename="../VBoxManageList.cpp" line="1748"/> 9819 10232 <source>Scheme: %Rhrc 9820 10233 </source> … … 9823 10236 </message> 9824 10237 <message> 9825 <location filename="../VBoxManageList.cpp" line="17 32"/>10238 <location filename="../VBoxManageList.cpp" line="1756"/> 9826 10239 <source>Partitions: %Rhrc 9827 10240 </source> … … 9830 10243 </message> 9831 10244 <message> 9832 <location filename="../VBoxManageList.cpp" line="17 36"/>10245 <location filename="../VBoxManageList.cpp" line="1760"/> 9833 10246 <source>Partitions: None (or not able to grok them). 9834 10247 </source> … … 9837 10250 </message> 9838 10251 <message> 9839 <location filename="../VBoxManageList.cpp" line="17 40"/>10252 <location filename="../VBoxManageList.cpp" line="1764"/> 9840 10253 <source>Partitions: First Last 9841 10254 ## Type Byte Size Byte Offset Cyl/Head/Sec Cyl/Head/Sec Active … … 9846 10259 </message> 9847 10260 <message> 9848 <location filename="../VBoxManageList.cpp" line="17 43"/>10261 <location filename="../VBoxManageList.cpp" line="1767"/> 9849 10262 <source>Partitions: First Last 9850 10263 ## Type Size Start Cyl/Head/Sec Cyl/Head/Sec Active … … 9855 10268 </message> 9856 10269 <message> 9857 <location filename="../VBoxManageList.cpp" line="18 02"/>10270 <location filename="../VBoxManageList.cpp" line="1826"/> 9858 10271 <source>Partitions: 9859 10272 ## %-*s Uuid Byte Size Byte Offset Active Name … … 9864 10277 </message> 9865 10278 <message> 9866 <location filename="../VBoxManageList.cpp" line="18 05"/>9867 <location filename="../VBoxManageList.cpp" line="18 10"/>10279 <location filename="../VBoxManageList.cpp" line="1829"/> 10280 <location filename="../VBoxManageList.cpp" line="1834"/> 9868 10281 <source>Type</source> 9869 10282 <translation>Тип</translation> 9870 10283 </message> 9871 10284 <message> 9872 <location filename="../VBoxManageList.cpp" line="18 07"/>10285 <location filename="../VBoxManageList.cpp" line="1831"/> 9873 10286 <source>Partitions: 9874 10287 ## %-*s Uuid Size Start Active Name … … 9879 10292 </message> 9880 10293 <message> 9881 <location filename="../VBoxManageList.cpp" line="20 16"/>10294 <location filename="../VBoxManageList.cpp" line="2043"/> 9882 10295 <source>Description: %ls 9883 10296 </source> … … 9886 10299 </message> 9887 10300 <message> 9888 <location filename="../VBoxManageList.cpp" line="20 19"/>10301 <location filename="../VBoxManageList.cpp" line="2046"/> 9889 10302 <source>Family ID: %ls 9890 10303 </source> … … 9893 10306 </message> 9894 10307 <message> 9895 <location filename="../VBoxManageList.cpp" line="20 22"/>10308 <location filename="../VBoxManageList.cpp" line="2049"/> 9896 10309 <source>Family Desc: %ls 9897 10310 </source> … … 9900 10313 </message> 9901 10314 <message> 9902 <location filename="../VBoxManageList.cpp" line="20 25"/>10315 <location filename="../VBoxManageList.cpp" line="2052"/> 9903 10316 <source>64 bit: %RTbool 9904 10317 </source> … … 9907 10320 </message> 9908 10321 <message> 9909 <location filename="../VBoxManageList.cpp" line="20 48"/>9910 <location filename="../VBoxManageList.cpp" line="20 70"/>10322 <location filename="../VBoxManageList.cpp" line="2075"/> 10323 <location filename="../VBoxManageList.cpp" line="2097"/> 9911 10324 <source>Name: %ls 9912 10325 … … 9917 10330 </message> 9918 10331 <message> 9919 <location filename="../VBoxManageList.cpp" line="21 07"/>10332 <location filename="../VBoxManageList.cpp" line="2134"/> 9920 10333 <source>Host CPUIDs: 9921 10334 … … 9928 10341 </message> 9929 10342 <message> 9930 <location filename="../VBoxManageList.cpp" line="21 39"/>10343 <location filename="../VBoxManageList.cpp" line="2166"/> 9931 10344 <source>base</source> 9932 10345 <translation>базовый</translation> 9933 10346 </message> 9934 10347 <message> 9935 <location filename="../VBoxManageList.cpp" line="2198"/>9936 10348 <source>Network: %ls 9937 10349 </source> 9938 <translation>Сеть: %ls 9939 </translation> 9940 </message> 9941 <message> 9942 <location filename="../VBoxManageList.cpp" line="2201"/> 10350 <translation type="vanished">Сеть: %ls 10351 </translation> 10352 </message> 10353 <message> 9943 10354 <source>IPv6 Enabled: %s 9944 10355 </source> 9945 <translation>IPv6 включен: %s 9946 </translation> 9947 </message> 9948 <message> 9949 <location filename="../VBoxManageList.cpp" line="2204"/> 10356 <translation type="vanished">IPv6 включен: %s 10357 </translation> 10358 </message> 10359 <message> 9950 10360 <source>IPv6 Prefix: %ls 9951 10361 </source> 9952 <translation>IPv6 префикс: %ls 9953 </translation> 9954 </message> 9955 <message> 9956 <location filename="../VBoxManageList.cpp" line="2206"/> 10362 <translation type="vanished">IPv6 префикс: %ls 10363 </translation> 10364 </message> 10365 <message> 9957 10366 <source>DHCP Enabled: %s 9958 10367 </source> 9959 <translation>DHCP включен: %s 9960 </translation> 9961 </message> 9962 <message> 9963 <location filename="../VBoxManageList.cpp" line="2222"/> 10368 <translation type="vanished">DHCP включен: %s 10369 </translation> 10370 </message> 10371 <message> 9964 10372 <source>Port-forwarding (ipv4) 9965 10373 </source> 9966 <translation>Перенаправление портов (ipv4) 9967 </translation> 9968 </message> 9969 <message> 9970 <location filename="../VBoxManageList.cpp" line="2226"/> 10374 <translation type="vanished">Перенаправление портов (ipv4) 10375 </translation> 10376 </message> 10377 <message> 9971 10378 <source>Port-forwarding (ipv6) 9972 10379 </source> 9973 <translation>Перенаправление портов (ipv6) 9974 </translation> 9975 </message> 9976 <message> 9977 <location filename="../VBoxManageList.cpp" line="2230"/> 10380 <translation type="vanished">Перенаправление портов (ipv6) 10381 </translation> 10382 </message> 10383 <message> 9978 10384 <source>loopback mappings (ipv4) 9979 10385 </source> 9980 <translation >отображение локальной петли (ipv4)9981 </translation> 9982 </message> 9983 <message> 9984 <location filename="../VBoxManageList.cpp" line="2 402"/>10386 <translation type="vanished">отображение локальной петли (ipv4) 10387 </translation> 10388 </message> 10389 <message> 10390 <location filename="../VBoxManageList.cpp" line="2388"/> 9985 10391 <source>Unknown subcommand "%s".</source> 9986 10392 <translation>Неизвестная подкоманда "%s".</translation> 9987 10393 </message> 9988 10394 <message> 9989 <location filename="../VBoxManageList.cpp" line="2 413"/>10395 <location filename="../VBoxManageList.cpp" line="2399"/> 9990 10396 <source>Missing subcommand for "list" command. 9991 10397 </source> … … 9997 10403 <name>Metrics</name> 9998 10404 <message> 9999 <location filename="../VBoxManageMetrics.cpp" line="9 2"/>10405 <location filename="../VBoxManageMetrics.cpp" line="90"/> 10000 10406 <source>Invalid machine name: '%s'</source> 10001 10407 <translation>Недопустимое имя машины: '%s'</translation> 10002 10408 </message> 10003 10409 <message> 10004 <location filename="../VBoxManageMetrics.cpp" line="1 30"/>10410 <location filename="../VBoxManageMetrics.cpp" line="128"/> 10005 10411 <source>host</source> 10006 10412 <translation>хост</translation> 10007 10413 </message> 10008 10414 <message> 10009 <location filename="../VBoxManageMetrics.cpp" line="1 40"/>10415 <location filename="../VBoxManageMetrics.cpp" line="138"/> 10010 10416 <source>unknown</source> 10011 10417 <translation>неизвестно</translation> 10012 10418 </message> 10013 10419 <message> 10014 <location filename="../VBoxManageMetrics.cpp" line="1 51"/>10420 <location filename="../VBoxManageMetrics.cpp" line="149"/> 10015 10421 <source>The following metrics were modified: 10016 10422 … … 10025 10431 </message> 10026 10432 <message> 10027 <location filename="../VBoxManageMetrics.cpp" line="16 5"/>10433 <location filename="../VBoxManageMetrics.cpp" line="163"/> 10028 10434 <source>No metrics match the specified filter!</source> 10029 10435 <translation>Не найдено метрик, подходящих под указанный фильтр!</translation> … … 10039 10445 </message> 10040 10446 <message> 10041 <location filename="../VBoxManageMetrics.cpp" line="2 38"/>10042 <location filename="../VBoxManageMetrics.cpp" line="24 7"/>10043 <location filename="../VBoxManageMetrics.cpp" line="4 05"/>10044 <location filename="../VBoxManageMetrics.cpp" line="4 14"/>10447 <location filename="../VBoxManageMetrics.cpp" line="240"/> 10448 <location filename="../VBoxManageMetrics.cpp" line="249"/> 10449 <location filename="../VBoxManageMetrics.cpp" line="412"/> 10450 <location filename="../VBoxManageMetrics.cpp" line="421"/> 10045 10451 <source>Missing argument to '%s'</source> 10046 10452 <translation>Отсутствует аргумент к '%s'</translation> 10047 10453 </message> 10048 10454 <message> 10049 <location filename="../VBoxManageMetrics.cpp" line="24 1"/>10050 <location filename="../VBoxManageMetrics.cpp" line="4 08"/>10455 <location filename="../VBoxManageMetrics.cpp" line="243"/> 10456 <location filename="../VBoxManageMetrics.cpp" line="415"/> 10051 10457 <source>Invalid value for 'period' parameter: '%s'</source> 10052 10458 <translation>Недопустимое значение для параметра 'period': '%s'</translation> 10053 10459 </message> 10054 10460 <message> 10055 <location filename="../VBoxManageMetrics.cpp" line="25 0"/>10056 <location filename="../VBoxManageMetrics.cpp" line="4 17"/>10461 <location filename="../VBoxManageMetrics.cpp" line="252"/> 10462 <location filename="../VBoxManageMetrics.cpp" line="424"/> 10057 10463 <source>Invalid value for 'samples' parameter: '%s'</source> 10058 10464 <translation>Недопустимое значение для параметра 'samples': '%s'</translation> 10059 10465 </message> 10060 10466 <message> 10061 <location filename="../VBoxManageMetrics.cpp" line="31 5"/>10467 <location filename="../VBoxManageMetrics.cpp" line="319"/> 10062 10468 <source>Object Metric Values 10063 10469 --------------- ---------------------------------------- -------------------------------------------- … … 10068 10474 </message> 10069 10475 <message> 10070 <location filename="../VBoxManageMetrics.cpp" line="4 76"/>10476 <location filename="../VBoxManageMetrics.cpp" line="483"/> 10071 10477 <source>The background process holding collected metrics will shutdown 10072 10478 in few seconds, discarding all collected data and parameters.</source> … … 10076 10482 </message> 10077 10483 <message> 10078 <location filename="../VBoxManageMetrics.cpp" line="4 85"/>10484 <location filename="../VBoxManageMetrics.cpp" line="492"/> 10079 10485 <source>Time stamp Object Metric Value 10080 10486 </source> … … 10083 10489 </message> 10084 10490 <message> 10085 <location filename="../VBoxManageMetrics.cpp" line="6 28"/>10491 <location filename="../VBoxManageMetrics.cpp" line="639"/> 10086 10492 <source>Subcommand missing</source> 10087 10493 <translation>Отсутствует подкоманда</translation> 10088 10494 </message> 10089 10495 <message> 10090 <location filename="../VBoxManageMetrics.cpp" line="6 47"/>10496 <location filename="../VBoxManageMetrics.cpp" line="658"/> 10091 10497 <source>Invalid subcommand '%s'</source> 10092 10498 <translation>Недопустимая подкоманда '%s'</translation> … … 10096 10502 <name>Misc</name> 10097 10503 <message> 10098 <location filename="../VBoxManageMisc.cpp" line="6 8"/>10099 <location filename="../VBoxManageMisc.cpp" line="76 3"/>10100 <location filename="../VBoxManageMisc.cpp" line="7 92"/>10101 <location filename="../VBoxManageMisc.cpp" line="82 7"/>10102 <location filename="../VBoxManageMisc.cpp" line="95 3"/>10504 <location filename="../VBoxManageMisc.cpp" line="66"/> 10505 <location filename="../VBoxManageMisc.cpp" line="760"/> 10506 <location filename="../VBoxManageMisc.cpp" line="789"/> 10507 <location filename="../VBoxManageMisc.cpp" line="824"/> 10508 <location filename="../VBoxManageMisc.cpp" line="950"/> 10103 10509 <source>Incorrect number of parameters</source> 10104 10510 <translation>Некорректное количество параметров</translation> 10105 10511 </message> 10106 10512 <message> 10107 <location filename="../VBoxManageMisc.cpp" line=" 81"/>10108 <location filename="../VBoxManageMisc.cpp" line=" 802"/>10513 <location filename="../VBoxManageMisc.cpp" line="79"/> 10514 <location filename="../VBoxManageMisc.cpp" line="799"/> 10109 10515 <source>Cannot convert filename "%s" to absolute path: %Rrc</source> 10110 10516 <translation>Невозможно преобразовать имя файла "%s" в абсолютный путь: %Rrc</translation> 10111 10517 </message> 10112 10518 <message> 10113 <location filename="../VBoxManageMisc.cpp" line="12 7"/>10114 <location filename="../VBoxManageMisc.cpp" line="35 6"/>10115 <location filename="../VBoxManageMisc.cpp" line="53 2"/>10116 <location filename="../VBoxManageMisc.cpp" line="107 8"/>10519 <location filename="../VBoxManageMisc.cpp" line="125"/> 10520 <location filename="../VBoxManageMisc.cpp" line="354"/> 10521 <location filename="../VBoxManageMisc.cpp" line="530"/> 10522 <location filename="../VBoxManageMisc.cpp" line="1075"/> 10117 10523 <source>Invalid parameter '%s'</source> 10118 10524 <translation>Недопустимый параметр '%s'</translation> 10119 10525 </message> 10120 10526 <message> 10121 <location filename="../VBoxManageMisc.cpp" line="13 4"/>10122 <location filename="../VBoxManageMisc.cpp" line="68 6"/>10527 <location filename="../VBoxManageMisc.cpp" line="132"/> 10528 <location filename="../VBoxManageMisc.cpp" line="683"/> 10123 10529 <source>Invalid option -%c</source> 10124 10530 <translation>Недопустимая опция -%c</translation> 10125 10531 </message> 10126 10532 <message> 10127 <location filename="../VBoxManageMisc.cpp" line="13 5"/>10128 <location filename="../VBoxManageMisc.cpp" line="68 8"/>10533 <location filename="../VBoxManageMisc.cpp" line="133"/> 10534 <location filename="../VBoxManageMisc.cpp" line="685"/> 10129 10535 <source>Invalid option case %i</source> 10130 10536 <translation>Недопустимый вариант опции %i</translation> 10131 10537 </message> 10132 10538 <message> 10133 <location filename="../VBoxManageMisc.cpp" line="13 8"/>10134 <location filename="../VBoxManageMisc.cpp" line="6 91"/>10539 <location filename="../VBoxManageMisc.cpp" line="136"/> 10540 <location filename="../VBoxManageMisc.cpp" line="688"/> 10135 10541 <source>unknown option: %s 10136 10542 </source> … … 10139 10545 </message> 10140 10546 <message> 10141 <location filename="../VBoxManageMisc.cpp" line="1 41"/>10142 <location filename="../VBoxManageMisc.cpp" line="69 5"/>10547 <location filename="../VBoxManageMisc.cpp" line="139"/> 10548 <location filename="../VBoxManageMisc.cpp" line="692"/> 10143 10549 <source>error: %Rrs</source> 10144 10550 <translation>ошибка: %Rrs</translation> 10145 10551 </message> 10146 10552 <message> 10147 <location filename="../VBoxManageMisc.cpp" line="14 7"/>10148 <location filename="../VBoxManageMisc.cpp" line="37 2"/>10149 <location filename="../VBoxManageMisc.cpp" line="54 2"/>10553 <location filename="../VBoxManageMisc.cpp" line="145"/> 10554 <location filename="../VBoxManageMisc.cpp" line="370"/> 10555 <location filename="../VBoxManageMisc.cpp" line="540"/> 10150 10556 <source>VM name required</source> 10151 10557 <translation>Требуется имя ВМ</translation> 10152 10558 </message> 10153 10559 <message> 10154 <location filename="../VBoxManageMisc.cpp" line="16 4"/>10560 <location filename="../VBoxManageMisc.cpp" line="162"/> 10155 10561 <source>Machine delete failed</source> 10156 10562 <translation>Не удалось удалить машину</translation> 10157 10563 </message> 10158 10564 <message> 10159 <location filename="../VBoxManageMisc.cpp" line="25 8"/>10565 <location filename="../VBoxManageMisc.cpp" line="256"/> 10160 10566 <source>Parameter --name is required</source> 10161 10567 <translation>Требуется параметр --name</translation> 10162 10568 </message> 10163 10569 <message> 10164 <location filename="../VBoxManageMisc.cpp" line=" 300"/>10570 <location filename="../VBoxManageMisc.cpp" line="298"/> 10165 10571 <source>Virtual machine '%ls' is created%s. 10166 10572 UUID: %s … … 10173 10579 </message> 10174 10580 <message> 10175 <location filename="../VBoxManageMisc.cpp" line="30 3"/>10581 <location filename="../VBoxManageMisc.cpp" line="301"/> 10176 10582 <source> and registered</source> 10177 10583 <translation> и зарегистрирована</translation> 10178 10584 </message> 10179 10585 <message> 10180 <location filename="../VBoxManageMisc.cpp" line="34 5"/>10181 <location filename="../VBoxManageMisc.cpp" line="13 91"/>10586 <location filename="../VBoxManageMisc.cpp" line="343"/> 10587 <location filename="../VBoxManageMisc.cpp" line="1388"/> 10182 10588 <source>RTPathAbs(%s,,) failed with rc=%Rrc</source> 10183 10589 <translation>RTPathAbs(%s,,) завершен с ошибкой rc=%Rrc</translation> 10184 10590 </message> 10185 10591 <message> 10186 <location filename="../VBoxManageMisc.cpp" line="39 6"/>10592 <location filename="../VBoxManageMisc.cpp" line="394"/> 10187 10593 <source>Move VM failed</source> 10188 10594 <translation>Не удалось переместить ВМ</translation> 10189 10595 </message> 10190 10596 <message> 10191 <location filename="../VBoxManageMisc.cpp" line=" 401"/>10597 <location filename="../VBoxManageMisc.cpp" line="399"/> 10192 10598 <source>Machine has been successfully moved into %s 10193 10599 </source> … … 10196 10602 </message> 10197 10603 <message> 10198 <location filename="../VBoxManageMisc.cpp" line="40 2"/>10604 <location filename="../VBoxManageMisc.cpp" line="400"/> 10199 10605 <source>the same location</source> 10200 10606 <translation>то же место</translation> 10201 10607 </message> 10202 10608 <message> 10203 <location filename="../VBoxManageMisc.cpp" line="51 2"/>10609 <location filename="../VBoxManageMisc.cpp" line="510"/> 10204 10610 <source>Invalid clone mode '%s' 10205 10611 </source> … … 10208 10614 </message> 10209 10615 <message> 10210 <location filename="../VBoxManageMisc.cpp" line="51 7"/>10616 <location filename="../VBoxManageMisc.cpp" line="515"/> 10211 10617 <source>Invalid clone options '%s' 10212 10618 </source> … … 10215 10621 </message> 10216 10622 <message> 10217 <location filename="../VBoxManageMisc.cpp" line="56 4"/>10623 <location filename="../VBoxManageMisc.cpp" line="562"/> 10218 10624 <source>%s Clone</source> 10219 10625 <translation>Клон %s</translation> 10220 10626 </message> 10221 10627 <message> 10222 <location filename="../VBoxManageMisc.cpp" line="59 8"/>10628 <location filename="../VBoxManageMisc.cpp" line="596"/> 10223 10629 <source>Clone VM failed</source> 10224 10630 <translation>Не удалось клонировать ВМ</translation> 10225 10631 </message> 10226 10632 <message> 10227 <location filename="../VBoxManageMisc.cpp" line="60 5"/>10633 <location filename="../VBoxManageMisc.cpp" line="603"/> 10228 10634 <source>Machine has been successfully cloned as "%ls" 10229 10635 </source> … … 10232 10638 </message> 10233 10639 <message> 10234 <location filename="../VBoxManageMisc.cpp" line="67 5"/>10640 <location filename="../VBoxManageMisc.cpp" line="672"/> 10235 10641 <source>Parameter to option --putenv must not contain any newline character</source> 10236 10642 <translation>Параметр к опции --putenv не должен содержать переводов строки</translation> 10237 10643 </message> 10238 10644 <message> 10239 <location filename="../VBoxManageMisc.cpp" line=" 701"/>10645 <location filename="../VBoxManageMisc.cpp" line="698"/> 10240 10646 <source>at least one VM name or uuid required</source> 10241 10647 <translation>Требуется хотя бы одно имя ВМ или uuid</translation> 10242 10648 </message> 10243 10649 <message> 10244 <location filename="../VBoxManageMisc.cpp" line="71 9"/>10650 <location filename="../VBoxManageMisc.cpp" line="716"/> 10245 10651 <source>Waiting for VM "%s" to power on... 10246 10652 </source> … … 10249 10655 </message> 10250 10656 <message> 10251 <location filename="../VBoxManageMisc.cpp" line="73 4"/>10657 <location filename="../VBoxManageMisc.cpp" line="731"/> 10252 10658 <source>VM "%s" has been successfully started. 10253 10659 </source> … … 10256 10662 </message> 10257 10663 <message> 10258 <location filename="../VBoxManageMisc.cpp" line="84 7"/>10259 <location filename="../VBoxManageMisc.cpp" line="88 3"/>10664 <location filename="../VBoxManageMisc.cpp" line="844"/> 10665 <location filename="../VBoxManageMisc.cpp" line="880"/> 10260 10666 <source>Key: %ls, Value: %ls 10261 10667 </source> … … 10264 10670 </message> 10265 10671 <message> 10266 <location filename="../VBoxManageMisc.cpp" line="85 6"/>10267 <location filename="../VBoxManageMisc.cpp" line="8 92"/>10672 <location filename="../VBoxManageMisc.cpp" line="853"/> 10673 <location filename="../VBoxManageMisc.cpp" line="889"/> 10268 10674 <source>Value: %ls 10269 10675 </source> … … 10272 10678 </message> 10273 10679 <message> 10274 <location filename="../VBoxManageMisc.cpp" line="85 8"/>10275 <location filename="../VBoxManageMisc.cpp" line="89 4"/>10680 <location filename="../VBoxManageMisc.cpp" line="855"/> 10681 <location filename="../VBoxManageMisc.cpp" line="891"/> 10276 10682 <source>No value set! 10277 10683 </source> … … 10280 10686 </message> 10281 10687 <message> 10282 <location filename="../VBoxManageMisc.cpp" line="90 6"/>10283 <location filename="../VBoxManageMisc.cpp" line="131 8"/>10688 <location filename="../VBoxManageMisc.cpp" line="903"/> 10689 <location filename="../VBoxManageMisc.cpp" line="1315"/> 10284 10690 <source>Not enough parameters</source> 10285 10691 <translation>Недостаточно параметров</translation> 10286 10692 </message> 10287 10693 <message> 10288 <location filename="../VBoxManageMisc.cpp" line="91 9"/>10289 <location filename="../VBoxManageMisc.cpp" line="9 41"/>10694 <location filename="../VBoxManageMisc.cpp" line="916"/> 10695 <location filename="../VBoxManageMisc.cpp" line="938"/> 10290 10696 <source>Too many parameters</source> 10291 10697 <translation>Слишком много параметров</translation> 10292 10698 </message> 10293 10699 <message> 10294 <location filename="../VBoxManageMisc.cpp" line="97 5"/>10700 <location filename="../VBoxManageMisc.cpp" line="972"/> 10295 10701 <source>Invalid hwvirtexclusive argument '%s'</source> 10296 10702 <translation>Недопустимый аргумент к hwvirtexclusive '%s'</translation> 10297 10703 </message> 10298 10704 <message> 10299 <location filename="../VBoxManageMisc.cpp" line="9 82"/>10705 <location filename="../VBoxManageMisc.cpp" line="979"/> 10300 10706 <source>Warning: 'vrdpauthlibrary' is deprecated. Use 'vrdeauthlibrary'. 10301 10707 </source> … … 10304 10710 </message> 10305 10711 <message> 10306 <location filename="../VBoxManageMisc.cpp" line="10 12"/>10712 <location filename="../VBoxManageMisc.cpp" line="1009"/> 10307 10713 <source>Error parsing Log history count '%s'</source> 10308 10714 <translation>Ошибка при разборе размера истории журнала '%s'</translation> 10309 10715 </message> 10310 10716 <message> 10311 <location filename="../VBoxManageMisc.cpp" line="104 7"/>10717 <location filename="../VBoxManageMisc.cpp" line="1044"/> 10312 10718 <source>Unknown proxy mode: '%s'</source> 10313 10719 <translation>Неизвестный режим прокси: '%s'</translation> 10314 10720 </message> 10315 10721 <message> 10316 <location filename="../VBoxManageMisc.cpp" line="11 41"/>10317 <location filename="../VBoxManageMisc.cpp" line="125 3"/>10722 <location filename="../VBoxManageMisc.cpp" line="1138"/> 10723 <location filename="../VBoxManageMisc.cpp" line="1250"/> 10318 10724 <source>Machine name is given more than once: first '%s', then '%s'</source> 10319 10725 <translation>Имя машины дано более одного раза: сначала '%s', затем '%s'</translation> 10320 10726 </message> 10321 10727 <message> 10322 <location filename="../VBoxManageMisc.cpp" line="11 51"/>10323 <location filename="../VBoxManageMisc.cpp" line="126 3"/>10728 <location filename="../VBoxManageMisc.cpp" line="1148"/> 10729 <location filename="../VBoxManageMisc.cpp" line="1260"/> 10324 10730 <source>No machine was specified</source> 10325 10731 <translation>Не указана машина</translation> 10326 10732 </message> 10327 10733 <message> 10328 <location filename="../VBoxManageMisc.cpp" line="115 4"/>10329 <location filename="../VBoxManageMisc.cpp" line="126 5"/>10734 <location filename="../VBoxManageMisc.cpp" line="1151"/> 10735 <location filename="../VBoxManageMisc.cpp" line="1262"/> 10330 10736 <source>No shared folder name (--name) was given</source> 10331 10737 <translation>Не указано имя общей папки (--name)</translation> 10332 10738 </message> 10333 10739 <message> 10334 <location filename="../VBoxManageMisc.cpp" line="115 6"/>10740 <location filename="../VBoxManageMisc.cpp" line="1153"/> 10335 10741 <source>Invalid shared folder name '%s': contains space</source> 10336 10742 <translation>Недопустимое имя общей папки '%s': содержит пробелы</translation> 10337 10743 </message> 10338 10744 <message> 10339 <location filename="../VBoxManageMisc.cpp" line="115 8"/>10745 <location filename="../VBoxManageMisc.cpp" line="1155"/> 10340 10746 <source>Invalid shared folder name '%s': contains tabs</source> 10341 10747 <translation>Недопустимое имя общей папки '%s': содержит табуляцию</translation> 10342 10748 </message> 10343 10749 <message> 10344 <location filename="../VBoxManageMisc.cpp" line="11 60"/>10750 <location filename="../VBoxManageMisc.cpp" line="1157"/> 10345 10751 <source>Invalid shared folder name '%s': contains newline</source> 10346 10752 <translation>Недопустимое имя общей папки '%s': содержит переводы строк</translation> 10347 10753 </message> 10348 10754 <message> 10349 <location filename="../VBoxManageMisc.cpp" line="116 3"/>10755 <location filename="../VBoxManageMisc.cpp" line="1160"/> 10350 10756 <source>No host path (--hostpath) was given</source> 10351 10757 <translation>Не указан путь хоста (--hostpath)</translation> 10352 10758 </message> 10353 10759 <message> 10354 <location filename="../VBoxManageMisc.cpp" line="116 7"/>10760 <location filename="../VBoxManageMisc.cpp" line="1164"/> 10355 10761 <source>RTAbsPath failed on '%s': %Rrc</source> 10356 10762 <translation>RTAbsPath завершился с ошибкой на '%s': %Rrc</translation> 10357 10763 </message> 10358 10764 <message> 10359 <location filename="../VBoxManageMisc.cpp" line="11 90"/>10765 <location filename="../VBoxManageMisc.cpp" line="1187"/> 10360 10766 <source>Machine '%s' is not currently running.</source> 10361 10767 <translation>Машина '%s' сейчас не запущена.</translation> 10362 10768 </message> 10363 10769 <message> 10364 <location filename="../VBoxManageMisc.cpp" line="128 6"/>10770 <location filename="../VBoxManageMisc.cpp" line="1283"/> 10365 10771 <source>Machine '%s' is not currently running. 10366 10772 </source> … … 10369 10775 </message> 10370 10776 <message> 10371 <location filename="../VBoxManageMisc.cpp" line="137 7"/>10372 <location filename="../VBoxManageMisc.cpp" line="14 62"/>10777 <location filename="../VBoxManageMisc.cpp" line="1374"/> 10778 <location filename="../VBoxManageMisc.cpp" line="1459"/> 10373 10779 <source>Too many extension pack names given to "extpack uninstall"</source> 10374 10780 <translation>Слишком много имен пакетов расширений указано для "extpack uninstall"</translation> 10375 10781 </message> 10376 10782 <message> 10377 <location filename="../VBoxManageMisc.cpp" line="138 6"/>10783 <location filename="../VBoxManageMisc.cpp" line="1383"/> 10378 10784 <source>No extension pack name was given to "extpack install"</source> 10379 10785 <translation>Не указано имя пакета расширения для "extpack install"</translation> 10380 10786 </message> 10381 10787 <message> 10382 <location filename="../VBoxManageMisc.cpp" line="141 5"/>10788 <location filename="../VBoxManageMisc.cpp" line="1412"/> 10383 10789 <source>License accepted. 10384 10790 </source> … … 10387 10793 </message> 10388 10794 <message> 10389 <location filename="../VBoxManageMisc.cpp" line="141 9"/>10795 <location filename="../VBoxManageMisc.cpp" line="1416"/> 10390 10796 <source>Do you agree to these license terms and conditions (y/n)? </source> 10391 10797 <translation>Вы согласны с этими определениями и условиями лицензии (y/n)? </translation> 10392 10798 </message> 10393 10799 <message> 10394 <location filename="../VBoxManageMisc.cpp" line="142 4"/>10800 <location filename="../VBoxManageMisc.cpp" line="1421"/> 10395 10801 <source>Installation of "%ls" aborted. 10396 10802 </source> … … 10399 10805 </message> 10400 10806 <message> 10401 <location filename="../VBoxManageMisc.cpp" line="142 8"/>10807 <location filename="../VBoxManageMisc.cpp" line="1425"/> 10402 10808 <source>License accepted. For batch installation add 10403 10809 --accept-license=%s … … 10412 10818 </message> 10413 10819 <message> 10414 <location filename="../VBoxManageMisc.cpp" line="143 6"/>10820 <location filename="../VBoxManageMisc.cpp" line="1433"/> 10415 10821 <source>Failed to install "%s"</source> 10416 10822 <translation>Не удалось установить "%s"</translation> 10417 10823 </message> 10418 10824 <message> 10419 <location filename="../VBoxManageMisc.cpp" line="143 8"/>10825 <location filename="../VBoxManageMisc.cpp" line="1435"/> 10420 10826 <source>Successfully installed "%ls". 10421 10827 </source> … … 10424 10830 </message> 10425 10831 <message> 10426 <location filename="../VBoxManageMisc.cpp" line="14 71"/>10832 <location filename="../VBoxManageMisc.cpp" line="1468"/> 10427 10833 <source>No extension pack name was given to "extpack uninstall"</source> 10428 10834 <translation>Не указано имя пакета расширения для "extpack uninstall"</translation> 10429 10835 </message> 10430 10836 <message> 10431 <location filename="../VBoxManageMisc.cpp" line="147 7"/>10837 <location filename="../VBoxManageMisc.cpp" line="1474"/> 10432 10838 <source>Failed to uninstall "%s"</source> 10433 10839 <translation>Не удалось удалить "%s"</translation> 10434 10840 </message> 10435 10841 <message> 10436 <location filename="../VBoxManageMisc.cpp" line="147 9"/>10842 <location filename="../VBoxManageMisc.cpp" line="1476"/> 10437 10843 <source>Successfully uninstalled "%s". 10438 10844 </source> … … 10441 10847 </message> 10442 10848 <message> 10443 <location filename="../VBoxManageMisc.cpp" line="148 7"/>10849 <location filename="../VBoxManageMisc.cpp" line="1484"/> 10444 10850 <source>Successfully performed extension pack cleanup 10445 10851 </source> … … 10448 10854 </message> 10449 10855 <message> 10450 <location filename="../VBoxManageMisc.cpp" line="1529"/> 10451 <location filename="../VBoxManageMisc.cpp" line="1672"/> 10452 <location filename="../VBoxManageMisc.cpp" line="1711"/> 10453 <location filename="../VBoxManageMisc.cpp" line="1724"/> 10454 <location filename="../VBoxManageMisc.cpp" line="1759"/> 10455 <location filename="../VBoxManageMisc.cpp" line="1770"/> 10856 <location filename="../VBoxManageMisc.cpp" line="1526"/> 10857 <location filename="../VBoxManageMisc.cpp" line="1679"/> 10858 <location filename="../VBoxManageMisc.cpp" line="1718"/> 10859 <location filename="../VBoxManageMisc.cpp" line="1731"/> 10860 <location filename="../VBoxManageMisc.cpp" line="1766"/> 10456 10861 <location filename="../VBoxManageMisc.cpp" line="1777"/> 10862 <location filename="../VBoxManageMisc.cpp" line="1784"/> 10457 10863 <source>RTPathAbs failed on '%s': %Rrc</source> 10458 10864 <translation>RTPathAbs завершился с ошибкой на '%s': %Rrc</translation> 10459 10865 </message> 10460 10866 <message> 10461 <location filename="../VBoxManageMisc.cpp" line="154 5"/>10867 <location filename="../VBoxManageMisc.cpp" line="1542"/> 10462 10868 <source>No ISO specified</source> 10463 10869 <translation>Не указан ISO</translation> 10464 10870 </message> 10465 10871 <message> 10466 <location filename="../VBoxManageMisc.cpp" line="158 2"/>10872 <location filename="../VBoxManageMisc.cpp" line="1587"/> 10467 10873 <source>Detected '%s' to be: 10468 10874 </source> … … 10471 10877 </message> 10472 10878 <message> 10473 <location filename="../VBoxManageMisc.cpp" line="158 3"/>10879 <location filename="../VBoxManageMisc.cpp" line="1588"/> 10474 10880 <source> OS TypeId = %ls 10475 10881 OS Version = %ls … … 10486 10892 </message> 10487 10893 <message> 10488 <location filename="../VBoxManageMisc.cpp" line="16 64"/>10894 <location filename="../VBoxManageMisc.cpp" line="1671"/> 10489 10895 <source>VM name/UUID given more than once!</source> 10490 10896 <translation>Имя ВМ/UUID указаны несколько раз!</translation> 10491 10897 </message> 10492 10898 <message> 10493 <location filename="../VBoxManageMisc.cpp" line="18 06"/>10899 <location filename="../VBoxManageMisc.cpp" line="1813"/> 10494 10900 <source>Missing VM name/UUID</source> 10495 10901 <translation>Отсутствует имя ВМ/UUID</translation> 10496 10902 </message> 10497 10903 <message> 10498 <location filename="../VBoxManageMisc.cpp" line="18 58"/>10904 <location filename="../VBoxManageMisc.cpp" line="1865"/> 10499 10905 <source>Machine '%ls' is currently running</source> 10500 10906 <translation>Машина '%ls' сейчас работает</translation> 10501 10907 </message> 10502 10908 <message> 10503 <location filename="../VBoxManageMisc.cpp" line="18 64"/>10909 <location filename="../VBoxManageMisc.cpp" line="1871"/> 10504 10910 <source>%s unattended installation of %s in machine '%ls' (%ls). 10505 10911 </source> … … 10508 10914 </message> 10509 10915 <message> 10510 <location filename="../VBoxManageMisc.cpp" line="18 65"/>10916 <location filename="../VBoxManageMisc.cpp" line="1872"/> 10511 10917 <source>Preparing</source> 10512 10918 <translation>Подготовка</translation> 10513 10919 </message> 10514 10920 <message> 10515 <location filename="../VBoxManageMisc.cpp" line="18 65"/>10921 <location filename="../VBoxManageMisc.cpp" line="1872"/> 10516 10922 <source>Starting</source> 10517 10923 <translation>Запуск</translation> 10518 10924 </message> 10519 10925 <message> 10520 <location filename="../VBoxManageMisc.cpp" line="18 78"/>10926 <location filename="../VBoxManageMisc.cpp" line="1885"/> 10521 10927 <source>Using values: 10522 10928 </source> … … 10525 10931 </message> 10526 10932 <message> 10527 <location filename="../VBoxManageMisc.cpp" line="1885"/> 10528 <location filename="../VBoxManageMisc.cpp" line="1893"/> 10933 <location filename="../VBoxManageMisc.cpp" line="1892"/> 10934 <location filename="../VBoxManageMisc.cpp" line="1900"/> 10935 <location filename="../VBoxManageMisc.cpp" line="1952"/> 10529 10936 <source> %32s = failed: %Rhrc 10530 10937 </source> … … 10533 10940 </message> 10534 10941 <message> 10535 <location filename="../VBoxManageMisc.cpp" line="1937"/> 10942 <location filename="../VBoxManageMisc.cpp" line="1955"/> 10943 <source> %32 = failed: %Rhrc 10944 </source> 10945 <translation type="unfinished"></translation> 10946 </message> 10947 <message> 10948 <location filename="../VBoxManageMisc.cpp" line="1971"/> 10536 10949 <source>VM '%ls' (%ls) is ready to be started (e.g. VBoxManage startvm). 10537 10950 </source> … … 10540 10953 </message> 10541 10954 <message> 10542 <location filename="../VBoxManageMisc.cpp" line="19 56"/>10955 <location filename="../VBoxManageMisc.cpp" line="1990"/> 10543 10956 <source>Waiting for VM '%ls' to power on... 10544 10957 </source> … … 10547 10960 </message> 10548 10961 <message> 10549 <location filename="../VBoxManageMisc.cpp" line=" 1971"/>10962 <location filename="../VBoxManageMisc.cpp" line="2005"/> 10550 10963 <source>VM '%ls' (%ls) has been successfully started. 10551 10964 </source> … … 10554 10967 </message> 10555 10968 <message> 10556 <location filename="../VBoxManageMisc.cpp" line="21 03"/>10557 <location filename="../VBoxManageMisc.cpp" line="21 53"/>10558 <location filename="../VBoxManageMisc.cpp" line="22 13"/>10559 <location filename="../VBoxManageMisc.cpp" line="23 11"/>10969 <location filename="../VBoxManageMisc.cpp" line="2137"/> 10970 <location filename="../VBoxManageMisc.cpp" line="2187"/> 10971 <location filename="../VBoxManageMisc.cpp" line="2247"/> 10972 <location filename="../VBoxManageMisc.cpp" line="2345"/> 10560 10973 <source>Parameter --provider is required</source> 10561 10974 <translation>Требуется параметр --provider</translation> 10562 10975 </message> 10563 10976 <message> 10564 <location filename="../VBoxManageMisc.cpp" line="21 05"/>10565 <location filename="../VBoxManageMisc.cpp" line="21 55"/>10566 <location filename="../VBoxManageMisc.cpp" line="22 15"/>10567 <location filename="../VBoxManageMisc.cpp" line="23 13"/>10977 <location filename="../VBoxManageMisc.cpp" line="2139"/> 10978 <location filename="../VBoxManageMisc.cpp" line="2189"/> 10979 <location filename="../VBoxManageMisc.cpp" line="2249"/> 10980 <location filename="../VBoxManageMisc.cpp" line="2347"/> 10568 10981 <source>Parameter --profile is required</source> 10569 10982 <translation>Требуется параметр --profile</translation> 10570 10983 </message> 10571 10984 <message> 10572 <location filename="../VBoxManageMisc.cpp" line="21 34"/>10985 <location filename="../VBoxManageMisc.cpp" line="2168"/> 10573 10986 <source>Provider %ls: profile '%ls' was updated. 10574 10987 </source> … … 10577 10990 </message> 10578 10991 <message> 10579 <location filename="../VBoxManageMisc.cpp" line="2 176"/>10992 <location filename="../VBoxManageMisc.cpp" line="2210"/> 10580 10993 <source>Provider GUID: %ls 10581 10994 </source> … … 10584 10997 </message> 10585 10998 <message> 10586 <location filename="../VBoxManageMisc.cpp" line="2 192"/>10999 <location filename="../VBoxManageMisc.cpp" line="2226"/> 10587 11000 <source>Property: </source> 10588 11001 <translation>Свойство: </translation> 10589 11002 </message> 10590 11003 <message> 10591 <location filename="../VBoxManageMisc.cpp" line="2 297"/>11004 <location filename="../VBoxManageMisc.cpp" line="2331"/> 10592 11005 <source>Provider %ls: profile '%ls' was added. 10593 11006 </source> … … 10596 11009 </message> 10597 11010 <message> 10598 <location filename="../VBoxManageMisc.cpp" line="23 40"/>11011 <location filename="../VBoxManageMisc.cpp" line="2374"/> 10599 11012 <source>Provider %ls: profile '%ls' was deleted. 10600 11013 </source> … … 10606 11019 <name>ModifyVM</name> 10607 11020 <message> 10608 <location filename="../VBoxManageModifyVM.cpp" line="46 4"/>11021 <location filename="../VBoxManageModifyVM.cpp" line="467"/> 10609 11022 <source>Warning: '--vrdp%s' is deprecated. Use '--vrde%s'. 10610 11023 </source> … … 10613 11026 </message> 10614 11027 <message> 10615 <location filename="../VBoxManageModifyVM.cpp" line="5 63"/>11028 <location filename="../VBoxManageModifyVM.cpp" line="578"/> 10616 11029 <source>Invalid %s number %u</source> 10617 11030 <translation>Недопустимый номер %s %u</translation> 10618 11031 </message> 10619 11032 <message> 10620 <location filename="../VBoxManageModifyVM.cpp" line=" 592"/>10621 <location filename="../VBoxManageModifyVM.cpp" line="20 26"/>11033 <location filename="../VBoxManageModifyVM.cpp" line="607"/> 11034 <location filename="../VBoxManageModifyVM.cpp" line="2089"/> 10622 11035 <source>Not enough parameters</source> 10623 11036 <translation>Недостаточно параметров</translation> 10624 11037 </message> 10625 11038 <message> 10626 <location filename="../VBoxManageModifyVM.cpp" line="6 55"/>11039 <location filename="../VBoxManageModifyVM.cpp" line="670"/> 10627 11040 <source>Cannot open file "%s": %Rrc</source> 10628 11041 <translation>Невозможно открыть файл "%s": %Rrc</translation> 10629 11042 </message> 10630 11043 <message> 10631 <location filename="../VBoxManageModifyVM.cpp" line="6 63"/>11044 <location filename="../VBoxManageModifyVM.cpp" line="678"/> 10632 11045 <source>Cannot get size of file "%s": %Rrc</source> 10633 11046 <translation>Невозможно получить размер файла "%s": %Rrc</translation> 10634 11047 </message> 10635 11048 <message> 10636 <location filename="../VBoxManageModifyVM.cpp" line="6 69"/>11049 <location filename="../VBoxManageModifyVM.cpp" line="684"/> 10637 11050 <source>File "%s" is bigger than 256KByte</source> 10638 11051 <translation>Файл "%s" больше 256 КБайт</translation> 10639 11052 </message> 10640 11053 <message> 10641 <location filename="../VBoxManageModifyVM.cpp" line="6 77"/>11054 <location filename="../VBoxManageModifyVM.cpp" line="692"/> 10642 11055 <source>Cannot read contents of file "%s": %Rrc</source> 10643 11056 <translation>Невозможно прочесть содержимое файла "%s": %Rrc</translation> 10644 11057 </message> 10645 11058 <message> 10646 <location filename="../VBoxManageModifyVM.cpp" line="7 28"/>11059 <location filename="../VBoxManageModifyVM.cpp" line="743"/> 10647 11060 <source>Invalid --firmware argument '%s'</source> 10648 11061 <translation>Недопустимый аргумент к --firmware '%s'</translation> 10649 11062 </message> 10650 11063 <message> 10651 <location filename="../VBoxManageModifyVM.cpp" line=" 799"/>11064 <location filename="../VBoxManageModifyVM.cpp" line="814"/> 10652 11065 <source>Invalid --paravirtprovider argument '%s'</source> 10653 11066 <translation>Недопустимый аргумент к --paravirtprovider '%s'</translation> 10654 11067 </message> 10655 11068 <message> 10656 <location filename="../VBoxManageModifyVM.cpp" line="826"/>10657 <location filename="../VBoxManageModifyVM.cpp" line="1926"/>10658 <location filename="../VBoxManageModifyVM.cpp" line="2319"/>10659 <location filename="../VBoxManageModifyVM.cpp" line="2400"/>10660 <location filename="../VBoxManageModifyVM.cpp" line="2444"/>10661 <location filename="../VBoxManageModifyVM.cpp" line="2881"/>10662 11069 <source>Missing or Invalid argument to '%s'</source> 10663 <translation>Отсутствует или недопустимый аргумент к '%s'</translation> 10664 </message> 10665 <message> 10666 <location filename="../VBoxManageModifyVM.cpp" line="970"/> 11070 <translation type="vanished">Отсутствует или недопустимый аргумент к '%s'</translation> 11071 </message> 11072 <message> 11073 <location filename="../VBoxManageModifyVM.cpp" line="841"/> 11074 <location filename="../VBoxManageModifyVM.cpp" line="1989"/> 11075 <location filename="../VBoxManageModifyVM.cpp" line="2381"/> 11076 <location filename="../VBoxManageModifyVM.cpp" line="2460"/> 11077 <location filename="../VBoxManageModifyVM.cpp" line="2503"/> 11078 <location filename="../VBoxManageModifyVM.cpp" line="2939"/> 11079 <source>Missing or invalid argument to '%s'</source> 11080 <translation type="unfinished">Отсутствует или недопустимый аргумент к '%s'</translation> 11081 </message> 11082 <message> 11083 <location filename="../VBoxManageModifyVM.cpp" line="985"/> 10667 11084 <source>Invalid --graphicscontroller argument '%s'</source> 10668 11085 <translation>Недопустимый аргумент к --graphicscontroller '%s'</translation> 10669 11086 </message> 10670 11087 <message> 10671 <location filename="../VBoxManageModifyVM.cpp" line="10 36"/>11088 <location filename="../VBoxManageModifyVM.cpp" line="1051"/> 10672 11089 <source>Invalid --biosbootmenu argument '%s'</source> 10673 11090 <translation>Недопустимый аргумент к --biosbootmenu '%s'</translation> 10674 11091 </message> 10675 11092 <message> 10676 <location filename="../VBoxManageModifyVM.cpp" line="10 60"/>11093 <location filename="../VBoxManageModifyVM.cpp" line="1075"/> 10677 11094 <source>Invalid --biosapic argument '%s'</source> 10678 11095 <translation>Недопустимый аргумент к --biosapic '%s'</translation> 10679 11096 </message> 10680 11097 <message> 10681 <location filename="../VBoxManageModifyVM.cpp" line="11 07"/>11098 <location filename="../VBoxManageModifyVM.cpp" line="1122"/> 10682 11099 <source>Invalid boot device '%s'</source> 10683 11100 <translation>Недопустимое загрузочное устройство '%s'</translation> 10684 11101 </message> 10685 11102 <message> 10686 <location filename="../VBoxManageModifyVM.cpp" line="1 187"/>11103 <location filename="../VBoxManageModifyVM.cpp" line="1202"/> 10687 11104 <source>Invalid --idecontroller argument '%s'</source> 10688 11105 <translation>Недопустимый аргумент к --idecontroller '%s'</translation> 10689 11106 </message> 10690 11107 <message> 10691 <location filename="../VBoxManageModifyVM.cpp" line="12 17"/>11108 <location filename="../VBoxManageModifyVM.cpp" line="1232"/> 10692 11109 <source>Invalid --usb argument '%s'</source> 10693 11110 <translation>Недопустимый аргумент к --usb '%s'</translation> 10694 11111 </message> 10695 11112 <message> 10696 <location filename="../VBoxManageModifyVM.cpp" line="1 292"/>11113 <location filename="../VBoxManageModifyVM.cpp" line="1307"/> 10697 11114 <source>Invalid --scsitype argument '%s'</source> 10698 11115 <translation>Недопустимый аргумент к --scsitype '%s'</translation> 10699 11116 </message> 10700 11117 <message> 10701 <location filename="../VBoxManageModifyVM.cpp" line="13 47"/>10702 <location filename="../VBoxManageModifyVM.cpp" line="13 55"/>11118 <location filename="../VBoxManageModifyVM.cpp" line="1362"/> 11119 <location filename="../VBoxManageModifyVM.cpp" line="1370"/> 10703 11120 <source>Invalid host DVD drive name "%s"</source> 10704 11121 <translation>Недопустимое имя DVD дисковода хоста "%s"</translation> 10705 11122 </message> 10706 11123 <message> 10707 <location filename="../VBoxManageModifyVM.cpp" line="14 21"/>11124 <location filename="../VBoxManageModifyVM.cpp" line="1436"/> 10708 11125 <source>Invalid host floppy drive name "%s"</source> 10709 11126 <translation>Недопустимое имя флоппи дисковода хоста "%s"</translation> 10710 11127 </message> 10711 11128 <message> 10712 <location filename="../VBoxManageModifyVM.cpp" line="15 01"/>11129 <location filename="../VBoxManageModifyVM.cpp" line="1516"/> 10713 11130 <source>Invalid --nicproperty%d argument '%s'</source> 10714 11131 <translation>Недопустимый аргумент к --nicproperty%d '%s'</translation> 10715 11132 </message> 10716 11133 <message> 10717 <location filename="../VBoxManageModifyVM.cpp" line="15 08"/>11134 <location filename="../VBoxManageModifyVM.cpp" line="1523"/> 10718 11135 <source>Error: Failed to allocate memory for --nicproperty%d '%s' 10719 11136 </source> … … 10722 11139 </message> 10723 11140 <message> 10724 <location filename="../VBoxManageModifyVM.cpp" line="15 64"/>11141 <location filename="../VBoxManageModifyVM.cpp" line="1597"/> 10725 11142 <source>Invalid NIC type '%s' specified for NIC %u</source> 10726 11143 <translation>Недопустимый тип NIC '%s', указанный для NIC %u</translation> 10727 11144 </message> 10728 11145 <message> 10729 <location filename="../VBoxManageModifyVM.cpp" line="1 599"/>11146 <location filename="../VBoxManageModifyVM.cpp" line="1632"/> 10730 11147 <source>Invalid boot priority '%u' specfied for NIC %u</source> 10731 11148 <translation>Недопустимы приоритет загрузки '%u' указанный для NIC %u</translation> 10732 11149 </message> 10733 11150 <message> 10734 <location filename="../VBoxManageModifyVM.cpp" line="16 21"/>11151 <location filename="../VBoxManageModifyVM.cpp" line="1654"/> 10735 11152 <source>Unknown promiscuous mode policy '%s'</source> 10736 11153 <translation>Неизвестная политика неразборчивого режима '%s'</translation> 10737 11154 </message> 10738 11155 <message> 10739 <location filename="../VBoxManageModifyVM.cpp" line="17 48"/>11156 <location filename="../VBoxManageModifyVM.cpp" line="1789"/> 10740 11157 <source>Invalid type '%s' specfied for NIC %u</source> 10741 11158 <translation>Недопустимый тип '%s', указанный для NIC %u</translation> 10742 11159 </message> 10743 11160 <message> 10744 <location filename="../VBoxManageModifyVM.cpp" line="20 10"/>11161 <location filename="../VBoxManageModifyVM.cpp" line="2073"/> 10745 11162 <source>Invalid proto '%s' specfied for NIC %u</source> 10746 11163 <translation>Недопустимый протокол '%s', указанный для NIC %u</translation> 10747 11164 </message> 10748 11165 <message> 10749 <location filename="../VBoxManageModifyVM.cpp" line="22 28"/>11166 <location filename="../VBoxManageModifyVM.cpp" line="2291"/> 10750 11167 <source>Invalid type '%s' specfied for pointing device</source> 10751 11168 <translation>Недопустимый тип '%s', указанный для указательного устройства</translation> 10752 11169 </message> 10753 11170 <message> 10754 <location filename="../VBoxManageModifyVM.cpp" line="2 273"/>11171 <location filename="../VBoxManageModifyVM.cpp" line="2336"/> 10755 11172 <source>Invalid type '%s' specfied for keyboard</source> 10756 11173 <translation>Недопустимый тип '%s', указанный для клавиатуры</translation> 10757 11174 </message> 10758 11175 <message> 10759 <location filename="../VBoxManageModifyVM.cpp" line="2 378"/>11176 <location filename="../VBoxManageModifyVM.cpp" line="2439"/> 10760 11177 <source>Invalid argument to '%s'</source> 10761 11178 <translation>Недопустимый аргумент к '%s'</translation> 10762 11179 </message> 10763 11180 <message> 10764 <location filename="../VBoxManageModifyVM.cpp" line="24 07"/>11181 <location filename="../VBoxManageModifyVM.cpp" line="2467"/> 10765 11182 <source>Error parsing UART I/O base '%s'</source> 10766 11183 <translation>Ошибка при разборе базового адреса I/O UART '%s'</translation> 10767 11184 </message> 10768 11185 <message> 10769 <location filename="../VBoxManageModifyVM.cpp" line="2 451"/>11186 <location filename="../VBoxManageModifyVM.cpp" line="2510"/> 10770 11187 <source>Error parsing LPT I/O base '%s'</source> 10771 11188 <translation>Ошибка при разборе базового адреса I/O LPT '%s'</translation> 10772 11189 </message> 10773 11190 <message> 10774 <location filename="../VBoxManageModifyVM.cpp" line="2 480"/>11191 <location filename="../VBoxManageModifyVM.cpp" line="2539"/> 10775 11192 <source>Invalid --audiocontroller argument '%s'</source> 10776 11193 <translation>Недопустимый аргумент к --audiocontroller '%s'</translation> 10777 11194 </message> 10778 11195 <message> 10779 <location filename="../VBoxManageModifyVM.cpp" line="25 02"/>11196 <location filename="../VBoxManageModifyVM.cpp" line="2561"/> 10780 11197 <source>Invalid --audiocodec argument '%s'</source> 10781 11198 <translation>Недопустимый аргумент к --audiocodec '%s'</translation> 10782 11199 </message> 10783 11200 <message> 10784 <location filename="../VBoxManageModifyVM.cpp" line="2 574"/>11201 <location filename="../VBoxManageModifyVM.cpp" line="2633"/> 10785 11202 <source>Invalid --audio argument '%s'</source> 10786 11203 <translation>Недопустимый аргумент к --audio '%s'</translation> 10787 11204 </message> 10788 11205 <message> 10789 <location filename="../VBoxManageModifyVM.cpp" line="26 14"/>11206 <location filename="../VBoxManageModifyVM.cpp" line="2673"/> 10790 11207 <source>Invalid --clipboard-mode argument '%s'</source> 10791 11208 <translation>Недопустимый аргумент к --clipboard-mode '%s'</translation> 10792 11209 </message> 10793 11210 <message> 10794 <location filename="../VBoxManageModifyVM.cpp" line="26 34"/>11211 <location filename="../VBoxManageModifyVM.cpp" line="2693"/> 10795 11212 <source>Invalid --clipboard-file-transfers argument '%s'</source> 10796 11213 <translation>Недопустимый аргумент к --clipboard-file-transfers '%s'</translation> 10797 11214 </message> 10798 11215 <message> 10799 <location filename="../VBoxManageModifyVM.cpp" line="2 659"/>11216 <location filename="../VBoxManageModifyVM.cpp" line="2718"/> 10800 11217 <source>Invalid --draganddrop argument '%s'</source> 10801 11218 <translation>Недопустимый аргумент к --draganddrop '%s'</translation> 10802 11219 </message> 10803 11220 <message> 10804 <location filename="../VBoxManageModifyVM.cpp" line="27 13"/>11221 <location filename="../VBoxManageModifyVM.cpp" line="2772"/> 10805 11222 <source>Invalid --vrdeproperty argument '%s'</source> 10806 11223 <translation>Недопустимый аргумент к --vrdeproperty '%s'</translation> 10807 11224 </message> 10808 11225 <message> 10809 <location filename="../VBoxManageModifyVM.cpp" line="27 21"/>11226 <location filename="../VBoxManageModifyVM.cpp" line="2780"/> 10810 11227 <source>Error: Failed to allocate memory for VRDE property '%s' 10811 11228 </source> … … 10814 11231 </message> 10815 11232 <message> 10816 <location filename="../VBoxManageModifyVM.cpp" line="2 783"/>11233 <location filename="../VBoxManageModifyVM.cpp" line="2842"/> 10817 11234 <source>Invalid --vrdeauthtype argument '%s'</source> 10818 11235 <translation>Недопустимый аргумент к --vrdeauthtype '%s'</translation> 10819 11236 </message> 10820 11237 <message> 10821 <location filename="../VBoxManageModifyVM.cpp" line="29 02"/>11238 <location filename="../VBoxManageModifyVM.cpp" line="2960"/> 10822 11239 <source>Invalid --usbrename parameters, nothing renamed</source> 10823 11240 <translation>Недопустимые параметры к --usbrename, ничего не переименовано</translation> 10824 11241 </message> 10825 11242 <message> 10826 <location filename="../VBoxManageModifyVM.cpp" line="31 06"/>11243 <location filename="../VBoxManageModifyVM.cpp" line="3164"/> 10827 11244 <source>*** I/O APIC must be enabled for ICH9, enabling. *** 10828 11245 </source> … … 10831 11248 </message> 10832 11249 <message> 10833 <location filename="../VBoxManageModifyVM.cpp" line="31 12"/>11250 <location filename="../VBoxManageModifyVM.cpp" line="3170"/> 10834 11251 <source>Invalid --chipset argument '%s' (valid: piix3,ich9)</source> 10835 11252 <translation>Недопустимый аргумент к --chipset '%s' (допустимые: piix3,ich9)</translation> 10836 11253 </message> 10837 11254 <message> 10838 <location filename="../VBoxManageModifyVM.cpp" line="31 30"/>11255 <location filename="../VBoxManageModifyVM.cpp" line="3188"/> 10839 11256 <source>Invalid --iommu argument '%s' (valid: none,amd,automatic)</source> 10840 11257 <translation>Недопустимый аргумент к --iommu '%s' (допустимые: none,amd,automatic)</translation> 10841 11258 </message> 10842 11259 <message> 10843 <location filename="../VBoxManageModifyVM.cpp" line="31 39"/>11260 <location filename="../VBoxManageModifyVM.cpp" line="3197"/> 10844 11261 <source>Warning: On Intel hosts, 'automatic' will not enable an IOMMU since the Intel IOMMU device is not supported yet. 10845 11262 </source> … … 10848 11265 </message> 10849 11266 <message> 10850 <location filename="../VBoxManageModifyVM.cpp" line="3 144"/>11267 <location filename="../VBoxManageModifyVM.cpp" line="3202"/> 10851 11268 <source>Invalid --iommu argument '%s'</source> 10852 11269 <translation>Недопустимый аргумент к --iommu '%s'</translation> 10853 11270 </message> 10854 11271 <message> 10855 <location filename="../VBoxManageModifyVM.cpp" line="3 169"/>11272 <location filename="../VBoxManageModifyVM.cpp" line="3227"/> 10856 11273 <source>Invalid --tpm-type argument '%s'</source> 10857 11274 <translation>Недопустимый аргумент к --tpm-type '%s'</translation> 10858 11275 </message> 10859 11276 <message> 10860 <location filename="../VBoxManageModifyVM.cpp" line="32 26"/>11277 <location filename="../VBoxManageModifyVM.cpp" line="3284"/> 10861 11278 <source>Invalid list of screens specified 10862 11279 </source> … … 10865 11282 </message> 10866 11283 <message> 10867 <location filename="../VBoxManageModifyVM.cpp" line="3 248"/>11284 <location filename="../VBoxManageModifyVM.cpp" line="3306"/> 10868 11285 <source>Cannot convert filename "%s" to absolute path 10869 11286 </source> … … 10872 11289 </message> 10873 11290 <message> 10874 <location filename="../VBoxManageModifyVM.cpp" line="3 278"/>10875 <location filename="../VBoxManageModifyVM.cpp" line="3 287"/>11291 <location filename="../VBoxManageModifyVM.cpp" line="3336"/> 11292 <location filename="../VBoxManageModifyVM.cpp" line="3345"/> 10876 11293 <source>Error parsing video resolution '%s' (expected <width>x<height>)</source> 10877 11294 <translation>Ошибка разбора видео разрешения '%s' (ожидается <ширина>x<высота>)</translation> 10878 11295 </message> 10879 11296 <message> 10880 <location filename="../VBoxManageModifyVM.cpp" line="3 362"/>11297 <location filename="../VBoxManageModifyVM.cpp" line="3420"/> 10881 11298 <source>Invalid --autostop-type argument '%s' (valid: disabled, savestate, poweroff, acpishutdown)</source> 10882 11299 <translation>Недопустимый аргумент к --autostop-type '%s' (допустимые: disabled, savestate, poweroff, acpishutdown)</translation> 10883 11300 </message> 10884 11301 <message> 10885 <location filename="../VBoxManageModifyVM.cpp" line="3 382"/>11302 <location filename="../VBoxManageModifyVM.cpp" line="3440"/> 10886 11303 <source>Invalid --pciattach argument '%s' (valid: 'HB:HD.HF@GB:GD.GF' or just 'HB:HD.HF')</source> 10887 11304 <translation>Недопустимый аргумент к --pciattach '%s' (допустимые: 'HB:HD.HF@GB:GD.GF' или просто 'HB:HD.HF')</translation> 10888 11305 </message> 10889 11306 <message> 10890 <location filename="../VBoxManageModifyVM.cpp" line="34 00"/>11307 <location filename="../VBoxManageModifyVM.cpp" line="3458"/> 10891 11308 <source>Invalid --pcidetach argument '%s' (valid: 'HB:HD.HF')</source> 10892 11309 <translation>Недопустимый аргумент к --pcidetach '%s' (допустимый: 'HB:HD.HF')</translation> 10893 11310 </message> 10894 11311 <message> 10895 <location filename="../VBoxManageModifyVM.cpp" line="34 34"/>11312 <location filename="../VBoxManageModifyVM.cpp" line="3492"/> 10896 11313 <source>Invalid --vm-process-priority '%s'</source> 10897 11314 <translation>Недопустимый --vm-process-priority '%s'</translation> 10898 11315 </message> 10899 11316 <message> 10900 <location filename="../VBoxManageModifyVM.cpp" line="3 463"/>11317 <location filename="../VBoxManageModifyVM.cpp" line="3521"/> 10901 11318 <source>--testing-cfg-dword index %u is out of range: 0 thru 9</source> 10902 11319 <translation>Индекс --testing-cfg-dword %u вне границ диапазона: 0 - 9</translation> … … 10906 11323 <name>Nat</name> 10907 11324 <message> 10908 <location filename="../VBoxManageNATNetwork.cpp" line="9 8"/>11325 <location filename="../VBoxManageNATNetwork.cpp" line="96"/> 10909 11326 <source>Name: %ls 10910 11327 </source> … … 10913 11330 </message> 10914 11331 <message> 10915 <location filename="../VBoxManageNATNetwork.cpp" line="1 01"/>11332 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 10916 11333 <source>Network: %ls 10917 11334 </source> … … 10920 11337 </message> 10921 11338 <message> 10922 <location filename="../VBoxManageNATNetwork.cpp" line="1 04"/>11339 <location filename="../VBoxManageNATNetwork.cpp" line="113"/> 10923 11340 <source>Gateway: %ls 10924 11341 </source> … … 10927 11344 </message> 10928 11345 <message> 10929 <location filename="../VBoxManageNATNetwork.cpp" line="107"/>10930 11346 <source>DHCP Sever: %s 10931 11347 </source> 10932 <translation>DHCP сервер: %s 10933 </translation> 10934 </message> 10935 <message> 10936 <location filename="../VBoxManageNATNetwork.cpp" line="107"/> 10937 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 11348 <translation type="vanished">DHCP сервер: %s 11349 </translation> 11350 </message> 11351 <message> 11352 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 10938 11353 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10939 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 11354 <location filename="../VBoxManageNATNetwork.cpp" line="119"/> 11355 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 10940 11356 <source>Yes</source> 10941 11357 <translation>Да</translation> 10942 11358 </message> 10943 11359 <message> 10944 <location filename="../VBoxManageNATNetwork.cpp" line="107"/> 10945 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 11360 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 10946 11361 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10947 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 11362 <location filename="../VBoxManageNATNetwork.cpp" line="119"/> 11363 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 10948 11364 <source>No</source> 10949 11365 <translation>Нет</translation> 10950 11366 </message> 10951 11367 <message> 10952 <location filename="../VBoxManageNATNetwork.cpp" line="1 13"/>11368 <location filename="../VBoxManageNATNetwork.cpp" line="122"/> 10953 11369 <source>IPv6 Prefix: %ls 10954 11370 </source> … … 10957 11373 </message> 10958 11374 <message> 11375 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 11376 <source>IPv6 Default: %s 11377 </source> 11378 <translation>IPv6 по умолчанию: %ls 11379 </translation> 11380 </message> 11381 <message> 11382 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 11383 <source>Enabled: %s 11384 </source> 11385 <translation>Включено: %s 11386 </translation> 11387 </message> 11388 <message> 10959 11389 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10960 <source>IPv6 Default: %s 10961 </source> 10962 <translation>IPv6 по умолчанию: %ls 10963 </translation> 10964 </message> 10965 <message> 10966 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 10967 <source>Enabled: %s 10968 </source> 10969 <translation>Включено: %s 10970 </translation> 10971 </message> 10972 <message> 10973 <location filename="../VBoxManageNATNetwork.cpp" line="133"/> 11390 <source>DHCP Server: %s 11391 </source> 11392 <translation type="unfinished"></translation> 11393 </message> 11394 <message> 11395 <location filename="../VBoxManageNATNetwork.cpp" line="142"/> 11396 <source>Port-forwarding (ipv4) 11397 </source> 11398 <translation type="unfinished">Перенаправление портов (ipv4) 11399 </translation> 11400 </message> 11401 <message> 11402 <location filename="../VBoxManageNATNetwork.cpp" line="146"/> 11403 <source>Port-forwarding (ipv6) 11404 </source> 11405 <translation type="unfinished">Перенаправление портов (ipv6) 11406 </translation> 11407 </message> 11408 <message> 11409 <location filename="../VBoxManageNATNetwork.cpp" line="150"/> 11410 <source>loopback mappings (ipv4) 11411 </source> 11412 <translation type="unfinished">отображение локальной петли (ipv4) 11413 </translation> 11414 </message> 11415 <message> 11416 <location filename="../VBoxManageNATNetwork.cpp" line="166"/> 10974 11417 <source>NAT Networks: 10975 11418 … … 10980 11423 </message> 10981 11424 <message> 10982 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>11425 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10983 11426 <source>%zu %s found 10984 11427 </source> … … 10987 11430 </message> 10988 11431 <message> 10989 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>11432 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10990 11433 <source>network</source> 10991 11434 <translation>сеть</translation> 10992 11435 </message> 10993 11436 <message numerus="yes"> 10994 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>11437 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10995 11438 <source>networks</source> 10996 11439 <translation> … … 11001 11444 </message> 11002 11445 <message> 11003 <location filename="../VBoxManageNATNetwork.cpp" line=" 175"/>11004 <location filename="../VBoxManageNATNetwork.cpp" line=" 549"/>11446 <location filename="../VBoxManageNATNetwork.cpp" line="206"/> 11447 <location filename="../VBoxManageNATNetwork.cpp" line="602"/> 11005 11448 <source>Not enough parameters</source> 11006 11449 <translation>Недостаточно параметров</translation> 11007 11450 </message> 11008 11451 <message> 11009 <location filename="../VBoxManageNATNetwork.cpp" line="2 22"/>11452 <location filename="../VBoxManageNATNetwork.cpp" line="261"/> 11010 11453 <source>You can only specify --netname only once.</source> 11011 11454 <translation>--netname можно указать только один раз.</translation> 11012 11455 </message> 11013 11456 <message> 11014 <location filename="../VBoxManageNATNetwork.cpp" line="2 28"/>11457 <location filename="../VBoxManageNATNetwork.cpp" line="267"/> 11015 11458 <source>You can only specify --network only once.</source> 11016 11459 <translation>--network можно указать только один раз.</translation> 11017 11460 </message> 11018 11461 <message> 11019 <location filename="../VBoxManageNATNetwork.cpp" line="2 34"/>11020 <location filename="../VBoxManageNATNetwork.cpp" line="2 40"/>11462 <location filename="../VBoxManageNATNetwork.cpp" line="273"/> 11463 <location filename="../VBoxManageNATNetwork.cpp" line="279"/> 11021 11464 <source>You can specify either --enable or --disable once.</source> 11022 11465 <translation>--enable и --disable можно указать только один раз.</translation> 11023 11466 </message> 11024 11467 <message> 11025 <location filename="../VBoxManageNATNetwork.cpp" line="2 46"/>11468 <location filename="../VBoxManageNATNetwork.cpp" line="285"/> 11026 11469 <source>You can specify --dhcp only once.</source> 11027 11470 <translation>--dhcp можно указать только один раз.</translation> 11028 11471 </message> 11029 11472 <message> 11030 <location filename="../VBoxManageNATNetwork.cpp" line="2 52"/>11473 <location filename="../VBoxManageNATNetwork.cpp" line="291"/> 11031 11474 <source>You can specify --ipv6 only once.</source> 11032 11475 <translation>--ipv6 можно указать только один раз.</translation> 11033 11476 </message> 11034 11477 <message> 11035 <location filename="../VBoxManageNATNetwork.cpp" line="2 58"/>11478 <location filename="../VBoxManageNATNetwork.cpp" line="297"/> 11036 11479 <source>You can specify --ipv6-prefix only once.</source> 11037 11480 <translation>--ipv6-prefix можно указать только один раз.</translation> 11038 11481 </message> 11039 11482 <message> 11040 <location filename="../VBoxManageNATNetwork.cpp" line="269"/> 11483 <location filename="../VBoxManageNATNetwork.cpp" line="303"/> 11484 <source>You can specify --ipv6-default only once.</source> 11485 <translation type="unfinished"></translation> 11486 </message> 11487 <message> 11488 <location filename="../VBoxManageNATNetwork.cpp" line="313"/> 11041 11489 <source>loopback couldn't be deleted on modified 11042 11490 </source> … … 11045 11493 </message> 11046 11494 <message> 11047 <location filename="../VBoxManageNATNetwork.cpp" line=" 281"/>11048 <location filename="../VBoxManageNATNetwork.cpp" line="3 20"/>11495 <location filename="../VBoxManageNATNetwork.cpp" line="324"/> 11496 <location filename="../VBoxManageNATNetwork.cpp" line="362"/> 11049 11497 <source>Not enough parаmeters 11050 11498 </source> … … 11053 11501 </message> 11054 11502 <message> 11055 <location filename="../VBoxManageNATNetwork.cpp" line="3 06"/>11503 <location filename="../VBoxManageNATNetwork.cpp" line="349"/> 11056 11504 <source>Invalid port-forward rule %s 11057 11505 </source> … … 11060 11508 </message> 11061 11509 <message> 11062 <location filename="../VBoxManageNATNetwork.cpp" line="3 15"/>11510 <location filename="../VBoxManageNATNetwork.cpp" line="357"/> 11063 11511 <source>Port-forward could be deleted on modify 11064 11512 </source> … … 11067 11515 </message> 11068 11516 <message> 11069 <location filename="../VBoxManageNATNetwork.cpp" line="3 23"/>11517 <location filename="../VBoxManageNATNetwork.cpp" line="365"/> 11070 11518 <source>Port-forward rule name is too long 11071 11519 </source> … … 11074 11522 </message> 11075 11523 <message> 11076 <location filename="../VBoxManageNATNetwork.cpp" line="3 40"/>11524 <location filename="../VBoxManageNATNetwork.cpp" line="382"/> 11077 11525 <source>You need to specify the --netname option</source> 11078 11526 <translation>Необходимо указать опцию --netname</translation> 11079 11527 </message> 11080 11528 <message> 11081 <location filename="../VBoxManageNATNetwork.cpp" line="3 46"/>11529 <location filename="../VBoxManageNATNetwork.cpp" line="388"/> 11082 11530 <source>You need to specify the --network option</source> 11083 11531 <translation>Необходимо указать опцию --network</translation> 11084 11532 </message> 11085 11533 <message> 11086 <location filename="../VBoxManageNATNetwork.cpp" line="3 54"/>11534 <location filename="../VBoxManageNATNetwork.cpp" line="396"/> 11087 11535 <source>Unknown operation (:%d)</source> 11088 11536 <translation>Неизвестная операция (:%d)</translation> 11089 11537 </message> 11090 11538 <message> 11091 <location filename="../VBoxManageNATNetwork.cpp" line=" 366"/>11539 <location filename="../VBoxManageNATNetwork.cpp" line="408"/> 11092 11540 <source>NATNetwork server already exists</source> 11093 11541 <translation>Сервер сети NAT уже существует</translation> 11094 11542 </message> 11095 11543 <message> 11096 <location filename="../VBoxManageNATNetwork.cpp" line=" 370"/>11544 <location filename="../VBoxManageNATNetwork.cpp" line="412"/> 11097 11545 <source>Failed to create the NAT network service</source> 11098 11546 <translation>Не удалось создать службу сети NAT</translation> 11099 11547 </message> 11100 11548 <message> 11101 <location filename="../VBoxManageNATNetwork.cpp" line=" 373"/>11549 <location filename="../VBoxManageNATNetwork.cpp" line="415"/> 11102 11550 <source>NATNetwork server does not exist</source> 11103 11551 <translation>Сервер сети NAT не существует</translation> 11104 11552 </message> 11105 11553 <message> 11106 <location filename="../VBoxManageNATNetwork.cpp" line="384"/> 11107 <location filename="../VBoxManageNATNetwork.cpp" line="390"/> 11108 <location filename="../VBoxManageNATNetwork.cpp" line="402"/> 11109 <location filename="../VBoxManageNATNetwork.cpp" line="409"/> 11110 <location filename="../VBoxManageNATNetwork.cpp" line="420"/> 11111 <location filename="../VBoxManageNATNetwork.cpp" line="515"/> 11554 <location filename="../VBoxManageNATNetwork.cpp" line="426"/> 11555 <location filename="../VBoxManageNATNetwork.cpp" line="432"/> 11556 <location filename="../VBoxManageNATNetwork.cpp" line="444"/> 11557 <location filename="../VBoxManageNATNetwork.cpp" line="451"/> 11558 <location filename="../VBoxManageNATNetwork.cpp" line="462"/> 11559 <location filename="../VBoxManageNATNetwork.cpp" line="470"/> 11560 <location filename="../VBoxManageNATNetwork.cpp" line="565"/> 11112 11561 <source>Failed to set configuration</source> 11113 11562 <translation>Не удалось задать конфигурацию</translation> 11114 11563 </message> 11115 11564 <message> 11116 <location filename="../VBoxManageNATNetwork.cpp" line="4 31"/>11565 <location filename="../VBoxManageNATNetwork.cpp" line="481"/> 11117 11566 <source>Failed to delete pf</source> 11118 11567 <translation>Не удалось удалить правило перенаправления портов</translation> 11119 11568 </message> 11120 11569 <message> 11121 <location filename="../VBoxManageNATNetwork.cpp" line=" 456"/>11570 <location filename="../VBoxManageNATNetwork.cpp" line="506"/> 11122 11571 <source>Failed to add pf</source> 11123 11572 <translation>Не удалось добавить правило перенаправления портов</translation> 11124 11573 </message> 11125 11574 <message> 11126 <location filename="../VBoxManageNATNetwork.cpp" line=" 482"/>11127 <location filename="../VBoxManageNATNetwork.cpp" line=" 488"/>11575 <location filename="../VBoxManageNATNetwork.cpp" line="532"/> 11576 <location filename="../VBoxManageNATNetwork.cpp" line="538"/> 11128 11577 <source>invalid loopback string</source> 11129 11578 <translation>Недопустимая строка локальной петли</translation> 11130 11579 </message> 11131 11580 <message> 11132 <location filename="../VBoxManageNATNetwork.cpp" line="5 23"/>11581 <location filename="../VBoxManageNATNetwork.cpp" line="573"/> 11133 11582 <source>Failed to remove nat network</source> 11134 11583 <translation>Не удалось удалить сеть NAT</translation> 11135 11584 </message> 11136 11585 <message> 11137 <location filename="../VBoxManageNATNetwork.cpp" line="5 30"/>11586 <location filename="../VBoxManageNATNetwork.cpp" line="580"/> 11138 11587 <source>Failed to start network</source> 11139 11588 <translation>Не удалось запустить сеть</translation> 11140 11589 </message> 11141 11590 <message> 11142 <location filename="../VBoxManageNATNetwork.cpp" line="5 37"/>11591 <location filename="../VBoxManageNATNetwork.cpp" line="587"/> 11143 11592 <source>Failed to stop network</source> 11144 11593 <translation>Не удалось остановить сеть</translation> 11145 11594 </message> 11146 11595 <message> 11147 <location filename="../VBoxManageNATNetwork.cpp" line=" 565"/>11596 <location filename="../VBoxManageNATNetwork.cpp" line="636"/> 11148 11597 <source>Invalid parameter '%s'</source> 11149 11598 <translation>Недопустимый параметр '%s'</translation> … … 11153 11602 <name>Nvram</name> 11154 11603 <message> 11155 <location filename="../VBoxManageModifyNvram.cpp" line="12 3"/>11604 <location filename="../VBoxManageModifyNvram.cpp" line="121"/> 11156 11605 <source>No platform key file path was given to "enrollpk"</source> 11157 11606 <translation>Не указан путь к файлу с ключом платформы для "enrollpk"</translation> 11158 11607 </message> 11159 11608 <message> 11160 <location filename="../VBoxManageModifyNvram.cpp" line="12 5"/>11609 <location filename="../VBoxManageModifyNvram.cpp" line="123"/> 11161 11610 <source>No owner UUID was given to "enrollpk"</source> 11162 11611 <translation>Не указан UUID владельца для "enrollpk"</translation> 11163 11612 </message> 11164 11613 <message> 11165 <location filename="../VBoxManageModifyNvram.cpp" line="14 9"/>11614 <location filename="../VBoxManageModifyNvram.cpp" line="147"/> 11166 11615 <source>Cannot read contents of file "%s": %Rrc</source> 11167 11616 <translation>Невозможно прочесть содержимое файла "%s": %Rrc</translation> 11168 11617 </message> 11169 11618 <message> 11170 <location filename="../VBoxManageModifyNvram.cpp" line="15 2"/>11619 <location filename="../VBoxManageModifyNvram.cpp" line="150"/> 11171 11620 <source>File "%s" is bigger than 32KByte</source> 11172 11621 <translation>Файл "%s" больше 32 КБайт</translation> 11173 11622 </message> 11174 11623 <message> 11175 <location filename="../VBoxManageModifyNvram.cpp" line="15 5"/>11624 <location filename="../VBoxManageModifyNvram.cpp" line="153"/> 11176 11625 <source>Cannot get size of file "%s": %Rrc</source> 11177 11626 <translation>Невозможно получить размер файла "%s": %Rrc</translation> 11178 11627 </message> 11179 11628 <message> 11180 <location filename="../VBoxManageModifyNvram.cpp" line="1 60"/>11629 <location filename="../VBoxManageModifyNvram.cpp" line="158"/> 11181 11630 <source>Cannot open file "%s": %Rrc</source> 11182 11631 <translation>Невозможно открыть файл "%s": %Rrc</translation> 11183 11632 </message> 11184 11633 <message> 11185 <location filename="../VBoxManageModifyNvram.cpp" line="25 2"/>11634 <location filename="../VBoxManageModifyNvram.cpp" line="250"/> 11186 11635 <source>No variable name was given to "queryvar"</source> 11187 11636 <translation>Не указано имя переменной для "queryvar"</translation> 11188 11637 </message> 11189 11638 <message> 11190 <location filename="../VBoxManageModifyNvram.cpp" line="27 9"/>11639 <location filename="../VBoxManageModifyNvram.cpp" line="277"/> 11191 11640 <source>Error writing to '%s': %Rrc</source> 11192 11641 <translation>Ошибка при записи в '%s': %Rrc</translation> 11193 11642 </message> 11194 11643 <message> 11195 <location filename="../VBoxManageModifyNvram.cpp" line="28 4"/>11196 <location filename="../VBoxManageModifyNvram.cpp" line="41 3"/>11644 <location filename="../VBoxManageModifyNvram.cpp" line="282"/> 11645 <location filename="../VBoxManageModifyNvram.cpp" line="411"/> 11197 11646 <source>Error opening '%s': %Rrc</source> 11198 11647 <translation>Ошибка при открытии '%s': %Rrc</translation> 11199 11648 </message> 11200 11649 <message> 11201 <location filename="../VBoxManageModifyNvram.cpp" line="3 31"/>11650 <location filename="../VBoxManageModifyNvram.cpp" line="329"/> 11202 11651 <source>No variable name was given to "deletevar"</source> 11203 11652 <translation>Не указано имя переменной для "deletevar"</translation> 11204 11653 </message> 11205 11654 <message> 11206 <location filename="../VBoxManageModifyNvram.cpp" line="33 3"/>11655 <location filename="../VBoxManageModifyNvram.cpp" line="331"/> 11207 11656 <source>No owner UUID was given to "deletevar"</source> 11208 11657 <translation>Не указан UUID владельца для "deletevar"</translation> 11209 11658 </message> 11210 11659 <message> 11211 <location filename="../VBoxManageModifyNvram.cpp" line="38 3"/>11660 <location filename="../VBoxManageModifyNvram.cpp" line="381"/> 11212 11661 <source>No variable name was given to "changevar"</source> 11213 11662 <translation>Не указано имя переменной для "changevar"</translation> 11214 11663 </message> 11215 11664 <message> 11216 <location filename="../VBoxManageModifyNvram.cpp" line="38 5"/>11665 <location filename="../VBoxManageModifyNvram.cpp" line="383"/> 11217 11666 <source>No variable data filename was given to "changevar"</source> 11218 11667 <translation>Не указано имя файла с данными для "changevar"</translation> 11219 11668 </message> 11220 11669 <message> 11221 <location filename="../VBoxManageModifyNvram.cpp" line="40 9"/>11670 <location filename="../VBoxManageModifyNvram.cpp" line="407"/> 11222 11671 <source>Error reading from '%s': %Rrc</source> 11223 11672 <translation>Ошибка при чтении из '%s': %Rrc</translation> … … 11317 11766 <name>Storage</name> 11318 11767 <message> 11319 <location filename="../VBoxManageStorageController.cpp" line="16 8"/>11320 <location filename="../VBoxManageStorageController.cpp" line="118 2"/>11768 <location filename="../VBoxManageStorageController.cpp" line="166"/> 11769 <location filename="../VBoxManageStorageController.cpp" line="1180"/> 11321 11770 <source>Invalid --type argument '%s'</source> 11322 11771 <translation>Недопустимый аргумент к --type '%s'</translation> 11323 11772 </message> 11324 11773 <message> 11325 <location filename="../VBoxManageStorageController.cpp" line="30 7"/>11774 <location filename="../VBoxManageStorageController.cpp" line="305"/> 11326 11775 <source>Invalid medium type '%s'</source> 11327 11776 <translation>Недопустимый тип носителя '%s'</translation> 11328 11777 </message> 11329 11778 <message> 11330 <location filename="../VBoxManageStorageController.cpp" line="32 9"/>11779 <location filename="../VBoxManageStorageController.cpp" line="327"/> 11331 11780 <source>Storage controller name not specified</source> 11332 11781 <translation>Не указано имя контроллера носителей</translation> 11333 11782 </message> 11334 11783 <message> 11784 <location filename="../VBoxManageStorageController.cpp" line="347"/> 11785 <source>Drive passthrough state cannot be changed while the VM is running 11786 </source> 11787 <translation>Состояние прямого доступа к диску не может быть изменено пока работает ВМ 11788 </translation> 11789 </message> 11790 <message> 11335 11791 <location filename="../VBoxManageStorageController.cpp" line="349"/> 11336 <source>Drive passthrough state cannot be changed while the VM is running11337 </source>11338 <translation>Состояние прямого доступа к диску не может быть изменено пока работает ВМ11339 </translation>11340 </message>11341 <message>11342 <location filename="../VBoxManageStorageController.cpp" line="351"/>11343 11792 <source>Bandwidth group cannot be changed while the VM is running 11344 11793 </source> … … 11347 11796 </message> 11348 11797 <message> 11349 <location filename="../VBoxManageStorageController.cpp" line="35 8"/>11798 <location filename="../VBoxManageStorageController.cpp" line="356"/> 11350 11799 <source>Could not find a controller named '%s' 11351 11800 </source> … … 11354 11803 </message> 11355 11804 <message> 11356 <location filename="../VBoxManageStorageController.cpp" line="37 2"/>11805 <location filename="../VBoxManageStorageController.cpp" line="370"/> 11357 11806 <source>Port not specified</source> 11358 11807 <translation>Порт не указан</translation> 11359 11808 </message> 11360 11809 <message> 11361 <location filename="../VBoxManageStorageController.cpp" line="37 9"/>11810 <location filename="../VBoxManageStorageController.cpp" line="377"/> 11362 11811 <source>Device not specified</source> 11363 11812 <translation>Устройство не указано</translation> 11364 11813 </message> 11365 11814 <message> 11366 <location filename="../VBoxManageStorageController.cpp" line="44 3"/>11815 <location filename="../VBoxManageStorageController.cpp" line="441"/> 11367 11816 <source>No DVD/Floppy Drive attached to the controller '%s'at the port: %u, device: %u</source> 11368 11817 <translation>На контроллер '%s' порт %u устройство: %u не подключено каких либо DVD или Флоппи дисков</translation> 11369 11818 </message> 11370 11819 <message> 11371 <location filename="../VBoxManageStorageController.cpp" line="46 3"/>11820 <location filename="../VBoxManageStorageController.cpp" line="461"/> 11372 11821 <source>The attachment is not supported by the storage controller '%s'</source> 11373 11822 <translation>Подключение данного устройства не поддерживается контроллером '%s'</translation> 11374 11823 </message> 11375 11824 <message> 11376 <location filename="../VBoxManageStorageController.cpp" line="51 8"/>11825 <location filename="../VBoxManageStorageController.cpp" line="516"/> 11377 11826 <source>Cannot find the Guest Additions ISO image 11378 11827 </source> … … 11381 11830 </message> 11382 11831 <message> 11383 <location filename="../VBoxManageStorageController.cpp" line="54 4"/>11832 <location filename="../VBoxManageStorageController.cpp" line="542"/> 11384 11833 <source>Argument --type must be specified 11385 11834 </source> … … 11388 11837 </message> 11389 11838 <message> 11390 <location filename="../VBoxManageStorageController.cpp" line="55 8"/>11839 <location filename="../VBoxManageStorageController.cpp" line="556"/> 11391 11840 <source>The given attachment is not supported by the storage controller '%s'</source> 11392 11841 <translation>Указанное подключение устройства не поддерживается контроллером носителей '%s'</translation> 11393 11842 </message> 11394 11843 <message> 11395 <location filename="../VBoxManageStorageController.cpp" line="5 80"/>11396 <location filename="../VBoxManageStorageController.cpp" line="58 4"/>11844 <location filename="../VBoxManageStorageController.cpp" line="578"/> 11845 <location filename="../VBoxManageStorageController.cpp" line="582"/> 11397 11846 <source>Invalid host DVD drive name "%s"</source> 11398 11847 <translation>Недопустимое имя DVD дисковода хоста "%s"</translation> 11399 11848 </message> 11400 11849 <message> 11401 <location filename="../VBoxManageStorageController.cpp" line="59 3"/>11850 <location filename="../VBoxManageStorageController.cpp" line="591"/> 11402 11851 <source>Invalid host floppy drive name "%s"</source> 11403 11852 <translation>Недопустимое имя флоппи дисковода хоста "%s"</translation> 11404 11853 </message> 11405 11854 <message> 11406 <location filename="../VBoxManageStorageController.cpp" line=" 600"/>11855 <location filename="../VBoxManageStorageController.cpp" line="598"/> 11407 11856 <source>Parameters --server and --target are required for iSCSI media</source> 11408 11857 <translation>Для iSCSI носителей требуются параметры --server и --target</translation> 11409 11858 </message> 11410 11859 <message> 11411 <location filename="../VBoxManageStorageController.cpp" line="66 7"/>11860 <location filename="../VBoxManageStorageController.cpp" line="665"/> 11412 11861 <source>iSCSI disk created. UUID: %s 11413 11862 </source> … … 11416 11865 </message> 11417 11866 <message> 11418 <location filename="../VBoxManageStorageController.cpp" line="67 8"/>11867 <location filename="../VBoxManageStorageController.cpp" line="676"/> 11419 11868 <source>Missing --medium argument</source> 11420 11869 <translation>Отсутствует аргумент --medium</translation> 11421 11870 </message> 11422 11871 <message> 11423 <location filename="../VBoxManageStorageController.cpp" line="68 7"/>11872 <location filename="../VBoxManageStorageController.cpp" line="685"/> 11424 11873 <source>Invalid UUID or filename "%s"</source> 11425 11874 <translation>Недопустимый UUID или имя файла "%s"</translation> 11426 11875 </message> 11427 11876 <message> 11428 <location filename="../VBoxManageStorageController.cpp" line="69 7"/>11877 <location filename="../VBoxManageStorageController.cpp" line="695"/> 11429 11878 <source>Failed to set the medium/parent medium UUID</source> 11430 11879 <translation>Не удалось задать UUID носителя или UUID родительского носителя</translation> 11431 11880 </message> 11432 11881 <message> 11433 <location filename="../VBoxManageStorageController.cpp" line="7 11"/>11882 <location filename="../VBoxManageStorageController.cpp" line="709"/> 11434 11883 <source>Failed to set the medium type</source> 11435 11884 <translation>Не удалось задать тип носителя</translation> 11436 11885 </message> 11437 11886 <message> 11438 <location filename="../VBoxManageStorageController.cpp" line="80 6"/>11887 <location filename="../VBoxManageStorageController.cpp" line="804"/> 11439 11888 <source>Invalid --passthrough argument '%s'</source> 11440 11889 <translation>Недопустимый аргумент к --passthrough '%s'</translation> 11441 11890 </message> 11442 11891 <message> 11443 <location filename="../VBoxManageStorageController.cpp" line="80 9"/>11444 <location filename="../VBoxManageStorageController.cpp" line="83 5"/>11445 <location filename="../VBoxManageStorageController.cpp" line="8 61"/>11446 <location filename="../VBoxManageStorageController.cpp" line="88 7"/>11447 <location filename="../VBoxManageStorageController.cpp" line="91 3"/>11892 <location filename="../VBoxManageStorageController.cpp" line="807"/> 11893 <location filename="../VBoxManageStorageController.cpp" line="833"/> 11894 <location filename="../VBoxManageStorageController.cpp" line="859"/> 11895 <location filename="../VBoxManageStorageController.cpp" line="885"/> 11896 <location filename="../VBoxManageStorageController.cpp" line="911"/> 11448 11897 <source>Couldn't find the controller attachment for the controller '%s' 11449 11898 </source> … … 11452 11901 </message> 11453 11902 <message> 11454 <location filename="../VBoxManageStorageController.cpp" line="83 2"/>11903 <location filename="../VBoxManageStorageController.cpp" line="830"/> 11455 11904 <source>Invalid --tempeject argument '%s'</source> 11456 11905 <translation>Недопустимый аргумент к --tempeject '%s'</translation> 11457 11906 </message> 11458 11907 <message> 11459 <location filename="../VBoxManageStorageController.cpp" line="85 8"/>11908 <location filename="../VBoxManageStorageController.cpp" line="856"/> 11460 11909 <source>Invalid --nonrotational argument '%s'</source> 11461 11910 <translation>Недопустимый аргумент к --nonrotational '%s'</translation> 11462 11911 </message> 11463 11912 <message> 11464 <location filename="../VBoxManageStorageController.cpp" line="88 4"/>11913 <location filename="../VBoxManageStorageController.cpp" line="882"/> 11465 11914 <source>Invalid --discard argument '%s'</source> 11466 11915 <translation>Недопустимый аргумент к --discard '%s'</translation> 11467 11916 </message> 11468 11917 <message> 11469 <location filename="../VBoxManageStorageController.cpp" line="9 10"/>11918 <location filename="../VBoxManageStorageController.cpp" line="908"/> 11470 11919 <source>Invalid --hotpluggable argument '%s'</source> 11471 11920 <translation>Недопустимый аргумент к --hotpluggable '%s'</translation> 11472 11921 </message> 11473 11922 <message> 11474 <location filename="../VBoxManageStorageController.cpp" line="99 2"/>11923 <location filename="../VBoxManageStorageController.cpp" line="990"/> 11475 11924 <source>Too few parameters</source> 11476 11925 <translation>Слишком мало параметров</translation> 11477 11926 </message> 11478 11927 <message> 11479 <location filename="../VBoxManageStorageController.cpp" line="105 8"/>11928 <location filename="../VBoxManageStorageController.cpp" line="1056"/> 11480 11929 <source>Storage controller name not specified 11481 11930 </source> … … 11484 11933 </message> 11485 11934 <message> 11486 <location filename="../VBoxManageStorageController.cpp" line="11 21"/>11935 <location filename="../VBoxManageStorageController.cpp" line="1119"/> 11487 11936 <source>Invalid --add argument '%s'</source> 11488 11937 <translation>Недопустимый аргумент к --add '%s'</translation> 11489 11938 </message> 11490 11939 <message> 11491 <location filename="../VBoxManageStorageController.cpp" line="118 8"/>11492 <location filename="../VBoxManageStorageController.cpp" line="120 7"/>11493 <location filename="../VBoxManageStorageController.cpp" line="123 8"/>11494 <location filename="../VBoxManageStorageController.cpp" line="126 4"/>11495 <location filename="../VBoxManageStorageController.cpp" line="128 3"/>11940 <location filename="../VBoxManageStorageController.cpp" line="1186"/> 11941 <location filename="../VBoxManageStorageController.cpp" line="1205"/> 11942 <location filename="../VBoxManageStorageController.cpp" line="1236"/> 11943 <location filename="../VBoxManageStorageController.cpp" line="1262"/> 11944 <location filename="../VBoxManageStorageController.cpp" line="1281"/> 11496 11945 <source>Couldn't find the controller with the name: '%s' 11497 11946 </source> … … 11500 11949 </message> 11501 11950 <message> 11502 <location filename="../VBoxManageStorageController.cpp" line="123 2"/>11951 <location filename="../VBoxManageStorageController.cpp" line="1230"/> 11503 11952 <source>Invalid --hostiocache argument '%s'</source> 11504 11953 <translation>Недопустимый аргумент к --hostiocache '%s'</translation> 11505 11954 </message> 11506 11955 <message> 11507 <location filename="../VBoxManageStorageController.cpp" line="125 8"/>11956 <location filename="../VBoxManageStorageController.cpp" line="1256"/> 11508 11957 <source>Invalid --bootable argument '%s'</source> 11509 11958 <translation>Недопустимый аргумент к --bootable '%s'</translation> … … 11513 11962 <name>UpdateCheck</name> 11514 11963 <message> 11515 <location filename="../VBoxManageUpdateCheck.cpp" line="8 9"/>11964 <location filename="../VBoxManageUpdateCheck.cpp" line="81"/> 11516 11965 <source>Enabled: %s 11517 11966 </source> … … 11520 11969 </message> 11521 11970 <message> 11522 <location filename="../VBoxManageUpdateCheck.cpp" line=" 90"/>11971 <location filename="../VBoxManageUpdateCheck.cpp" line="82"/> 11523 11972 <source>yes</source> 11524 11973 <translation>да</translation> 11525 11974 </message> 11526 11975 <message> 11527 <location filename="../VBoxManageUpdateCheck.cpp" line=" 90"/>11976 <location filename="../VBoxManageUpdateCheck.cpp" line="82"/> 11528 11977 <source>no</source> 11529 11978 <translation>нет</translation> 11530 11979 </message> 11531 11980 <message> 11532 <location filename="../VBoxManageUpdateCheck.cpp" line=" 97"/>11981 <location filename="../VBoxManageUpdateCheck.cpp" line="89"/> 11533 11982 <source>Count: %u 11534 11983 </source> … … 11537 11986 </message> 11538 11987 <message> 11539 <location filename="../VBoxManageUpdateCheck.cpp" line=" 104"/>11988 <location filename="../VBoxManageUpdateCheck.cpp" line="99"/> 11540 11989 <source>Frequency: never 11541 11990 </source> … … 11544 11993 </message> 11545 11994 <message> 11546 <location filename="../VBoxManageUpdateCheck.cpp" line="10 6"/>11995 <location filename="../VBoxManageUpdateCheck.cpp" line="101"/> 11547 11996 <source>Frequency: every day 11548 11997 </source> … … 11551 12000 </message> 11552 12001 <message> 11553 <location filename="../VBoxManageUpdateCheck.cpp" line="10 8"/>12002 <location filename="../VBoxManageUpdateCheck.cpp" line="103"/> 11554 12003 <source>Frequency: every %u days 11555 12004 </source> … … 11558 12007 </message> 11559 12008 <message> 11560 <location filename="../VBoxManageUpdateCheck.cpp" line="11 7"/>12009 <location filename="../VBoxManageUpdateCheck.cpp" line="112"/> 11561 12010 <source>Stable - new minor and maintenance releases</source> 11562 12011 <translation>Стабильные - новые минорные и корректирующие релизы</translation> 11563 12012 </message> 11564 12013 <message> 11565 <location filename="../VBoxManageUpdateCheck.cpp" line="1 21"/>12014 <location filename="../VBoxManageUpdateCheck.cpp" line="116"/> 11566 12015 <source>All releases - new minor, maintenance, and major releases</source> 11567 12016 <translation>Все релизы - новые минорные, корректирующие и мажорные релизы</translation> 11568 12017 </message> 11569 12018 <message> 11570 <location filename="../VBoxManageUpdateCheck.cpp" line="12 5"/>12019 <location filename="../VBoxManageUpdateCheck.cpp" line="120"/> 11571 12020 <source>With Betas - new minor, maintenance, major, and beta releases</source> 11572 12021 <translation>С бетами - новые минорные, корректирующие, мажорные и бета релизы</translation> 11573 12022 </message> 11574 12023 <message> 11575 <location filename="../VBoxManageUpdateCheck.cpp" line="1 30"/>12024 <location filename="../VBoxManageUpdateCheck.cpp" line="125"/> 11576 12025 <source>Unset</source> 11577 12026 <translation>Не задано</translation> 11578 12027 </message> 11579 12028 <message> 11580 <location filename="../VBoxManageUpdateCheck.cpp" line="137"/> 12029 <location filename="../VBoxManageUpdateCheck.cpp" line="132"/> 12030 <source>Channel: %s 12031 </source> 12032 <translation type="unfinished"></translation> 12033 </message> 12034 <message> 12035 <location filename="../VBoxManageUpdateCheck.cpp" line="189"/> 12036 <source>Unknown channel specified: '%s'</source> 12037 <translation type="unfinished"></translation> 12038 </message> 12039 <message> 12040 <location filename="../VBoxManageUpdateCheck.cpp" line="258"/> 12041 <source>Checking for a new %ls version... 12042 </source> 12043 <translation type="unfinished"></translation> 12044 </message> 12045 <message> 12046 <location filename="../VBoxManageUpdateCheck.cpp" line="269"/> 12047 <source>Failed to create update progress object: %Rhrc 12048 </source> 12049 <translation type="unfinished"></translation> 12050 </message> 12051 <message> 12052 <location filename="../VBoxManageUpdateCheck.cpp" line="277"/> 12053 <source>Checking for update failed.</source> 12054 <translation type="unfinished"></translation> 12055 </message> 12056 <message> 12057 <location filename="../VBoxManageUpdateCheck.cpp" line="296"/> 12058 <source>A new version of %ls has been released! Version %ls is available at virtualbox.org. 12059 You can download this version here: %ls 12060 </source> 12061 <translation type="unfinished"></translation> 12062 </message> 12063 <message> 12064 <location filename="../VBoxManageUpdateCheck.cpp" line="312"/> 12065 <source>You are already running the most recent version of %ls. 12066 </source> 12067 <translation type="unfinished"></translation> 12068 </message> 12069 <message> 12070 <location filename="../VBoxManageUpdateCheck.cpp" line="324"/> 12071 <source>Something went wrong while checking for updates! 12072 Please check network connection and try again later. 12073 </source> 12074 <translation type="unfinished"></translation> 12075 </message> 12076 <message> 11581 12077 <source>Target: %s 11582 12078 </source> 11583 <translation >Цель: %s11584 </translation> 11585 </message> 11586 <message> 11587 <location filename="../VBoxManageUpdateCheck.cpp" line="14 5"/>12079 <translation type="vanished">Цель: %s 12080 </translation> 12081 </message> 12082 <message> 12083 <location filename="../VBoxManageUpdateCheck.cpp" line="140"/> 11588 12084 <source>Last Check Date: %ls 11589 12085 </source> … … 11592 12088 </message> 11593 12089 <message> 11594 <location filename="../VBoxManageUpdateCheck.cpp" line="197"/>11595 12090 <source>Unknown target specified: '%s'</source> 11596 <translation >Указана неизвестная цель: '%s'</translation>11597 </message> 11598 <message> 11599 <location filename="../VBoxManageUpdateCheck.cpp" line=" 203"/>12091 <translation type="vanished">Указана неизвестная цель: '%s'</translation> 12092 </message> 12093 <message> 12094 <location filename="../VBoxManageUpdateCheck.cpp" line="195"/> 11600 12095 <source>The update frequency cannot be zero</source> 11601 12096 <translation>Частота обновлений не может быть нулевой</translation> 11602 12097 </message> 11603 12098 <message> 11604 <location filename="../VBoxManageUpdateCheck.cpp" line="2 14"/>12099 <location filename="../VBoxManageUpdateCheck.cpp" line="206"/> 11605 12100 <source>No change requested</source> 11606 12101 <translation>Не запрошено изменений</translation> 11607 12102 </message> 11608 12103 <message> 11609 <location filename="../VBoxManageUpdateCheck.cpp" line="285"/>11610 12104 <source>Checking for a new VirtualBox version... 11611 12105 </source> 11612 <translation>Проверка на наличие новой версии VirtualBox... 11613 </translation> 11614 </message> 11615 <message> 11616 <location filename="../VBoxManageUpdateCheck.cpp" line="296"/> 12106 <translation type="vanished">Проверка на наличие новой версии VirtualBox... 12107 </translation> 12108 </message> 12109 <message> 11617 12110 <source>VirtualBox update checking has been disabled. 11618 12111 </source> 11619 <translation>Проверка обновлений VirtualBox отключена. 11620 </translation> 11621 </message> 11622 <message> 11623 <location filename="../VBoxManageUpdateCheck.cpp" line="301"/> 12112 <translation type="vanished">Проверка обновлений VirtualBox отключена. 12113 </translation> 12114 </message> 12115 <message> 11624 12116 <source>Failed to create ptrProgress object: %Rhrc 11625 12117 </source> 11626 <translation>Не удалось создать объект ptrProgress: %Rhrc 11627 </translation> 11628 </message> 11629 <message> 11630 <location filename="../VBoxManageUpdateCheck.cpp" line="309"/> 12118 <translation type="vanished">Не удалось создать объект ptrProgress: %Rhrc 12119 </translation> 12120 </message> 12121 <message> 11631 12122 <source>Check for update failed.</source> 11632 <translation>Не удалось проверить обновления.</translation> 11633 </message> 11634 <message> 11635 <location filename="../VBoxManageUpdateCheck.cpp" line="325"/> 12123 <translation type="vanished">Не удалось проверить обновления.</translation> 12124 </message> 12125 <message> 11636 12126 <source>A new version of VirtualBox has been released! Version %ls is available at virtualbox.org. 11637 12127 You can download this version here: %ls 11638 12128 </source> 11639 <translation >Выпущена новая версия VirtualBox! Версия %ls доступна на сайте virtualbox.org.12129 <translation type="vanished">Выпущена новая версия VirtualBox! Версия %ls доступна на сайте virtualbox.org. 11640 12130 Вы можете загрузить эту версию здесь: %ls 11641 12131 </translation> 11642 12132 </message> 11643 12133 <message> 11644 <location filename="../VBoxManageUpdateCheck.cpp" line="336"/>11645 12134 <source>You are already running the most recent version of VirtualBox. 11646 12135 </source> 11647 <translation >Вы уже используете последнюю версию VirtualBox.12136 <translation type="vanished">Вы уже используете последнюю версию VirtualBox. 11648 12137 </translation> 11649 12138 </message> … … 11653 12142 <message> 11654 12143 <location filename="../VBoxManageUSB.cpp" line="178"/> 11655 <location filename="../VBoxManageUSB.cpp" line="2 02"/>11656 <location filename="../VBoxManageUSB.cpp" line="2 04"/>11657 <location filename="../VBoxManageUSB.cpp" line="3 62"/>11658 <location filename="../VBoxManageUSB.cpp" line="5 60"/>12144 <location filename="../VBoxManageUSB.cpp" line="214"/> 12145 <location filename="../VBoxManageUSB.cpp" line="216"/> 12146 <location filename="../VBoxManageUSB.cpp" line="373"/> 12147 <location filename="../VBoxManageUSB.cpp" line="571"/> 11659 12148 <source>Not enough parameters</source> 11660 12149 <translation>Недостаточно параметров</translation> 11661 12150 </message> 11662 12151 <message> 11663 <location filename="../VBoxManageUSB.cpp" line="1 87"/>12152 <location filename="../VBoxManageUSB.cpp" line="199"/> 11664 12153 <source>Invalid parameter '%s'</source> 11665 12154 <translation>Недопустимый параметр '%s'</translation> 11666 12155 </message> 11667 12156 <message> 11668 <location filename="../VBoxManageUSB.cpp" line=" 191"/>12157 <location filename="../VBoxManageUSB.cpp" line="203"/> 11669 12158 <source>Invalid index '%s'</source> 11670 12159 <translation>Недопустимый индекс '%s'</translation> 11671 12160 </message> 11672 12161 <message> 11673 <location filename="../VBoxManageUSB.cpp" line="2 19"/>11674 <location filename="../VBoxManageUSB.cpp" line="2 34"/>11675 <location filename="../VBoxManageUSB.cpp" line="2 42"/>11676 <location filename="../VBoxManageUSB.cpp" line="2 55"/>11677 <location filename="../VBoxManageUSB.cpp" line="2 63"/>11678 <location filename="../VBoxManageUSB.cpp" line="2 71"/>11679 <location filename="../VBoxManageUSB.cpp" line="2 79"/>11680 <location filename="../VBoxManageUSB.cpp" line="2 87"/>11681 <location filename="../VBoxManageUSB.cpp" line=" 295"/>11682 <location filename="../VBoxManageUSB.cpp" line="3 03"/>11683 <location filename="../VBoxManageUSB.cpp" line="3 11"/>11684 <location filename="../VBoxManageUSB.cpp" line="3 24"/>11685 <location filename="../VBoxManageUSB.cpp" line="3 70"/>12162 <location filename="../VBoxManageUSB.cpp" line="231"/> 12163 <location filename="../VBoxManageUSB.cpp" line="246"/> 12164 <location filename="../VBoxManageUSB.cpp" line="254"/> 12165 <location filename="../VBoxManageUSB.cpp" line="267"/> 12166 <location filename="../VBoxManageUSB.cpp" line="275"/> 12167 <location filename="../VBoxManageUSB.cpp" line="283"/> 12168 <location filename="../VBoxManageUSB.cpp" line="291"/> 12169 <location filename="../VBoxManageUSB.cpp" line="299"/> 12170 <location filename="../VBoxManageUSB.cpp" line="307"/> 12171 <location filename="../VBoxManageUSB.cpp" line="315"/> 12172 <location filename="../VBoxManageUSB.cpp" line="323"/> 12173 <location filename="../VBoxManageUSB.cpp" line="336"/> 12174 <location filename="../VBoxManageUSB.cpp" line="381"/> 11686 12175 <source>Missing argument to '%s'</source> 11687 12176 <translation>Отсутствует аргумент к '%s'</translation> 11688 12177 </message> 11689 12178 <message> 11690 <location filename="../VBoxManageUSB.cpp" line="2 49"/>12179 <location filename="../VBoxManageUSB.cpp" line="261"/> 11691 12180 <source>Invalid --active argument '%s'</source> 11692 12181 <translation>Недопустимый аргумент к --active '%s'</translation> 11693 12182 </message> 11694 12183 <message> 11695 <location filename="../VBoxManageUSB.cpp" line="3 16"/>12184 <location filename="../VBoxManageUSB.cpp" line="328"/> 11696 12185 <source>Failed to convert the --maskedinterfaces value '%s' to a number, vrc=%Rrc</source> 11697 12186 <translation>Не удалось преобразовать значение --maskedinterfaces '%s' в число, vrc=%Rrc</translation> 11698 12187 </message> 11699 12188 <message> 11700 <location filename="../VBoxManageUSB.cpp" line="3 31"/>12189 <location filename="../VBoxManageUSB.cpp" line="343"/> 11701 12190 <source>Invalid USB filter action '%s'</source> 11702 12191 <translation>Недопустимое действие USB фильтра '%s'</translation> 11703 12192 </message> 11704 12193 <message> 11705 <location filename="../VBoxManageUSB.cpp" line="3 35"/>12194 <location filename="../VBoxManageUSB.cpp" line="346"/> 11706 12195 <source>Unknown option '%s'</source> 11707 12196 <translation>Неизвестная опция '%s'</translation> 11708 12197 </message> 11709 12198 <message> 11710 <location filename="../VBoxManageUSB.cpp" line="3 52"/>11711 <location filename="../VBoxManageUSB.cpp" line="3 84"/>12199 <location filename="../VBoxManageUSB.cpp" line="363"/> 12200 <location filename="../VBoxManageUSB.cpp" line="395"/> 11712 12201 <source>Mandatory options not supplied</source> 11713 12202 <translation>Не предоставлены обязательные опции</translation> 11714 12203 </message> 11715 12204 <message> 11716 <location filename="../VBoxManageUSB.cpp" line="5 68"/>12205 <location filename="../VBoxManageUSB.cpp" line="581"/> 11717 12206 <source>Invalid number of parameters</source> 11718 12207 <translation>Недопустимое количество параметров</translation> 11719 12208 </message> 11720 12209 <message> 11721 <location filename="../VBoxManageUSB.cpp" line="5 83"/>12210 <location filename="../VBoxManageUSB.cpp" line="596"/> 11722 12211 <source>Parameter "%s" is invalid</source> 11723 12212 <translation>Недопустимый параметр '%s'</translation> … … 11727 12216 <name>Utils</name> 11728 12217 <message> 11729 <location filename="../VBoxManageUtils.cpp" line="10 3"/>12218 <location filename="../VBoxManageUtils.cpp" line="102"/> 11730 12219 <source>type bridged</source> 11731 12220 <translation>типа сетевой мост</translation> 11732 12221 </message> 11733 12222 <message> 11734 <location filename="../VBoxManageUtils.cpp" line="10 7"/>12223 <location filename="../VBoxManageUtils.cpp" line="106"/> 11735 12224 <source>type host-only</source> 11736 12225 <translation>типа виртуальная сеть хоста</translation> 11737 12226 </message> 11738 12227 <message> 11739 <location filename="../VBoxManageUtils.cpp" line="11 2"/>12228 <location filename="../VBoxManageUtils.cpp" line="111"/> 11740 12229 <source>unknown type %RU32</source> 11741 12230 <translation>неизвестного типа %RU32</translation> 11742 12231 </message> 11743 12232 <message> 11744 <location filename="../VBoxManageUtils.cpp" line="11 7"/>12233 <location filename="../VBoxManageUtils.cpp" line="116"/> 11745 12234 <source>Interface "%s" is of %s</source> 11746 12235 <translation>Интерфейс "%s" %s</translation> 11747 12236 </message> 11748 12237 <message> 11749 <location filename="../VBoxManageUtils.cpp" line="12 1"/>12238 <location filename="../VBoxManageUtils.cpp" line="120"/> 11750 12239 <source>Interface "%s" doesn't seem to exist</source> 11751 12240 <translation>Кажется, интерфейс "%s" не существует</translation> … … 11755 12244 <name>VBoxManage</name> 11756 12245 <message> 11757 <location filename="../VBoxManage.cpp" line="3 31"/>11758 <location filename="../VBoxManage.cpp" line="49 9"/>12246 <location filename="../VBoxManage.cpp" line="327"/> 12247 <location filename="../VBoxManage.cpp" line="495"/> 11759 12248 <source>Progress object failure: %Rhrc 11760 12249 </source> … … 11763 12252 </message> 11764 12253 <message> 11765 <location filename="../VBoxManage.cpp" line="34 8"/>12254 <location filename="../VBoxManage.cpp" line="344"/> 11766 12255 <source>Failed to get progress description: %Rhrc 11767 12256 </source> … … 11770 12259 </message> 11771 12260 <message> 11772 <location filename="../VBoxManage.cpp" line="41 5"/>12261 <location filename="../VBoxManage.cpp" line="411"/> 11773 12262 <source>(%u/%u) %ls %02u%% => %02u%% (%d s remaining) 11774 12263 </source> … … 11777 12266 </message> 11778 12267 <message> 12268 <location filename="../VBoxManage.cpp" line="481"/> 12269 <source>CANCELED 12270 </source> 12271 <translation>ОТМЕНЕНО 12272 </translation> 12273 </message> 12274 <message> 11779 12275 <location filename="../VBoxManage.cpp" line="485"/> 11780 <source>CANCELED11781 </source>11782 <translation>ОТМЕНЕНО11783 </translation>11784 </message>11785 <message>11786 <location filename="../VBoxManage.cpp" line="489"/>11787 12276 <source>Progress state: %Rhrc 11788 12277 </source> … … 11791 12280 </message> 11792 12281 <message> 11793 <location filename="../VBoxManage.cpp" line="6 81"/>12282 <location filename="../VBoxManage.cpp" line="672"/> 11794 12283 <source>Password expected</source> 11795 12284 <translation>Ожидается пароль</translation> 11796 12285 </message> 11797 12286 <message> 11798 <location filename="../VBoxManage.cpp" line="68 9"/>12287 <location filename="../VBoxManage.cpp" line="680"/> 11799 12288 <source>No password file specified</source> 11800 12289 <translation>Не указан файл с паролем</translation> 11801 12290 </message> 11802 12291 <message> 11803 <location filename="../VBoxManage.cpp" line="6 97"/>12292 <location filename="../VBoxManage.cpp" line="687"/> 11804 12293 <source>Only one response file allowed</source> 11805 12294 <translation>Разрешается только один файл ответов</translation> 11806 12295 </message> 11807 12296 <message> 11808 <location filename="../VBoxManage.cpp" line=" 705"/>12297 <location filename="../VBoxManage.cpp" line="695"/> 11809 12298 <source>Error reading response file '%s': %Rrc</source> 11810 12299 <translation>Ошибка чтения файла ответов '%s': %Rrc</translation> 11811 12300 </message> 11812 12301 <message> 11813 <location filename="../VBoxManage.cpp" line="7 10"/>12302 <location filename="../VBoxManage.cpp" line="700"/> 11814 12303 <source>Invalid response file ('%s') encoding: %Rrc</source> 11815 12304 <translation>Недопустимая кодировка файла ответов ('%s'): %Rrc</translation> 11816 12305 </message> 11817 12306 <message> 11818 <location filename="../VBoxManage.cpp" line="7 18"/>12307 <location filename="../VBoxManage.cpp" line="708"/> 11819 12308 <source>Failed to parse response file '%s' (bourne shell style): %Rrc</source> 11820 12309 <translation>Не удалось разобрать файл ответов '%s' (стиль bourne shell): %Rrc</translation> 11821 12310 </message> 11822 12311 <message> 11823 <location filename="../VBoxManage.cpp" line="7 24"/>12312 <location filename="../VBoxManage.cpp" line="714"/> 11824 12313 <source>out of memory</source> 11825 12314 <translation>не хватает памяти</translation> 11826 12315 </message> 11827 12316 <message> 11828 <location filename="../VBoxManage.cpp" line="7 68"/>12317 <location filename="../VBoxManage.cpp" line="755"/> 11829 12318 <source>commands: 11830 12319 </source> … … 11833 12322 </message> 11834 12323 <message> 11835 <location filename="../VBoxManage.cpp" line="7 77"/>12324 <location filename="../VBoxManage.cpp" line="762"/> 11836 12325 <source>Invalid command '%s'</source> 11837 12326 <translation>Недопустимая команда '%s'</translation> 11838 12327 </message> 11839 12328 <message> 11840 <location filename="../VBoxManage.cpp" line="7 96"/>12329 <location filename="../VBoxManage.cpp" line="781"/> 11841 12330 <source>Failed to initialize COM because the global settings directory '%s' is not accessible!</source> 11842 12331 <translation>Не удалось инициализировать COM, потому что директория глобальных настроек '%s' недоступна!</translation> 11843 12332 </message> 11844 12333 <message> 11845 <location filename="../VBoxManage.cpp" line="7 99"/>12334 <location filename="../VBoxManage.cpp" line="784"/> 11846 12335 <source>Failed to initialize COM! (hrc=%Rhrc)</source> 11847 12336 <translation>Не удалось инициализировать COM! (hrc=%Rhrc)</translation> 11848 12337 </message> 11849 12338 <message> 11850 <location filename="../VBoxManage.cpp" line="8 82"/>12339 <location filename="../VBoxManage.cpp" line="867"/> 11851 12340 <source>Failed to create a session object!</source> 11852 12341 <translation>Не удалось создать объект сессии!</translation> 11853 12342 </message> 11854 12343 <message> 11855 <location filename="../VBoxManage.cpp" line="8 92"/>12344 <location filename="../VBoxManage.cpp" line="877"/> 11856 12345 <source>Failed to create the VirtualBox object!</source> 11857 12346 <translation>Не удалось создать объект VirtualBox!</translation> 11858 12347 </message> 11859 12348 <message> 11860 <location filename="../VBoxManage.cpp" line="8 96"/>12349 <location filename="../VBoxManage.cpp" line="881"/> 11861 12350 <source>Most likely, the VirtualBox COM server is not running or failed to start.</source> 11862 12351 <translation>Наиболее вероятно, что COM сервер VirtualBox не запущен или не смог запуститься.</translation> -
trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_xx_YY.ts
r93011 r94643 5 5 <name>Appliance</name> 6 6 <message> 7 <location filename="../VBoxManageAppliance.cpp" line="2 15"/>8 <location filename="../VBoxManageAppliance.cpp" line="1 369"/>7 <location filename="../VBoxManageAppliance.cpp" line="256"/> 8 <location filename="../VBoxManageAppliance.cpp" line="1551"/> 9 9 <source>Option "%s" can't be used together with "--cloud" option.</source> 10 10 <translation type="unfinished"></translation> 11 11 </message> 12 12 <message> 13 <location filename="../VBoxManageAppliance.cpp" line="2 19"/>14 <location filename="../VBoxManageAppliance.cpp" line="3 05"/>15 <location filename="../VBoxManageAppliance.cpp" line="1 373"/>16 <location filename="../VBoxManageAppliance.cpp" line="1 467"/>13 <location filename="../VBoxManageAppliance.cpp" line="259"/> 14 <location filename="../VBoxManageAppliance.cpp" line="334"/> 15 <location filename="../VBoxManageAppliance.cpp" line="1554"/> 16 <location filename="../VBoxManageAppliance.cpp" line="1637"/> 17 17 <source>Value of option "%s" is out of range.</source> 18 18 <translation type="unfinished"></translation> 19 19 </message> 20 20 <message> 21 <location filename="../VBoxManageAppliance.cpp" line="2 29"/>22 <location filename="../VBoxManageAppliance.cpp" line="2 37"/>23 <location filename="../VBoxManageAppliance.cpp" line="2 53"/>24 <location filename="../VBoxManageAppliance.cpp" line=" 269"/>25 <location filename="../VBoxManageAppliance.cpp" line=" 285"/>26 <location filename="../VBoxManageAppliance.cpp" line=" 293"/>27 <location filename="../VBoxManageAppliance.cpp" line="1 382"/>21 <location filename="../VBoxManageAppliance.cpp" line="268"/> 22 <location filename="../VBoxManageAppliance.cpp" line="275"/> 23 <location filename="../VBoxManageAppliance.cpp" line="289"/> 24 <location filename="../VBoxManageAppliance.cpp" line="303"/> 25 <location filename="../VBoxManageAppliance.cpp" line="317"/> 26 <location filename="../VBoxManageAppliance.cpp" line="324"/> 27 <location filename="../VBoxManageAppliance.cpp" line="1562"/> 28 28 <source>Option "%s" requires preceding --vsys or --cloud option.</source> 29 29 <translation type="unfinished"></translation> 30 30 </message> 31 31 <message> 32 <location filename="../VBoxManageAppliance.cpp" line="245"/> 33 <location filename="../VBoxManageAppliance.cpp" line="261"/> 34 <location filename="../VBoxManageAppliance.cpp" line="277"/> 35 <location filename="../VBoxManageAppliance.cpp" line="301"/> 36 <location filename="../VBoxManageAppliance.cpp" line="314"/> 37 <location filename="../VBoxManageAppliance.cpp" line="326"/> 38 <location filename="../VBoxManageAppliance.cpp" line="338"/> 39 <location filename="../VBoxManageAppliance.cpp" line="350"/> 40 <location filename="../VBoxManageAppliance.cpp" line="1390"/> 41 <location filename="../VBoxManageAppliance.cpp" line="1398"/> 42 <location filename="../VBoxManageAppliance.cpp" line="1406"/> 43 <location filename="../VBoxManageAppliance.cpp" line="1414"/> 44 <location filename="../VBoxManageAppliance.cpp" line="1422"/> 45 <location filename="../VBoxManageAppliance.cpp" line="1430"/> 46 <location filename="../VBoxManageAppliance.cpp" line="1438"/> 47 <location filename="../VBoxManageAppliance.cpp" line="1446"/> 32 <location filename="../VBoxManageAppliance.cpp" line="282"/> 33 <location filename="../VBoxManageAppliance.cpp" line="296"/> 34 <location filename="../VBoxManageAppliance.cpp" line="310"/> 35 <location filename="../VBoxManageAppliance.cpp" line="331"/> 36 <location filename="../VBoxManageAppliance.cpp" line="342"/> 37 <location filename="../VBoxManageAppliance.cpp" line="352"/> 38 <location filename="../VBoxManageAppliance.cpp" line="362"/> 39 <location filename="../VBoxManageAppliance.cpp" line="372"/> 40 <location filename="../VBoxManageAppliance.cpp" line="382"/> 41 <location filename="../VBoxManageAppliance.cpp" line="1569"/> 42 <location filename="../VBoxManageAppliance.cpp" line="1576"/> 43 <location filename="../VBoxManageAppliance.cpp" line="1583"/> 44 <location filename="../VBoxManageAppliance.cpp" line="1590"/> 45 <location filename="../VBoxManageAppliance.cpp" line="1597"/> 46 <location filename="../VBoxManageAppliance.cpp" line="1604"/> 47 <location filename="../VBoxManageAppliance.cpp" line="1611"/> 48 <location filename="../VBoxManageAppliance.cpp" line="1618"/> 48 49 <source>Option "%s" requires preceding --vsys option.</source> 49 50 <translation type="unfinished"></translation> 50 51 </message> 51 52 <message> 52 <location filename="../VBoxManageAppliance.cpp" line="318"/> 53 <location filename="../VBoxManageAppliance.cpp" line="330"/> 54 <location filename="../VBoxManageAppliance.cpp" line="342"/> 55 <location filename="../VBoxManageAppliance.cpp" line="354"/> 53 <location filename="../VBoxManageAppliance.cpp" line="345"/> 54 <location filename="../VBoxManageAppliance.cpp" line="355"/> 55 <location filename="../VBoxManageAppliance.cpp" line="365"/> 56 <location filename="../VBoxManageAppliance.cpp" line="375"/> 57 <location filename="../VBoxManageAppliance.cpp" line="385"/> 56 58 <source>Option "%s" requires preceding --unit option.</source> 57 59 <translation type="unfinished"></translation> 58 60 </message> 59 61 <message> 60 <location filename="../VBoxManageAppliance.cpp" line="3 61"/>62 <location filename="../VBoxManageAppliance.cpp" line="392"/> 61 63 <source>Invalid import options '%s' 62 64 </source> … … 64 66 </message> 65 67 <message> 66 <location filename="../VBoxManageAppliance.cpp" line=" 371"/>67 <location filename="../VBoxManageAppliance.cpp" line="1 463"/>68 <location filename="../VBoxManageAppliance.cpp" line="401"/> 69 <location filename="../VBoxManageAppliance.cpp" line="1634"/> 68 70 <source>Option "%s" can't be used together with "--vsys" option.</source> 69 71 <translation type="unfinished"></translation> 70 72 </message> 71 73 <message> 72 <location filename="../VBoxManageAppliance.cpp" line=" 380"/>73 <location filename="../VBoxManageAppliance.cpp" line=" 387"/>74 <location filename="../VBoxManageAppliance.cpp" line=" 394"/>75 <location filename="../VBoxManageAppliance.cpp" line="1 477"/>76 <location filename="../VBoxManageAppliance.cpp" line="1 485"/>77 <location filename="../VBoxManageAppliance.cpp" line="1 493"/>78 <location filename="../VBoxManageAppliance.cpp" line="1 501"/>79 <location filename="../VBoxManageAppliance.cpp" line="1 509"/>80 <location filename="../VBoxManageAppliance.cpp" line="1 517"/>81 <location filename="../VBoxManageAppliance.cpp" line="1 525"/>82 <location filename="../VBoxManageAppliance.cpp" line="1 533"/>83 <location filename="../VBoxManageAppliance.cpp" line="1 541"/>84 <location filename="../VBoxManageAppliance.cpp" line="1 549"/>85 <location filename="../VBoxManageAppliance.cpp" line="1 557"/>86 <location filename="../VBoxManageAppliance.cpp" line="1 565"/>87 <location filename="../VBoxManageAppliance.cpp" line="1 573"/>74 <location filename="../VBoxManageAppliance.cpp" line="410"/> 75 <location filename="../VBoxManageAppliance.cpp" line="417"/> 76 <location filename="../VBoxManageAppliance.cpp" line="424"/> 77 <location filename="../VBoxManageAppliance.cpp" line="1646"/> 78 <location filename="../VBoxManageAppliance.cpp" line="1653"/> 79 <location filename="../VBoxManageAppliance.cpp" line="1660"/> 80 <location filename="../VBoxManageAppliance.cpp" line="1667"/> 81 <location filename="../VBoxManageAppliance.cpp" line="1674"/> 82 <location filename="../VBoxManageAppliance.cpp" line="1681"/> 83 <location filename="../VBoxManageAppliance.cpp" line="1688"/> 84 <location filename="../VBoxManageAppliance.cpp" line="1695"/> 85 <location filename="../VBoxManageAppliance.cpp" line="1702"/> 86 <location filename="../VBoxManageAppliance.cpp" line="1709"/> 87 <location filename="../VBoxManageAppliance.cpp" line="1716"/> 88 <location filename="../VBoxManageAppliance.cpp" line="1723"/> 89 <location filename="../VBoxManageAppliance.cpp" line="1730"/> 88 90 <source>Option "%s" requires preceding --cloud option.</source> 89 91 <translation type="unfinished"></translation> 90 92 </message> 91 93 <message> 92 <location filename="../VBoxManageAppliance.cpp" line="4 03"/>94 <location filename="../VBoxManageAppliance.cpp" line="433"/> 93 95 <source>Invalid parameter '%s'</source> 94 96 <translation type="unfinished"></translation> 95 97 </message> 96 98 <message> 97 <location filename="../VBoxManageAppliance.cpp" line="4 10"/>99 <location filename="../VBoxManageAppliance.cpp" line="440"/> 98 100 <source>Invalid option -%c</source> 99 101 <translation type="unfinished"></translation> 100 102 </message> 101 103 <message> 102 <location filename="../VBoxManageAppliance.cpp" line="4 12"/>104 <location filename="../VBoxManageAppliance.cpp" line="442"/> 103 105 <source>Invalid option case %i</source> 104 106 <translation type="unfinished"></translation> 105 107 </message> 106 108 <message> 107 <location filename="../VBoxManageAppliance.cpp" line="4 15"/>109 <location filename="../VBoxManageAppliance.cpp" line="445"/> 108 110 <source>unknown option: %s 109 111 </source> … … 111 113 </message> 112 114 <message> 113 <location filename="../VBoxManageAppliance.cpp" line="4 19"/>115 <location filename="../VBoxManageAppliance.cpp" line="449"/> 114 116 <source>error: %Rrs</source> 115 117 <translation type="unfinished"></translation> 116 118 </message> 117 119 <message> 118 <location filename="../VBoxManageAppliance.cpp" line="4 25"/>120 <location filename="../VBoxManageAppliance.cpp" line="455"/> 119 121 <source>Not enough arguments for "import" command.</source> 120 122 <translation type="unfinished"></translation> 121 123 </message> 122 124 <message> 123 <location filename="../VBoxManageAppliance.cpp" line="4 47"/>125 <location filename="../VBoxManageAppliance.cpp" line="477"/> 124 126 <source>Not enough arguments for import from the Cloud.</source> 125 127 <translation type="unfinished"></translation> 126 128 </message> 127 129 <message> 128 <location filename="../VBoxManageAppliance.cpp" line=" 470"/>130 <location filename="../VBoxManageAppliance.cpp" line="500"/> 129 131 <source>Appliance read failed</source> 130 132 <translation type="unfinished"></translation> 131 133 </message> 132 134 <message> 133 <location filename="../VBoxManageAppliance.cpp" line=" 482"/>135 <location filename="../VBoxManageAppliance.cpp" line="512"/> 134 136 <source>Interpreting %ls... 135 137 </source> … … 137 139 </message> 138 140 <message> 139 <location filename="../VBoxManageAppliance.cpp" line="5 14"/>141 <location filename="../VBoxManageAppliance.cpp" line="544"/> 140 142 <source>Disks: 141 143 </source> … … 143 145 </message> 144 146 <message numerus="yes"> 145 <location filename="../VBoxManageAppliance.cpp" line="5 36"/>147 <location filename="../VBoxManageAppliance.cpp" line="565"/> 146 148 <source>Invalid index %RI32 with -vsys option; the OVF contains only %zu virtual system(s).</source> 147 149 <translation type="unfinished"> … … 150 152 </message> 151 153 <message> 152 <location filename="../VBoxManageAppliance.cpp" line=" 571"/>154 <location filename="../VBoxManageAppliance.cpp" line="600"/> 153 155 <source>Virtual system %u: 154 156 </source> … … 156 158 </message> 157 159 <message> 158 <location filename="../VBoxManageAppliance.cpp" line="6 01"/>160 <location filename="../VBoxManageAppliance.cpp" line="630"/> 159 161 <source>%2u: OS type specified with --ostype: "%ls" 160 162 </source> … … 162 164 </message> 163 165 <message> 164 <location filename="../VBoxManageAppliance.cpp" line="6 05"/>166 <location filename="../VBoxManageAppliance.cpp" line="634"/> 165 167 <source>%2u: Suggested OS type: "%ls" 166 168 (change with "--vsys %u --ostype <type>"; use "list ostypes" to list all possible values) … … 169 171 </message> 170 172 <message> 171 <location filename="../VBoxManageAppliance.cpp" line="6 15"/>173 <location filename="../VBoxManageAppliance.cpp" line="643"/> 172 174 <source>%2u: VM name specified with --vmname: "%ls" 173 175 </source> … … 175 177 </message> 176 178 <message> 177 <location filename="../VBoxManageAppliance.cpp" line="6 19"/>179 <location filename="../VBoxManageAppliance.cpp" line="647"/> 178 180 <source>%2u: Suggested VM name "%ls" 179 181 (change with "--vsys %u --vmname <name>") … … 182 184 </message> 183 185 <message> 184 <location filename="../VBoxManageAppliance.cpp" line="6 26"/>186 <location filename="../VBoxManageAppliance.cpp" line="653"/> 185 187 <source>%2u: Product (ignored): %ls 186 188 </source> … … 188 190 </message> 189 191 <message> 190 <location filename="../VBoxManageAppliance.cpp" line="6 31"/>192 <location filename="../VBoxManageAppliance.cpp" line="658"/> 191 193 <source>%2u: ProductUrl (ignored): %ls 192 194 </source> … … 194 196 </message> 195 197 <message> 196 <location filename="../VBoxManageAppliance.cpp" line="6 36"/>198 <location filename="../VBoxManageAppliance.cpp" line="663"/> 197 199 <source>%2u: Vendor (ignored): %ls 198 200 </source> … … 200 202 </message> 201 203 <message> 202 <location filename="../VBoxManageAppliance.cpp" line="6 41"/>204 <location filename="../VBoxManageAppliance.cpp" line="668"/> 203 205 <source>%2u: VendorUrl (ignored): %ls 204 206 </source> … … 206 208 </message> 207 209 <message> 208 <location filename="../VBoxManageAppliance.cpp" line="6 46"/>210 <location filename="../VBoxManageAppliance.cpp" line="673"/> 209 211 <source>%2u: Version (ignored): %ls 210 212 </source> … … 212 214 </message> 213 215 <message> 214 <location filename="../VBoxManageAppliance.cpp" line="6 54"/>216 <location filename="../VBoxManageAppliance.cpp" line="681"/> 215 217 <source>%2u: Description specified with --description: "%ls" 216 218 </source> … … 218 220 </message> 219 221 <message> 220 <location filename="../VBoxManageAppliance.cpp" line="6 58"/>222 <location filename="../VBoxManageAppliance.cpp" line="685"/> 221 223 <source>%2u: Description "%ls" 222 224 (change with "--vsys %u --description <desc>") … … 225 227 </message> 226 228 <message> 227 <location filename="../VBoxManageAppliance.cpp" line="6 70"/>229 <location filename="../VBoxManageAppliance.cpp" line="696"/> 228 230 <source>%2u: End-user license agreement 229 231 (accept with "--vsys %u --eula accept"): … … 235 237 </message> 236 238 <message> 237 <location filename="../VBoxManageAppliance.cpp" line=" 678"/>239 <location filename="../VBoxManageAppliance.cpp" line="703"/> 238 240 <source>%2u: End-user license agreement (accepted) 239 241 </source> … … 241 243 </message> 242 244 <message> 243 <location filename="../VBoxManageAppliance.cpp" line=" 684"/>245 <location filename="../VBoxManageAppliance.cpp" line="708"/> 244 246 <source>Argument to --eula must be either "show" or "accept".</source> 245 247 <translation type="unfinished"></translation> 246 248 </message> 247 249 <message> 248 <location filename="../VBoxManageAppliance.cpp" line=" 687"/>250 <location filename="../VBoxManageAppliance.cpp" line="711"/> 249 251 <source>%2u: End-user license agreement 250 252 (display with "--vsys %u --eula show"; … … 254 256 </message> 255 257 <message> 256 <location filename="../VBoxManageAppliance.cpp" line="7 04"/>258 <location filename="../VBoxManageAppliance.cpp" line="727"/> 257 259 <source>%2u: No. of CPUs specified with --cpus: %ls 258 260 </source> … … 260 262 </message> 261 263 <message> 262 <location filename="../VBoxManageAppliance.cpp" line="7 09"/>264 <location filename="../VBoxManageAppliance.cpp" line="731"/> 263 265 <source>Argument to --cpus option must be a number greater than %d and less than %d.</source> 264 266 <translation type="unfinished"></translation> 265 267 </message> 266 268 <message> 267 <location filename="../VBoxManageAppliance.cpp" line="7 13"/>269 <location filename="../VBoxManageAppliance.cpp" line="735"/> 268 270 <source>%2u: Number of CPUs: %ls 269 271 (change with "--vsys %u --cpus <n>") … … 272 274 </message> 273 275 <message> 274 <location filename="../VBoxManageAppliance.cpp" line="7 25"/>276 <location filename="../VBoxManageAppliance.cpp" line="747"/> 275 277 <source>%2u: Guest memory specified with --memory: %ls MB 276 278 </source> … … 278 280 </message> 279 281 <message> 280 <location filename="../VBoxManageAppliance.cpp" line="7 30"/>282 <location filename="../VBoxManageAppliance.cpp" line="751"/> 281 283 <source>Argument to --memory option must be a non-negative number.</source> 282 284 <translation type="unfinished"></translation> 283 285 </message> 284 286 <message> 285 <location filename="../VBoxManageAppliance.cpp" line="7 33"/>287 <location filename="../VBoxManageAppliance.cpp" line="754"/> 286 288 <source>%2u: Guest memory: %ls MB 287 289 (change with "--vsys %u --memory <MB>") … … 290 292 </message> 291 293 <message> 292 <location filename="../VBoxManageAppliance.cpp" line="7 41"/>294 <location filename="../VBoxManageAppliance.cpp" line="762"/> 293 295 <source>%2u: IDE controller, type %ls -- disabled 294 296 </source> … … 296 298 </message> 297 299 <message> 298 <location filename="../VBoxManageAppliance.cpp" line="7 47"/>300 <location filename="../VBoxManageAppliance.cpp" line="768"/> 299 301 <source>%2u: IDE controller, type %ls 300 302 (disable with "--vsys %u --unit %u --ignore") … … 303 305 </message> 304 306 <message> 305 <location filename="../VBoxManageAppliance.cpp" line="7 58"/>307 <location filename="../VBoxManageAppliance.cpp" line="778"/> 306 308 <source>%2u: SATA controller, type %ls -- disabled 307 309 </source> … … 309 311 </message> 310 312 <message> 311 <location filename="../VBoxManageAppliance.cpp" line="7 64"/>313 <location filename="../VBoxManageAppliance.cpp" line="784"/> 312 314 <source>%2u: SATA controller, type %ls 313 315 (disable with "--vsys %u --unit %u --ignore") … … 316 318 </message> 317 319 <message> 318 <location filename="../VBoxManageAppliance.cpp" line="7 75"/>320 <location filename="../VBoxManageAppliance.cpp" line="794"/> 319 321 <source>%2u: SAS controller, type %ls -- disabled 320 322 </source> … … 322 324 </message> 323 325 <message> 324 <location filename="../VBoxManageAppliance.cpp" line=" 781"/>326 <location filename="../VBoxManageAppliance.cpp" line="800"/> 325 327 <source>%2u: SAS controller, type %ls 326 328 (disable with "--vsys %u --unit %u --ignore") … … 329 331 </message> 330 332 <message> 331 <location filename="../VBoxManageAppliance.cpp" line=" 792"/>333 <location filename="../VBoxManageAppliance.cpp" line="810"/> 332 334 <source>%2u: SCSI controller, type %ls -- disabled 333 335 </source> … … 335 337 </message> 336 338 <message> 337 <location filename="../VBoxManageAppliance.cpp" line="8 03"/>339 <location filename="../VBoxManageAppliance.cpp" line="821"/> 338 340 <source>%2u: SCSI controller, type set with --unit %u --scsitype: "%ls" 339 341 </source> … … 341 343 </message> 342 344 <message> 343 <location filename="../VBoxManageAppliance.cpp" line="8 09"/>345 <location filename="../VBoxManageAppliance.cpp" line="827"/> 344 346 <source>%2u: SCSI controller, type %ls 345 347 (change with "--vsys %u --unit %u --scsitype {BusLogic|LsiLogic}"; … … 349 351 </message> 350 352 <message> 351 <location filename="../VBoxManageAppliance.cpp" line="8 22"/>353 <location filename="../VBoxManageAppliance.cpp" line="839"/> 352 354 <source>%2u: VirtioSCSI controller, type %ls -- disabled 353 355 </source> … … 355 357 </message> 356 358 <message> 357 <location filename="../VBoxManageAppliance.cpp" line="8 28"/>359 <location filename="../VBoxManageAppliance.cpp" line="845"/> 358 360 <source>%2u: VirtioSCSI controller, type %ls 359 361 (disable with "--vsys %u --unit %u --ignore") … … 362 364 </message> 363 365 <message> 364 <location filename="../VBoxManageAppliance.cpp" line="8 39"/>366 <location filename="../VBoxManageAppliance.cpp" line="855"/> 365 367 <source>%2u: Hard disk image: source image=%ls -- disabled 366 368 </source> … … 368 370 </message> 369 371 <message> 370 <location filename="../VBoxManageAppliance.cpp" line="875"/> 371 <source>Option --ImportToVDI shall not be used together with manually set target path.</source> 372 <translation type="unfinished"></translation> 373 </message> 374 <message> 375 <location filename="../VBoxManageAppliance.cpp" line="880"/> 372 <location filename="../VBoxManageAppliance.cpp" line="870"/> 373 <source>Option --ImportToVDI can not be used together with a manually set target path.</source> 374 <translation type="unfinished"></translation> 375 </message> 376 <message> 376 377 <location filename="../VBoxManageAppliance.cpp" line="898"/> 377 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls 378 </source> 379 <translation type="unfinished"></translation> 380 </message> 381 <message> 382 <location filename="../VBoxManageAppliance.cpp" line="984"/> 383 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls 378 <source>Invalid controller value: '%s'</source> 379 <translation type="unfinished"></translation> 380 </message> 381 <message> 382 <location filename="../VBoxManageAppliance.cpp" line="903"/> 383 <location filename="../VBoxManageAppliance.cpp" line="970"/> 384 <source>Invalid storage controller specified: %u</source> 385 <translation type="unfinished"></translation> 386 </message> 387 <message> 388 <location filename="../VBoxManageAppliance.cpp" line="916"/> 389 <source>Invalid port value: '%s'</source> 390 <translation type="unfinished"></translation> 391 </message> 392 <message> 393 <location filename="../VBoxManageAppliance.cpp" line="931"/> 394 <source>Failed to extract controller value from ExtraConfig: '%s'</source> 395 <translation type="unfinished"></translation> 396 </message> 397 <message> 398 <location filename="../VBoxManageAppliance.cpp" line="937"/> 399 <source>Failed to extract channel value from ExtraConfig: '%s'</source> 400 <translation type="unfinished"></translation> 401 </message> 402 <message> 403 <location filename="../VBoxManageAppliance.cpp" line="963"/> 404 <source>Device already attached to controller %u at this port (%u) location.</source> 405 <translation type="unfinished"></translation> 406 </message> 407 <message> 408 <location filename="../VBoxManageAppliance.cpp" line="1001"/> 409 <source>Illegal port value: %u. For %ls controllers the only valid values are 0 to %lu (inclusive)</source> 410 <translation type="unfinished"></translation> 411 </message> 412 <message> 413 <location filename="../VBoxManageAppliance.cpp" line="1023"/> 414 <source>%2u: Hard disk image specified with --disk: source image=%ls, target path=%ls, %s 415 (change controller with "--vsys %u --unit %u --controller <index>"; 416 change controller port with "--vsys %u --unit %u --port <n>") 417 </source> 418 <translation type="unfinished"></translation> 419 </message> 420 <message> 421 <location filename="../VBoxManageAppliance.cpp" line="1035"/> 422 <source>%2u: Hard disk image specified with --disk and --controller: source image=%ls, target path=%ls, %s 423 (change controller port with "--vsys %u --unit %u --port <n>") 424 </source> 425 <translation type="unfinished"></translation> 426 </message> 427 <message> 428 <location filename="../VBoxManageAppliance.cpp" line="1045"/> 429 <source>%2u: Hard disk image specified with --disk and --port: source image=%ls, target path=%ls, %s 430 (change controller with "--vsys %u --unit %u --controller <index>") 431 </source> 432 <translation type="unfinished"></translation> 433 </message> 434 <message> 435 <location filename="../VBoxManageAppliance.cpp" line="1055"/> 436 <source>%2u: Hard disk image specified with --controller and --port: source image=%ls, target path=%ls, %s 437 (change target path with "--vsys %u --unit %u --disk path") 438 </source> 439 <translation type="unfinished"></translation> 440 </message> 441 <message> 442 <location filename="../VBoxManageAppliance.cpp" line="1065"/> 443 <source>%2u: Hard disk image specified with --port: source image=%ls, target path=%ls, %s 384 444 (change target path with "--vsys %u --unit %u --disk path"; 445 change controller with "--vsys %u --unit %u --controller <index>") 446 </source> 447 <translation type="unfinished"></translation> 448 </message> 449 <message> 450 <location filename="../VBoxManageAppliance.cpp" line="1077"/> 451 <source>%2u: Hard disk image specified with --controller: source image=%ls, target path=%ls, %s 452 (change target path with "--vsys %u --unit %u --disk path"; 453 change controller port with "--vsys %u --unit %u --port <n>") 454 </source> 455 <translation type="unfinished"></translation> 456 </message> 457 <message> 458 <location filename="../VBoxManageAppliance.cpp" line="1089"/> 459 <source>%2u: Hard disk image specified with --disk and --controller and --port: source image=%ls, target path=%ls, %s 460 </source> 461 <translation type="unfinished"></translation> 462 </message> 463 <message> 464 <location filename="../VBoxManageAppliance.cpp" line="1174"/> 465 <source>%2u: Hard disk image: source image=%ls, target path=%ls, %s 466 (change target path with "--vsys %u --unit %u --disk path"; 467 change controller with "--vsys %u --unit %u --controller <index>"; 468 change controller port with "--vsys %u --unit %u --port <n>"; 385 469 disable with "--vsys %u --unit %u --ignore") 386 470 </source> … … 388 472 </message> 389 473 <message> 390 <location filename="../VBoxManageAppliance.cpp" line="1 000"/>474 <location filename="../VBoxManageAppliance.cpp" line="1191"/> 391 475 <source>%2u: CD-ROM -- disabled 392 476 </source> … … 394 478 </message> 395 479 <message> 396 <location filename="../VBoxManageAppliance.cpp" line="1 005"/>480 <location filename="../VBoxManageAppliance.cpp" line="1196"/> 397 481 <source>%2u: CD-ROM 398 482 (disable with "--vsys %u --unit %u --ignore") … … 401 485 </message> 402 486 <message> 403 <location filename="../VBoxManageAppliance.cpp" line="1 014"/>487 <location filename="../VBoxManageAppliance.cpp" line="1204"/> 404 488 <source>%2u: Floppy -- disabled 405 489 </source> … … 407 491 </message> 408 492 <message> 409 <location filename="../VBoxManageAppliance.cpp" line="1 019"/>493 <location filename="../VBoxManageAppliance.cpp" line="1209"/> 410 494 <source>%2u: Floppy 411 495 (disable with "--vsys %u --unit %u --ignore") … … 414 498 </message> 415 499 <message> 416 <location filename="../VBoxManageAppliance.cpp" line="1 026"/>500 <location filename="../VBoxManageAppliance.cpp" line="1215"/> 417 501 <source>%2u: Network adapter: orig %ls, config %ls, extra %ls 418 502 </source> … … 420 504 </message> 421 505 <message> 422 <location filename="../VBoxManageAppliance.cpp" line="1 036"/>506 <location filename="../VBoxManageAppliance.cpp" line="1225"/> 423 507 <source>%2u: USB controller -- disabled 424 508 </source> … … 426 510 </message> 427 511 <message> 428 <location filename="../VBoxManageAppliance.cpp" line="1 041"/>512 <location filename="../VBoxManageAppliance.cpp" line="1230"/> 429 513 <source>%2u: USB controller 430 514 (disable with "--vsys %u --unit %u --ignore") … … 433 517 </message> 434 518 <message> 435 <location filename="../VBoxManageAppliance.cpp" line="1 050"/>519 <location filename="../VBoxManageAppliance.cpp" line="1238"/> 436 520 <source>%2u: Sound card "%ls" -- disabled 437 521 </source> … … 439 523 </message> 440 524 <message> 441 <location filename="../VBoxManageAppliance.cpp" line="1 056"/>525 <location filename="../VBoxManageAppliance.cpp" line="1244"/> 442 526 <source>%2u: Sound card (appliance expects "%ls", can change on import) 443 527 (disable with "--vsys %u --unit %u --ignore") … … 446 530 </message> 447 531 <message> 448 <location filename="../VBoxManageAppliance.cpp" line="1 069"/>532 <location filename="../VBoxManageAppliance.cpp" line="1256"/> 449 533 <source>%2u: VM settings file name specified with --settingsfile: "%ls" 450 534 </source> … … 452 536 </message> 453 537 <message> 454 <location filename="../VBoxManageAppliance.cpp" line="1 073"/>538 <location filename="../VBoxManageAppliance.cpp" line="1260"/> 455 539 <source>%2u: Suggested VM settings file name "%ls" 456 540 (change with "--vsys %u --settingsfile <filename>") … … 459 543 </message> 460 544 <message> 461 <location filename="../VBoxManageAppliance.cpp" line="1 083"/>545 <location filename="../VBoxManageAppliance.cpp" line="1269"/> 462 546 <source>%2u: VM base folder specified with --basefolder: "%ls" 463 547 </source> … … 465 549 </message> 466 550 <message> 467 <location filename="../VBoxManageAppliance.cpp" line="1 087"/>551 <location filename="../VBoxManageAppliance.cpp" line="1273"/> 468 552 <source>%2u: Suggested VM base folder "%ls" 469 553 (change with "--vsys %u --basefolder <path>") … … 472 556 </message> 473 557 <message> 474 <location filename="../VBoxManageAppliance.cpp" line="1 097"/>558 <location filename="../VBoxManageAppliance.cpp" line="1282"/> 475 559 <source>%2u: VM group specified with --group: "%ls" 476 560 </source> … … 478 562 </message> 479 563 <message> 480 <location filename="../VBoxManageAppliance.cpp" line="1 101"/>564 <location filename="../VBoxManageAppliance.cpp" line="1286"/> 481 565 <source>%2u: Suggested VM group "%ls" 482 566 (change with "--vsys %u --group <group>") … … 485 569 </message> 486 570 <message> 487 <location filename="../VBoxManageAppliance.cpp" line="1 108"/>571 <location filename="../VBoxManageAppliance.cpp" line="1292"/> 488 572 <source>%2u: Suggested cloud shape "%ls" 489 573 </source> … … 491 575 </message> 492 576 <message> 493 <location filename="../VBoxManageAppliance.cpp" line="1 116"/>577 <location filename="../VBoxManageAppliance.cpp" line="1300"/> 494 578 <source>%2u: Cloud bucket id specified with --cloudbucket: "%ls" 495 579 </source> … … 497 581 </message> 498 582 <message> 499 <location filename="../VBoxManageAppliance.cpp" line="1 120"/>583 <location filename="../VBoxManageAppliance.cpp" line="1304"/> 500 584 <source>%2u: Suggested cloud bucket id "%ls" 501 585 (change with "--cloud %u --cloudbucket <id>") … … 504 588 </message> 505 589 <message> 506 <location filename="../VBoxManageAppliance.cpp" line="1 130"/>590 <location filename="../VBoxManageAppliance.cpp" line="1313"/> 507 591 <source>%2u: Cloud profile name specified with --cloudprofile: "%ls" 508 592 </source> … … 510 594 </message> 511 595 <message> 512 <location filename="../VBoxManageAppliance.cpp" line="1 134"/>596 <location filename="../VBoxManageAppliance.cpp" line="1317"/> 513 597 <source>%2u: Suggested cloud profile name "%ls" 514 598 (change with "--cloud %u --cloudprofile <id>") … … 517 601 </message> 518 602 <message> 519 <location filename="../VBoxManageAppliance.cpp" line="1 144"/>603 <location filename="../VBoxManageAppliance.cpp" line="1326"/> 520 604 <source>%2u: Cloud instance id specified with --cloudinstanceid: "%ls" 521 605 </source> … … 523 607 </message> 524 608 <message> 525 <location filename="../VBoxManageAppliance.cpp" line="1 148"/>609 <location filename="../VBoxManageAppliance.cpp" line="1330"/> 526 610 <source>%2u: Suggested cloud instance id "%ls" 527 611 (change with "--cloud %u --cloudinstanceid <id>") … … 530 614 </message> 531 615 <message> 532 <location filename="../VBoxManageAppliance.cpp" line="1 155"/>616 <location filename="../VBoxManageAppliance.cpp" line="1336"/> 533 617 <source>%2u: Suggested cloud base image id "%ls" 534 618 </source> … … 536 620 </message> 537 621 <message> 538 <location filename="../VBoxManageAppliance.cpp" line="1 201"/>622 <location filename="../VBoxManageAppliance.cpp" line="1384"/> 539 623 <source>Cannot import until the license agreement listed above is accepted.</source> 540 624 <translation type="unfinished"></translation> 541 625 </message> 542 626 <message> 543 <location filename="../VBoxManageAppliance.cpp" line="1 203"/>627 <location filename="../VBoxManageAppliance.cpp" line="1386"/> 544 628 <source>Cannot import until the %c license agreements listed above are accepted.</source> 545 629 <translation type="unfinished"></translation> 546 630 </message> 547 631 <message> 548 <location filename="../VBoxManageAppliance.cpp" line="1 214"/>632 <location filename="../VBoxManageAppliance.cpp" line="1397"/> 549 633 <source>Appliance import failed</source> 550 634 <translation type="unfinished"></translation> 551 635 </message> 552 636 <message> 553 <location filename="../VBoxManageAppliance.cpp" line="1 217"/>637 <location filename="../VBoxManageAppliance.cpp" line="1400"/> 554 638 <source>Successfully imported the appliance. 555 639 </source> … … 557 641 </message> 558 642 <message> 559 <location filename="../VBoxManageAppliance.cpp" line="1 334"/>643 <location filename="../VBoxManageAppliance.cpp" line="1517"/> 560 644 <source>You can only specify --output once.</source> 561 645 <translation type="unfinished"></translation> 562 646 </message> 563 647 <message> 564 <location filename="../VBoxManageAppliance.cpp" line="1 453"/>648 <location filename="../VBoxManageAppliance.cpp" line="1625"/> 565 649 <source>Invalid export options '%s' 566 650 </source> … … 568 652 </message> 569 653 <message> 570 <location filename="../VBoxManageAppliance.cpp" line="1 594"/>654 <location filename="../VBoxManageAppliance.cpp" line="1751"/> 571 655 <source>unhandled option: -%c</source> 572 656 <translation type="unfinished"></translation> 573 657 </message> 574 658 <message> 575 <location filename="../VBoxManageAppliance.cpp" line="1 596"/>659 <location filename="../VBoxManageAppliance.cpp" line="1753"/> 576 660 <source>unhandled option: %i</source> 577 661 <translation type="unfinished"></translation> 578 662 </message> 579 663 <message> 580 <location filename="../VBoxManageAppliance.cpp" line="1 599"/>664 <location filename="../VBoxManageAppliance.cpp" line="1756"/> 581 665 <source>unknown option: %s</source> 582 666 <translation type="unfinished"></translation> 583 667 </message> 584 668 <message> 585 <location filename="../VBoxManageAppliance.cpp" line="1 615"/>669 <location filename="../VBoxManageAppliance.cpp" line="1771"/> 586 670 <source>At least one machine must be specified with the export command.</source> 587 671 <translation type="unfinished"></translation> 588 672 </message> 589 673 <message> 590 <location filename="../VBoxManageAppliance.cpp" line="1 619"/>674 <location filename="../VBoxManageAppliance.cpp" line="1775"/> 591 675 <source>Missing --output argument with export command.</source> 592 676 <translation type="unfinished"></translation> 593 677 </message> 594 678 <message numerus="yes"> 595 <location filename="../VBoxManageAppliance.cpp" line="1 634"/>679 <location filename="../VBoxManageAppliance.cpp" line="1789"/> 596 680 <source>Invalid index %RI32 with -vsys option; you specified only %zu virtual system(s).</source> 597 681 <translation type="unfinished"> … … 600 684 </message> 601 685 <message> 602 <location filename="../VBoxManageAppliance.cpp" line="1 723"/>686 <location filename="../VBoxManageAppliance.cpp" line="1878"/> 603 687 <source>Cannot read license file "%s" which should be included in the virtual system %u.</source> 604 688 <translation type="unfinished"></translation> 605 689 </message> 606 690 <message> 607 <location filename="../VBoxManageAppliance.cpp" line="1 786"/>691 <location filename="../VBoxManageAppliance.cpp" line="1941"/> 608 692 <source>Enter the passwords for the following identifiers to export the apppliance: 609 693 </source> … … 611 695 </message> 612 696 <message> 613 <location filename="../VBoxManageAppliance.cpp" line="1 793"/>697 <location filename="../VBoxManageAppliance.cpp" line="1948"/> 614 698 <source>Password ID %s:</source> 615 699 <translation type="unfinished"></translation> 616 700 </message> 617 701 <message> 618 <location filename="../VBoxManageAppliance.cpp" line="1 823"/>702 <location filename="../VBoxManageAppliance.cpp" line="1978"/> 619 703 <source>Appliance write failed</source> 620 704 <translation type="unfinished"></translation> 621 705 </message> 622 706 <message numerus="yes"> 623 <location filename="../VBoxManageAppliance.cpp" line="1 826"/>707 <location filename="../VBoxManageAppliance.cpp" line="1981"/> 624 708 <source>Successfully exported %d machine(s). 625 709 </source> … … 629 713 </message> 630 714 <message> 631 <location filename="../VBoxManageAppliance.cpp" line=" 1882"/>715 <location filename="../VBoxManageAppliance.cpp" line="2037"/> 632 716 <source>Creating a cloud instance... 633 717 </source> … … 635 719 </message> 636 720 <message> 637 <location filename="../VBoxManageAppliance.cpp" line=" 1887"/>721 <location filename="../VBoxManageAppliance.cpp" line="2042"/> 638 722 <source>Creating the cloud instance failed</source> 639 723 <translation type="unfinished"></translation> 640 724 </message> 641 725 <message> 642 <location filename="../VBoxManageAppliance.cpp" line=" 1899"/>726 <location filename="../VBoxManageAppliance.cpp" line="2054"/> 643 727 <source>A cloud instance with id '%s' (provider '%s') was created 644 728 </source> … … 646 730 </message> 647 731 <message> 648 <location filename="../VBoxManageAppliance.cpp" line=" 1952"/>732 <location filename="../VBoxManageAppliance.cpp" line="2107"/> 649 733 <source>Failed to open OVA '%s' for updating: %Rrc</source> 650 734 <translation type="unfinished"></translation> 651 735 </message> 652 736 <message> 653 <location filename="../VBoxManageAppliance.cpp" line=" 1958"/>737 <location filename="../VBoxManageAppliance.cpp" line="2113"/> 654 738 <source>Failed to open OVA '%s' as a TAR file: %Rrc</source> 655 739 <translation type="unfinished"></translation> 656 740 </message> 657 741 <message> 658 <location filename="../VBoxManageAppliance.cpp" line=" 1965"/>742 <location filename="../VBoxManageAppliance.cpp" line="2120"/> 659 743 <source>Scanning OVA '%s' for a manifest and signature...</source> 660 744 <translation type="unfinished"></translation> 661 745 </message> 662 746 <message> 663 <location filename="../VBoxManageAppliance.cpp" line=" 1981"/>747 <location filename="../VBoxManageAppliance.cpp" line="2136"/> 664 748 <source>RTVfsFsStrmNext returned %Rrc</source> 665 749 <translation type="unfinished"></translation> 666 750 </message> 667 751 <message> 668 <location filename="../VBoxManageAppliance.cpp" line=" 1997"/>752 <location filename="../VBoxManageAppliance.cpp" line="2152"/> 669 753 <source>OVA contains multiple manifests! first: %s second: %s</source> 670 754 <translation type="unfinished"></translation> 671 755 </message> 672 756 <message> 673 <location filename="../VBoxManageAppliance.cpp" line="2 001"/>674 <location filename="../VBoxManageAppliance.cpp" line="2 039"/>757 <location filename="../VBoxManageAppliance.cpp" line="2156"/> 758 <location filename="../VBoxManageAppliance.cpp" line="2194"/> 675 759 <source>Unsupported OVA file ordering! Signature file ('%s') as succeeded by '%s'.</source> 676 760 <translation type="unfinished"></translation> 677 761 </message> 678 762 <message> 679 <location filename="../VBoxManageAppliance.cpp" line="2 006"/>763 <location filename="../VBoxManageAppliance.cpp" line="2161"/> 680 764 <source>Found manifest file: %s</source> 681 765 <translation type="unfinished"></translation> 682 766 </message> 683 767 <message> 684 <location filename="../VBoxManageAppliance.cpp" line="2 015"/>768 <location filename="../VBoxManageAppliance.cpp" line="2170"/> 685 769 <source>Failed to memorize the manifest: %Rrc</source> 686 770 <translation type="unfinished"></translation> 687 771 </message> 688 772 <message> 689 <location filename="../VBoxManageAppliance.cpp" line="2018"/> 690 <location filename="../VBoxManageAppliance.cpp" line="2259"/> 773 <location filename="../VBoxManageAppliance.cpp" line="2173"/> 774 <location filename="../VBoxManageAppliance.cpp" line="2414"/> 775 <location filename="../VBoxManageAppliance.cpp" line="2488"/> 776 <location filename="../VBoxManageAppliance.cpp" line="2647"/> 777 <source>Out of memory!</source> 778 <translation type="unfinished"></translation> 779 </message> 780 <message> 781 <location filename="../VBoxManageAppliance.cpp" line="2181"/> 782 <source>Multiple signature files! (%s)</source> 783 <translation type="unfinished"></translation> 784 </message> 785 <message> 786 <location filename="../VBoxManageAppliance.cpp" line="2185"/> 787 <source>Found existing signature file: %s</source> 788 <translation type="unfinished"></translation> 789 </message> 790 <message> 791 <location filename="../VBoxManageAppliance.cpp" line="2210"/> 792 <source>The OVA contains no manifest and cannot be signed!</source> 793 <translation type="unfinished"></translation> 794 </message> 795 <message> 796 <location filename="../VBoxManageAppliance.cpp" line="2213"/> 797 <source>The OVA is already signed ('%s')! (Use the --force option to force re-signing it.)</source> 798 <translation type="unfinished"></translation> 799 </message> 800 <message> 801 <location filename="../VBoxManageAppliance.cpp" line="2233"/> 802 <source>Writing '%s' to the OVA...</source> 803 <translation type="unfinished"></translation> 804 </message> 805 <message> 806 <location filename="../VBoxManageAppliance.cpp" line="2243"/> 807 <source>RTZipTarFsStreamTruncate failed on '%s': %Rrc</source> 808 <translation type="unfinished"></translation> 809 </message> 810 <message> 811 <location filename="../VBoxManageAppliance.cpp" line="2252"/> 812 <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source> 813 <translation type="unfinished"></translation> 814 </message> 815 <message> 816 <location filename="../VBoxManageAppliance.cpp" line="2258"/> 817 <source>RTVfsFsStrmAdd('%s') failed on '%s': %Rrc</source> 818 <translation type="unfinished"></translation> 819 </message> 820 <message> 821 <location filename="../VBoxManageAppliance.cpp" line="2265"/> 822 <source>RTVfsFsStrmEnd failed on '%s': %Rrc</source> 823 <translation type="unfinished"></translation> 824 </message> 825 <message> 826 <location filename="../VBoxManageAppliance.cpp" line="2301"/> 827 <source> Successfully decoded the PKCS#7/CMS signature...</source> 828 <translation type="unfinished"></translation> 829 </message> 830 <message> 831 <location filename="../VBoxManageAppliance.cpp" line="2317"/> 832 <source> Successfully verified the PKCS#7/CMS signature</source> 833 <translation type="unfinished"></translation> 834 </message> 835 <message> 836 <location filename="../VBoxManageAppliance.cpp" line="2320"/> 837 <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source> 838 <translation type="unfinished"></translation> 839 </message> 840 <message> 841 <location filename="../VBoxManageAppliance.cpp" line="2324"/> 842 <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source> 843 <translation type="unfinished"></translation> 844 </message> 845 <message> 846 <location filename="../VBoxManageAppliance.cpp" line="2329"/> 847 <source>PKCS#7/CMS signature inner ContentType isn't 'data' but: %s</source> 848 <translation type="unfinished"></translation> 849 </message> 850 <message> 691 851 <location filename="../VBoxManageAppliance.cpp" line="2333"/> 692 <location filename="../VBoxManageAppliance.cpp" line="2493"/>693 <source>Out of memory!</source>694 <translation type="unfinished"></translation>695 </message>696 <message>697 <location filename="../VBoxManageAppliance.cpp" line="2026"/>698 <source>Multiple signature files! (%s)</source>699 <translation type="unfinished"></translation>700 </message>701 <message>702 <location filename="../VBoxManageAppliance.cpp" line="2030"/>703 <source>Found existing signature file: %s</source>704 <translation type="unfinished"></translation>705 </message>706 <message>707 <location filename="../VBoxManageAppliance.cpp" line="2055"/>708 <source>The OVA contains no manifest and cannot be signed!</source>709 <translation type="unfinished"></translation>710 </message>711 <message>712 <location filename="../VBoxManageAppliance.cpp" line="2058"/>713 <source>The OVA is already signed ('%s')! (Use the --force option to force re-signing it.)</source>714 <translation type="unfinished"></translation>715 </message>716 <message>717 <location filename="../VBoxManageAppliance.cpp" line="2078"/>718 <source>Writing '%s' to the OVA...</source>719 <translation type="unfinished"></translation>720 </message>721 <message>722 <location filename="../VBoxManageAppliance.cpp" line="2088"/>723 <source>RTZipTarFsStreamTruncate failed on '%s': %Rrc</source>724 <translation type="unfinished"></translation>725 </message>726 <message>727 <location filename="../VBoxManageAppliance.cpp" line="2097"/>728 <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source>729 <translation type="unfinished"></translation>730 </message>731 <message>732 <location filename="../VBoxManageAppliance.cpp" line="2103"/>733 <source>RTVfsFsStrmAdd('%s') failed on '%s': %Rrc</source>734 <translation type="unfinished"></translation>735 </message>736 <message>737 <location filename="../VBoxManageAppliance.cpp" line="2110"/>738 <source>RTVfsFsStrmEnd failed on '%s': %Rrc</source>739 <translation type="unfinished"></translation>740 </message>741 <message>742 <location filename="../VBoxManageAppliance.cpp" line="2146"/>743 <source> Successfully decoded the PKCS#7/CMS signature...</source>744 <translation type="unfinished"></translation>745 </message>746 <message>747 <location filename="../VBoxManageAppliance.cpp" line="2162"/>748 <source> Successfully verified the PKCS#7/CMS signature</source>749 <translation type="unfinished"></translation>750 </message>751 <message>752 <location filename="../VBoxManageAppliance.cpp" line="2165"/>753 <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source>754 <translation type="unfinished"></translation>755 </message>756 <message>757 <location filename="../VBoxManageAppliance.cpp" line="2169"/>758 <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source>759 <translation type="unfinished"></translation>760 </message>761 <message>762 <location filename="../VBoxManageAppliance.cpp" line="2174"/>763 <source>PKCS#7/CMS signature inner ContentType isn't 'data' but: %s</source>764 <translation type="unfinished"></translation>765 </message>766 <message>767 <location filename="../VBoxManageAppliance.cpp" line="2178"/>768 852 <source>PKCS#7/CMD signature is not 'signedData': %s</source> 769 853 <translation type="unfinished"></translation> 770 854 </message> 771 855 <message> 772 <location filename="../VBoxManageAppliance.cpp" line="2 219"/>856 <location filename="../VBoxManageAppliance.cpp" line="2374"/> 773 857 <source>RTCrPkcs7ContentInfo_Clone failed: %Rrc</source> 774 858 <translation type="unfinished"></translation> 775 859 </message> 776 860 <message> 777 <location filename="../VBoxManageAppliance.cpp" line="2 223"/>861 <location filename="../VBoxManageAppliance.cpp" line="2378"/> 778 862 <source>RTCrPkcs7ContentInfo_DecodeAsn1 failed to decode PKCS#7/CMS signature: %Rrc%RTemi</source> 779 863 <translation type="unfinished"></translation> 780 864 </message> 781 865 <message numerus="yes"> 782 <location filename="../VBoxManageAppliance.cpp" line="2 254"/>866 <location filename="../VBoxManageAppliance.cpp" line="2409"/> 783 867 <source>Manifest is too big: %#RX64 bytes, max 4MiB</source> 784 868 <translation type="unfinished"> … … 787 871 </message> 788 872 <message> 789 <location filename="../VBoxManageAppliance.cpp" line="2 279"/>873 <location filename="../VBoxManageAppliance.cpp" line="2434"/> 790 874 <source>RTCrStoreCertAddFromFile failed on '%s': %Rrc%#RTeim</source> 791 875 <translation type="unfinished"></translation> 792 876 </message> 793 877 <message> 794 <location filename="../VBoxManageAppliance.cpp" line="2 285"/>878 <location filename="../VBoxManageAppliance.cpp" line="2440"/> 795 879 <source>RTCrStoreCreateInMem failed: %Rrc</source> 796 880 <translation type="unfinished"></translation> 797 881 </message> 798 882 <message numerus="yes"> 799 <location filename="../VBoxManageAppliance.cpp" line="2 316"/>883 <location filename="../VBoxManageAppliance.cpp" line="2471"/> 800 884 <source>Created PKCS#7/CMS signature: %zu bytes, %s.</source> 801 885 <translation type="unfinished"> … … 804 888 </message> 805 889 <message> 806 <location filename="../VBoxManageAppliance.cpp" line="2 319"/>890 <location filename="../VBoxManageAppliance.cpp" line="2474"/> 807 891 <source>Using SHA-1 instead of SHA-3 for the PKCS#7/CMS signature.</source> 808 892 <translation type="unfinished"></translation> 809 893 </message> 810 894 <message> 811 <location filename="../VBoxManageAppliance.cpp" line="2 328"/>895 <location filename="../VBoxManageAppliance.cpp" line="2483"/> 812 896 <source>RTCrPemWriteBlobToVfsFile failed: %Rrc</source> 813 897 <translation type="unfinished"></translation> 814 898 </message> 815 899 <message> 816 <location filename="../VBoxManageAppliance.cpp" line="2 336"/>900 <location filename="../VBoxManageAppliance.cpp" line="2491"/> 817 901 <source>RTCrPkcs7SimpleSignSignedData failed: %Rrc%#RTeim</source> 818 902 <translation type="unfinished"></translation> 819 903 </message> 820 904 <message> 821 <location filename="../VBoxManageAppliance.cpp" line="2 340"/>905 <location filename="../VBoxManageAppliance.cpp" line="2495"/> 822 906 <source>RTVfsFileReadAt failed: %Rrc</source> 823 907 <translation type="unfinished"></translation> 824 908 </message> 825 909 <message> 826 <location filename="../VBoxManageAppliance.cpp" line="2 393"/>910 <location filename="../VBoxManageAppliance.cpp" line="2548"/> 827 911 <source>Unsupported digest type: %s</source> 828 912 <translation type="unfinished"></translation> 829 913 </message> 830 914 <message> 831 <location filename="../VBoxManageAppliance.cpp" line="2 402"/>915 <location filename="../VBoxManageAppliance.cpp" line="2557"/> 832 916 <source>Failed to create digest for %s: %Rrc</source> 833 917 <translation type="unfinished"></translation> 834 918 </message> 835 919 <message numerus="yes"> 836 <location filename="../VBoxManageAppliance.cpp" line="2 428"/>920 <location filename="../VBoxManageAppliance.cpp" line="2583"/> 837 921 <source>Created OVA signature: %zu bytes, %s</source> 838 922 <translation type="unfinished"> … … 841 925 </message> 842 926 <message> 843 <location filename="../VBoxManageAppliance.cpp" line="2 441"/>927 <location filename="../VBoxManageAppliance.cpp" line="2596"/> 844 928 <source> Successfully decoded and verified the OVA signature. 845 929 </source> … … 847 931 </message> 848 932 <message> 849 <location filename="../VBoxManageAppliance.cpp" line="2 472"/>933 <location filename="../VBoxManageAppliance.cpp" line="2627"/> 850 934 <source>Failed to write certificate to signature file: %Rrc%#RTeim</source> 851 935 <translation type="unfinished"></translation> 852 936 </message> 853 937 <message> 854 <location filename="../VBoxManageAppliance.cpp" line="2 476"/>938 <location filename="../VBoxManageAppliance.cpp" line="2631"/> 855 939 <source>Failed to produce signature file: %Rrc</source> 856 940 <translation type="unfinished"></translation> 857 941 </message> 858 942 <message> 859 <location filename="../VBoxManageAppliance.cpp" line="2 480"/>943 <location filename="../VBoxManageAppliance.cpp" line="2635"/> 860 944 <source>RTVfsMemFileCreate failed: %Rrc</source> 861 945 <translation type="unfinished"></translation> 862 946 </message> 863 947 <message> 864 <location filename="../VBoxManageAppliance.cpp" line="2 483"/>948 <location filename="../VBoxManageAppliance.cpp" line="2638"/> 865 949 <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim 866 Pl ase make sure the certificate and private key matches.</source>867 <translation type="unfinished"></translation> 868 </message> 869 <message> 870 <location filename="../VBoxManageAppliance.cpp" line="2 489"/>950 Please make sure the certificate and private key matches.</source> 951 <translation type="unfinished"></translation> 952 </message> 953 <message> 954 <location filename="../VBoxManageAppliance.cpp" line="2643"/> 871 955 <source>2nd RTCrPkixPubKeySignDigest call failed: %Rrc%#RTeim</source> 872 956 <translation type="unfinished"></translation> 873 957 </message> 874 958 <message> 875 <location filename="../VBoxManageAppliance.cpp" line="2 496"/>959 <location filename="../VBoxManageAppliance.cpp" line="2650"/> 876 960 <source>RTCrPkixPubKeySignDigest failed: %Rrc%#RTeim</source> 877 961 <translation type="unfinished"></translation> 878 962 </message> 879 963 <message> 880 <location filename="../VBoxManageAppliance.cpp" line="2 499"/>964 <location filename="../VBoxManageAppliance.cpp" line="2653"/> 881 965 <source>Failed to create digest %s: %Rrc</source> 882 966 <translation type="unfinished"></translation> 883 967 </message> 884 968 <message> 885 <location filename="../VBoxManageAppliance.cpp" line="2 563"/>886 <location filename="../VBoxManageAppliance.cpp" line="2 570"/>969 <location filename="../VBoxManageAppliance.cpp" line="2717"/> 970 <location filename="../VBoxManageAppliance.cpp" line="2724"/> 887 971 <source>Password is given more than once.</source> 888 972 <translation type="unfinished"></translation> 889 973 </message> 890 974 <message> 891 <location filename="../VBoxManageAppliance.cpp" line="2 588"/>975 <location filename="../VBoxManageAppliance.cpp" line="2742"/> 892 976 <source>Unknown digest type: %s</source> 893 977 <translation type="unfinished"></translation> 894 978 </message> 895 979 <message> 896 <location filename="../VBoxManageAppliance.cpp" line="2 601"/>980 <location filename="../VBoxManageAppliance.cpp" line="2755"/> 897 981 <source>Too many intermediate certificates: max %zu</source> 898 982 <translation type="unfinished"></translation> 899 983 </message> 900 984 <message> 901 <location filename="../VBoxManageAppliance.cpp" line="2 637"/>985 <location filename="../VBoxManageAppliance.cpp" line="2791"/> 902 986 <source>No OVA file was specified!</source> 903 987 <translation type="unfinished"></translation> 904 988 </message> 905 989 <message> 906 <location filename="../VBoxManageAppliance.cpp" line="2 639"/>990 <location filename="../VBoxManageAppliance.cpp" line="2793"/> 907 991 <source>No signing certificate (--certificate=<file>) was specified!</source> 908 992 <translation type="unfinished"></translation> 909 993 </message> 910 994 <message> 911 <location filename="../VBoxManageAppliance.cpp" line="2 641"/>995 <location filename="../VBoxManageAppliance.cpp" line="2795"/> 912 996 <source>No signing private key (--private-key=<file>) was specified!</source> 913 997 <translation type="unfinished"></translation> 914 998 </message> 915 999 <message> 916 <location filename="../VBoxManageAppliance.cpp" line="2 645"/>1000 <location filename="../VBoxManageAppliance.cpp" line="2799"/> 917 1001 <source>The specified OVA file was not found: %s</source> 918 1002 <translation type="unfinished"></translation> 919 1003 </message> 920 1004 <message> 921 <location filename="../VBoxManageAppliance.cpp" line="2 647"/>1005 <location filename="../VBoxManageAppliance.cpp" line="2801"/> 922 1006 <source>The specified certificate file was not found: %s</source> 923 1007 <translation type="unfinished"></translation> 924 1008 </message> 925 1009 <message> 926 <location filename="../VBoxManageAppliance.cpp" line="2 649"/>1010 <location filename="../VBoxManageAppliance.cpp" line="2803"/> 927 1011 <source>The specified private key file was not found: %s</source> 928 1012 <translation type="unfinished"></translation> 929 1013 </message> 930 1014 <message> 931 <location filename="../VBoxManageAppliance.cpp" line="2 670"/>1015 <location filename="../VBoxManageAppliance.cpp" line="2824"/> 932 1016 <source>Error reading certificate from '%s': %Rrc%#RTeim</source> 933 1017 <translation type="unfinished"></translation> 934 1018 </message> 935 1019 <message> 936 <location filename="../VBoxManageAppliance.cpp" line="2 679"/>1020 <location filename="../VBoxManageAppliance.cpp" line="2833"/> 937 1021 <source>Successfully read the certificate and private key.</source> 938 1022 <translation type="unfinished"></translation> 939 1023 </message> 940 1024 <message> 941 <location filename="../VBoxManageAppliance.cpp" line="2 705"/>1025 <location filename="../VBoxManageAppliance.cpp" line="2859"/> 942 1026 <source>Successfully signed '%s'.</source> 943 1027 <translation type="unfinished"></translation> 944 1028 </message> 945 1029 <message> 946 <location filename="../VBoxManageAppliance.cpp" line="2 711"/>1030 <location filename="../VBoxManageAppliance.cpp" line="2865"/> 947 1031 <source>Error reading the private key from %s: %Rrc%#RTeim</source> 948 1032 <translation type="unfinished"></translation> … … 952 1036 <name>BWControl</name> 953 1037 <message> 954 <location filename="../VBoxManageBandwidthControl.cpp" line="6 7"/>955 <location filename="../VBoxManageBandwidthControl.cpp" line=" 90"/>1038 <location filename="../VBoxManageBandwidthControl.cpp" line="65"/> 1039 <location filename="../VBoxManageBandwidthControl.cpp" line="88"/> 956 1040 <source>Limit is too big 957 1041 </source> … … 959 1043 </message> 960 1044 <message> 961 <location filename="../VBoxManageBandwidthControl.cpp" line="7 7"/>1045 <location filename="../VBoxManageBandwidthControl.cpp" line="75"/> 962 1046 <source>Invalid unit suffix. Valid suffixes are: k, m, g, K, M, G 963 1047 </source> … … 965 1049 </message> 966 1050 <message> 1051 <location filename="../VBoxManageBandwidthControl.cpp" line="79"/> 1052 <source>Trailing spaces in limit! 1053 </source> 1054 <translation type="unfinished"></translation> 1055 </message> 1056 <message> 967 1057 <location filename="../VBoxManageBandwidthControl.cpp" line="81"/> 968 <source> Trailing spaces in limit!1058 <source>No digits in limit specifier 969 1059 </source> 970 1060 <translation type="unfinished"></translation> … … 972 1062 <message> 973 1063 <location filename="../VBoxManageBandwidthControl.cpp" line="83"/> 974 <source>No digits in limit specifier975 </source>976 <translation type="unfinished"></translation>977 </message>978 <message>979 <location filename="../VBoxManageBandwidthControl.cpp" line="85"/>980 1064 <source>Invalid limit specifier 981 1065 </source> … … 983 1067 </message> 984 1068 <message> 985 <location filename="../VBoxManageBandwidthControl.cpp" line="8 8"/>1069 <location filename="../VBoxManageBandwidthControl.cpp" line="86"/> 986 1070 <source>Limit cannot be negative 987 1071 </source> … … 989 1073 </message> 990 1074 <message> 991 <location filename="../VBoxManageBandwidthControl.cpp" line="11 5"/>1075 <location filename="../VBoxManageBandwidthControl.cpp" line="114"/> 992 1076 <source>Bandwidth group name must not be empty! 993 1077 </source> … … 995 1079 </message> 996 1080 <message> 997 <location filename="../VBoxManageBandwidthControl.cpp" line="17 5"/>1081 <location filename="../VBoxManageBandwidthControl.cpp" line="174"/> 998 1082 <source>Invalid bandwidth group type 999 1083 </source> … … 1001 1085 </message> 1002 1086 <message> 1003 <location filename="../VBoxManageBandwidthControl.cpp" line="31 5"/>1087 <location filename="../VBoxManageBandwidthControl.cpp" line="318"/> 1004 1088 <source>Too few parameters</source> 1005 1089 <translation type="unfinished"></translation> 1006 1090 </message> 1007 1091 <message> 1008 <location filename="../VBoxManageBandwidthControl.cpp" line="3 17"/>1092 <location filename="../VBoxManageBandwidthControl.cpp" line="320"/> 1009 1093 <source>Too many parameters</source> 1010 1094 <translation type="unfinished"></translation> 1011 1095 </message> 1012 1096 <message> 1013 <location filename="../VBoxManageBandwidthControl.cpp" line="3 38"/>1097 <location filename="../VBoxManageBandwidthControl.cpp" line="341"/> 1014 1098 <source>Bandwidth groups cannot be created while the VM is running 1015 1099 </source> … … 1017 1101 </message> 1018 1102 <message> 1019 <location filename="../VBoxManageBandwidthControl.cpp" line="3 47"/>1103 <location filename="../VBoxManageBandwidthControl.cpp" line="350"/> 1020 1104 <source>Bandwidth groups cannot be deleted while the VM is running 1021 1105 </source> … … 1023 1107 </message> 1024 1108 <message> 1025 <location filename="../VBoxManageBandwidthControl.cpp" line="3 58"/>1109 <location filename="../VBoxManageBandwidthControl.cpp" line="361"/> 1026 1110 <source>Invalid parameter '%s'</source> 1027 1111 <translation type="unfinished"></translation> … … 1046 1130 </message> 1047 1131 <message> 1048 <location filename="../VBoxManageCloud.cpp" line="21 1"/>1049 <location filename="../VBoxManageCloud.cpp" line="37 3"/>1132 <location filename="../VBoxManageCloud.cpp" line="210"/> 1133 <location filename="../VBoxManageCloud.cpp" line="371"/> 1050 1134 <source>Parameter 'compartment' is empty or absent. 1051 1135 Trying to get the compartment from the passed cloud profile '%s' … … 1054 1138 </message> 1055 1139 <message> 1056 <location filename="../VBoxManageCloud.cpp" line="220"/> 1140 <location filename="../VBoxManageCloud.cpp" line="219"/> 1141 <location filename="../VBoxManageCloud.cpp" line="380"/> 1142 <source>Found the compartment '%s': 1143 </source> 1144 <translation type="unfinished"></translation> 1145 </message> 1146 <message> 1147 <location filename="../VBoxManageCloud.cpp" line="221"/> 1057 1148 <location filename="../VBoxManageCloud.cpp" line="382"/> 1058 <source>Found the compartment '%s':1059 </source>1060 <translation type="unfinished"></translation>1061 </message>1062 <message>1063 <location filename="../VBoxManageCloud.cpp" line="222"/>1064 <location filename="../VBoxManageCloud.cpp" line="384"/>1065 1149 <source>Parameter --compartment-id is required</source> 1066 1150 <translation type="unfinished"></translation> 1067 1151 </message> 1068 1152 <message> 1069 <location filename="../VBoxManageCloud.cpp" line="23 9"/>1153 <location filename="../VBoxManageCloud.cpp" line="238"/> 1070 1154 <source>Reply is in the form 'instance name' = 'instance id' 1071 1155 </source> … … 1073 1157 </message> 1074 1158 <message> 1075 <location filename="../VBoxManageCloud.cpp" line="24 8"/>1159 <location filename="../VBoxManageCloud.cpp" line="247"/> 1076 1160 <source>Failed to list instances</source> 1077 1161 <translation type="unfinished"></translation> 1078 1162 </message> 1079 1163 <message> 1080 <location filename="../VBoxManageCloud.cpp" line="25 7"/>1164 <location filename="../VBoxManageCloud.cpp" line="256"/> 1081 1165 <source>The list of the instances for the cloud profile '%ls' 1082 1166 and compartment '%s': … … 1085 1169 </message> 1086 1170 <message> 1087 <location filename="../VBoxManageCloud.cpp" line="32 5"/>1171 <location filename="../VBoxManageCloud.cpp" line="324"/> 1088 1172 <source>Unknown cloud image state "%s"</source> 1089 1173 <translation type="unfinished"></translation> 1090 1174 </message> 1091 1175 <message> 1092 <location filename="../VBoxManageCloud.cpp" line=" 401"/>1176 <location filename="../VBoxManageCloud.cpp" line="399"/> 1093 1177 <source>Reply is in the form 'image name' = 'image id' 1094 1178 </source> … … 1096 1180 </message> 1097 1181 <message> 1098 <location filename="../VBoxManageCloud.cpp" line="40 9"/>1182 <location filename="../VBoxManageCloud.cpp" line="407"/> 1099 1183 <source>Failed to list images</source> 1100 1184 <translation type="unfinished"></translation> 1101 1185 </message> 1102 1186 <message> 1103 <location filename="../VBoxManageCloud.cpp" line="41 8"/>1187 <location filename="../VBoxManageCloud.cpp" line="416"/> 1104 1188 <source>The list of the images for the cloud profile '%ls' 1105 1189 and compartment '%s': … … 1108 1192 </message> 1109 1193 <message> 1110 <location filename="../VBoxManageCloud.cpp" line="47 5"/>1111 <location filename="../VBoxManageCloud.cpp" line="5 46"/>1112 <location filename="../VBoxManageCloud.cpp" line="7 29"/>1113 <location filename="../VBoxManageCloud.cpp" line="8 81"/>1114 <location filename="../VBoxManageCloud.cpp" line="9 64"/>1115 <location filename="../VBoxManageCloud.cpp" line="10 47"/>1116 <location filename="../VBoxManageCloud.cpp" line="11 45"/>1117 <location filename="../VBoxManageCloud.cpp" line="12 22"/>1118 <location filename="../VBoxManageCloud.cpp" line="13 29"/>1119 <location filename="../VBoxManageCloud.cpp" line="15 25"/>1120 <location filename="../VBoxManageCloud.cpp" line="16 11"/>1121 <location filename="../VBoxManageCloud.cpp" line="17 03"/>1122 <location filename="../VBoxManageCloud.cpp" line="1 799"/>1194 <location filename="../VBoxManageCloud.cpp" line="473"/> 1195 <location filename="../VBoxManageCloud.cpp" line="553"/> 1196 <location filename="../VBoxManageCloud.cpp" line="747"/> 1197 <location filename="../VBoxManageCloud.cpp" line="898"/> 1198 <location filename="../VBoxManageCloud.cpp" line="980"/> 1199 <location filename="../VBoxManageCloud.cpp" line="1062"/> 1200 <location filename="../VBoxManageCloud.cpp" line="1159"/> 1201 <location filename="../VBoxManageCloud.cpp" line="1236"/> 1202 <location filename="../VBoxManageCloud.cpp" line="1342"/> 1203 <location filename="../VBoxManageCloud.cpp" line="1537"/> 1204 <location filename="../VBoxManageCloud.cpp" line="1622"/> 1205 <location filename="../VBoxManageCloud.cpp" line="1713"/> 1206 <location filename="../VBoxManageCloud.cpp" line="1808"/> 1123 1207 <source>Empty command parameter list, show help. 1124 1208 </source> … … 1126 1210 </message> 1127 1211 <message> 1128 <location filename="../VBoxManageCloud.cpp" line="6 45"/>1212 <location filename="../VBoxManageCloud.cpp" line="663"/> 1129 1213 <source>Warning!!! Public SSH key doesn't present in the passed arguments... 1130 1214 </source> … … 1132 1216 </message> 1133 1217 <message> 1134 <location filename="../VBoxManageCloud.cpp" line="6 48"/>1218 <location filename="../VBoxManageCloud.cpp" line="666"/> 1135 1219 <source>Parameters --image-id and --boot-volume-id are mutually exclusive. Only one of them must be presented.</source> 1136 1220 <translation type="unfinished"></translation> 1137 1221 </message> 1138 1222 <message> 1139 <location filename="../VBoxManageCloud.cpp" line="6 52"/>1223 <location filename="../VBoxManageCloud.cpp" line="670"/> 1140 1224 <source>Missing parameter --image-id or --boot-volume-id. One of them must be presented.</source> 1141 1225 <translation type="unfinished"></translation> 1142 1226 </message> 1143 1227 <message> 1144 <location filename="../VBoxManageCloud.cpp" line="6 74"/>1228 <location filename="../VBoxManageCloud.cpp" line="692"/> 1145 1229 <source>Checking the cloud image with id '%s'... 1146 1230 </source> … … 1148 1232 </message> 1149 1233 <message> 1150 <location filename="../VBoxManageCloud.cpp" line=" 682"/>1234 <location filename="../VBoxManageCloud.cpp" line="700"/> 1151 1235 <source>Checking the cloud image failed</source> 1152 1236 <translation type="unfinished"></translation> 1153 1237 </message> 1154 1238 <message> 1155 <location filename="../VBoxManageCloud.cpp" line=" 688"/>1239 <location filename="../VBoxManageCloud.cpp" line="706"/> 1156 1240 <source>Creating cloud instance with name '%s' from the image '%s'... 1157 1241 </source> … … 1159 1243 </message> 1160 1244 <message> 1161 <location filename="../VBoxManageCloud.cpp" line=" 691"/>1245 <location filename="../VBoxManageCloud.cpp" line="709"/> 1162 1246 <source>Creating cloud instance with name '%s' from the boot volume '%s'... 1163 1247 </source> … … 1165 1249 </message> 1166 1250 <message> 1167 <location filename="../VBoxManageCloud.cpp" line=" 697"/>1251 <location filename="../VBoxManageCloud.cpp" line="715"/> 1168 1252 <source>Creating cloud instance failed</source> 1169 1253 <translation type="unfinished"></translation> 1170 1254 </message> 1171 1255 <message> 1172 <location filename="../VBoxManageCloud.cpp" line="7 00"/>1256 <location filename="../VBoxManageCloud.cpp" line="718"/> 1173 1257 <source>Cloud instance was created successfully 1174 1258 </source> … … 1176 1260 </message> 1177 1261 <message> 1178 <location filename="../VBoxManageCloud.cpp" line="7 44"/>1179 <location filename="../VBoxManageCloud.cpp" line=" 896"/>1180 <location filename="../VBoxManageCloud.cpp" line="9 79"/>1181 <location filename="../VBoxManageCloud.cpp" line="10 62"/>1182 <location filename="../VBoxManageCloud.cpp" line="13 73"/>1183 <location filename="../VBoxManageCloud.cpp" line="17 18"/>1262 <location filename="../VBoxManageCloud.cpp" line="762"/> 1263 <location filename="../VBoxManageCloud.cpp" line="913"/> 1264 <location filename="../VBoxManageCloud.cpp" line="995"/> 1265 <location filename="../VBoxManageCloud.cpp" line="1077"/> 1266 <location filename="../VBoxManageCloud.cpp" line="1386"/> 1267 <location filename="../VBoxManageCloud.cpp" line="1728"/> 1184 1268 <source>Duplicate parameter: --id</source> 1185 1269 <translation type="unfinished"></translation> 1186 1270 </message> 1187 1271 <message> 1188 <location filename="../VBoxManageCloud.cpp" line="7 48"/>1189 <location filename="../VBoxManageCloud.cpp" line="9 00"/>1190 <location filename="../VBoxManageCloud.cpp" line="9 83"/>1191 <location filename="../VBoxManageCloud.cpp" line="10 66"/>1192 <location filename="../VBoxManageCloud.cpp" line="13 77"/>1193 <location filename="../VBoxManageCloud.cpp" line="17 22"/>1272 <location filename="../VBoxManageCloud.cpp" line="766"/> 1273 <location filename="../VBoxManageCloud.cpp" line="917"/> 1274 <location filename="../VBoxManageCloud.cpp" line="999"/> 1275 <location filename="../VBoxManageCloud.cpp" line="1081"/> 1276 <location filename="../VBoxManageCloud.cpp" line="1390"/> 1277 <location filename="../VBoxManageCloud.cpp" line="1732"/> 1194 1278 <source>Empty parameter: --id</source> 1195 1279 <translation type="unfinished"></translation> 1196 1280 </message> 1197 1281 <message> 1198 <location filename="../VBoxManageCloud.cpp" line="7 70"/>1199 <location filename="../VBoxManageCloud.cpp" line="9 22"/>1200 <location filename="../VBoxManageCloud.cpp" line="10 05"/>1201 <location filename="../VBoxManageCloud.cpp" line="1 088"/>1202 <location filename="../VBoxManageCloud.cpp" line="14 27"/>1203 <location filename="../VBoxManageCloud.cpp" line="17 45"/>1282 <location filename="../VBoxManageCloud.cpp" line="787"/> 1283 <location filename="../VBoxManageCloud.cpp" line="938"/> 1284 <location filename="../VBoxManageCloud.cpp" line="1020"/> 1285 <location filename="../VBoxManageCloud.cpp" line="1102"/> 1286 <location filename="../VBoxManageCloud.cpp" line="1439"/> 1287 <location filename="../VBoxManageCloud.cpp" line="1754"/> 1204 1288 <source>Missing parameter: --id</source> 1205 1289 <translation type="unfinished"></translation> 1206 1290 </message> 1207 1291 <message> 1208 <location filename="../VBoxManageCloud.cpp" line="7 78"/>1292 <location filename="../VBoxManageCloud.cpp" line="795"/> 1209 1293 <source>Getting information about cloud instance with id %s... 1210 1294 </source> … … 1212 1296 </message> 1213 1297 <message> 1214 <location filename="../VBoxManageCloud.cpp" line="7 79"/>1298 <location filename="../VBoxManageCloud.cpp" line="796"/> 1215 1299 <source>Reply is in the form 'setting name' = 'value' 1216 1300 </source> … … 1218 1302 </message> 1219 1303 <message> 1220 <location filename="../VBoxManageCloud.cpp" line="8 00"/>1304 <location filename="../VBoxManageCloud.cpp" line="817"/> 1221 1305 <source>Getting information about cloud instance failed</source> 1222 1306 <translation type="unfinished"></translation> 1223 1307 </message> 1224 1308 <message> 1225 <location filename="../VBoxManageCloud.cpp" line="8 02"/>1309 <location filename="../VBoxManageCloud.cpp" line="819"/> 1226 1310 <source>Cloud instance info (provider '%s'): 1227 1311 </source> … … 1229 1313 </message> 1230 1314 <message> 1231 <location filename="../VBoxManageCloud.cpp" line="8 13"/>1315 <location filename="../VBoxManageCloud.cpp" line="830"/> 1232 1316 <source>Availability domain = %ls 1233 1317 </source> … … 1235 1319 </message> 1236 1320 <message> 1237 <location filename="../VBoxManageCloud.cpp" line="8 13"/>1321 <location filename="../VBoxManageCloud.cpp" line="830"/> 1238 1322 <source>Availability domain wasn't found 1239 1323 </source> … … 1241 1325 </message> 1242 1326 <message> 1243 <location filename="../VBoxManageCloud.cpp" line="8 14"/>1327 <location filename="../VBoxManageCloud.cpp" line="831"/> 1244 1328 <source>Instance displayed name = %ls 1245 1329 </source> … … 1247 1331 </message> 1248 1332 <message> 1249 <location filename="../VBoxManageCloud.cpp" line="8 14"/>1333 <location filename="../VBoxManageCloud.cpp" line="831"/> 1250 1334 <source>Instance displayed name wasn't found 1251 1335 </source> … … 1253 1337 </message> 1254 1338 <message> 1255 <location filename="../VBoxManageCloud.cpp" line="8 15"/>1339 <location filename="../VBoxManageCloud.cpp" line="832"/> 1256 1340 <source>Instance state = %ls 1257 1341 </source> … … 1259 1343 </message> 1260 1344 <message> 1261 <location filename="../VBoxManageCloud.cpp" line="8 15"/>1345 <location filename="../VBoxManageCloud.cpp" line="832"/> 1262 1346 <source>Instance state wasn't found 1263 1347 </source> … … 1265 1349 </message> 1266 1350 <message> 1267 <location filename="../VBoxManageCloud.cpp" line="8 16"/>1351 <location filename="../VBoxManageCloud.cpp" line="833"/> 1268 1352 <source>Instance Id = %ls 1269 1353 </source> … … 1271 1355 </message> 1272 1356 <message> 1273 <location filename="../VBoxManageCloud.cpp" line="8 16"/>1357 <location filename="../VBoxManageCloud.cpp" line="833"/> 1274 1358 <source>Instance Id wasn't found 1275 1359 </source> … … 1277 1361 </message> 1278 1362 <message> 1279 <location filename="../VBoxManageCloud.cpp" line="8 17"/>1363 <location filename="../VBoxManageCloud.cpp" line="834"/> 1280 1364 <source>Instance name = %ls 1281 1365 </source> … … 1283 1367 </message> 1284 1368 <message> 1285 <location filename="../VBoxManageCloud.cpp" line="8 17"/>1369 <location filename="../VBoxManageCloud.cpp" line="834"/> 1286 1370 <source>Instance name wasn't found 1287 1371 </source> … … 1289 1373 </message> 1290 1374 <message> 1291 <location filename="../VBoxManageCloud.cpp" line="8 18"/>1375 <location filename="../VBoxManageCloud.cpp" line="835"/> 1292 1376 <source>Bootable image Id = %ls 1293 1377 </source> … … 1295 1379 </message> 1296 1380 <message> 1297 <location filename="../VBoxManageCloud.cpp" line="8 19"/>1381 <location filename="../VBoxManageCloud.cpp" line="836"/> 1298 1382 <source>Image Id whom the instance is booted up wasn't found 1299 1383 </source> … … 1301 1385 </message> 1302 1386 <message> 1303 <location filename="../VBoxManageCloud.cpp" line="8 20"/>1387 <location filename="../VBoxManageCloud.cpp" line="837"/> 1304 1388 <source>Shape of the instance = %ls 1305 1389 </source> … … 1307 1391 </message> 1308 1392 <message> 1309 <location filename="../VBoxManageCloud.cpp" line="8 21"/>1393 <location filename="../VBoxManageCloud.cpp" line="838"/> 1310 1394 <source>The shape of the instance wasn't found 1311 1395 </source> … … 1313 1397 </message> 1314 1398 <message> 1315 <location filename="../VBoxManageCloud.cpp" line="8 22"/>1399 <location filename="../VBoxManageCloud.cpp" line="839"/> 1316 1400 <source>Type of guest OS = %ls 1317 1401 </source> … … 1319 1403 </message> 1320 1404 <message> 1321 <location filename="../VBoxManageCloud.cpp" line="8 22"/>1405 <location filename="../VBoxManageCloud.cpp" line="839"/> 1322 1406 <source>Type of guest OS wasn't found 1323 1407 </source> … … 1325 1409 </message> 1326 1410 <message> 1327 <location filename="../VBoxManageCloud.cpp" line="8 23"/>1411 <location filename="../VBoxManageCloud.cpp" line="840"/> 1328 1412 <source>RAM = %ls MB 1329 1413 </source> … … 1331 1415 </message> 1332 1416 <message> 1333 <location filename="../VBoxManageCloud.cpp" line="8 23"/>1417 <location filename="../VBoxManageCloud.cpp" line="840"/> 1334 1418 <source>Value for RAM wasn't found 1335 1419 </source> … … 1337 1421 </message> 1338 1422 <message> 1339 <location filename="../VBoxManageCloud.cpp" line="8 24"/>1423 <location filename="../VBoxManageCloud.cpp" line="841"/> 1340 1424 <source>CPUs = %ls 1341 1425 </source> … … 1343 1427 </message> 1344 1428 <message> 1345 <location filename="../VBoxManageCloud.cpp" line="8 24"/>1429 <location filename="../VBoxManageCloud.cpp" line="841"/> 1346 1430 <source>Numbers of CPUs weren't found 1347 1431 </source> … … 1349 1433 </message> 1350 1434 <message> 1351 <location filename="../VBoxManageCloud.cpp" line="8 25"/>1435 <location filename="../VBoxManageCloud.cpp" line="842"/> 1352 1436 <source>Instance public IP = %ls 1353 1437 </source> … … 1355 1439 </message> 1356 1440 <message> 1357 <location filename="../VBoxManageCloud.cpp" line="8 25"/>1441 <location filename="../VBoxManageCloud.cpp" line="842"/> 1358 1442 <source>Public IP wasn't found 1359 1443 </source> … … 1361 1445 </message> 1362 1446 <message> 1363 <location filename="../VBoxManageCloud.cpp" line="8 26"/>1447 <location filename="../VBoxManageCloud.cpp" line="843"/> 1364 1448 <source>Free-form tags or metadata weren't found 1365 1449 </source> … … 1367 1451 </message> 1368 1452 <message> 1369 <location filename="../VBoxManageCloud.cpp" line="8 27"/>1453 <location filename="../VBoxManageCloud.cpp" line="844"/> 1370 1454 <source>Cloud-init script wasn't found 1371 1455 </source> … … 1373 1457 </message> 1374 1458 <message> 1375 <location filename="../VBoxManageCloud.cpp" line="9 30"/>1459 <location filename="../VBoxManageCloud.cpp" line="946"/> 1376 1460 <source>Starting cloud instance with id %s... 1377 1461 </source> … … 1379 1463 </message> 1380 1464 <message> 1381 <location filename="../VBoxManageCloud.cpp" line="9 37"/>1465 <location filename="../VBoxManageCloud.cpp" line="953"/> 1382 1466 <source>Starting the cloud instance failed</source> 1383 1467 <translation type="unfinished"></translation> 1384 1468 </message> 1385 1469 <message> 1386 <location filename="../VBoxManageCloud.cpp" line="9 40"/>1470 <location filename="../VBoxManageCloud.cpp" line="956"/> 1387 1471 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was started 1388 1472 </source> … … 1390 1474 </message> 1391 1475 <message> 1392 <location filename="../VBoxManageCloud.cpp" line="10 13"/>1476 <location filename="../VBoxManageCloud.cpp" line="1028"/> 1393 1477 <source>Pausing cloud instance with id %s... 1394 1478 </source> … … 1396 1480 </message> 1397 1481 <message> 1398 <location filename="../VBoxManageCloud.cpp" line="10 20"/>1482 <location filename="../VBoxManageCloud.cpp" line="1035"/> 1399 1483 <source>Pause the cloud instance failed</source> 1400 1484 <translation type="unfinished"></translation> 1401 1485 </message> 1402 1486 <message> 1403 <location filename="../VBoxManageCloud.cpp" line="10 23"/>1487 <location filename="../VBoxManageCloud.cpp" line="1038"/> 1404 1488 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was paused 1405 1489 </source> … … 1407 1491 </message> 1408 1492 <message> 1409 <location filename="../VBoxManageCloud.cpp" line="1 097"/>1493 <location filename="../VBoxManageCloud.cpp" line="1111"/> 1410 1494 <source>Terminating cloud instance with id %s... 1411 1495 </source> … … 1413 1497 </message> 1414 1498 <message> 1415 <location filename="../VBoxManageCloud.cpp" line="11 04"/>1499 <location filename="../VBoxManageCloud.cpp" line="1118"/> 1416 1500 <source>Termination the cloud instance failed</source> 1417 1501 <translation type="unfinished"></translation> 1418 1502 </message> 1419 1503 <message> 1420 <location filename="../VBoxManageCloud.cpp" line="11 07"/>1504 <location filename="../VBoxManageCloud.cpp" line="1121"/> 1421 1505 <source>Cloud instance with id %s (provider = '%s', profile = '%s') was terminated 1422 1506 </source> … … 1424 1508 </message> 1425 1509 <message> 1426 <location filename="../VBoxManageCloud.cpp" line="12 80"/>1510 <location filename="../VBoxManageCloud.cpp" line="1293"/> 1427 1511 <source>Conflicting parameters: --instance-id and --object-name can't be used together. Choose one.</source> 1428 1512 <translation type="unfinished"></translation> 1429 1513 </message> 1430 1514 <message> 1431 <location filename="../VBoxManageCloud.cpp" line="1 289"/>1515 <location filename="../VBoxManageCloud.cpp" line="1302"/> 1432 1516 <source>Creating cloud image with name '%s' from the instance '%s'... 1433 1517 </source> … … 1435 1519 </message> 1436 1520 <message> 1437 <location filename="../VBoxManageCloud.cpp" line="1 292"/>1521 <location filename="../VBoxManageCloud.cpp" line="1305"/> 1438 1522 <source>Creating cloud image with name '%s' from the object '%s' in the bucket '%s'... 1439 1523 </source> … … 1441 1525 </message> 1442 1526 <message> 1443 <location filename="../VBoxManageCloud.cpp" line="13 00"/>1527 <location filename="../VBoxManageCloud.cpp" line="1313"/> 1444 1528 <source>Creating cloud image failed</source> 1445 1529 <translation type="unfinished"></translation> 1446 1530 </message> 1447 1531 <message> 1448 <location filename="../VBoxManageCloud.cpp" line="13 03"/>1532 <location filename="../VBoxManageCloud.cpp" line="1316"/> 1449 1533 <source>Cloud image was created successfully 1450 1534 </source> … … 1452 1536 </message> 1453 1537 <message> 1454 <location filename="../VBoxManageCloud.cpp" line="13 49"/>1538 <location filename="../VBoxManageCloud.cpp" line="1362"/> 1455 1539 <source>Duplicate parameter: --bucket-name</source> 1456 1540 <translation type="unfinished"></translation> 1457 1541 </message> 1458 1542 <message> 1459 <location filename="../VBoxManageCloud.cpp" line="13 53"/>1543 <location filename="../VBoxManageCloud.cpp" line="1366"/> 1460 1544 <source>Empty parameter: --bucket-name</source> 1461 1545 <translation type="unfinished"></translation> 1462 1546 </message> 1463 1547 <message> 1464 <location filename="../VBoxManageCloud.cpp" line="13 61"/>1548 <location filename="../VBoxManageCloud.cpp" line="1374"/> 1465 1549 <source>Duplicate parameter: --object-name</source> 1466 1550 <translation type="unfinished"></translation> 1467 1551 </message> 1468 1552 <message> 1469 <location filename="../VBoxManageCloud.cpp" line="13 65"/>1553 <location filename="../VBoxManageCloud.cpp" line="1378"/> 1470 1554 <source>Empty parameter: --object-name</source> 1471 1555 <translation type="unfinished"></translation> 1472 1556 </message> 1473 1557 <message> 1474 <location filename="../VBoxManageCloud.cpp" line="13 85"/>1558 <location filename="../VBoxManageCloud.cpp" line="1398"/> 1475 1559 <source>Duplicate parameter: --display-name</source> 1476 1560 <translation type="unfinished"></translation> 1477 1561 </message> 1478 1562 <message> 1479 <location filename="../VBoxManageCloud.cpp" line="1 389"/>1563 <location filename="../VBoxManageCloud.cpp" line="1402"/> 1480 1564 <source>Empty parameter: --display-name</source> 1481 1565 <translation type="unfinished"></translation> 1482 1566 </message> 1483 1567 <message> 1484 <location filename="../VBoxManageCloud.cpp" line="1 397"/>1568 <location filename="../VBoxManageCloud.cpp" line="1410"/> 1485 1569 <source>Duplicate parameter: --launch-mode</source> 1486 1570 <translation type="unfinished"></translation> 1487 1571 </message> 1488 1572 <message> 1489 <location filename="../VBoxManageCloud.cpp" line="14 01"/>1573 <location filename="../VBoxManageCloud.cpp" line="1414"/> 1490 1574 <source>Empty parameter: --launch-mode</source> 1491 1575 <translation type="unfinished"></translation> 1492 1576 </message> 1493 1577 <message> 1494 <location filename="../VBoxManageCloud.cpp" line="14 32"/>1578 <location filename="../VBoxManageCloud.cpp" line="1444"/> 1495 1579 <source>Missing parameter: --bucket-name</source> 1496 1580 <translation type="unfinished"></translation> 1497 1581 </message> 1498 1582 <message> 1499 <location filename="../VBoxManageCloud.cpp" line="14 52"/>1583 <location filename="../VBoxManageCloud.cpp" line="1464"/> 1500 1584 <source>Exporting image '%s' to the Cloud with name '%s'... 1501 1585 </source> … … 1503 1587 </message> 1504 1588 <message> 1505 <location filename="../VBoxManageCloud.cpp" line="14 55"/>1589 <location filename="../VBoxManageCloud.cpp" line="1467"/> 1506 1590 <source>Exporting image '%s' to the Cloud with default name 1507 1591 </source> … … 1509 1593 </message> 1510 1594 <message> 1511 <location filename="../VBoxManageCloud.cpp" line="14 83"/>1595 <location filename="../VBoxManageCloud.cpp" line="1495"/> 1512 1596 <source>Image %s was found 1513 1597 </source> … … 1515 1599 </message> 1516 1600 <message> 1517 <location filename="../VBoxManageCloud.cpp" line="1 490"/>1601 <location filename="../VBoxManageCloud.cpp" line="1502"/> 1518 1602 <source>Process of exporting the image to the Cloud was interrupted. The image wasn't found. 1519 1603 </source> … … 1521 1605 </message> 1522 1606 <message> 1523 <location filename="../VBoxManageCloud.cpp" line="1 499"/>1607 <location filename="../VBoxManageCloud.cpp" line="1511"/> 1524 1608 <source>Export the image to the Cloud failed</source> 1525 1609 <translation type="unfinished"></translation> 1526 1610 </message> 1527 1611 <message> 1528 <location filename="../VBoxManageCloud.cpp" line="15 02"/>1612 <location filename="../VBoxManageCloud.cpp" line="1514"/> 1529 1613 <source>Export the image to the Cloud was successfull 1530 1614 </source> … … 1532 1616 </message> 1533 1617 <message> 1534 <location filename="../VBoxManageCloud.cpp" line="15 76"/>1618 <location filename="../VBoxManageCloud.cpp" line="1587"/> 1535 1619 <source>Creating an object '%s' from the cloud image '%s'... 1536 1620 </source> … … 1538 1622 </message> 1539 1623 <message> 1540 <location filename="../VBoxManageCloud.cpp" line="15 83"/>1624 <location filename="../VBoxManageCloud.cpp" line="1594"/> 1541 1625 <source>Cloud image import failed</source> 1542 1626 <translation type="unfinished"></translation> 1543 1627 </message> 1544 1628 <message> 1545 <location filename="../VBoxManageCloud.cpp" line="15 87"/>1629 <location filename="../VBoxManageCloud.cpp" line="1598"/> 1546 1630 <source>Cloud image was imported successfully. Find the downloaded object with the name %s in the system temp folder (find the possible environment variables like TEMP, TMP and etc.) 1547 1631 </source> … … 1549 1633 </message> 1550 1634 <message> 1551 <location filename="../VBoxManageCloud.cpp" line="16 48"/>1635 <location filename="../VBoxManageCloud.cpp" line="1658"/> 1552 1636 <source>Getting information about the cloud image with id '%s'... 1553 1637 </source> … … 1555 1639 </message> 1556 1640 <message> 1557 <location filename="../VBoxManageCloud.cpp" line="16 54"/>1641 <location filename="../VBoxManageCloud.cpp" line="1664"/> 1558 1642 <source>Reply is in the form 'image property' = 'value' 1559 1643 </source> … … 1561 1645 </message> 1562 1646 <message> 1563 <location filename="../VBoxManageCloud.cpp" line="16 62"/>1647 <location filename="../VBoxManageCloud.cpp" line="1672"/> 1564 1648 <source>Getting information about the cloud image failed</source> 1565 1649 <translation type="unfinished"></translation> 1566 1650 </message> 1567 1651 <message> 1568 <location filename="../VBoxManageCloud.cpp" line="16 68"/>1652 <location filename="../VBoxManageCloud.cpp" line="1678"/> 1569 1653 <source>General information about the image: 1570 1654 </source> … … 1572 1656 </message> 1573 1657 <message> 1574 <location filename="../VBoxManageCloud.cpp" line="17 54"/>1658 <location filename="../VBoxManageCloud.cpp" line="1763"/> 1575 1659 <source>Deleting cloud image with id %s... 1576 1660 </source> … … 1578 1662 </message> 1579 1663 <message> 1580 <location filename="../VBoxManageCloud.cpp" line="17 61"/>1664 <location filename="../VBoxManageCloud.cpp" line="1770"/> 1581 1665 <source>Deleting cloud image failed</source> 1582 1666 <translation type="unfinished"></translation> 1583 1667 </message> 1584 1668 <message> 1585 <location filename="../VBoxManageCloud.cpp" line="17 64"/>1669 <location filename="../VBoxManageCloud.cpp" line="1773"/> 1586 1670 <source>Cloud image was deleted successfully 1587 1671 </source> … … 1589 1673 </message> 1590 1674 <message> 1591 <location filename="../VBoxManageCloud.cpp" line="19 47"/>1592 <location filename="../VBoxManageCloud.cpp" line=" 1998"/>1593 <location filename="../VBoxManageCloud.cpp" line="20 72"/>1594 <location filename="../VBoxManageCloud.cpp" line="21 19"/>1675 <location filename="../VBoxManageCloud.cpp" line="1956"/> 1676 <location filename="../VBoxManageCloud.cpp" line="2007"/> 1677 <location filename="../VBoxManageCloud.cpp" line="2081"/> 1678 <location filename="../VBoxManageCloud.cpp" line="2128"/> 1595 1679 <source>Missing --name parameter</source> 1596 1680 <translation type="unfinished"></translation> 1597 1681 </message> 1598 1682 <message> 1599 <location filename="../VBoxManageCloud.cpp" line="19 49"/>1683 <location filename="../VBoxManageCloud.cpp" line="1958"/> 1600 1684 <source>Missing --network-id parameter</source> 1601 1685 <translation type="unfinished"></translation> 1602 1686 </message> 1603 1687 <message> 1604 <location filename="../VBoxManageCloud.cpp" line="19 61"/>1688 <location filename="../VBoxManageCloud.cpp" line="1970"/> 1605 1689 <source>Cloud network was created successfully 1606 1690 </source> … … 1608 1692 </message> 1609 1693 <message> 1610 <location filename="../VBoxManageCloud.cpp" line="20 06"/>1694 <location filename="../VBoxManageCloud.cpp" line="2015"/> 1611 1695 <source>Name: %ls 1612 1696 </source> … … 1614 1698 </message> 1615 1699 <message> 1616 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1700 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1617 1701 <source>State: %s 1618 1702 </source> … … 1620 1704 </message> 1621 1705 <message> 1622 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1706 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1623 1707 <source>Enabled</source> 1624 1708 <translation type="unfinished"></translation> 1625 1709 </message> 1626 1710 <message> 1627 <location filename="../VBoxManageCloud.cpp" line="20 09"/>1711 <location filename="../VBoxManageCloud.cpp" line="2018"/> 1628 1712 <source>Disabled</source> 1629 1713 <translation type="unfinished"></translation> 1630 1714 </message> 1631 1715 <message> 1632 <location filename="../VBoxManageCloud.cpp" line="20 12"/>1716 <location filename="../VBoxManageCloud.cpp" line="2021"/> 1633 1717 <source>CloudProvider: %ls 1634 1718 </source> … … 1636 1720 </message> 1637 1721 <message> 1638 <location filename="../VBoxManageCloud.cpp" line="20 15"/>1722 <location filename="../VBoxManageCloud.cpp" line="2024"/> 1639 1723 <source>CloudProfile: %ls 1640 1724 </source> … … 1642 1726 </message> 1643 1727 <message> 1644 <location filename="../VBoxManageCloud.cpp" line="20 18"/>1728 <location filename="../VBoxManageCloud.cpp" line="2027"/> 1645 1729 <source>CloudNetworkId: %ls 1646 1730 </source> … … 1648 1732 </message> 1649 1733 <message> 1650 <location filename="../VBoxManageCloud.cpp" line="202 0"/>1734 <location filename="../VBoxManageCloud.cpp" line="2029"/> 1651 1735 <source>VBoxNetworkName: %ls 1652 1736 … … 1655 1739 </message> 1656 1740 <message> 1657 <location filename="../VBoxManageCloud.cpp" line="20 82"/>1741 <location filename="../VBoxManageCloud.cpp" line="2091"/> 1658 1742 <source>Cloud network %ls was updated successfully 1659 1743 </source> … … 1661 1745 </message> 1662 1746 <message> 1663 <location filename="../VBoxManageCloud.cpp" line="21 32"/>1747 <location filename="../VBoxManageCloud.cpp" line="2141"/> 1664 1748 <source>Cloud network %ls was deleted successfully 1665 1749 </source> … … 1667 1751 </message> 1668 1752 <message> 1669 <location filename="../VBoxManageCloud.cpp" line="2164"/> 1670 <source>Failed to compose path to the unattended installer script templates (%Rrc)</source> 1671 <translation type="unfinished"></translation> 1672 </message> 1673 <message> 1674 <location filename="../VBoxManageCloud.cpp" line="2289"/> 1675 <source>Failed to obtain system properties.</source> 1676 <translation type="unfinished"></translation> 1677 </message> 1678 <message> 1679 <location filename="../VBoxManageCloud.cpp" line="2296"/> 1680 <source>Failed to obtain proxy mode.</source> 1681 <translation type="unfinished"></translation> 1682 </message> 1683 <message> 1684 <location filename="../VBoxManageCloud.cpp" line="2305"/> 1685 <source>Failed to obtain proxy URL.</source> 1686 <translation type="unfinished"></translation> 1687 </message> 1688 <message> 1689 <location filename="../VBoxManageCloud.cpp" line="2311"/> 1690 <source>Failed to get system proxy for https://dl.fedoraproject.org. Will use direct connection.</source> 1691 <translation type="unfinished"></translation> 1692 </message> 1693 <message> 1694 <location filename="../VBoxManageCloud.cpp" line="2320"/> 1695 <source>Failed to obtain default machine folder.</source> 1696 <translation type="unfinished"></translation> 1697 </message> 1698 <message> 1699 <location filename="../VBoxManageCloud.cpp" line="2325"/> 1700 <source>Failed to obtain default guest additions ISO path.</source> 1701 <translation type="unfinished"></translation> 1702 </message> 1703 <message> 1704 <location filename="../VBoxManageCloud.cpp" line="2329"/> 1705 <source>The default guest additions ISO path is empty nor it is provided as --guest-additions-iso parameter. Cannot proceed without it.</source> 1706 <translation type="unfinished"></translation> 1707 </message> 1708 <message> 1709 <location filename="../VBoxManageCloud.cpp" line="2340"/> 1710 <source>Failed to compose a path to the local gateway image (%Rrc)</source> 1711 <translation type="unfinished"></translation> 1712 </message> 1713 <message> 1714 <location filename="../VBoxManageCloud.cpp" line="2348"/> 1715 <source>Local gateway image already exists, skipping image preparation step. 1716 </source> 1717 <translation type="unfinished"></translation> 1718 </message> 1719 <message> 1720 <location filename="../VBoxManageCloud.cpp" line="2352"/> 1721 <source>Preparing unattended install of temporary local gateway machine from %ls... 1722 </source> 1723 <translation type="unfinished"></translation> 1724 </message> 1725 <message> 1726 <location filename="../VBoxManageCloud.cpp" line="2356"/> 1727 <source>Failed to open %ls.</source> 1728 <translation type="unfinished"></translation> 1729 </message> 1730 <message> 1731 <location filename="../VBoxManageCloud.cpp" line="2363"/> 1732 <source>Failed to create '%ls'.</source> 1733 <translation type="unfinished"></translation> 1734 </message> 1735 <message> 1736 <location filename="../VBoxManageCloud.cpp" line="2367"/> 1737 <source>Failed to apply defaults to '%ls'.</source> 1738 <translation type="unfinished"></translation> 1739 </message> 1740 <message> 1741 <location filename="../VBoxManageCloud.cpp" line="2371"/> 1742 <source>Failed to adjust CPU count for '%ls'.</source> 1743 <translation type="unfinished"></translation> 1744 </message> 1745 <message> 1746 <location filename="../VBoxManageCloud.cpp" line="2375"/> 1747 <source>Failed to adjust memory size for '%ls'.</source> 1748 <translation type="unfinished"></translation> 1749 </message> 1750 <message> 1751 <location filename="../VBoxManageCloud.cpp" line="2381"/> 1752 <source>Failed to set attachment type for the second network adapter.</source> 1753 <translation type="unfinished"></translation> 1754 </message> 1755 <message> 1756 <location filename="../VBoxManageCloud.cpp" line="2385"/> 1757 <source>Failed to disable the audio adapter.</source> 1758 <translation type="unfinished"></translation> 1759 </message> 1760 <message> 1761 <location filename="../VBoxManageCloud.cpp" line="2390"/> 1762 <source>Failed to register '%ls'.</source> 1763 <translation type="unfinished"></translation> 1764 </message> 1765 <message> 1766 <location filename="../VBoxManageCloud.cpp" line="2394"/> 1767 <source>Failed to create %ls.</source> 1768 <translation type="unfinished"></translation> 1769 </message> 1770 <message> 1771 <location filename="../VBoxManageCloud.cpp" line="2405"/> 1772 <location filename="../VBoxManageCloud.cpp" line="2409"/> 1773 <source>Failed to create base storage for local gateway image.</source> 1774 <translation type="unfinished"></translation> 1775 </message> 1776 <message> 1777 <location filename="../VBoxManageCloud.cpp" line="2414"/> 1778 <location filename="../VBoxManageCloud.cpp" line="2588"/> 1779 <source>Failed to lock '%ls' for modifications.</source> 1780 <translation type="unfinished"></translation> 1781 </message> 1782 <message> 1783 <location filename="../VBoxManageCloud.cpp" line="2419"/> 1784 <location filename="../VBoxManageCloud.cpp" line="2593"/> 1785 <source>Failed to obtain a mutable machine.</source> 1786 <translation type="unfinished"></translation> 1787 </message> 1788 <message> 1789 <location filename="../VBoxManageCloud.cpp" line="2423"/> 1790 <source>Failed to attach HD to '%ls'.</source> 1791 <translation type="unfinished"></translation> 1792 </message> 1793 <message> 1794 <location filename="../VBoxManageCloud.cpp" line="2427"/> 1795 <source>Failed to attach ISO to '%ls'.</source> 1796 <translation type="unfinished"></translation> 1797 </message> 1798 <message> 1799 <location filename="../VBoxManageCloud.cpp" line="2432"/> 1800 <location filename="../VBoxManageCloud.cpp" line="2605"/> 1801 <source>Failed to save '%ls' settings.</source> 1802 <translation type="unfinished"></translation> 1803 </message> 1804 <message> 1805 <location filename="../VBoxManageCloud.cpp" line="2439"/> 1806 <source>Failed to create unattended installer.</source> 1807 <translation type="unfinished"></translation> 1808 </message> 1809 <message> 1810 <location filename="../VBoxManageCloud.cpp" line="2443"/> 1811 <location filename="../VBoxManageCloud.cpp" line="2447"/> 1812 <source>Failed to set machine for the unattended installer.</source> 1813 <translation type="unfinished"></translation> 1814 </message> 1815 <message> 1816 <location filename="../VBoxManageCloud.cpp" line="2451"/> 1817 <source>Failed to set user for the unattended installer.</source> 1818 <translation type="unfinished"></translation> 1819 </message> 1820 <message> 1821 <location filename="../VBoxManageCloud.cpp" line="2455"/> 1822 <source>Failed to set password for the unattended installer.</source> 1823 <translation type="unfinished"></translation> 1824 </message> 1825 <message> 1826 <location filename="../VBoxManageCloud.cpp" line="2459"/> 1827 <source>Failed to set full user name for the unattended installer.</source> 1828 <translation type="unfinished"></translation> 1829 </message> 1830 <message> 1831 <location filename="../VBoxManageCloud.cpp" line="2463"/> 1832 <source>Failed to enable guest addtions for the unattended installer.</source> 1833 <translation type="unfinished"></translation> 1834 </message> 1835 <message> 1836 <location filename="../VBoxManageCloud.cpp" line="2467"/> 1837 <source>Failed to set guest addtions ISO path for the unattended installer.</source> 1838 <translation type="unfinished"></translation> 1839 </message> 1840 <message> 1841 <location filename="../VBoxManageCloud.cpp" line="2471"/> 1842 <source>Failed to set script template for the unattended installer.</source> 1843 <translation type="unfinished"></translation> 1844 </message> 1845 <message> 1846 <location filename="../VBoxManageCloud.cpp" line="2475"/> 1847 <location filename="../VBoxManageCloud.cpp" line="2481"/> 1848 <source>Failed to set post install script template for the unattended installer.</source> 1849 <translation type="unfinished"></translation> 1850 </message> 1851 <message> 1852 <location filename="../VBoxManageCloud.cpp" line="2486"/> 1853 <source>Failed to prepare unattended installation.</source> 1854 <translation type="unfinished"></translation> 1855 </message> 1856 <message> 1857 <location filename="../VBoxManageCloud.cpp" line="2490"/> 1858 <source>Failed to construct media for unattended installation.</source> 1859 <translation type="unfinished"></translation> 1860 </message> 1861 <message> 1862 <location filename="../VBoxManageCloud.cpp" line="2494"/> 1863 <source>Failed to reconfigure %ls for unattended installation.</source> 1864 <translation type="unfinished"></translation> 1865 </message> 1866 <message> 1867 <location filename="../VBoxManageCloud.cpp" line="2503"/> 1868 <location filename="../VBoxManageCloud.cpp" line="2511"/> 1869 <source> %32s = failed: %Rhrc 1870 </source> 1871 <translation type="unfinished"></translation> 1872 </message> 1873 <message> 1874 <location filename="../VBoxManageCloud.cpp" line="2548"/> 1875 <source>Performing unattended install of temporary local gateway... 1876 </source> 1877 <translation type="unfinished"></translation> 1878 </message> 1879 <message> 1880 <location filename="../VBoxManageCloud.cpp" line="2551"/> 1881 <location filename="../VBoxManageCloud.cpp" line="2555"/> 1882 <source>Failed to launch '%ls'.</source> 1883 <translation type="unfinished"></translation> 1884 </message> 1885 <message> 1886 <location filename="../VBoxManageCloud.cpp" line="2566"/> 1887 <source>Failed to get machine state.</source> 1888 <translation type="unfinished"></translation> 1889 </message> 1890 <message> 1891 <location filename="../VBoxManageCloud.cpp" line="2571"/> 1892 <source>Temporary local gateway VM has aborted.</source> 1893 <translation type="unfinished"></translation> 1894 </message> 1895 <message> 1896 <location filename="../VBoxManageCloud.cpp" line="2579"/> 1897 <source>Timed out (40min) while waiting for unattended install to finish.</source> 1898 <translation type="unfinished"></translation> 1899 </message> 1900 <message> 1901 <location filename="../VBoxManageCloud.cpp" line="2585"/> 1902 <source><byte value="xd"/>Done. 1903 </source> 1904 <translation type="unfinished"></translation> 1905 </message> 1906 <message> 1907 <location filename="../VBoxManageCloud.cpp" line="2591"/> 1908 <source>Detaching local gateway image... 1909 </source> 1910 <translation type="unfinished"></translation> 1911 </message> 1912 <message> 1913 <location filename="../VBoxManageCloud.cpp" line="2597"/> 1914 <source>Failed to detach HD to '%ls'.</source> 1915 <translation type="unfinished"></translation> 1916 </message> 1917 <message> 1918 <location filename="../VBoxManageCloud.cpp" line="2611"/> 1919 <source>Unregistering temporary local gateway machine... 1920 </source> 1921 <translation type="unfinished"></translation> 1922 </message> 1923 <message> 1924 <location filename="../VBoxManageCloud.cpp" line="2614"/> 1925 <source>Failed to unregister '%ls'.</source> 1926 <translation type="unfinished"></translation> 1927 </message> 1928 <message> 1929 <location filename="../VBoxManageCloud.cpp" line="2617"/> 1930 <location filename="../VBoxManageCloud.cpp" line="2620"/> 1931 <source>Failed to delete config for '%ls'.</source> 1932 <translation type="unfinished"></translation> 1933 </message> 1934 <message> 1935 <location filename="../VBoxManageCloud.cpp" line="2624"/> 1936 <source>Making local gateway image immutable... 1937 </source> 1938 <translation type="unfinished"></translation> 1939 </message> 1940 <message> 1941 <location filename="../VBoxManageCloud.cpp" line="2626"/> 1942 <source>Failed to open '%ls'.</source> 1943 <translation type="unfinished"></translation> 1944 </message> 1945 <message> 1946 <location filename="../VBoxManageCloud.cpp" line="2629"/> 1947 <source>Failed to make '%ls' immutable.</source> 1948 <translation type="unfinished"></translation> 1949 </message> 1950 <message> 1951 <location filename="../VBoxManageCloud.cpp" line="2712"/> 1952 <source>Missing --local-gateway-iso parameter</source> 1953 <translation type="unfinished"></translation> 1954 </message> 1955 <message> 1956 <location filename="../VBoxManageCloud.cpp" line="2720"/> 1753 <location filename="../VBoxManageCloud.cpp" line="2209"/> 1957 1754 <source>Setting up tunnel network in the cloud... 1958 1755 </source> … … 1960 1757 </message> 1961 1758 <message> 1962 <location filename="../VBoxManageCloud.cpp" line="2 746"/>1759 <location filename="../VBoxManageCloud.cpp" line="2235"/> 1963 1760 <source>Setting up cloud network environment failed</source> 1964 1761 <translation type="unfinished"></translation> 1965 1762 </message> 1966 1763 <message> 1967 <location filename="../VBoxManageCloud.cpp" line="2 750"/>1764 <location filename="../VBoxManageCloud.cpp" line="2239"/> 1968 1765 <source>Cloud network environment was set up successfully. Tunnel network id is: %ls 1969 1766 </source> … … 2183 1980 </context> 2184 1981 <context> 2185 <name>C loudVM</name>1982 <name>ControlVM</name> 2186 1983 <message> 2187 1984 <location filename="../VBoxManageControlVM.cpp" line="65"/> 2188 <source>Invalid %s number '%s' </source>2189 <translation type="unfinished"></translation> 2190 </message> 2191 <message> 2192 <location filename="../VBoxManageControlVM.cpp" line="22 3"/>2193 <source>Failed to send a scancode </source>1985 <source>Invalid %s number '%s'.</source> 1986 <translation type="unfinished"></translation> 1987 </message> 1988 <message> 1989 <location filename="../VBoxManageControlVM.cpp" line="222"/> 1990 <source>Failed to send a scancode.</source> 2194 1991 <translation type="unfinished"></translation> 2195 1992 </message> 2196 1993 <message numerus="yes"> 2197 <location filename="../VBoxManageControlVM.cpp" line=" 236"/>2198 <source>O nly %d scancodes were stored</source>1994 <location filename="../VBoxManageControlVM.cpp" line="323"/> 1995 <source>Out of memory allocating %d bytes.</source> 2199 1996 <translation type="unfinished"> 2200 1997 <numerusform></numerusform> 2201 1998 </translation> 2202 1999 </message> 2203 <message numerus="yes"> 2204 <location filename="../VBoxManageControlVM.cpp" line="335"/> 2205 <source>Out of memory allocating %d bytes</source> 2206 <translation type="unfinished"> 2207 <numerusform></numerusform> 2208 </translation> 2209 </message> 2210 <message> 2211 <location filename="../VBoxManageControlVM.cpp" line="338"/> 2212 <source>File size %RI64 is greater than %RI64: '%s'</source> 2213 <translation type="unfinished"></translation> 2214 </message> 2215 <message> 2216 <location filename="../VBoxManageControlVM.cpp" line="341"/> 2217 <source>Cannot get size of file '%s': %Rrc</source> 2218 <translation type="unfinished"></translation> 2219 </message> 2220 <message> 2221 <location filename="../VBoxManageControlVM.cpp" line="346"/> 2222 <source>Cannot open file '%s': %Rrc</source> 2223 <translation type="unfinished"></translation> 2224 </message> 2225 <message> 2226 <location filename="../VBoxManageControlVM.cpp" line="363"/> 2000 <message> 2001 <location filename="../VBoxManageControlVM.cpp" line="326"/> 2002 <source>File size %RI64 is greater than %RI64: '%s'.</source> 2003 <translation type="unfinished"></translation> 2004 </message> 2005 <message> 2006 <location filename="../VBoxManageControlVM.cpp" line="329"/> 2007 <source>Cannot get size of file '%s': %Rrc.</source> 2008 <translation type="unfinished"></translation> 2009 </message> 2010 <message> 2011 <location filename="../VBoxManageControlVM.cpp" line="334"/> 2012 <source>Cannot open file '%s': %Rrc.</source> 2013 <translation type="unfinished"></translation> 2014 </message> 2015 <message> 2016 <location filename="../VBoxManageControlVM.cpp" line="351"/> 2017 <location filename="../VBoxManageControlVM.cpp" line="1372"/> 2018 <source>Not enough parameters.</source> 2019 <translation type="unfinished"></translation> 2020 </message> 2021 <message> 2022 <location filename="../VBoxManageControlVM.cpp" line="371"/> 2023 <source>Machine '%s' is not currently running.</source> 2024 <translation type="unfinished"></translation> 2025 </message> 2026 <message> 2027 <location filename="../VBoxManageControlVM.cpp" line="397"/> 2028 <location filename="../VBoxManageControlVM.cpp" line="411"/> 2029 <location filename="../VBoxManageControlVM.cpp" line="425"/> 2030 <location filename="../VBoxManageControlVM.cpp" line="487"/> 2031 <location filename="../VBoxManageControlVM.cpp" line="558"/> 2032 <location filename="../VBoxManageControlVM.cpp" line="782"/> 2033 <location filename="../VBoxManageControlVM.cpp" line="802"/> 2034 <location filename="../VBoxManageControlVM.cpp" line="840"/> 2035 <location filename="../VBoxManageControlVM.cpp" line="884"/> 2036 <location filename="../VBoxManageControlVM.cpp" line="925"/> 2037 <location filename="../VBoxManageControlVM.cpp" line="1019"/> 2038 <location filename="../VBoxManageControlVM.cpp" line="1081"/> 2039 <location filename="../VBoxManageControlVM.cpp" line="1131"/> 2040 <location filename="../VBoxManageControlVM.cpp" line="1160"/> 2041 <location filename="../VBoxManageControlVM.cpp" line="1172"/> 2042 <location filename="../VBoxManageControlVM.cpp" line="1184"/> 2043 <location filename="../VBoxManageControlVM.cpp" line="1197"/> 2044 <location filename="../VBoxManageControlVM.cpp" line="1208"/> 2045 <location filename="../VBoxManageControlVM.cpp" line="1237"/> 2046 <location filename="../VBoxManageControlVM.cpp" line="1266"/> 2047 <location filename="../VBoxManageControlVM.cpp" line="1297"/> 2048 <location filename="../VBoxManageControlVM.cpp" line="1318"/> 2049 <location filename="../VBoxManageControlVM.cpp" line="1992"/> 2050 <location filename="../VBoxManageControlVM.cpp" line="2115"/> 2051 <source>Missing argument to '%s'.</source> 2052 <translation type="unfinished"></translation> 2053 </message> 2054 <message> 2055 <location filename="../VBoxManageControlVM.cpp" line="444"/> 2056 <location filename="../VBoxManageControlVM.cpp" line="468"/> 2057 <location filename="../VBoxManageControlVM.cpp" line="2226"/> 2058 <source>Invalid value '%s'.</source> 2059 <translation type="unfinished"></translation> 2060 </message> 2061 <message> 2062 <location filename="../VBoxManageControlVM.cpp" line="453"/> 2063 <location filename="../VBoxManageControlVM.cpp" line="477"/> 2064 <source>Audio adapter not enabled in VM configuration.</source> 2065 <translation type="unfinished"></translation> 2066 </message> 2067 <message> 2068 <location filename="../VBoxManageControlVM.cpp" line="498"/> 2069 <location filename="../VBoxManageControlVM.cpp" line="528"/> 2070 <source>Missing argument to '%s %s'.</source> 2071 <translation type="unfinished"></translation> 2072 </message> 2073 <message> 2074 <location filename="../VBoxManageControlVM.cpp" line="513"/> 2075 <location filename="../VBoxManageControlVM.cpp" line="536"/> 2076 <source>Invalid '%s %s' argument '%s'.</source> 2077 <translation type="unfinished"></translation> 2078 </message> 2079 <message> 2080 <location filename="../VBoxManageControlVM.cpp" line="547"/> 2081 <location filename="../VBoxManageControlVM.cpp" line="574"/> 2082 <source>Invalid '%s' argument '%s'.</source> 2083 <translation type="unfinished"></translation> 2084 </message> 2085 <message> 2086 <location filename="../VBoxManageControlVM.cpp" line="591"/> 2087 <source>Failed to power off machine.</source> 2088 <translation type="unfinished"></translation> 2089 </message> 2090 <message> 2091 <location filename="../VBoxManageControlVM.cpp" line="611"/> 2092 <source>Machine in invalid state %d -- %s.</source> 2093 <translation type="unfinished"></translation> 2094 </message> 2095 <message> 2096 <location filename="../VBoxManageControlVM.cpp" line="634"/> 2097 <source>Failed to save machine state.</source> 2098 <translation type="unfinished"></translation> 2099 </message> 2100 <message> 2101 <location filename="../VBoxManageControlVM.cpp" line="665"/> 2102 <location filename="../VBoxManageControlVM.cpp" line="700"/> 2103 <location filename="../VBoxManageControlVM.cpp" line="754"/> 2104 <location filename="../VBoxManageControlVM.cpp" line="775"/> 2105 <location filename="../VBoxManageControlVM.cpp" line="1478"/> 2106 <location filename="../VBoxManageControlVM.cpp" line="1500"/> 2107 <location filename="../VBoxManageControlVM.cpp" line="1624"/> 2108 <location filename="../VBoxManageControlVM.cpp" line="1658"/> 2109 <location filename="../VBoxManageControlVM.cpp" line="1755"/> 2110 <location filename="../VBoxManageControlVM.cpp" line="2001"/> 2111 <source>Guest not running.</source> 2112 <translation type="unfinished"></translation> 2113 </message> 2114 <message> 2115 <location filename="../VBoxManageControlVM.cpp" line="686"/> 2116 <source>Current installed Guest Additions don't support rebooting the guest.</source> 2117 <translation type="unfinished"></translation> 2118 </message> 2119 <message> 2120 <location filename="../VBoxManageControlVM.cpp" line="688"/> 2121 <source>Current installed Guest Additions don't support shutting down the guest.</source> 2122 <translation type="unfinished"></translation> 2123 </message> 2124 <message> 2125 <location filename="../VBoxManageControlVM.cpp" line="707"/> 2126 <source>Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s).</source> 2127 <translation type="unfinished"></translation> 2128 </message> 2129 <message> 2130 <location filename="../VBoxManageControlVM.cpp" line="727"/> 2131 <source>Converting '%s' returned %Rrc!</source> 2132 <translation type="unfinished"></translation> 2133 </message> 2134 <message> 2135 <location filename="../VBoxManageControlVM.cpp" line="736"/> 2136 <source>'%s' is not a hex byte!</source> 2137 <translation type="unfinished"></translation> 2138 </message> 2139 <message> 2140 <location filename="../VBoxManageControlVM.cpp" line="761"/> 2141 <source>Missing argument to '%s'. Expected ASCII string(s).</source> 2142 <translation type="unfinished"></translation> 2143 </message> 2144 <message> 2145 <location filename="../VBoxManageControlVM.cpp" line="814"/> 2146 <source>Invalid link state '%s'.</source> 2147 <translation type="unfinished"></translation> 2148 </message> 2149 <message> 2150 <location filename="../VBoxManageControlVM.cpp" line="860"/> 2151 <source>Filename not specified for NIC %lu.</source> 2152 <translation type="unfinished"></translation> 2153 </message> 2154 <message> 2155 <location filename="../VBoxManageControlVM.cpp" line="868"/> 2156 <source>The NIC %d is currently disabled and thus its tracefile can't be changed.</source> 2157 <translation type="unfinished"></translation> 2158 </message> 2159 <message> 2160 <location filename="../VBoxManageControlVM.cpp" line="901"/> 2161 <source>Invalid nictrace%lu argument '%s'.</source> 2162 <translation type="unfinished"></translation> 2163 </message> 2164 <message> 2165 <location filename="../VBoxManageControlVM.cpp" line="909"/> 2166 <source>The NIC %d is currently disabled and thus its trace flag can't be changed.</source> 2167 <translation type="unfinished"></translation> 2168 </message> 2169 <message> 2170 <location filename="../VBoxManageControlVM.cpp" line="961"/> 2171 <source>Missing or invalid argument to '%s'.</source> 2172 <translation type="unfinished"></translation> 2173 </message> 2174 <message> 2175 <location filename="../VBoxManageControlVM.cpp" line="996"/> 2176 <source>Wrong rule proto '%s' specified -- only 'udp' and 'tcp' are allowed.</source> 2177 <translation type="unfinished"></translation> 2178 </message> 2179 <message> 2180 <location filename="../VBoxManageControlVM.cpp" line="1050"/> 2181 <source>Invalid nicproperty%d argument '%s'.</source> 2182 <translation type="unfinished"></translation> 2183 </message> 2184 <message> 2185 <location filename="../VBoxManageControlVM.cpp" line="1057"/> 2186 <source>Failed to allocate memory for nicproperty%d '%s'.</source> 2187 <translation type="unfinished"></translation> 2188 </message> 2189 <message> 2190 <location filename="../VBoxManageControlVM.cpp" line="1065"/> 2191 <source>The NIC %d is currently disabled and thus its properties can't be changed.</source> 2192 <translation type="unfinished"></translation> 2193 </message> 2194 <message> 2195 <location filename="../VBoxManageControlVM.cpp" line="1105"/> 2196 <source>Unknown promiscuous mode policy '%s'.</source> 2197 <translation type="unfinished"></translation> 2198 </message> 2199 <message> 2200 <location filename="../VBoxManageControlVM.cpp" line="1115"/> 2201 <source>The NIC %d is currently disabled and thus its promiscuous mode can't be changed.</source> 2202 <translation type="unfinished"></translation> 2203 </message> 2204 <message> 2205 <location filename="../VBoxManageControlVM.cpp" line="1217"/> 2206 <source>Invalid type '%s' specfied for NIC %lu.</source> 2207 <translation type="unfinished"></translation> 2208 </message> 2209 <message> 2210 <location filename="../VBoxManageControlVM.cpp" line="1225"/> 2211 <source>The NIC %d is currently disabled and thus its attachment type can't be changed.</source> 2212 <translation type="unfinished"></translation> 2213 </message> 2214 <message> 2215 <location filename="../VBoxManageControlVM.cpp" line="1233"/> 2216 <source>'vrdp' is deprecated. Use 'vrde'.</source> 2217 <translation type="unfinished"></translation> 2218 </message> 2219 <message> 2220 <location filename="../VBoxManageControlVM.cpp" line="1249"/> 2221 <source>Invalid remote desktop server state '%s'.</source> 2222 <translation type="unfinished"></translation> 2223 </message> 2224 <message> 2225 <location filename="../VBoxManageControlVM.cpp" line="1262"/> 2226 <source>'vrdpport' is deprecated. Use 'vrdeport'.</source> 2227 <translation type="unfinished"></translation> 2228 </message> 2229 <message> 2230 <location filename="../VBoxManageControlVM.cpp" line="1293"/> 2231 <source>'vrdpvideochannelquality' is deprecated. Use 'vrdevideochannelquality'.</source> 2232 <translation type="unfinished"></translation> 2233 </message> 2234 <message> 2235 <location filename="../VBoxManageControlVM.cpp" line="1344"/> 2236 <source>Invalid vrdeproperty argument '%s'.</source> 2237 <translation type="unfinished"></translation> 2238 </message> 2239 <message> 2240 <location filename="../VBoxManageControlVM.cpp" line="1351"/> 2241 <source>Failed to allocate memory for VRDE property '%s'.</source> 2242 <translation type="unfinished"></translation> 2243 </message> 2244 <message> 2245 <location filename="../VBoxManageControlVM.cpp" line="1378"/> 2246 <source>Wrong number of arguments.</source> 2247 <translation type="unfinished"></translation> 2248 </message> 2249 <message> 2227 2250 <location filename="../VBoxManageControlVM.cpp" line="1392"/> 2228 <source>Not enough parameters</source> 2229 <translation type="unfinished"></translation> 2230 </message> 2231 <message> 2232 <location filename="../VBoxManageControlVM.cpp" line="383"/> 2233 <source>Machine '%s' is not currently running</source> 2234 <translation type="unfinished"></translation> 2235 </message> 2236 <message> 2237 <location filename="../VBoxManageControlVM.cpp" line="405"/> 2238 <location filename="../VBoxManageControlVM.cpp" line="418"/> 2239 <source>Missing argument to '%s'. Expected CPU number.</source> 2240 <translation type="unfinished"></translation> 2241 </message> 2242 <message> 2243 <location filename="../VBoxManageControlVM.cpp" line="431"/> 2244 <source>Missing argument to '%s'. Expected execution cap number.</source> 2245 <translation type="unfinished"></translation> 2246 </message> 2247 <message> 2248 <location filename="../VBoxManageControlVM.cpp" line="456"/> 2249 <location filename="../VBoxManageControlVM.cpp" line="486"/> 2250 <location filename="../VBoxManageControlVM.cpp" line="2385"/> 2251 <source>Invalid value '%s'</source> 2252 <translation type="unfinished"></translation> 2253 </message> 2254 <message> 2255 <location filename="../VBoxManageControlVM.cpp" line="465"/> 2256 <location filename="../VBoxManageControlVM.cpp" line="495"/> 2257 <source>audio adapter not enabled in VM configuration</source> 2258 <translation type="unfinished"></translation> 2259 </message> 2260 <message> 2261 <location filename="../VBoxManageControlVM.cpp" line="505"/> 2262 <source>Missing argument to '%s'.</source> 2263 <translation type="unfinished"></translation> 2264 </message> 2265 <message> 2266 <location filename="../VBoxManageControlVM.cpp" line="523"/> 2267 <location filename="../VBoxManageControlVM.cpp" line="553"/> 2268 <location filename="../VBoxManageControlVM.cpp" line="565"/> 2269 <location filename="../VBoxManageControlVM.cpp" line="591"/> 2270 <source>Invalid '%s' argument '%s'.</source> 2271 <translation type="unfinished"></translation> 2272 </message> 2273 <message> 2274 <location filename="../VBoxManageControlVM.cpp" line="537"/> 2275 <source>Missing argument to '%s'. Expected enabled / disabled.</source> 2276 <translation type="unfinished"></translation> 2277 </message> 2278 <message> 2279 <location filename="../VBoxManageControlVM.cpp" line="575"/> 2280 <source>Missing argument to '%s'. Expected drag and drop mode.</source> 2281 <translation type="unfinished"></translation> 2282 </message> 2283 <message> 2284 <location filename="../VBoxManageControlVM.cpp" line="607"/> 2285 <source>Failed to power off machine</source> 2286 <translation type="unfinished"></translation> 2287 </message> 2288 <message> 2289 <location filename="../VBoxManageControlVM.cpp" line="626"/> 2290 <source>Machine in invalid state %d -- %s 2291 </source> 2292 <translation type="unfinished"></translation> 2293 </message> 2294 <message> 2295 <location filename="../VBoxManageControlVM.cpp" line="649"/> 2296 <source>Failed to save machine state</source> 2297 <translation type="unfinished"></translation> 2298 </message> 2299 <message> 2300 <location filename="../VBoxManageControlVM.cpp" line="672"/> 2301 <location filename="../VBoxManageControlVM.cpp" line="704"/> 2302 <location filename="../VBoxManageControlVM.cpp" line="757"/> 2303 <location filename="../VBoxManageControlVM.cpp" line="777"/> 2304 <location filename="../VBoxManageControlVM.cpp" line="1501"/> 2305 <location filename="../VBoxManageControlVM.cpp" line="1522"/> 2306 <location filename="../VBoxManageControlVM.cpp" line="1645"/> 2307 <location filename="../VBoxManageControlVM.cpp" line="1800"/> 2308 <location filename="../VBoxManageControlVM.cpp" line="1896"/> 2309 <location filename="../VBoxManageControlVM.cpp" line="2162"/> 2310 <source>Guest not running</source> 2311 <translation type="unfinished"></translation> 2312 </message> 2313 <message> 2314 <location filename="../VBoxManageControlVM.cpp" line="693"/> 2315 <source>Current installed Guest Additions don't support %s the guest.</source> 2316 <translation type="unfinished"></translation> 2317 </message> 2318 <message> 2319 <location filename="../VBoxManageControlVM.cpp" line="694"/> 2320 <source>rebooting</source> 2321 <translation type="unfinished"></translation> 2322 </message> 2323 <message> 2324 <location filename="../VBoxManageControlVM.cpp" line="694"/> 2325 <source>shutting down</source> 2326 <translation type="unfinished"></translation> 2327 </message> 2328 <message> 2329 <location filename="../VBoxManageControlVM.cpp" line="711"/> 2330 <source>Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source> 2331 <translation type="unfinished"></translation> 2332 </message> 2333 <message> 2334 <location filename="../VBoxManageControlVM.cpp" line="731"/> 2335 <source>Converting '%s' returned %Rrc!</source> 2336 <translation type="unfinished"></translation> 2337 </message> 2338 <message> 2339 <location filename="../VBoxManageControlVM.cpp" line="740"/> 2340 <source>Error: '%s' is not a hex byte!</source> 2341 <translation type="unfinished"></translation> 2342 </message> 2343 <message> 2344 <location filename="../VBoxManageControlVM.cpp" line="764"/> 2345 <source>Missing argument to '%s'. Expected ASCII string(s).</source> 2346 <translation type="unfinished"></translation> 2347 </message> 2348 <message> 2349 <location filename="../VBoxManageControlVM.cpp" line="784"/> 2350 <source>Missing argument to '%s'. Expected file name.</source> 2351 <translation type="unfinished"></translation> 2352 </message> 2353 <message> 2354 <location filename="../VBoxManageControlVM.cpp" line="803"/> 2355 <location filename="../VBoxManageControlVM.cpp" line="847"/> 2356 <location filename="../VBoxManageControlVM.cpp" line="890"/> 2357 <location filename="../VBoxManageControlVM.cpp" line="938"/> 2358 <location filename="../VBoxManageControlVM.cpp" line="1031"/> 2359 <location filename="../VBoxManageControlVM.cpp" line="1092"/> 2360 <location filename="../VBoxManageControlVM.cpp" line="1141"/> 2361 <location filename="../VBoxManageControlVM.cpp" line="1170"/> 2362 <location filename="../VBoxManageControlVM.cpp" line="1182"/> 2363 <location filename="../VBoxManageControlVM.cpp" line="1194"/> 2364 <location filename="../VBoxManageControlVM.cpp" line="1207"/> 2365 <location filename="../VBoxManageControlVM.cpp" line="1218"/> 2366 <location filename="../VBoxManageControlVM.cpp" line="1230"/> 2367 <location filename="../VBoxManageControlVM.cpp" line="1258"/> 2368 <location filename="../VBoxManageControlVM.cpp" line="1293"/> 2369 <location filename="../VBoxManageControlVM.cpp" line="1324"/> 2370 <location filename="../VBoxManageControlVM.cpp" line="1344"/> 2371 <location filename="../VBoxManageControlVM.cpp" line="2153"/> 2372 <location filename="../VBoxManageControlVM.cpp" line="2269"/> 2373 <source>Missing argument to '%s'</source> 2374 <translation type="unfinished"></translation> 2375 </message> 2376 <message> 2377 <location filename="../VBoxManageControlVM.cpp" line="822"/> 2378 <source>Invalid link state '%s'</source> 2379 <translation type="unfinished"></translation> 2380 </message> 2381 <message> 2382 <location filename="../VBoxManageControlVM.cpp" line="867"/> 2383 <source>Invalid filename or filename not specified for NIC %lu</source> 2384 <translation type="unfinished"></translation> 2385 </message> 2386 <message> 2387 <location filename="../VBoxManageControlVM.cpp" line="875"/> 2388 <source>The NIC %d is currently disabled and thus its tracefile can't be changed</source> 2389 <translation type="unfinished"></translation> 2390 </message> 2391 <message> 2392 <location filename="../VBoxManageControlVM.cpp" line="914"/> 2393 <source>Invalid nictrace%lu argument '%s'</source> 2394 <translation type="unfinished"></translation> 2395 </message> 2396 <message> 2397 <location filename="../VBoxManageControlVM.cpp" line="922"/> 2398 <source>The NIC %d is currently disabled and thus its trace flag can't be changed</source> 2399 <translation type="unfinished"></translation> 2400 </message> 2401 <message> 2402 <location filename="../VBoxManageControlVM.cpp" line="973"/> 2403 <source>Missing or invalid argument to '%s'</source> 2404 <translation type="unfinished"></translation> 2405 </message> 2406 <message> 2407 <location filename="../VBoxManageControlVM.cpp" line="1009"/> 2408 <source>Wrong rule proto '%s' specified -- only 'udp' and 'tcp' are allowed.</source> 2409 <translation type="unfinished"></translation> 2410 </message> 2411 <message> 2412 <location filename="../VBoxManageControlVM.cpp" line="1062"/> 2413 <source>Invalid nicproperty%d argument '%s'</source> 2414 <translation type="unfinished"></translation> 2415 </message> 2416 <message> 2417 <location filename="../VBoxManageControlVM.cpp" line="1069"/> 2418 <source>Error: Failed to allocate memory for nicproperty%d '%s' 2419 </source> 2420 <translation type="unfinished"></translation> 2421 </message> 2422 <message> 2423 <location filename="../VBoxManageControlVM.cpp" line="1077"/> 2424 <source>The NIC %d is currently disabled and thus its properties can't be changed</source> 2425 <translation type="unfinished"></translation> 2426 </message> 2427 <message> 2428 <location filename="../VBoxManageControlVM.cpp" line="1116"/> 2429 <source>Unknown promiscuous mode policy '%s'</source> 2430 <translation type="unfinished"></translation> 2431 </message> 2432 <message> 2433 <location filename="../VBoxManageControlVM.cpp" line="1126"/> 2434 <source>The NIC %d is currently disabled and thus its promiscuous mode can't be changed</source> 2435 <translation type="unfinished"></translation> 2436 </message> 2437 <message> 2438 <location filename="../VBoxManageControlVM.cpp" line="1239"/> 2439 <source>Invalid type '%s' specfied for NIC %lu</source> 2440 <translation type="unfinished"></translation> 2441 </message> 2442 <message> 2443 <location filename="../VBoxManageControlVM.cpp" line="1247"/> 2444 <source>The NIC %d is currently disabled and thus its attachment type can't be changed</source> 2445 <translation type="unfinished"></translation> 2446 </message> 2447 <message> 2448 <location filename="../VBoxManageControlVM.cpp" line="1254"/> 2449 <source>Warning: 'vrdp' is deprecated. Use 'vrde'. 2450 </source> 2451 <translation type="unfinished"></translation> 2452 </message> 2453 <message> 2454 <location filename="../VBoxManageControlVM.cpp" line="1277"/> 2455 <source>Invalid remote desktop server state '%s'</source> 2456 <translation type="unfinished"></translation> 2457 </message> 2458 <message> 2459 <location filename="../VBoxManageControlVM.cpp" line="1289"/> 2460 <source>Warning: 'vrdpport' is deprecated. Use 'vrdeport'. 2461 </source> 2462 <translation type="unfinished"></translation> 2463 </message> 2464 <message> 2465 <location filename="../VBoxManageControlVM.cpp" line="1320"/> 2466 <source>Warning: 'vrdpvideochannelquality' is deprecated. Use 'vrdevideochannelquality'. 2467 </source> 2468 <translation type="unfinished"></translation> 2469 </message> 2470 <message> 2471 <location filename="../VBoxManageControlVM.cpp" line="1370"/> 2472 <source>Invalid vrdeproperty argument '%s'</source> 2473 <translation type="unfinished"></translation> 2474 </message> 2475 <message> 2476 <location filename="../VBoxManageControlVM.cpp" line="1377"/> 2477 <source>Error: Failed to allocate memory for VRDE property '%s' 2478 </source> 2479 <translation type="unfinished"></translation> 2480 </message> 2481 <message> 2482 <location filename="../VBoxManageControlVM.cpp" line="1398"/> 2483 <source>Wrong number of arguments</source> 2484 <translation type="unfinished"></translation> 2485 </message> 2486 <message> 2487 <location filename="../VBoxManageControlVM.cpp" line="1414"/> 2488 <location filename="../VBoxManageControlVM.cpp" line="1608"/> 2489 <location filename="../VBoxManageControlVM.cpp" line="2417"/> 2490 <source>Invalid parameter '%s'</source> 2491 <translation type="unfinished"></translation> 2492 </message> 2493 <message> 2494 <location filename="../VBoxManageControlVM.cpp" line="1447"/> 2495 <source>Zero UUID argument '%s'</source> 2496 <translation type="unfinished"></translation> 2497 </message> 2498 <message> 2499 <location filename="../VBoxManageControlVM.cpp" line="1465"/> 2500 <location filename="../VBoxManageControlVM.cpp" line="1513"/> 2501 <location filename="../VBoxManageControlVM.cpp" line="1564"/> 2502 <location filename="../VBoxManageControlVM.cpp" line="1620"/> 2503 <location filename="../VBoxManageControlVM.cpp" line="1660"/> 2504 <location filename="../VBoxManageControlVM.cpp" line="1724"/> 2505 <location filename="../VBoxManageControlVM.cpp" line="1780"/> 2506 <location filename="../VBoxManageControlVM.cpp" line="1876"/> 2507 <location filename="../VBoxManageControlVM.cpp" line="1928"/> 2508 <location filename="../VBoxManageControlVM.cpp" line="2009"/> 2509 <location filename="../VBoxManageControlVM.cpp" line="2022"/> 2510 <location filename="../VBoxManageControlVM.cpp" line="2055"/> 2511 <location filename="../VBoxManageControlVM.cpp" line="2076"/> 2512 <location filename="../VBoxManageControlVM.cpp" line="2097"/> 2513 <location filename="../VBoxManageControlVM.cpp" line="2118"/> 2514 <location filename="../VBoxManageControlVM.cpp" line="2139"/> 2251 <location filename="../VBoxManageControlVM.cpp" line="1587"/> 2252 <location filename="../VBoxManageControlVM.cpp" line="2259"/> 2253 <source>Invalid parameter '%s'.</source> 2254 <translation type="unfinished"></translation> 2255 </message> 2256 <message> 2257 <location filename="../VBoxManageControlVM.cpp" line="1425"/> 2258 <source>Zero UUID argument '%s'.</source> 2259 <translation type="unfinished"></translation> 2260 </message> 2261 <message> 2262 <location filename="../VBoxManageControlVM.cpp" line="1444"/> 2263 <location filename="../VBoxManageControlVM.cpp" line="1491"/> 2264 <location filename="../VBoxManageControlVM.cpp" line="1542"/> 2265 <location filename="../VBoxManageControlVM.cpp" line="1599"/> 2266 <location filename="../VBoxManageControlVM.cpp" line="1638"/> 2267 <location filename="../VBoxManageControlVM.cpp" line="1735"/> 2268 <location filename="../VBoxManageControlVM.cpp" line="1787"/> 2269 <location filename="../VBoxManageControlVM.cpp" line="1821"/> 2270 <location filename="../VBoxManageControlVM.cpp" line="1840"/> 2271 <location filename="../VBoxManageControlVM.cpp" line="1854"/> 2272 <location filename="../VBoxManageControlVM.cpp" line="1888"/> 2273 <location filename="../VBoxManageControlVM.cpp" line="1910"/> 2274 <location filename="../VBoxManageControlVM.cpp" line="1932"/> 2275 <location filename="../VBoxManageControlVM.cpp" line="1954"/> 2276 <location filename="../VBoxManageControlVM.cpp" line="1978"/> 2277 <location filename="../VBoxManageControlVM.cpp" line="2048"/> 2278 <location filename="../VBoxManageControlVM.cpp" line="2093"/> 2279 <source>Incorrect number of parameters.</source> 2280 <translation type="unfinished"></translation> 2281 </message> 2282 <message> 2283 <location filename="../VBoxManageControlVM.cpp" line="1462"/> 2284 <source>Either "yes" or "no" is expected.</source> 2285 <translation type="unfinished"></translation> 2286 </message> 2287 <message> 2288 <location filename="../VBoxManageControlVM.cpp" line="1527"/> 2289 <source>Display status must be <on> or <off>.</source> 2290 <translation type="unfinished"></translation> 2291 </message> 2292 <message> 2293 <location filename="../VBoxManageControlVM.cpp" line="1647"/> 2294 <source>Error parsing guest memory balloon size '%s'.</source> 2295 <translation type="unfinished"></translation> 2296 </message> 2297 <message> 2298 <location filename="../VBoxManageControlVM.cpp" line="1728"/> 2299 <source>Teleportation failed</source> 2300 <translation type="unfinished"></translation> 2301 </message> 2302 <message> 2303 <location filename="../VBoxManageControlVM.cpp" line="1746"/> 2304 <source>Error parsing display number '%s'.</source> 2305 <translation type="unfinished"></translation> 2306 </message> 2307 <message> 2308 <location filename="../VBoxManageControlVM.cpp" line="1769"/> 2309 <source>Failed to create file '%s' (%Rrc).</source> 2310 <translation type="unfinished"></translation> 2311 </message> 2312 <message> 2313 <location filename="../VBoxManageControlVM.cpp" line="1776"/> 2314 <source>Failed to write screenshot to file '%s' (%Rrc).</source> 2315 <translation type="unfinished"></translation> 2316 </message> 2317 <message> 2318 <location filename="../VBoxManageControlVM.cpp" line="1827"/> 2319 <source>Error parsing list of screen IDs '%s'.</source> 2320 <translation type="unfinished"></translation> 2321 </message> 2322 <message> 2323 <location filename="../VBoxManageControlVM.cpp" line="1863"/> 2324 <source>Error parsing video width '%s'.</source> 2325 <translation type="unfinished"></translation> 2326 </message> 2327 <message> 2328 <location filename="../VBoxManageControlVM.cpp" line="1872"/> 2329 <source>Error parsing video height '%s'.</source> 2330 <translation type="unfinished"></translation> 2331 </message> 2332 <message> 2333 <location filename="../VBoxManageControlVM.cpp" line="1897"/> 2334 <source>Error parsing video rate '%s'.</source> 2335 <translation type="unfinished"></translation> 2336 </message> 2337 <message> 2338 <location filename="../VBoxManageControlVM.cpp" line="1919"/> 2339 <source>Error parsing video FPS '%s'.</source> 2340 <translation type="unfinished"></translation> 2341 </message> 2342 <message> 2343 <location filename="../VBoxManageControlVM.cpp" line="1941"/> 2344 <source>Error parsing maximum time '%s'.</source> 2345 <translation type="unfinished"></translation> 2346 </message> 2347 <message> 2348 <location filename="../VBoxManageControlVM.cpp" line="1963"/> 2349 <source>Error parsing maximum file size '%s'.</source> 2350 <translation type="unfinished"></translation> 2351 </message> 2352 <message> 2353 <location filename="../VBoxManageControlVM.cpp" line="2037"/> 2354 <source>Invalid argument to '%s'.</source> 2355 <translation type="unfinished"></translation> 2356 </message> 2357 <message> 2358 <location filename="../VBoxManageControlVM.cpp" line="2059"/> 2359 <source>Invalid parameters.</source> 2360 <translation type="unfinished"></translation> 2361 </message> 2362 <message> 2363 <location filename="../VBoxManageControlVM.cpp" line="2072"/> 2364 <source>Enter password:</source> 2365 <translation type="unfinished"></translation> 2366 </message> 2367 <message> 2368 <location filename="../VBoxManageControlVM.cpp" line="2081"/> 2369 <source>Failed to read new password from file.</source> 2370 <translation type="unfinished"></translation> 2371 </message> 2372 <message> 2373 <location filename="../VBoxManageControlVM.cpp" line="2129"/> 2374 <location filename="../VBoxManageControlVM.cpp" line="2144"/> 2375 <location filename="../VBoxManageControlVM.cpp" line="2185"/> 2376 <location filename="../VBoxManageControlVM.cpp" line="2198"/> 2377 <location filename="../VBoxManageControlVM.cpp" line="2219"/> 2378 <location filename="../VBoxManageControlVM.cpp" line="2239"/> 2379 <source>Incorrect arguments to '%s'.</source> 2380 <translation type="unfinished"></translation> 2381 </message> 2382 <message> 2515 2383 <location filename="../VBoxManageControlVM.cpp" line="2205"/> 2516 <location filename="../VBoxManageControlVM.cpp" line="2249"/> 2517 <source>Incorrect number of parameters</source> 2518 <translation type="unfinished"></translation> 2519 </message> 2520 <message> 2521 <location filename="../VBoxManageControlVM.cpp" line="1484"/> 2522 <source>Either "yes" or "no" is expected</source> 2523 <translation type="unfinished"></translation> 2524 </message> 2525 <message> 2526 <location filename="../VBoxManageControlVM.cpp" line="1549"/> 2527 <source>Display status must be <on> or <off></source> 2528 <translation type="unfinished"></translation> 2529 </message> 2530 <message> 2531 <location filename="../VBoxManageControlVM.cpp" line="1681"/> 2532 <source>Invalid host DVD drive name "%s"</source> 2533 <translation type="unfinished"></translation> 2534 </message> 2535 <message> 2536 <location filename="../VBoxManageControlVM.cpp" line="1717"/> 2537 <source>IDE Controller</source> 2538 <translation type="unfinished"></translation> 2539 </message> 2540 <message> 2541 <location filename="../VBoxManageControlVM.cpp" line="1744"/> 2542 <source>Invalid host floppy drive name "%s"</source> 2543 <translation type="unfinished"></translation> 2544 </message> 2545 <message> 2546 <location filename="../VBoxManageControlVM.cpp" line="1773"/> 2547 <source>Floppy Controller</source> 2548 <translation type="unfinished"></translation> 2549 </message> 2550 <message> 2551 <location filename="../VBoxManageControlVM.cpp" line="1789"/> 2552 <source>Error parsing guest memory balloon size '%s'</source> 2553 <translation type="unfinished"></translation> 2554 </message> 2555 <message> 2556 <location filename="../VBoxManageControlVM.cpp" line="1870"/> 2557 <source>Teleportation failed</source> 2558 <translation type="unfinished"></translation> 2559 </message> 2560 <message> 2561 <location filename="../VBoxManageControlVM.cpp" line="1887"/> 2562 <location filename="../VBoxManageControlVM.cpp" line="1988"/> 2563 <source>Error parsing display number '%s'</source> 2564 <translation type="unfinished"></translation> 2565 </message> 2566 <message> 2567 <location filename="../VBoxManageControlVM.cpp" line="1910"/> 2568 <source>Failed to create file '%s' (%Rrc)</source> 2569 <translation type="unfinished"></translation> 2570 </message> 2571 <message> 2572 <location filename="../VBoxManageControlVM.cpp" line="1917"/> 2573 <source>Failed to write screenshot to file '%s' (%Rrc)</source> 2574 <translation type="unfinished"></translation> 2575 </message> 2576 <message> 2577 <location filename="../VBoxManageControlVM.cpp" line="1994"/> 2578 <source>Invalid screen ID specified '%u'</source> 2579 <translation type="unfinished"></translation> 2580 </message> 2581 <message> 2582 <location filename="../VBoxManageControlVM.cpp" line="2031"/> 2583 <source>Error parsing video width '%s'</source> 2584 <translation type="unfinished"></translation> 2585 </message> 2586 <message> 2587 <location filename="../VBoxManageControlVM.cpp" line="2040"/> 2588 <source>Error parsing video height '%s'</source> 2589 <translation type="unfinished"></translation> 2590 </message> 2591 <message> 2592 <location filename="../VBoxManageControlVM.cpp" line="2064"/> 2593 <source>Error parsing video rate '%s'</source> 2594 <translation type="unfinished"></translation> 2595 </message> 2596 <message> 2597 <location filename="../VBoxManageControlVM.cpp" line="2085"/> 2598 <source>Error parsing video FPS '%s'</source> 2599 <translation type="unfinished"></translation> 2600 </message> 2601 <message> 2602 <location filename="../VBoxManageControlVM.cpp" line="2106"/> 2603 <source>Error parsing maximum time '%s'</source> 2604 <translation type="unfinished"></translation> 2605 </message> 2606 <message> 2607 <location filename="../VBoxManageControlVM.cpp" line="2127"/> 2608 <source>Error parsing maximum file size '%s'</source> 2609 <translation type="unfinished"></translation> 2610 </message> 2611 <message> 2612 <location filename="../VBoxManageControlVM.cpp" line="2195"/> 2613 <source>Invalid argument to '%s'</source> 2614 <translation type="unfinished"></translation> 2615 </message> 2616 <message> 2617 <location filename="../VBoxManageControlVM.cpp" line="2216"/> 2618 <source>Invalid parameters</source> 2619 <translation type="unfinished"></translation> 2620 </message> 2621 <message> 2622 <location filename="../VBoxManageControlVM.cpp" line="2229"/> 2623 <source>Enter password:</source> 2624 <translation type="unfinished"></translation> 2625 </message> 2626 <message> 2627 <location filename="../VBoxManageControlVM.cpp" line="2238"/> 2628 <source>Failed to read new password from file</source> 2629 <translation type="unfinished"></translation> 2630 </message> 2631 <message> 2632 <location filename="../VBoxManageControlVM.cpp" line="2283"/> 2633 <location filename="../VBoxManageControlVM.cpp" line="2298"/> 2634 <location filename="../VBoxManageControlVM.cpp" line="2339"/> 2635 <location filename="../VBoxManageControlVM.cpp" line="2351"/> 2636 <location filename="../VBoxManageControlVM.cpp" line="2371"/> 2637 <location filename="../VBoxManageControlVM.cpp" line="2397"/> 2638 <source>Incorrect arguments to '%s'</source> 2639 <translation type="unfinished"></translation> 2640 </message> 2641 <message> 2642 <location filename="../VBoxManageControlVM.cpp" line="2358"/> 2643 <source>Invalid vm-process-priority '%s'</source> 2644 <translation type="unfinished"></translation> 2645 </message> 2646 <message> 2647 <location filename="../VBoxManageControlVM.cpp" line="2406"/> 2648 <source>Invalid autostart delay number '%s'</source> 2384 <source>Invalid vm-process-priority '%s'.</source> 2385 <translation type="unfinished"></translation> 2386 </message> 2387 <message> 2388 <location filename="../VBoxManageControlVM.cpp" line="2248"/> 2389 <source>Invalid autostart delay number '%s'.</source> 2649 2390 <translation type="unfinished"></translation> 2650 2391 </message> … … 3031 2772 <name>Disk</name> 3032 2773 <message> 3033 <location filename="../VBoxManageDisk.cpp" line="6 6"/>2774 <location filename="../VBoxManageDisk.cpp" line="64"/> 3034 2775 <source>Error code %Rrc at %s(%u) in function %s</source> 3035 2776 <translation type="unfinished"></translation> 3036 2777 </message> 3037 2778 <message> 3038 <location filename="../VBoxManageDisk.cpp" line="18 6"/>3039 <location filename="../VBoxManageDisk.cpp" line="2 21"/>2779 <location filename="../VBoxManageDisk.cpp" line="184"/> 2780 <location filename="../VBoxManageDisk.cpp" line="219"/> 3040 2781 <source>Cannot convert filename "%s" to absolute path</source> 3041 2782 <translation type="unfinished"></translation> 3042 2783 </message> 3043 2784 <message> 3044 <location filename="../VBoxManageDisk.cpp" line="2 90"/>2785 <location filename="../VBoxManageDisk.cpp" line="288"/> 3045 2786 <source>Out of memory copying '%s'</source> 3046 2787 <translation type="unfinished"></translation> 3047 2788 </message> 3048 2789 <message> 3049 <location filename="../VBoxManageDisk.cpp" line="3 30"/>3050 <location filename="../VBoxManageDisk.cpp" line="33 6"/>3051 <location filename="../VBoxManageDisk.cpp" line="34 2"/>3052 <location filename="../VBoxManageDisk.cpp" line=" 701"/>3053 <location filename="../VBoxManageDisk.cpp" line="70 7"/>3054 <location filename="../VBoxManageDisk.cpp" line="71 3"/>3055 <location filename="../VBoxManageDisk.cpp" line="102 7"/>3056 <location filename="../VBoxManageDisk.cpp" line="103 3"/>3057 <location filename="../VBoxManageDisk.cpp" line="103 9"/>3058 <location filename="../VBoxManageDisk.cpp" line="166 2"/>3059 <location filename="../VBoxManageDisk.cpp" line="166 8"/>3060 <location filename="../VBoxManageDisk.cpp" line="167 4"/>3061 <location filename="../VBoxManageDisk.cpp" line="177 4"/>3062 <location filename="../VBoxManageDisk.cpp" line="17 80"/>3063 <location filename="../VBoxManageDisk.cpp" line="178 6"/>2790 <location filename="../VBoxManageDisk.cpp" line="328"/> 2791 <location filename="../VBoxManageDisk.cpp" line="334"/> 2792 <location filename="../VBoxManageDisk.cpp" line="340"/> 2793 <location filename="../VBoxManageDisk.cpp" line="699"/> 2794 <location filename="../VBoxManageDisk.cpp" line="705"/> 2795 <location filename="../VBoxManageDisk.cpp" line="711"/> 2796 <location filename="../VBoxManageDisk.cpp" line="1025"/> 2797 <location filename="../VBoxManageDisk.cpp" line="1031"/> 2798 <location filename="../VBoxManageDisk.cpp" line="1037"/> 2799 <location filename="../VBoxManageDisk.cpp" line="1660"/> 2800 <location filename="../VBoxManageDisk.cpp" line="1666"/> 2801 <location filename="../VBoxManageDisk.cpp" line="1672"/> 2802 <location filename="../VBoxManageDisk.cpp" line="1772"/> 2803 <location filename="../VBoxManageDisk.cpp" line="1778"/> 2804 <location filename="../VBoxManageDisk.cpp" line="1784"/> 3064 2805 <source>Only one command can be specified: '%s'</source> 3065 2806 <translation type="unfinished"></translation> 3066 2807 </message> 3067 2808 <message> 3068 <location filename="../VBoxManageDisk.cpp" line="37 3"/>2809 <location filename="../VBoxManageDisk.cpp" line="371"/> 3069 2810 <source>Invalid key value pair: No '='.</source> 3070 2811 <translation type="unfinished"></translation> 3071 2812 </message> 3072 2813 <message> 3073 <location filename="../VBoxManageDisk.cpp" line="38 9"/>2814 <location filename="../VBoxManageDisk.cpp" line="387"/> 3074 2815 <source>Cannot open replacement value file '%s': %Rrc</source> 3075 2816 <translation type="unfinished"></translation> 3076 2817 </message> 3077 2818 <message> 3078 <location filename="../VBoxManageDisk.cpp" line="40 5"/>2819 <location filename="../VBoxManageDisk.cpp" line="403"/> 3079 2820 <source>Error reading replacement MBR file '%s': %Rrc</source> 3080 2821 <translation type="unfinished"></translation> 3081 2822 </message> 3082 2823 <message> 3083 <location filename="../VBoxManageDisk.cpp" line="40 8"/>2824 <location filename="../VBoxManageDisk.cpp" line="406"/> 3084 2825 <source>Out of memory reading '%s': %Rrc</source> 3085 2826 <translation type="unfinished"></translation> 3086 2827 </message> 3087 2828 <message> 3088 <location filename="../VBoxManageDisk.cpp" line="41 2"/>2829 <location filename="../VBoxManageDisk.cpp" line="410"/> 3089 2830 <source>Replacement value file '%s' is to big: %Rhcb, max 16MiB</source> 3090 2831 <translation type="unfinished"></translation> 3091 2832 </message> 3092 2833 <message> 3093 <location filename="../VBoxManageDisk.cpp" line="41 6"/>2834 <location filename="../VBoxManageDisk.cpp" line="414"/> 3094 2835 <source>Cannot get the size of the value file '%s': %Rrc</source> 3095 2836 <translation type="unfinished"></translation> 3096 2837 </message> 3097 2838 <message> 3098 <location filename="../VBoxManageDisk.cpp" line="43 5"/>3099 <location filename="../VBoxManageDisk.cpp" line="106 2"/>3100 <location filename="../VBoxManageDisk.cpp" line="124 7"/>3101 <location filename="../VBoxManageDisk.cpp" line="258 8"/>2839 <location filename="../VBoxManageDisk.cpp" line="433"/> 2840 <location filename="../VBoxManageDisk.cpp" line="1060"/> 2841 <location filename="../VBoxManageDisk.cpp" line="1245"/> 2842 <location filename="../VBoxManageDisk.cpp" line="2585"/> 3102 2843 <source>Invalid medium variant '%s'</source> 3103 2844 <translation type="unfinished"></translation> 3104 2845 </message> 3105 2846 <message> 3106 <location filename="../VBoxManageDisk.cpp" line="43 9"/>3107 <location filename="../VBoxManageDisk.cpp" line=" 801"/>3108 <location filename="../VBoxManageDisk.cpp" line="10 71"/>3109 <location filename="../VBoxManageDisk.cpp" line="126 3"/>3110 <location filename="../VBoxManageDisk.cpp" line="168 2"/>3111 <location filename="../VBoxManageDisk.cpp" line="179 8"/>3112 <location filename="../VBoxManageDisk.cpp" line="20 10"/>2847 <location filename="../VBoxManageDisk.cpp" line="437"/> 2848 <location filename="../VBoxManageDisk.cpp" line="799"/> 2849 <location filename="../VBoxManageDisk.cpp" line="1069"/> 2850 <location filename="../VBoxManageDisk.cpp" line="1261"/> 2851 <location filename="../VBoxManageDisk.cpp" line="1680"/> 2852 <location filename="../VBoxManageDisk.cpp" line="1796"/> 2853 <location filename="../VBoxManageDisk.cpp" line="2008"/> 3113 2854 <source>Invalid parameter '%s'</source> 2855 <translation type="unfinished"></translation> 2856 </message> 2857 <message> 2858 <location filename="../VBoxManageDisk.cpp" line="443"/> 2859 <location filename="../VBoxManageDisk.cpp" line="806"/> 2860 <location filename="../VBoxManageDisk.cpp" line="1687"/> 2861 <location filename="../VBoxManageDisk.cpp" line="1803"/> 2862 <location filename="../VBoxManageDisk.cpp" line="2015"/> 2863 <source>Invalid option -%c</source> 3114 2864 <translation type="unfinished"></translation> 3115 2865 </message> … … 3120 2870 <location filename="../VBoxManageDisk.cpp" line="1805"/> 3121 2871 <location filename="../VBoxManageDisk.cpp" line="2017"/> 3122 <source>Invalid option -%c</source>3123 <translation type="unfinished"></translation>3124 </message>3125 <message>3126 <location filename="../VBoxManageDisk.cpp" line="447"/>3127 <location filename="../VBoxManageDisk.cpp" line="810"/>3128 <location filename="../VBoxManageDisk.cpp" line="1691"/>3129 <location filename="../VBoxManageDisk.cpp" line="1807"/>3130 <location filename="../VBoxManageDisk.cpp" line="2019"/>3131 2872 <source>Invalid option case %i</source> 3132 2873 <translation type="unfinished"></translation> 3133 2874 </message> 3134 2875 <message> 3135 <location filename="../VBoxManageDisk.cpp" line="4 50"/>3136 <location filename="../VBoxManageDisk.cpp" line="81 3"/>3137 <location filename="../VBoxManageDisk.cpp" line="169 4"/>3138 <location filename="../VBoxManageDisk.cpp" line="18 10"/>3139 <location filename="../VBoxManageDisk.cpp" line="202 2"/>2876 <location filename="../VBoxManageDisk.cpp" line="448"/> 2877 <location filename="../VBoxManageDisk.cpp" line="811"/> 2878 <location filename="../VBoxManageDisk.cpp" line="1692"/> 2879 <location filename="../VBoxManageDisk.cpp" line="1808"/> 2880 <location filename="../VBoxManageDisk.cpp" line="2020"/> 3140 2881 <source>unknown option: %s 3141 2882 </source> … … 3143 2884 </message> 3144 2885 <message> 3145 <location filename="../VBoxManageDisk.cpp" line="45 4"/>3146 <location filename="../VBoxManageDisk.cpp" line="81 7"/>3147 <location filename="../VBoxManageDisk.cpp" line="108 7"/>3148 <location filename="../VBoxManageDisk.cpp" line="169 8"/>3149 <location filename="../VBoxManageDisk.cpp" line="181 4"/>3150 <location filename="../VBoxManageDisk.cpp" line="202 6"/>2886 <location filename="../VBoxManageDisk.cpp" line="452"/> 2887 <location filename="../VBoxManageDisk.cpp" line="815"/> 2888 <location filename="../VBoxManageDisk.cpp" line="1085"/> 2889 <location filename="../VBoxManageDisk.cpp" line="1696"/> 2890 <location filename="../VBoxManageDisk.cpp" line="1812"/> 2891 <location filename="../VBoxManageDisk.cpp" line="2024"/> 3151 2892 <source>error: %Rrs</source> 3152 2893 <translation type="unfinished"></translation> 3153 2894 </message> 3154 2895 <message> 2896 <location filename="../VBoxManageDisk.cpp" line="463"/> 2897 <location filename="../VBoxManageDisk.cpp" line="483"/> 2898 <source>Parameters --filename is required</source> 2899 <translation type="unfinished"></translation> 2900 </message> 2901 <message> 3155 2902 <location filename="../VBoxManageDisk.cpp" line="465"/> 3156 <location filename="../VBoxManageDisk.cpp" line="485"/>3157 <source>Parameters --filename is required</source>3158 <translation type="unfinished"></translation>3159 </message>3160 <message>3161 <location filename="../VBoxManageDisk.cpp" line="467"/>3162 2903 <source>Parameters --size is required</source> 3163 2904 <translation type="unfinished"></translation> 3164 2905 </message> 3165 2906 <message> 3166 <location filename="../VBoxManageDisk.cpp" line="48 8"/>2907 <location filename="../VBoxManageDisk.cpp" line="486"/> 3167 2908 <source>Creating a differencing medium is only supported for hard disks</source> 3168 2909 <translation type="unfinished"></translation> 3169 2910 </message> 3170 2911 <message> 3171 <location filename="../VBoxManageDisk.cpp" line="50 7"/>2912 <location filename="../VBoxManageDisk.cpp" line="505"/> 3172 2913 <source>Invalid parent hard disk reference, avoiding crash</source> 3173 2914 <translation type="unfinished"></translation> 3174 2915 </message> 3175 2916 <message> 3176 <location filename="../VBoxManageDisk.cpp" line="5 90"/>2917 <location filename="../VBoxManageDisk.cpp" line="588"/> 3177 2918 <source>The %s is not found in the property list of the requested medium format.</source> 3178 2919 <translation type="unfinished"></translation> 3179 2920 </message> 3180 2921 <message> 3181 <location filename="../VBoxManageDisk.cpp" line=" 600"/>2922 <location filename="../VBoxManageDisk.cpp" line="598"/> 3182 2923 <source>Base64 encoding of the property %s failed. (%Rhrc)</source> 3183 2924 <translation type="unfinished"></translation> 3184 2925 </message> 3185 2926 <message> 3186 <location filename="../VBoxManageDisk.cpp" line="62 4"/>2927 <location filename="../VBoxManageDisk.cpp" line="622"/> 3187 2928 <source>Failed to create medium</source> 3188 2929 <translation type="unfinished"></translation> 3189 2930 </message> 3190 2931 <message> 3191 <location filename="../VBoxManageDisk.cpp" line="63 2"/>2932 <location filename="../VBoxManageDisk.cpp" line="630"/> 3192 2933 <source>Medium created. UUID: %s 3193 2934 </source> … … 3195 2936 </message> 3196 2937 <message> 3197 <location filename="../VBoxManageDisk.cpp" line="7 20"/>2938 <location filename="../VBoxManageDisk.cpp" line="718"/> 3198 2939 <source>Invalid medium type '%s'</source> 3199 2940 <translation type="unfinished"></translation> 3200 2941 </message> 3201 2942 <message> 3202 <location filename="../VBoxManageDisk.cpp" line="72 7"/>2943 <location filename="../VBoxManageDisk.cpp" line="725"/> 3203 2944 <source>Invalid autoreset parameter '%s'</source> 3204 2945 <translation type="unfinished"></translation> 3205 2946 </message> 3206 2947 <message> 3207 <location filename="../VBoxManageDisk.cpp" line="7 50"/>2948 <location filename="../VBoxManageDisk.cpp" line="748"/> 3208 2949 <source>Invalid --property argument '%s'</source> 3209 2950 <translation type="unfinished"></translation> 3210 2951 </message> 3211 2952 <message> 3212 <location filename="../VBoxManageDisk.cpp" line="75 7"/>2953 <location filename="../VBoxManageDisk.cpp" line="755"/> 3213 2954 <source>Error: Failed to allocate memory for medium property '%s' 3214 2955 </source> … … 3216 2957 </message> 3217 2958 <message> 3218 <location filename="../VBoxManageDisk.cpp" line="82 5"/>3219 <location filename="../VBoxManageDisk.cpp" line="170 7"/>3220 <location filename="../VBoxManageDisk.cpp" line="182 2"/>2959 <location filename="../VBoxManageDisk.cpp" line="823"/> 2960 <location filename="../VBoxManageDisk.cpp" line="1705"/> 2961 <location filename="../VBoxManageDisk.cpp" line="1820"/> 3221 2962 <source>Medium name or UUID required</source> 3222 2963 <translation type="unfinished"></translation> 3223 2964 </message> 3224 2965 <message> 3225 <location filename="../VBoxManageDisk.cpp" line="83 6"/>2966 <location filename="../VBoxManageDisk.cpp" line="834"/> 3226 2967 <source>No operation specified</source> 3227 2968 <translation type="unfinished"></translation> 3228 2969 </message> 3229 2970 <message> 3230 <location filename="../VBoxManageDisk.cpp" line="85 7"/>2971 <location filename="../VBoxManageDisk.cpp" line="855"/> 3231 2972 <source>Invalid medium reference, avoiding crash</source> 3232 2973 <translation type="unfinished"></translation> 3233 2974 </message> 3234 2975 <message> 3235 <location filename="../VBoxManageDisk.cpp" line="87 8"/>2976 <location filename="../VBoxManageDisk.cpp" line="876"/> 3236 2977 <source>Error: Attempt to resize the medium from %RU64.%RU64 MB to %RU64.%RU64 MB. Use --resizebyte if this is intended! 3237 2978 </source> … … 3239 2980 </message> 3240 2981 <message> 2982 <location filename="../VBoxManageDisk.cpp" line="910"/> 2983 <source>Compact medium operation is not implemented!</source> 2984 <translation type="unfinished"></translation> 2985 </message> 2986 <message> 3241 2987 <location filename="../VBoxManageDisk.cpp" line="912"/> 3242 <source>Compact medium operation is not implemented!</source>2988 <source>Compact medium operation for this format is not implemented yet!</source> 3243 2989 <translation type="unfinished"></translation> 3244 2990 </message> 3245 2991 <message> 3246 2992 <location filename="../VBoxManageDisk.cpp" line="914"/> 3247 <source> Compact medium operation for this format is not implemented yet!</source>2993 <source>Failed to compact medium</source> 3248 2994 <translation type="unfinished"></translation> 3249 2995 </message> 3250 2996 <message> 3251 2997 <location filename="../VBoxManageDisk.cpp" line="916"/> 3252 <source>Failed to compact medium</source>3253 <translation type="unfinished"></translation>3254 </message>3255 <message>3256 <location filename="../VBoxManageDisk.cpp" line="918"/>3257 2998 <source>Failed to compact medium!</source> 3258 2999 <translation type="unfinished"></translation> 3259 3000 </message> 3260 3001 <message> 3002 <location filename="../VBoxManageDisk.cpp" line="929"/> 3003 <source>Failed to resize medium</source> 3004 <translation type="unfinished"></translation> 3005 </message> 3006 <message> 3261 3007 <location filename="../VBoxManageDisk.cpp" line="931"/> 3262 <source> Failed to resize medium</source>3008 <source>Resize medium operation is not implemented!</source> 3263 3009 <translation type="unfinished"></translation> 3264 3010 </message> 3265 3011 <message> 3266 3012 <location filename="../VBoxManageDisk.cpp" line="933"/> 3267 <source>Resize medium operation is not implemented!</source>3013 <source>Resize medium operation for this format is not implemented yet!</source> 3268 3014 <translation type="unfinished"></translation> 3269 3015 </message> 3270 3016 <message> 3271 3017 <location filename="../VBoxManageDisk.cpp" line="935"/> 3272 <source>Resize medium operation for this format is not implemented yet!</source>3273 <translation type="unfinished"></translation>3274 </message>3275 <message>3276 <location filename="../VBoxManageDisk.cpp" line="937"/>3277 3018 <source>Failed to resize medium!</source> 3278 3019 <translation type="unfinished"></translation> 3279 3020 </message> 3280 3021 <message> 3281 <location filename="../VBoxManageDisk.cpp" line="95 3"/>3022 <location filename="../VBoxManageDisk.cpp" line="951"/> 3282 3023 <source>Failed to move medium</source> 3283 3024 <translation type="unfinished"></translation> 3284 3025 </message> 3285 3026 <message> 3286 <location filename="../VBoxManageDisk.cpp" line="95 9"/>3027 <location filename="../VBoxManageDisk.cpp" line="957"/> 3287 3028 <source>Move medium with UUID %s finished 3288 3029 </source> … … 3290 3031 </message> 3291 3032 <message> 3292 <location filename="../VBoxManageDisk.cpp" line="97 2"/>3033 <location filename="../VBoxManageDisk.cpp" line="970"/> 3293 3034 <source>Set new location of medium with UUID %s finished 3294 3035 </source> … … 3296 3037 </message> 3297 3038 <message> 3298 <location filename="../VBoxManageDisk.cpp" line="97 9"/>3039 <location filename="../VBoxManageDisk.cpp" line="977"/> 3299 3040 <source>Medium description has been changed. 3300 3041 </source> … … 3302 3043 </message> 3303 3044 <message> 3045 <location filename="../VBoxManageDisk.cpp" line="1076"/> 3046 <source>unhandled option: -%c</source> 3047 <translation type="unfinished"></translation> 3048 </message> 3049 <message> 3304 3050 <location filename="../VBoxManageDisk.cpp" line="1078"/> 3305 <source>unhandled option: -%c</source>3306 <translation type="unfinished"></translation>3307 </message>3308 <message>3309 <location filename="../VBoxManageDisk.cpp" line="1080"/>3310 3051 <source>unhandled option: %i</source> 3311 3052 <translation type="unfinished"></translation> 3312 3053 </message> 3313 3054 <message> 3314 <location filename="../VBoxManageDisk.cpp" line="108 3"/>3055 <location filename="../VBoxManageDisk.cpp" line="1081"/> 3315 3056 <source>unknown option: %s</source> 3316 3057 <translation type="unfinished"></translation> 3317 3058 </message> 3318 3059 <message> 3060 <location filename="../VBoxManageDisk.cpp" line="1092"/> 3061 <source>Mandatory UUID or input file parameter missing</source> 3062 <translation type="unfinished"></translation> 3063 </message> 3064 <message> 3319 3065 <location filename="../VBoxManageDisk.cpp" line="1094"/> 3320 <source>Mandatory UUID or input file parameter missing</source>3066 <source>Mandatory output file parameter missing</source> 3321 3067 <translation type="unfinished"></translation> 3322 3068 </message> 3323 3069 <message> 3324 3070 <location filename="../VBoxManageDisk.cpp" line="1096"/> 3325 <source>Mandatory output file parameter missing</source>3326 <translation type="unfinished"></translation>3327 </message>3328 <message>3329 <location filename="../VBoxManageDisk.cpp" line="1098"/>3330 3071 <source>Specified options which cannot be used with --existing</source> 3331 3072 <translation type="unfinished"></translation> 3332 3073 </message> 3333 3074 <message> 3334 <location filename="../VBoxManageDisk.cpp" line="118 6"/>3075 <location filename="../VBoxManageDisk.cpp" line="1184"/> 3335 3076 <source>Failed to clone medium</source> 3336 3077 <translation type="unfinished"></translation> 3337 3078 </message> 3338 3079 <message> 3339 <location filename="../VBoxManageDisk.cpp" line="11 91"/>3080 <location filename="../VBoxManageDisk.cpp" line="1189"/> 3340 3081 <source>Clone medium created in format '%ls'. UUID: %s 3341 3082 </source> … … 3343 3084 </message> 3344 3085 <message> 3345 <location filename="../VBoxManageDisk.cpp" line="123 5"/>3086 <location filename="../VBoxManageDisk.cpp" line="1233"/> 3346 3087 <source>Invalid UUID '%s'</source> 3347 3088 <translation type="unfinished"></translation> 3348 3089 </message> 3349 3090 <message> 3350 <location filename="../VBoxManageDisk.cpp" line="127 2"/>3091 <location filename="../VBoxManageDisk.cpp" line="1270"/> 3351 3092 <source>Incorrect number of parameters</source> 3352 3093 <translation type="unfinished"></translation> 3353 3094 </message> 3354 3095 <message> 3355 <location filename="../VBoxManageDisk.cpp" line="127 3"/>3096 <location filename="../VBoxManageDisk.cpp" line="1271"/> 3356 3097 <source>Converting from raw image file="%s" to file="%s"... 3357 3098 </source> … … 3359 3100 </message> 3360 3101 <message> 3361 <location filename="../VBoxManageDisk.cpp" line="129 5"/>3102 <location filename="../VBoxManageDisk.cpp" line="1293"/> 3362 3103 <source>Cannot open file "%s": %Rrc</source> 3363 3104 <translation type="unfinished"></translation> 3364 3105 </message> 3365 3106 <message> 3366 <location filename="../VBoxManageDisk.cpp" line="130 7"/>3107 <location filename="../VBoxManageDisk.cpp" line="1305"/> 3367 3108 <source>Cannot get image size for file "%s": %Rrc</source> 3368 3109 <translation type="unfinished"></translation> 3369 3110 </message> 3370 3111 <message numerus="yes"> 3371 <location filename="../VBoxManageDisk.cpp" line="13 11"/>3112 <location filename="../VBoxManageDisk.cpp" line="1309"/> 3372 3113 <source>Creating %s image with size %RU64 bytes (%RU64MB)... 3373 3114 </source> … … 3377 3118 </message> 3378 3119 <message> 3379 <location filename="../VBoxManageDisk.cpp" line="131 2"/>3120 <location filename="../VBoxManageDisk.cpp" line="1310"/> 3380 3121 <source>fixed</source> 3381 3122 <comment>adjective</comment> … … 3383 3124 </message> 3384 3125 <message> 3385 <location filename="../VBoxManageDisk.cpp" line="131 2"/>3126 <location filename="../VBoxManageDisk.cpp" line="1310"/> 3386 3127 <source>dynamic</source> 3387 3128 <comment>adjective</comment> … … 3389 3130 </message> 3390 3131 <message> 3391 <location filename="../VBoxManageDisk.cpp" line="131 5"/>3132 <location filename="../VBoxManageDisk.cpp" line="1313"/> 3392 3133 <source>Converted image from %s</source> 3393 3134 <translation type="unfinished"></translation> 3394 3135 </message> 3395 3136 <message> 3396 <location filename="../VBoxManageDisk.cpp" line="131 9"/>3137 <location filename="../VBoxManageDisk.cpp" line="1317"/> 3397 3138 <source>Cannot create the virtual disk container: %Rrc</source> 3398 3139 <translation type="unfinished"></translation> 3399 3140 </message> 3400 3141 <message> 3401 <location filename="../VBoxManageDisk.cpp" line="133 7"/>3142 <location filename="../VBoxManageDisk.cpp" line="1335"/> 3402 3143 <source>Cannot create the disk image "%s": %Rrc</source> 3403 3144 <translation type="unfinished"></translation> 3404 3145 </message> 3405 3146 <message> 3406 <location filename="../VBoxManageDisk.cpp" line="134 7"/>3147 <location filename="../VBoxManageDisk.cpp" line="1345"/> 3407 3148 <source>Out of memory allocating buffers for image "%s": %Rrc</source> 3408 3149 <translation type="unfinished"></translation> 3409 3150 </message> 3410 3151 <message> 3411 <location filename="../VBoxManageDisk.cpp" line="136 6"/>3152 <location filename="../VBoxManageDisk.cpp" line="1364"/> 3412 3153 <source>Failed to write to disk image "%s": %Rrc</source> 3413 3154 <translation type="unfinished"></translation> 3414 3155 </message> 3415 3156 <message> 3416 <location filename="../VBoxManageDisk.cpp" line="139 5"/>3157 <location filename="../VBoxManageDisk.cpp" line="1393"/> 3417 3158 <source>Parent UUID: %s 3418 3159 </source> … … 3420 3161 </message> 3421 3162 <message> 3422 <location filename="../VBoxManageDisk.cpp" line="1 400"/>3423 <location filename="../VBoxManageDisk.cpp" line="144 7"/>3424 <location filename="../VBoxManageDisk.cpp" line="150 2"/>3163 <location filename="../VBoxManageDisk.cpp" line="1398"/> 3164 <location filename="../VBoxManageDisk.cpp" line="1445"/> 3165 <location filename="../VBoxManageDisk.cpp" line="1500"/> 3425 3166 <source>unknown</source> 3426 3167 <translation type="unfinished"></translation> 3427 3168 </message> 3428 3169 <message> 3429 <location filename="../VBoxManageDisk.cpp" line="140 4"/>3170 <location filename="../VBoxManageDisk.cpp" line="1402"/> 3430 3171 <source>not created</source> 3431 3172 <translation type="unfinished"></translation> 3432 3173 </message> 3433 3174 <message> 3434 <location filename="../VBoxManageDisk.cpp" line="140 7"/>3175 <location filename="../VBoxManageDisk.cpp" line="1405"/> 3435 3176 <source>created</source> 3436 3177 <translation type="unfinished"></translation> 3437 3178 </message> 3438 3179 <message> 3439 <location filename="../VBoxManageDisk.cpp" line="14 10"/>3180 <location filename="../VBoxManageDisk.cpp" line="1408"/> 3440 3181 <source>locked read</source> 3441 3182 <translation type="unfinished"></translation> 3442 3183 </message> 3443 3184 <message> 3444 <location filename="../VBoxManageDisk.cpp" line="141 3"/>3185 <location filename="../VBoxManageDisk.cpp" line="1411"/> 3445 3186 <source>locked write</source> 3446 3187 <translation type="unfinished"></translation> 3447 3188 </message> 3448 3189 <message> 3449 <location filename="../VBoxManageDisk.cpp" line="141 6"/>3190 <location filename="../VBoxManageDisk.cpp" line="1414"/> 3450 3191 <source>inaccessible</source> 3451 3192 <translation type="unfinished"></translation> 3452 3193 </message> 3453 3194 <message> 3454 <location filename="../VBoxManageDisk.cpp" line="141 9"/>3195 <location filename="../VBoxManageDisk.cpp" line="1417"/> 3455 3196 <source>creating</source> 3456 3197 <translation type="unfinished"></translation> 3457 3198 </message> 3458 3199 <message> 3459 <location filename="../VBoxManageDisk.cpp" line="142 2"/>3200 <location filename="../VBoxManageDisk.cpp" line="1420"/> 3460 3201 <source>deleting</source> 3461 3202 <translation type="unfinished"></translation> 3462 3203 </message> 3463 3204 <message> 3464 <location filename="../VBoxManageDisk.cpp" line="142 8"/>3205 <location filename="../VBoxManageDisk.cpp" line="1426"/> 3465 3206 <source>State: %s 3466 3207 </source> … … 3468 3209 </message> 3469 3210 <message> 3470 <location filename="../VBoxManageDisk.cpp" line="143 4"/>3211 <location filename="../VBoxManageDisk.cpp" line="1432"/> 3471 3212 <source>Access Error: %ls 3472 3213 </source> … … 3474 3215 </message> 3475 3216 <message> 3476 <location filename="../VBoxManageDisk.cpp" line="144 2"/>3217 <location filename="../VBoxManageDisk.cpp" line="1440"/> 3477 3218 <source>Description: %ls 3478 3219 </source> … … 3480 3221 </message> 3481 3222 <message> 3223 <location filename="../VBoxManageDisk.cpp" line="1450"/> 3224 <source>normal (differencing)</source> 3225 <translation type="unfinished"></translation> 3226 </message> 3227 <message> 3482 3228 <location filename="../VBoxManageDisk.cpp" line="1452"/> 3483 <source>normal (differencing)</source>3484 <translation type="unfinished"></translation>3485 </message>3486 <message>3487 <location filename="../VBoxManageDisk.cpp" line="1454"/>3488 3229 <source>normal (base)</source> 3489 3230 <translation type="unfinished"></translation> 3490 3231 </message> 3491 3232 <message> 3492 <location filename="../VBoxManageDisk.cpp" line="145 7"/>3233 <location filename="../VBoxManageDisk.cpp" line="1455"/> 3493 3234 <source>immutable</source> 3494 3235 <translation type="unfinished"></translation> 3495 3236 </message> 3496 3237 <message> 3497 <location filename="../VBoxManageDisk.cpp" line="14 60"/>3238 <location filename="../VBoxManageDisk.cpp" line="1458"/> 3498 3239 <source>writethrough</source> 3499 3240 <translation type="unfinished"></translation> 3500 3241 </message> 3501 3242 <message> 3502 <location filename="../VBoxManageDisk.cpp" line="146 3"/>3243 <location filename="../VBoxManageDisk.cpp" line="1461"/> 3503 3244 <source>shareable</source> 3504 3245 <translation type="unfinished"></translation> 3505 3246 </message> 3506 3247 <message> 3507 <location filename="../VBoxManageDisk.cpp" line="146 6"/>3248 <location filename="../VBoxManageDisk.cpp" line="1464"/> 3508 3249 <source>readonly</source> 3509 3250 <translation type="unfinished"></translation> 3510 3251 </message> 3511 3252 <message> 3512 <location filename="../VBoxManageDisk.cpp" line="146 9"/>3253 <location filename="../VBoxManageDisk.cpp" line="1467"/> 3513 3254 <source>multiattach</source> 3514 3255 <translation type="unfinished"></translation> 3515 3256 </message> 3516 3257 <message> 3517 <location filename="../VBoxManageDisk.cpp" line="147 5"/>3258 <location filename="../VBoxManageDisk.cpp" line="1473"/> 3518 3259 <source>Type: %s 3519 3260 </source> … … 3521 3262 </message> 3522 3263 <message> 3523 <location filename="../VBoxManageDisk.cpp" line="148 2"/>3264 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3524 3265 <source>Auto-Reset: %s 3525 3266 </source> … … 3527 3268 </message> 3528 3269 <message> 3529 <location filename="../VBoxManageDisk.cpp" line="148 2"/>3270 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3530 3271 <source>on</source> 3531 3272 <translation type="unfinished"></translation> 3532 3273 </message> 3533 3274 <message> 3534 <location filename="../VBoxManageDisk.cpp" line="148 2"/>3275 <location filename="../VBoxManageDisk.cpp" line="1480"/> 3535 3276 <source>off</source> 3536 3277 <translation type="unfinished"></translation> 3537 3278 </message> 3538 3279 <message> 3539 <location filename="../VBoxManageDisk.cpp" line="148 7"/>3280 <location filename="../VBoxManageDisk.cpp" line="1485"/> 3540 3281 <source>Location: %ls 3541 3282 </source> … … 3543 3284 </message> 3544 3285 <message> 3545 <location filename="../VBoxManageDisk.cpp" line="14 91"/>3286 <location filename="../VBoxManageDisk.cpp" line="1489"/> 3546 3287 <source>Storage format: %ls 3547 3288 </source> … … 3549 3290 </message> 3550 3291 <message> 3551 <location filename="../VBoxManageDisk.cpp" line="150 6"/>3292 <location filename="../VBoxManageDisk.cpp" line="1504"/> 3552 3293 <source>split2G</source> 3553 3294 <translation type="unfinished"></translation> 3554 3295 </message> 3555 3296 <message> 3556 <location filename="../VBoxManageDisk.cpp" line="150 9"/>3297 <location filename="../VBoxManageDisk.cpp" line="1507"/> 3557 3298 <source>streamOptimized</source> 3558 3299 <translation type="unfinished"></translation> 3559 3300 </message> 3560 3301 <message> 3561 <location filename="../VBoxManageDisk.cpp" line="151 2"/>3302 <location filename="../VBoxManageDisk.cpp" line="1510"/> 3562 3303 <source>ESX</source> 3563 3304 <translation type="unfinished"></translation> 3564 3305 </message> 3565 3306 <message> 3566 <location filename="../VBoxManageDisk.cpp" line="151 5"/>3307 <location filename="../VBoxManageDisk.cpp" line="1513"/> 3567 3308 <source>default</source> 3568 3309 <translation type="unfinished"></translation> 3569 3310 </message> 3570 3311 <message> 3312 <location filename="../VBoxManageDisk.cpp" line="1516"/> 3313 <source>dynamic</source> 3314 <translation type="unfinished"></translation> 3315 </message> 3316 <message> 3571 3317 <location filename="../VBoxManageDisk.cpp" line="1518"/> 3572 <source> dynamic</source>3318 <source>fixed</source> 3573 3319 <translation type="unfinished"></translation> 3574 3320 </message> 3575 3321 <message> 3576 3322 <location filename="../VBoxManageDisk.cpp" line="1520"/> 3577 <source>fixed</source>3578 <translation type="unfinished"></translation>3579 </message>3580 <message>3581 <location filename="../VBoxManageDisk.cpp" line="1522"/>3582 3323 <source>differencing</source> 3583 3324 <translation type="unfinished"></translation> 3584 3325 </message> 3585 3326 <message> 3586 <location filename="../VBoxManageDisk.cpp" line="152 3"/>3327 <location filename="../VBoxManageDisk.cpp" line="1521"/> 3587 3328 <source>Format variant: %s %s 3588 3329 </source> … … 3590 3331 </message> 3591 3332 <message> 3592 <location filename="../VBoxManageDisk.cpp" line="152 8"/>3333 <location filename="../VBoxManageDisk.cpp" line="1526"/> 3593 3334 <source>Capacity: %lld MBytes 3594 3335 </source> … … 3596 3337 </message> 3597 3338 <message> 3598 <location filename="../VBoxManageDisk.cpp" line="153 3"/>3339 <location filename="../VBoxManageDisk.cpp" line="1531"/> 3599 3340 <source>Size on disk: %lld MBytes 3600 3341 </source> … … 3602 3343 </message> 3603 3344 <message> 3604 <location filename="../VBoxManageDisk.cpp" line="15 41"/>3345 <location filename="../VBoxManageDisk.cpp" line="1539"/> 3605 3346 <source>Encryption: enabled 3606 3347 </source> … … 3608 3349 </message> 3609 3350 <message> 3610 <location filename="../VBoxManageDisk.cpp" line="154 4"/>3351 <location filename="../VBoxManageDisk.cpp" line="1542"/> 3611 3352 <source>Cipher: %ls 3612 3353 </source> … … 3614 3355 </message> 3615 3356 <message> 3616 <location filename="../VBoxManageDisk.cpp" line="154 5"/>3357 <location filename="../VBoxManageDisk.cpp" line="1543"/> 3617 3358 <source>Password ID: %ls 3618 3359 </source> … … 3620 3361 </message> 3621 3362 <message> 3622 <location filename="../VBoxManageDisk.cpp" line="154 9"/>3363 <location filename="../VBoxManageDisk.cpp" line="1547"/> 3623 3364 <source>Encryption: disabled 3624 3365 </source> … … 3626 3367 </message> 3627 3368 <message> 3628 <location filename="../VBoxManageDisk.cpp" line="156 5"/>3369 <location filename="../VBoxManageDisk.cpp" line="1563"/> 3629 3370 <source>Property: </source> 3630 3371 <translation type="unfinished"></translation> 3631 3372 </message> 3632 3373 <message> 3633 <location filename="../VBoxManageDisk.cpp" line="158 6"/>3374 <location filename="../VBoxManageDisk.cpp" line="1584"/> 3634 3375 <source>In use by VMs: </source> 3635 3376 <translation type="unfinished"></translation> 3636 3377 </message> 3637 3378 <message> 3638 <location filename="../VBoxManageDisk.cpp" line="16 21"/>3379 <location filename="../VBoxManageDisk.cpp" line="1619"/> 3639 3380 <source>Child UUIDs: </source> 3640 3381 <translation type="unfinished"></translation> 3641 3382 </message> 3642 3383 <message> 3643 <location filename="../VBoxManageDisk.cpp" line="172 7"/>3384 <location filename="../VBoxManageDisk.cpp" line="1725"/> 3644 3385 <source>base</source> 3645 3386 <translation type="unfinished"></translation> 3646 3387 </message> 3647 3388 <message> 3648 <location filename="../VBoxManageDisk.cpp" line="184 7"/>3389 <location filename="../VBoxManageDisk.cpp" line="1845"/> 3649 3390 <source>Failed to delete medium</source> 3650 3391 <translation type="unfinished"></translation> 3651 3392 </message> 3652 3393 <message> 3653 <location filename="../VBoxManageDisk.cpp" line="18 50"/>3394 <location filename="../VBoxManageDisk.cpp" line="1848"/> 3654 3395 <source>Failed to delete medium. Error code %Rrc</source> 3655 3396 <translation type="unfinished"></translation> 3656 3397 </message> 3657 3398 <message> 3658 <location filename="../VBoxManageDisk.cpp" line="188 6"/>3399 <location filename="../VBoxManageDisk.cpp" line="1884"/> 3659 3400 <source>unexpected parameter %s 3660 3401 </source> … … 3662 3403 </message> 3663 3404 <message> 3664 <location filename="../VBoxManageDisk.cpp" line="189 9"/>3405 <location filename="../VBoxManageDisk.cpp" line="1897"/> 3665 3406 <source>Missing action</source> 3666 3407 <translation type="unfinished"></translation> 3667 3408 </message> 3668 3409 <message> 3669 <location filename="../VBoxManageDisk.cpp" line="190 5"/>3410 <location filename="../VBoxManageDisk.cpp" line="1903"/> 3670 3411 <source>Invalid action given: %s</source> 3671 3412 <translation type="unfinished"></translation> 3672 3413 </message> 3673 3414 <message> 3674 <location filename="../VBoxManageDisk.cpp" line="19 11"/>3415 <location filename="../VBoxManageDisk.cpp" line="1909"/> 3675 3416 <source>Invalid number of arguments given for action: %s</source> 3676 3417 <translation type="unfinished"></translation> 3677 3418 </message> 3678 3419 <message> 3679 <location filename="../VBoxManageDisk.cpp" line="20 31"/>3420 <location filename="../VBoxManageDisk.cpp" line="2029"/> 3680 3421 <source>Disk name or UUID required</source> 3681 3422 <translation type="unfinished"></translation> 3682 3423 </message> 3683 3424 <message> 3684 <location filename="../VBoxManageDisk.cpp" line="203 4"/>3425 <location filename="../VBoxManageDisk.cpp" line="2032"/> 3685 3426 <source>No password specified</source> 3686 3427 <translation type="unfinished"></translation> 3687 3428 </message> 3688 3429 <message> 3689 <location filename="../VBoxManageDisk.cpp" line="203 9"/>3430 <location filename="../VBoxManageDisk.cpp" line="2036"/> 3690 3431 <source>A new password must always have a valid identifier set at the same time</source> 3691 3432 <translation type="unfinished"></translation> 3692 3433 </message> 3693 3434 <message> 3694 <location filename="../VBoxManageDisk.cpp" line="204 6"/>3435 <location filename="../VBoxManageDisk.cpp" line="2043"/> 3695 3436 <source>Enter new password:</source> 3696 3437 <translation type="unfinished"></translation> 3697 3438 </message> 3698 3439 <message> 3699 <location filename="../VBoxManageDisk.cpp" line="205 5"/>3440 <location filename="../VBoxManageDisk.cpp" line="2052"/> 3700 3441 <source>Failed to read new password from file</source> 3701 3442 <translation type="unfinished"></translation> 3702 3443 </message> 3703 3444 <message> 3704 <location filename="../VBoxManageDisk.cpp" line="206 6"/>3445 <location filename="../VBoxManageDisk.cpp" line="2063"/> 3705 3446 <source>Enter old password:</source> 3706 3447 <translation type="unfinished"></translation> 3707 3448 </message> 3708 3449 <message> 3709 <location filename="../VBoxManageDisk.cpp" line="207 5"/>3450 <location filename="../VBoxManageDisk.cpp" line="2072"/> 3710 3451 <source>Failed to read old password from file</source> 3711 3452 <translation type="unfinished"></translation> 3712 3453 </message> 3713 3454 <message> 3714 <location filename="../VBoxManageDisk.cpp" line="208 8"/>3715 <location filename="../VBoxManageDisk.cpp" line="214 7"/>3455 <location filename="../VBoxManageDisk.cpp" line="2085"/> 3456 <location filename="../VBoxManageDisk.cpp" line="2144"/> 3716 3457 <source>Invalid hard disk reference, avoiding crash</source> 3717 3458 <translation type="unfinished"></translation> 3718 3459 </message> 3719 3460 <message> 3720 <location filename="../VBoxManageDisk.cpp" line="209 9"/>3461 <location filename="../VBoxManageDisk.cpp" line="2096"/> 3721 3462 <source>Encrypt hard disk operation is not implemented!</source> 3722 3463 <translation type="unfinished"></translation> 3723 3464 </message> 3724 3465 <message> 3725 <location filename="../VBoxManageDisk.cpp" line="2 101"/>3466 <location filename="../VBoxManageDisk.cpp" line="2098"/> 3726 3467 <source>Encrypt hard disk operation for this cipher is not implemented yet!</source> 3727 3468 <translation type="unfinished"></translation> 3728 3469 </message> 3729 3470 <message> 3730 <location filename="../VBoxManageDisk.cpp" line="210 3"/>3471 <location filename="../VBoxManageDisk.cpp" line="2100"/> 3731 3472 <source>Failed to encrypt hard disk</source> 3732 3473 <translation type="unfinished"></translation> 3733 3474 </message> 3734 3475 <message> 3735 <location filename="../VBoxManageDisk.cpp" line="210 5"/>3476 <location filename="../VBoxManageDisk.cpp" line="2102"/> 3736 3477 <source>Failed to encrypt hard disk!</source> 3737 3478 <translation type="unfinished"></translation> 3738 3479 </message> 3739 3480 <message> 3740 <location filename="../VBoxManageDisk.cpp" line="211 9"/>3481 <location filename="../VBoxManageDisk.cpp" line="2116"/> 3741 3482 <source>Invalid number of arguments: %d</source> 3742 3483 <translation type="unfinished"></translation> 3743 3484 </message> 3744 3485 <message> 3745 <location filename="../VBoxManageDisk.cpp" line="212 6"/>3486 <location filename="../VBoxManageDisk.cpp" line="2123"/> 3746 3487 <source>Enter password:</source> 3747 3488 <translation type="unfinished"></translation> 3748 3489 </message> 3749 3490 <message> 3750 <location filename="../VBoxManageDisk.cpp" line="213 5"/>3491 <location filename="../VBoxManageDisk.cpp" line="2132"/> 3751 3492 <source>Failed to read password from file</source> 3752 3493 <translation type="unfinished"></translation> 3753 3494 </message> 3754 3495 <message> 3755 <location filename="../VBoxManageDisk.cpp" line="21 51"/>3496 <location filename="../VBoxManageDisk.cpp" line="2148"/> 3756 3497 <source>The given password is correct 3757 3498 </source> … … 3759 3500 </message> 3760 3501 <message> 3761 <location filename="../VBoxManageDisk.cpp" line="222 9"/>3502 <location filename="../VBoxManageDisk.cpp" line="2226"/> 3762 3503 <source>No medium specified!</source> 3763 3504 <translation type="unfinished"></translation> 3764 3505 </message> 3765 3506 <message> 3766 <location filename="../VBoxManageDisk.cpp" line="22 40"/>3507 <location filename="../VBoxManageDisk.cpp" line="2237"/> 3767 3508 <source>Enter encryption password:</source> 3768 3509 <translation type="unfinished"></translation> 3769 3510 </message> 3770 3511 <message> 3771 <location filename="../VBoxManageDisk.cpp" line="23 92"/>3772 <location filename="../VBoxManageDisk.cpp" line="261 3"/>3512 <location filename="../VBoxManageDisk.cpp" line="2389"/> 3513 <location filename="../VBoxManageDisk.cpp" line="2610"/> 3773 3514 <source>Error opening '%s' for writing: %Rrc</source> 3774 3515 <translation type="unfinished"></translation> 3775 3516 </message> 3776 3517 <message> 3777 <location filename="../VBoxManageDisk.cpp" line="240 8"/>3518 <location filename="../VBoxManageDisk.cpp" line="2405"/> 3778 3519 <source>Specified offset (%#RX64) is beyond the end of the medium (%#RX64)</source> 3779 3520 <translation type="unfinished"></translation> 3780 3521 </message> 3781 3522 <message numerus="yes"> 3782 <location filename="../VBoxManageDisk.cpp" line="243 8"/>3523 <location filename="../VBoxManageDisk.cpp" line="2435"/> 3783 3524 <source>Read(%zu bytes at %#RX64)</source> 3784 3525 <translation type="unfinished"> … … 3787 3528 </message> 3788 3529 <message> 3789 <location filename="../VBoxManageDisk.cpp" line="246 7"/>3530 <location filename="../VBoxManageDisk.cpp" line="2464"/> 3790 3531 <source>********** <ditto x %RU64> 3791 3532 </source> … … 3793 3534 </message> 3794 3535 <message> 3795 <location filename="../VBoxManageDisk.cpp" line="251 6"/>3796 <location filename="../VBoxManageDisk.cpp" line="265 7"/>3536 <location filename="../VBoxManageDisk.cpp" line="2513"/> 3537 <location filename="../VBoxManageDisk.cpp" line="2654"/> 3797 3538 <source>Error writing to '%s': %Rrc</source> 3798 3539 <translation type="unfinished"></translation> 3799 3540 </message> 3800 3541 <message numerus="yes"> 3801 <location filename="../VBoxManageDisk.cpp" line="252 4"/>3542 <location filename="../VBoxManageDisk.cpp" line="2521"/> 3802 3543 <source>Expected read() at offset %RU64 (%#RX64) to return %#zx bytes, only got %#zx! 3803 3544 </source> … … 3807 3548 </message> 3808 3549 <message> 3809 <location filename="../VBoxManageDisk.cpp" line="25 40"/>3810 <location filename="../VBoxManageDisk.cpp" line="267 8"/>3550 <location filename="../VBoxManageDisk.cpp" line="2537"/> 3551 <location filename="../VBoxManageDisk.cpp" line="2675"/> 3811 3552 <source>Error closing '%s': %Rrc</source> 3812 3553 <translation type="unfinished"></translation> … … 3816 3557 <name>GuestCtrl</name> 3817 3558 <message> 3818 <location filename="../VBoxManageGuestCtrl.cpp" line=" 419"/>3559 <location filename="../VBoxManageGuestCtrl.cpp" line="276"/> 3819 3560 <source>Unable to install console control handler, rc=%Rrc 3820 3561 </source> … … 3822 3563 </message> 3823 3564 <message> 3824 <location filename="../VBoxManageGuestCtrl.cpp" line=" 446"/>3565 <location filename="../VBoxManageGuestCtrl.cpp" line="303"/> 3825 3566 <source>Unable to uninstall console control handler, rc=%Rrc 3826 3567 </source> … … 3828 3569 </message> 3829 3570 <message> 3830 <location filename="../VBoxManageGuestCtrl.cpp" line=" 473"/>3831 <location filename="../VBoxManageGuestCtrl.cpp" line=" 539"/>3571 <location filename="../VBoxManageGuestCtrl.cpp" line="332"/> 3572 <location filename="../VBoxManageGuestCtrl.cpp" line="398"/> 3832 3573 <source>starting</source> 3833 3574 <translation type="unfinished"></translation> 3834 3575 </message> 3835 3576 <message> 3836 <location filename="../VBoxManageGuestCtrl.cpp" line=" 475"/>3837 <location filename="../VBoxManageGuestCtrl.cpp" line=" 508"/>3838 <location filename="../VBoxManageGuestCtrl.cpp" line=" 541"/>3577 <location filename="../VBoxManageGuestCtrl.cpp" line="334"/> 3578 <location filename="../VBoxManageGuestCtrl.cpp" line="367"/> 3579 <location filename="../VBoxManageGuestCtrl.cpp" line="400"/> 3839 3580 <source>started</source> 3840 3581 <translation type="unfinished"></translation> 3841 3582 </message> 3842 3583 <message> 3843 <location filename="../VBoxManageGuestCtrl.cpp" line=" 477"/>3584 <location filename="../VBoxManageGuestCtrl.cpp" line="336"/> 3844 3585 <source>paused</source> 3845 3586 <translation type="unfinished"></translation> 3846 3587 </message> 3847 3588 <message> 3848 <location filename="../VBoxManageGuestCtrl.cpp" line=" 479"/>3849 <location filename="../VBoxManageGuestCtrl.cpp" line=" 543"/>3589 <location filename="../VBoxManageGuestCtrl.cpp" line="338"/> 3590 <location filename="../VBoxManageGuestCtrl.cpp" line="402"/> 3850 3591 <source>terminating</source> 3851 3592 <translation type="unfinished"></translation> 3852 3593 </message> 3853 3594 <message> 3854 <location filename="../VBoxManageGuestCtrl.cpp" line=" 481"/>3595 <location filename="../VBoxManageGuestCtrl.cpp" line="340"/> 3855 3596 <source>successfully terminated</source> 3856 3597 <translation type="unfinished"></translation> 3857 3598 </message> 3858 3599 <message> 3600 <location filename="../VBoxManageGuestCtrl.cpp" line="342"/> 3601 <source>terminated by signal</source> 3602 <translation type="unfinished"></translation> 3603 </message> 3604 <message> 3605 <location filename="../VBoxManageGuestCtrl.cpp" line="344"/> 3606 <source>abnormally aborted</source> 3607 <translation type="unfinished"></translation> 3608 </message> 3609 <message> 3610 <location filename="../VBoxManageGuestCtrl.cpp" line="346"/> 3611 <location filename="../VBoxManageGuestCtrl.cpp" line="375"/> 3612 <location filename="../VBoxManageGuestCtrl.cpp" line="406"/> 3613 <source>timed out</source> 3614 <translation type="unfinished"></translation> 3615 </message> 3616 <message> 3617 <location filename="../VBoxManageGuestCtrl.cpp" line="348"/> 3618 <location filename="../VBoxManageGuestCtrl.cpp" line="408"/> 3619 <source>timed out, hanging</source> 3620 <translation type="unfinished"></translation> 3621 </message> 3622 <message> 3623 <location filename="../VBoxManageGuestCtrl.cpp" line="350"/> 3624 <location filename="../VBoxManageGuestCtrl.cpp" line="410"/> 3625 <location filename="../VBoxManageGuestCtrl.cpp" line="435"/> 3626 <source>killed</source> 3627 <translation type="unfinished"></translation> 3628 </message> 3629 <message> 3630 <location filename="../VBoxManageGuestCtrl.cpp" line="352"/> 3631 <location filename="../VBoxManageGuestCtrl.cpp" line="373"/> 3632 <location filename="../VBoxManageGuestCtrl.cpp" line="412"/> 3633 <location filename="../VBoxManageGuestCtrl.cpp" line="437"/> 3634 <source>error</source> 3635 <translation type="unfinished"></translation> 3636 </message> 3637 <message> 3638 <location filename="../VBoxManageGuestCtrl.cpp" line="356"/> 3639 <location filename="../VBoxManageGuestCtrl.cpp" line="387"/> 3640 <location filename="../VBoxManageGuestCtrl.cpp" line="416"/> 3641 <location filename="../VBoxManageGuestCtrl.cpp" line="441"/> 3642 <location filename="../VBoxManageGuestCtrl.cpp" line="451"/> 3643 <location filename="../VBoxManageGuestCtrl.cpp" line="464"/> 3644 <source>unknown</source> 3645 <translation type="unfinished"></translation> 3646 </message> 3647 <message> 3648 <location filename="../VBoxManageGuestCtrl.cpp" line="369"/> 3649 <location filename="../VBoxManageGuestCtrl.cpp" line="404"/> 3650 <source>terminated</source> 3651 <translation type="unfinished"></translation> 3652 </message> 3653 <message> 3654 <location filename="../VBoxManageGuestCtrl.cpp" line="371"/> 3655 <source>status changed</source> 3656 <translation type="unfinished"></translation> 3657 </message> 3658 <message> 3659 <location filename="../VBoxManageGuestCtrl.cpp" line="377"/> 3660 <source>stdin ready</source> 3661 <translation type="unfinished"></translation> 3662 </message> 3663 <message> 3664 <location filename="../VBoxManageGuestCtrl.cpp" line="379"/> 3665 <source>data on stdout</source> 3666 <translation type="unfinished"></translation> 3667 </message> 3668 <message> 3669 <location filename="../VBoxManageGuestCtrl.cpp" line="381"/> 3670 <source>data on stderr</source> 3671 <translation type="unfinished"></translation> 3672 </message> 3673 <message> 3674 <location filename="../VBoxManageGuestCtrl.cpp" line="383"/> 3675 <source>waiting flag not supported</source> 3676 <translation type="unfinished"></translation> 3677 </message> 3678 <message> 3679 <location filename="../VBoxManageGuestCtrl.cpp" line="427"/> 3680 <source>opening</source> 3681 <translation type="unfinished"></translation> 3682 </message> 3683 <message> 3684 <location filename="../VBoxManageGuestCtrl.cpp" line="429"/> 3685 <source>open</source> 3686 <translation type="unfinished"></translation> 3687 </message> 3688 <message> 3689 <location filename="../VBoxManageGuestCtrl.cpp" line="431"/> 3690 <source>closing</source> 3691 <translation type="unfinished"></translation> 3692 </message> 3693 <message> 3694 <location filename="../VBoxManageGuestCtrl.cpp" line="433"/> 3695 <source>closed</source> 3696 <translation type="unfinished"></translation> 3697 </message> 3698 <message> 3699 <location filename="../VBoxManageGuestCtrl.cpp" line="452"/> 3700 <source>fifo</source> 3701 <translation type="unfinished"></translation> 3702 </message> 3703 <message> 3704 <location filename="../VBoxManageGuestCtrl.cpp" line="453"/> 3705 <source>char-device</source> 3706 <translation type="unfinished"></translation> 3707 </message> 3708 <message> 3709 <location filename="../VBoxManageGuestCtrl.cpp" line="454"/> 3710 <source>directory</source> 3711 <translation type="unfinished"></translation> 3712 </message> 3713 <message> 3714 <location filename="../VBoxManageGuestCtrl.cpp" line="455"/> 3715 <source>block-device</source> 3716 <translation type="unfinished"></translation> 3717 </message> 3718 <message> 3719 <location filename="../VBoxManageGuestCtrl.cpp" line="456"/> 3720 <source>file</source> 3721 <translation type="unfinished"></translation> 3722 </message> 3723 <message> 3724 <location filename="../VBoxManageGuestCtrl.cpp" line="457"/> 3725 <source>symlink</source> 3726 <translation type="unfinished"></translation> 3727 </message> 3728 <message> 3729 <location filename="../VBoxManageGuestCtrl.cpp" line="458"/> 3730 <source>socket</source> 3731 <translation type="unfinished"></translation> 3732 </message> 3733 <message> 3734 <location filename="../VBoxManageGuestCtrl.cpp" line="459"/> 3735 <source>white-out</source> 3736 <translation type="unfinished"></translation> 3737 </message> 3738 <message> 3739 <location filename="../VBoxManageGuestCtrl.cpp" line="478"/> 3740 <source>Error details:</source> 3741 <translation type="unfinished"></translation> 3742 </message> 3743 <message> 3859 3744 <location filename="../VBoxManageGuestCtrl.cpp" line="483"/> 3860 <source>terminated by signal</source> 3861 <translation type="unfinished"></translation> 3862 </message> 3863 <message> 3864 <location filename="../VBoxManageGuestCtrl.cpp" line="485"/> 3865 <source>abnormally aborted</source> 3866 <translation type="unfinished"></translation> 3867 </message> 3868 <message> 3869 <location filename="../VBoxManageGuestCtrl.cpp" line="487"/> 3870 <location filename="../VBoxManageGuestCtrl.cpp" line="516"/> 3871 <location filename="../VBoxManageGuestCtrl.cpp" line="547"/> 3872 <source>timed out</source> 3873 <translation type="unfinished"></translation> 3874 </message> 3875 <message> 3876 <location filename="../VBoxManageGuestCtrl.cpp" line="489"/> 3877 <location filename="../VBoxManageGuestCtrl.cpp" line="549"/> 3878 <source>timed out, hanging</source> 3879 <translation type="unfinished"></translation> 3880 </message> 3881 <message> 3882 <location filename="../VBoxManageGuestCtrl.cpp" line="491"/> 3883 <location filename="../VBoxManageGuestCtrl.cpp" line="551"/> 3884 <location filename="../VBoxManageGuestCtrl.cpp" line="576"/> 3885 <source>killed</source> 3886 <translation type="unfinished"></translation> 3887 </message> 3888 <message> 3889 <location filename="../VBoxManageGuestCtrl.cpp" line="493"/> 3890 <location filename="../VBoxManageGuestCtrl.cpp" line="514"/> 3891 <location filename="../VBoxManageGuestCtrl.cpp" line="553"/> 3892 <location filename="../VBoxManageGuestCtrl.cpp" line="578"/> 3893 <source>error</source> 3894 <translation type="unfinished"></translation> 3895 </message> 3896 <message> 3897 <location filename="../VBoxManageGuestCtrl.cpp" line="497"/> 3898 <location filename="../VBoxManageGuestCtrl.cpp" line="528"/> 3899 <location filename="../VBoxManageGuestCtrl.cpp" line="557"/> 3900 <location filename="../VBoxManageGuestCtrl.cpp" line="582"/> 3901 <location filename="../VBoxManageGuestCtrl.cpp" line="592"/> 3902 <location filename="../VBoxManageGuestCtrl.cpp" line="605"/> 3903 <source>unknown</source> 3904 <translation type="unfinished"></translation> 3905 </message> 3906 <message> 3907 <location filename="../VBoxManageGuestCtrl.cpp" line="510"/> 3908 <location filename="../VBoxManageGuestCtrl.cpp" line="545"/> 3909 <source>terminated</source> 3910 <translation type="unfinished"></translation> 3911 </message> 3912 <message> 3913 <location filename="../VBoxManageGuestCtrl.cpp" line="512"/> 3914 <source>status changed</source> 3915 <translation type="unfinished"></translation> 3916 </message> 3917 <message> 3918 <location filename="../VBoxManageGuestCtrl.cpp" line="518"/> 3919 <source>stdin ready</source> 3920 <translation type="unfinished"></translation> 3921 </message> 3922 <message> 3923 <location filename="../VBoxManageGuestCtrl.cpp" line="520"/> 3924 <source>data on stdout</source> 3925 <translation type="unfinished"></translation> 3926 </message> 3927 <message> 3928 <location filename="../VBoxManageGuestCtrl.cpp" line="522"/> 3929 <source>data on stderr</source> 3930 <translation type="unfinished"></translation> 3931 </message> 3932 <message> 3933 <location filename="../VBoxManageGuestCtrl.cpp" line="524"/> 3934 <source>waiting flag not supported</source> 3935 <translation type="unfinished"></translation> 3936 </message> 3937 <message> 3938 <location filename="../VBoxManageGuestCtrl.cpp" line="568"/> 3939 <source>opening</source> 3940 <translation type="unfinished"></translation> 3941 </message> 3942 <message> 3943 <location filename="../VBoxManageGuestCtrl.cpp" line="570"/> 3944 <source>open</source> 3945 <translation type="unfinished"></translation> 3946 </message> 3947 <message> 3948 <location filename="../VBoxManageGuestCtrl.cpp" line="572"/> 3949 <source>closing</source> 3745 <source>Object has indicated no error (%Rhrc)!? 3746 </source> 3747 <translation type="unfinished"></translation> 3748 </message> 3749 <message> 3750 <location filename="../VBoxManageGuestCtrl.cpp" line="515"/> 3751 <source>Could not lookup progress information 3752 </source> 3950 3753 <translation type="unfinished"></translation> 3951 3754 </message> 3952 3755 <message> 3953 3756 <location filename="../VBoxManageGuestCtrl.cpp" line="574"/> 3954 <source>closed</source> 3955 <translation type="unfinished"></translation> 3956 </message> 3957 <message> 3958 <location filename="../VBoxManageGuestCtrl.cpp" line="593"/> 3959 <source>fifo</source> 3960 <translation type="unfinished"></translation> 3961 </message> 3962 <message> 3963 <location filename="../VBoxManageGuestCtrl.cpp" line="594"/> 3964 <source>char-device</source> 3965 <translation type="unfinished"></translation> 3966 </message> 3967 <message> 3968 <location filename="../VBoxManageGuestCtrl.cpp" line="595"/> 3969 <source>directory</source> 3970 <translation type="unfinished"></translation> 3971 </message> 3972 <message> 3973 <location filename="../VBoxManageGuestCtrl.cpp" line="596"/> 3974 <source>block-device</source> 3975 <translation type="unfinished"></translation> 3976 </message> 3977 <message> 3978 <location filename="../VBoxManageGuestCtrl.cpp" line="597"/> 3979 <source>file</source> 3980 <translation type="unfinished"></translation> 3981 </message> 3982 <message> 3983 <location filename="../VBoxManageGuestCtrl.cpp" line="598"/> 3984 <source>symlink</source> 3985 <translation type="unfinished"></translation> 3986 </message> 3987 <message> 3988 <location filename="../VBoxManageGuestCtrl.cpp" line="599"/> 3989 <source>socket</source> 3990 <translation type="unfinished"></translation> 3991 </message> 3992 <message> 3993 <location filename="../VBoxManageGuestCtrl.cpp" line="600"/> 3994 <source>white-out</source> 3995 <translation type="unfinished"></translation> 3996 </message> 3997 <message> 3998 <location filename="../VBoxManageGuestCtrl.cpp" line="619"/> 3999 <source>Error details:</source> 4000 <translation type="unfinished"></translation> 4001 </message> 4002 <message> 4003 <location filename="../VBoxManageGuestCtrl.cpp" line="624"/> 4004 <source>Object has indicated no error (%Rhrc)!? 4005 </source> 4006 <translation type="unfinished"></translation> 4007 </message> 4008 <message> 4009 <location filename="../VBoxManageGuestCtrl.cpp" line="656"/> 4010 <source>Could not lookup progress information 4011 </source> 4012 <translation type="unfinished"></translation> 4013 </message> 4014 <message> 4015 <location filename="../VBoxManageGuestCtrl.cpp" line="715"/> 4016 <location filename="../VBoxManageGuestCtrl.cpp" line="3400"/> 3757 <location filename="../VBoxManageGuestCtrl.cpp" line="3247"/> 4017 3758 <source>Out of memory</source> 4018 3759 <translation type="unfinished"></translation> 4019 3760 </message> 4020 3761 <message> 4021 <location filename="../VBoxManageGuestCtrl.cpp" line=" 743"/>3762 <location filename="../VBoxManageGuestCtrl.cpp" line="602"/> 4022 3763 <source>The --username|-u option is ignored by '%s'</source> 4023 3764 <translation type="unfinished"></translation> 4024 3765 </message> 4025 3766 <message> 4026 <location filename="../VBoxManageGuestCtrl.cpp" line=" 750"/>3767 <location filename="../VBoxManageGuestCtrl.cpp" line="609"/> 4027 3768 <source>Password is given more than once.</source> 4028 3769 <translation type="unfinished"></translation> 4029 3770 </message> 4030 3771 <message> 3772 <location filename="../VBoxManageGuestCtrl.cpp" line="613"/> 3773 <source>The --password option is ignored by '%s'</source> 3774 <translation type="unfinished"></translation> 3775 </message> 3776 <message> 3777 <location filename="../VBoxManageGuestCtrl.cpp" line="620"/> 3778 <source>The --password-file|-p option is ignored by '%s'</source> 3779 <translation type="unfinished"></translation> 3780 </message> 3781 <message> 3782 <location filename="../VBoxManageGuestCtrl.cpp" line="627"/> 3783 <source>The --domain option is ignored by '%s'</source> 3784 <translation type="unfinished"></translation> 3785 </message> 3786 <message> 3787 <location filename="../VBoxManageGuestCtrl.cpp" line="692"/> 3788 <source>Failed to get a IConsole pointer for the machine. Is it still running? 3789 </source> 3790 <translation type="unfinished"></translation> 3791 </message> 3792 <message> 3793 <location filename="../VBoxManageGuestCtrl.cpp" line="697"/> 3794 <source>Machine "%s" is not running (currently %s)! 3795 </source> 3796 <translation type="unfinished"></translation> 3797 </message> 3798 <message> 3799 <location filename="../VBoxManageGuestCtrl.cpp" line="726"/> 3800 <source>[%RU32] VBoxManage Guest Control [%s] - %s</source> 3801 <translation type="unfinished"></translation> 3802 </message> 3803 <message> 3804 <location filename="../VBoxManageGuestCtrl.cpp" line="728"/> 3805 <source>No enough memory for session name</source> 3806 <translation type="unfinished"></translation> 3807 </message> 3808 <message> 3809 <location filename="../VBoxManageGuestCtrl.cpp" line="734"/> 3810 <source>Creating guest session as user '%s'... 3811 </source> 3812 <translation type="unfinished"></translation> 3813 </message> 3814 <message> 3815 <location filename="../VBoxManageGuestCtrl.cpp" line="745"/> 3816 <source>Out of memory setting up IGuest::CreateSession call</source> 3817 <translation type="unfinished"></translation> 3818 </message> 3819 <message> 4031 3820 <location filename="../VBoxManageGuestCtrl.cpp" line="754"/> 4032 <source>The --password option is ignored by '%s'</source>4033 <translation type="unfinished"></translation>4034 </message>4035 <message>4036 <location filename="../VBoxManageGuestCtrl.cpp" line="761"/>4037 <source>The --password-file|-p option is ignored by '%s'</source>4038 <translation type="unfinished"></translation>4039 </message>4040 <message>4041 <location filename="../VBoxManageGuestCtrl.cpp" line="768"/>4042 <source>The --domain option is ignored by '%s'</source>4043 <translation type="unfinished"></translation>4044 </message>4045 <message>4046 <location filename="../VBoxManageGuestCtrl.cpp" line="833"/>4047 <source>Failed to get a IConsole pointer for the machine. Is it still running?4048 </source>4049 <translation type="unfinished"></translation>4050 </message>4051 <message>4052 <location filename="../VBoxManageGuestCtrl.cpp" line="838"/>4053 <source>Machine "%s" is not running (currently %s)!4054 </source>4055 <translation type="unfinished"></translation>4056 </message>4057 <message>4058 <location filename="../VBoxManageGuestCtrl.cpp" line="867"/>4059 <source>[%RU32] VBoxManage Guest Control [%s] - %s</source>4060 <translation type="unfinished"></translation>4061 </message>4062 <message>4063 <location filename="../VBoxManageGuestCtrl.cpp" line="869"/>4064 <source>No enough memory for session name</source>4065 <translation type="unfinished"></translation>4066 </message>4067 <message>4068 <location filename="../VBoxManageGuestCtrl.cpp" line="875"/>4069 <source>Creating guest session as user '%s'...4070 </source>4071 <translation type="unfinished"></translation>4072 </message>4073 <message>4074 <location filename="../VBoxManageGuestCtrl.cpp" line="886"/>4075 <source>Out of memory setting up IGuest::CreateSession call</source>4076 <translation type="unfinished"></translation>4077 </message>4078 <message>4079 <location filename="../VBoxManageGuestCtrl.cpp" line="895"/>4080 3821 <source>Waiting for guest session to start... 4081 3822 </source> … … 4083 3824 </message> 4084 3825 <message> 4085 <location filename="../VBoxManageGuestCtrl.cpp" line=" 907"/>3826 <location filename="../VBoxManageGuestCtrl.cpp" line="766"/> 4086 3827 <source>Out of memory setting up IGuestSession::WaitForArray call</source> 4087 3828 <translation type="unfinished"></translation> 4088 3829 </message> 4089 3830 <message> 4090 <location filename="../VBoxManageGuestCtrl.cpp" line=" 923"/>3831 <location filename="../VBoxManageGuestCtrl.cpp" line="782"/> 4091 3832 <source>Successfully started guest session (ID %RU32) 4092 3833 </source> … … 4094 3835 </message> 4095 3836 <message> 4096 <location filename="../VBoxManageGuestCtrl.cpp" line=" 932"/>3837 <location filename="../VBoxManageGuestCtrl.cpp" line="791"/> 4097 3838 <source>Error starting guest session (current status is: %s) 4098 3839 </source> … … 4100 3841 </message> 4101 3842 <message> 4102 <location filename="../VBoxManageGuestCtrl.cpp" line=" 933"/>3843 <location filename="../VBoxManageGuestCtrl.cpp" line="792"/> 4103 3844 <source><unknown></source> 4104 3845 <translation type="unfinished"></translation> 4105 3846 </message> 4106 3847 <message> 4107 <location filename="../VBoxManageGuestCtrl.cpp" line=" 992"/>3848 <location filename="../VBoxManageGuestCtrl.cpp" line="851"/> 4108 3849 <source>No user name specified!</source> 4109 3850 <translation type="unfinished"></translation> 4110 3851 </message> 4111 3852 <message> 4112 <location filename="../VBoxManageGuestCtrl.cpp" line=" 1032"/>3853 <location filename="../VBoxManageGuestCtrl.cpp" line="891"/> 4113 3854 <source>Closing guest session ... 4114 3855 </source> … … 4116 3857 </message> 4117 3858 <message> 4118 <location filename="../VBoxManageGuestCtrl.cpp" line=" 1038"/>3859 <location filename="../VBoxManageGuestCtrl.cpp" line="897"/> 4119 3860 <source>Guest session detached 4120 3861 </source> … … 4122 3863 </message> 4123 3864 <message> 4124 <location filename="../VBoxManageGuestCtrl.cpp" line="1 199"/>3865 <location filename="../VBoxManageGuestCtrl.cpp" line="1058"/> 4125 3866 <source>Unable to write output, rc=%Rrc 4126 3867 </source> … … 4128 3869 </message> 4129 3870 <message> 4130 <location filename="../VBoxManageGuestCtrl.cpp" line="1 229"/>3871 <location filename="../VBoxManageGuestCtrl.cpp" line="1088"/> 4131 3872 <source>Unsupported %s line ending conversion</source> 4132 3873 <translation type="unfinished"></translation> 4133 3874 </message> 4134 3875 <message> 4135 <location filename="../VBoxManageGuestCtrl.cpp" line="1 234"/>3876 <location filename="../VBoxManageGuestCtrl.cpp" line="1093"/> 4136 3877 <source>Error getting %s handle: %Rrc</source> 4137 3878 <translation type="unfinished"></translation> 4138 3879 </message> 4139 3880 <message> 4140 <location filename="../VBoxManageGuestCtrl.cpp" line="1 360"/>3881 <location filename="../VBoxManageGuestCtrl.cpp" line="1216"/> 4141 3882 <source>Invalid argument variable[=value]: '%s'</source> 4142 3883 <translation type="unfinished"></translation> 4143 3884 </message> 4144 3885 <message> 4145 <location filename="../VBoxManageGuestCtrl.cpp" line="1 370"/>3886 <location filename="../VBoxManageGuestCtrl.cpp" line="1226"/> 4146 3887 <source>Warning: Deprecated option "--no-profile" specified 4147 3888 </source> … … 4149 3890 </message> 4150 3891 <message> 4151 <location filename="../VBoxManageGuestCtrl.cpp" line="1 436"/>3892 <location filename="../VBoxManageGuestCtrl.cpp" line="1292"/> 4152 3893 <source>No executable specified!</source> 4153 3894 <translation type="unfinished"></translation> 4154 3895 </message> 4155 3896 <message> 4156 <location filename="../VBoxManageGuestCtrl.cpp" line="1 488"/>3897 <location filename="../VBoxManageGuestCtrl.cpp" line="1344"/> 4157 3898 <source>Starting guest process ... 4158 3899 </source> … … 4160 3901 </message> 4161 3902 <message> 4162 <location filename="../VBoxManageGuestCtrl.cpp" line="1 490"/>3903 <location filename="../VBoxManageGuestCtrl.cpp" line="1346"/> 4163 3904 <source>Starting guest process (within %ums) 4164 3905 </source> … … 4166 3907 </message> 4167 3908 <message> 4168 <location filename="../VBoxManageGuestCtrl.cpp" line="1 512"/>3909 <location filename="../VBoxManageGuestCtrl.cpp" line="1368"/> 4169 3910 <source>Process '%s' (PID %RU32) started 4170 3911 </source> … … 4172 3913 </message> 4173 3914 <message> 4174 <location filename="../VBoxManageGuestCtrl.cpp" line="1 517"/>3915 <location filename="../VBoxManageGuestCtrl.cpp" line="1373"/> 4175 3916 <source>[%RU32 - Session %RU32] 4176 3917 </source> … … 4178 3919 </message> 4179 3920 <message> 3921 <location filename="../VBoxManageGuestCtrl.cpp" line="1394"/> 3922 <source>waitResult: %d 3923 </source> 3924 <translation type="unfinished"></translation> 3925 </message> 3926 <message> 3927 <location filename="../VBoxManageGuestCtrl.cpp" line="1410"/> 3928 <source>Process terminated 3929 </source> 3930 <translation type="unfinished"></translation> 3931 </message> 3932 <message> 3933 <location filename="../VBoxManageGuestCtrl.cpp" line="1487"/> 3934 <source>Process execution aborted! 3935 </source> 3936 <translation type="unfinished"></translation> 3937 </message> 3938 <message> 3939 <location filename="../VBoxManageGuestCtrl.cpp" line="1493"/> 3940 <source>Process successfully started! 3941 </source> 3942 <translation type="unfinished"></translation> 3943 </message> 3944 <message> 3945 <location filename="../VBoxManageGuestCtrl.cpp" line="1507"/> 3946 <source>Exit code=%u (Status=%u [%s]) 3947 </source> 3948 <translation type="unfinished"></translation> 3949 </message> 3950 <message> 3951 <location filename="../VBoxManageGuestCtrl.cpp" line="1516"/> 3952 <source>Process timed out (guest side) and %s 3953 </source> 3954 <translation type="unfinished"></translation> 3955 </message> 3956 <message> 3957 <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/> 3958 <source>failed to terminate so far</source> 3959 <translation type="unfinished"></translation> 3960 </message> 3961 <message> 3962 <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/> 3963 <source>was terminated</source> 3964 <translation type="unfinished"></translation> 3965 </message> 3966 <message> 3967 <location filename="../VBoxManageGuestCtrl.cpp" line="1524"/> 3968 <source>Process now is in status [%s] (unexpected) 3969 </source> 3970 <translation type="unfinished"></translation> 3971 </message> 3972 <message> 3973 <location filename="../VBoxManageGuestCtrl.cpp" line="1532"/> 3974 <source>Process monitor loop quit with vrc=%Rrc 3975 </source> 3976 <translation type="unfinished"></translation> 3977 </message> 3978 <message> 4180 3979 <location filename="../VBoxManageGuestCtrl.cpp" line="1538"/> 4181 <source>waitResult: %d4182 </source>4183 <translation type="unfinished"></translation>4184 </message>4185 <message>4186 <location filename="../VBoxManageGuestCtrl.cpp" line="1554"/>4187 <source>Process terminated4188 </source>4189 <translation type="unfinished"></translation>4190 </message>4191 <message>4192 <location filename="../VBoxManageGuestCtrl.cpp" line="1631"/>4193 <source>Process execution aborted!4194 </source>4195 <translation type="unfinished"></translation>4196 </message>4197 <message>4198 <location filename="../VBoxManageGuestCtrl.cpp" line="1637"/>4199 <source>Process successfully started!4200 </source>4201 <translation type="unfinished"></translation>4202 </message>4203 <message>4204 <location filename="../VBoxManageGuestCtrl.cpp" line="1651"/>4205 <source>Exit code=%u (Status=%u [%s])4206 </source>4207 <translation type="unfinished"></translation>4208 </message>4209 <message>4210 <location filename="../VBoxManageGuestCtrl.cpp" line="1660"/>4211 <source>Process timed out (guest side) and %s4212 </source>4213 <translation type="unfinished"></translation>4214 </message>4215 <message>4216 <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>4217 <source>failed to terminate so far</source>4218 <translation type="unfinished"></translation>4219 </message>4220 <message>4221 <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>4222 <source>was terminated</source>4223 <translation type="unfinished"></translation>4224 </message>4225 <message>4226 <location filename="../VBoxManageGuestCtrl.cpp" line="1668"/>4227 <source>Process now is in status [%s] (unexpected)4228 </source>4229 <translation type="unfinished"></translation>4230 </message>4231 <message>4232 <location filename="../VBoxManageGuestCtrl.cpp" line="1676"/>4233 <source>Process monitor loop quit with vrc=%Rrc4234 </source>4235 <translation type="unfinished"></translation>4236 </message>4237 <message>4238 <location filename="../VBoxManageGuestCtrl.cpp" line="1682"/>4239 3980 <source>Process monitor loop timed out 4240 3981 </source> … … 4242 3983 </message> 4243 3984 <message> 4244 <location filename="../VBoxManageGuestCtrl.cpp" line="1 786"/>3985 <location filename="../VBoxManageGuestCtrl.cpp" line="1641"/> 4245 3986 <source>No sources specified!</source> 4246 3987 <translation type="unfinished"></translation> 4247 3988 </message> 4248 3989 <message> 4249 <location filename="../VBoxManageGuestCtrl.cpp" line="1 794"/>4250 <location filename="../VBoxManageGuestCtrl.cpp" line="2 348"/>3990 <location filename="../VBoxManageGuestCtrl.cpp" line="1649"/> 3991 <location filename="../VBoxManageGuestCtrl.cpp" line="2201"/> 4251 3992 <source>No destination specified!</source> 4252 3993 <translation type="unfinished"></translation> 4253 3994 </message> 4254 3995 <message> 4255 <location filename="../VBoxManageGuestCtrl.cpp" line="1 803"/>4256 <location filename="../VBoxManageGuestCtrl.cpp" line="1 907"/>3996 <location filename="../VBoxManageGuestCtrl.cpp" line="1658"/> 3997 <location filename="../VBoxManageGuestCtrl.cpp" line="1762"/> 4257 3998 <source>RTPathAbs failed on '%s': %Rrc</source> 4258 3999 <translation type="unfinished"></translation> 4259 4000 </message> 4260 4001 <message> 4261 <location filename="../VBoxManageGuestCtrl.cpp" line="1 816"/>4002 <location filename="../VBoxManageGuestCtrl.cpp" line="1671"/> 4262 4003 <source>Copying from host to guest ... 4263 4004 </source> … … 4265 4006 </message> 4266 4007 <message> 4267 <location filename="../VBoxManageGuestCtrl.cpp" line="1 818"/>4008 <location filename="../VBoxManageGuestCtrl.cpp" line="1673"/> 4268 4009 <source>Copying from guest to host ... 4269 4010 </source> … … 4271 4012 </message> 4272 4013 <message> 4273 <location filename="../VBoxManageGuestCtrl.cpp" line="1 830"/>4274 <location filename="../VBoxManageGuestCtrl.cpp" line="1 904"/>4014 <location filename="../VBoxManageGuestCtrl.cpp" line="1685"/> 4015 <location filename="../VBoxManageGuestCtrl.cpp" line="1759"/> 4275 4016 <source>RTPathQueryInfo failed on '%s': %Rrc</source> 4276 4017 <translation type="unfinished"></translation> 4277 4018 </message> 4278 4019 <message> 4279 <location filename="../VBoxManageGuestCtrl.cpp" line="1 848"/>4020 <location filename="../VBoxManageGuestCtrl.cpp" line="1703"/> 4280 4021 <source>Destination must be a directory!</source> 4281 4022 <translation type="unfinished"></translation> 4282 4023 </message> 4283 4024 <message> 4284 <location filename="../VBoxManageGuestCtrl.cpp" line="1 880"/>4285 <location filename="../VBoxManageGuestCtrl.cpp" line="1 941"/>4025 <location filename="../VBoxManageGuestCtrl.cpp" line="1735"/> 4026 <location filename="../VBoxManageGuestCtrl.cpp" line="1796"/> 4286 4027 <source>File '%s' -> '%s' 4287 4028 </source> … … 4289 4030 </message> 4290 4031 <message> 4291 <location filename="../VBoxManageGuestCtrl.cpp" line="1 889"/>4292 <location filename="../VBoxManageGuestCtrl.cpp" line="1 927"/>4032 <location filename="../VBoxManageGuestCtrl.cpp" line="1744"/> 4033 <location filename="../VBoxManageGuestCtrl.cpp" line="1782"/> 4293 4034 <source>Directory '%s' -> '%s' 4294 4035 </source> … … 4296 4037 </message> 4297 4038 <message> 4298 <location filename="../VBoxManageGuestCtrl.cpp" line="1 901"/>4299 <location filename="../VBoxManageGuestCtrl.cpp" line="1 950"/>4039 <location filename="../VBoxManageGuestCtrl.cpp" line="1756"/> 4040 <location filename="../VBoxManageGuestCtrl.cpp" line="1805"/> 4300 4041 <source>Not a file or directory: %s 4301 4042 </source> … … 4303 4044 </message> 4304 4045 <message> 4305 <location filename="../VBoxManageGuestCtrl.cpp" line="1 956"/>4046 <location filename="../VBoxManageGuestCtrl.cpp" line="1811"/> 4306 4047 <source>FsObjQueryInfo failed on '%s': %Rhrc</source> 4307 4048 <translation type="unfinished"></translation> 4308 4049 </message> 4309 4050 <message> 4310 <location filename="../VBoxManageGuestCtrl.cpp" line="1 970"/>4051 <location filename="../VBoxManageGuestCtrl.cpp" line="1825"/> 4311 4052 <source>File copy failed</source> 4312 4053 <translation type="unfinished"></translation> 4313 4054 </message> 4314 4055 <message numerus="yes"> 4315 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2039"/>4056 <location filename="../VBoxManageGuestCtrl.cpp" line="1894"/> 4316 4057 <source>Creating %RU32 directories... 4317 4058 </source> … … 4321 4062 </message> 4322 4063 <message> 4323 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2043"/>4064 <location filename="../VBoxManageGuestCtrl.cpp" line="1898"/> 4324 4065 <source>mkdir was interrupted by Ctrl-C (%u left) 4325 4066 </source> … … 4327 4068 </message> 4328 4069 <message> 4329 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2056"/>4070 <location filename="../VBoxManageGuestCtrl.cpp" line="1911"/> 4330 4071 <source>Creating directory "%s" ... 4331 4072 </source> … … 4333 4074 </message> 4334 4075 <message> 4335 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2067"/>4336 <location filename="../VBoxManageGuestCtrl.cpp" line="2 151"/>4337 <location filename="../VBoxManageGuestCtrl.cpp" line="2 272"/>4076 <location filename="../VBoxManageGuestCtrl.cpp" line="1922"/> 4077 <location filename="../VBoxManageGuestCtrl.cpp" line="2006"/> 4078 <location filename="../VBoxManageGuestCtrl.cpp" line="2127"/> 4338 4079 <source>Out of memory 4339 4080 </source> … … 4341 4082 </message> 4342 4083 <message> 4343 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2077"/>4084 <location filename="../VBoxManageGuestCtrl.cpp" line="1932"/> 4344 4085 <source>No directory to create specified!</source> 4345 4086 <translation type="unfinished"></translation> 4346 4087 </message> 4347 4088 <message numerus="yes"> 4348 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2125"/>4089 <location filename="../VBoxManageGuestCtrl.cpp" line="1980"/> 4349 4090 <source>Removing %RU32 directory tree(s)... 4350 4091 </source> … … 4354 4095 </message> 4355 4096 <message numerus="yes"> 4356 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2128"/>4097 <location filename="../VBoxManageGuestCtrl.cpp" line="1983"/> 4357 4098 <source>Removing %RU32 directorie(s)... 4358 4099 </source> … … 4362 4103 </message> 4363 4104 <message> 4364 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2133"/>4105 <location filename="../VBoxManageGuestCtrl.cpp" line="1988"/> 4365 4106 <source>rmdir was interrupted by Ctrl-C (%u left) 4366 4107 </source> … … 4368 4109 </message> 4369 4110 <message> 4370 <location filename="../VBoxManageGuestCtrl.cpp" line=" 2144"/>4111 <location filename="../VBoxManageGuestCtrl.cpp" line="1999"/> 4371 4112 <source>Removing directory "%s" ... 4372 4113 </source> … … 4374 4115 </message> 4375 4116 <message> 4376 <location filename="../VBoxManageGuestCtrl.cpp" line="2 163"/>4117 <location filename="../VBoxManageGuestCtrl.cpp" line="2018"/> 4377 4118 <source>Recursively removing directory "%s" ... 4378 4119 </source> … … 4380 4121 </message> 4381 4122 <message> 4382 <location filename="../VBoxManageGuestCtrl.cpp" line="2 181"/>4123 <location filename="../VBoxManageGuestCtrl.cpp" line="2036"/> 4383 4124 <source>Directory deletion failed</source> 4384 4125 <translation type="unfinished"></translation> 4385 4126 </message> 4386 4127 <message> 4387 <location filename="../VBoxManageGuestCtrl.cpp" line="2 187"/>4128 <location filename="../VBoxManageGuestCtrl.cpp" line="2042"/> 4388 4129 <source>Out of memory during recursive rmdir 4389 4130 </source> … … 4391 4132 </message> 4392 4133 <message> 4393 <location filename="../VBoxManageGuestCtrl.cpp" line="2 205"/>4134 <location filename="../VBoxManageGuestCtrl.cpp" line="2060"/> 4394 4135 <source>No directory to remove specified!</source> 4395 4136 <translation type="unfinished"></translation> 4396 4137 </message> 4397 4138 <message numerus="yes"> 4398 <location filename="../VBoxManageGuestCtrl.cpp" line="2 245"/>4139 <location filename="../VBoxManageGuestCtrl.cpp" line="2100"/> 4399 4140 <source>Removing %RU32 file(s)... 4400 4141 </source> … … 4404 4145 </message> 4405 4146 <message> 4406 <location filename="../VBoxManageGuestCtrl.cpp" line="2 249"/>4147 <location filename="../VBoxManageGuestCtrl.cpp" line="2104"/> 4407 4148 <source>rm was interrupted by Ctrl-C (%u left) 4408 4149 </source> … … 4410 4151 </message> 4411 4152 <message> 4412 <location filename="../VBoxManageGuestCtrl.cpp" line="2 260"/>4153 <location filename="../VBoxManageGuestCtrl.cpp" line="2115"/> 4413 4154 <source>Removing file "%s" ... 4414 4155 </source> … … 4416 4157 </message> 4417 4158 <message> 4418 <location filename="../VBoxManageGuestCtrl.cpp" line="2 282"/>4159 <location filename="../VBoxManageGuestCtrl.cpp" line="2137"/> 4419 4160 <source>No file to remove specified!</source> 4420 4161 <translation type="unfinished"></translation> 4421 4162 </message> 4422 4163 <message> 4423 <location filename="../VBoxManageGuestCtrl.cpp" line="2 340"/>4164 <location filename="../VBoxManageGuestCtrl.cpp" line="2195"/> 4424 4165 <source>Failed to initialize, rc=%Rrc 4425 4166 </source> … … 4427 4168 </message> 4428 4169 <message> 4429 <location filename="../VBoxManageGuestCtrl.cpp" line="2 345"/>4170 <location filename="../VBoxManageGuestCtrl.cpp" line="2199"/> 4430 4171 <source>No source(s) to move specified!</source> 4431 4172 <translation type="unfinished"></translation> 4432 4173 </message> 4433 4174 <message> 4434 <location filename="../VBoxManageGuestCtrl.cpp" line="2 367"/>4175 <location filename="../VBoxManageGuestCtrl.cpp" line="2220"/> 4435 4176 <source>Destination does not exist 4436 4177 </source> … … 4438 4179 </message> 4439 4180 <message> 4440 <location filename="../VBoxManageGuestCtrl.cpp" line="2 377"/>4181 <location filename="../VBoxManageGuestCtrl.cpp" line="2230"/> 4441 4182 <source>Destination must be a directory when specifying multiple sources 4442 4183 </source> … … 4444 4185 </message> 4445 4186 <message> 4446 <location filename="../VBoxManageGuestCtrl.cpp" line="2 381"/>4187 <location filename="../VBoxManageGuestCtrl.cpp" line="2234"/> 4447 4188 <source>Unable to determine destination type: %Rhrc 4448 4189 </source> … … 4450 4191 </message> 4451 4192 <message> 4452 <location filename="../VBoxManageGuestCtrl.cpp" line="2 390"/>4193 <location filename="../VBoxManageGuestCtrl.cpp" line="2243"/> 4453 4194 <source>Renaming %RU32 %s ... 4454 4195 </source> … … 4456 4197 </message> 4457 4198 <message numerus="yes"> 4458 <location filename="../VBoxManageGuestCtrl.cpp" line="2 391"/>4199 <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/> 4459 4200 <source>sources</source> 4460 4201 <translation type="unfinished"> … … 4463 4204 </message> 4464 4205 <message> 4465 <location filename="../VBoxManageGuestCtrl.cpp" line="2 391"/>4206 <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/> 4466 4207 <source>source</source> 4467 4208 <translation type="unfinished"></translation> 4468 4209 </message> 4469 4210 <message> 4470 <location filename="../VBoxManageGuestCtrl.cpp" line="2 406"/>4211 <location filename="../VBoxManageGuestCtrl.cpp" line="2259"/> 4471 4212 <source>Cannot stat "%s": No such file or directory 4472 4213 </source> … … 4474 4215 </message> 4475 4216 <message> 4476 <location filename="../VBoxManageGuestCtrl.cpp" line="2 423"/>4217 <location filename="../VBoxManageGuestCtrl.cpp" line="2276"/> 4477 4218 <source>Renaming %s "%s" to "%s" ... 4478 4219 </source> … … 4480 4221 </message> 4481 4222 <message> 4482 <location filename="../VBoxManageGuestCtrl.cpp" line="2 424"/>4223 <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/> 4483 4224 <source>directory</source> 4484 4225 <comment>object</comment> … … 4486 4227 </message> 4487 4228 <message> 4488 <location filename="../VBoxManageGuestCtrl.cpp" line="2 424"/>4229 <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/> 4489 4230 <source>file</source> 4490 4231 <comment>object</comment> … … 4492 4233 </message> 4493 4234 <message> 4494 <location filename="../VBoxManageGuestCtrl.cpp" line="2 443"/>4235 <location filename="../VBoxManageGuestCtrl.cpp" line="2296"/> 4495 4236 <source>Warning: Not all sources were renamed 4496 4237 </source> … … 4498 4239 </message> 4499 4240 <message> 4500 <location filename="../VBoxManageGuestCtrl.cpp" line="2 503"/>4241 <location filename="../VBoxManageGuestCtrl.cpp" line="2355"/> 4501 4242 <source>More than one template specified! 4502 4243 </source> … … 4504 4245 </message> 4505 4246 <message> 4506 <location filename="../VBoxManageGuestCtrl.cpp" line="2 513"/>4247 <location filename="../VBoxManageGuestCtrl.cpp" line="2364"/> 4507 4248 <source>No template specified!</source> 4508 4249 <translation type="unfinished"></translation> 4509 4250 </message> 4510 4251 <message> 4252 <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/> 4253 <source>Creating temporary files is currently not supported!</source> 4254 <translation type="unfinished"></translation> 4255 </message> 4256 <message> 4257 <location filename="../VBoxManageGuestCtrl.cpp" line="2379"/> 4258 <source>Creating temporary directory from template '%s' in directory '%s' ... 4259 </source> 4260 <translation type="unfinished"></translation> 4261 </message> 4262 <message> 4263 <location filename="../VBoxManageGuestCtrl.cpp" line="2382"/> 4264 <source>Creating temporary directory from template '%s' in default temporary directory ... 4265 </source> 4266 <translation type="unfinished"></translation> 4267 </message> 4268 <message> 4269 <location filename="../VBoxManageGuestCtrl.cpp" line="2385"/> 4270 <source>Creating temporary file from template '%s' in directory '%s' ... 4271 </source> 4272 <translation type="unfinished"></translation> 4273 </message> 4274 <message> 4275 <location filename="../VBoxManageGuestCtrl.cpp" line="2388"/> 4276 <source>Creating temporary file from template '%s' in default temporary directory ... 4277 </source> 4278 <translation type="unfinished"></translation> 4279 </message> 4280 <message> 4281 <location filename="../VBoxManageGuestCtrl.cpp" line="2401"/> 4282 <source>Directory name: %ls 4283 </source> 4284 <translation type="unfinished"></translation> 4285 </message> 4286 <message> 4287 <location filename="../VBoxManageGuestCtrl.cpp" line="2444"/> 4288 <source>Command "%s" not implemented yet!</source> 4289 <translation type="unfinished"></translation> 4290 </message> 4291 <message> 4292 <location filename="../VBoxManageGuestCtrl.cpp" line="2452"/> 4293 <source>Nothing to stat!</source> 4294 <translation type="unfinished"></translation> 4295 </message> 4296 <message> 4297 <location filename="../VBoxManageGuestCtrl.cpp" line="2465"/> 4298 <source>Checking for element "%s" ... 4299 </source> 4300 <translation type="unfinished"></translation> 4301 </message> 4302 <message> 4303 <location filename="../VBoxManageGuestCtrl.cpp" line="2475"/> 4304 <source>Failed to stat '%s': No such file 4305 </source> 4306 <translation type="unfinished"></translation> 4307 </message> 4308 <message> 4309 <location filename="../VBoxManageGuestCtrl.cpp" line="2480"/> 4310 <source> File: '%s' 4311 </source> 4312 <translation type="unfinished"></translation> 4313 </message> 4314 <message> 4315 <location filename="../VBoxManageGuestCtrl.cpp" line="2515"/> 4316 <source> Size: %-17RU64 Alloc: %-19RU64 Type: %s 4317 </source> 4318 <translation type="unfinished"></translation> 4319 </message> 4320 <message> 4511 4321 <location filename="../VBoxManageGuestCtrl.cpp" line="2517"/> 4512 <source>Creating temporary files is currently not supported!</source> 4513 <translation type="unfinished"></translation> 4514 </message> 4515 <message> 4516 <location filename="../VBoxManageGuestCtrl.cpp" line="2529"/> 4517 <source>Creating temporary directory from template '%s' in directory '%s' ... 4322 <source>Device: %#-17RX32 INode: %-18RU64 Links: %u 4323 </source> 4324 <translation type="unfinished"></translation> 4325 </message> 4326 <message> 4327 <location filename="../VBoxManageGuestCtrl.cpp" line="2528"/> 4328 <source> Mode: %-16s Attrib: %-17s Dev ID: %#RX32 4329 </source> 4330 <translation type="unfinished"></translation> 4331 </message> 4332 <message> 4333 <location filename="../VBoxManageGuestCtrl.cpp" line="2530"/> 4334 <source> Mode: %-16s Attrib: %s 4518 4335 </source> 4519 4336 <translation type="unfinished"></translation> … … 4521 4338 <message> 4522 4339 <location filename="../VBoxManageGuestCtrl.cpp" line="2532"/> 4523 <source> Creating temporary directory from template '%s' in default temporary directory ...4524 </source> 4525 <translation type="unfinished"></translation> 4526 </message> 4527 <message> 4528 <location filename="../VBoxManageGuestCtrl.cpp" line="253 5"/>4529 <source> Creating temporary file from template '%s' in directory '%s' ...4340 <source> Owner: %4d/%-12ls Group: %4d/%ls 4341 </source> 4342 <translation type="unfinished"></translation> 4343 </message> 4344 <message> 4345 <location filename="../VBoxManageGuestCtrl.cpp" line="2536"/> 4346 <source> Birth: %s 4530 4347 </source> 4531 4348 <translation type="unfinished"></translation> … … 4533 4350 <message> 4534 4351 <location filename="../VBoxManageGuestCtrl.cpp" line="2538"/> 4535 <source>Creating temporary file from template '%s' in default temporary directory ... 4536 </source> 4537 <translation type="unfinished"></translation> 4538 </message> 4539 <message> 4540 <location filename="../VBoxManageGuestCtrl.cpp" line="2551"/> 4541 <source>Directory name: %ls 4352 <source>Change: %s 4353 </source> 4354 <translation type="unfinished"></translation> 4355 </message> 4356 <message> 4357 <location filename="../VBoxManageGuestCtrl.cpp" line="2540"/> 4358 <source>Modify: %s 4359 </source> 4360 <translation type="unfinished"></translation> 4361 </message> 4362 <message> 4363 <location filename="../VBoxManageGuestCtrl.cpp" line="2542"/> 4364 <source>Access: %s 4542 4365 </source> 4543 4366 <translation type="unfinished"></translation> … … 4545 4368 <message> 4546 4369 <location filename="../VBoxManageGuestCtrl.cpp" line="2595"/> 4547 <source>Command "%s" not implemented yet!</source>4548 <translation type="unfinished"></translation>4549 </message>4550 <message>4551 <location filename="../VBoxManageGuestCtrl.cpp" line="2603"/>4552 <source>Nothing to stat!</source>4553 <translation type="unfinished"></translation>4554 </message>4555 <message>4556 <location filename="../VBoxManageGuestCtrl.cpp" line="2616"/>4557 <source>Checking for element "%s" ...4558 </source>4559 <translation type="unfinished"></translation>4560 </message>4561 <message>4562 <location filename="../VBoxManageGuestCtrl.cpp" line="2626"/>4563 <source>Failed to stat '%s': No such file4564 </source>4565 <translation type="unfinished"></translation>4566 </message>4567 <message>4568 <location filename="../VBoxManageGuestCtrl.cpp" line="2631"/>4569 <source> File: '%s'4570 </source>4571 <translation type="unfinished"></translation>4572 </message>4573 <message>4574 <location filename="../VBoxManageGuestCtrl.cpp" line="2666"/>4575 <source> Size: %-17RU64 Alloc: %-19RU64 Type: %s4576 </source>4577 <translation type="unfinished"></translation>4578 </message>4579 <message>4580 <location filename="../VBoxManageGuestCtrl.cpp" line="2668"/>4581 <source>Device: %#-17RX32 INode: %-18RU64 Links: %u4582 </source>4583 <translation type="unfinished"></translation>4584 </message>4585 <message>4586 <location filename="../VBoxManageGuestCtrl.cpp" line="2679"/>4587 <source> Mode: %-16s Attrib: %-17s Dev ID: %#RX324588 </source>4589 <translation type="unfinished"></translation>4590 </message>4591 <message>4592 <location filename="../VBoxManageGuestCtrl.cpp" line="2681"/>4593 <source> Mode: %-16s Attrib: %s4594 </source>4595 <translation type="unfinished"></translation>4596 </message>4597 <message>4598 <location filename="../VBoxManageGuestCtrl.cpp" line="2683"/>4599 <source> Owner: %4d/%-12ls Group: %4d/%ls4600 </source>4601 <translation type="unfinished"></translation>4602 </message>4603 <message>4604 <location filename="../VBoxManageGuestCtrl.cpp" line="2687"/>4605 <source> Birth: %s4606 </source>4607 <translation type="unfinished"></translation>4608 </message>4609 <message>4610 <location filename="../VBoxManageGuestCtrl.cpp" line="2689"/>4611 <source>Change: %s4612 </source>4613 <translation type="unfinished"></translation>4614 </message>4615 <message>4616 <location filename="../VBoxManageGuestCtrl.cpp" line="2691"/>4617 <source>Modify: %s4618 </source>4619 <translation type="unfinished"></translation>4620 </message>4621 <message>4622 <location filename="../VBoxManageGuestCtrl.cpp" line="2693"/>4623 <source>Access: %s4624 </source>4625 <translation type="unfinished"></translation>4626 </message>4627 <message>4628 <location filename="../VBoxManageGuestCtrl.cpp" line="2746"/>4629 4370 <source>Current run level is %RU32 4630 4371 </source> … … 4632 4373 </message> 4633 4374 <message> 4634 <location filename="../VBoxManageGuestCtrl.cpp" line="2 753"/>4375 <location filename="../VBoxManageGuestCtrl.cpp" line="2602"/> 4635 4376 <source>Waiting for run level %RU32 ... 4636 4377 </source> … … 4638 4379 </message> 4639 4380 <message> 4381 <location filename="../VBoxManageGuestCtrl.cpp" line="2615"/> 4382 <location filename="../VBoxManageGuestCtrl.cpp" line="3565"/> 4383 <source>Waiting failed with %Rrc 4384 </source> 4385 <translation type="unfinished"></translation> 4386 </message> 4387 <message> 4388 <location filename="../VBoxManageGuestCtrl.cpp" line="2621"/> 4389 <source>Run level %RU32 reached 4390 </source> 4391 <translation type="unfinished"></translation> 4392 </message> 4393 <message> 4394 <location filename="../VBoxManageGuestCtrl.cpp" line="2630"/> 4395 <source>Run level %RU32 not reached within time 4396 </source> 4397 <translation type="unfinished"></translation> 4398 </message> 4399 <message> 4400 <location filename="../VBoxManageGuestCtrl.cpp" line="2716"/> 4401 <source>RTPathAbsCxx failed on '%s': %Rrc</source> 4402 <translation type="unfinished"></translation> 4403 </message> 4404 <message> 4405 <location filename="../VBoxManageGuestCtrl.cpp" line="2745"/> 4406 <source>Updating Guest Additions ... 4407 </source> 4408 <translation type="unfinished"></translation> 4409 </message> 4410 <message> 4411 <location filename="../VBoxManageGuestCtrl.cpp" line="2761"/> 4412 <source>No Guest Additions source found or specified, aborting 4413 </source> 4414 <translation type="unfinished"></translation> 4415 </message> 4416 <message> 4640 4417 <location filename="../VBoxManageGuestCtrl.cpp" line="2766"/> 4641 <location filename="../VBoxManageGuestCtrl.cpp" line="3724"/>4642 <source>Waiting failed with %Rrc4643 </source>4644 <translation type="unfinished"></translation>4645 </message>4646 <message>4647 <location filename="../VBoxManageGuestCtrl.cpp" line="2772"/>4648 <source>Run level %RU32 reached4649 </source>4650 <translation type="unfinished"></translation>4651 </message>4652 <message>4653 <location filename="../VBoxManageGuestCtrl.cpp" line="2781"/>4654 <source>Run level %RU32 not reached within time4655 </source>4656 <translation type="unfinished"></translation>4657 </message>4658 <message>4659 <location filename="../VBoxManageGuestCtrl.cpp" line="2867"/>4660 <source>RTPathAbsCxx failed on '%s': %Rrc</source>4661 <translation type="unfinished"></translation>4662 </message>4663 <message>4664 <location filename="../VBoxManageGuestCtrl.cpp" line="2896"/>4665 <source>Updating Guest Additions ...4666 </source>4667 <translation type="unfinished"></translation>4668 </message>4669 <message>4670 <location filename="../VBoxManageGuestCtrl.cpp" line="2912"/>4671 <source>No Guest Additions source found or specified, aborting4672 </source>4673 <translation type="unfinished"></translation>4674 </message>4675 <message>4676 <location filename="../VBoxManageGuestCtrl.cpp" line="2917"/>4677 4418 <source>Source "%s" does not exist! 4678 4419 </source> … … 4680 4421 </message> 4681 4422 <message> 4682 <location filename="../VBoxManageGuestCtrl.cpp" line="2 928"/>4423 <location filename="../VBoxManageGuestCtrl.cpp" line="2777"/> 4683 4424 <source>OS type:</source> 4684 4425 <translation type="unfinished"></translation> 4685 4426 </message> 4686 4427 <message> 4687 <location filename="../VBoxManageGuestCtrl.cpp" line="2 933"/>4428 <location filename="../VBoxManageGuestCtrl.cpp" line="2782"/> 4688 4429 <source>Additions run level:</source> 4689 4430 <translation type="unfinished"></translation> 4690 4431 </message> 4691 4432 <message> 4692 <location filename="../VBoxManageGuestCtrl.cpp" line="2 945"/>4433 <location filename="../VBoxManageGuestCtrl.cpp" line="2794"/> 4693 4434 <source>Additions version:</source> 4694 4435 <translation type="unfinished"></translation> 4695 4436 </message> 4696 4437 <message> 4697 <location filename="../VBoxManageGuestCtrl.cpp" line="2 953"/>4438 <location filename="../VBoxManageGuestCtrl.cpp" line="2802"/> 4698 4439 <source>Using source: %s 4699 4440 </source> … … 4701 4442 </message> 4702 4443 <message> 4703 <location filename="../VBoxManageGuestCtrl.cpp" line="2 962"/>4444 <location filename="../VBoxManageGuestCtrl.cpp" line="2811"/> 4704 4445 <source>Waiting for current Guest Additions inside VM getting ready for updating ... 4705 4446 </source> … … 4707 4448 </message> 4708 4449 <message> 4709 <location filename="../VBoxManageGuestCtrl.cpp" line="2 983"/>4450 <location filename="../VBoxManageGuestCtrl.cpp" line="2832"/> 4710 4451 <source>Guest Additions %lsr%RU64 currently installed, waiting for Guest Additions installer to start ... 4711 4452 </source> … … 4713 4454 </message> 4714 4455 <message> 4715 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3007"/>4456 <location filename="../VBoxManageGuestCtrl.cpp" line="2856"/> 4716 4457 <source>Guest Additions update failed</source> 4717 4458 <translation type="unfinished"></translation> 4718 4459 </message> 4719 4460 <message> 4720 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3012"/>4461 <location filename="../VBoxManageGuestCtrl.cpp" line="2861"/> 4721 4462 <source>Guest Additions update successful. 4722 4463 </source> … … 4724 4465 </message> 4725 4466 <message> 4726 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3017"/>4467 <location filename="../VBoxManageGuestCtrl.cpp" line="2866"/> 4727 4468 <source>Rebooting guest ... 4728 4469 </source> … … 4730 4471 </message> 4731 4472 <message> 4732 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3025"/>4473 <location filename="../VBoxManageGuestCtrl.cpp" line="2874"/> 4733 4474 <source>Current installed Guest Additions don't support automatic rebooting. Please reboot manually. 4734 4475 </source> … … 4736 4477 </message> 4737 4478 <message> 4738 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3037"/>4479 <location filename="../VBoxManageGuestCtrl.cpp" line="2886"/> 4739 4480 <source>Waiting for new Guest Additions inside VM getting ready ... 4740 4481 </source> … … 4742 4483 </message> 4743 4484 <message> 4744 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3045"/>4485 <location filename="../VBoxManageGuestCtrl.cpp" line="2894"/> 4745 4486 <source>Verifying Guest Additions update ... 4746 4487 </source> … … 4748 4489 </message> 4749 4490 <message> 4750 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3064"/>4491 <location filename="../VBoxManageGuestCtrl.cpp" line="2913"/> 4751 4492 <source>Old Guest Additions: %ls%RU64 4752 4493 </source> … … 4754 4495 </message> 4755 4496 <message> 4756 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3066"/>4497 <location filename="../VBoxManageGuestCtrl.cpp" line="2915"/> 4757 4498 <source>New Guest Additions: %ls%RU64 4758 4499 </source> … … 4760 4501 </message> 4761 4502 <message> 4762 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3071"/>4503 <location filename="../VBoxManageGuestCtrl.cpp" line="2920"/> 4763 4504 <source> 4764 4505 Error updating Guest Additions, please check guest installer log … … 4767 4508 </message> 4768 4509 <message> 4769 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3076"/>4510 <location filename="../VBoxManageGuestCtrl.cpp" line="2925"/> 4770 4511 <source> 4771 4512 WARNING: Guest Additions were downgraded … … 4774 4515 </message> 4775 4516 <message> 4776 <location filename="../VBoxManageGuestCtrl.cpp" line=" 3083"/>4517 <location filename="../VBoxManageGuestCtrl.cpp" line="2932"/> 4777 4518 <source>The guest needs to be restarted in order to make use of the updated Guest Additions. 4778 4519 </source> … … 4780 4521 </message> 4781 4522 <message> 4782 <location filename="../VBoxManageGuestCtrl.cpp" line="3 157"/>4523 <location filename="../VBoxManageGuestCtrl.cpp" line="3005"/> 4783 4524 <source>Invalid run level specified. Valid values are: system, userland, desktop</source> 4784 4525 <translation type="unfinished"></translation> 4785 4526 </message> 4786 4527 <message> 4787 <location filename="../VBoxManageGuestCtrl.cpp" line="3 171"/>4528 <location filename="../VBoxManageGuestCtrl.cpp" line="3019"/> 4788 4529 <source>Missing run level to wait for</source> 4789 4530 <translation type="unfinished"></translation> 4790 4531 </message> 4791 4532 <message> 4792 <location filename="../VBoxManageGuestCtrl.cpp" line="3 219"/>4533 <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/> 4793 4534 <source>Unknown list: '%s'</source> 4794 4535 <translation type="unfinished"></translation> 4795 4536 </message> 4796 4537 <message> 4797 <location filename="../VBoxManageGuestCtrl.cpp" line="3 229"/>4538 <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/> 4798 4539 <source>Missing list name</source> 4799 4540 <translation type="unfinished"></translation> 4800 4541 </message> 4801 4542 <message> 4802 <location filename="../VBoxManageGuestCtrl.cpp" line="3 250"/>4543 <location filename="../VBoxManageGuestCtrl.cpp" line="3097"/> 4803 4544 <source>Active guest sessions: 4804 4545 </source> … … 4806 4547 </message> 4807 4548 <message> 4808 <location filename="../VBoxManageGuestCtrl.cpp" line="3 269"/>4549 <location filename="../VBoxManageGuestCtrl.cpp" line="3116"/> 4809 4550 <source> 4810 4551 Session #%-3zu ID=%-3RU32 User=%-16ls Status=[%s] Name=%ls</source> … … 4812 4553 </message> 4813 4554 <message> 4814 <location filename="../VBoxManageGuestCtrl.cpp" line="3 292"/>4555 <location filename="../VBoxManageGuestCtrl.cpp" line="3139"/> 4815 4556 <source> 4816 4557 Process #%-03zu PID=%-6RU32 Status=[%s] Command=%ls</source> … … 4818 4559 </message> 4819 4560 <message> 4820 <location filename="../VBoxManageGuestCtrl.cpp" line="3 320"/>4561 <location filename="../VBoxManageGuestCtrl.cpp" line="3167"/> 4821 4562 <source> 4822 4563 File #%-03zu ID=%-6RU32 Status=[%s] Name=%ls</source> … … 4824 4565 </message> 4825 4566 <message> 4826 <location filename="../VBoxManageGuestCtrl.cpp" line="3 331"/>4567 <location filename="../VBoxManageGuestCtrl.cpp" line="3178"/> 4827 4568 <source> 4828 4569 … … 4832 4573 </message> 4833 4574 <message> 4834 <location filename="../VBoxManageGuestCtrl.cpp" line="3 333"/>4575 <location filename="../VBoxManageGuestCtrl.cpp" line="3180"/> 4835 4576 <source>Total guest processes: %zu 4836 4577 </source> … … 4838 4579 </message> 4839 4580 <message> 4581 <location filename="../VBoxManageGuestCtrl.cpp" line="3182"/> 4582 <source>Total guest files: %zu 4583 </source> 4584 <translation type="unfinished"></translation> 4585 </message> 4586 <message> 4587 <location filename="../VBoxManageGuestCtrl.cpp" line="3185"/> 4588 <source>No active guest sessions found 4589 </source> 4590 <translation type="unfinished"></translation> 4591 </message> 4592 <message> 4593 <location filename="../VBoxManageGuestCtrl.cpp" line="3251"/> 4594 <source>Invalid PID value: 0</source> 4595 <translation type="unfinished"></translation> 4596 </message> 4597 <message> 4598 <location filename="../VBoxManageGuestCtrl.cpp" line="3254"/> 4599 <source>Error parsing PID value: %Rrc</source> 4600 <translation type="unfinished"></translation> 4601 </message> 4602 <message> 4603 <location filename="../VBoxManageGuestCtrl.cpp" line="3264"/> 4604 <source>At least one PID must be specified to kill!</source> 4605 <translation type="unfinished"></translation> 4606 </message> 4607 <message> 4608 <location filename="../VBoxManageGuestCtrl.cpp" line="3268"/> 4609 <location filename="../VBoxManageGuestCtrl.cpp" line="3422"/> 4610 <source>No session ID specified!</source> 4611 <translation type="unfinished"></translation> 4612 </message> 4613 <message> 4614 <location filename="../VBoxManageGuestCtrl.cpp" line="3272"/> 4615 <location filename="../VBoxManageGuestCtrl.cpp" line="3426"/> 4616 <source>Either session ID or name (pattern) must be specified</source> 4617 <translation type="unfinished"></translation> 4618 </message> 4619 <message> 4840 4620 <location filename="../VBoxManageGuestCtrl.cpp" line="3335"/> 4841 <source>Total guest files: %zu4842 </source>4843 <translation type="unfinished"></translation>4844 </message>4845 <message>4846 <location filename="../VBoxManageGuestCtrl.cpp" line="3338"/>4847 <source>No active guest sessions found4848 </source>4849 <translation type="unfinished"></translation>4850 </message>4851 <message>4852 <location filename="../VBoxManageGuestCtrl.cpp" line="3405"/>4853 <source>Invalid PID value: 0</source>4854 <translation type="unfinished"></translation>4855 </message>4856 <message>4857 <location filename="../VBoxManageGuestCtrl.cpp" line="3409"/>4858 <source>Error parsing PID value: %Rrc</source>4859 <translation type="unfinished"></translation>4860 </message>4861 <message>4862 <location filename="../VBoxManageGuestCtrl.cpp" line="3420"/>4863 <source>At least one PID must be specified to kill!</source>4864 <translation type="unfinished"></translation>4865 </message>4866 <message>4867 <location filename="../VBoxManageGuestCtrl.cpp" line="3424"/>4868 <location filename="../VBoxManageGuestCtrl.cpp" line="3580"/>4869 <source>No session ID specified!</source>4870 <translation type="unfinished"></translation>4871 </message>4872 <message>4873 <location filename="../VBoxManageGuestCtrl.cpp" line="3429"/>4874 <location filename="../VBoxManageGuestCtrl.cpp" line="3585"/>4875 <source>Either session ID or name (pattern) must be specified</source>4876 <translation type="unfinished"></translation>4877 </message>4878 <message>4879 <location filename="../VBoxManageGuestCtrl.cpp" line="3492"/>4880 4621 <source>Terminating process (PID %RU32) (session ID %RU32) ... 4881 4622 </source> … … 4883 4624 </message> 4884 4625 <message> 4885 <location filename="../VBoxManageGuestCtrl.cpp" line="3 500"/>4626 <location filename="../VBoxManageGuestCtrl.cpp" line="3343"/> 4886 4627 <source>No matching process(es) for session ID %RU32 found 4887 4628 </source> … … 4889 4630 </message> 4890 4631 <message> 4891 <location filename="../VBoxManageGuestCtrl.cpp" line="3 512"/>4632 <location filename="../VBoxManageGuestCtrl.cpp" line="3355"/> 4892 4633 <source>No matching session(s) found 4893 4634 </source> … … 4895 4636 </message> 4896 4637 <message numerus="yes"> 4897 <location filename="../VBoxManageGuestCtrl.cpp" line="3 515"/>4638 <location filename="../VBoxManageGuestCtrl.cpp" line="3358"/> 4898 4639 <source>%RU32 process(es) terminated 4899 4640 </source> … … 4903 4644 </message> 4904 4645 <message> 4905 <location filename="../VBoxManageGuestCtrl.cpp" line="3 623"/>4646 <location filename="../VBoxManageGuestCtrl.cpp" line="3464"/> 4906 4647 <source>Closing guest session ID=#%RU32 "%s" ... 4907 4648 </source> … … 4909 4650 </message> 4910 4651 <message> 4911 <location filename="../VBoxManageGuestCtrl.cpp" line="3 627"/>4652 <location filename="../VBoxManageGuestCtrl.cpp" line="3468"/> 4912 4653 <source>Guest session successfully closed 4913 4654 </source> … … 4915 4656 </message> 4916 4657 <message> 4917 <location filename="../VBoxManageGuestCtrl.cpp" line="3 635"/>4658 <location filename="../VBoxManageGuestCtrl.cpp" line="3476"/> 4918 4659 <source>No guest session(s) found 4919 4660 </source> … … 4921 4662 </message> 4922 4663 <message> 4923 <location filename="../VBoxManageGuestCtrl.cpp" line="3 713"/>4664 <location filename="../VBoxManageGuestCtrl.cpp" line="3554"/> 4924 4665 <source>Waiting for events ... 4925 4666 </source> … … 4927 4668 </message> 4928 4669 <message> 4929 <location filename="../VBoxManageGuestCtrl.cpp" line="3 867"/>4670 <location filename="../VBoxManageGuestCtrl.cpp" line="3709"/> 4930 4671 <source>Unknown sub-command: '%s'</source> 4931 4672 <translation type="unfinished"></translation> 4932 4673 </message> 4933 4674 <message> 4934 <location filename="../VBoxManageGuestCtrl.cpp" line="3 876"/>4675 <location filename="../VBoxManageGuestCtrl.cpp" line="3718"/> 4935 4676 <source>Missing sub-command</source> 4936 4677 <translation type="unfinished"></translation> 4937 4678 </message> 4938 4679 <message> 4939 <location filename="../VBoxManageGuestCtrl.cpp" line="3 878"/>4680 <location filename="../VBoxManageGuestCtrl.cpp" line="3720"/> 4940 4681 <source>Missing VM name and sub-command</source> 4941 4682 <translation type="unfinished"></translation> … … 4945 4686 <name>GuestCtrlLsnr</name> 4946 4687 <message> 4947 <location filename="../VBoxManageGuestCtrlListener.cpp" line="10 8"/>4688 <location filename="../VBoxManageGuestCtrlListener.cpp" line="106"/> 4948 4689 <source>File ID=%RU32 "%s" changed status to [%s] 4949 4690 </source> … … 4951 4692 </message> 4952 4693 <message> 4953 <location filename="../VBoxManageGuestCtrlListener.cpp" line="16 4"/>4694 <location filename="../VBoxManageGuestCtrlListener.cpp" line="162"/> 4954 4695 <source>Process PID=%RU32 "%s" changed status to [%s] 4955 4696 </source> … … 4957 4698 </message> 4958 4699 <message> 4700 <location filename="../VBoxManageGuestCtrlListener.cpp" line="254"/> 4701 <source>File "%s" %s 4702 </source> 4703 <translation type="unfinished"></translation> 4704 </message> 4705 <message> 4959 4706 <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/> 4960 <source>File "%s" %s 4961 </source> 4962 <translation type="unfinished"></translation> 4963 </message> 4964 <message> 4965 <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/> 4966 <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/> 4967 <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/> 4707 <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/> 4708 <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/> 4968 4709 <source>registered</source> 4969 4710 <translation type="unfinished"></translation> 4970 4711 </message> 4971 4712 <message> 4972 <location filename="../VBoxManageGuestCtrlListener.cpp" line="25 8"/>4973 <location filename="../VBoxManageGuestCtrlListener.cpp" line="32 2"/>4974 <location filename="../VBoxManageGuestCtrlListener.cpp" line="46 3"/>4713 <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/> 4714 <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/> 4715 <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/> 4975 4716 <source>unregistered</source> 4976 4717 <translation type="unfinished"></translation> 4977 4718 </message> 4978 4719 <message> 4979 <location filename="../VBoxManageGuestCtrlListener.cpp" line="26 2"/>4980 <location filename="../VBoxManageGuestCtrlListener.cpp" line="32 6"/>4981 <location filename="../VBoxManageGuestCtrlListener.cpp" line="46 7"/>4720 <location filename="../VBoxManageGuestCtrlListener.cpp" line="260"/> 4721 <location filename="../VBoxManageGuestCtrlListener.cpp" line="324"/> 4722 <location filename="../VBoxManageGuestCtrlListener.cpp" line="465"/> 4982 4723 <source>Registering ... 4983 4724 </source> … … 4985 4726 </message> 4986 4727 <message> 4987 <location filename="../VBoxManageGuestCtrlListener.cpp" line="28 5"/>4728 <location filename="../VBoxManageGuestCtrlListener.cpp" line="283"/> 4988 4729 <source>Unregistering file ... 4989 4730 </source> … … 4991 4732 </message> 4992 4733 <message> 4993 <location filename="../VBoxManageGuestCtrlListener.cpp" line="3 20"/>4734 <location filename="../VBoxManageGuestCtrlListener.cpp" line="318"/> 4994 4735 <source>Process "%s" %s 4995 4736 </source> … … 4997 4738 </message> 4998 4739 <message> 4999 <location filename="../VBoxManageGuestCtrlListener.cpp" line="34 9"/>4740 <location filename="../VBoxManageGuestCtrlListener.cpp" line="347"/> 5000 4741 <source>Unregistering process ... 5001 4742 </source> … … 5003 4744 </message> 5004 4745 <message> 5005 <location filename="../VBoxManageGuestCtrlListener.cpp" line="38 6"/>4746 <location filename="../VBoxManageGuestCtrlListener.cpp" line="384"/> 5006 4747 <source>Session ID=%RU32 "%s" changed status to [%s] 5007 4748 </source> … … 5009 4750 </message> 5010 4751 <message> 5011 <location filename="../VBoxManageGuestCtrlListener.cpp" line="4 61"/>4752 <location filename="../VBoxManageGuestCtrlListener.cpp" line="459"/> 5012 4753 <source>Session ID=%RU32 "%s" %s 5013 4754 </source> … … 5015 4756 </message> 5016 4757 <message> 5017 <location filename="../VBoxManageGuestCtrlListener.cpp" line="49 2"/>4758 <location filename="../VBoxManageGuestCtrlListener.cpp" line="490"/> 5018 4759 <source>Unregistering ... 5019 4760 </source> … … 5021 4762 </message> 5022 4763 <message> 5023 <location filename="../VBoxManageGuestCtrlListener.cpp" line="55 4"/>4764 <location filename="../VBoxManageGuestCtrlListener.cpp" line="552"/> 5024 4765 <source>Reached run level %RU32 5025 4766 </source> … … 5030 4771 <name>GuestProp</name> 5031 4772 <message> 5032 <location filename="../VBoxManageGuestProp.cpp" line=" 87"/>5033 <location filename="../VBoxManageGuestProp.cpp" line="1 46"/>5034 <location filename="../VBoxManageGuestProp.cpp" line="1 90"/>5035 <location filename="../VBoxManageGuestProp.cpp" line="2 32"/>5036 <location filename="../VBoxManageGuestProp.cpp" line="3 19"/>5037 <location filename="../VBoxManageGuestProp.cpp" line="4 17"/>5038 <location filename="../VBoxManageGuestProp.cpp" line="4 32"/>4773 <location filename="../VBoxManageGuestProp.cpp" line="64"/> 4774 <location filename="../VBoxManageGuestProp.cpp" line="125"/> 4775 <location filename="../VBoxManageGuestProp.cpp" line="171"/> 4776 <location filename="../VBoxManageGuestProp.cpp" line="215"/> 4777 <location filename="../VBoxManageGuestProp.cpp" line="304"/> 4778 <location filename="../VBoxManageGuestProp.cpp" line="407"/> 4779 <location filename="../VBoxManageGuestProp.cpp" line="422"/> 5039 4780 <source>Incorrect parameters</source> 5040 4781 <translation type="unfinished"></translation> 5041 4782 </message> 5042 4783 <message> 5043 <location filename="../VBoxManageGuestProp.cpp" line=" 107"/>4784 <location filename="../VBoxManageGuestProp.cpp" line="84"/> 5044 4785 <source>No value set! 5045 4786 </source> … … 5047 4788 </message> 5048 4789 <message> 5049 <location filename="../VBoxManageGuestProp.cpp" line=" 109"/>4790 <location filename="../VBoxManageGuestProp.cpp" line="86"/> 5050 4791 <source>Value: %ls 5051 4792 </source> … … 5053 4794 </message> 5054 4795 <message> 5055 <location filename="../VBoxManageGuestProp.cpp" line=" 112"/>4796 <location filename="../VBoxManageGuestProp.cpp" line="89"/> 5056 4797 <source>Timestamp: %lld 5057 4798 </source> … … 5059 4800 </message> 5060 4801 <message> 5061 <location filename="../VBoxManageGuestProp.cpp" line=" 113"/>4802 <location filename="../VBoxManageGuestProp.cpp" line="90"/> 5062 4803 <source>Flags: %ls 5063 4804 </source> … … 5065 4806 </message> 5066 4807 <message> 5067 <location filename="../VBoxManageGuestProp.cpp" line="2 68"/>4808 <location filename="../VBoxManageGuestProp.cpp" line="251"/> 5068 4809 <source>No properties found. 5069 4810 </source> … … 5071 4812 </message> 5072 4813 <message> 5073 <location filename="../VBoxManageGuestProp.cpp" line="2 70"/>4814 <location filename="../VBoxManageGuestProp.cpp" line="253"/> 5074 4815 <source>Name: %ls, value: %ls, timestamp: %lld, flags: %ls 5075 4816 </source> … … 5077 4818 </message> 5078 4819 <message> 5079 <location filename="../VBoxManageGuestProp.cpp" line="374"/> 4820 <location filename="../VBoxManageGuestProp.cpp" line="362"/> 4821 <source>Property %ls was deleted 4822 </source> 4823 <translation type="unfinished"></translation> 4824 </message> 4825 <message> 4826 <location filename="../VBoxManageGuestProp.cpp" line="364"/> 5080 4827 <source>Name: %ls, value: %ls, flags: %ls 5081 4828 </source> … … 5083 4830 </message> 5084 4831 <message> 5085 <location filename="../VBoxManageGuestProp.cpp" line="3 91"/>4832 <location filename="../VBoxManageGuestProp.cpp" line="381"/> 5086 4833 <source>Time out or interruption while waiting for a notification.</source> 5087 4834 <translation type="unfinished"></translation> … … 5119 4866 <message> 5120 4867 <location filename="../VBoxManageHelp.cpp" line="397"/> 5121 <location filename="../VBoxManageHelp.cpp" line="1164"/>5122 4868 <source>Invalid parameter '%s'</source> 5123 4869 <translation type="unfinished"></translation> … … 5125 4871 <message> 5126 4872 <location filename="../VBoxManageHelp.cpp" line="401"/> 5127 <location filename="../VBoxManageHelp.cpp" line="1168"/>5128 4873 <source>Invalid option -%c</source> 5129 4874 <translation type="unfinished"></translation> … … 5131 4876 <message> 5132 4877 <location filename="../VBoxManageHelp.cpp" line="403"/> 5133 <location filename="../VBoxManageHelp.cpp" line="1169"/>5134 4878 <source>Invalid option case %i</source> 5135 4879 <translation type="unfinished"></translation> … … 5137 4881 <message> 5138 4882 <location filename="../VBoxManageHelp.cpp" line="406"/> 5139 <location filename="../VBoxManageHelp.cpp" line="1172"/>5140 4883 <source>Unknown option: %s</source> 5141 4884 <translation type="unfinished"></translation> … … 5143 4886 <message> 5144 4887 <location filename="../VBoxManageHelp.cpp" line="408"/> 5145 <location filename="../VBoxManageHelp.cpp" line="1174"/>5146 4888 <source>Invalid argument format: %s</source> 5147 4889 <translation type="unfinished"></translation> … … 5170 4912 <location filename="../VBoxManageHelp.cpp" line="437"/> 5171 4913 <source>th</source> 5172 <translation type="unfinished"></translation>5173 </message>5174 <message>5175 <location filename="../VBoxManageHelp.cpp" line="563"/>5176 <source>Usage:5177 5178 </source>5179 <translation type="unfinished"></translation>5180 </message>5181 <message>5182 <location filename="../VBoxManageHelp.cpp" line="1081"/>5183 <location filename="../VBoxManageHelp.cpp" line="1105"/>5184 <source>5185 Syntax error: %N5186 </source>5187 4914 <translation type="unfinished"></translation> 5188 4915 </message> … … 5191 4918 <name>HostOnly</name> 5192 4919 <message> 5193 <location filename="../VBoxManageHostonly.cpp" line="9 7"/>4920 <location filename="../VBoxManageHostonly.cpp" line="95"/> 5194 4921 <source>Failed to create the host-only adapter</source> 5195 4922 <translation type="unfinished"></translation> 5196 4923 </message> 5197 4924 <message> 5198 <location filename="../VBoxManageHostonly.cpp" line="10 6"/>4925 <location filename="../VBoxManageHostonly.cpp" line="104"/> 5199 4926 <source>Interface '%ls' was successfully created 5200 4927 </source> … … 5202 4929 </message> 5203 4930 <message> 5204 <location filename="../VBoxManageHostonly.cpp" line="12 5"/>5205 <location filename="../VBoxManageHostonly.cpp" line="21 6"/>4931 <location filename="../VBoxManageHostonly.cpp" line="123"/> 4932 <location filename="../VBoxManageHostonly.cpp" line="214"/> 5206 4933 <source>Only one interface name can be specified</source> 5207 4934 <translation type="unfinished"></translation> 5208 4935 </message> 5209 4936 <message> 5210 <location filename="../VBoxManageHostonly.cpp" line="13 3"/>4937 <location filename="../VBoxManageHostonly.cpp" line="131"/> 5211 4938 <source>No interface name was specified</source> 5212 4939 <translation type="unfinished"></translation> 5213 4940 </message> 5214 4941 <message> 5215 <location filename="../VBoxManageHostonly.cpp" line="1 51"/>4942 <location filename="../VBoxManageHostonly.cpp" line="149"/> 5216 4943 <source>Failed to remove the host-only adapter</source> 5217 4944 <translation type="unfinished"></translation> 5218 4945 </message> 5219 4946 <message> 5220 <location filename="../VBoxManageHostonly.cpp" line="19 5"/>4947 <location filename="../VBoxManageHostonly.cpp" line="193"/> 5221 4948 <source>The --ip option is specified more than once</source> 5222 4949 <translation type="unfinished"></translation> 5223 4950 </message> 5224 4951 <message> 5225 <location filename="../VBoxManageHostonly.cpp" line=" 200"/>4952 <location filename="../VBoxManageHostonly.cpp" line="198"/> 5226 4953 <source>The --netmask option is specified more than once</source> 5227 4954 <translation type="unfinished"></translation> 5228 4955 </message> 5229 4956 <message> 5230 <location filename="../VBoxManageHostonly.cpp" line="20 5"/>4957 <location filename="../VBoxManageHostonly.cpp" line="203"/> 5231 4958 <source>The --ipv6 option is specified more than once</source> 5232 4959 <translation type="unfinished"></translation> 5233 4960 </message> 5234 4961 <message> 5235 <location filename="../VBoxManageHostonly.cpp" line="2 10"/>4962 <location filename="../VBoxManageHostonly.cpp" line="208"/> 5236 4963 <source>The --netmasklengthv6 option is specified more than once</source> 5237 4964 <translation type="unfinished"></translation> 5238 4965 </message> 5239 4966 <message> 5240 <location filename="../VBoxManageHostonly.cpp" line="22 7"/>4967 <location filename="../VBoxManageHostonly.cpp" line="224"/> 5241 4968 <source>You can not use --dhcp with static ip configuration parameters: --ip, --netmask, --ipv6 and --netmasklengthv6.</source> 5242 4969 <translation type="unfinished"></translation> 5243 4970 </message> 5244 4971 <message> 5245 <location filename="../VBoxManageHostonly.cpp" line="2 30"/>4972 <location filename="../VBoxManageHostonly.cpp" line="226"/> 5246 4973 <source>You can not use ipv4 configuration (--ip and --netmask) with ipv6 (--ipv6 and --netmasklengthv6) simultaneously.</source> 5247 4974 <translation type="unfinished"></translation> 5248 4975 </message> 5249 4976 <message> 5250 <location filename="../VBoxManageHostonly.cpp" line="23 8"/>4977 <location filename="../VBoxManageHostonly.cpp" line="234"/> 5251 4978 <source>Could not find interface '%s'</source> 5252 4979 <translation type="unfinished"></translation> 5253 4980 </message> 5254 4981 <message> 5255 <location filename="../VBoxManageHostonly.cpp" line="25 4"/>4982 <location filename="../VBoxManageHostonly.cpp" line="250"/> 5256 4983 <source>IPv6 setting is not supported for this adapter</source> 5257 4984 <translation type="unfinished"></translation> 5258 4985 </message> 5259 4986 <message> 5260 <location filename="../VBoxManageHostonly.cpp" line="2 63"/>4987 <location filename="../VBoxManageHostonly.cpp" line="259"/> 5261 4988 <source>Neither -dhcp nor -ip nor -ipv6 was specfified</source> 5262 4989 <translation type="unfinished"></translation> 5263 4990 </message> 5264 4991 <message> 5265 <location filename="../VBoxManageHostonly.cpp" line="2 72"/>5266 <location filename="../VBoxManageHostonly.cpp" line="5 09"/>4992 <location filename="../VBoxManageHostonly.cpp" line="268"/> 4993 <location filename="../VBoxManageHostonly.cpp" line="514"/> 5267 4994 <source>No sub-command specified</source> 5268 4995 <translation type="unfinished"></translation> 5269 4996 </message> 5270 4997 <message> 5271 <location filename="../VBoxManageHostonly.cpp" line="28 4"/>5272 <location filename="../VBoxManageHostonly.cpp" line="5 28"/>4998 <location filename="../VBoxManageHostonly.cpp" line="289"/> 4999 <location filename="../VBoxManageHostonly.cpp" line="533"/> 5273 5000 <source>Unknown sub-command '%s'</source> 5274 5001 <translation type="unfinished"></translation> 5275 5002 </message> 5276 5003 <message> 5277 <location filename="../VBoxManageHostonly.cpp" line="4 05"/>5004 <location filename="../VBoxManageHostonly.cpp" line="410"/> 5278 5005 <source>The --name parameter must be specified</source> 5279 5006 <translation type="unfinished"></translation> 5280 5007 </message> 5281 5008 <message> 5282 <location filename="../VBoxManageHostonly.cpp" line="4 07"/>5009 <location filename="../VBoxManageHostonly.cpp" line="412"/> 5283 5010 <source>The --netmask parameter must be specified</source> 5284 5011 <translation type="unfinished"></translation> 5285 5012 </message> 5286 5013 <message> 5287 <location filename="../VBoxManageHostonly.cpp" line="4 09"/>5014 <location filename="../VBoxManageHostonly.cpp" line="414"/> 5288 5015 <source>The --lower-ip parameter must be specified</source> 5289 5016 <translation type="unfinished"></translation> 5290 5017 </message> 5291 5018 <message> 5292 <location filename="../VBoxManageHostonly.cpp" line="41 1"/>5019 <location filename="../VBoxManageHostonly.cpp" line="416"/> 5293 5020 <source>The --upper-ip parameter must be specified</source> 5294 5021 <translation type="unfinished"></translation> 5295 5022 </message> 5296 5023 <message> 5297 <location filename="../VBoxManageHostonly.cpp" line="44 2"/>5298 <location filename="../VBoxManageHostonly.cpp" line=" 498"/>5024 <location filename="../VBoxManageHostonly.cpp" line="447"/> 5025 <location filename="../VBoxManageHostonly.cpp" line="503"/> 5299 5026 <source>Either --name or --id parameter must be specified</source> 5300 5027 <translation type="unfinished"></translation> … … 5304 5031 <name>Info</name> 5305 5032 <message> 5306 <location filename="../VBoxManageInfo.cpp" line="8 7"/>5307 <location filename="../VBoxManageInfo.cpp" line="1 10"/>5308 <location filename="../VBoxManageInfo.cpp" line="13 3"/>5309 <location filename="../VBoxManageInfo.cpp" line="22 05"/>5310 <location filename="../VBoxManageInfo.cpp" line="23 14"/>5311 <location filename="../VBoxManageInfo.cpp" line="28 47"/>5312 <location filename="../VBoxManageInfo.cpp" line="28 49"/>5033 <location filename="../VBoxManageInfo.cpp" line="85"/> 5034 <location filename="../VBoxManageInfo.cpp" line="108"/> 5035 <location filename="../VBoxManageInfo.cpp" line="131"/> 5036 <location filename="../VBoxManageInfo.cpp" line="2240"/> 5037 <location filename="../VBoxManageInfo.cpp" line="2349"/> 5038 <location filename="../VBoxManageInfo.cpp" line="2882"/> 5039 <location filename="../VBoxManageInfo.cpp" line="2884"/> 5313 5040 <source>enabled</source> 5314 5041 <translation type="unfinished"></translation> 5315 5042 </message> 5316 5043 <message> 5317 <location filename="../VBoxManageInfo.cpp" line="8 7"/>5318 <location filename="../VBoxManageInfo.cpp" line="1 10"/>5319 <location filename="../VBoxManageInfo.cpp" line="13 3"/>5320 <location filename="../VBoxManageInfo.cpp" line="12 30"/>5321 <location filename="../VBoxManageInfo.cpp" line="1 284"/>5322 <location filename="../VBoxManageInfo.cpp" line="22 05"/>5323 <location filename="../VBoxManageInfo.cpp" line="23 15"/>5324 <location filename="../VBoxManageInfo.cpp" line="28 47"/>5325 <location filename="../VBoxManageInfo.cpp" line="28 49"/>5044 <location filename="../VBoxManageInfo.cpp" line="85"/> 5045 <location filename="../VBoxManageInfo.cpp" line="108"/> 5046 <location filename="../VBoxManageInfo.cpp" line="131"/> 5047 <location filename="../VBoxManageInfo.cpp" line="1263"/> 5048 <location filename="../VBoxManageInfo.cpp" line="1317"/> 5049 <location filename="../VBoxManageInfo.cpp" line="2240"/> 5050 <location filename="../VBoxManageInfo.cpp" line="2350"/> 5051 <location filename="../VBoxManageInfo.cpp" line="2882"/> 5052 <location filename="../VBoxManageInfo.cpp" line="2884"/> 5326 5053 <source>disabled</source> 5327 5054 <translation type="unfinished"></translation> 5328 5055 </message> 5329 5056 <message> 5330 <location filename="../VBoxManageInfo.cpp" line="28 6"/>5057 <location filename="../VBoxManageInfo.cpp" line="284"/> 5331 5058 <source> %sName: %ls (UUID: %s)%s 5332 5059 </source> … … 5334 5061 </message> 5335 5062 <message> 5063 <location filename="../VBoxManageInfo.cpp" line="290"/> 5064 <source> %sDescription: %ls 5065 </source> 5066 <translation type="unfinished"></translation> 5067 </message> 5068 <message> 5336 5069 <location filename="../VBoxManageInfo.cpp" line="292"/> 5337 <source> %sDescription: %ls5338 </source>5339 <translation type="unfinished"></translation>5340 </message>5341 <message>5342 <location filename="../VBoxManageInfo.cpp" line="294"/>5343 5070 <source> %sDescription: 5344 5071 %ls … … 5347 5074 </message> 5348 5075 <message> 5076 <location filename="../VBoxManageInfo.cpp" line="341"/> 5077 <source>powered off</source> 5078 <translation type="unfinished"></translation> 5079 </message> 5080 <message> 5349 5081 <location filename="../VBoxManageInfo.cpp" line="343"/> 5350 <source> powered off</source>5082 <source>saved</source> 5351 5083 <translation type="unfinished"></translation> 5352 5084 </message> 5353 5085 <message> 5354 5086 <location filename="../VBoxManageInfo.cpp" line="345"/> 5355 <source> saved</source>5087 <source>teleported</source> 5356 5088 <translation type="unfinished"></translation> 5357 5089 </message> 5358 5090 <message> 5359 5091 <location filename="../VBoxManageInfo.cpp" line="347"/> 5360 <source> teleported</source>5092 <source>aborted</source> 5361 5093 <translation type="unfinished"></translation> 5362 5094 </message> 5363 5095 <message> 5364 5096 <location filename="../VBoxManageInfo.cpp" line="349"/> 5365 <source>aborted </source>5097 <source>aborted-saved</source> 5366 5098 <translation type="unfinished"></translation> 5367 5099 </message> 5368 5100 <message> 5369 5101 <location filename="../VBoxManageInfo.cpp" line="351"/> 5370 <source> aborted-saved</source>5102 <source>running</source> 5371 5103 <translation type="unfinished"></translation> 5372 5104 </message> 5373 5105 <message> 5374 5106 <location filename="../VBoxManageInfo.cpp" line="353"/> 5375 <source>running</source> 5107 <location filename="../VBoxManageInfo.cpp" line="399"/> 5108 <source>paused</source> 5376 5109 <translation type="unfinished"></translation> 5377 5110 </message> 5378 5111 <message> 5379 5112 <location filename="../VBoxManageInfo.cpp" line="355"/> 5113 <source>guru meditation</source> 5114 <translation type="unfinished"></translation> 5115 </message> 5116 <message> 5117 <location filename="../VBoxManageInfo.cpp" line="357"/> 5118 <source>teleporting</source> 5119 <translation type="unfinished"></translation> 5120 </message> 5121 <message> 5122 <location filename="../VBoxManageInfo.cpp" line="359"/> 5123 <source>live snapshotting</source> 5124 <translation type="unfinished"></translation> 5125 </message> 5126 <message> 5127 <location filename="../VBoxManageInfo.cpp" line="361"/> 5128 <source>starting</source> 5129 <translation type="unfinished"></translation> 5130 </message> 5131 <message> 5132 <location filename="../VBoxManageInfo.cpp" line="363"/> 5133 <source>stopping</source> 5134 <translation type="unfinished"></translation> 5135 </message> 5136 <message> 5137 <location filename="../VBoxManageInfo.cpp" line="365"/> 5138 <source>saving</source> 5139 <translation type="unfinished"></translation> 5140 </message> 5141 <message> 5142 <location filename="../VBoxManageInfo.cpp" line="367"/> 5143 <source>restoring</source> 5144 <translation type="unfinished"></translation> 5145 </message> 5146 <message> 5147 <location filename="../VBoxManageInfo.cpp" line="369"/> 5148 <source>teleporting paused vm</source> 5149 <translation type="unfinished"></translation> 5150 </message> 5151 <message> 5152 <location filename="../VBoxManageInfo.cpp" line="371"/> 5153 <source>teleporting (incoming)</source> 5154 <translation type="unfinished"></translation> 5155 </message> 5156 <message> 5157 <location filename="../VBoxManageInfo.cpp" line="373"/> 5158 <source>deleting snapshot live</source> 5159 <translation type="unfinished"></translation> 5160 </message> 5161 <message> 5162 <location filename="../VBoxManageInfo.cpp" line="375"/> 5163 <source>deleting snapshot live paused</source> 5164 <translation type="unfinished"></translation> 5165 </message> 5166 <message> 5167 <location filename="../VBoxManageInfo.cpp" line="377"/> 5168 <source>online snapshotting</source> 5169 <translation type="unfinished"></translation> 5170 </message> 5171 <message> 5172 <location filename="../VBoxManageInfo.cpp" line="379"/> 5173 <source>restoring snapshot</source> 5174 <translation type="unfinished"></translation> 5175 </message> 5176 <message> 5177 <location filename="../VBoxManageInfo.cpp" line="381"/> 5178 <source>deleting snapshot</source> 5179 <translation type="unfinished"></translation> 5180 </message> 5181 <message> 5182 <location filename="../VBoxManageInfo.cpp" line="383"/> 5183 <source>setting up</source> 5184 <translation type="unfinished"></translation> 5185 </message> 5186 <message> 5187 <location filename="../VBoxManageInfo.cpp" line="385"/> 5188 <source>offline snapshotting</source> 5189 <translation type="unfinished"></translation> 5190 </message> 5191 <message> 5192 <location filename="../VBoxManageInfo.cpp" line="389"/> 5193 <location filename="../VBoxManageInfo.cpp" line="416"/> 5194 <location filename="../VBoxManageInfo.cpp" line="446"/> 5195 <location filename="../VBoxManageInfo.cpp" line="699"/> 5196 <location filename="../VBoxManageInfo.cpp" line="1186"/> 5197 <location filename="../VBoxManageInfo.cpp" line="1206"/> 5198 <location filename="../VBoxManageInfo.cpp" line="1806"/> 5199 <location filename="../VBoxManageInfo.cpp" line="1860"/> 5200 <location filename="../VBoxManageInfo.cpp" line="2412"/> 5201 <source>unknown</source> 5202 <translation type="unfinished"></translation> 5203 </message> 5204 <message> 5205 <location filename="../VBoxManageInfo.cpp" line="397"/> 5206 <location filename="../VBoxManageInfo.cpp" line="2738"/> 5207 <location filename="../VBoxManageInfo.cpp" line="2828"/> 5208 <location filename="../VBoxManageInfo.cpp" line="2830"/> 5209 <source>not active</source> 5210 <translation type="unfinished"></translation> 5211 </message> 5212 <message> 5380 5213 <location filename="../VBoxManageInfo.cpp" line="401"/> 5381 <source>paused</source> 5382 <translation type="unfinished"></translation> 5383 </message> 5384 <message> 5385 <location filename="../VBoxManageInfo.cpp" line="357"/> 5386 <source>guru meditation</source> 5387 <translation type="unfinished"></translation> 5388 </message> 5389 <message> 5390 <location filename="../VBoxManageInfo.cpp" line="359"/> 5391 <source>teleporting</source> 5392 <translation type="unfinished"></translation> 5393 </message> 5394 <message> 5395 <location filename="../VBoxManageInfo.cpp" line="361"/> 5396 <source>live snapshotting</source> 5397 <translation type="unfinished"></translation> 5398 </message> 5399 <message> 5400 <location filename="../VBoxManageInfo.cpp" line="363"/> 5401 <source>starting</source> 5402 <translation type="unfinished"></translation> 5403 </message> 5404 <message> 5405 <location filename="../VBoxManageInfo.cpp" line="365"/> 5406 <source>stopping</source> 5407 <translation type="unfinished"></translation> 5408 </message> 5409 <message> 5410 <location filename="../VBoxManageInfo.cpp" line="367"/> 5411 <source>saving</source> 5412 <translation type="unfinished"></translation> 5413 </message> 5414 <message> 5415 <location filename="../VBoxManageInfo.cpp" line="369"/> 5416 <source>restoring</source> 5417 <translation type="unfinished"></translation> 5418 </message> 5419 <message> 5420 <location filename="../VBoxManageInfo.cpp" line="371"/> 5421 <source>teleporting paused vm</source> 5422 <translation type="unfinished"></translation> 5423 </message> 5424 <message> 5425 <location filename="../VBoxManageInfo.cpp" line="373"/> 5426 <source>teleporting (incoming)</source> 5427 <translation type="unfinished"></translation> 5428 </message> 5429 <message> 5430 <location filename="../VBoxManageInfo.cpp" line="375"/> 5431 <source>deleting snapshot live</source> 5432 <translation type="unfinished"></translation> 5433 </message> 5434 <message> 5435 <location filename="../VBoxManageInfo.cpp" line="377"/> 5436 <source>deleting snapshot live paused</source> 5437 <translation type="unfinished"></translation> 5438 </message> 5439 <message> 5440 <location filename="../VBoxManageInfo.cpp" line="379"/> 5441 <source>online snapshotting</source> 5442 <translation type="unfinished"></translation> 5443 </message> 5444 <message> 5445 <location filename="../VBoxManageInfo.cpp" line="381"/> 5446 <source>restoring snapshot</source> 5447 <translation type="unfinished"></translation> 5448 </message> 5449 <message> 5450 <location filename="../VBoxManageInfo.cpp" line="383"/> 5451 <source>deleting snapshot</source> 5452 <translation type="unfinished"></translation> 5453 </message> 5454 <message> 5455 <location filename="../VBoxManageInfo.cpp" line="385"/> 5456 <source>setting up</source> 5457 <translation type="unfinished"></translation> 5458 </message> 5459 <message> 5460 <location filename="../VBoxManageInfo.cpp" line="387"/> 5461 <source>offline snapshotting</source> 5462 <translation type="unfinished"></translation> 5463 </message> 5464 <message> 5465 <location filename="../VBoxManageInfo.cpp" line="391"/> 5466 <location filename="../VBoxManageInfo.cpp" line="418"/> 5467 <location filename="../VBoxManageInfo.cpp" line="448"/> 5468 <location filename="../VBoxManageInfo.cpp" line="691"/> 5214 <source>pre-initializing</source> 5215 <translation type="unfinished"></translation> 5216 </message> 5217 <message> 5218 <location filename="../VBoxManageInfo.cpp" line="403"/> 5219 <source>initializing</source> 5220 <translation type="unfinished"></translation> 5221 </message> 5222 <message> 5223 <location filename="../VBoxManageInfo.cpp" line="405"/> 5224 <source>active/running</source> 5225 <translation type="unfinished"></translation> 5226 </message> 5227 <message> 5228 <location filename="../VBoxManageInfo.cpp" line="407"/> 5229 <source>terminating</source> 5230 <translation type="unfinished"></translation> 5231 </message> 5232 <message> 5233 <location filename="../VBoxManageInfo.cpp" line="409"/> 5234 <source>terminated</source> 5235 <translation type="unfinished"></translation> 5236 </message> 5237 <message> 5238 <location filename="../VBoxManageInfo.cpp" line="411"/> 5239 <source>failed</source> 5240 <translation type="unfinished"></translation> 5241 </message> 5242 <message> 5243 <location filename="../VBoxManageInfo.cpp" line="692"/> 5244 <location filename="../VBoxManageInfo.cpp" line="1404"/> 5245 <location filename="../VBoxManageInfo.cpp" line="2139"/> 5246 <source>Null</source> 5247 <translation type="unfinished"></translation> 5248 </message> 5249 <message> 5250 <location filename="../VBoxManageInfo.cpp" line="693"/> 5251 <source>Disk</source> 5252 <translation type="unfinished"></translation> 5253 </message> 5254 <message> 5255 <location filename="../VBoxManageInfo.cpp" line="694"/> 5256 <location filename="../VBoxManageInfo.cpp" line="1295"/> 5257 <source>Network</source> 5258 <translation type="unfinished"></translation> 5259 </message> 5260 <message> 5261 <location filename="../VBoxManageInfo.cpp" line="709"/> 5262 <location filename="../VBoxManageInfo.cpp" line="2693"/> 5263 <source><none> 5264 </source> 5265 <translation type="unfinished"></translation> 5266 </message> 5267 <message> 5268 <location filename="../VBoxManageInfo.cpp" line="732"/> 5269 <source>#%zu: Name: '%ls', Type: %s, Limit: none (disabled) 5270 </source> 5271 <translation type="unfinished"></translation> 5272 </message> 5273 <message> 5274 <location filename="../VBoxManageInfo.cpp" line="780"/> 5275 <source>#%zu: Name: '%ls', Type: %s, Limit: %RI64 %s (%RI64 %s) 5276 </source> 5277 <translation type="unfinished"></translation> 5278 </message> 5279 <message> 5280 <location filename="../VBoxManageInfo.cpp" line="784"/> 5281 <source>#%zu: Name: '%ls', Type: %s, Limit: %RI64 %s 5282 </source> 5283 <translation type="unfinished"></translation> 5284 </message> 5285 <message> 5286 <location filename="../VBoxManageInfo.cpp" line="813"/> 5287 <source>Name: '%ls', Host path: '%ls' (%s), %s%s</source> 5288 <translation type="unfinished"></translation> 5289 </message> 5290 <message> 5291 <location filename="../VBoxManageInfo.cpp" line="814"/> 5292 <source>writable</source> 5293 <translation type="unfinished"></translation> 5294 </message> 5295 <message> 5296 <location filename="../VBoxManageInfo.cpp" line="814"/> 5297 <source>readonly</source> 5298 <translation type="unfinished"></translation> 5299 </message> 5300 <message> 5301 <location filename="../VBoxManageInfo.cpp" line="815"/> 5302 <source>, auto-mount</source> 5303 <translation type="unfinished"></translation> 5304 </message> 5305 <message> 5306 <location filename="../VBoxManageInfo.cpp" line="817"/> 5307 <source>, mount-point: '%ls' 5308 </source> 5309 <translation type="unfinished"></translation> 5310 </message> 5311 <message> 5312 <location filename="../VBoxManageInfo.cpp" line="840"/> 5313 <source>VendorId:</source> 5314 <translation type="unfinished"></translation> 5315 </message> 5316 <message> 5317 <location filename="../VBoxManageInfo.cpp" line="841"/> 5318 <source>ProductId:</source> 5319 <translation type="unfinished"></translation> 5320 </message> 5321 <message> 5322 <location filename="../VBoxManageInfo.cpp" line="850"/> 5323 <source>Revision:</source> 5324 <translation type="unfinished"></translation> 5325 </message> 5326 <message> 5327 <location filename="../VBoxManageInfo.cpp" line="852"/> 5328 <source>Manufacturer:</source> 5329 <translation type="unfinished"></translation> 5330 </message> 5331 <message> 5332 <location filename="../VBoxManageInfo.cpp" line="853"/> 5333 <source>Product:</source> 5334 <translation type="unfinished"></translation> 5335 </message> 5336 <message> 5337 <location filename="../VBoxManageInfo.cpp" line="854"/> 5338 <source>SerialNumber:</source> 5339 <translation type="unfinished"></translation> 5340 </message> 5341 <message> 5342 <location filename="../VBoxManageInfo.cpp" line="855"/> 5343 <source>Address:</source> 5344 <translation type="unfinished"></translation> 5345 </message> 5346 <message> 5347 <location filename="../VBoxManageInfo.cpp" line="862"/> 5348 <location filename="../VBoxManageInfo.cpp" line="1542"/> 5349 <location filename="../VBoxManageInfo.cpp" line="2572"/> 5350 <location filename="../VBoxManageInfo.cpp" line="2985"/> 5351 <source><none></source> 5352 <translation type="unfinished"></translation> 5353 </message> 5354 <message> 5355 <location filename="../VBoxManageInfo.cpp" line="920"/> 5356 <source> Port %u, Unit %u: UUID: %ls%s%s%s%s%s%s 5357 Location: "%ls" 5358 </source> 5359 <translation type="unfinished"></translation> 5360 </message> 5361 <message> 5362 <location filename="../VBoxManageInfo.cpp" line="922"/> 5363 <source>, passthrough enabled</source> 5364 <translation type="unfinished"></translation> 5365 </message> 5366 <message> 5367 <location filename="../VBoxManageInfo.cpp" line="923"/> 5368 <location filename="../VBoxManageInfo.cpp" line="966"/> 5369 <source>, temp eject</source> 5370 <translation type="unfinished"></translation> 5371 </message> 5372 <message> 5373 <location filename="../VBoxManageInfo.cpp" line="924"/> 5374 <location filename="../VBoxManageInfo.cpp" line="967"/> 5375 <source>, ejected</source> 5376 <translation type="unfinished"></translation> 5377 </message> 5378 <message> 5379 <location filename="../VBoxManageInfo.cpp" line="925"/> 5380 <source>, hot-pluggable</source> 5381 <translation type="unfinished"></translation> 5382 </message> 5383 <message> 5384 <location filename="../VBoxManageInfo.cpp" line="926"/> 5385 <source>, non-rotational (SSD)</source> 5386 <translation type="unfinished"></translation> 5387 </message> 5388 <message> 5389 <location filename="../VBoxManageInfo.cpp" line="927"/> 5390 <source>, discards unused blocks</source> 5391 <translation type="unfinished"></translation> 5392 </message> 5393 <message> 5394 <location filename="../VBoxManageInfo.cpp" line="965"/> 5395 <source> Port %u, Unit %u: Empty%s%s 5396 </source> 5397 <translation type="unfinished"></translation> 5398 </message> 5399 <message> 5400 <location filename="../VBoxManageInfo.cpp" line="979"/> 5401 <source> Port %u, Unit %u: GetMedium failed: %Rhrc 5402 </source> 5403 <translation type="unfinished"></translation> 5404 </message> 5405 <message> 5406 <location filename="../VBoxManageInfo.cpp" line="995"/> 5407 <location filename="../VBoxManageInfo.cpp" line="1027"/> 5408 <location filename="../VBoxManageInfo.cpp" line="1914"/> 5409 <location filename="../VBoxManageInfo.cpp" line="1950"/> 5410 <source>None</source> 5411 <translation type="unfinished"></translation> 5412 </message> 5413 <message> 5414 <location filename="../VBoxManageInfo.cpp" line="1000"/> 5415 <source>Automatic</source> 5416 <translation type="unfinished"></translation> 5417 </message> 5418 <message> 5419 <location filename="../VBoxManageInfo.cpp" line="1015"/> 5420 <location filename="../VBoxManageInfo.cpp" line="1057"/> 5421 <location filename="../VBoxManageInfo.cpp" line="1428"/> 5422 <location filename="../VBoxManageInfo.cpp" line="1908"/> 5423 <location filename="../VBoxManageInfo.cpp" line="1945"/> 5424 <location filename="../VBoxManageInfo.cpp" line="2124"/> 5425 <location filename="../VBoxManageInfo.cpp" line="2125"/> 5426 <location filename="../VBoxManageInfo.cpp" line="2126"/> 5427 <location filename="../VBoxManageInfo.cpp" line="2269"/> 5428 <location filename="../VBoxManageInfo.cpp" line="2298"/> 5429 <source>Unknown</source> 5430 <translation type="unfinished"></translation> 5431 </message> 5432 <message> 5433 <location filename="../VBoxManageInfo.cpp" line="1032"/> 5434 <source>Default</source> 5435 <translation type="unfinished"></translation> 5436 </message> 5437 <message> 5438 <location filename="../VBoxManageInfo.cpp" line="1037"/> 5439 <source>Legacy</source> 5440 <translation type="unfinished"></translation> 5441 </message> 5442 <message> 5443 <location filename="../VBoxManageInfo.cpp" line="1042"/> 5444 <source>Minimal</source> 5445 <translation type="unfinished"></translation> 5446 </message> 5447 <message> 5448 <location filename="../VBoxManageInfo.cpp" line="1106"/> 5449 <source>"<inaccessible>" {%s} 5450 </source> 5451 <translation type="unfinished"></translation> 5452 </message> 5453 <message> 5454 <location filename="../VBoxManageInfo.cpp" line="1112"/> 5455 <source>Name: <inaccessible!> 5456 </source> 5457 <translation type="unfinished"></translation> 5458 </message> 5459 <message> 5460 <location filename="../VBoxManageInfo.cpp" line="1121"/> 5461 <source>Config file: %ls 5462 </source> 5463 <translation type="unfinished"></translation> 5464 </message> 5465 <message> 5466 <location filename="../VBoxManageInfo.cpp" line="1124"/> 5467 <source>Access error details: 5468 </source> 5469 <translation type="unfinished"></translation> 5470 </message> 5471 <message> 5472 <location filename="../VBoxManageInfo.cpp" line="1144"/> 5473 <source>Name:</source> 5474 <translation type="unfinished"></translation> 5475 </message> 5476 <message> 5477 <location filename="../VBoxManageInfo.cpp" line="1145"/> 5478 <source>Groups:</source> 5479 <translation type="unfinished"></translation> 5480 </message> 5481 <message> 5482 <location filename="../VBoxManageInfo.cpp" line="1151"/> 5469 5483 <location filename="../VBoxManageInfo.cpp" line="1153"/> 5470 <location filename="../VBoxManageInfo.cpp" line="1173"/> 5471 <location filename="../VBoxManageInfo.cpp" line="1773"/> 5472 <location filename="../VBoxManageInfo.cpp" line="1825"/> 5473 <location filename="../VBoxManageInfo.cpp" line="2377"/> 5474 <source>unknown</source> 5475 <translation type="unfinished"></translation> 5476 </message> 5477 <message> 5478 <location filename="../VBoxManageInfo.cpp" line="399"/> 5479 <location filename="../VBoxManageInfo.cpp" line="2703"/> 5480 <location filename="../VBoxManageInfo.cpp" line="2793"/> 5481 <location filename="../VBoxManageInfo.cpp" line="2795"/> 5482 <source>not active</source> 5483 <translation type="unfinished"></translation> 5484 </message> 5485 <message> 5486 <location filename="../VBoxManageInfo.cpp" line="403"/> 5487 <source>pre-initializing</source> 5488 <translation type="unfinished"></translation> 5489 </message> 5490 <message> 5491 <location filename="../VBoxManageInfo.cpp" line="405"/> 5492 <source>initializing</source> 5493 <translation type="unfinished"></translation> 5494 </message> 5495 <message> 5496 <location filename="../VBoxManageInfo.cpp" line="407"/> 5497 <source>active/running</source> 5498 <translation type="unfinished"></translation> 5499 </message> 5500 <message> 5501 <location filename="../VBoxManageInfo.cpp" line="409"/> 5502 <source>terminating</source> 5503 <translation type="unfinished"></translation> 5504 </message> 5505 <message> 5506 <location filename="../VBoxManageInfo.cpp" line="411"/> 5507 <source>terminated</source> 5508 <translation type="unfinished"></translation> 5509 </message> 5510 <message> 5511 <location filename="../VBoxManageInfo.cpp" line="413"/> 5512 <source>failed</source> 5513 <translation type="unfinished"></translation> 5514 </message> 5515 <message> 5516 <location filename="../VBoxManageInfo.cpp" line="684"/> 5517 <location filename="../VBoxManageInfo.cpp" line="1371"/> 5518 <location filename="../VBoxManageInfo.cpp" line="2104"/> 5519 <source>Null</source> 5520 <translation type="unfinished"></translation> 5521 </message> 5522 <message> 5523 <location filename="../VBoxManageInfo.cpp" line="685"/> 5524 <source>Disk</source> 5525 <translation type="unfinished"></translation> 5526 </message> 5527 <message> 5528 <location filename="../VBoxManageInfo.cpp" line="686"/> 5529 <location filename="../VBoxManageInfo.cpp" line="1262"/> 5530 <source>Network</source> 5531 <translation type="unfinished"></translation> 5532 </message> 5533 <message> 5534 <location filename="../VBoxManageInfo.cpp" line="723"/> 5535 <source>Name: '%ls', Type: %s, Limit: none (disabled) 5536 </source> 5537 <translation type="unfinished"></translation> 5538 </message> 5539 <message> 5540 <location filename="../VBoxManageInfo.cpp" line="764"/> 5541 <source>Name: '%ls', Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec) 5542 </source> 5543 <translation type="unfinished"></translation> 5544 </message> 5545 <message> 5546 <location filename="../VBoxManageInfo.cpp" line="769"/> 5547 <source>Name: '%ls', Type: %s, Limit: %lld %sbytes/sec 5548 </source> 5549 <translation type="unfinished"></translation> 5550 </message> 5551 <message> 5552 <location filename="../VBoxManageInfo.cpp" line="773"/> 5553 <location filename="../VBoxManageInfo.cpp" line="2658"/> 5554 <source><none> 5555 </source> 5556 <translation type="unfinished"></translation> 5557 </message> 5558 <message> 5559 <location filename="../VBoxManageInfo.cpp" line="800"/> 5560 <source>Name: '%ls', Host path: '%ls' (%s), %s%s</source> 5561 <translation type="unfinished"></translation> 5562 </message> 5563 <message> 5564 <location filename="../VBoxManageInfo.cpp" line="801"/> 5565 <source>writable</source> 5566 <translation type="unfinished"></translation> 5567 </message> 5568 <message> 5569 <location filename="../VBoxManageInfo.cpp" line="801"/> 5570 <source>readonly</source> 5571 <translation type="unfinished"></translation> 5572 </message> 5573 <message> 5574 <location filename="../VBoxManageInfo.cpp" line="802"/> 5575 <source>, auto-mount</source> 5576 <translation type="unfinished"></translation> 5577 </message> 5578 <message> 5579 <location filename="../VBoxManageInfo.cpp" line="804"/> 5580 <source>, mount-point: '%ls' 5581 </source> 5582 <translation type="unfinished"></translation> 5583 </message> 5584 <message> 5585 <location filename="../VBoxManageInfo.cpp" line="827"/> 5586 <source>VendorId:</source> 5587 <translation type="unfinished"></translation> 5588 </message> 5589 <message> 5590 <location filename="../VBoxManageInfo.cpp" line="828"/> 5591 <source>ProductId:</source> 5592 <translation type="unfinished"></translation> 5593 </message> 5594 <message> 5595 <location filename="../VBoxManageInfo.cpp" line="837"/> 5596 <source>Revision:</source> 5597 <translation type="unfinished"></translation> 5598 </message> 5599 <message> 5600 <location filename="../VBoxManageInfo.cpp" line="839"/> 5601 <source>Manufacturer:</source> 5602 <translation type="unfinished"></translation> 5603 </message> 5604 <message> 5605 <location filename="../VBoxManageInfo.cpp" line="840"/> 5606 <source>Product:</source> 5607 <translation type="unfinished"></translation> 5608 </message> 5609 <message> 5610 <location filename="../VBoxManageInfo.cpp" line="841"/> 5611 <source>SerialNumber:</source> 5612 <translation type="unfinished"></translation> 5613 </message> 5614 <message> 5615 <location filename="../VBoxManageInfo.cpp" line="842"/> 5616 <source>Address:</source> 5617 <translation type="unfinished"></translation> 5618 </message> 5619 <message> 5620 <location filename="../VBoxManageInfo.cpp" line="849"/> 5621 <location filename="../VBoxManageInfo.cpp" line="1509"/> 5622 <location filename="../VBoxManageInfo.cpp" line="2537"/> 5623 <location filename="../VBoxManageInfo.cpp" line="2950"/> 5624 <source><none></source> 5625 <translation type="unfinished"></translation> 5626 </message> 5627 <message> 5628 <location filename="../VBoxManageInfo.cpp" line="901"/> 5629 <source> Port %u, Unit %u: UUID: %ls%s%s%s 5630 Location: "%ls" 5631 </source> 5632 <translation type="unfinished"></translation> 5633 </message> 5634 <message> 5635 <location filename="../VBoxManageInfo.cpp" line="903"/> 5636 <source>, passthrough enabled</source> 5637 <translation type="unfinished"></translation> 5638 </message> 5639 <message> 5640 <location filename="../VBoxManageInfo.cpp" line="904"/> 5641 <location filename="../VBoxManageInfo.cpp" line="933"/> 5642 <source>, temp eject</source> 5643 <translation type="unfinished"></translation> 5644 </message> 5645 <message> 5646 <location filename="../VBoxManageInfo.cpp" line="905"/> 5647 <location filename="../VBoxManageInfo.cpp" line="934"/> 5648 <source>, ejected</source> 5649 <translation type="unfinished"></translation> 5650 </message> 5651 <message> 5652 <location filename="../VBoxManageInfo.cpp" line="932"/> 5653 <source> Port %u, Unit %u: Empty%s%s 5654 </source> 5655 <translation type="unfinished"></translation> 5656 </message> 5657 <message> 5658 <location filename="../VBoxManageInfo.cpp" line="946"/> 5659 <source> Port %u, Unit %u: GetMedium failed: %Rhrc 5660 </source> 5661 <translation type="unfinished"></translation> 5662 </message> 5663 <message> 5664 <location filename="../VBoxManageInfo.cpp" line="962"/> 5665 <location filename="../VBoxManageInfo.cpp" line="994"/> 5666 <location filename="../VBoxManageInfo.cpp" line="1879"/> 5667 <location filename="../VBoxManageInfo.cpp" line="1915"/> 5668 <source>None</source> 5669 <translation type="unfinished"></translation> 5670 </message> 5671 <message> 5672 <location filename="../VBoxManageInfo.cpp" line="967"/> 5673 <source>Automatic</source> 5674 <translation type="unfinished"></translation> 5675 </message> 5676 <message> 5677 <location filename="../VBoxManageInfo.cpp" line="982"/> 5678 <location filename="../VBoxManageInfo.cpp" line="1024"/> 5679 <location filename="../VBoxManageInfo.cpp" line="1395"/> 5680 <location filename="../VBoxManageInfo.cpp" line="1873"/> 5681 <location filename="../VBoxManageInfo.cpp" line="1910"/> 5682 <location filename="../VBoxManageInfo.cpp" line="2089"/> 5683 <location filename="../VBoxManageInfo.cpp" line="2090"/> 5684 <location filename="../VBoxManageInfo.cpp" line="2091"/> 5685 <location filename="../VBoxManageInfo.cpp" line="2234"/> 5484 <source>Guest OS:</source> 5485 <translation type="unfinished"></translation> 5486 </message> 5487 <message> 5488 <location filename="../VBoxManageInfo.cpp" line="1155"/> 5489 <source>Config file:</source> 5490 <translation type="unfinished"></translation> 5491 </message> 5492 <message> 5493 <location filename="../VBoxManageInfo.cpp" line="1156"/> 5494 <source>Snapshot folder:</source> 5495 <translation type="unfinished"></translation> 5496 </message> 5497 <message> 5498 <location filename="../VBoxManageInfo.cpp" line="1157"/> 5499 <source>Log folder:</source> 5500 <translation type="unfinished"></translation> 5501 </message> 5502 <message> 5503 <location filename="../VBoxManageInfo.cpp" line="1158"/> 5504 <source>Hardware UUID:</source> 5505 <translation type="unfinished"></translation> 5506 </message> 5507 <message> 5508 <location filename="../VBoxManageInfo.cpp" line="1159"/> 5509 <source>Memory size:</source> 5510 <translation type="unfinished"></translation> 5511 </message> 5512 <message> 5513 <location filename="../VBoxManageInfo.cpp" line="1160"/> 5514 <source>Page Fusion:</source> 5515 <translation type="unfinished"></translation> 5516 </message> 5517 <message> 5518 <location filename="../VBoxManageInfo.cpp" line="1163"/> 5519 <source>VRAM size:</source> 5520 <translation type="unfinished"></translation> 5521 </message> 5522 <message> 5523 <location filename="../VBoxManageInfo.cpp" line="1164"/> 5524 <source>CPU exec cap:</source> 5525 <translation type="unfinished"></translation> 5526 </message> 5527 <message> 5528 <location filename="../VBoxManageInfo.cpp" line="1165"/> 5529 <source>HPET:</source> 5530 <translation type="unfinished"></translation> 5531 </message> 5532 <message> 5533 <location filename="../VBoxManageInfo.cpp" line="1166"/> 5534 <source>CPUProfile:</source> 5535 <translation type="unfinished"></translation> 5536 </message> 5537 <message> 5538 <location filename="../VBoxManageInfo.cpp" line="1177"/> 5539 <source>invalid</source> 5540 <translation type="unfinished"></translation> 5541 </message> 5542 <message> 5543 <location filename="../VBoxManageInfo.cpp" line="1189"/> 5544 <source>Chipset:</source> 5545 <translation type="unfinished"></translation> 5546 </message> 5547 <message> 5548 <location filename="../VBoxManageInfo.cpp" line="1209"/> 5549 <source>Firmware:</source> 5550 <translation type="unfinished"></translation> 5551 </message> 5552 <message> 5553 <location filename="../VBoxManageInfo.cpp" line="1211"/> 5554 <source>Number of CPUs:</source> 5555 <translation type="unfinished"></translation> 5556 </message> 5557 <message> 5558 <location filename="../VBoxManageInfo.cpp" line="1213"/> 5559 <source>Long Mode:</source> 5560 <translation type="unfinished"></translation> 5561 </message> 5562 <message> 5563 <location filename="../VBoxManageInfo.cpp" line="1214"/> 5564 <source>Triple Fault Reset:</source> 5565 <translation type="unfinished"></translation> 5566 </message> 5567 <message> 5568 <location filename="../VBoxManageInfo.cpp" line="1217"/> 5569 <source>Nested VT-x/AMD-V:</source> 5570 <translation type="unfinished"></translation> 5571 </message> 5572 <message> 5573 <location filename="../VBoxManageInfo.cpp" line="1218"/> 5574 <source>CPUID Portability Level:</source> 5575 <translation type="unfinished"></translation> 5576 </message> 5577 <message> 5578 <location filename="../VBoxManageInfo.cpp" line="1221"/> 5579 <source>CPUID overrides:</source> 5580 <translation type="unfinished"></translation> 5581 </message> 5582 <message> 5583 <location filename="../VBoxManageInfo.cpp" line="1234"/> 5584 <source>Leaf no. EAX EBX ECX EDX 5585 </source> 5586 <translation type="unfinished"></translation> 5587 </message> 5588 <message> 5589 <location filename="../VBoxManageInfo.cpp" line="1246"/> 5590 <source>None 5591 </source> 5592 <translation type="unfinished"></translation> 5593 </message> 5594 <message> 5595 <location filename="../VBoxManageInfo.cpp" line="1269"/> 5596 <source>menu only</source> 5597 <translation type="unfinished"></translation> 5598 </message> 5599 <message> 5600 <location filename="../VBoxManageInfo.cpp" line="1275"/> 5601 <source>message and menu</source> 5602 <translation type="unfinished"></translation> 5603 </message> 5604 <message> 5605 <location filename="../VBoxManageInfo.cpp" line="1277"/> 5606 <source>Boot menu mode:</source> 5607 <translation type="unfinished"></translation> 5608 </message> 5609 <message> 5610 <location filename="../VBoxManageInfo.cpp" line="1289"/> 5611 <source>Floppy</source> 5612 <translation type="unfinished"></translation> 5613 </message> 5614 <message> 5615 <location filename="../VBoxManageInfo.cpp" line="1293"/> 5616 <source>HardDisk</source> 5617 <translation type="unfinished"></translation> 5618 </message> 5619 <message> 5620 <location filename="../VBoxManageInfo.cpp" line="1299"/> 5621 <source>Shared Folder</source> 5622 <translation type="unfinished"></translation> 5623 </message> 5624 <message> 5625 <location filename="../VBoxManageInfo.cpp" line="1301"/> 5626 <source>Not Assigned</source> 5627 <translation type="unfinished"></translation> 5628 </message> 5629 <message> 5630 <location filename="../VBoxManageInfo.cpp" line="1302"/> 5631 <source>Boot Device %u:</source> 5632 <translation type="unfinished"></translation> 5633 </message> 5634 <message> 5635 <location filename="../VBoxManageInfo.cpp" line="1333"/> 5636 <source>BIOS APIC mode:</source> 5637 <translation type="unfinished"></translation> 5638 </message> 5639 <message> 5640 <location filename="../VBoxManageInfo.cpp" line="1335"/> 5641 <source>Time offset:</source> 5642 <translation type="unfinished"></translation> 5643 </message> 5644 <message> 5645 <location filename="../VBoxManageInfo.cpp" line="1335"/> 5646 <source>ms</source> 5647 <translation type="unfinished"></translation> 5648 </message> 5649 <message> 5650 <location filename="../VBoxManageInfo.cpp" line="1339"/> 5651 <source>BIOS NVRAM File:</source> 5652 <translation type="unfinished"></translation> 5653 </message> 5654 <message> 5655 <location filename="../VBoxManageInfo.cpp" line="1340"/> 5656 <source>RTC:</source> 5657 <translation type="unfinished"></translation> 5658 </message> 5659 <message> 5660 <location filename="../VBoxManageInfo.cpp" line="1340"/> 5661 <source>local time</source> 5662 <translation type="unfinished"></translation> 5663 </message> 5664 <message> 5665 <location filename="../VBoxManageInfo.cpp" line="1341"/> 5666 <source>Hardware Virtualization:</source> 5667 <translation type="unfinished"></translation> 5668 </message> 5669 <message> 5670 <location filename="../VBoxManageInfo.cpp" line="1342"/> 5671 <source>Nested Paging:</source> 5672 <translation type="unfinished"></translation> 5673 </message> 5674 <message> 5675 <location filename="../VBoxManageInfo.cpp" line="1343"/> 5676 <source>Large Pages:</source> 5677 <translation type="unfinished"></translation> 5678 </message> 5679 <message> 5680 <location filename="../VBoxManageInfo.cpp" line="1345"/> 5681 <source>VT-x Unrestricted Exec.:</source> 5682 <translation type="unfinished"></translation> 5683 </message> 5684 <message> 5685 <location filename="../VBoxManageInfo.cpp" line="1346"/> 5686 <source>AMD-V Virt. Vmsave/Vmload:</source> 5687 <translation type="unfinished"></translation> 5688 </message> 5689 <message> 5690 <location filename="../VBoxManageInfo.cpp" line="1358"/> 5691 <source>Paravirt. Provider:</source> 5692 <translation type="unfinished"></translation> 5693 </message> 5694 <message> 5695 <location filename="../VBoxManageInfo.cpp" line="1363"/> 5696 <source>Effective Paravirt. Prov.:</source> 5697 <translation type="unfinished"></translation> 5698 </message> 5699 <message> 5700 <location filename="../VBoxManageInfo.cpp" line="1368"/> 5701 <source>Paravirt. Debug:</source> 5702 <translation type="unfinished"></translation> 5703 </message> 5704 <message> 5705 <location filename="../VBoxManageInfo.cpp" line="1391"/> 5706 <source>%-28s %s (since %s) 5707 </source> 5708 <translation type="unfinished"></translation> 5709 </message> 5710 <message> 5711 <location filename="../VBoxManageInfo.cpp" line="1391"/> 5712 <source>State:</source> 5713 <translation type="unfinished"></translation> 5714 </message> 5715 <message> 5716 <location filename="../VBoxManageInfo.cpp" line="1435"/> 5717 <source>Graphics Controller:</source> 5718 <translation type="unfinished"></translation> 5719 </message> 5720 <message> 5721 <location filename="../VBoxManageInfo.cpp" line="1438"/> 5722 <source>Monitor count:</source> 5723 <translation type="unfinished"></translation> 5724 </message> 5725 <message> 5726 <location filename="../VBoxManageInfo.cpp" line="1439"/> 5727 <source>3D Acceleration:</source> 5728 <translation type="unfinished"></translation> 5729 </message> 5730 <message> 5731 <location filename="../VBoxManageInfo.cpp" line="1441"/> 5732 <source>2D Video Acceleration:</source> 5733 <translation type="unfinished"></translation> 5734 </message> 5735 <message> 5736 <location filename="../VBoxManageInfo.cpp" line="1443"/> 5737 <source>Teleporter Enabled:</source> 5738 <translation type="unfinished"></translation> 5739 </message> 5740 <message> 5741 <location filename="../VBoxManageInfo.cpp" line="1444"/> 5742 <source>Teleporter Port:</source> 5743 <translation type="unfinished"></translation> 5744 </message> 5745 <message> 5746 <location filename="../VBoxManageInfo.cpp" line="1445"/> 5747 <source>Teleporter Address:</source> 5748 <translation type="unfinished"></translation> 5749 </message> 5750 <message> 5751 <location filename="../VBoxManageInfo.cpp" line="1446"/> 5752 <source>Teleporter Password:</source> 5753 <translation type="unfinished"></translation> 5754 </message> 5755 <message> 5756 <location filename="../VBoxManageInfo.cpp" line="1447"/> 5757 <source>Tracing Enabled:</source> 5758 <translation type="unfinished"></translation> 5759 </message> 5760 <message> 5761 <location filename="../VBoxManageInfo.cpp" line="1448"/> 5762 <source>Allow Tracing to Access VM:</source> 5763 <translation type="unfinished"></translation> 5764 </message> 5765 <message> 5766 <location filename="../VBoxManageInfo.cpp" line="1449"/> 5767 <source>Tracing Configuration:</source> 5768 <translation type="unfinished"></translation> 5769 </message> 5770 <message> 5771 <location filename="../VBoxManageInfo.cpp" line="1450"/> 5772 <source>Autostart Enabled:</source> 5773 <translation type="unfinished"></translation> 5774 </message> 5775 <message> 5776 <location filename="../VBoxManageInfo.cpp" line="1451"/> 5777 <source>Autostart Delay:</source> 5778 <translation type="unfinished"></translation> 5779 </message> 5780 <message> 5781 <location filename="../VBoxManageInfo.cpp" line="1452"/> 5782 <source>Default Frontend:</source> 5783 <translation type="unfinished"></translation> 5784 </message> 5785 <message> 5786 <location filename="../VBoxManageInfo.cpp" line="1463"/> 5787 <source>flat</source> 5788 <translation type="unfinished"></translation> 5789 </message> 5790 <message> 5791 <location filename="../VBoxManageInfo.cpp" line="1469"/> 5792 <source>low</source> 5793 <translation type="unfinished"></translation> 5794 </message> 5795 <message> 5796 <location filename="../VBoxManageInfo.cpp" line="1475"/> 5797 <source>normal</source> 5798 <translation type="unfinished"></translation> 5799 </message> 5800 <message> 5801 <location filename="../VBoxManageInfo.cpp" line="1481"/> 5802 <source>high</source> 5803 <translation type="unfinished"></translation> 5804 </message> 5805 <message> 5806 <location filename="../VBoxManageInfo.cpp" line="1487"/> 5807 <source>default</source> 5808 <translation type="unfinished"></translation> 5809 </message> 5810 <message> 5811 <location filename="../VBoxManageInfo.cpp" line="1490"/> 5812 <source>VM process priority:</source> 5813 <translation type="unfinished"></translation> 5814 </message> 5815 <message> 5816 <location filename="../VBoxManageInfo.cpp" line="1502"/> 5817 <location filename="../VBoxManageInfo.cpp" line="1542"/> 5818 <source>Storage Controllers:</source> 5819 <translation type="unfinished"></translation> 5820 </message> 5821 <message> 5822 <location filename="../VBoxManageInfo.cpp" line="1532"/> 5823 <source>#%u: '%ls', Type: %s, Instance: %u, Ports: %u (max %u), %s 5824 </source> 5825 <translation type="unfinished"></translation> 5826 </message> 5827 <message> 5828 <location filename="../VBoxManageInfo.cpp" line="1534"/> 5829 <source>Bootable</source> 5830 <translation type="unfinished"></translation> 5831 </message> 5832 <message> 5833 <location filename="../VBoxManageInfo.cpp" line="1534"/> 5834 <source>Not bootable</source> 5835 <translation type="unfinished"></translation> 5836 </message> 5837 <message> 5838 <location filename="../VBoxManageInfo.cpp" line="1561"/> 5839 <source>NIC %u:</source> 5840 <translation type="unfinished"></translation> 5841 </message> 5842 <message> 5843 <location filename="../VBoxManageInfo.cpp" line="1570"/> 5844 <location filename="../VBoxManageInfo.cpp" line="1992"/> 5845 <location filename="../VBoxManageInfo.cpp" line="2098"/> 5846 <location filename="../VBoxManageInfo.cpp" line="2459"/> 5847 <location filename="../VBoxManageInfo.cpp" line="2491"/> 5848 <source>%-28s disabled 5849 </source> 5850 <translation type="unfinished"></translation> 5851 </message> 5852 <message> 5853 <location filename="../VBoxManageInfo.cpp" line="1587"/> 5854 <location filename="../VBoxManageInfo.cpp" line="1892"/> 5855 <location filename="../VBoxManageInfo.cpp" line="1897"/> 5856 <source>none</source> 5857 <translation type="unfinished"></translation> 5858 </message> 5859 <message> 5860 <location filename="../VBoxManageInfo.cpp" line="1655"/> 5861 <source>%sNIC %d Rule(%d): name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s 5862 </source> 5863 <translation type="unfinished"></translation> 5864 </message> 5865 <message> 5866 <location filename="../VBoxManageInfo.cpp" line="1678"/> 5867 <source>NIC %d Settings: MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d) 5868 </source> 5869 <translation type="unfinished"></translation> 5870 </message> 5871 <message> 5872 <location filename="../VBoxManageInfo.cpp" line="1694"/> 5873 <source>Bridged Interface '%ls'</source> 5874 <translation type="unfinished"></translation> 5875 </message> 5876 <message> 5877 <location filename="../VBoxManageInfo.cpp" line="1708"/> 5878 <source>Internal Network '%s'</source> 5879 <translation type="unfinished"></translation> 5880 </message> 5881 <message> 5882 <location filename="../VBoxManageInfo.cpp" line="1722"/> 5883 <source>Host-only Interface '%ls'</source> 5884 <translation type="unfinished"></translation> 5885 </message> 5886 <message> 5887 <location filename="../VBoxManageInfo.cpp" line="1737"/> 5888 <source>Generic '%ls'</source> 5889 <translation type="unfinished"></translation> 5890 </message> 5891 <message> 5892 <location filename="../VBoxManageInfo.cpp" line="1766"/> 5893 <source>NAT Network '%s'</source> 5894 <translation type="unfinished"></translation> 5895 </message> 5896 <message> 5897 <location filename="../VBoxManageInfo.cpp" line="1781"/> 5898 <source>Host Only Network '%s'</source> 5899 <translation type="unfinished"></translation> 5900 </message> 5901 <message> 5902 <location filename="../VBoxManageInfo.cpp" line="1797"/> 5903 <source>Cloud Network '%s'</source> 5904 <translation type="unfinished"></translation> 5905 </message> 5906 <message> 5907 <location filename="../VBoxManageInfo.cpp" line="1820"/> 5908 <source>deny</source> 5909 <translation type="unfinished"></translation> 5910 </message> 5911 <message> 5912 <location filename="../VBoxManageInfo.cpp" line="1821"/> 5913 <source>allow-vms</source> 5914 <translation type="unfinished"></translation> 5915 </message> 5916 <message> 5917 <location filename="../VBoxManageInfo.cpp" line="1822"/> 5918 <source>allow-all</source> 5919 <translation type="unfinished"></translation> 5920 </message> 5921 <message> 5922 <location filename="../VBoxManageInfo.cpp" line="1888"/> 5923 <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls 5924 </source> 5925 <translation type="unfinished"></translation> 5926 </message> 5927 <message> 5928 <location filename="../VBoxManageInfo.cpp" line="1890"/> 5929 <location filename="../VBoxManageInfo.cpp" line="1891"/> 5930 <location filename="../VBoxManageInfo.cpp" line="2452"/> 5931 <location filename="../VBoxManageInfo.cpp" line="2453"/> 5932 <source>on</source> 5933 <translation type="unfinished"></translation> 5934 </message> 5935 <message> 5936 <location filename="../VBoxManageInfo.cpp" line="1890"/> 5937 <location filename="../VBoxManageInfo.cpp" line="1891"/> 5938 <location filename="../VBoxManageInfo.cpp" line="2452"/> 5939 <location filename="../VBoxManageInfo.cpp" line="2453"/> 5940 <source>off</source> 5941 <translation type="unfinished"></translation> 5942 </message> 5943 <message> 5944 <location filename="../VBoxManageInfo.cpp" line="1918"/> 5945 <source>PS/2 Mouse</source> 5946 <translation type="unfinished"></translation> 5947 </message> 5948 <message> 5949 <location filename="../VBoxManageInfo.cpp" line="1922"/> 5950 <source>USB Mouse</source> 5951 <translation type="unfinished"></translation> 5952 </message> 5953 <message> 5954 <location filename="../VBoxManageInfo.cpp" line="1926"/> 5955 <source>USB Tablet</source> 5956 <translation type="unfinished"></translation> 5957 </message> 5958 <message> 5959 <location filename="../VBoxManageInfo.cpp" line="1930"/> 5960 <source>USB Tablet and PS/2 Mouse</source> 5961 <translation type="unfinished"></translation> 5962 </message> 5963 <message> 5964 <location filename="../VBoxManageInfo.cpp" line="1934"/> 5965 <source>USB Multi-Touch</source> 5966 <translation type="unfinished"></translation> 5967 </message> 5968 <message> 5969 <location filename="../VBoxManageInfo.cpp" line="1940"/> 5970 <source>Pointing Device:</source> 5971 <translation type="unfinished"></translation> 5972 </message> 5973 <message> 5974 <location filename="../VBoxManageInfo.cpp" line="1954"/> 5975 <source>PS/2 Keyboard</source> 5976 <translation type="unfinished"></translation> 5977 </message> 5978 <message> 5979 <location filename="../VBoxManageInfo.cpp" line="1958"/> 5980 <source>USB Keyboard</source> 5981 <translation type="unfinished"></translation> 5982 </message> 5983 <message> 5984 <location filename="../VBoxManageInfo.cpp" line="1962"/> 5985 <source>USB and PS/2 Keyboard</source> 5986 <translation type="unfinished"></translation> 5987 </message> 5988 <message> 5989 <location filename="../VBoxManageInfo.cpp" line="1968"/> 5990 <source>Keyboard Device:</source> 5991 <translation type="unfinished"></translation> 5992 </message> 5993 <message> 5994 <location filename="../VBoxManageInfo.cpp" line="1982"/> 5995 <source>UART %u:</source> 5996 <translation type="unfinished"></translation> 5997 </message> 5998 <message> 5999 <location filename="../VBoxManageInfo.cpp" line="2011"/> 6000 <location filename="../VBoxManageInfo.cpp" line="2111"/> 6001 <source>%-28s I/O base: %#06x, IRQ: %d</source> 6002 <translation type="unfinished"></translation> 6003 </message> 6004 <message> 6005 <location filename="../VBoxManageInfo.cpp" line="2019"/> 6006 <source>, disconnected</source> 6007 <translation type="unfinished"></translation> 6008 </message> 6009 <message> 6010 <location filename="../VBoxManageInfo.cpp" line="2026"/> 6011 <source>, attached to raw file '%ls' 6012 </source> 6013 <translation type="unfinished"></translation> 6014 </message> 6015 <message> 6016 <location filename="../VBoxManageInfo.cpp" line="2034"/> 6017 <source>, attached to tcp (%s) '%ls'</source> 6018 <translation type="unfinished"></translation> 6019 </message> 6020 <message> 6021 <location filename="../VBoxManageInfo.cpp" line="2035"/> 6022 <location filename="../VBoxManageInfo.cpp" line="2043"/> 6023 <source>server</source> 6024 <translation type="unfinished"></translation> 6025 </message> 6026 <message> 6027 <location filename="../VBoxManageInfo.cpp" line="2035"/> 6028 <location filename="../VBoxManageInfo.cpp" line="2043"/> 6029 <source>client</source> 6030 <translation type="unfinished"></translation> 6031 </message> 6032 <message> 6033 <location filename="../VBoxManageInfo.cpp" line="2042"/> 6034 <source>, attached to pipe (%s) '%ls'</source> 6035 <translation type="unfinished"></translation> 6036 </message> 6037 <message> 6038 <location filename="../VBoxManageInfo.cpp" line="2050"/> 6039 <source>, attached to device '%ls'</source> 6040 <translation type="unfinished"></translation> 6041 </message> 6042 <message> 6043 <location filename="../VBoxManageInfo.cpp" line="2088"/> 6044 <source>LPT %u:</source> 6045 <translation type="unfinished"></translation> 6046 </message> 6047 <message> 6048 <location filename="../VBoxManageInfo.cpp" line="2115"/> 6049 <source>, attached to device '%ls' 6050 </source> 6051 <translation type="unfinished"></translation> 6052 </message> 6053 <message> 6054 <location filename="../VBoxManageInfo.cpp" line="2240"/> 6055 <source>Audio:</source> 6056 <translation type="unfinished"></translation> 6057 </message> 6058 <message> 6059 <location filename="../VBoxManageInfo.cpp" line="2242"/> 6060 <source> (Driver: %s, Controller: %s, Codec: %s)</source> 6061 <translation type="unfinished"></translation> 6062 </message> 6063 <message> 6064 <location filename="../VBoxManageInfo.cpp" line="2245"/> 6065 <source>Audio playback:</source> 6066 <translation type="unfinished"></translation> 6067 </message> 6068 <message> 6069 <location filename="../VBoxManageInfo.cpp" line="2246"/> 6070 <source>Audio capture:</source> 6071 <translation type="unfinished"></translation> 6072 </message> 6073 <message> 6074 <location filename="../VBoxManageInfo.cpp" line="2260"/> 6075 <location filename="../VBoxManageInfo.cpp" line="2289"/> 6076 <source>HostToGuest</source> 6077 <translation type="unfinished"></translation> 6078 </message> 6079 <message> 5686 6080 <location filename="../VBoxManageInfo.cpp" line="2263"/> 5687 <source>Unknown</source> 5688 <translation type="unfinished"></translation> 5689 </message> 5690 <message> 5691 <location filename="../VBoxManageInfo.cpp" line="999"/> 5692 <source>Default</source> 5693 <translation type="unfinished"></translation> 5694 </message> 5695 <message> 5696 <location filename="../VBoxManageInfo.cpp" line="1004"/> 5697 <source>Legacy</source> 5698 <translation type="unfinished"></translation> 5699 </message> 5700 <message> 5701 <location filename="../VBoxManageInfo.cpp" line="1009"/> 5702 <source>Minimal</source> 5703 <translation type="unfinished"></translation> 5704 </message> 5705 <message> 5706 <location filename="../VBoxManageInfo.cpp" line="1073"/> 5707 <source>"<inaccessible>" {%s} 5708 </source> 5709 <translation type="unfinished"></translation> 5710 </message> 5711 <message> 5712 <location filename="../VBoxManageInfo.cpp" line="1079"/> 5713 <source>Name: <inaccessible!> 5714 </source> 5715 <translation type="unfinished"></translation> 5716 </message> 5717 <message> 5718 <location filename="../VBoxManageInfo.cpp" line="1088"/> 5719 <source>Config file: %ls 5720 </source> 5721 <translation type="unfinished"></translation> 5722 </message> 5723 <message> 5724 <location filename="../VBoxManageInfo.cpp" line="1091"/> 5725 <source>Access error details: 5726 </source> 5727 <translation type="unfinished"></translation> 5728 </message> 5729 <message> 5730 <location filename="../VBoxManageInfo.cpp" line="1111"/> 5731 <source>Name:</source> 5732 <translation type="unfinished"></translation> 5733 </message> 5734 <message> 5735 <location filename="../VBoxManageInfo.cpp" line="1112"/> 5736 <source>Groups:</source> 5737 <translation type="unfinished"></translation> 5738 </message> 5739 <message> 5740 <location filename="../VBoxManageInfo.cpp" line="1118"/> 5741 <location filename="../VBoxManageInfo.cpp" line="1120"/> 5742 <source>Guest OS:</source> 5743 <translation type="unfinished"></translation> 5744 </message> 5745 <message> 5746 <location filename="../VBoxManageInfo.cpp" line="1122"/> 5747 <source>Config file:</source> 5748 <translation type="unfinished"></translation> 5749 </message> 5750 <message> 5751 <location filename="../VBoxManageInfo.cpp" line="1123"/> 5752 <source>Snapshot folder:</source> 5753 <translation type="unfinished"></translation> 5754 </message> 5755 <message> 5756 <location filename="../VBoxManageInfo.cpp" line="1124"/> 5757 <source>Log folder:</source> 5758 <translation type="unfinished"></translation> 5759 </message> 5760 <message> 5761 <location filename="../VBoxManageInfo.cpp" line="1125"/> 5762 <source>Hardware UUID:</source> 5763 <translation type="unfinished"></translation> 5764 </message> 5765 <message> 5766 <location filename="../VBoxManageInfo.cpp" line="1126"/> 5767 <source>Memory size:</source> 5768 <translation type="unfinished"></translation> 5769 </message> 5770 <message> 5771 <location filename="../VBoxManageInfo.cpp" line="1127"/> 5772 <source>Page Fusion:</source> 5773 <translation type="unfinished"></translation> 5774 </message> 5775 <message> 5776 <location filename="../VBoxManageInfo.cpp" line="1130"/> 5777 <source>VRAM size:</source> 5778 <translation type="unfinished"></translation> 5779 </message> 5780 <message> 5781 <location filename="../VBoxManageInfo.cpp" line="1131"/> 5782 <source>CPU exec cap:</source> 5783 <translation type="unfinished"></translation> 5784 </message> 5785 <message> 5786 <location filename="../VBoxManageInfo.cpp" line="1132"/> 5787 <source>HPET:</source> 5788 <translation type="unfinished"></translation> 5789 </message> 5790 <message> 5791 <location filename="../VBoxManageInfo.cpp" line="1133"/> 5792 <source>CPUProfile:</source> 5793 <translation type="unfinished"></translation> 5794 </message> 5795 <message> 5796 <location filename="../VBoxManageInfo.cpp" line="1144"/> 5797 <source>invalid</source> 5798 <translation type="unfinished"></translation> 5799 </message> 5800 <message> 5801 <location filename="../VBoxManageInfo.cpp" line="1156"/> 5802 <source>Chipset:</source> 5803 <translation type="unfinished"></translation> 5804 </message> 5805 <message> 5806 <location filename="../VBoxManageInfo.cpp" line="1176"/> 5807 <source>Firmware:</source> 5808 <translation type="unfinished"></translation> 5809 </message> 5810 <message> 5811 <location filename="../VBoxManageInfo.cpp" line="1178"/> 5812 <source>Number of CPUs:</source> 5813 <translation type="unfinished"></translation> 5814 </message> 5815 <message> 5816 <location filename="../VBoxManageInfo.cpp" line="1180"/> 5817 <source>Long Mode:</source> 5818 <translation type="unfinished"></translation> 5819 </message> 5820 <message> 5821 <location filename="../VBoxManageInfo.cpp" line="1181"/> 5822 <source>Triple Fault Reset:</source> 5823 <translation type="unfinished"></translation> 5824 </message> 5825 <message> 5826 <location filename="../VBoxManageInfo.cpp" line="1184"/> 5827 <source>Nested VT-x/AMD-V:</source> 5828 <translation type="unfinished"></translation> 5829 </message> 5830 <message> 5831 <location filename="../VBoxManageInfo.cpp" line="1185"/> 5832 <source>CPUID Portability Level:</source> 5833 <translation type="unfinished"></translation> 5834 </message> 5835 <message> 5836 <location filename="../VBoxManageInfo.cpp" line="1188"/> 5837 <source>CPUID overrides:</source> 5838 <translation type="unfinished"></translation> 5839 </message> 5840 <message> 5841 <location filename="../VBoxManageInfo.cpp" line="1201"/> 5842 <source>Leaf no. EAX EBX ECX EDX 5843 </source> 5844 <translation type="unfinished"></translation> 5845 </message> 5846 <message> 5847 <location filename="../VBoxManageInfo.cpp" line="1213"/> 5848 <source>None 5849 </source> 5850 <translation type="unfinished"></translation> 5851 </message> 5852 <message> 5853 <location filename="../VBoxManageInfo.cpp" line="1236"/> 5854 <source>menu only</source> 5855 <translation type="unfinished"></translation> 5856 </message> 5857 <message> 5858 <location filename="../VBoxManageInfo.cpp" line="1242"/> 5859 <source>message and menu</source> 5860 <translation type="unfinished"></translation> 5861 </message> 5862 <message> 5863 <location filename="../VBoxManageInfo.cpp" line="1244"/> 5864 <source>Boot menu mode:</source> 5865 <translation type="unfinished"></translation> 5866 </message> 5867 <message> 5868 <location filename="../VBoxManageInfo.cpp" line="1256"/> 5869 <source>Floppy</source> 5870 <translation type="unfinished"></translation> 5871 </message> 5872 <message> 5873 <location filename="../VBoxManageInfo.cpp" line="1260"/> 5874 <source>HardDisk</source> 5875 <translation type="unfinished"></translation> 5876 </message> 5877 <message> 5878 <location filename="../VBoxManageInfo.cpp" line="1266"/> 5879 <source>Shared Folder</source> 5880 <translation type="unfinished"></translation> 5881 </message> 5882 <message> 5883 <location filename="../VBoxManageInfo.cpp" line="1268"/> 5884 <source>Not Assigned</source> 5885 <translation type="unfinished"></translation> 5886 </message> 5887 <message> 5888 <location filename="../VBoxManageInfo.cpp" line="1269"/> 5889 <source>Boot Device %u:</source> 5890 <translation type="unfinished"></translation> 5891 </message> 5892 <message> 5893 <location filename="../VBoxManageInfo.cpp" line="1300"/> 5894 <source>BIOS APIC mode:</source> 5895 <translation type="unfinished"></translation> 5896 </message> 5897 <message> 5898 <location filename="../VBoxManageInfo.cpp" line="1302"/> 5899 <source>Time offset:</source> 5900 <translation type="unfinished"></translation> 5901 </message> 5902 <message> 5903 <location filename="../VBoxManageInfo.cpp" line="1302"/> 5904 <source>ms</source> 5905 <translation type="unfinished"></translation> 5906 </message> 5907 <message> 5908 <location filename="../VBoxManageInfo.cpp" line="1306"/> 5909 <source>BIOS NVRAM File:</source> 5910 <translation type="unfinished"></translation> 5911 </message> 5912 <message> 5913 <location filename="../VBoxManageInfo.cpp" line="1307"/> 5914 <source>RTC:</source> 5915 <translation type="unfinished"></translation> 5916 </message> 5917 <message> 5918 <location filename="../VBoxManageInfo.cpp" line="1307"/> 5919 <source>local time</source> 5920 <translation type="unfinished"></translation> 5921 </message> 5922 <message> 5923 <location filename="../VBoxManageInfo.cpp" line="1308"/> 5924 <source>Hardware Virtualization:</source> 5925 <translation type="unfinished"></translation> 5926 </message> 5927 <message> 5928 <location filename="../VBoxManageInfo.cpp" line="1309"/> 5929 <source>Nested Paging:</source> 5930 <translation type="unfinished"></translation> 5931 </message> 5932 <message> 5933 <location filename="../VBoxManageInfo.cpp" line="1310"/> 5934 <source>Large Pages:</source> 5935 <translation type="unfinished"></translation> 5936 </message> 5937 <message> 5938 <location filename="../VBoxManageInfo.cpp" line="1312"/> 5939 <source>VT-x Unrestricted Exec.:</source> 5940 <translation type="unfinished"></translation> 5941 </message> 5942 <message> 5943 <location filename="../VBoxManageInfo.cpp" line="1313"/> 5944 <source>AMD-V Virt. Vmsave/Vmload:</source> 5945 <translation type="unfinished"></translation> 5946 </message> 5947 <message> 5948 <location filename="../VBoxManageInfo.cpp" line="1325"/> 5949 <source>Paravirt. Provider:</source> 5950 <translation type="unfinished"></translation> 5951 </message> 5952 <message> 5953 <location filename="../VBoxManageInfo.cpp" line="1330"/> 5954 <source>Effective Paravirt. Prov.:</source> 5955 <translation type="unfinished"></translation> 5956 </message> 5957 <message> 5958 <location filename="../VBoxManageInfo.cpp" line="1335"/> 5959 <source>Paravirt. Debug:</source> 5960 <translation type="unfinished"></translation> 5961 </message> 5962 <message> 5963 <location filename="../VBoxManageInfo.cpp" line="1358"/> 5964 <source>%-28s %s (since %s) 5965 </source> 5966 <translation type="unfinished"></translation> 5967 </message> 5968 <message> 5969 <location filename="../VBoxManageInfo.cpp" line="1358"/> 5970 <source>State:</source> 5971 <translation type="unfinished"></translation> 5972 </message> 5973 <message> 5974 <location filename="../VBoxManageInfo.cpp" line="1402"/> 5975 <source>Graphics Controller:</source> 5976 <translation type="unfinished"></translation> 5977 </message> 5978 <message> 5979 <location filename="../VBoxManageInfo.cpp" line="1405"/> 5980 <source>Monitor count:</source> 5981 <translation type="unfinished"></translation> 5982 </message> 5983 <message> 5984 <location filename="../VBoxManageInfo.cpp" line="1406"/> 5985 <source>3D Acceleration:</source> 5986 <translation type="unfinished"></translation> 5987 </message> 5988 <message> 5989 <location filename="../VBoxManageInfo.cpp" line="1408"/> 5990 <source>2D Video Acceleration:</source> 5991 <translation type="unfinished"></translation> 5992 </message> 5993 <message> 5994 <location filename="../VBoxManageInfo.cpp" line="1410"/> 5995 <source>Teleporter Enabled:</source> 5996 <translation type="unfinished"></translation> 5997 </message> 5998 <message> 5999 <location filename="../VBoxManageInfo.cpp" line="1411"/> 6000 <source>Teleporter Port:</source> 6001 <translation type="unfinished"></translation> 6002 </message> 6003 <message> 6004 <location filename="../VBoxManageInfo.cpp" line="1412"/> 6005 <source>Teleporter Address:</source> 6006 <translation type="unfinished"></translation> 6007 </message> 6008 <message> 6009 <location filename="../VBoxManageInfo.cpp" line="1413"/> 6010 <source>Teleporter Password:</source> 6011 <translation type="unfinished"></translation> 6012 </message> 6013 <message> 6014 <location filename="../VBoxManageInfo.cpp" line="1414"/> 6015 <source>Tracing Enabled:</source> 6016 <translation type="unfinished"></translation> 6017 </message> 6018 <message> 6019 <location filename="../VBoxManageInfo.cpp" line="1415"/> 6020 <source>Allow Tracing to Access VM:</source> 6021 <translation type="unfinished"></translation> 6022 </message> 6023 <message> 6024 <location filename="../VBoxManageInfo.cpp" line="1416"/> 6025 <source>Tracing Configuration:</source> 6026 <translation type="unfinished"></translation> 6027 </message> 6028 <message> 6029 <location filename="../VBoxManageInfo.cpp" line="1417"/> 6030 <source>Autostart Enabled:</source> 6031 <translation type="unfinished"></translation> 6032 </message> 6033 <message> 6034 <location filename="../VBoxManageInfo.cpp" line="1418"/> 6035 <source>Autostart Delay:</source> 6036 <translation type="unfinished"></translation> 6037 </message> 6038 <message> 6039 <location filename="../VBoxManageInfo.cpp" line="1419"/> 6040 <source>Default Frontend:</source> 6041 <translation type="unfinished"></translation> 6042 </message> 6043 <message> 6044 <location filename="../VBoxManageInfo.cpp" line="1430"/> 6045 <source>flat</source> 6046 <translation type="unfinished"></translation> 6047 </message> 6048 <message> 6049 <location filename="../VBoxManageInfo.cpp" line="1436"/> 6050 <source>low</source> 6051 <translation type="unfinished"></translation> 6052 </message> 6053 <message> 6054 <location filename="../VBoxManageInfo.cpp" line="1442"/> 6055 <source>normal</source> 6056 <translation type="unfinished"></translation> 6057 </message> 6058 <message> 6059 <location filename="../VBoxManageInfo.cpp" line="1448"/> 6060 <source>high</source> 6061 <translation type="unfinished"></translation> 6062 </message> 6063 <message> 6064 <location filename="../VBoxManageInfo.cpp" line="1454"/> 6065 <source>default</source> 6066 <translation type="unfinished"></translation> 6067 </message> 6068 <message> 6069 <location filename="../VBoxManageInfo.cpp" line="1457"/> 6070 <source>VM process priority:</source> 6071 <translation type="unfinished"></translation> 6072 </message> 6073 <message> 6074 <location filename="../VBoxManageInfo.cpp" line="1469"/> 6075 <location filename="../VBoxManageInfo.cpp" line="1509"/> 6076 <source>Storage Controllers:</source> 6077 <translation type="unfinished"></translation> 6078 </message> 6079 <message> 6080 <location filename="../VBoxManageInfo.cpp" line="1499"/> 6081 <source>#%u: '%ls', Type: %s, Instance: %u, Ports: %u (max %u), %s 6082 </source> 6083 <translation type="unfinished"></translation> 6084 </message> 6085 <message> 6086 <location filename="../VBoxManageInfo.cpp" line="1501"/> 6087 <source>Bootable</source> 6088 <translation type="unfinished"></translation> 6089 </message> 6090 <message> 6091 <location filename="../VBoxManageInfo.cpp" line="1501"/> 6092 <source>Not bootable</source> 6093 <translation type="unfinished"></translation> 6094 </message> 6095 <message> 6096 <location filename="../VBoxManageInfo.cpp" line="1528"/> 6097 <source>NIC %u:</source> 6098 <translation type="unfinished"></translation> 6099 </message> 6100 <message> 6101 <location filename="../VBoxManageInfo.cpp" line="1537"/> 6102 <location filename="../VBoxManageInfo.cpp" line="1957"/> 6103 <location filename="../VBoxManageInfo.cpp" line="2063"/> 6104 <location filename="../VBoxManageInfo.cpp" line="2424"/> 6105 <location filename="../VBoxManageInfo.cpp" line="2456"/> 6106 <source>%-28s disabled 6107 </source> 6108 <translation type="unfinished"></translation> 6109 </message> 6110 <message> 6111 <location filename="../VBoxManageInfo.cpp" line="1554"/> 6112 <location filename="../VBoxManageInfo.cpp" line="1857"/> 6113 <location filename="../VBoxManageInfo.cpp" line="1862"/> 6114 <source>none</source> 6115 <translation type="unfinished"></translation> 6116 </message> 6117 <message> 6118 <location filename="../VBoxManageInfo.cpp" line="1622"/> 6119 <source>%sNIC %d Rule(%d): name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s 6120 </source> 6121 <translation type="unfinished"></translation> 6122 </message> 6123 <message> 6124 <location filename="../VBoxManageInfo.cpp" line="1645"/> 6125 <source>NIC %d Settings: MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d) 6126 </source> 6127 <translation type="unfinished"></translation> 6128 </message> 6129 <message> 6130 <location filename="../VBoxManageInfo.cpp" line="1661"/> 6131 <source>Bridged Interface '%ls'</source> 6132 <translation type="unfinished"></translation> 6133 </message> 6134 <message> 6135 <location filename="../VBoxManageInfo.cpp" line="1675"/> 6136 <source>Internal Network '%s'</source> 6137 <translation type="unfinished"></translation> 6138 </message> 6139 <message> 6140 <location filename="../VBoxManageInfo.cpp" line="1689"/> 6141 <source>Host-only Interface '%ls'</source> 6142 <translation type="unfinished"></translation> 6143 </message> 6144 <message> 6145 <location filename="../VBoxManageInfo.cpp" line="1704"/> 6146 <source>Generic '%ls'</source> 6147 <translation type="unfinished"></translation> 6148 </message> 6149 <message> 6150 <location filename="../VBoxManageInfo.cpp" line="1733"/> 6151 <source>NAT Network '%s'</source> 6152 <translation type="unfinished"></translation> 6153 </message> 6154 <message> 6155 <location filename="../VBoxManageInfo.cpp" line="1748"/> 6156 <source>Host Only Network '%s'</source> 6157 <translation type="unfinished"></translation> 6158 </message> 6159 <message> 6160 <location filename="../VBoxManageInfo.cpp" line="1764"/> 6161 <source>Cloud Network '%s'</source> 6162 <translation type="unfinished"></translation> 6163 </message> 6164 <message> 6165 <location filename="../VBoxManageInfo.cpp" line="1787"/> 6166 <source>deny</source> 6167 <translation type="unfinished"></translation> 6168 </message> 6169 <message> 6170 <location filename="../VBoxManageInfo.cpp" line="1788"/> 6171 <source>allow-vms</source> 6172 <translation type="unfinished"></translation> 6173 </message> 6174 <message> 6175 <location filename="../VBoxManageInfo.cpp" line="1789"/> 6176 <source>allow-all</source> 6177 <translation type="unfinished"></translation> 6178 </message> 6179 <message> 6180 <location filename="../VBoxManageInfo.cpp" line="1853"/> 6181 <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls 6182 </source> 6183 <translation type="unfinished"></translation> 6184 </message> 6185 <message> 6186 <location filename="../VBoxManageInfo.cpp" line="1855"/> 6187 <location filename="../VBoxManageInfo.cpp" line="1856"/> 6188 <location filename="../VBoxManageInfo.cpp" line="2417"/> 6189 <location filename="../VBoxManageInfo.cpp" line="2418"/> 6190 <source>on</source> 6191 <translation type="unfinished"></translation> 6192 </message> 6193 <message> 6194 <location filename="../VBoxManageInfo.cpp" line="1855"/> 6195 <location filename="../VBoxManageInfo.cpp" line="1856"/> 6196 <location filename="../VBoxManageInfo.cpp" line="2417"/> 6197 <location filename="../VBoxManageInfo.cpp" line="2418"/> 6198 <source>off</source> 6199 <translation type="unfinished"></translation> 6200 </message> 6201 <message> 6202 <location filename="../VBoxManageInfo.cpp" line="1883"/> 6203 <source>PS/2 Mouse</source> 6204 <translation type="unfinished"></translation> 6205 </message> 6206 <message> 6207 <location filename="../VBoxManageInfo.cpp" line="1887"/> 6208 <source>USB Mouse</source> 6209 <translation type="unfinished"></translation> 6210 </message> 6211 <message> 6212 <location filename="../VBoxManageInfo.cpp" line="1891"/> 6213 <source>USB Tablet</source> 6214 <translation type="unfinished"></translation> 6215 </message> 6216 <message> 6217 <location filename="../VBoxManageInfo.cpp" line="1895"/> 6218 <source>USB Tablet and PS/2 Mouse</source> 6219 <translation type="unfinished"></translation> 6220 </message> 6221 <message> 6222 <location filename="../VBoxManageInfo.cpp" line="1899"/> 6223 <source>USB Multi-Touch</source> 6224 <translation type="unfinished"></translation> 6225 </message> 6226 <message> 6227 <location filename="../VBoxManageInfo.cpp" line="1905"/> 6228 <source>Pointing Device:</source> 6229 <translation type="unfinished"></translation> 6230 </message> 6231 <message> 6232 <location filename="../VBoxManageInfo.cpp" line="1919"/> 6233 <source>PS/2 Keyboard</source> 6234 <translation type="unfinished"></translation> 6235 </message> 6236 <message> 6237 <location filename="../VBoxManageInfo.cpp" line="1923"/> 6238 <source>USB Keyboard</source> 6239 <translation type="unfinished"></translation> 6240 </message> 6241 <message> 6242 <location filename="../VBoxManageInfo.cpp" line="1927"/> 6243 <source>USB and PS/2 Keyboard</source> 6244 <translation type="unfinished"></translation> 6245 </message> 6246 <message> 6247 <location filename="../VBoxManageInfo.cpp" line="1933"/> 6248 <source>Keyboard Device:</source> 6249 <translation type="unfinished"></translation> 6250 </message> 6251 <message> 6252 <location filename="../VBoxManageInfo.cpp" line="1947"/> 6253 <source>UART %u:</source> 6254 <translation type="unfinished"></translation> 6255 </message> 6256 <message> 6257 <location filename="../VBoxManageInfo.cpp" line="1976"/> 6258 <location filename="../VBoxManageInfo.cpp" line="2076"/> 6259 <source>%-28s I/O base: %#06x, IRQ: %d</source> 6260 <translation type="unfinished"></translation> 6261 </message> 6262 <message> 6263 <location filename="../VBoxManageInfo.cpp" line="1984"/> 6264 <source>, disconnected</source> 6265 <translation type="unfinished"></translation> 6266 </message> 6267 <message> 6268 <location filename="../VBoxManageInfo.cpp" line="1991"/> 6269 <source>, attached to raw file '%ls' 6270 </source> 6271 <translation type="unfinished"></translation> 6272 </message> 6273 <message> 6274 <location filename="../VBoxManageInfo.cpp" line="1999"/> 6275 <source>, attached to tcp (%s) '%ls'</source> 6276 <translation type="unfinished"></translation> 6277 </message> 6278 <message> 6279 <location filename="../VBoxManageInfo.cpp" line="2000"/> 6280 <location filename="../VBoxManageInfo.cpp" line="2008"/> 6281 <source>server</source> 6282 <translation type="unfinished"></translation> 6283 </message> 6284 <message> 6285 <location filename="../VBoxManageInfo.cpp" line="2000"/> 6286 <location filename="../VBoxManageInfo.cpp" line="2008"/> 6287 <source>client</source> 6288 <translation type="unfinished"></translation> 6289 </message> 6290 <message> 6291 <location filename="../VBoxManageInfo.cpp" line="2007"/> 6292 <source>, attached to pipe (%s) '%ls'</source> 6293 <translation type="unfinished"></translation> 6294 </message> 6295 <message> 6296 <location filename="../VBoxManageInfo.cpp" line="2015"/> 6297 <source>, attached to device '%ls'</source> 6298 <translation type="unfinished"></translation> 6299 </message> 6300 <message> 6301 <location filename="../VBoxManageInfo.cpp" line="2053"/> 6302 <source>LPT %u:</source> 6303 <translation type="unfinished"></translation> 6304 </message> 6305 <message> 6306 <location filename="../VBoxManageInfo.cpp" line="2080"/> 6307 <source>, attached to device '%ls' 6308 </source> 6309 <translation type="unfinished"></translation> 6310 </message> 6311 <message> 6312 <location filename="../VBoxManageInfo.cpp" line="2205"/> 6313 <source>Audio:</source> 6314 <translation type="unfinished"></translation> 6315 </message> 6316 <message> 6317 <location filename="../VBoxManageInfo.cpp" line="2207"/> 6318 <source> (Driver: %s, Controller: %s, Codec: %s)</source> 6319 <translation type="unfinished"></translation> 6320 </message> 6321 <message> 6322 <location filename="../VBoxManageInfo.cpp" line="2210"/> 6323 <source>Audio playback:</source> 6324 <translation type="unfinished"></translation> 6325 </message> 6326 <message> 6327 <location filename="../VBoxManageInfo.cpp" line="2211"/> 6328 <source>Audio capture:</source> 6329 <translation type="unfinished"></translation> 6330 </message> 6331 <message> 6332 <location filename="../VBoxManageInfo.cpp" line="2225"/> 6333 <location filename="../VBoxManageInfo.cpp" line="2254"/> 6334 <source>HostToGuest</source> 6335 <translation type="unfinished"></translation> 6336 </message> 6337 <message> 6338 <location filename="../VBoxManageInfo.cpp" line="2228"/> 6339 <location filename="../VBoxManageInfo.cpp" line="2257"/> 6081 <location filename="../VBoxManageInfo.cpp" line="2292"/> 6340 6082 <source>GuestToHost</source> 6341 6083 <translation type="unfinished"></translation> 6342 6084 </message> 6343 6085 <message> 6344 <location filename="../VBoxManageInfo.cpp" line="22 31"/>6345 <location filename="../VBoxManageInfo.cpp" line="22 60"/>6086 <location filename="../VBoxManageInfo.cpp" line="2266"/> 6087 <location filename="../VBoxManageInfo.cpp" line="2295"/> 6346 6088 <source>Bidirectional</source> 6347 6089 <translation type="unfinished"></translation> 6348 6090 </message> 6349 6091 <message> 6350 <location filename="../VBoxManageInfo.cpp" line="22 37"/>6092 <location filename="../VBoxManageInfo.cpp" line="2272"/> 6351 6093 <source>Clipboard Mode:</source> 6352 6094 <translation type="unfinished"></translation> 6353 6095 </message> 6354 6096 <message> 6355 <location filename="../VBoxManageInfo.cpp" line="22 39"/>6097 <location filename="../VBoxManageInfo.cpp" line="2274"/> 6356 6098 <source>Clipboard file transfers:</source> 6357 6099 <translation type="unfinished"></translation> 6358 6100 </message> 6359 6101 <message> 6360 <location filename="../VBoxManageInfo.cpp" line="2 266"/>6102 <location filename="../VBoxManageInfo.cpp" line="2301"/> 6361 6103 <source>Drag and drop Mode:</source> 6362 6104 <translation type="unfinished"></translation> 6363 6105 </message> 6364 6106 <message> 6365 <location filename="../VBoxManageInfo.cpp" line="2 277"/>6107 <location filename="../VBoxManageInfo.cpp" line="2312"/> 6366 6108 <source>Session name:</source> 6367 6109 <translation type="unfinished"></translation> 6368 6110 </message> 6369 6111 <message> 6370 <location filename="../VBoxManageInfo.cpp" line="23 10"/>6112 <location filename="../VBoxManageInfo.cpp" line="2345"/> 6371 6113 <source>unknown status</source> 6372 6114 <translation type="unfinished"></translation> 6373 6115 </message> 6374 6116 <message> 6375 <location filename="../VBoxManageInfo.cpp" line="23 13"/>6117 <location filename="../VBoxManageInfo.cpp" line="2348"/> 6376 6118 <source>blank</source> 6377 6119 <translation type="unfinished"></translation> 6378 6120 </message> 6379 6121 <message> 6380 <location filename="../VBoxManageInfo.cpp" line="23 18"/>6122 <location filename="../VBoxManageInfo.cpp" line="2353"/> 6381 6123 <source>Video mode:</source> 6382 6124 <translation type="unfinished"></translation> 6383 6125 </message> 6384 6126 <message> 6385 <location filename="../VBoxManageInfo.cpp" line="23 59"/>6127 <location filename="../VBoxManageInfo.cpp" line="2394"/> 6386 6128 <source>null</source> 6387 6129 <translation type="unfinished"></translation> 6388 6130 </message> 6389 6131 <message> 6390 <location filename="../VBoxManageInfo.cpp" line="2 365"/>6132 <location filename="../VBoxManageInfo.cpp" line="2400"/> 6391 6133 <source>external</source> 6392 6134 <translation type="unfinished"></translation> 6393 6135 </message> 6394 6136 <message> 6395 <location filename="../VBoxManageInfo.cpp" line="2 371"/>6137 <location filename="../VBoxManageInfo.cpp" line="2406"/> 6396 6138 <source>guest</source> 6397 6139 <translation type="unfinished"></translation> 6398 6140 </message> 6399 6141 <message> 6400 <location filename="../VBoxManageInfo.cpp" line="24 16"/>6142 <location filename="../VBoxManageInfo.cpp" line="2451"/> 6401 6143 <source>%-28s enabled (Address %ls, Ports %ls, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s) 6402 6144 </source> … … 6404 6146 </message> 6405 6147 <message> 6406 <location filename="../VBoxManageInfo.cpp" line="24 20"/>6148 <location filename="../VBoxManageInfo.cpp" line="2455"/> 6407 6149 <source>VRDE port:</source> 6408 6150 <translation type="unfinished"></translation> 6409 6151 </message> 6410 6152 <message> 6411 <location filename="../VBoxManageInfo.cpp" line="24 22"/>6153 <location filename="../VBoxManageInfo.cpp" line="2457"/> 6412 6154 <source>%-28s enabled (Quality %ls) 6413 6155 </source> … … 6415 6157 </message> 6416 6158 <message> 6417 <location filename="../VBoxManageInfo.cpp" line="24 22"/>6418 <location filename="../VBoxManageInfo.cpp" line="24 24"/>6159 <location filename="../VBoxManageInfo.cpp" line="2457"/> 6160 <location filename="../VBoxManageInfo.cpp" line="2459"/> 6419 6161 <source>Video redirection:</source> 6420 6162 <translation type="unfinished"></translation> 6421 6163 </message> 6422 6164 <message> 6423 <location filename="../VBoxManageInfo.cpp" line="24 44"/>6165 <location filename="../VBoxManageInfo.cpp" line="2479"/> 6424 6166 <source>%-28s: %-10lS = <not set> 6425 6167 </source> … … 6427 6169 </message> 6428 6170 <message> 6429 <location filename="../VBoxManageInfo.cpp" line="24 44"/>6430 <location filename="../VBoxManageInfo.cpp" line="24 46"/>6171 <location filename="../VBoxManageInfo.cpp" line="2479"/> 6172 <location filename="../VBoxManageInfo.cpp" line="2481"/> 6431 6173 <source>VRDE property</source> 6432 6174 <translation type="unfinished"></translation> 6433 6175 </message> 6434 6176 <message> 6435 <location filename="../VBoxManageInfo.cpp" line="25 11"/>6177 <location filename="../VBoxManageInfo.cpp" line="2546"/> 6436 6178 <source>USB Device Filters: 6437 6179 </source> … … 6439 6181 </message> 6440 6182 <message> 6441 <location filename="../VBoxManageInfo.cpp" line="25 17"/>6183 <location filename="../VBoxManageInfo.cpp" line="2552"/> 6442 6184 <source>Index:</source> 6443 6185 <translation type="unfinished"></translation> 6444 6186 </message> 6445 6187 <message> 6446 <location filename="../VBoxManageInfo.cpp" line="25 18"/>6188 <location filename="../VBoxManageInfo.cpp" line="2553"/> 6447 6189 <source> Active:</source> 6448 6190 <translation type="unfinished"></translation> 6449 6191 </message> 6450 6192 <message> 6451 <location filename="../VBoxManageInfo.cpp" line="25 18"/>6193 <location filename="../VBoxManageInfo.cpp" line="2553"/> 6452 6194 <source>yes</source> 6453 6195 <translation type="unfinished"></translation> 6454 6196 </message> 6455 6197 <message> 6456 <location filename="../VBoxManageInfo.cpp" line="25 18"/>6198 <location filename="../VBoxManageInfo.cpp" line="2553"/> 6457 6199 <source>no</source> 6458 6200 <translation type="unfinished"></translation> 6459 6201 </message> 6460 6202 <message> 6461 <location filename="../VBoxManageInfo.cpp" line="25 19"/>6203 <location filename="../VBoxManageInfo.cpp" line="2554"/> 6462 6204 <source> Name:</source> 6463 6205 <translation type="unfinished"></translation> 6464 6206 </message> 6465 6207 <message> 6466 <location filename="../VBoxManageInfo.cpp" line="25 20"/>6208 <location filename="../VBoxManageInfo.cpp" line="2555"/> 6467 6209 <source> VendorId:</source> 6468 6210 <translation type="unfinished"></translation> 6469 6211 </message> 6470 6212 <message> 6471 <location filename="../VBoxManageInfo.cpp" line="25 21"/>6213 <location filename="../VBoxManageInfo.cpp" line="2556"/> 6472 6214 <source> ProductId:</source> 6473 6215 <translation type="unfinished"></translation> 6474 6216 </message> 6475 6217 <message> 6476 <location filename="../VBoxManageInfo.cpp" line="25 22"/>6218 <location filename="../VBoxManageInfo.cpp" line="2557"/> 6477 6219 <source> Revision:</source> 6478 6220 <translation type="unfinished"></translation> 6479 6221 </message> 6480 6222 <message> 6481 <location filename="../VBoxManageInfo.cpp" line="25 23"/>6223 <location filename="../VBoxManageInfo.cpp" line="2558"/> 6482 6224 <source> Manufacturer:</source> 6483 6225 <translation type="unfinished"></translation> 6484 6226 </message> 6485 6227 <message> 6486 <location filename="../VBoxManageInfo.cpp" line="25 24"/>6228 <location filename="../VBoxManageInfo.cpp" line="2559"/> 6487 6229 <source> Product:</source> 6488 6230 <translation type="unfinished"></translation> 6489 6231 </message> 6490 6232 <message> 6491 <location filename="../VBoxManageInfo.cpp" line="25 25"/>6233 <location filename="../VBoxManageInfo.cpp" line="2560"/> 6492 6234 <source> Remote:</source> 6493 6235 <translation type="unfinished"></translation> 6494 6236 </message> 6495 6237 <message> 6496 <location filename="../VBoxManageInfo.cpp" line="25 26"/>6238 <location filename="../VBoxManageInfo.cpp" line="2561"/> 6497 6239 <source> Serial Number:</source> 6498 6240 <translation type="unfinished"></translation> 6499 6241 </message> 6500 6242 <message> 6501 <location filename="../VBoxManageInfo.cpp" line="25 32"/>6243 <location filename="../VBoxManageInfo.cpp" line="2567"/> 6502 6244 <source>Masked Interfaces:</source> 6503 6245 <translation type="unfinished"></translation> 6504 6246 </message> 6505 6247 <message> 6506 <location filename="../VBoxManageInfo.cpp" line="25 37"/>6248 <location filename="../VBoxManageInfo.cpp" line="2572"/> 6507 6249 <source>USB Device Filters:</source> 6508 6250 <translation type="unfinished"></translation> 6509 6251 </message> 6510 6252 <message> 6511 <location filename="../VBoxManageInfo.cpp" line="25 45"/>6253 <location filename="../VBoxManageInfo.cpp" line="2580"/> 6512 6254 <source>Available remote USB devices:</source> 6513 6255 <translation type="unfinished"></translation> 6514 6256 </message> 6515 6257 <message> 6516 <location filename="../VBoxManageInfo.cpp" line="25 53"/>6258 <location filename="../VBoxManageInfo.cpp" line="2588"/> 6517 6259 <source>Currently attached USB devices:</source> 6518 6260 <translation type="unfinished"></translation> 6519 6261 </message> 6520 6262 <message> 6521 <location filename="../VBoxManageInfo.cpp" line="2 569"/>6263 <location filename="../VBoxManageInfo.cpp" line="2604"/> 6522 6264 <source> 6523 6265 Attached physical PCI devices: … … 6527 6269 </message> 6528 6270 <message> 6529 <location filename="../VBoxManageInfo.cpp" line="2 588"/>6271 <location filename="../VBoxManageInfo.cpp" line="2623"/> 6530 6272 <source> Host device %ls at %s attached as %s 6531 6273 </source> … … 6533 6275 </message> 6534 6276 <message> 6535 <location filename="../VBoxManageInfo.cpp" line="26 04"/>6277 <location filename="../VBoxManageInfo.cpp" line="2639"/> 6536 6278 <source>Bandwidth groups:</source> 6537 6279 <translation type="unfinished"></translation> 6538 6280 </message> 6539 6281 <message> 6540 <location filename="../VBoxManageInfo.cpp" line="26 17"/>6282 <location filename="../VBoxManageInfo.cpp" line="2652"/> 6541 6283 <source>Shared folders:</source> 6542 6284 <translation type="unfinished"></translation> 6543 6285 </message> 6544 6286 <message> 6545 <location filename="../VBoxManageInfo.cpp" line="26 27"/>6287 <location filename="../VBoxManageInfo.cpp" line="2662"/> 6546 6288 <source>global mapping</source> 6547 6289 <translation type="unfinished"></translation> 6548 6290 </message> 6549 6291 <message> 6550 <location filename="../VBoxManageInfo.cpp" line="26 39"/>6292 <location filename="../VBoxManageInfo.cpp" line="2674"/> 6551 6293 <source>machine mapping</source> 6552 6294 <translation type="unfinished"></translation> 6553 6295 </message> 6554 6296 <message> 6555 <location filename="../VBoxManageInfo.cpp" line="26 51"/>6297 <location filename="../VBoxManageInfo.cpp" line="2686"/> 6556 6298 <source>transient mapping</source> 6557 6299 <translation type="unfinished"></translation> 6558 6300 </message> 6559 6301 <message> 6560 <location filename="../VBoxManageInfo.cpp" line="27 03"/>6302 <location filename="../VBoxManageInfo.cpp" line="2738"/> 6561 6303 <source>VRDE Connection:</source> 6562 6304 <translation type="unfinished"></translation> 6563 6305 </message> 6564 6306 <message> 6565 <location filename="../VBoxManageInfo.cpp" line="27 03"/>6566 <location filename="../VBoxManageInfo.cpp" line="2 793"/>6567 <location filename="../VBoxManageInfo.cpp" line="2 795"/>6307 <location filename="../VBoxManageInfo.cpp" line="2738"/> 6308 <location filename="../VBoxManageInfo.cpp" line="2828"/> 6309 <location filename="../VBoxManageInfo.cpp" line="2830"/> 6568 6310 <source>active</source> 6569 6311 <translation type="unfinished"></translation> 6570 6312 </message> 6571 6313 <message> 6572 <location filename="../VBoxManageInfo.cpp" line="27 04"/>6314 <location filename="../VBoxManageInfo.cpp" line="2739"/> 6573 6315 <source>Clients so far:</source> 6574 6316 <translation type="unfinished"></translation> 6575 6317 </message> 6576 6318 <message> 6577 <location filename="../VBoxManageInfo.cpp" line="27 11"/>6319 <location filename="../VBoxManageInfo.cpp" line="2746"/> 6578 6320 <source>Start time:</source> 6579 6321 <translation type="unfinished"></translation> 6580 6322 </message> 6581 6323 <message> 6582 <location filename="../VBoxManageInfo.cpp" line="27 14"/>6324 <location filename="../VBoxManageInfo.cpp" line="2749"/> 6583 6325 <source>Last started:</source> 6584 6326 <translation type="unfinished"></translation> 6585 6327 </message> 6586 6328 <message> 6587 <location filename="../VBoxManageInfo.cpp" line="27 16"/>6329 <location filename="../VBoxManageInfo.cpp" line="2751"/> 6588 6330 <source>Last ended:</source> 6589 6331 <translation type="unfinished"></translation> 6590 6332 </message> 6591 6333 <message> 6592 <location filename="../VBoxManageInfo.cpp" line="27 26"/>6334 <location filename="../VBoxManageInfo.cpp" line="2761"/> 6593 6335 <source>Sent:</source> 6594 6336 <translation type="unfinished"></translation> 6595 6337 </message> 6596 6338 <message> 6597 <location filename="../VBoxManageInfo.cpp" line="27 26"/>6598 <location filename="../VBoxManageInfo.cpp" line="27 28"/>6599 <location filename="../VBoxManageInfo.cpp" line="27 30"/>6600 <location filename="../VBoxManageInfo.cpp" line="27 32"/>6339 <location filename="../VBoxManageInfo.cpp" line="2761"/> 6340 <location filename="../VBoxManageInfo.cpp" line="2763"/> 6341 <location filename="../VBoxManageInfo.cpp" line="2765"/> 6342 <location filename="../VBoxManageInfo.cpp" line="2767"/> 6601 6343 <source>Bytes</source> 6602 6344 <translation type="unfinished"></translation> 6603 6345 </message> 6604 6346 <message> 6605 <location filename="../VBoxManageInfo.cpp" line="27 27"/>6347 <location filename="../VBoxManageInfo.cpp" line="2762"/> 6606 6348 <source>Average speed:</source> 6607 6349 <translation type="unfinished"></translation> 6608 6350 </message> 6609 6351 <message> 6610 <location filename="../VBoxManageInfo.cpp" line="27 27"/>6611 <location filename="../VBoxManageInfo.cpp" line="27 31"/>6352 <location filename="../VBoxManageInfo.cpp" line="2762"/> 6353 <location filename="../VBoxManageInfo.cpp" line="2766"/> 6612 6354 <source>B/s</source> 6613 6355 <translation type="unfinished"></translation> 6614 6356 </message> 6615 6357 <message> 6616 <location filename="../VBoxManageInfo.cpp" line="27 28"/>6358 <location filename="../VBoxManageInfo.cpp" line="2763"/> 6617 6359 <source>Sent total:</source> 6618 6360 <translation type="unfinished"></translation> 6619 6361 </message> 6620 6362 <message> 6621 <location filename="../VBoxManageInfo.cpp" line="27 30"/>6363 <location filename="../VBoxManageInfo.cpp" line="2765"/> 6622 6364 <source>Received:</source> 6623 6365 <translation type="unfinished"></translation> 6624 6366 </message> 6625 6367 <message> 6626 <location filename="../VBoxManageInfo.cpp" line="27 31"/>6368 <location filename="../VBoxManageInfo.cpp" line="2766"/> 6627 6369 <source>Speed:</source> 6628 6370 <translation type="unfinished"></translation> 6629 6371 </message> 6630 6372 <message> 6631 <location filename="../VBoxManageInfo.cpp" line="27 32"/>6373 <location filename="../VBoxManageInfo.cpp" line="2767"/> 6632 6374 <source>Received total:</source> 6633 6375 <translation type="unfinished"></translation> 6634 6376 </message> 6635 6377 <message> 6636 <location filename="../VBoxManageInfo.cpp" line="27 36"/>6378 <location filename="../VBoxManageInfo.cpp" line="2771"/> 6637 6379 <source>User name:</source> 6638 6380 <translation type="unfinished"></translation> 6639 6381 </message> 6640 6382 <message> 6641 <location filename="../VBoxManageInfo.cpp" line="27 37"/>6383 <location filename="../VBoxManageInfo.cpp" line="2772"/> 6642 6384 <source>Domain:</source> 6643 6385 <translation type="unfinished"></translation> 6644 6386 </message> 6645 6387 <message> 6646 <location filename="../VBoxManageInfo.cpp" line="27 38"/>6388 <location filename="../VBoxManageInfo.cpp" line="2773"/> 6647 6389 <source>Client name:</source> 6648 6390 <translation type="unfinished"></translation> 6649 6391 </message> 6650 6392 <message> 6651 <location filename="../VBoxManageInfo.cpp" line="27 39"/>6393 <location filename="../VBoxManageInfo.cpp" line="2774"/> 6652 6394 <source>Client IP:</source> 6653 6395 <translation type="unfinished"></translation> 6654 6396 </message> 6655 6397 <message> 6656 <location filename="../VBoxManageInfo.cpp" line="27 40"/>6398 <location filename="../VBoxManageInfo.cpp" line="2775"/> 6657 6399 <source>Client version:</source> 6658 6400 <translation type="unfinished"></translation> 6659 6401 </message> 6660 6402 <message> 6661 <location filename="../VBoxManageInfo.cpp" line="27 41"/>6403 <location filename="../VBoxManageInfo.cpp" line="2776"/> 6662 6404 <source>Encryption:</source> 6663 6405 <translation type="unfinished"></translation> 6664 6406 </message> 6665 6407 <message> 6666 <location filename="../VBoxManageInfo.cpp" line="2 793"/>6408 <location filename="../VBoxManageInfo.cpp" line="2828"/> 6667 6409 <source>Capturing:</source> 6668 6410 <translation type="unfinished"></translation> 6669 6411 </message> 6670 6412 <message> 6671 <location filename="../VBoxManageInfo.cpp" line="2 795"/>6413 <location filename="../VBoxManageInfo.cpp" line="2830"/> 6672 6414 <source>Capture audio:</source> 6673 6415 <translation type="unfinished"></translation> 6674 6416 </message> 6675 6417 <message> 6676 <location filename="../VBoxManageInfo.cpp" line="28 05"/>6418 <location filename="../VBoxManageInfo.cpp" line="2840"/> 6677 6419 <source>Capture screens:</source> 6678 6420 <translation type="unfinished"></translation> 6679 6421 </message> 6680 6422 <message> 6681 <location filename="../VBoxManageInfo.cpp" line="28 06"/>6423 <location filename="../VBoxManageInfo.cpp" line="2841"/> 6682 6424 <source>Capture file:</source> 6683 6425 <translation type="unfinished"></translation> 6684 6426 </message> 6685 6427 <message> 6686 <location filename="../VBoxManageInfo.cpp" line="28 08"/>6428 <location filename="../VBoxManageInfo.cpp" line="2843"/> 6687 6429 <source>Capture dimensions:</source> 6688 6430 <translation type="unfinished"></translation> 6689 6431 </message> 6690 6432 <message> 6691 <location filename="../VBoxManageInfo.cpp" line="28 09"/>6433 <location filename="../VBoxManageInfo.cpp" line="2844"/> 6692 6434 <source>Capture rate:</source> 6693 6435 <translation type="unfinished"></translation> 6694 6436 </message> 6695 6437 <message> 6696 <location filename="../VBoxManageInfo.cpp" line="28 09"/>6697 <location filename="../VBoxManageInfo.cpp" line="28 10"/>6438 <location filename="../VBoxManageInfo.cpp" line="2844"/> 6439 <location filename="../VBoxManageInfo.cpp" line="2845"/> 6698 6440 <source>kbps</source> 6699 6441 <translation type="unfinished"></translation> 6700 6442 </message> 6701 6443 <message> 6702 <location filename="../VBoxManageInfo.cpp" line="28 10"/>6444 <location filename="../VBoxManageInfo.cpp" line="2845"/> 6703 6445 <source>Capture FPS:</source> 6704 6446 <translation type="unfinished"></translation> 6705 6447 </message> 6706 6448 <message> 6707 <location filename="../VBoxManageInfo.cpp" line="28 11"/>6449 <location filename="../VBoxManageInfo.cpp" line="2846"/> 6708 6450 <source>Capture options:</source> 6709 6451 <translation type="unfinished"></translation> 6710 6452 </message> 6711 6453 <message> 6712 <location filename="../VBoxManageInfo.cpp" line="28 28"/>6454 <location filename="../VBoxManageInfo.cpp" line="2863"/> 6713 6455 <source>Description: 6714 6456 %ls … … 6717 6459 </message> 6718 6460 <message> 6719 <location filename="../VBoxManageInfo.cpp" line="28 46"/>6461 <location filename="../VBoxManageInfo.cpp" line="2881"/> 6720 6462 <source>VMMDev Testing</source> 6721 6463 <translation type="unfinished"></translation> 6722 6464 </message> 6723 6465 <message> 6724 <location filename="../VBoxManageInfo.cpp" line="28 47"/>6725 <location filename="../VBoxManageInfo.cpp" line="28 49"/>6466 <location filename="../VBoxManageInfo.cpp" line="2882"/> 6467 <location filename="../VBoxManageInfo.cpp" line="2884"/> 6726 6468 <source>misconfigured</source> 6727 6469 <translation type="unfinished"></translation> 6728 6470 </message> 6729 6471 <message> 6730 <location filename="../VBoxManageInfo.cpp" line="2 872"/>6472 <location filename="../VBoxManageInfo.cpp" line="2907"/> 6731 6473 <source>* Snapshots: 6732 6474 </source> … … 6734 6476 </message> 6735 6477 <message> 6736 <location filename="../VBoxManageInfo.cpp" line="2 881"/>6478 <location filename="../VBoxManageInfo.cpp" line="2916"/> 6737 6479 <source>* Guest: 6738 6480 </source> … … 6740 6482 </message> 6741 6483 <message> 6742 <location filename="../VBoxManageInfo.cpp" line="2 884"/>6484 <location filename="../VBoxManageInfo.cpp" line="2919"/> 6743 6485 <source>Configured memory balloon:</source> 6744 6486 <translation type="unfinished"></translation> 6745 6487 </message> 6746 6488 <message> 6747 <location filename="../VBoxManageInfo.cpp" line="2 884"/>6489 <location filename="../VBoxManageInfo.cpp" line="2919"/> 6748 6490 <source>MB</source> 6749 6491 <translation type="unfinished"></translation> 6750 6492 </message> 6751 6493 <message> 6752 <location filename="../VBoxManageInfo.cpp" line="2 892"/>6494 <location filename="../VBoxManageInfo.cpp" line="2927"/> 6753 6495 <source>OS type:</source> 6754 6496 <translation type="unfinished"></translation> 6755 6497 </message> 6756 6498 <message> 6757 <location filename="../VBoxManageInfo.cpp" line="2 897"/>6499 <location filename="../VBoxManageInfo.cpp" line="2932"/> 6758 6500 <source>Additions run level:</source> 6759 6501 <translation type="unfinished"></translation> 6760 6502 </message> 6761 6503 <message> 6762 <location filename="../VBoxManageInfo.cpp" line="29 09"/>6504 <location filename="../VBoxManageInfo.cpp" line="2944"/> 6763 6505 <source>Additions version:</source> 6764 6506 <translation type="unfinished"></translation> 6765 6507 </message> 6766 6508 <message> 6767 <location filename="../VBoxManageInfo.cpp" line="29 18"/>6768 <location filename="../VBoxManageInfo.cpp" line="29 50"/>6509 <location filename="../VBoxManageInfo.cpp" line="2953"/> 6510 <location filename="../VBoxManageInfo.cpp" line="2985"/> 6769 6511 <source>Guest Facilities:</source> 6770 6512 <translation type="unfinished"></translation> 6771 6513 </message> 6772 6514 <message> 6773 <location filename="../VBoxManageInfo.cpp" line="29 38"/>6515 <location filename="../VBoxManageInfo.cpp" line="2973"/> 6774 6516 <source>Facility "%ls": %s (last update: %s) 6775 6517 </source> … … 6777 6519 </message> 6778 6520 <message> 6779 <location filename="../VBoxManageInfo.cpp" line="30 09"/>6521 <location filename="../VBoxManageInfo.cpp" line="3044"/> 6780 6522 <source>Invalid parameter '%s'</source> 6781 6523 <translation type="unfinished"></translation> 6782 6524 </message> 6783 6525 <message> 6784 <location filename="../VBoxManageInfo.cpp" line="30 19"/>6526 <location filename="../VBoxManageInfo.cpp" line="3054"/> 6785 6527 <source>VM name or UUID required</source> 6786 6528 <translation type="unfinished"></translation> 6787 6529 </message> 6788 6530 <message> 6789 <location filename="../VBoxManageInfo.cpp" line="30 30"/>6531 <location filename="../VBoxManageInfo.cpp" line="3065"/> 6790 6532 <source>Option --log is exclusive</source> 6791 6533 <translation type="unfinished"></translation> … … 6795 6537 <name>Internal</name> 6796 6538 <message> 6797 <location filename="../VBoxInternalManage.cpp" line="1 45"/>6539 <location filename="../VBoxInternalManage.cpp" line="169"/> 6798 6540 <source>Usage: VBoxManage internalcommands <command> [command arguments] 6799 6541 … … 6807 6549 </message> 6808 6550 <message> 6809 <location filename="../VBoxInternalManage.cpp" line="1 56"/>6551 <location filename="../VBoxInternalManage.cpp" line="180"/> 6810 6552 <source> loadmap <vmname|uuid> <symfile> <address> [module] [subtrahend] [segment] 6811 6553 This will instruct DBGF to load the given map file … … 6816 6558 </message> 6817 6559 <message> 6818 <location filename="../VBoxInternalManage.cpp" line="1 63"/>6560 <location filename="../VBoxInternalManage.cpp" line="187"/> 6819 6561 <source> loadsyms <vmname|uuid> <symfile> [delta] [module] [module address] 6820 6562 This will instruct DBGF to load the given symbol file … … 6825 6567 </message> 6826 6568 <message> 6827 <location filename="../VBoxInternalManage.cpp" line="1 70"/>6569 <location filename="../VBoxInternalManage.cpp" line="194"/> 6828 6570 <source> sethduuid <filepath> [<uuid>] 6829 6571 Assigns a new UUID to the given image file. This way, multiple copies … … 6834 6576 </message> 6835 6577 <message> 6836 <location filename="../VBoxInternalManage.cpp" line=" 177"/>6578 <location filename="../VBoxInternalManage.cpp" line="201"/> 6837 6579 <source> sethdparentuuid <filepath> <uuid> 6838 6580 Assigns a new parent UUID to the given image file. … … 6842 6584 </message> 6843 6585 <message> 6844 <location filename="../VBoxInternalManage.cpp" line=" 183"/>6586 <location filename="../VBoxInternalManage.cpp" line="207"/> 6845 6587 <source> dumphdinfo <filepath> 6846 6588 Prints information about the image at the given location. … … 6850 6592 </message> 6851 6593 <message> 6852 <location filename="../VBoxInternalManage.cpp" line=" 189"/>6594 <location filename="../VBoxInternalManage.cpp" line="213"/> 6853 6595 <source> listpartitions -rawdisk <diskname> 6854 6596 Lists all partitions on <diskname>. … … 6858 6600 </message> 6859 6601 <message> 6860 <location filename="../VBoxInternalManage.cpp" line=" 195"/>6602 <location filename="../VBoxInternalManage.cpp" line="219"/> 6861 6603 <source> createrawvmdk -filename <filename> -rawdisk <diskname> 6862 6604 [-partitions <list of partition numbers> [-mbr <filename>] ] … … 6879 6621 </message> 6880 6622 <message> 6881 <location filename="../VBoxInternalManage.cpp" line="2 14"/>6623 <location filename="../VBoxInternalManage.cpp" line="238"/> 6882 6624 <source> renamevmdk -from <filename> -to <filename> 6883 6625 Renames an existing VMDK image, including the base file and all its extents. … … 6887 6629 </message> 6888 6630 <message> 6889 <location filename="../VBoxInternalManage.cpp" line="2 21"/>6631 <location filename="../VBoxInternalManage.cpp" line="245"/> 6890 6632 <source> converttoraw [-format <fileformat>] <filename> <outputfile>|stdout 6891 6633 Convert image to raw, writing to file or stdout. … … 6895 6637 </message> 6896 6638 <message> 6897 <location filename="../VBoxInternalManage.cpp" line="2 27"/>6639 <location filename="../VBoxInternalManage.cpp" line="251"/> 6898 6640 <source> converttoraw [-format <fileformat>] <filename> <outputfile> 6899 6641 Convert image to raw, writing to file. … … 6903 6645 </message> 6904 6646 <message> 6905 <location filename="../VBoxInternalManage.cpp" line="2 35"/>6647 <location filename="../VBoxInternalManage.cpp" line="259"/> 6906 6648 <source> converthd [-srcformat VDI|VMDK|VHD|RAW] 6907 6649 [-dstformat VDI|VMDK|VHD|RAW] … … 6913 6655 </message> 6914 6656 <message> 6915 <location filename="../VBoxInternalManage.cpp" line="2 43"/>6657 <location filename="../VBoxInternalManage.cpp" line="267"/> 6916 6658 <source> repairhd [-dry-run] 6917 6659 [-format VDI|VMDK|VHD|...] … … 6923 6665 </message> 6924 6666 <message> 6925 <location filename="../VBoxInternalManage.cpp" line="2 52"/>6667 <location filename="../VBoxInternalManage.cpp" line="276"/> 6926 6668 <source> modinstall 6927 6669 Installs the necessary driver for the host OS … … 6931 6673 </message> 6932 6674 <message> 6933 <location filename="../VBoxInternalManage.cpp" line="2 58"/>6675 <location filename="../VBoxInternalManage.cpp" line="282"/> 6934 6676 <source> moduninstall 6935 6677 Deinstalls the driver … … 6939 6681 </message> 6940 6682 <message> 6941 <location filename="../VBoxInternalManage.cpp" line="2 68"/>6683 <location filename="../VBoxInternalManage.cpp" line="292"/> 6942 6684 <source> debuglog <vmname|uuid> [--enable|--disable] [--flags todo] 6943 6685 [--groups todo] [--destinations todo] … … 6948 6690 </message> 6949 6691 <message> 6950 <location filename="../VBoxInternalManage.cpp" line="2 75"/>6692 <location filename="../VBoxInternalManage.cpp" line="299"/> 6951 6693 <source> passwordhash <password> 6952 6694 Generates a password hash. … … 6956 6698 </message> 6957 6699 <message> 6958 <location filename="../VBoxInternalManage.cpp" line=" 281"/>6700 <location filename="../VBoxInternalManage.cpp" line="305"/> 6959 6701 <source> gueststats <vmname|uuid> [--interval <seconds>] 6960 6702 Obtains and prints internal guest statistics. … … 6965 6707 </message> 6966 6708 <message> 6967 <location filename="../VBoxInternalManage.cpp" line=" 343"/>6709 <location filename="../VBoxInternalManage.cpp" line="451"/> 6968 6710 <source>Cannot find unique key for '%s'!</source> 6969 6711 <translation type="unfinished"></translation> 6970 6712 </message> 6971 6713 <message> 6972 <location filename="../VBoxInternalManage.cpp" line=" 406"/>6714 <location filename="../VBoxInternalManage.cpp" line="514"/> 6973 6715 <source>Failed to delete key '%s' from '%s', string conversion error %Rrc!</source> 6974 6716 <translation type="unfinished"></translation> 6975 6717 </message> 6976 6718 <message> 6977 <location filename="../VBoxInternalManage.cpp" line=" 430"/>6719 <location filename="../VBoxInternalManage.cpp" line="538"/> 6978 6720 <source>Failed to set '%s/%s/%s' to '%s'! hrc=%#x</source> 6979 6721 <translation type="unfinished"></translation> 6980 6722 </message> 6981 6723 <message> 6982 <location filename="../VBoxInternalManage.cpp" line=" 498"/>6983 <location filename="../VBoxInternalManage.cpp" line=" 575"/>6724 <location filename="../VBoxInternalManage.cpp" line="606"/> 6725 <location filename="../VBoxInternalManage.cpp" line="683"/> 6984 6726 <source>Missing the filename argument! 6985 6727 </source> … … 6987 6729 </message> 6988 6730 <message> 6989 <location filename="../VBoxInternalManage.cpp" line=" 506"/>6731 <location filename="../VBoxInternalManage.cpp" line="614"/> 6990 6732 <source>Failed to read delta '%s', rc=%Rrc 6991 6733 </source> … … 6993 6735 </message> 6994 6736 <message> 6995 <location filename="../VBoxInternalManage.cpp" line=" 518"/>6996 <location filename="../VBoxInternalManage.cpp" line=" 583"/>6737 <location filename="../VBoxInternalManage.cpp" line="626"/> 6738 <location filename="../VBoxInternalManage.cpp" line="691"/> 6997 6739 <source>Failed to read module address '%s', rc=%Rrc 6998 6740 </source> … … 7000 6742 </message> 7001 6743 <message> 7002 <location filename="../VBoxInternalManage.cpp" line=" 526"/>6744 <location filename="../VBoxInternalManage.cpp" line="634"/> 7003 6745 <source>Failed to read module size '%s', rc=%Rrc 7004 6746 </source> … … 7006 6748 </message> 7007 6749 <message> 7008 <location filename="../VBoxInternalManage.cpp" line=" 580"/>6750 <location filename="../VBoxInternalManage.cpp" line="688"/> 7009 6751 <source>Missing the module address argument! 7010 6752 </source> … … 7012 6754 </message> 7013 6755 <message> 7014 <location filename="../VBoxInternalManage.cpp" line=" 594"/>6756 <location filename="../VBoxInternalManage.cpp" line="702"/> 7015 6757 <source>Failed to read subtrahend '%s', rc=%Rrc 7016 6758 </source> … … 7018 6760 </message> 7019 6761 <message> 7020 <location filename="../VBoxInternalManage.cpp" line=" 602"/>6762 <location filename="../VBoxInternalManage.cpp" line="710"/> 7021 6763 <source>Failed to read segment number '%s', rc=%Rrc 7022 6764 </source> … … 7024 6766 </message> 7025 6767 <message> 7026 <location filename="../VBoxInternalManage.cpp" line=" 629"/>6768 <location filename="../VBoxInternalManage.cpp" line="737"/> 7027 6769 <source>Error code %Rrc at %s(%u) in function %s</source> 7028 6770 <translation type="unfinished"></translation> 7029 6771 </message> 7030 6772 <message> 7031 <location filename="../VBoxInternalManage.cpp" line=" 652"/>7032 <location filename="../VBoxInternalManage.cpp" line=" 666"/>7033 <location filename="../VBoxInternalManage.cpp" line=" 724"/>6773 <location filename="../VBoxInternalManage.cpp" line="760"/> 6774 <location filename="../VBoxInternalManage.cpp" line="774"/> 6775 <location filename="../VBoxInternalManage.cpp" line="832"/> 7034 6776 <source>Not enough parameters</source> 7035 6777 <translation type="unfinished"></translation> 7036 6778 </message> 7037 6779 <message> 7038 <location filename="../VBoxInternalManage.cpp" line=" 657"/>7039 <location filename="../VBoxInternalManage.cpp" line=" 668"/>6780 <location filename="../VBoxInternalManage.cpp" line="765"/> 6781 <location filename="../VBoxInternalManage.cpp" line="776"/> 7040 6782 <source>Invalid UUID parameter</source> 7041 6783 <translation type="unfinished"></translation> 7042 6784 </message> 7043 6785 <message> 7044 <location filename="../VBoxInternalManage.cpp" line=" 672"/>6786 <location filename="../VBoxInternalManage.cpp" line="780"/> 7045 6787 <source>Invalid invocation</source> 7046 6788 <translation type="unfinished"></translation> 7047 6789 </message> 7048 6790 <message> 7049 <location filename="../VBoxInternalManage.cpp" line=" 680"/>7050 <location filename="../VBoxInternalManage.cpp" line=" 733"/>6791 <location filename="../VBoxInternalManage.cpp" line="788"/> 6792 <location filename="../VBoxInternalManage.cpp" line="841"/> 7051 6793 <source>Format autodetect failed: %Rrc</source> 7052 6794 <translation type="unfinished"></translation> 7053 6795 </message> 7054 6796 <message> 7055 <location filename="../VBoxInternalManage.cpp" line=" 695"/>7056 <location filename="../VBoxInternalManage.cpp" line=" 748"/>7057 <location filename="../VBoxInternalManage.cpp" line="1 850"/>7058 <location filename="../VBoxInternalManage.cpp" line=" 1948"/>7059 <location filename="../VBoxInternalManage.cpp" line="2 022"/>6797 <location filename="../VBoxInternalManage.cpp" line="803"/> 6798 <location filename="../VBoxInternalManage.cpp" line="856"/> 6799 <location filename="../VBoxInternalManage.cpp" line="1958"/> 6800 <location filename="../VBoxInternalManage.cpp" line="2056"/> 6801 <location filename="../VBoxInternalManage.cpp" line="2130"/> 7060 6802 <source>Cannot create the virtual disk container: %Rrc</source> 7061 6803 <translation type="unfinished"></translation> 7062 6804 </message> 7063 6805 <message> 7064 <location filename="../VBoxInternalManage.cpp" line=" 700"/>7065 <location filename="../VBoxInternalManage.cpp" line=" 753"/>6806 <location filename="../VBoxInternalManage.cpp" line="808"/> 6807 <location filename="../VBoxInternalManage.cpp" line="861"/> 7066 6808 <source>Cannot open the image: %Rrc</source> 7067 6809 <translation type="unfinished"></translation> 7068 6810 </message> 7069 6811 <message> 7070 <location filename="../VBoxInternalManage.cpp" line=" 707"/>6812 <location filename="../VBoxInternalManage.cpp" line="815"/> 7071 6813 <source>Cannot set a new UUID: %Rrc</source> 7072 6814 <translation type="unfinished"></translation> 7073 6815 </message> 7074 6816 <message> 7075 <location filename="../VBoxInternalManage.cpp" line=" 709"/>6817 <location filename="../VBoxInternalManage.cpp" line="817"/> 7076 6818 <source>UUID changed to: %s 7077 6819 </source> … … 7079 6821 </message> 7080 6822 <message> 7081 <location filename="../VBoxInternalManage.cpp" line=" 834"/>6823 <location filename="../VBoxInternalManage.cpp" line="942"/> 7082 6824 <source>The GPT header seems corrupt because it contains too many entries</source> 7083 6825 <translation type="unfinished"></translation> 7084 6826 </message> 7085 6827 <message> 7086 <location filename="../VBoxInternalManage.cpp" line=" 841"/>6828 <location filename="../VBoxInternalManage.cpp" line="949"/> 7087 6829 <source>Allocating memory for the GPT partitions entries failed</source> 7088 6830 <translation type="unfinished"></translation> 7089 6831 </message> 7090 6832 <message> 7091 <location filename="../VBoxInternalManage.cpp" line=" 850"/>6833 <location filename="../VBoxInternalManage.cpp" line="958"/> 7092 6834 <source>Reading the partition table failed</source> 7093 6835 <translation type="unfinished"></translation> 7094 6836 </message> 7095 6837 <message> 7096 <location filename="../VBoxInternalManage.cpp" line=" 934"/>6838 <location filename="../VBoxInternalManage.cpp" line="1042"/> 7097 6839 <source>More than one extended partition</source> 7098 6840 <translation type="unfinished"></translation> 7099 6841 </message> 7100 6842 <message> 7101 <location filename="../VBoxInternalManage.cpp" line=" 952"/>6843 <location filename="../VBoxInternalManage.cpp" line="1060"/> 7102 6844 <source>Inconsistency for logical partition start</source> 7103 6845 <translation type="unfinished"></translation> 7104 6846 </message> 7105 6847 <message> 7106 <location filename="../VBoxInternalManage.cpp" line=" 964"/>6848 <location filename="../VBoxInternalManage.cpp" line="1072"/> 7107 6849 <source>Logical partition without magic</source> 7108 6850 <translation type="unfinished"></translation> 7109 6851 </message> 7110 6852 <message> 7111 <location filename="../VBoxInternalManage.cpp" line=" 971"/>6853 <location filename="../VBoxInternalManage.cpp" line="1079"/> 7112 6854 <source>Logical partition with type 0 encountered</source> 7113 6855 <translation type="unfinished"></translation> 7114 6856 </message> 7115 6857 <message> 7116 <location filename="../VBoxInternalManage.cpp" line=" 988"/>6858 <location filename="../VBoxInternalManage.cpp" line="1096"/> 7117 6859 <source>Invalid partition start offset</source> 7118 6860 <translation type="unfinished"></translation> 7119 6861 </message> 7120 6862 <message> 7121 <location filename="../VBoxInternalManage.cpp" line="1 008"/>6863 <location filename="../VBoxInternalManage.cpp" line="1116"/> 7122 6864 <source>Logical partition chain broken</source> 7123 6865 <translation type="unfinished"></translation> 7124 6866 </message> 7125 6867 <message> 7126 <location filename="../VBoxInternalManage.cpp" line="1 031"/>6868 <location filename="../VBoxInternalManage.cpp" line="1139"/> 7127 6869 <source>Two partitions start at the same place</source> 7128 6870 <translation type="unfinished"></translation> 7129 6871 </message> 7130 6872 <message> 7131 <location filename="../VBoxInternalManage.cpp" line="1 036"/>6873 <location filename="../VBoxInternalManage.cpp" line="1144"/> 7132 6874 <source>Partition starts at sector 0</source> 7133 6875 <translation type="unfinished"></translation> 7134 6876 </message> 7135 6877 <message> 7136 <location filename="../VBoxInternalManage.cpp" line="1 072"/>6878 <location filename="../VBoxInternalManage.cpp" line="1180"/> 7137 6879 <source>Overlapping GPT partitions</source> 7138 6880 <translation type="unfinished"></translation> 7139 6881 </message> 7140 6882 <message> 7141 <location filename="../VBoxInternalManage.cpp" line="1 088"/>6883 <location filename="../VBoxInternalManage.cpp" line="1196"/> 7142 6884 <source>Overlapping MBR partitions</source> 7143 6885 <translation type="unfinished"></translation> 7144 6886 </message> 7145 6887 <message> 7146 <location filename="../VBoxInternalManage.cpp" line="1111"/> 7147 <location filename="../VBoxInternalManage.cpp" line="1196"/> 7148 <location filename="../VBoxInternalManage.cpp" line="1205"/> 7149 <location filename="../VBoxInternalManage.cpp" line="1214"/> 7150 <location filename="../VBoxInternalManage.cpp" line="1223"/> 7151 <location filename="../VBoxInternalManage.cpp" line="1910"/> 7152 <location filename="../VBoxInternalManage.cpp" line="1919"/> 6888 <location filename="../VBoxInternalManage.cpp" line="1219"/> 6889 <location filename="../VBoxInternalManage.cpp" line="1304"/> 6890 <location filename="../VBoxInternalManage.cpp" line="1313"/> 6891 <location filename="../VBoxInternalManage.cpp" line="1322"/> 6892 <location filename="../VBoxInternalManage.cpp" line="1331"/> 6893 <location filename="../VBoxInternalManage.cpp" line="2018"/> 6894 <location filename="../VBoxInternalManage.cpp" line="2027"/> 6895 <location filename="../VBoxInternalManage.cpp" line="2088"/> 6896 <location filename="../VBoxInternalManage.cpp" line="2251"/> 6897 <location filename="../VBoxInternalManage.cpp" line="2260"/> 6898 <location filename="../VBoxInternalManage.cpp" line="2385"/> 6899 <source>Missing argument to '%s'</source> 6900 <translation type="unfinished"></translation> 6901 </message> 6902 <message> 6903 <location filename="../VBoxInternalManage.cpp" line="368"/> 6904 <location filename="../VBoxInternalManage.cpp" line="1226"/> 6905 <location filename="../VBoxInternalManage.cpp" line="1343"/> 6906 <location filename="../VBoxInternalManage.cpp" line="2034"/> 6907 <location filename="../VBoxInternalManage.cpp" line="2107"/> 6908 <location filename="../VBoxInternalManage.cpp" line="2275"/> 6909 <location filename="../VBoxInternalManage.cpp" line="2396"/> 6910 <source>Invalid parameter '%s'</source> 6911 <translation type="unfinished"></translation> 6912 </message> 6913 <message> 6914 <location filename="../VBoxInternalManage.cpp" line="327"/> 6915 <source> 6916 Syntax error: %N 6917 </source> 6918 <translation type="unfinished"></translation> 6919 </message> 6920 <message> 6921 <location filename="../VBoxInternalManage.cpp" line="372"/> 6922 <source>Invalid option -%c</source> 6923 <translation type="unfinished"></translation> 6924 </message> 6925 <message> 6926 <location filename="../VBoxInternalManage.cpp" line="373"/> 6927 <source>Invalid option case %i</source> 6928 <translation type="unfinished"></translation> 6929 </message> 6930 <message> 6931 <location filename="../VBoxInternalManage.cpp" line="376"/> 6932 <source>Unknown option: %s</source> 6933 <translation type="unfinished"></translation> 6934 </message> 6935 <message> 6936 <location filename="../VBoxInternalManage.cpp" line="378"/> 6937 <source>Invalid argument format: %s</source> 6938 <translation type="unfinished"></translation> 6939 </message> 6940 <message> 6941 <location filename="../VBoxInternalManage.cpp" line="1231"/> 6942 <location filename="../VBoxInternalManage.cpp" line="1349"/> 6943 <source>Mandatory parameter -rawdisk missing</source> 6944 <translation type="unfinished"></translation> 6945 </message> 6946 <message> 6947 <location filename="../VBoxInternalManage.cpp" line="1236"/> 6948 <source>Cannot open the raw disk: %Rrc</source> 6949 <translation type="unfinished"></translation> 6950 </message> 6951 <message> 6952 <location filename="../VBoxInternalManage.cpp" line="1242"/> 6953 <source>Number Type StartCHS EndCHS Size (MiB) Start (Sect) 6954 </source> 6955 <translation type="unfinished"></translation> 6956 </message> 6957 <message> 6958 <location filename="../VBoxInternalManage.cpp" line="1347"/> 6959 <source>Mandatory parameter -filename missing</source> 6960 <translation type="unfinished"></translation> 6961 </message> 6962 <message> 6963 <location filename="../VBoxInternalManage.cpp" line="1352"/> 6964 <source>The parameter -mbr is only valid when the parameter -partitions is also present</source> 6965 <translation type="unfinished"></translation> 6966 </message> 6967 <message> 6968 <location filename="../VBoxInternalManage.cpp" line="1361"/> 6969 <source>Cannot open the raw disk '%s': %Rrc</source> 6970 <translation type="unfinished"></translation> 6971 </message> 6972 <message> 6973 <location filename="../VBoxInternalManage.cpp" line="1390"/> 6974 <source>File '%s' is no fixed/removable medium device</source> 6975 <translation type="unfinished"></translation> 6976 </message> 6977 <message> 6978 <location filename="../VBoxInternalManage.cpp" line="1407"/> 6979 <source>The -relative parameter is invalid for raw disk %s</source> 6980 <translation type="unfinished"></translation> 6981 </message> 6982 <message> 6983 <location filename="../VBoxInternalManage.cpp" line="1421"/> 6984 <source>Cannot get the geometry of the raw disk '%s': %Rrc</source> 6985 <translation type="unfinished"></translation> 6986 </message> 6987 <message> 6988 <location filename="../VBoxInternalManage.cpp" line="1428"/> 6989 <location filename="../VBoxInternalManage.cpp" line="1477"/> 6990 <location filename="../VBoxInternalManage.cpp" line="1602"/> 6991 <source>The -relative parameter is invalid for raw images</source> 6992 <translation type="unfinished"></translation> 6993 </message> 6994 <message> 6995 <location filename="../VBoxInternalManage.cpp" line="1462"/> 6996 <location filename="../VBoxInternalManage.cpp" line="1556"/> 6997 <location filename="../VBoxInternalManage.cpp" line="1627"/> 6998 <source>Cannot get the size of the raw disk '%s': %Rrc</source> 6999 <translation type="unfinished"></translation> 7000 </message> 7001 <message> 7002 <location filename="../VBoxInternalManage.cpp" line="1472"/> 7003 <location filename="../VBoxInternalManage.cpp" line="1527"/> 7004 <location filename="../VBoxInternalManage.cpp" line="1565"/> 7005 <source>Failed to get size of file '%s': %Rrc</source> 7006 <translation type="unfinished"></translation> 7007 </message> 7008 <message> 7009 <location filename="../VBoxInternalManage.cpp" line="1484"/> 7010 <source>File '%s' is no block device</source> 7011 <translation type="unfinished"></translation> 7012 </message> 7013 <message> 7014 <location filename="../VBoxInternalManage.cpp" line="1492"/> 7015 <location filename="../VBoxInternalManage.cpp" line="1541"/> 7016 <location filename="../VBoxInternalManage.cpp" line="1579"/> 7017 <location filename="../VBoxInternalManage.cpp" line="1618"/> 7018 <source>Failed to get file informtation for raw disk '%s': %Rrc</source> 7019 <translation type="unfinished"></translation> 7020 </message> 7021 <message> 7022 <location filename="../VBoxInternalManage.cpp" line="1509"/> 7023 <source>Cannot get the block size for file '%s': %Rrc</source> 7024 <translation type="unfinished"></translation> 7025 </message> 7026 <message> 7027 <location filename="../VBoxInternalManage.cpp" line="1517"/> 7028 <location filename="../VBoxInternalManage.cpp" line="1594"/> 7029 <source>Cannot get the block count for file '%s': %Rrc</source> 7030 <translation type="unfinished"></translation> 7031 </message> 7032 <message> 7033 <location filename="../VBoxInternalManage.cpp" line="1533"/> 7034 <source>File '%s' is neither block device nor regular file</source> 7035 <translation type="unfinished"></translation> 7036 </message> 7037 <message> 7038 <location filename="../VBoxInternalManage.cpp" line="1571"/> 7039 <source>File '%s' is no block or char device</source> 7040 <translation type="unfinished"></translation> 7041 </message> 7042 <message> 7043 <location filename="../VBoxInternalManage.cpp" line="1610"/> 7044 <source>File '%s' is neither character device nor regular file</source> 7045 <translation type="unfinished"></translation> 7046 </message> 7047 <message> 7048 <location filename="../VBoxInternalManage.cpp" line="1635"/> 7049 <source>Detected size of raw disk '%s' is %RU64, an invalid value</source> 7050 <translation type="unfinished"></translation> 7051 </message> 7052 <message> 7053 <location filename="../VBoxInternalManage.cpp" line="1667"/> 7054 <source>Incorrect value in partitions parameter</source> 7055 <translation type="unfinished"></translation> 7056 </message> 7057 <message> 7058 <location filename="../VBoxInternalManage.cpp" line="1681"/> 7059 <source>Incorrect separator in partitions parameter</source> 7060 <translation type="unfinished"></translation> 7061 </message> 7062 <message> 7063 <location filename="../VBoxInternalManage.cpp" line="1691"/> 7064 <source>Cannot read the partition information from '%s'</source> 7065 <translation type="unfinished"></translation> 7066 </message> 7067 <message> 7068 <location filename="../VBoxInternalManage.cpp" line="1706"/> 7069 <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source> 7070 <translation type="unfinished"></translation> 7071 </message> 7072 <message> 7073 <location filename="../VBoxInternalManage.cpp" line="1726"/> 7074 <location filename="../VBoxInternalManage.cpp" line="1794"/> 7075 <source>Out of memory allocating the partition list for '%s'</source> 7076 <translation type="unfinished"></translation> 7077 </message> 7078 <message> 7079 <location filename="../VBoxInternalManage.cpp" line="1742"/> 7080 <source>Out of memory allocating the partition descriptor for '%s'</source> 7081 <translation type="unfinished"></translation> 7082 </message> 7083 <message> 7084 <location filename="../VBoxInternalManage.cpp" line="1751"/> 7085 <source>Cannot read partition data from raw device '%s': %Rrc</source> 7086 <translation type="unfinished"></translation> 7087 </message> 7088 <message> 7089 <location filename="../VBoxInternalManage.cpp" line="1763"/> 7090 <source>Cannot open replacement MBR file '%s' specified with -mbr: %Rrc</source> 7091 <translation type="unfinished"></translation> 7092 </message> 7093 <message> 7094 <location filename="../VBoxInternalManage.cpp" line="1771"/> 7095 <source>Cannot read replacement MBR file '%s': %Rrc</source> 7096 <translation type="unfinished"></translation> 7097 </message> 7098 <message> 7099 <location filename="../VBoxInternalManage.cpp" line="1837"/> 7100 <source>Cannot create reference to individual partition %u, rc=%Rrc</source> 7101 <translation type="unfinished"></translation> 7102 </message> 7103 <message> 7104 <location filename="../VBoxInternalManage.cpp" line="1852"/> 7105 <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source> 7106 <translation type="unfinished"></translation> 7107 </message> 7108 <message> 7109 <location filename="../VBoxInternalManage.cpp" line="1914"/> 7110 <source>MBR/EPT overlaps with data area</source> 7111 <translation type="unfinished"></translation> 7112 </message> 7113 <message> 7114 <location filename="../VBoxInternalManage.cpp" line="1920"/> 7115 <source>GPT overlaps with data area</source> 7116 <translation type="unfinished"></translation> 7117 </message> 7118 <message> 7119 <location filename="../VBoxInternalManage.cpp" line="1977"/> 7120 <source>Cannot create the raw disk VMDK: %Rrc</source> 7121 <translation type="unfinished"></translation> 7122 </message> 7123 <message> 7153 7124 <location filename="../VBoxInternalManage.cpp" line="1980"/> 7154 <location filename="../VBoxInternalManage.cpp" line="2143"/>7155 <location filename="../VBoxInternalManage.cpp" line="2152"/>7156 <location filename="../VBoxInternalManage.cpp" line="2277"/>7157 <source>Missing argument to '%s'</source>7158 <translation type="unfinished"></translation>7159 </message>7160 <message>7161 <location filename="../VBoxInternalManage.cpp" line="1118"/>7162 <location filename="../VBoxInternalManage.cpp" line="1235"/>7163 <location filename="../VBoxInternalManage.cpp" line="1926"/>7164 <location filename="../VBoxInternalManage.cpp" line="1999"/>7165 <location filename="../VBoxInternalManage.cpp" line="2167"/>7166 <location filename="../VBoxInternalManage.cpp" line="2288"/>7167 <source>Invalid parameter '%s'</source>7168 <translation type="unfinished"></translation>7169 </message>7170 <message>7171 <location filename="../VBoxInternalManage.cpp" line="1123"/>7172 <location filename="../VBoxInternalManage.cpp" line="1241"/>7173 <source>Mandatory parameter -rawdisk missing</source>7174 <translation type="unfinished"></translation>7175 </message>7176 <message>7177 <location filename="../VBoxInternalManage.cpp" line="1128"/>7178 <source>Cannot open the raw disk: %Rrc</source>7179 <translation type="unfinished"></translation>7180 </message>7181 <message>7182 <location filename="../VBoxInternalManage.cpp" line="1134"/>7183 <source>Number Type StartCHS EndCHS Size (MiB) Start (Sect)7184 </source>7185 <translation type="unfinished"></translation>7186 </message>7187 <message>7188 <location filename="../VBoxInternalManage.cpp" line="1239"/>7189 <source>Mandatory parameter -filename missing</source>7190 <translation type="unfinished"></translation>7191 </message>7192 <message>7193 <location filename="../VBoxInternalManage.cpp" line="1244"/>7194 <source>The parameter -mbr is only valid when the parameter -partitions is also present</source>7195 <translation type="unfinished"></translation>7196 </message>7197 <message>7198 <location filename="../VBoxInternalManage.cpp" line="1253"/>7199 <source>Cannot open the raw disk '%s': %Rrc</source>7200 <translation type="unfinished"></translation>7201 </message>7202 <message>7203 <location filename="../VBoxInternalManage.cpp" line="1282"/>7204 <source>File '%s' is no fixed/removable medium device</source>7205 <translation type="unfinished"></translation>7206 </message>7207 <message>7208 <location filename="../VBoxInternalManage.cpp" line="1299"/>7209 <source>The -relative parameter is invalid for raw disk %s</source>7210 <translation type="unfinished"></translation>7211 </message>7212 <message>7213 <location filename="../VBoxInternalManage.cpp" line="1313"/>7214 <source>Cannot get the geometry of the raw disk '%s': %Rrc</source>7215 <translation type="unfinished"></translation>7216 </message>7217 <message>7218 <location filename="../VBoxInternalManage.cpp" line="1320"/>7219 <location filename="../VBoxInternalManage.cpp" line="1369"/>7220 <location filename="../VBoxInternalManage.cpp" line="1494"/>7221 <source>The -relative parameter is invalid for raw images</source>7222 <translation type="unfinished"></translation>7223 </message>7224 <message>7225 <location filename="../VBoxInternalManage.cpp" line="1354"/>7226 <location filename="../VBoxInternalManage.cpp" line="1448"/>7227 <location filename="../VBoxInternalManage.cpp" line="1519"/>7228 <source>Cannot get the size of the raw disk '%s': %Rrc</source>7229 <translation type="unfinished"></translation>7230 </message>7231 <message>7232 <location filename="../VBoxInternalManage.cpp" line="1364"/>7233 <location filename="../VBoxInternalManage.cpp" line="1419"/>7234 <location filename="../VBoxInternalManage.cpp" line="1457"/>7235 <source>Failed to get size of file '%s': %Rrc</source>7236 <translation type="unfinished"></translation>7237 </message>7238 <message>7239 <location filename="../VBoxInternalManage.cpp" line="1376"/>7240 <source>File '%s' is no block device</source>7241 <translation type="unfinished"></translation>7242 </message>7243 <message>7244 <location filename="../VBoxInternalManage.cpp" line="1384"/>7245 <location filename="../VBoxInternalManage.cpp" line="1433"/>7246 <location filename="../VBoxInternalManage.cpp" line="1471"/>7247 <location filename="../VBoxInternalManage.cpp" line="1510"/>7248 <source>Failed to get file informtation for raw disk '%s': %Rrc</source>7249 <translation type="unfinished"></translation>7250 </message>7251 <message>7252 <location filename="../VBoxInternalManage.cpp" line="1401"/>7253 <source>Cannot get the block size for file '%s': %Rrc</source>7254 <translation type="unfinished"></translation>7255 </message>7256 <message>7257 <location filename="../VBoxInternalManage.cpp" line="1409"/>7258 <location filename="../VBoxInternalManage.cpp" line="1486"/>7259 <source>Cannot get the block count for file '%s': %Rrc</source>7260 <translation type="unfinished"></translation>7261 </message>7262 <message>7263 <location filename="../VBoxInternalManage.cpp" line="1425"/>7264 <source>File '%s' is neither block device nor regular file</source>7265 <translation type="unfinished"></translation>7266 </message>7267 <message>7268 <location filename="../VBoxInternalManage.cpp" line="1463"/>7269 <source>File '%s' is no block or char device</source>7270 <translation type="unfinished"></translation>7271 </message>7272 <message>7273 <location filename="../VBoxInternalManage.cpp" line="1502"/>7274 <source>File '%s' is neither character device nor regular file</source>7275 <translation type="unfinished"></translation>7276 </message>7277 <message>7278 <location filename="../VBoxInternalManage.cpp" line="1527"/>7279 <source>Detected size of raw disk '%s' is %RU64, an invalid value</source>7280 <translation type="unfinished"></translation>7281 </message>7282 <message>7283 <location filename="../VBoxInternalManage.cpp" line="1559"/>7284 <source>Incorrect value in partitions parameter</source>7285 <translation type="unfinished"></translation>7286 </message>7287 <message>7288 <location filename="../VBoxInternalManage.cpp" line="1573"/>7289 <source>Incorrect separator in partitions parameter</source>7290 <translation type="unfinished"></translation>7291 </message>7292 <message>7293 <location filename="../VBoxInternalManage.cpp" line="1583"/>7294 <source>Cannot read the partition information from '%s'</source>7295 <translation type="unfinished"></translation>7296 </message>7297 <message>7298 <location filename="../VBoxInternalManage.cpp" line="1598"/>7299 <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source>7300 <translation type="unfinished"></translation>7301 </message>7302 <message>7303 <location filename="../VBoxInternalManage.cpp" line="1618"/>7304 <location filename="../VBoxInternalManage.cpp" line="1686"/>7305 <source>Out of memory allocating the partition list for '%s'</source>7306 <translation type="unfinished"></translation>7307 </message>7308 <message>7309 <location filename="../VBoxInternalManage.cpp" line="1634"/>7310 <source>Out of memory allocating the partition descriptor for '%s'</source>7311 <translation type="unfinished"></translation>7312 </message>7313 <message>7314 <location filename="../VBoxInternalManage.cpp" line="1643"/>7315 <source>Cannot read partition data from raw device '%s': %Rrc</source>7316 <translation type="unfinished"></translation>7317 </message>7318 <message>7319 <location filename="../VBoxInternalManage.cpp" line="1655"/>7320 <source>Cannot open replacement MBR file '%s' specified with -mbr: %Rrc</source>7321 <translation type="unfinished"></translation>7322 </message>7323 <message>7324 <location filename="../VBoxInternalManage.cpp" line="1663"/>7325 <source>Cannot read replacement MBR file '%s': %Rrc</source>7326 <translation type="unfinished"></translation>7327 </message>7328 <message>7329 <location filename="../VBoxInternalManage.cpp" line="1729"/>7330 <source>Cannot create reference to individual partition %u, rc=%Rrc</source>7331 <translation type="unfinished"></translation>7332 </message>7333 <message>7334 <location filename="../VBoxInternalManage.cpp" line="1744"/>7335 <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source>7336 <translation type="unfinished"></translation>7337 </message>7338 <message>7339 <location filename="../VBoxInternalManage.cpp" line="1806"/>7340 <source>MBR/EPT overlaps with data area</source>7341 <translation type="unfinished"></translation>7342 </message>7343 <message>7344 <location filename="../VBoxInternalManage.cpp" line="1812"/>7345 <source>GPT overlaps with data area</source>7346 <translation type="unfinished"></translation>7347 </message>7348 <message>7349 <location filename="../VBoxInternalManage.cpp" line="1869"/>7350 <source>Cannot create the raw disk VMDK: %Rrc</source>7351 <translation type="unfinished"></translation>7352 </message>7353 <message>7354 <location filename="../VBoxInternalManage.cpp" line="1872"/>7355 7125 <source>RAW host disk access VMDK file %s created successfully. 7356 7126 </source> … … 7358 7128 </message> 7359 7129 <message> 7360 <location filename="../VBoxInternalManage.cpp" line=" 1894"/>7130 <location filename="../VBoxInternalManage.cpp" line="2002"/> 7361 7131 <source>The raw disk vmdk file was not created</source> 7362 7132 <translation type="unfinished"></translation> 7363 7133 </message> 7364 7134 <message> 7365 <location filename="../VBoxInternalManage.cpp" line=" 1931"/>7135 <location filename="../VBoxInternalManage.cpp" line="2039"/> 7366 7136 <source>Mandatory parameter -from missing</source> 7367 7137 <translation type="unfinished"></translation> 7368 7138 </message> 7369 7139 <message> 7370 <location filename="../VBoxInternalManage.cpp" line=" 1933"/>7140 <location filename="../VBoxInternalManage.cpp" line="2041"/> 7371 7141 <source>Mandatory parameter -to missing</source> 7372 7142 <translation type="unfinished"></translation> 7373 7143 </message> 7374 7144 <message> 7375 <location filename="../VBoxInternalManage.cpp" line=" 1957"/>7145 <location filename="../VBoxInternalManage.cpp" line="2065"/> 7376 7146 <source>Cannot rename the image: %Rrc</source> 7377 7147 <translation type="unfinished"></translation> 7378 7148 </message> 7379 7149 <message> 7380 <location filename="../VBoxInternalManage.cpp" line=" 1960"/>7150 <location filename="../VBoxInternalManage.cpp" line="2068"/> 7381 7151 <source>Cannot create the source image: %Rrc</source> 7382 7152 <translation type="unfinished"></translation> 7383 7153 </message> 7384 7154 <message> 7385 <location filename="../VBoxInternalManage.cpp" line="2 004"/>7155 <location filename="../VBoxInternalManage.cpp" line="2112"/> 7386 7156 <source>Mandatory filename parameter missing</source> 7387 7157 <translation type="unfinished"></translation> 7388 7158 </message> 7389 7159 <message> 7390 <location filename="../VBoxInternalManage.cpp" line="2 006"/>7160 <location filename="../VBoxInternalManage.cpp" line="2114"/> 7391 7161 <source>Mandatory outputfile parameter missing</source> 7392 7162 <translation type="unfinished"></translation> 7393 7163 </message> 7394 7164 <message> 7395 <location filename="../VBoxInternalManage.cpp" line="2 034"/>7165 <location filename="../VBoxInternalManage.cpp" line="2142"/> 7396 7166 <source>Cannot create destination file "%s": %Rrc</source> 7397 7167 <translation type="unfinished"></translation> 7398 7168 </message> 7399 7169 <message> 7400 <location filename="../VBoxInternalManage.cpp" line="2 053"/>7401 <location filename="../VBoxInternalManage.cpp" line="2 196"/>7402 <location filename="../VBoxInternalManage.cpp" line="2 316"/>7170 <location filename="../VBoxInternalManage.cpp" line="2161"/> 7171 <location filename="../VBoxInternalManage.cpp" line="2304"/> 7172 <location filename="../VBoxInternalManage.cpp" line="2424"/> 7403 7173 <source>No file format specified and autodetect failed - please specify format: %Rrc</source> 7404 7174 <translation type="unfinished"></translation> 7405 7175 </message> 7406 7176 <message> 7407 <location filename="../VBoxInternalManage.cpp" line="2 056"/>7177 <location filename="../VBoxInternalManage.cpp" line="2164"/> 7408 7178 <source>Only converting harddisk images is supported</source> 7409 7179 <translation type="unfinished"></translation> 7410 7180 </message> 7411 7181 <message> 7412 <location filename="../VBoxInternalManage.cpp" line="2 071"/>7413 <location filename="../VBoxInternalManage.cpp" line="2 215"/>7182 <location filename="../VBoxInternalManage.cpp" line="2179"/> 7183 <location filename="../VBoxInternalManage.cpp" line="2323"/> 7414 7184 <source>Cannot open the source image: %Rrc</source> 7415 7185 <translation type="unfinished"></translation> 7416 7186 </message> 7417 7187 <message numerus="yes"> 7418 <location filename="../VBoxInternalManage.cpp" line="2 081"/>7188 <location filename="../VBoxInternalManage.cpp" line="2189"/> 7419 7189 <source>Converting image "%s" with size %RU64 bytes (%RU64MB) to raw... 7420 7190 </source> … … 7424 7194 </message> 7425 7195 <message> 7426 <location filename="../VBoxInternalManage.cpp" line="2 103"/>7196 <location filename="../VBoxInternalManage.cpp" line="2211"/> 7427 7197 <source>Cannot copy image data: %Rrc</source> 7428 7198 <translation type="unfinished"></translation> 7429 7199 </message> 7430 7200 <message> 7431 <location filename="../VBoxInternalManage.cpp" line="2 115"/>7201 <location filename="../VBoxInternalManage.cpp" line="2223"/> 7432 7202 <source>Out of memory allocating read buffer</source> 7433 7203 <translation type="unfinished"></translation> 7434 7204 </message> 7435 7205 <message> 7436 <location filename="../VBoxInternalManage.cpp" line="2 172"/>7437 <location filename="../VBoxInternalManage.cpp" line="2 293"/>7206 <location filename="../VBoxInternalManage.cpp" line="2280"/> 7207 <location filename="../VBoxInternalManage.cpp" line="2401"/> 7438 7208 <source>Mandatory input image parameter missing</source> 7439 7209 <translation type="unfinished"></translation> 7440 7210 </message> 7441 7211 <message> 7442 <location filename="../VBoxInternalManage.cpp" line="2 174"/>7212 <location filename="../VBoxInternalManage.cpp" line="2282"/> 7443 7213 <source>Mandatory output image parameter missing</source> 7444 7214 <translation type="unfinished"></translation> 7445 7215 </message> 7446 7216 <message> 7447 <location filename="../VBoxInternalManage.cpp" line="2 207"/>7217 <location filename="../VBoxInternalManage.cpp" line="2315"/> 7448 7218 <source>Cannot create the source virtual disk container: %Rrc</source> 7449 7219 <translation type="unfinished"></translation> 7450 7220 </message> 7451 7221 <message> 7452 <location filename="../VBoxInternalManage.cpp" line="2 226"/>7222 <location filename="../VBoxInternalManage.cpp" line="2334"/> 7453 7223 <source>Cannot create the destination virtual disk container: %Rrc</source> 7454 7224 <translation type="unfinished"></translation> 7455 7225 </message> 7456 7226 <message numerus="yes"> 7457 <location filename="../VBoxInternalManage.cpp" line="2 231"/>7227 <location filename="../VBoxInternalManage.cpp" line="2339"/> 7458 7228 <source>Converting image "%s" with size %RU64 bytes (%RU64MB)... 7459 7229 </source> … … 7463 7233 </message> 7464 7234 <message> 7465 <location filename="../VBoxInternalManage.cpp" line="2 240"/>7235 <location filename="../VBoxInternalManage.cpp" line="2348"/> 7466 7236 <source>Cannot copy the image: %Rrc</source> 7467 7237 <translation type="unfinished"></translation> 7468 7238 </message> 7469 7239 <message> 7470 <location filename="../VBoxInternalManage.cpp" line="2 368"/>7471 <location filename="../VBoxInternalManage.cpp" line="2 503"/>7240 <location filename="../VBoxInternalManage.cpp" line="2476"/> 7241 <location filename="../VBoxInternalManage.cpp" line="2611"/> 7472 7242 <source>Missing VM name/UUID</source> 7473 7243 <translation type="unfinished"></translation> 7474 7244 </message> 7475 7245 <message> 7476 <location filename="../VBoxInternalManage.cpp" line="2 468"/>7246 <location filename="../VBoxInternalManage.cpp" line="2576"/> 7477 7247 <source>One or more of the requested features are not implemented! Feel free to do this.</source> 7478 7248 <translation type="unfinished"></translation> 7479 7249 </message> 7480 7250 <message> 7481 <location filename="../VBoxInternalManage.cpp" line="2 484"/>7251 <location filename="../VBoxInternalManage.cpp" line="2592"/> 7482 7252 <source>password to hash required</source> 7483 7253 <translation type="unfinished"></translation> 7484 7254 </message> 7485 7255 <message> 7486 <location filename="../VBoxInternalManage.cpp" line="2 490"/>7256 <location filename="../VBoxInternalManage.cpp" line="2598"/> 7487 7257 <source>Password hash: %s 7488 7258 </source> … … 7490 7260 </message> 7491 7261 <message> 7492 <location filename="../VBoxInternalManage.cpp" line="2 533"/>7262 <location filename="../VBoxInternalManage.cpp" line="2641"/> 7493 7263 <source>Invalid update interval specified</source> 7494 7264 <translation type="unfinished"></translation> 7495 7265 </message> 7496 7266 <message> 7497 <location filename="../VBoxInternalManage.cpp" line="2 535"/>7267 <location filename="../VBoxInternalManage.cpp" line="2643"/> 7498 7268 <source>argc=%d interval=%u 7499 7269 </source> … … 7501 7271 </message> 7502 7272 <message> 7503 <location filename="../VBoxInternalManage.cpp" line="2 588"/>7273 <location filename="../VBoxInternalManage.cpp" line="2694"/> 7504 7274 <source>Command missing</source> 7505 7275 <translation type="unfinished"></translation> 7506 7276 </message> 7507 7277 <message> 7508 <location filename="../VBoxInternalManage.cpp" line="2 628"/>7278 <location filename="../VBoxInternalManage.cpp" line="2734"/> 7509 7279 <source>Invalid command '%s'</source> 7510 7280 <translation type="unfinished"></translation> … … 7514 7284 <name>List</name> 7515 7285 <message> 7516 <location filename="../VBoxManageList.cpp" line="5 6"/>7517 <location filename="../VBoxManageList.cpp" line=" 70"/>7518 <location filename="../VBoxManageList.cpp" line="9 6"/>7519 <location filename="../VBoxManageList.cpp" line="85 5"/>7520 <location filename="../VBoxManageList.cpp" line="86 6"/>7286 <location filename="../VBoxManageList.cpp" line="54"/> 7287 <location filename="../VBoxManageList.cpp" line="68"/> 7288 <location filename="../VBoxManageList.cpp" line="94"/> 7289 <location filename="../VBoxManageList.cpp" line="853"/> 7290 <location filename="../VBoxManageList.cpp" line="864"/> 7521 7291 <source>Unknown</source> 7522 7292 <translation type="unfinished"></translation> 7523 7293 </message> 7524 7294 <message> 7525 <location filename="../VBoxManageList.cpp" line=" 61"/>7526 <location filename="../VBoxManageList.cpp" line="7 5"/>7295 <location filename="../VBoxManageList.cpp" line="59"/> 7296 <location filename="../VBoxManageList.cpp" line="73"/> 7527 7297 <source>unknown</source> 7528 7298 <translation type="unfinished"></translation> 7529 7299 </message> 7530 7300 <message> 7531 <location filename="../VBoxManageList.cpp" line="6 8"/>7301 <location filename="../VBoxManageList.cpp" line="66"/> 7532 7302 <source>Up</source> 7533 7303 <translation type="unfinished"></translation> 7534 7304 </message> 7535 7305 <message> 7536 <location filename="../VBoxManageList.cpp" line="6 9"/>7306 <location filename="../VBoxManageList.cpp" line="67"/> 7537 7307 <source>Down</source> 7538 7308 <translation type="unfinished"></translation> 7539 7309 </message> 7540 7310 <message> 7311 <location filename="../VBoxManageList.cpp" line="81"/> 7312 <source>HardDisk</source> 7313 <translation type="unfinished"></translation> 7314 </message> 7315 <message> 7541 7316 <location filename="../VBoxManageList.cpp" line="83"/> 7542 <source>HardDisk</source>7543 <translation type="unfinished"></translation>7544 </message>7545 <message>7546 <location filename="../VBoxManageList.cpp" line="85"/>7547 7317 <source>Floppy</source> 7548 7318 <translation type="unfinished"></translation> 7549 7319 </message> 7550 7320 <message> 7321 <location filename="../VBoxManageList.cpp" line="86"/> 7322 <source>Network</source> 7323 <translation type="unfinished"></translation> 7324 </message> 7325 <message> 7551 7326 <location filename="../VBoxManageList.cpp" line="88"/> 7552 <source>Network</source>7553 <translation type="unfinished"></translation>7554 </message>7555 <message>7556 <location filename="../VBoxManageList.cpp" line="90"/>7557 7327 <source>SharedFolder</source> 7558 7328 <translation type="unfinished"></translation> 7559 7329 </message> 7560 7330 <message> 7561 <location filename="../VBoxManageList.cpp" line=" 91"/>7331 <location filename="../VBoxManageList.cpp" line="89"/> 7562 7332 <source>Graphics3D</source> 7563 7333 <translation type="unfinished"></translation> 7564 7334 </message> 7565 7335 <message> 7566 <location filename="../VBoxManageList.cpp" line="11 3"/>7567 <location filename="../VBoxManageList.cpp" line="1 51"/>7336 <location filename="../VBoxManageList.cpp" line="111"/> 7337 <location filename="../VBoxManageList.cpp" line="149"/> 7568 7338 <source>Name: %ls 7569 7339 </source> … … 7571 7341 </message> 7572 7342 <message> 7573 <location filename="../VBoxManageList.cpp" line="15 8"/>7574 <location filename="../VBoxManageList.cpp" line="21 7"/>7575 <location filename="../VBoxManageList.cpp" line="26 3"/>7576 <location filename="../VBoxManageList.cpp" line="13 16"/>7343 <location filename="../VBoxManageList.cpp" line="156"/> 7344 <location filename="../VBoxManageList.cpp" line="215"/> 7345 <location filename="../VBoxManageList.cpp" line="261"/> 7346 <location filename="../VBoxManageList.cpp" line="1340"/> 7577 7347 <source>Name: %ls 7578 7348 </source> … … 7580 7350 </message> 7581 7351 <message> 7582 <location filename="../VBoxManageList.cpp" line="16 4"/>7583 <location filename="../VBoxManageList.cpp" line="22 3"/>7584 <location filename="../VBoxManageList.cpp" line="26 9"/>7352 <location filename="../VBoxManageList.cpp" line="162"/> 7353 <location filename="../VBoxManageList.cpp" line="221"/> 7354 <location filename="../VBoxManageList.cpp" line="267"/> 7585 7355 <source>Enabled</source> 7586 7356 <translation type="unfinished"></translation> 7587 7357 </message> 7588 7358 <message> 7589 <location filename="../VBoxManageList.cpp" line="16 4"/>7590 <location filename="../VBoxManageList.cpp" line="22 3"/>7591 <location filename="../VBoxManageList.cpp" line="26 9"/>7359 <location filename="../VBoxManageList.cpp" line="162"/> 7360 <location filename="../VBoxManageList.cpp" line="221"/> 7361 <location filename="../VBoxManageList.cpp" line="267"/> 7592 7362 <source>Disabled</source> 7593 7363 <translation type="unfinished"></translation> 7594 7364 </message> 7595 7365 <message> 7596 <location filename="../VBoxManageList.cpp" line="16 8"/>7366 <location filename="../VBoxManageList.cpp" line="166"/> 7597 7367 <source>IPAddress: %ls 7598 7368 </source> … … 7600 7370 </message> 7601 7371 <message> 7602 <location filename="../VBoxManageList.cpp" line="1 71"/>7603 <location filename="../VBoxManageList.cpp" line="22 7"/>7372 <location filename="../VBoxManageList.cpp" line="169"/> 7373 <location filename="../VBoxManageList.cpp" line="225"/> 7604 7374 <source>NetworkMask: %ls 7605 7375 </source> … … 7607 7377 </message> 7608 7378 <message> 7609 <location filename="../VBoxManageList.cpp" line="17 4"/>7379 <location filename="../VBoxManageList.cpp" line="172"/> 7610 7380 <source>IPV6Address: %ls 7611 7381 </source> … … 7613 7383 </message> 7614 7384 <message> 7615 <location filename="../VBoxManageList.cpp" line="17 7"/>7385 <location filename="../VBoxManageList.cpp" line="175"/> 7616 7386 <source>IPV6NetworkMaskPrefixLength: %d 7617 7387 </source> … … 7619 7389 </message> 7620 7390 <message> 7621 <location filename="../VBoxManageList.cpp" line="1 80"/>7391 <location filename="../VBoxManageList.cpp" line="178"/> 7622 7392 <source>HardwareAddress: %ls 7623 7393 </source> … … 7625 7395 </message> 7626 7396 <message> 7627 <location filename="../VBoxManageList.cpp" line="18 3"/>7397 <location filename="../VBoxManageList.cpp" line="181"/> 7628 7398 <source>MediumType: %s 7629 7399 </source> … … 7631 7401 </message> 7632 7402 <message> 7633 <location filename="../VBoxManageList.cpp" line="18 6"/>7403 <location filename="../VBoxManageList.cpp" line="184"/> 7634 7404 <source>Wireless: %s 7635 7405 </source> … … 7637 7407 </message> 7638 7408 <message> 7639 <location filename="../VBoxManageList.cpp" line="186"/> 7640 <location filename="../VBoxManageList.cpp" line="1045"/> 7641 <location filename="../VBoxManageList.cpp" line="2201"/> 7642 <location filename="../VBoxManageList.cpp" line="2206"/> 7643 <location filename="../VBoxManageList.cpp" line="2208"/> 7409 <location filename="../VBoxManageList.cpp" line="184"/> 7410 <location filename="../VBoxManageList.cpp" line="1069"/> 7644 7411 <source>Yes</source> 7645 7412 <translation type="unfinished"></translation> 7646 7413 </message> 7647 7414 <message> 7648 <location filename="../VBoxManageList.cpp" line="186"/> 7649 <location filename="../VBoxManageList.cpp" line="1045"/> 7650 <location filename="../VBoxManageList.cpp" line="2201"/> 7651 <location filename="../VBoxManageList.cpp" line="2206"/> 7652 <location filename="../VBoxManageList.cpp" line="2208"/> 7415 <location filename="../VBoxManageList.cpp" line="184"/> 7416 <location filename="../VBoxManageList.cpp" line="1069"/> 7653 7417 <source>No</source> 7654 7418 <translation type="unfinished"></translation> 7655 7419 </message> 7656 7420 <message> 7657 <location filename="../VBoxManageList.cpp" line="18 9"/>7421 <location filename="../VBoxManageList.cpp" line="187"/> 7658 7422 <source>Status: %s 7659 7423 </source> … … 7661 7425 </message> 7662 7426 <message> 7663 <location filename="../VBoxManageList.cpp" line="19 2"/>7664 <location filename="../VBoxManageList.cpp" line="23 8"/>7665 <location filename="../VBoxManageList.cpp" line="2 81"/>7427 <location filename="../VBoxManageList.cpp" line="190"/> 7428 <location filename="../VBoxManageList.cpp" line="236"/> 7429 <location filename="../VBoxManageList.cpp" line="279"/> 7666 7430 <source>VBoxNetworkName: %ls 7667 7431 … … 7670 7434 </message> 7671 7435 <message> 7672 <location filename="../VBoxManageList.cpp" line="22 3"/>7673 <location filename="../VBoxManageList.cpp" line="26 9"/>7436 <location filename="../VBoxManageList.cpp" line="221"/> 7437 <location filename="../VBoxManageList.cpp" line="267"/> 7674 7438 <source>State: %s 7675 7439 </source> … … 7677 7441 </message> 7678 7442 <message> 7679 <location filename="../VBoxManageList.cpp" line="2 30"/>7443 <location filename="../VBoxManageList.cpp" line="228"/> 7680 7444 <source>LowerIP: %ls 7681 7445 </source> … … 7683 7447 </message> 7684 7448 <message> 7685 <location filename="../VBoxManageList.cpp" line="23 3"/>7449 <location filename="../VBoxManageList.cpp" line="231"/> 7686 7450 <source>UpperIP: %ls 7687 7451 </source> … … 7689 7453 </message> 7690 7454 <message> 7691 <location filename="../VBoxManageList.cpp" line="27 3"/>7455 <location filename="../VBoxManageList.cpp" line="271"/> 7692 7456 <source>CloudProvider: %ls 7693 7457 </source> … … 7695 7459 </message> 7696 7460 <message> 7697 <location filename="../VBoxManageList.cpp" line="27 6"/>7461 <location filename="../VBoxManageList.cpp" line="274"/> 7698 7462 <source>CloudProfile: %ls 7699 7463 </source> … … 7701 7465 </message> 7702 7466 <message> 7703 <location filename="../VBoxManageList.cpp" line="27 9"/>7467 <location filename="../VBoxManageList.cpp" line="277"/> 7704 7468 <source>CloudNetworkId: %ls 7705 7469 </source> … … 7707 7471 </message> 7708 7472 <message> 7473 <location filename="../VBoxManageList.cpp" line="301"/> 7474 <source>HW virtualization</source> 7475 <translation type="unfinished"></translation> 7476 </message> 7477 <message> 7709 7478 <location filename="../VBoxManageList.cpp" line="303"/> 7710 <source>HW virtualization</source> 7479 <source>long mode</source> 7480 <translation type="unfinished"></translation> 7481 </message> 7482 <message> 7483 <location filename="../VBoxManageList.cpp" line="304"/> 7484 <source>nested paging</source> 7711 7485 <translation type="unfinished"></translation> 7712 7486 </message> 7713 7487 <message> 7714 7488 <location filename="../VBoxManageList.cpp" line="305"/> 7715 <source> long mode</source>7489 <source>unrestricted guest</source> 7716 7490 <translation type="unfinished"></translation> 7717 7491 </message> 7718 7492 <message> 7719 7493 <location filename="../VBoxManageList.cpp" line="306"/> 7720 <source>nested paging</source>7494 <source>nested HW virtualization</source> 7721 7495 <translation type="unfinished"></translation> 7722 7496 </message> 7723 7497 <message> 7724 7498 <location filename="../VBoxManageList.cpp" line="307"/> 7725 <source>unrestricted guest</source>7726 <translation type="unfinished"></translation>7727 </message>7728 <message>7729 <location filename="../VBoxManageList.cpp" line="308"/>7730 <source>nested HW virtualization</source>7731 <translation type="unfinished"></translation>7732 </message>7733 <message>7734 <location filename="../VBoxManageList.cpp" line="309"/>7735 7499 <source>virt. vmsave/vmload</source> 7736 7500 <translation type="unfinished"></translation> 7737 7501 </message> 7738 7502 <message> 7739 <location filename="../VBoxManageList.cpp" line="31 5"/>7503 <location filename="../VBoxManageList.cpp" line="313"/> 7740 7504 <source>Host Information: 7741 7505 … … 7744 7508 </message> 7745 7509 <message> 7746 <location filename="../VBoxManageList.cpp" line="3 21"/>7510 <location filename="../VBoxManageList.cpp" line="319"/> 7747 7511 <source>Host time: %s 7748 7512 </source> … … 7750 7514 </message> 7751 7515 <message> 7752 <location filename="../VBoxManageList.cpp" line="32 5"/>7516 <location filename="../VBoxManageList.cpp" line="323"/> 7753 7517 <source>Processor online count: %lu 7754 7518 </source> … … 7756 7520 </message> 7757 7521 <message> 7758 <location filename="../VBoxManageList.cpp" line="32 8"/>7522 <location filename="../VBoxManageList.cpp" line="326"/> 7759 7523 <source>Processor count: %lu 7760 7524 </source> … … 7762 7526 </message> 7763 7527 <message> 7764 <location filename="../VBoxManageList.cpp" line="3 31"/>7528 <location filename="../VBoxManageList.cpp" line="329"/> 7765 7529 <source>Processor online core count: %lu 7766 7530 </source> … … 7768 7532 </message> 7769 7533 <message> 7770 <location filename="../VBoxManageList.cpp" line="33 4"/>7534 <location filename="../VBoxManageList.cpp" line="332"/> 7771 7535 <source>Processor core count: %lu 7772 7536 </source> … … 7774 7538 </message> 7775 7539 <message> 7776 <location filename="../VBoxManageList.cpp" line="33 9"/>7540 <location filename="../VBoxManageList.cpp" line="337"/> 7777 7541 <source>Processor supports %s: %s 7778 7542 </source> … … 7780 7544 </message> 7781 7545 <message> 7782 <location filename="../VBoxManageList.cpp" line="33 9"/>7783 <location filename="../VBoxManageList.cpp" line="67 3"/>7784 <location filename="../VBoxManageList.cpp" line="82 7"/>7785 <location filename="../VBoxManageList.cpp" line="88 0"/>7786 <location filename="../VBoxManageList.cpp" line="1 779"/>7787 <location filename="../VBoxManageList.cpp" line="1 784"/>7546 <location filename="../VBoxManageList.cpp" line="337"/> 7547 <location filename="../VBoxManageList.cpp" line="671"/> 7548 <location filename="../VBoxManageList.cpp" line="825"/> 7549 <location filename="../VBoxManageList.cpp" line="889"/> 7550 <location filename="../VBoxManageList.cpp" line="1803"/> 7551 <location filename="../VBoxManageList.cpp" line="1808"/> 7788 7552 <source>yes</source> 7789 7553 <translation type="unfinished"></translation> 7790 7554 </message> 7791 7555 <message> 7792 <location filename="../VBoxManageList.cpp" line="33 9"/>7793 <location filename="../VBoxManageList.cpp" line="67 3"/>7794 <location filename="../VBoxManageList.cpp" line="82 7"/>7795 <location filename="../VBoxManageList.cpp" line="88 0"/>7796 <location filename="../VBoxManageList.cpp" line="1 779"/>7797 <location filename="../VBoxManageList.cpp" line="1 784"/>7556 <location filename="../VBoxManageList.cpp" line="337"/> 7557 <location filename="../VBoxManageList.cpp" line="671"/> 7558 <location filename="../VBoxManageList.cpp" line="825"/> 7559 <location filename="../VBoxManageList.cpp" line="889"/> 7560 <location filename="../VBoxManageList.cpp" line="1803"/> 7561 <location filename="../VBoxManageList.cpp" line="1808"/> 7798 7562 <source>no</source> 7799 7563 <translation type="unfinished"></translation> 7800 7564 </message> 7801 7565 <message> 7566 <location filename="../VBoxManageList.cpp" line="344"/> 7567 <source>Processor#%u speed: %lu MHz 7568 </source> 7569 <translation type="unfinished"></translation> 7570 </message> 7571 <message> 7802 7572 <location filename="../VBoxManageList.cpp" line="346"/> 7803 <source>Processor#%u speed: %lu MHz7804 </source>7805 <translation type="unfinished"></translation>7806 </message>7807 <message>7808 <location filename="../VBoxManageList.cpp" line="348"/>7809 7573 <source>Processor#%u speed: unknown 7810 7574 </source> … … 7812 7576 </message> 7813 7577 <message> 7814 <location filename="../VBoxManageList.cpp" line="3 51"/>7578 <location filename="../VBoxManageList.cpp" line="349"/> 7815 7579 <source>Processor#%u description: %ls 7816 7580 </source> … … 7818 7582 </message> 7819 7583 <message numerus="yes"> 7820 <location filename="../VBoxManageList.cpp" line="35 6"/>7584 <location filename="../VBoxManageList.cpp" line="354"/> 7821 7585 <source>Memory size: %lu MByte 7822 7586 </source> … … 7826 7590 </message> 7827 7591 <message numerus="yes"> 7828 <location filename="../VBoxManageList.cpp" line="3 60"/>7592 <location filename="../VBoxManageList.cpp" line="358"/> 7829 7593 <source>Memory available: %lu MByte 7830 7594 </source> … … 7834 7598 </message> 7835 7599 <message> 7836 <location filename="../VBoxManageList.cpp" line="36 4"/>7600 <location filename="../VBoxManageList.cpp" line="362"/> 7837 7601 <source>Operating system: %ls 7838 7602 </source> … … 7840 7604 </message> 7841 7605 <message> 7842 <location filename="../VBoxManageList.cpp" line="36 8"/>7606 <location filename="../VBoxManageList.cpp" line="366"/> 7843 7607 <source>Operating system version: %ls 7844 7608 </source> … … 7846 7610 </message> 7847 7611 <message> 7848 <location filename="../VBoxManageList.cpp" line="42 6"/>7612 <location filename="../VBoxManageList.cpp" line="424"/> 7849 7613 <source>Supported hard disk backends: 7850 7614 … … 7853 7617 </message> 7854 7618 <message> 7855 <location filename="../VBoxManageList.cpp" line="44 5"/>7619 <location filename="../VBoxManageList.cpp" line="443"/> 7856 7620 <source>Backend %u: id='%ls' description='%ls' capabilities=%#06x extensions='</source> 7857 7621 <translation type="unfinished"></translation> 7858 7622 </message> 7859 7623 <message> 7860 <location filename="../VBoxManageList.cpp" line="47 4"/>7624 <location filename="../VBoxManageList.cpp" line="472"/> 7861 7625 <source> properties=(</source> 7862 7626 <translation type="unfinished"></translation> 7863 7627 </message> 7864 7628 <message> 7865 <location filename="../VBoxManageList.cpp" line="47 9"/>7629 <location filename="../VBoxManageList.cpp" line="477"/> 7866 7630 <source> 7867 7631 name='%ls' desc='%ls' type=</source> … … 7869 7633 </message> 7870 7634 <message> 7635 <location filename="../VBoxManageList.cpp" line="481"/> 7636 <source>int</source> 7637 <translation type="unfinished"></translation> 7638 </message> 7639 <message> 7640 <location filename="../VBoxManageList.cpp" line="482"/> 7641 <source>byte</source> 7642 <translation type="unfinished"></translation> 7643 </message> 7644 <message> 7871 7645 <location filename="../VBoxManageList.cpp" line="483"/> 7872 <source>int</source>7873 <translation type="unfinished"></translation>7874 </message>7875 <message>7876 <location filename="../VBoxManageList.cpp" line="484"/>7877 <source>byte</source>7878 <translation type="unfinished"></translation>7879 </message>7880 <message>7881 <location filename="../VBoxManageList.cpp" line="485"/>7882 7646 <source>string</source> 7883 7647 <translation type="unfinished"></translation> 7884 7648 </message> 7885 7649 <message> 7886 <location filename="../VBoxManageList.cpp" line="4 90"/>7650 <location filename="../VBoxManageList.cpp" line="488"/> 7887 7651 <source> flags=%#04x</source> 7888 7652 <translation type="unfinished"></translation> 7889 7653 </message> 7890 7654 <message> 7891 <location filename="../VBoxManageList.cpp" line="4 91"/>7655 <location filename="../VBoxManageList.cpp" line="489"/> 7892 7656 <source> default='%ls'</source> 7893 7657 <translation type="unfinished"></translation> 7894 7658 </message> 7895 7659 <message> 7896 <location filename="../VBoxManageList.cpp" line="51 7"/>7660 <location filename="../VBoxManageList.cpp" line="515"/> 7897 7661 <source>Host USB Devices: 7898 7662 … … 7901 7665 </message> 7902 7666 <message> 7903 <location filename="../VBoxManageList.cpp" line="5 21"/>7904 <location filename="../VBoxManageList.cpp" line="65 9"/>7667 <location filename="../VBoxManageList.cpp" line="519"/> 7668 <location filename="../VBoxManageList.cpp" line="657"/> 7905 7669 <source><none> 7906 7670 … … 7909 7673 </message> 7910 7674 <message> 7911 <location filename="../VBoxManageList.cpp" line="54 5"/>7675 <location filename="../VBoxManageList.cpp" line="543"/> 7912 7676 <source>UUID: %s 7913 7677 VendorId: %#06x (%04X) … … 7919 7683 </message> 7920 7684 <message> 7921 <location filename="../VBoxManageList.cpp" line="5 61"/>7685 <location filename="../VBoxManageList.cpp" line="559"/> 7922 7686 <source>Low</source> 7923 7687 <translation type="unfinished"></translation> 7924 7688 </message> 7925 7689 <message> 7926 <location filename="../VBoxManageList.cpp" line="56 4"/>7690 <location filename="../VBoxManageList.cpp" line="562"/> 7927 7691 <source>Full</source> 7928 7692 <translation type="unfinished"></translation> 7929 7693 </message> 7930 7694 <message> 7931 <location filename="../VBoxManageList.cpp" line="56 7"/>7695 <location filename="../VBoxManageList.cpp" line="565"/> 7932 7696 <source>High</source> 7933 7697 <translation type="unfinished"></translation> 7934 7698 </message> 7935 7699 <message> 7936 <location filename="../VBoxManageList.cpp" line="5 70"/>7700 <location filename="../VBoxManageList.cpp" line="568"/> 7937 7701 <source>Super</source> 7938 7702 <translation type="unfinished"></translation> 7939 7703 </message> 7940 7704 <message> 7941 <location filename="../VBoxManageList.cpp" line="57 3"/>7705 <location filename="../VBoxManageList.cpp" line="571"/> 7942 7706 <source>SuperPlus</source> 7943 7707 <translation type="unfinished"></translation> 7944 7708 </message> 7945 7709 <message> 7946 <location filename="../VBoxManageList.cpp" line="5 80"/>7710 <location filename="../VBoxManageList.cpp" line="578"/> 7947 7711 <source>USB version/speed: %u/%s 7948 7712 </source> … … 7950 7714 </message> 7951 7715 <message> 7952 <location filename="../VBoxManageList.cpp" line="58 9"/>7716 <location filename="../VBoxManageList.cpp" line="587"/> 7953 7717 <source>Manufacturer: %ls 7954 7718 </source> … … 7956 7720 </message> 7957 7721 <message> 7958 <location filename="../VBoxManageList.cpp" line="59 3"/>7722 <location filename="../VBoxManageList.cpp" line="591"/> 7959 7723 <source>Product: %ls 7960 7724 </source> … … 7962 7726 </message> 7963 7727 <message> 7964 <location filename="../VBoxManageList.cpp" line="59 6"/>7728 <location filename="../VBoxManageList.cpp" line="594"/> 7965 7729 <source>SerialNumber: %ls 7966 7730 </source> … … 7968 7732 </message> 7969 7733 <message> 7970 <location filename="../VBoxManageList.cpp" line="59 9"/>7734 <location filename="../VBoxManageList.cpp" line="597"/> 7971 7735 <source>Address: %ls 7972 7736 </source> … … 7974 7738 </message> 7975 7739 <message> 7976 <location filename="../VBoxManageList.cpp" line="60 2"/>7740 <location filename="../VBoxManageList.cpp" line="600"/> 7977 7741 <source>Port path: %ls 7978 7742 </source> … … 7980 7744 </message> 7981 7745 <message> 7982 <location filename="../VBoxManageList.cpp" line="6 11"/>7746 <location filename="../VBoxManageList.cpp" line="609"/> 7983 7747 <source>Not supported</source> 7984 7748 <translation type="unfinished"></translation> 7985 7749 </message> 7986 7750 <message> 7987 <location filename="../VBoxManageList.cpp" line="61 4"/>7751 <location filename="../VBoxManageList.cpp" line="612"/> 7988 7752 <source>Unavailable</source> 7989 7753 <translation type="unfinished"></translation> 7990 7754 </message> 7991 7755 <message> 7992 <location filename="../VBoxManageList.cpp" line="61 7"/>7756 <location filename="../VBoxManageList.cpp" line="615"/> 7993 7757 <source>Busy</source> 7994 7758 <translation type="unfinished"></translation> 7995 7759 </message> 7996 7760 <message> 7997 <location filename="../VBoxManageList.cpp" line="6 20"/>7761 <location filename="../VBoxManageList.cpp" line="618"/> 7998 7762 <source>Available</source> 7999 7763 <translation type="unfinished"></translation> 8000 7764 </message> 8001 7765 <message> 8002 <location filename="../VBoxManageList.cpp" line="62 3"/>7766 <location filename="../VBoxManageList.cpp" line="621"/> 8003 7767 <source>Held</source> 8004 7768 <translation type="unfinished"></translation> 8005 7769 </message> 8006 7770 <message> 8007 <location filename="../VBoxManageList.cpp" line="62 6"/>7771 <location filename="../VBoxManageList.cpp" line="624"/> 8008 7772 <source>Captured</source> 8009 7773 <translation type="unfinished"></translation> 8010 7774 </message> 8011 7775 <message> 8012 <location filename="../VBoxManageList.cpp" line="63 2"/>7776 <location filename="../VBoxManageList.cpp" line="630"/> 8013 7777 <source>Current State: %s 8014 7778 … … 8017 7781 </message> 8018 7782 <message> 8019 <location filename="../VBoxManageList.cpp" line="64 9"/>7783 <location filename="../VBoxManageList.cpp" line="647"/> 8020 7784 <source>Global USB Device Filters: 8021 7785 … … 8024 7788 </message> 8025 7789 <message> 8026 <location filename="../VBoxManageList.cpp" line="66 9"/>7790 <location filename="../VBoxManageList.cpp" line="667"/> 8027 7791 <source>Index: %zu 8028 7792 </source> … … 8030 7794 </message> 8031 7795 <message> 8032 <location filename="../VBoxManageList.cpp" line="67 3"/>7796 <location filename="../VBoxManageList.cpp" line="671"/> 8033 7797 <source>Active: %s 8034 7798 </source> … … 8036 7800 </message> 8037 7801 <message> 8038 <location filename="../VBoxManageList.cpp" line="67 7"/>7802 <location filename="../VBoxManageList.cpp" line="675"/> 8039 7803 <source><invalid></source> 8040 7804 <translation type="unfinished"></translation> 8041 7805 </message> 8042 7806 <message> 8043 <location filename="../VBoxManageList.cpp" line="6 81"/>7807 <location filename="../VBoxManageList.cpp" line="679"/> 8044 7808 <source>Ignore</source> 8045 7809 <translation type="unfinished"></translation> 8046 7810 </message> 8047 7811 <message> 8048 <location filename="../VBoxManageList.cpp" line="68 4"/>7812 <location filename="../VBoxManageList.cpp" line="682"/> 8049 7813 <source>Hold</source> 8050 7814 <translation type="unfinished"></translation> 8051 7815 </message> 8052 7816 <message> 8053 <location filename="../VBoxManageList.cpp" line="68 9"/>7817 <location filename="../VBoxManageList.cpp" line="687"/> 8054 7818 <source>Action: %s 8055 7819 </source> … … 8057 7821 </message> 8058 7822 <message> 7823 <location filename="../VBoxManageList.cpp" line="691"/> 7824 <source>Name: %ls 7825 </source> 7826 <translation type="unfinished"></translation> 7827 </message> 7828 <message> 8059 7829 <location filename="../VBoxManageList.cpp" line="693"/> 8060 <source> Name:%ls7830 <source>VendorId: %ls 8061 7831 </source> 8062 7832 <translation type="unfinished"></translation> … … 8064 7834 <message> 8065 7835 <location filename="../VBoxManageList.cpp" line="695"/> 8066 <source> VendorId:%ls7836 <source>ProductId: %ls 8067 7837 </source> 8068 7838 <translation type="unfinished"></translation> … … 8070 7840 <message> 8071 7841 <location filename="../VBoxManageList.cpp" line="697"/> 8072 <source> ProductId:%ls7842 <source>Revision: %ls 8073 7843 </source> 8074 7844 <translation type="unfinished"></translation> … … 8076 7846 <message> 8077 7847 <location filename="../VBoxManageList.cpp" line="699"/> 8078 <source> Revision:%ls7848 <source>Manufacturer: %ls 8079 7849 </source> 8080 7850 <translation type="unfinished"></translation> … … 8082 7852 <message> 8083 7853 <location filename="../VBoxManageList.cpp" line="701"/> 8084 <source> Manufacturer:%ls7854 <source>Product: %ls 8085 7855 </source> 8086 7856 <translation type="unfinished"></translation> … … 8088 7858 <message> 8089 7859 <location filename="../VBoxManageList.cpp" line="703"/> 8090 <source>Product: %ls8091 </source>8092 <translation type="unfinished"></translation>8093 </message>8094 <message>8095 <location filename="../VBoxManageList.cpp" line="705"/>8096 7860 <source>Serial Number: %ls 8097 7861 … … 8100 7864 </message> 8101 7865 <message> 8102 <location filename="../VBoxManageList.cpp" line="7 30"/>7866 <location filename="../VBoxManageList.cpp" line="728"/> 8103 7867 <source>API version: %ls 8104 7868 </source> … … 8106 7870 </message> 8107 7871 <message numerus="yes"> 8108 <location filename="../VBoxManageList.cpp" line="73 3"/>7872 <location filename="../VBoxManageList.cpp" line="731"/> 8109 7873 <source>Minimum guest RAM size: %u Megabytes 8110 7874 </source> … … 8114 7878 </message> 8115 7879 <message numerus="yes"> 8116 <location filename="../VBoxManageList.cpp" line="73 5"/>7880 <location filename="../VBoxManageList.cpp" line="733"/> 8117 7881 <source>Maximum guest RAM size: %u Megabytes 8118 7882 </source> … … 8122 7886 </message> 8123 7887 <message numerus="yes"> 8124 <location filename="../VBoxManageList.cpp" line="73 7"/>7888 <location filename="../VBoxManageList.cpp" line="735"/> 8125 7889 <source>Minimum video RAM size: %u Megabytes 8126 7890 </source> … … 8130 7894 </message> 8131 7895 <message numerus="yes"> 8132 <location filename="../VBoxManageList.cpp" line="73 9"/>7896 <location filename="../VBoxManageList.cpp" line="737"/> 8133 7897 <source>Maximum video RAM size: %u Megabytes 8134 7898 </source> … … 8138 7902 </message> 8139 7903 <message> 7904 <location filename="../VBoxManageList.cpp" line="739"/> 7905 <source>Maximum guest monitor count: %u 7906 </source> 7907 <translation type="unfinished"></translation> 7908 </message> 7909 <message> 8140 7910 <location filename="../VBoxManageList.cpp" line="741"/> 8141 <source>M aximum guest monitor count:%u7911 <source>Minimum guest CPU count: %u 8142 7912 </source> 8143 7913 <translation type="unfinished"></translation> … … 8145 7915 <message> 8146 7916 <location filename="../VBoxManageList.cpp" line="743"/> 8147 <source>M inimum guest CPU count: %u8148 </source> 8149 <translation type="unfinished"></translation> 8150 </message> 8151 <message >7917 <source>Maximum guest CPU count: %u 7918 </source> 7919 <translation type="unfinished"></translation> 7920 </message> 7921 <message numerus="yes"> 8152 7922 <location filename="../VBoxManageList.cpp" line="745"/> 8153 <source>Maximum guest CPU count: %u8154 </source>8155 <translation type="unfinished"></translation>8156 </message>8157 <message numerus="yes">8158 <location filename="../VBoxManageList.cpp" line="747"/>8159 7923 <source>Virtual disk limit (info): %lld Bytes 8160 7924 </source> … … 8164 7928 </message> 8165 7929 <message> 7930 <location filename="../VBoxManageList.cpp" line="747"/> 7931 <source>Maximum Serial Port count: %u 7932 </source> 7933 <translation type="unfinished"></translation> 7934 </message> 7935 <message> 8166 7936 <location filename="../VBoxManageList.cpp" line="749"/> 8167 <source>Maximum Serial Port count:%u7937 <source>Maximum Parallel Port count: %u 8168 7938 </source> 8169 7939 <translation type="unfinished"></translation> … … 8171 7941 <message> 8172 7942 <location filename="../VBoxManageList.cpp" line="751"/> 8173 <source>Maximum Parallel Port count:%u7943 <source>Maximum Boot Position: %u 8174 7944 </source> 8175 7945 <translation type="unfinished"></translation> … … 8177 7947 <message> 8178 7948 <location filename="../VBoxManageList.cpp" line="753"/> 8179 <source>Maximum Boot Position:%u7949 <source>Maximum PIIX3 Network Adapter count: %u 8180 7950 </source> 8181 7951 <translation type="unfinished"></translation> … … 8183 7953 <message> 8184 7954 <location filename="../VBoxManageList.cpp" line="755"/> 8185 <source>Maximum PIIX3Network Adapter count: %u7955 <source>Maximum ICH9 Network Adapter count: %u 8186 7956 </source> 8187 7957 <translation type="unfinished"></translation> … … 8189 7959 <message> 8190 7960 <location filename="../VBoxManageList.cpp" line="757"/> 8191 <source>Maximum ICH9 Network Adapter count: %u7961 <source>Maximum PIIX3 IDE Controllers: %u 8192 7962 </source> 8193 7963 <translation type="unfinished"></translation> … … 8195 7965 <message> 8196 7966 <location filename="../VBoxManageList.cpp" line="759"/> 8197 <source>Maximum PIIX3 IDE Controllers:%u7967 <source>Maximum ICH9 IDE Controllers: %u 8198 7968 </source> 8199 7969 <translation type="unfinished"></translation> … … 8201 7971 <message> 8202 7972 <location filename="../VBoxManageList.cpp" line="761"/> 8203 <source>Maximum I CH9 IDE Controllers:%u7973 <source>Maximum IDE Port count: %u 8204 7974 </source> 8205 7975 <translation type="unfinished"></translation> … … 8207 7977 <message> 8208 7978 <location filename="../VBoxManageList.cpp" line="763"/> 8209 <source>Maximum IDE Port count:%u7979 <source>Maximum Devices per IDE Port: %u 8210 7980 </source> 8211 7981 <translation type="unfinished"></translation> … … 8213 7983 <message> 8214 7984 <location filename="../VBoxManageList.cpp" line="765"/> 8215 <source>Maximum Devices per IDE Port:%u7985 <source>Maximum PIIX3 SATA Controllers: %u 8216 7986 </source> 8217 7987 <translation type="unfinished"></translation> … … 8219 7989 <message> 8220 7990 <location filename="../VBoxManageList.cpp" line="767"/> 8221 <source>Maximum PIIX3 SATA Controllers:%u7991 <source>Maximum ICH9 SATA Controllers: %u 8222 7992 </source> 8223 7993 <translation type="unfinished"></translation> … … 8225 7995 <message> 8226 7996 <location filename="../VBoxManageList.cpp" line="769"/> 8227 <source>Maximum ICH9 SATA Controllers:%u7997 <source>Maximum SATA Port count: %u 8228 7998 </source> 8229 7999 <translation type="unfinished"></translation> … … 8231 8001 <message> 8232 8002 <location filename="../VBoxManageList.cpp" line="771"/> 8233 <source>Maximum SATA Port count:%u8003 <source>Maximum Devices per SATA Port: %u 8234 8004 </source> 8235 8005 <translation type="unfinished"></translation> … … 8237 8007 <message> 8238 8008 <location filename="../VBoxManageList.cpp" line="773"/> 8239 <source>Maximum Devices per SATA Port:%u8009 <source>Maximum PIIX3 SCSI Controllers: %u 8240 8010 </source> 8241 8011 <translation type="unfinished"></translation> … … 8243 8013 <message> 8244 8014 <location filename="../VBoxManageList.cpp" line="775"/> 8245 <source>Maximum PIIX3 SCSI Controllers:%u8015 <source>Maximum ICH9 SCSI Controllers: %u 8246 8016 </source> 8247 8017 <translation type="unfinished"></translation> … … 8249 8019 <message> 8250 8020 <location filename="../VBoxManageList.cpp" line="777"/> 8251 <source>Maximum ICH9 SCSI Controllers:%u8021 <source>Maximum SCSI Port count: %u 8252 8022 </source> 8253 8023 <translation type="unfinished"></translation> … … 8255 8025 <message> 8256 8026 <location filename="../VBoxManageList.cpp" line="779"/> 8257 <source>Maximum SCSI Port count:%u8027 <source>Maximum Devices per SCSI Port: %u 8258 8028 </source> 8259 8029 <translation type="unfinished"></translation> … … 8261 8031 <message> 8262 8032 <location filename="../VBoxManageList.cpp" line="781"/> 8263 <source>Maximum Devices per SCSI Port: %u8033 <source>Maximum SAS PIIX3 Controllers: %u 8264 8034 </source> 8265 8035 <translation type="unfinished"></translation> … … 8267 8037 <message> 8268 8038 <location filename="../VBoxManageList.cpp" line="783"/> 8269 <source>Maximum SAS PIIX3 Controllers:%u8039 <source>Maximum SAS ICH9 Controllers: %u 8270 8040 </source> 8271 8041 <translation type="unfinished"></translation> … … 8273 8043 <message> 8274 8044 <location filename="../VBoxManageList.cpp" line="785"/> 8275 <source>Maximum SAS ICH9 Controllers:%u8045 <source>Maximum SAS Port count: %u 8276 8046 </source> 8277 8047 <translation type="unfinished"></translation> … … 8279 8049 <message> 8280 8050 <location filename="../VBoxManageList.cpp" line="787"/> 8281 <source>Maximum SAS Port count:%u8051 <source>Maximum Devices per SAS Port: %u 8282 8052 </source> 8283 8053 <translation type="unfinished"></translation> … … 8285 8055 <message> 8286 8056 <location filename="../VBoxManageList.cpp" line="789"/> 8287 <source>Maximum Devices per SAS Port:%u8057 <source>Maximum NVMe PIIX3 Controllers: %u 8288 8058 </source> 8289 8059 <translation type="unfinished"></translation> … … 8291 8061 <message> 8292 8062 <location filename="../VBoxManageList.cpp" line="791"/> 8293 <source>Maximum NVMe PIIX3 Controllers:%u8063 <source>Maximum NVMe ICH9 Controllers: %u 8294 8064 </source> 8295 8065 <translation type="unfinished"></translation> … … 8297 8067 <message> 8298 8068 <location filename="../VBoxManageList.cpp" line="793"/> 8299 <source>Maximum NVMe ICH9 Controllers:%u8069 <source>Maximum NVMe Port count: %u 8300 8070 </source> 8301 8071 <translation type="unfinished"></translation> … … 8303 8073 <message> 8304 8074 <location filename="../VBoxManageList.cpp" line="795"/> 8305 <source>Maximum NVMe Port count:%u8075 <source>Maximum Devices per NVMe Port: %u 8306 8076 </source> 8307 8077 <translation type="unfinished"></translation> … … 8309 8079 <message> 8310 8080 <location filename="../VBoxManageList.cpp" line="797"/> 8311 <source>Maximum Devices per NVMe Port:%u8081 <source>Maximum virtio-scsi PIIX3 Controllers: %u 8312 8082 </source> 8313 8083 <translation type="unfinished"></translation> … … 8315 8085 <message> 8316 8086 <location filename="../VBoxManageList.cpp" line="799"/> 8317 <source>Maximum virtio-scsi PIIX3 Controllers:%u8087 <source>Maximum virtio-scsi ICH9 Controllers: %u 8318 8088 </source> 8319 8089 <translation type="unfinished"></translation> … … 8321 8091 <message> 8322 8092 <location filename="../VBoxManageList.cpp" line="801"/> 8323 <source>Maximum virtio-scsi ICH9 Controllers:%u8093 <source>Maximum virtio-scsi Port count: %u 8324 8094 </source> 8325 8095 <translation type="unfinished"></translation> … … 8327 8097 <message> 8328 8098 <location filename="../VBoxManageList.cpp" line="803"/> 8329 <source>Maximum virtio-scsi Port count:%u8099 <source>Maximum Devices per virtio-scsi Port: %u 8330 8100 </source> 8331 8101 <translation type="unfinished"></translation> … … 8333 8103 <message> 8334 8104 <location filename="../VBoxManageList.cpp" line="805"/> 8335 <source>Maximum Devices per virtio-scsi Port:%u8105 <source>Maximum PIIX3 Floppy Controllers:%u 8336 8106 </source> 8337 8107 <translation type="unfinished"></translation> … … 8339 8109 <message> 8340 8110 <location filename="../VBoxManageList.cpp" line="807"/> 8341 <source>Maximum PIIX3 Floppy Controllers:%u8111 <source>Maximum ICH9 Floppy Controllers: %u 8342 8112 </source> 8343 8113 <translation type="unfinished"></translation> … … 8345 8115 <message> 8346 8116 <location filename="../VBoxManageList.cpp" line="809"/> 8347 <source>Maximum ICH9 Floppy Controllers:%u8117 <source>Maximum Floppy Port count: %u 8348 8118 </source> 8349 8119 <translation type="unfinished"></translation> … … 8351 8121 <message> 8352 8122 <location filename="../VBoxManageList.cpp" line="811"/> 8353 <source>Maximum Floppy Port count: %u8354 </source>8355 <translation type="unfinished"></translation>8356 </message>8357 <message>8358 <location filename="../VBoxManageList.cpp" line="813"/>8359 8123 <source>Maximum Devices per Floppy Port: %u 8360 8124 </source> … … 8362 8126 </message> 8363 8127 <message numerus="yes"> 8364 <location filename="../VBoxManageList.cpp" line="81 6"/>8128 <location filename="../VBoxManageList.cpp" line="814"/> 8365 8129 <source>Free disk space warning at: %u Bytes 8366 8130 </source> … … 8370 8134 </message> 8371 8135 <message> 8136 <location filename="../VBoxManageList.cpp" line="816"/> 8137 <source>Free disk space warning at: %u %% 8138 </source> 8139 <translation type="unfinished"></translation> 8140 </message> 8141 <message numerus="yes"> 8372 8142 <location filename="../VBoxManageList.cpp" line="818"/> 8373 <source>Free disk space warning at: %u %%8374 </source>8375 <translation type="unfinished"></translation>8376 </message>8377 <message numerus="yes">8378 <location filename="../VBoxManageList.cpp" line="820"/>8379 8143 <source>Free disk space error at: %u Bytes 8380 8144 </source> … … 8384 8148 </message> 8385 8149 <message> 8386 <location filename="../VBoxManageList.cpp" line="82 2"/>8150 <location filename="../VBoxManageList.cpp" line="820"/> 8387 8151 <source>Free disk space error at: %u %% 8388 8152 </source> … … 8390 8154 </message> 8391 8155 <message> 8156 <location filename="../VBoxManageList.cpp" line="823"/> 8157 <source>Default machine folder: %ls 8158 </source> 8159 <translation type="unfinished"></translation> 8160 </message> 8161 <message> 8392 8162 <location filename="../VBoxManageList.cpp" line="825"/> 8393 <source> Default machine folder: %ls8163 <source>Raw-mode Supported: %s 8394 8164 </source> 8395 8165 <translation type="unfinished"></translation> … … 8397 8167 <message> 8398 8168 <location filename="../VBoxManageList.cpp" line="827"/> 8399 <source>Raw-mode Supported: %s 8400 </source> 8169 <source>Exclusive HW virtualization use: %s 8170 </source> 8171 <translation type="unfinished"></translation> 8172 </message> 8173 <message> 8174 <location filename="../VBoxManageList.cpp" line="827"/> 8175 <location filename="../VBoxManageList.cpp" line="1867"/> 8176 <location filename="../VBoxManageList.cpp" line="1871"/> 8177 <source>on</source> 8178 <translation type="unfinished"></translation> 8179 </message> 8180 <message> 8181 <location filename="../VBoxManageList.cpp" line="827"/> 8182 <location filename="../VBoxManageList.cpp" line="1867"/> 8183 <location filename="../VBoxManageList.cpp" line="1871"/> 8184 <source>off</source> 8401 8185 <translation type="unfinished"></translation> 8402 8186 </message> 8403 8187 <message> 8404 8188 <location filename="../VBoxManageList.cpp" line="829"/> 8405 <source>Exclusive HW virtualization use: %s 8406 </source> 8407 <translation type="unfinished"></translation> 8408 </message> 8409 <message> 8410 <location filename="../VBoxManageList.cpp" line="829"/> 8411 <location filename="../VBoxManageList.cpp" line="1843"/> 8412 <location filename="../VBoxManageList.cpp" line="1847"/> 8413 <source>on</source> 8414 <translation type="unfinished"></translation> 8415 </message> 8416 <message> 8417 <location filename="../VBoxManageList.cpp" line="829"/> 8418 <location filename="../VBoxManageList.cpp" line="1843"/> 8419 <location filename="../VBoxManageList.cpp" line="1847"/> 8420 <source>off</source> 8189 <source>Default hard disk format: %ls 8190 </source> 8421 8191 <translation type="unfinished"></translation> 8422 8192 </message> 8423 8193 <message> 8424 8194 <location filename="../VBoxManageList.cpp" line="831"/> 8425 <source> Default hard disk format:%ls8195 <source>VRDE auth library: %ls 8426 8196 </source> 8427 8197 <translation type="unfinished"></translation> … … 8429 8199 <message> 8430 8200 <location filename="../VBoxManageList.cpp" line="833"/> 8431 <source> VRDE auth library:%ls8201 <source>Webservice auth. library: %ls 8432 8202 </source> 8433 8203 <translation type="unfinished"></translation> … … 8435 8205 <message> 8436 8206 <location filename="../VBoxManageList.cpp" line="835"/> 8437 <source> Webservice auth. library:%ls8207 <source>Remote desktop ExtPack: %ls 8438 8208 </source> 8439 8209 <translation type="unfinished"></translation> … … 8441 8211 <message> 8442 8212 <location filename="../VBoxManageList.cpp" line="837"/> 8443 <source> Remote desktop ExtPack: %ls8213 <source>Log history count: %u 8444 8214 </source> 8445 8215 <translation type="unfinished"></translation> … … 8447 8217 <message> 8448 8218 <location filename="../VBoxManageList.cpp" line="839"/> 8449 <source>Log history count: %u8450 </source>8451 <translation type="unfinished"></translation>8452 </message>8453 <message>8454 <location filename="../VBoxManageList.cpp" line="841"/>8455 8219 <source>Default frontend: %ls 8456 8220 </source> … … 8458 8222 </message> 8459 8223 <message> 8460 <location filename="../VBoxManageList.cpp" line="84 6"/>8224 <location filename="../VBoxManageList.cpp" line="844"/> 8461 8225 <source>Null</source> 8462 8226 <translation type="unfinished"></translation> 8463 8227 </message> 8464 8228 <message> 8229 <location filename="../VBoxManageList.cpp" line="855"/> 8230 <source>Default audio driver: %s 8231 </source> 8232 <translation type="unfinished"></translation> 8233 </message> 8234 <message> 8465 8235 <location filename="../VBoxManageList.cpp" line="857"/> 8466 <source> Default audio driver: %s8236 <source>Autostart database path: %ls 8467 8237 </source> 8468 8238 <translation type="unfinished"></translation> … … 8470 8240 <message> 8471 8241 <location filename="../VBoxManageList.cpp" line="859"/> 8472 <source> Autostart database path:%ls8242 <source>Default Guest Additions ISO: %ls 8473 8243 </source> 8474 8244 <translation type="unfinished"></translation> … … 8476 8246 <message> 8477 8247 <location filename="../VBoxManageList.cpp" line="861"/> 8478 <source>Default Guest Additions ISO: %ls8479 </source>8480 <translation type="unfinished"></translation>8481 </message>8482 <message>8483 <location filename="../VBoxManageList.cpp" line="863"/>8484 8248 <source>Logging Level: %ls 8485 8249 </source> … … 8487 8251 </message> 8488 8252 <message> 8253 <location filename="../VBoxManageList.cpp" line="867"/> 8254 <source>System</source> 8255 <translation type="unfinished"></translation> 8256 </message> 8257 <message> 8258 <location filename="../VBoxManageList.cpp" line="868"/> 8259 <source>NoProxy</source> 8260 <translation type="unfinished"></translation> 8261 </message> 8262 <message> 8489 8263 <location filename="../VBoxManageList.cpp" line="869"/> 8490 <source>System</source>8491 <translation type="unfinished"></translation>8492 </message>8493 <message>8494 <location filename="../VBoxManageList.cpp" line="870"/>8495 <source>NoProxy</source>8496 <translation type="unfinished"></translation>8497 </message>8498 <message>8499 <location filename="../VBoxManageList.cpp" line="871"/>8500 8264 <source>Manual</source> 8501 8265 <translation type="unfinished"></translation> 8502 8266 </message> 8503 8267 <message> 8268 <location filename="../VBoxManageList.cpp" line="874"/> 8269 <source>Proxy Mode: %s 8270 </source> 8271 <translation type="unfinished"></translation> 8272 </message> 8273 <message> 8504 8274 <location filename="../VBoxManageList.cpp" line="876"/> 8505 <source>Proxy Mode: %s8506 </source>8507 <translation type="unfinished"></translation>8508 </message>8509 <message>8510 <location filename="../VBoxManageList.cpp" line="878"/>8511 8275 <source>Proxy URL: %ls 8512 8276 </source> … … 8514 8278 </message> 8515 8279 <message> 8516 <location filename="../VBoxManageList.cpp" line="880"/> 8517 <source>Update check enabled: %s 8518 </source> 8519 <translation type="unfinished"></translation> 8520 </message> 8521 <message> 8522 <location filename="../VBoxManageList.cpp" line="882"/> 8523 <source>Update check count: %u 8524 </source> 8525 <translation type="unfinished"></translation> 8526 </message> 8527 <message> 8528 <location filename="../VBoxManageList.cpp" line="885"/> 8529 <source>Update check frequency: never 8530 </source> 8531 <translation type="unfinished"></translation> 8532 </message> 8533 <message> 8534 <location filename="../VBoxManageList.cpp" line="887"/> 8535 <source>Update check frequency: every day 8280 <location filename="../VBoxManageList.cpp" line="908"/> 8281 <source>Stable: new minor and maintenance releases</source> 8282 <translation type="unfinished"></translation> 8283 </message> 8284 <message> 8285 <location filename="../VBoxManageList.cpp" line="911"/> 8286 <source>All releases: new minor, maintenance, and major releases</source> 8287 <translation type="unfinished"></translation> 8288 </message> 8289 <message> 8290 <location filename="../VBoxManageList.cpp" line="914"/> 8291 <source>With Betas: new minor, maintenance, major, and beta releases</source> 8292 <translation type="unfinished"></translation> 8293 </message> 8294 <message> 8295 <location filename="../VBoxManageList.cpp" line="917"/> 8296 <source>Unset</source> 8297 <translation type="unfinished"></translation> 8298 </message> 8299 <message> 8300 <location filename="../VBoxManageList.cpp" line="924"/> 8301 <source>Last check date: %ls 8302 </source> 8303 <translation type="unfinished"></translation> 8304 </message> 8305 <message> 8306 <location filename="../VBoxManageList.cpp" line="879"/> 8307 <source>User language: %ls 8308 </source> 8309 <translation type="unfinished"></translation> 8310 </message> 8311 <message> 8312 <location filename="../VBoxManageList.cpp" line="889"/> 8313 <source>Enabled: %s 8314 </source> 8315 <translation type="unfinished"></translation> 8316 </message> 8317 <message> 8318 <location filename="../VBoxManageList.cpp" line="892"/> 8319 <source>Check count: %u 8320 </source> 8321 <translation type="unfinished"></translation> 8322 </message> 8323 <message> 8324 <location filename="../VBoxManageList.cpp" line="895"/> 8325 <source>Check frequency: never 8326 </source> 8327 <translation type="unfinished"></translation> 8328 </message> 8329 <message> 8330 <location filename="../VBoxManageList.cpp" line="897"/> 8331 <source>Check frequency: every day 8536 8332 </source> 8537 8333 <translation type="unfinished"></translation> 8538 8334 </message> 8539 8335 <message numerus="yes"> 8540 <location filename="../VBoxManageList.cpp" line="8 89"/>8541 <source> Update check frequency:every %u days8336 <location filename="../VBoxManageList.cpp" line="899"/> 8337 <source>Check frequency: every %u days 8542 8338 </source> 8543 8339 <translation type="unfinished"> … … 8546 8342 </message> 8547 8343 <message> 8548 <location filename="../VBoxManageList.cpp" line="895"/> 8549 <source>Stable: new minor and maintenance releases</source> 8550 <translation type="unfinished"></translation> 8551 </message> 8552 <message> 8553 <location filename="../VBoxManageList.cpp" line="898"/> 8554 <source>All releases: new minor, maintenance, and major releases</source> 8555 <translation type="unfinished"></translation> 8556 </message> 8557 <message> 8558 <location filename="../VBoxManageList.cpp" line="901"/> 8559 <source>With Betas: new minor, maintenance, major, and beta releases</source> 8560 <translation type="unfinished"></translation> 8561 </message> 8562 <message> 8563 <location filename="../VBoxManageList.cpp" line="904"/> 8564 <source>Unset</source> 8565 <translation type="unfinished"></translation> 8566 </message> 8567 <message> 8568 <location filename="../VBoxManageList.cpp" line="907"/> 8569 <source>Update check target: %s 8570 </source> 8571 <translation type="unfinished"></translation> 8572 </message> 8573 <message> 8574 <location filename="../VBoxManageList.cpp" line="909"/> 8575 <source>Last check date: %ls 8576 </source> 8577 <translation type="unfinished"></translation> 8578 </message> 8579 <message> 8580 <location filename="../VBoxManageList.cpp" line="912"/> 8581 <source>User language: %ls 8582 </source> 8583 <translation type="unfinished"></translation> 8584 </message> 8585 <message> 8586 <location filename="../VBoxManageList.cpp" line="928"/> 8344 <location filename="../VBoxManageList.cpp" line="920"/> 8345 <source>Channel: %s 8346 </source> 8347 <translation type="unfinished"></translation> 8348 </message> 8349 <message> 8350 <location filename="../VBoxManageList.cpp" line="922"/> 8351 <source>Repository: %ls 8352 </source> 8353 <translation type="unfinished"></translation> 8354 </message> 8355 <message> 8356 <location filename="../VBoxManageList.cpp" line="952"/> 8587 8357 <source> minLeaseTime: default 8588 8358 </source> … … 8590 8360 </message> 8591 8361 <message> 8592 <location filename="../VBoxManageList.cpp" line="9 30"/>8362 <location filename="../VBoxManageList.cpp" line="954"/> 8593 8363 <source> minLeaseTime: %u sec 8594 8364 </source> … … 8596 8366 </message> 8597 8367 <message> 8598 <location filename="../VBoxManageList.cpp" line="9 35"/>8368 <location filename="../VBoxManageList.cpp" line="959"/> 8599 8369 <source> defaultLeaseTime: default 8600 8370 </source> … … 8602 8372 </message> 8603 8373 <message> 8604 <location filename="../VBoxManageList.cpp" line="9 37"/>8374 <location filename="../VBoxManageList.cpp" line="961"/> 8605 8375 <source> defaultLeaseTime: %u sec 8606 8376 </source> … … 8608 8378 </message> 8609 8379 <message> 8610 <location filename="../VBoxManageList.cpp" line="9 42"/>8380 <location filename="../VBoxManageList.cpp" line="966"/> 8611 8381 <source> maxLeaseTime: default 8612 8382 </source> … … 8614 8384 </message> 8615 8385 <message> 8616 <location filename="../VBoxManageList.cpp" line="9 44"/>8386 <location filename="../VBoxManageList.cpp" line="968"/> 8617 8387 <source> maxLeaseTime: %u sec 8618 8388 </source> … … 8620 8390 </message> 8621 8391 <message> 8622 <location filename="../VBoxManageList.cpp" line="9 50"/>8392 <location filename="../VBoxManageList.cpp" line="974"/> 8623 8393 <source> Forced options: %Rhrc 8624 8394 </source> … … 8626 8396 </message> 8627 8397 <message> 8628 <location filename="../VBoxManageList.cpp" line="9 52"/>8398 <location filename="../VBoxManageList.cpp" line="976"/> 8629 8399 <source> Forced options: None 8630 8400 </source> … … 8632 8402 </message> 8633 8403 <message> 8634 <location filename="../VBoxManageList.cpp" line="9 55"/>8404 <location filename="../VBoxManageList.cpp" line="979"/> 8635 8405 <source> Forced options: </source> 8636 8406 <translation type="unfinished"></translation> 8637 8407 </message> 8638 8408 <message> 8639 <location filename="../VBoxManageList.cpp" line="9 63"/>8409 <location filename="../VBoxManageList.cpp" line="987"/> 8640 8410 <source> Suppressed opt.s: %Rhrc 8641 8411 </source> … … 8643 8413 </message> 8644 8414 <message> 8645 <location filename="../VBoxManageList.cpp" line="9 65"/>8415 <location filename="../VBoxManageList.cpp" line="989"/> 8646 8416 <source> Suppressed opts.: None 8647 8417 </source> … … 8649 8419 </message> 8650 8420 <message> 8651 <location filename="../VBoxManageList.cpp" line="9 68"/>8421 <location filename="../VBoxManageList.cpp" line="992"/> 8652 8422 <source> Suppressed opts.: </source> 8653 8423 <translation type="unfinished"></translation> 8654 8424 </message> 8655 8425 <message> 8656 <location filename="../VBoxManageList.cpp" line=" 980"/>8426 <location filename="../VBoxManageList.cpp" line="1004"/> 8657 8427 <source> DHCP options: %Rhrc 8658 8428 </source> … … 8660 8430 </message> 8661 8431 <message> 8662 <location filename="../VBoxManageList.cpp" line=" 983"/>8432 <location filename="../VBoxManageList.cpp" line="1007"/> 8663 8433 <source> DHCP options: Return count mismatch: %zu, %zu, %zu 8664 8434 </source> … … 8666 8436 </message> 8667 8437 <message> 8668 <location filename="../VBoxManageList.cpp" line=" 988"/>8438 <location filename="../VBoxManageList.cpp" line="1012"/> 8669 8439 <source> DHCP options: None 8670 8440 </source> … … 8672 8442 </message> 8673 8443 <message> 8674 <location filename="../VBoxManageList.cpp" line=" 995"/>8444 <location filename="../VBoxManageList.cpp" line="1019"/> 8675 8445 <source> %3d/legacy: %ls 8676 8446 </source> … … 8678 8448 </message> 8679 8449 <message> 8680 <location filename="../VBoxManageList.cpp" line="1029"/> 8681 <location filename="../VBoxManageList.cpp" line="2192"/> 8450 <location filename="../VBoxManageList.cpp" line="1053"/> 8682 8451 <source>NetworkName: %ls 8683 8452 </source> … … 8685 8454 </message> 8686 8455 <message> 8687 <location filename="../VBoxManageList.cpp" line="10 35"/>8456 <location filename="../VBoxManageList.cpp" line="1059"/> 8688 8457 <source>LowerIPAddress: %ls 8689 8458 </source> … … 8691 8460 </message> 8692 8461 <message> 8693 <location filename="../VBoxManageList.cpp" line="10 38"/>8462 <location filename="../VBoxManageList.cpp" line="1062"/> 8694 8463 <source>UpperIPAddress: %ls 8695 8464 </source> … … 8697 8466 </message> 8698 8467 <message> 8699 <location filename="../VBoxManageList.cpp" line="10 41"/>8468 <location filename="../VBoxManageList.cpp" line="1065"/> 8700 8469 <source>NetworkMask: %ls 8701 8470 </source> … … 8703 8472 </message> 8704 8473 <message> 8705 <location filename="../VBoxManageList.cpp" line="1045"/> 8706 <location filename="../VBoxManageList.cpp" line="2208"/> 8474 <location filename="../VBoxManageList.cpp" line="1069"/> 8707 8475 <source>Enabled: %s 8708 8476 </source> … … 8710 8478 </message> 8711 8479 <message> 8712 <location filename="../VBoxManageList.cpp" line="10 48"/>8480 <location filename="../VBoxManageList.cpp" line="1072"/> 8713 8481 <source>Global Configuration: 8714 8482 </source> … … 8716 8484 </message> 8717 8485 <message> 8718 <location filename="../VBoxManageList.cpp" line="10 63"/>8486 <location filename="../VBoxManageList.cpp" line="1087"/> 8719 8487 <source>Groups: %Rrc 8720 8488 </source> … … 8722 8490 </message> 8723 8491 <message> 8724 <location filename="../VBoxManageList.cpp" line="10 65"/>8492 <location filename="../VBoxManageList.cpp" line="1089"/> 8725 8493 <source>Groups: None 8726 8494 </source> … … 8728 8496 </message> 8729 8497 <message> 8730 <location filename="../VBoxManageList.cpp" line="10 71"/>8498 <location filename="../VBoxManageList.cpp" line="1095"/> 8731 8499 <source>Group: %ls 8732 8500 </source> … … 8734 8502 </message> 8735 8503 <message> 8736 <location filename="../VBoxManageList.cpp" line="1 076"/>8504 <location filename="../VBoxManageList.cpp" line="1100"/> 8737 8505 <source> Conditions: %Rhrc 8738 8506 </source> … … 8740 8508 </message> 8741 8509 <message> 8742 <location filename="../VBoxManageList.cpp" line="1 078"/>8510 <location filename="../VBoxManageList.cpp" line="1102"/> 8743 8511 <source> Conditions: None 8744 8512 </source> … … 8746 8514 </message> 8747 8515 <message> 8748 <location filename="../VBoxManageList.cpp" line="1 088"/>8516 <location filename="../VBoxManageList.cpp" line="1112"/> 8749 8517 <source> Conditions: %s %s %ls 8750 8518 </source> … … 8752 8520 </message> 8753 8521 <message> 8754 <location filename="../VBoxManageList.cpp" line="1 089"/>8522 <location filename="../VBoxManageList.cpp" line="1113"/> 8755 8523 <source>include</source> 8756 8524 <translation type="unfinished"></translation> 8757 8525 </message> 8758 8526 <message> 8759 <location filename="../VBoxManageList.cpp" line="1 089"/>8527 <location filename="../VBoxManageList.cpp" line="1113"/> 8760 8528 <source>exclude</source> 8761 8529 <translation type="unfinished"></translation> 8762 8530 </message> 8763 8531 <message> 8764 <location filename="../VBoxManageList.cpp" line="11 11"/>8532 <location filename="../VBoxManageList.cpp" line="1135"/> 8765 8533 <source>Individual Configs: %Rrc 8766 8534 </source> … … 8768 8536 </message> 8769 8537 <message> 8770 <location filename="../VBoxManageList.cpp" line="11 13"/>8538 <location filename="../VBoxManageList.cpp" line="1137"/> 8771 8539 <source>Individual Configs: None 8772 8540 </source> … … 8774 8542 </message> 8775 8543 <message> 8776 <location filename="../VBoxManageList.cpp" line="11 24"/>8544 <location filename="../VBoxManageList.cpp" line="1148"/> 8777 8545 <source>Individual Config: MAC %ls 8778 8546 </source> … … 8780 8548 </message> 8781 8549 <message> 8782 <location filename="../VBoxManageList.cpp" line="11 34"/>8550 <location filename="../VBoxManageList.cpp" line="1158"/> 8783 8551 <source>Individual Config: VM NIC: %ls slot %u, MAC %ls 8784 8552 </source> … … 8786 8554 </message> 8787 8555 <message> 8788 <location filename="../VBoxManageList.cpp" line="11 37"/>8556 <location filename="../VBoxManageList.cpp" line="1161"/> 8789 8557 <source>Individual Config: VM NIC: %ls slot %u, MAC %Rhrc 8790 8558 </source> … … 8792 8560 </message> 8793 8561 <message> 8794 <location filename="../VBoxManageList.cpp" line="11 42"/>8562 <location filename="../VBoxManageList.cpp" line="1166"/> 8795 8563 <source> Fixed Address: %ls 8796 8564 </source> … … 8798 8566 </message> 8799 8567 <message> 8800 <location filename="../VBoxManageList.cpp" line="11 44"/>8568 <location filename="../VBoxManageList.cpp" line="1168"/> 8801 8569 <source> Fixed Address: dynamic 8802 8570 </source> … … 8804 8572 </message> 8805 8573 <message> 8806 <location filename="../VBoxManageList.cpp" line="11 70"/>8574 <location filename="../VBoxManageList.cpp" line="1194"/> 8807 8575 <source>Extension Packs: %u 8808 8576 </source> … … 8810 8578 </message> 8811 8579 <message> 8812 <location filename="../VBoxManageList.cpp" line="1 196"/>8580 <location filename="../VBoxManageList.cpp" line="1220"/> 8813 8581 <source>Pack no.%2zu: %ls 8814 8582 Version: %ls … … 8823 8591 </message> 8824 8592 <message> 8825 <location filename="../VBoxManageList.cpp" line="12 52"/>8593 <location filename="../VBoxManageList.cpp" line="1276"/> 8826 8594 <source>Video Input Devices: %u 8827 8595 </source> … … 8829 8597 </message> 8830 8598 <message numerus="yes"> 8831 <location filename="../VBoxManageList.cpp" line="1 281"/>8599 <location filename="../VBoxManageList.cpp" line="1305"/> 8832 8600 <source>Supported %d screen shot formats: 8833 8601 </source> … … 8837 8605 </message> 8838 8606 <message numerus="yes"> 8839 <location filename="../VBoxManageList.cpp" line="13 10"/>8607 <location filename="../VBoxManageList.cpp" line="1334"/> 8840 8608 <source>Supported %d cloud providers: 8841 8609 </source> … … 8845 8613 </message> 8846 8614 <message> 8847 <location filename="../VBoxManageList.cpp" line="13 18"/>8615 <location filename="../VBoxManageList.cpp" line="1342"/> 8848 8616 <source>Short Name: %ls 8849 8617 </source> … … 8851 8619 </message> 8852 8620 <message> 8853 <location filename="../VBoxManageList.cpp" line="13 54"/>8621 <location filename="../VBoxManageList.cpp" line="1378"/> 8854 8622 <source>Name: %ls 8855 8623 </source> … … 8857 8625 </message> 8858 8626 <message> 8859 <location filename="../VBoxManageList.cpp" line="13 57"/>8627 <location filename="../VBoxManageList.cpp" line="1381"/> 8860 8628 <source>Provider GUID: %ls 8861 8629 </source> … … 8863 8631 </message> 8864 8632 <message> 8865 <location filename="../VBoxManageList.cpp" line="13 73"/>8633 <location filename="../VBoxManageList.cpp" line="1397"/> 8866 8634 <source>Property: </source> 8867 8635 <translation type="unfinished"></translation> 8868 8636 </message> 8869 8637 <message> 8870 <location filename="../VBoxManageList.cpp" line="14 11"/>8638 <location filename="../VBoxManageList.cpp" line="1435"/> 8871 8639 <source>CPU Profile #%02zu: 8872 8640 </source> … … 8874 8642 </message> 8875 8643 <message> 8876 <location filename="../VBoxManageList.cpp" line="14 12"/>8644 <location filename="../VBoxManageList.cpp" line="1436"/> 8877 8645 <source> Architecture: %s 8878 8646 </source> … … 8880 8648 </message> 8881 8649 <message> 8882 <location filename="../VBoxManageList.cpp" line="14 13"/>8650 <location filename="../VBoxManageList.cpp" line="1437"/> 8883 8651 <source> Name: %ls 8884 8652 </source> … … 8886 8654 </message> 8887 8655 <message> 8888 <location filename="../VBoxManageList.cpp" line="14 15"/>8656 <location filename="../VBoxManageList.cpp" line="1439"/> 8889 8657 <source> Full Name: %ls 8890 8658 </source> … … 8892 8660 </message> 8893 8661 <message> 8894 <location filename="../VBoxManageList.cpp" line="16 65"/>8662 <location filename="../VBoxManageList.cpp" line="1689"/> 8895 8663 <source>%sDrive: %ls 8896 8664 </source> … … 8898 8666 </message> 8899 8667 <message> 8900 <location filename="../VBoxManageList.cpp" line="16 67"/>8668 <location filename="../VBoxManageList.cpp" line="1691"/> 8901 8669 <source>%sDrive: %Rhrc 8902 8670 </source> … … 8904 8672 </message> 8905 8673 <message> 8906 <location filename="../VBoxManageList.cpp" line="16 72"/>8674 <location filename="../VBoxManageList.cpp" line="1696"/> 8907 8675 <source>Model: %Rhrc 8908 8676 </source> … … 8910 8678 </message> 8911 8679 <message> 8912 <location filename="../VBoxManageList.cpp" line="16 74"/>8680 <location filename="../VBoxManageList.cpp" line="1698"/> 8913 8681 <source>Model: "%ls" 8914 8682 </source> … … 8916 8684 </message> 8917 8685 <message> 8918 <location filename="../VBoxManageList.cpp" line="1 676"/>8686 <location filename="../VBoxManageList.cpp" line="1700"/> 8919 8687 <source>Model: unknown/inaccessible 8920 8688 </source> … … 8922 8690 </message> 8923 8691 <message> 8924 <location filename="../VBoxManageList.cpp" line="1 686"/>8692 <location filename="../VBoxManageList.cpp" line="1710"/> 8925 8693 <source>Further disk and partitioning information is not available for drive "%ls". (E_ACCESSDENIED) 8926 8694 </source> … … 8928 8696 </message> 8929 8697 <message numerus="yes"> 8930 <location filename="../VBoxManageList.cpp" line="1 699"/>8698 <location filename="../VBoxManageList.cpp" line="1723"/> 8931 8699 <source>Size: %llu bytes (%Rhcb) 8932 8700 </source> … … 8936 8704 </message> 8937 8705 <message> 8938 <location filename="../VBoxManageList.cpp" line="17 01"/>8706 <location filename="../VBoxManageList.cpp" line="1725"/> 8939 8707 <source>Size: %Rhcb 8940 8708 </source> … … 8942 8710 </message> 8943 8711 <message> 8944 <location filename="../VBoxManageList.cpp" line="17 04"/>8712 <location filename="../VBoxManageList.cpp" line="1728"/> 8945 8713 <source>Size: %Rhrc 8946 8714 </source> … … 8948 8716 </message> 8949 8717 <message numerus="yes"> 8950 <location filename="../VBoxManageList.cpp" line="17 11"/>8718 <location filename="../VBoxManageList.cpp" line="1735"/> 8951 8719 <source>Sector Size: %u bytes 8952 8720 </source> … … 8956 8724 </message> 8957 8725 <message> 8958 <location filename="../VBoxManageList.cpp" line="17 14"/>8726 <location filename="../VBoxManageList.cpp" line="1738"/> 8959 8727 <source>Sector Size: %Rhrc 8960 8728 </source> … … 8962 8730 </message> 8963 8731 <message> 8964 <location filename="../VBoxManageList.cpp" line="17 21"/>8732 <location filename="../VBoxManageList.cpp" line="1745"/> 8965 8733 <source>Scheme: %s 8966 8734 </source> … … 8968 8736 </message> 8969 8737 <message> 8970 <location filename="../VBoxManageList.cpp" line="17 24"/>8738 <location filename="../VBoxManageList.cpp" line="1748"/> 8971 8739 <source>Scheme: %Rhrc 8972 8740 </source> … … 8974 8742 </message> 8975 8743 <message> 8976 <location filename="../VBoxManageList.cpp" line="17 32"/>8744 <location filename="../VBoxManageList.cpp" line="1756"/> 8977 8745 <source>Partitions: %Rhrc 8978 8746 </source> … … 8980 8748 </message> 8981 8749 <message> 8982 <location filename="../VBoxManageList.cpp" line="17 36"/>8750 <location filename="../VBoxManageList.cpp" line="1760"/> 8983 8751 <source>Partitions: None (or not able to grok them). 8984 8752 </source> … … 8986 8754 </message> 8987 8755 <message> 8988 <location filename="../VBoxManageList.cpp" line="17 40"/>8756 <location filename="../VBoxManageList.cpp" line="1764"/> 8989 8757 <source>Partitions: First Last 8990 8758 ## Type Byte Size Byte Offset Cyl/Head/Sec Cyl/Head/Sec Active … … 8993 8761 </message> 8994 8762 <message> 8995 <location filename="../VBoxManageList.cpp" line="17 43"/>8763 <location filename="../VBoxManageList.cpp" line="1767"/> 8996 8764 <source>Partitions: First Last 8997 8765 ## Type Size Start Cyl/Head/Sec Cyl/Head/Sec Active … … 9000 8768 </message> 9001 8769 <message> 9002 <location filename="../VBoxManageList.cpp" line="18 02"/>8770 <location filename="../VBoxManageList.cpp" line="1826"/> 9003 8771 <source>Partitions: 9004 8772 ## %-*s Uuid Byte Size Byte Offset Active Name … … 9007 8775 </message> 9008 8776 <message> 9009 <location filename="../VBoxManageList.cpp" line="18 05"/>9010 <location filename="../VBoxManageList.cpp" line="18 10"/>8777 <location filename="../VBoxManageList.cpp" line="1829"/> 8778 <location filename="../VBoxManageList.cpp" line="1834"/> 9011 8779 <source>Type</source> 9012 8780 <translation type="unfinished"></translation> 9013 8781 </message> 9014 8782 <message> 9015 <location filename="../VBoxManageList.cpp" line="18 07"/>8783 <location filename="../VBoxManageList.cpp" line="1831"/> 9016 8784 <source>Partitions: 9017 8785 ## %-*s Uuid Size Start Active Name … … 9020 8788 </message> 9021 8789 <message> 9022 <location filename="../VBoxManageList.cpp" line="20 16"/>8790 <location filename="../VBoxManageList.cpp" line="2043"/> 9023 8791 <source>Description: %ls 9024 8792 </source> … … 9026 8794 </message> 9027 8795 <message> 9028 <location filename="../VBoxManageList.cpp" line="20 19"/>8796 <location filename="../VBoxManageList.cpp" line="2046"/> 9029 8797 <source>Family ID: %ls 9030 8798 </source> … … 9032 8800 </message> 9033 8801 <message> 9034 <location filename="../VBoxManageList.cpp" line="20 22"/>8802 <location filename="../VBoxManageList.cpp" line="2049"/> 9035 8803 <source>Family Desc: %ls 9036 8804 </source> … … 9038 8806 </message> 9039 8807 <message> 9040 <location filename="../VBoxManageList.cpp" line="20 25"/>8808 <location filename="../VBoxManageList.cpp" line="2052"/> 9041 8809 <source>64 bit: %RTbool 9042 8810 </source> … … 9044 8812 </message> 9045 8813 <message> 9046 <location filename="../VBoxManageList.cpp" line="20 48"/>9047 <location filename="../VBoxManageList.cpp" line="20 70"/>8814 <location filename="../VBoxManageList.cpp" line="2075"/> 8815 <location filename="../VBoxManageList.cpp" line="2097"/> 9048 8816 <source>Name: %ls 9049 8817 … … 9052 8820 </message> 9053 8821 <message> 9054 <location filename="../VBoxManageList.cpp" line="21 07"/>8822 <location filename="../VBoxManageList.cpp" line="2134"/> 9055 8823 <source>Host CPUIDs: 9056 8824 … … 9060 8828 </message> 9061 8829 <message> 9062 <location filename="../VBoxManageList.cpp" line="21 39"/>8830 <location filename="../VBoxManageList.cpp" line="2166"/> 9063 8831 <source>base</source> 9064 8832 <translation type="unfinished"></translation> 9065 8833 </message> 9066 8834 <message> 9067 <location filename="../VBoxManageList.cpp" line="2198"/> 9068 <source>Network: %ls 9069 </source> 9070 <translation type="unfinished"></translation> 9071 </message> 9072 <message> 9073 <location filename="../VBoxManageList.cpp" line="2201"/> 9074 <source>IPv6 Enabled: %s 9075 </source> 9076 <translation type="unfinished"></translation> 9077 </message> 9078 <message> 9079 <location filename="../VBoxManageList.cpp" line="2204"/> 9080 <source>IPv6 Prefix: %ls 9081 </source> 9082 <translation type="unfinished"></translation> 9083 </message> 9084 <message> 9085 <location filename="../VBoxManageList.cpp" line="2206"/> 9086 <source>DHCP Enabled: %s 9087 </source> 9088 <translation type="unfinished"></translation> 9089 </message> 9090 <message> 9091 <location filename="../VBoxManageList.cpp" line="2222"/> 9092 <source>Port-forwarding (ipv4) 9093 </source> 9094 <translation type="unfinished"></translation> 9095 </message> 9096 <message> 9097 <location filename="../VBoxManageList.cpp" line="2226"/> 9098 <source>Port-forwarding (ipv6) 9099 </source> 9100 <translation type="unfinished"></translation> 9101 </message> 9102 <message> 9103 <location filename="../VBoxManageList.cpp" line="2230"/> 9104 <source>loopback mappings (ipv4) 9105 </source> 9106 <translation type="unfinished"></translation> 9107 </message> 9108 <message> 9109 <location filename="../VBoxManageList.cpp" line="2402"/> 8835 <location filename="../VBoxManageList.cpp" line="2388"/> 9110 8836 <source>Unknown subcommand "%s".</source> 9111 8837 <translation type="unfinished"></translation> 9112 8838 </message> 9113 8839 <message> 9114 <location filename="../VBoxManageList.cpp" line="2 413"/>8840 <location filename="../VBoxManageList.cpp" line="2399"/> 9115 8841 <source>Missing subcommand for "list" command. 9116 8842 </source> … … 9121 8847 <name>Metrics</name> 9122 8848 <message> 9123 <location filename="../VBoxManageMetrics.cpp" line="9 2"/>8849 <location filename="../VBoxManageMetrics.cpp" line="90"/> 9124 8850 <source>Invalid machine name: '%s'</source> 9125 8851 <translation type="unfinished"></translation> 9126 8852 </message> 9127 8853 <message> 9128 <location filename="../VBoxManageMetrics.cpp" line="1 30"/>8854 <location filename="../VBoxManageMetrics.cpp" line="128"/> 9129 8855 <source>host</source> 9130 8856 <translation type="unfinished"></translation> 9131 8857 </message> 9132 8858 <message> 9133 <location filename="../VBoxManageMetrics.cpp" line="1 40"/>8859 <location filename="../VBoxManageMetrics.cpp" line="138"/> 9134 8860 <source>unknown</source> 9135 8861 <translation type="unfinished"></translation> 9136 8862 </message> 9137 8863 <message> 9138 <location filename="../VBoxManageMetrics.cpp" line="1 51"/>8864 <location filename="../VBoxManageMetrics.cpp" line="149"/> 9139 8865 <source>The following metrics were modified: 9140 8866 … … 9145 8871 </message> 9146 8872 <message> 9147 <location filename="../VBoxManageMetrics.cpp" line="16 5"/>8873 <location filename="../VBoxManageMetrics.cpp" line="163"/> 9148 8874 <source>No metrics match the specified filter!</source> 9149 8875 <translation type="unfinished"></translation> … … 9157 8883 </message> 9158 8884 <message> 9159 <location filename="../VBoxManageMetrics.cpp" line="2 38"/>9160 <location filename="../VBoxManageMetrics.cpp" line="24 7"/>9161 <location filename="../VBoxManageMetrics.cpp" line="4 05"/>9162 <location filename="../VBoxManageMetrics.cpp" line="4 14"/>8885 <location filename="../VBoxManageMetrics.cpp" line="240"/> 8886 <location filename="../VBoxManageMetrics.cpp" line="249"/> 8887 <location filename="../VBoxManageMetrics.cpp" line="412"/> 8888 <location filename="../VBoxManageMetrics.cpp" line="421"/> 9163 8889 <source>Missing argument to '%s'</source> 9164 8890 <translation type="unfinished"></translation> 9165 8891 </message> 9166 8892 <message> 9167 <location filename="../VBoxManageMetrics.cpp" line="24 1"/>9168 <location filename="../VBoxManageMetrics.cpp" line="4 08"/>8893 <location filename="../VBoxManageMetrics.cpp" line="243"/> 8894 <location filename="../VBoxManageMetrics.cpp" line="415"/> 9169 8895 <source>Invalid value for 'period' parameter: '%s'</source> 9170 8896 <translation type="unfinished"></translation> 9171 8897 </message> 9172 8898 <message> 9173 <location filename="../VBoxManageMetrics.cpp" line="25 0"/>9174 <location filename="../VBoxManageMetrics.cpp" line="4 17"/>8899 <location filename="../VBoxManageMetrics.cpp" line="252"/> 8900 <location filename="../VBoxManageMetrics.cpp" line="424"/> 9175 8901 <source>Invalid value for 'samples' parameter: '%s'</source> 9176 8902 <translation type="unfinished"></translation> 9177 8903 </message> 9178 8904 <message> 9179 <location filename="../VBoxManageMetrics.cpp" line="31 5"/>8905 <location filename="../VBoxManageMetrics.cpp" line="319"/> 9180 8906 <source>Object Metric Values 9181 8907 --------------- ---------------------------------------- -------------------------------------------- … … 9184 8910 </message> 9185 8911 <message> 9186 <location filename="../VBoxManageMetrics.cpp" line="4 76"/>8912 <location filename="../VBoxManageMetrics.cpp" line="483"/> 9187 8913 <source>The background process holding collected metrics will shutdown 9188 8914 in few seconds, discarding all collected data and parameters.</source> … … 9190 8916 </message> 9191 8917 <message> 9192 <location filename="../VBoxManageMetrics.cpp" line="4 85"/>8918 <location filename="../VBoxManageMetrics.cpp" line="492"/> 9193 8919 <source>Time stamp Object Metric Value 9194 8920 </source> … … 9196 8922 </message> 9197 8923 <message> 9198 <location filename="../VBoxManageMetrics.cpp" line="6 28"/>8924 <location filename="../VBoxManageMetrics.cpp" line="639"/> 9199 8925 <source>Subcommand missing</source> 9200 8926 <translation type="unfinished"></translation> 9201 8927 </message> 9202 8928 <message> 9203 <location filename="../VBoxManageMetrics.cpp" line="6 47"/>8929 <location filename="../VBoxManageMetrics.cpp" line="658"/> 9204 8930 <source>Invalid subcommand '%s'</source> 9205 8931 <translation type="unfinished"></translation> … … 9209 8935 <name>Misc</name> 9210 8936 <message> 9211 <location filename="../VBoxManageMisc.cpp" line="6 8"/>9212 <location filename="../VBoxManageMisc.cpp" line="76 3"/>9213 <location filename="../VBoxManageMisc.cpp" line="7 92"/>9214 <location filename="../VBoxManageMisc.cpp" line="82 7"/>9215 <location filename="../VBoxManageMisc.cpp" line="95 3"/>8937 <location filename="../VBoxManageMisc.cpp" line="66"/> 8938 <location filename="../VBoxManageMisc.cpp" line="760"/> 8939 <location filename="../VBoxManageMisc.cpp" line="789"/> 8940 <location filename="../VBoxManageMisc.cpp" line="824"/> 8941 <location filename="../VBoxManageMisc.cpp" line="950"/> 9216 8942 <source>Incorrect number of parameters</source> 9217 8943 <translation type="unfinished"></translation> 9218 8944 </message> 9219 8945 <message> 9220 <location filename="../VBoxManageMisc.cpp" line=" 81"/>9221 <location filename="../VBoxManageMisc.cpp" line=" 802"/>8946 <location filename="../VBoxManageMisc.cpp" line="79"/> 8947 <location filename="../VBoxManageMisc.cpp" line="799"/> 9222 8948 <source>Cannot convert filename "%s" to absolute path: %Rrc</source> 9223 8949 <translation type="unfinished"></translation> 9224 8950 </message> 9225 8951 <message> 9226 <location filename="../VBoxManageMisc.cpp" line="12 7"/>9227 <location filename="../VBoxManageMisc.cpp" line="35 6"/>9228 <location filename="../VBoxManageMisc.cpp" line="53 2"/>9229 <location filename="../VBoxManageMisc.cpp" line="107 8"/>8952 <location filename="../VBoxManageMisc.cpp" line="125"/> 8953 <location filename="../VBoxManageMisc.cpp" line="354"/> 8954 <location filename="../VBoxManageMisc.cpp" line="530"/> 8955 <location filename="../VBoxManageMisc.cpp" line="1075"/> 9230 8956 <source>Invalid parameter '%s'</source> 9231 8957 <translation type="unfinished"></translation> 9232 8958 </message> 9233 8959 <message> 9234 <location filename="../VBoxManageMisc.cpp" line="13 4"/>9235 <location filename="../VBoxManageMisc.cpp" line="68 6"/>8960 <location filename="../VBoxManageMisc.cpp" line="132"/> 8961 <location filename="../VBoxManageMisc.cpp" line="683"/> 9236 8962 <source>Invalid option -%c</source> 9237 8963 <translation type="unfinished"></translation> 9238 8964 </message> 9239 8965 <message> 9240 <location filename="../VBoxManageMisc.cpp" line="135"/> 8966 <location filename="../VBoxManageMisc.cpp" line="133"/> 8967 <location filename="../VBoxManageMisc.cpp" line="685"/> 8968 <source>Invalid option case %i</source> 8969 <translation type="unfinished"></translation> 8970 </message> 8971 <message> 8972 <location filename="../VBoxManageMisc.cpp" line="136"/> 9241 8973 <location filename="../VBoxManageMisc.cpp" line="688"/> 9242 <source>Invalid option case %i</source>9243 <translation type="unfinished"></translation>9244 </message>9245 <message>9246 <location filename="../VBoxManageMisc.cpp" line="138"/>9247 <location filename="../VBoxManageMisc.cpp" line="691"/>9248 8974 <source>unknown option: %s 9249 8975 </source> … … 9251 8977 </message> 9252 8978 <message> 9253 <location filename="../VBoxManageMisc.cpp" line="1 41"/>9254 <location filename="../VBoxManageMisc.cpp" line="69 5"/>8979 <location filename="../VBoxManageMisc.cpp" line="139"/> 8980 <location filename="../VBoxManageMisc.cpp" line="692"/> 9255 8981 <source>error: %Rrs</source> 9256 8982 <translation type="unfinished"></translation> 9257 8983 </message> 9258 8984 <message> 9259 <location filename="../VBoxManageMisc.cpp" line="14 7"/>9260 <location filename="../VBoxManageMisc.cpp" line="37 2"/>9261 <location filename="../VBoxManageMisc.cpp" line="54 2"/>8985 <location filename="../VBoxManageMisc.cpp" line="145"/> 8986 <location filename="../VBoxManageMisc.cpp" line="370"/> 8987 <location filename="../VBoxManageMisc.cpp" line="540"/> 9262 8988 <source>VM name required</source> 9263 8989 <translation type="unfinished"></translation> 9264 8990 </message> 9265 8991 <message> 9266 <location filename="../VBoxManageMisc.cpp" line="16 4"/>8992 <location filename="../VBoxManageMisc.cpp" line="162"/> 9267 8993 <source>Machine delete failed</source> 9268 8994 <translation type="unfinished"></translation> 9269 8995 </message> 9270 8996 <message> 9271 <location filename="../VBoxManageMisc.cpp" line="25 8"/>8997 <location filename="../VBoxManageMisc.cpp" line="256"/> 9272 8998 <source>Parameter --name is required</source> 9273 8999 <translation type="unfinished"></translation> 9274 9000 </message> 9275 9001 <message> 9276 <location filename="../VBoxManageMisc.cpp" line=" 300"/>9002 <location filename="../VBoxManageMisc.cpp" line="298"/> 9277 9003 <source>Virtual machine '%ls' is created%s. 9278 9004 UUID: %s … … 9282 9008 </message> 9283 9009 <message> 9284 <location filename="../VBoxManageMisc.cpp" line="30 3"/>9010 <location filename="../VBoxManageMisc.cpp" line="301"/> 9285 9011 <source> and registered</source> 9286 9012 <translation type="unfinished"></translation> 9287 9013 </message> 9288 9014 <message> 9289 <location filename="../VBoxManageMisc.cpp" line="34 5"/>9290 <location filename="../VBoxManageMisc.cpp" line="13 91"/>9015 <location filename="../VBoxManageMisc.cpp" line="343"/> 9016 <location filename="../VBoxManageMisc.cpp" line="1388"/> 9291 9017 <source>RTPathAbs(%s,,) failed with rc=%Rrc</source> 9292 9018 <translation type="unfinished"></translation> 9293 9019 </message> 9294 9020 <message> 9295 <location filename="../VBoxManageMisc.cpp" line="39 6"/>9021 <location filename="../VBoxManageMisc.cpp" line="394"/> 9296 9022 <source>Move VM failed</source> 9297 9023 <translation type="unfinished"></translation> 9298 9024 </message> 9299 9025 <message> 9300 <location filename="../VBoxManageMisc.cpp" line=" 401"/>9026 <location filename="../VBoxManageMisc.cpp" line="399"/> 9301 9027 <source>Machine has been successfully moved into %s 9302 9028 </source> … … 9304 9030 </message> 9305 9031 <message> 9306 <location filename="../VBoxManageMisc.cpp" line="40 2"/>9032 <location filename="../VBoxManageMisc.cpp" line="400"/> 9307 9033 <source>the same location</source> 9308 9034 <translation type="unfinished"></translation> 9309 9035 </message> 9310 9036 <message> 9311 <location filename="../VBoxManageMisc.cpp" line="51 2"/>9037 <location filename="../VBoxManageMisc.cpp" line="510"/> 9312 9038 <source>Invalid clone mode '%s' 9313 9039 </source> … … 9315 9041 </message> 9316 9042 <message> 9317 <location filename="../VBoxManageMisc.cpp" line="51 7"/>9043 <location filename="../VBoxManageMisc.cpp" line="515"/> 9318 9044 <source>Invalid clone options '%s' 9319 9045 </source> … … 9321 9047 </message> 9322 9048 <message> 9323 <location filename="../VBoxManageMisc.cpp" line="56 4"/>9049 <location filename="../VBoxManageMisc.cpp" line="562"/> 9324 9050 <source>%s Clone</source> 9325 9051 <translation type="unfinished"></translation> 9326 9052 </message> 9327 9053 <message> 9328 <location filename="../VBoxManageMisc.cpp" line="59 8"/>9054 <location filename="../VBoxManageMisc.cpp" line="596"/> 9329 9055 <source>Clone VM failed</source> 9330 9056 <translation type="unfinished"></translation> 9331 9057 </message> 9332 9058 <message> 9333 <location filename="../VBoxManageMisc.cpp" line="60 5"/>9059 <location filename="../VBoxManageMisc.cpp" line="603"/> 9334 9060 <source>Machine has been successfully cloned as "%ls" 9335 9061 </source> … … 9337 9063 </message> 9338 9064 <message> 9339 <location filename="../VBoxManageMisc.cpp" line="67 5"/>9065 <location filename="../VBoxManageMisc.cpp" line="672"/> 9340 9066 <source>Parameter to option --putenv must not contain any newline character</source> 9341 9067 <translation type="unfinished"></translation> 9342 9068 </message> 9343 9069 <message> 9344 <location filename="../VBoxManageMisc.cpp" line=" 701"/>9070 <location filename="../VBoxManageMisc.cpp" line="698"/> 9345 9071 <source>at least one VM name or uuid required</source> 9346 9072 <translation type="unfinished"></translation> 9347 9073 </message> 9348 9074 <message> 9349 <location filename="../VBoxManageMisc.cpp" line="71 9"/>9075 <location filename="../VBoxManageMisc.cpp" line="716"/> 9350 9076 <source>Waiting for VM "%s" to power on... 9351 9077 </source> … … 9353 9079 </message> 9354 9080 <message> 9355 <location filename="../VBoxManageMisc.cpp" line="73 4"/>9081 <location filename="../VBoxManageMisc.cpp" line="731"/> 9356 9082 <source>VM "%s" has been successfully started. 9357 9083 </source> … … 9359 9085 </message> 9360 9086 <message> 9361 <location filename="../VBoxManageMisc.cpp" line="84 7"/>9362 <location filename="../VBoxManageMisc.cpp" line="88 3"/>9087 <location filename="../VBoxManageMisc.cpp" line="844"/> 9088 <location filename="../VBoxManageMisc.cpp" line="880"/> 9363 9089 <source>Key: %ls, Value: %ls 9364 9090 </source> … … 9366 9092 </message> 9367 9093 <message> 9368 <location filename="../VBoxManageMisc.cpp" line="85 6"/>9369 <location filename="../VBoxManageMisc.cpp" line="8 92"/>9094 <location filename="../VBoxManageMisc.cpp" line="853"/> 9095 <location filename="../VBoxManageMisc.cpp" line="889"/> 9370 9096 <source>Value: %ls 9371 9097 </source> … … 9373 9099 </message> 9374 9100 <message> 9375 <location filename="../VBoxManageMisc.cpp" line="85 8"/>9376 <location filename="../VBoxManageMisc.cpp" line="89 4"/>9101 <location filename="../VBoxManageMisc.cpp" line="855"/> 9102 <location filename="../VBoxManageMisc.cpp" line="891"/> 9377 9103 <source>No value set! 9378 9104 </source> … … 9380 9106 </message> 9381 9107 <message> 9382 <location filename="../VBoxManageMisc.cpp" line="90 6"/>9383 <location filename="../VBoxManageMisc.cpp" line="131 8"/>9108 <location filename="../VBoxManageMisc.cpp" line="903"/> 9109 <location filename="../VBoxManageMisc.cpp" line="1315"/> 9384 9110 <source>Not enough parameters</source> 9385 9111 <translation type="unfinished"></translation> 9386 9112 </message> 9387 9113 <message> 9388 <location filename="../VBoxManageMisc.cpp" line="91 9"/>9389 <location filename="../VBoxManageMisc.cpp" line="9 41"/>9114 <location filename="../VBoxManageMisc.cpp" line="916"/> 9115 <location filename="../VBoxManageMisc.cpp" line="938"/> 9390 9116 <source>Too many parameters</source> 9391 9117 <translation type="unfinished"></translation> 9392 9118 </message> 9393 9119 <message> 9394 <location filename="../VBoxManageMisc.cpp" line="97 5"/>9120 <location filename="../VBoxManageMisc.cpp" line="972"/> 9395 9121 <source>Invalid hwvirtexclusive argument '%s'</source> 9396 9122 <translation type="unfinished"></translation> 9397 9123 </message> 9398 9124 <message> 9399 <location filename="../VBoxManageMisc.cpp" line="9 82"/>9125 <location filename="../VBoxManageMisc.cpp" line="979"/> 9400 9126 <source>Warning: 'vrdpauthlibrary' is deprecated. Use 'vrdeauthlibrary'. 9401 9127 </source> … … 9403 9129 </message> 9404 9130 <message> 9405 <location filename="../VBoxManageMisc.cpp" line="10 12"/>9131 <location filename="../VBoxManageMisc.cpp" line="1009"/> 9406 9132 <source>Error parsing Log history count '%s'</source> 9407 9133 <translation type="unfinished"></translation> 9408 9134 </message> 9409 9135 <message> 9410 <location filename="../VBoxManageMisc.cpp" line="104 7"/>9136 <location filename="../VBoxManageMisc.cpp" line="1044"/> 9411 9137 <source>Unknown proxy mode: '%s'</source> 9412 9138 <translation type="unfinished"></translation> 9413 9139 </message> 9414 9140 <message> 9415 <location filename="../VBoxManageMisc.cpp" line="11 41"/>9416 <location filename="../VBoxManageMisc.cpp" line="125 3"/>9141 <location filename="../VBoxManageMisc.cpp" line="1138"/> 9142 <location filename="../VBoxManageMisc.cpp" line="1250"/> 9417 9143 <source>Machine name is given more than once: first '%s', then '%s'</source> 9418 9144 <translation type="unfinished"></translation> 9419 9145 </message> 9420 9146 <message> 9147 <location filename="../VBoxManageMisc.cpp" line="1148"/> 9148 <location filename="../VBoxManageMisc.cpp" line="1260"/> 9149 <source>No machine was specified</source> 9150 <translation type="unfinished"></translation> 9151 </message> 9152 <message> 9421 9153 <location filename="../VBoxManageMisc.cpp" line="1151"/> 9422 <location filename="../VBoxManageMisc.cpp" line="1263"/> 9423 <source>No machine was specified</source> 9424 <translation type="unfinished"></translation> 9425 </message> 9426 <message> 9427 <location filename="../VBoxManageMisc.cpp" line="1154"/> 9428 <location filename="../VBoxManageMisc.cpp" line="1265"/> 9154 <location filename="../VBoxManageMisc.cpp" line="1262"/> 9429 9155 <source>No shared folder name (--name) was given</source> 9430 9156 <translation type="unfinished"></translation> 9431 9157 </message> 9432 9158 <message> 9433 <location filename="../VBoxManageMisc.cpp" line="115 6"/>9159 <location filename="../VBoxManageMisc.cpp" line="1153"/> 9434 9160 <source>Invalid shared folder name '%s': contains space</source> 9435 9161 <translation type="unfinished"></translation> 9436 9162 </message> 9437 9163 <message> 9438 <location filename="../VBoxManageMisc.cpp" line="115 8"/>9164 <location filename="../VBoxManageMisc.cpp" line="1155"/> 9439 9165 <source>Invalid shared folder name '%s': contains tabs</source> 9440 9166 <translation type="unfinished"></translation> 9441 9167 </message> 9442 9168 <message> 9169 <location filename="../VBoxManageMisc.cpp" line="1157"/> 9170 <source>Invalid shared folder name '%s': contains newline</source> 9171 <translation type="unfinished"></translation> 9172 </message> 9173 <message> 9443 9174 <location filename="../VBoxManageMisc.cpp" line="1160"/> 9444 <source>Invalid shared folder name '%s': contains newline</source>9445 <translation type="unfinished"></translation>9446 </message>9447 <message>9448 <location filename="../VBoxManageMisc.cpp" line="1163"/>9449 9175 <source>No host path (--hostpath) was given</source> 9450 9176 <translation type="unfinished"></translation> 9451 9177 </message> 9452 9178 <message> 9453 <location filename="../VBoxManageMisc.cpp" line="116 7"/>9179 <location filename="../VBoxManageMisc.cpp" line="1164"/> 9454 9180 <source>RTAbsPath failed on '%s': %Rrc</source> 9455 9181 <translation type="unfinished"></translation> 9456 9182 </message> 9457 9183 <message> 9458 <location filename="../VBoxManageMisc.cpp" line="11 90"/>9184 <location filename="../VBoxManageMisc.cpp" line="1187"/> 9459 9185 <source>Machine '%s' is not currently running.</source> 9460 9186 <translation type="unfinished"></translation> 9461 9187 </message> 9462 9188 <message> 9463 <location filename="../VBoxManageMisc.cpp" line="128 6"/>9189 <location filename="../VBoxManageMisc.cpp" line="1283"/> 9464 9190 <source>Machine '%s' is not currently running. 9465 9191 </source> … … 9467 9193 </message> 9468 9194 <message> 9469 <location filename="../VBoxManageMisc.cpp" line="137 7"/>9470 <location filename="../VBoxManageMisc.cpp" line="14 62"/>9195 <location filename="../VBoxManageMisc.cpp" line="1374"/> 9196 <location filename="../VBoxManageMisc.cpp" line="1459"/> 9471 9197 <source>Too many extension pack names given to "extpack uninstall"</source> 9472 9198 <translation type="unfinished"></translation> 9473 9199 </message> 9474 9200 <message> 9475 <location filename="../VBoxManageMisc.cpp" line="138 6"/>9201 <location filename="../VBoxManageMisc.cpp" line="1383"/> 9476 9202 <source>No extension pack name was given to "extpack install"</source> 9477 9203 <translation type="unfinished"></translation> 9478 9204 </message> 9479 9205 <message> 9480 <location filename="../VBoxManageMisc.cpp" line="141 5"/>9206 <location filename="../VBoxManageMisc.cpp" line="1412"/> 9481 9207 <source>License accepted. 9482 9208 </source> … … 9484 9210 </message> 9485 9211 <message> 9486 <location filename="../VBoxManageMisc.cpp" line="141 9"/>9212 <location filename="../VBoxManageMisc.cpp" line="1416"/> 9487 9213 <source>Do you agree to these license terms and conditions (y/n)? </source> 9488 9214 <translation type="unfinished"></translation> 9489 9215 </message> 9490 9216 <message> 9491 <location filename="../VBoxManageMisc.cpp" line="142 4"/>9217 <location filename="../VBoxManageMisc.cpp" line="1421"/> 9492 9218 <source>Installation of "%ls" aborted. 9493 9219 </source> … … 9495 9221 </message> 9496 9222 <message> 9497 <location filename="../VBoxManageMisc.cpp" line="142 8"/>9223 <location filename="../VBoxManageMisc.cpp" line="1425"/> 9498 9224 <source>License accepted. For batch installation add 9499 9225 --accept-license=%s … … 9504 9230 </message> 9505 9231 <message> 9506 <location filename="../VBoxManageMisc.cpp" line="143 6"/>9232 <location filename="../VBoxManageMisc.cpp" line="1433"/> 9507 9233 <source>Failed to install "%s"</source> 9508 9234 <translation type="unfinished"></translation> 9509 9235 </message> 9510 9236 <message> 9511 <location filename="../VBoxManageMisc.cpp" line="143 8"/>9237 <location filename="../VBoxManageMisc.cpp" line="1435"/> 9512 9238 <source>Successfully installed "%ls". 9513 9239 </source> … … 9515 9241 </message> 9516 9242 <message> 9517 <location filename="../VBoxManageMisc.cpp" line="14 71"/>9243 <location filename="../VBoxManageMisc.cpp" line="1468"/> 9518 9244 <source>No extension pack name was given to "extpack uninstall"</source> 9519 9245 <translation type="unfinished"></translation> 9520 9246 </message> 9521 9247 <message> 9522 <location filename="../VBoxManageMisc.cpp" line="147 7"/>9248 <location filename="../VBoxManageMisc.cpp" line="1474"/> 9523 9249 <source>Failed to uninstall "%s"</source> 9524 9250 <translation type="unfinished"></translation> 9525 9251 </message> 9526 9252 <message> 9527 <location filename="../VBoxManageMisc.cpp" line="147 9"/>9253 <location filename="../VBoxManageMisc.cpp" line="1476"/> 9528 9254 <source>Successfully uninstalled "%s". 9529 9255 </source> … … 9531 9257 </message> 9532 9258 <message> 9533 <location filename="../VBoxManageMisc.cpp" line="148 7"/>9259 <location filename="../VBoxManageMisc.cpp" line="1484"/> 9534 9260 <source>Successfully performed extension pack cleanup 9535 9261 </source> … … 9537 9263 </message> 9538 9264 <message> 9539 <location filename="../VBoxManageMisc.cpp" line="1529"/> 9540 <location filename="../VBoxManageMisc.cpp" line="1672"/> 9541 <location filename="../VBoxManageMisc.cpp" line="1711"/> 9542 <location filename="../VBoxManageMisc.cpp" line="1724"/> 9543 <location filename="../VBoxManageMisc.cpp" line="1759"/> 9544 <location filename="../VBoxManageMisc.cpp" line="1770"/> 9265 <location filename="../VBoxManageMisc.cpp" line="1526"/> 9266 <location filename="../VBoxManageMisc.cpp" line="1679"/> 9267 <location filename="../VBoxManageMisc.cpp" line="1718"/> 9268 <location filename="../VBoxManageMisc.cpp" line="1731"/> 9269 <location filename="../VBoxManageMisc.cpp" line="1766"/> 9545 9270 <location filename="../VBoxManageMisc.cpp" line="1777"/> 9271 <location filename="../VBoxManageMisc.cpp" line="1784"/> 9546 9272 <source>RTPathAbs failed on '%s': %Rrc</source> 9547 9273 <translation type="unfinished"></translation> 9548 9274 </message> 9549 9275 <message> 9550 <location filename="../VBoxManageMisc.cpp" line="154 5"/>9276 <location filename="../VBoxManageMisc.cpp" line="1542"/> 9551 9277 <source>No ISO specified</source> 9552 9278 <translation type="unfinished"></translation> 9553 9279 </message> 9554 9280 <message> 9555 <location filename="../VBoxManageMisc.cpp" line="158 2"/>9281 <location filename="../VBoxManageMisc.cpp" line="1587"/> 9556 9282 <source>Detected '%s' to be: 9557 9283 </source> … … 9559 9285 </message> 9560 9286 <message> 9561 <location filename="../VBoxManageMisc.cpp" line="158 3"/>9287 <location filename="../VBoxManageMisc.cpp" line="1588"/> 9562 9288 <source> OS TypeId = %ls 9563 9289 OS Version = %ls … … 9569 9295 </message> 9570 9296 <message> 9571 <location filename="../VBoxManageMisc.cpp" line="16 64"/>9297 <location filename="../VBoxManageMisc.cpp" line="1671"/> 9572 9298 <source>VM name/UUID given more than once!</source> 9573 9299 <translation type="unfinished"></translation> 9574 9300 </message> 9575 9301 <message> 9576 <location filename="../VBoxManageMisc.cpp" line="18 06"/>9302 <location filename="../VBoxManageMisc.cpp" line="1813"/> 9577 9303 <source>Missing VM name/UUID</source> 9578 9304 <translation type="unfinished"></translation> 9579 9305 </message> 9580 9306 <message> 9581 <location filename="../VBoxManageMisc.cpp" line="18 58"/>9307 <location filename="../VBoxManageMisc.cpp" line="1865"/> 9582 9308 <source>Machine '%ls' is currently running</source> 9583 9309 <translation type="unfinished"></translation> 9584 9310 </message> 9585 9311 <message> 9586 <location filename="../VBoxManageMisc.cpp" line="18 64"/>9312 <location filename="../VBoxManageMisc.cpp" line="1871"/> 9587 9313 <source>%s unattended installation of %s in machine '%ls' (%ls). 9588 9314 </source> … … 9590 9316 </message> 9591 9317 <message> 9592 <location filename="../VBoxManageMisc.cpp" line="18 65"/>9318 <location filename="../VBoxManageMisc.cpp" line="1872"/> 9593 9319 <source>Preparing</source> 9594 9320 <translation type="unfinished"></translation> 9595 9321 </message> 9596 9322 <message> 9597 <location filename="../VBoxManageMisc.cpp" line="18 65"/>9323 <location filename="../VBoxManageMisc.cpp" line="1872"/> 9598 9324 <source>Starting</source> 9599 9325 <translation type="unfinished"></translation> 9600 9326 </message> 9601 9327 <message> 9602 <location filename="../VBoxManageMisc.cpp" line="18 78"/>9328 <location filename="../VBoxManageMisc.cpp" line="1885"/> 9603 9329 <source>Using values: 9604 9330 </source> … … 9606 9332 </message> 9607 9333 <message> 9608 <location filename="../VBoxManageMisc.cpp" line="1885"/> 9609 <location filename="../VBoxManageMisc.cpp" line="1893"/> 9334 <location filename="../VBoxManageMisc.cpp" line="1892"/> 9335 <location filename="../VBoxManageMisc.cpp" line="1900"/> 9336 <location filename="../VBoxManageMisc.cpp" line="1952"/> 9610 9337 <source> %32s = failed: %Rhrc 9611 9338 </source> … … 9613 9340 </message> 9614 9341 <message> 9615 <location filename="../VBoxManageMisc.cpp" line="1937"/> 9342 <location filename="../VBoxManageMisc.cpp" line="1955"/> 9343 <source> %32 = failed: %Rhrc 9344 </source> 9345 <translation type="unfinished"></translation> 9346 </message> 9347 <message> 9348 <location filename="../VBoxManageMisc.cpp" line="1971"/> 9616 9349 <source>VM '%ls' (%ls) is ready to be started (e.g. VBoxManage startvm). 9617 9350 </source> … … 9619 9352 </message> 9620 9353 <message> 9621 <location filename="../VBoxManageMisc.cpp" line="19 56"/>9354 <location filename="../VBoxManageMisc.cpp" line="1990"/> 9622 9355 <source>Waiting for VM '%ls' to power on... 9623 9356 </source> … … 9625 9358 </message> 9626 9359 <message> 9627 <location filename="../VBoxManageMisc.cpp" line=" 1971"/>9360 <location filename="../VBoxManageMisc.cpp" line="2005"/> 9628 9361 <source>VM '%ls' (%ls) has been successfully started. 9629 9362 </source> … … 9631 9364 </message> 9632 9365 <message> 9633 <location filename="../VBoxManageMisc.cpp" line="21 03"/>9634 <location filename="../VBoxManageMisc.cpp" line="21 53"/>9635 <location filename="../VBoxManageMisc.cpp" line="22 13"/>9636 <location filename="../VBoxManageMisc.cpp" line="23 11"/>9366 <location filename="../VBoxManageMisc.cpp" line="2137"/> 9367 <location filename="../VBoxManageMisc.cpp" line="2187"/> 9368 <location filename="../VBoxManageMisc.cpp" line="2247"/> 9369 <location filename="../VBoxManageMisc.cpp" line="2345"/> 9637 9370 <source>Parameter --provider is required</source> 9638 9371 <translation type="unfinished"></translation> 9639 9372 </message> 9640 9373 <message> 9641 <location filename="../VBoxManageMisc.cpp" line="21 05"/>9642 <location filename="../VBoxManageMisc.cpp" line="21 55"/>9643 <location filename="../VBoxManageMisc.cpp" line="22 15"/>9644 <location filename="../VBoxManageMisc.cpp" line="23 13"/>9374 <location filename="../VBoxManageMisc.cpp" line="2139"/> 9375 <location filename="../VBoxManageMisc.cpp" line="2189"/> 9376 <location filename="../VBoxManageMisc.cpp" line="2249"/> 9377 <location filename="../VBoxManageMisc.cpp" line="2347"/> 9645 9378 <source>Parameter --profile is required</source> 9646 9379 <translation type="unfinished"></translation> 9647 9380 </message> 9648 9381 <message> 9649 <location filename="../VBoxManageMisc.cpp" line="21 34"/>9382 <location filename="../VBoxManageMisc.cpp" line="2168"/> 9650 9383 <source>Provider %ls: profile '%ls' was updated. 9651 9384 </source> … … 9653 9386 </message> 9654 9387 <message> 9655 <location filename="../VBoxManageMisc.cpp" line="2 176"/>9388 <location filename="../VBoxManageMisc.cpp" line="2210"/> 9656 9389 <source>Provider GUID: %ls 9657 9390 </source> … … 9659 9392 </message> 9660 9393 <message> 9661 <location filename="../VBoxManageMisc.cpp" line="2 192"/>9394 <location filename="../VBoxManageMisc.cpp" line="2226"/> 9662 9395 <source>Property: </source> 9663 9396 <translation type="unfinished"></translation> 9664 9397 </message> 9665 9398 <message> 9666 <location filename="../VBoxManageMisc.cpp" line="2 297"/>9399 <location filename="../VBoxManageMisc.cpp" line="2331"/> 9667 9400 <source>Provider %ls: profile '%ls' was added. 9668 9401 </source> … … 9670 9403 </message> 9671 9404 <message> 9672 <location filename="../VBoxManageMisc.cpp" line="23 40"/>9405 <location filename="../VBoxManageMisc.cpp" line="2374"/> 9673 9406 <source>Provider %ls: profile '%ls' was deleted. 9674 9407 </source> … … 9679 9412 <name>ModifyVM</name> 9680 9413 <message> 9681 <location filename="../VBoxManageModifyVM.cpp" line="46 4"/>9414 <location filename="../VBoxManageModifyVM.cpp" line="467"/> 9682 9415 <source>Warning: '--vrdp%s' is deprecated. Use '--vrde%s'. 9683 9416 </source> … … 9685 9418 </message> 9686 9419 <message> 9687 <location filename="../VBoxManageModifyVM.cpp" line="5 63"/>9420 <location filename="../VBoxManageModifyVM.cpp" line="578"/> 9688 9421 <source>Invalid %s number %u</source> 9689 9422 <translation type="unfinished"></translation> 9690 9423 </message> 9691 9424 <message> 9692 <location filename="../VBoxManageModifyVM.cpp" line=" 592"/>9693 <location filename="../VBoxManageModifyVM.cpp" line="20 26"/>9425 <location filename="../VBoxManageModifyVM.cpp" line="607"/> 9426 <location filename="../VBoxManageModifyVM.cpp" line="2089"/> 9694 9427 <source>Not enough parameters</source> 9695 9428 <translation type="unfinished"></translation> 9696 9429 </message> 9697 9430 <message> 9698 <location filename="../VBoxManageModifyVM.cpp" line="6 55"/>9431 <location filename="../VBoxManageModifyVM.cpp" line="670"/> 9699 9432 <source>Cannot open file "%s": %Rrc</source> 9700 9433 <translation type="unfinished"></translation> 9701 9434 </message> 9702 9435 <message> 9703 <location filename="../VBoxManageModifyVM.cpp" line="6 63"/>9436 <location filename="../VBoxManageModifyVM.cpp" line="678"/> 9704 9437 <source>Cannot get size of file "%s": %Rrc</source> 9705 9438 <translation type="unfinished"></translation> 9706 9439 </message> 9707 9440 <message> 9708 <location filename="../VBoxManageModifyVM.cpp" line="6 69"/>9441 <location filename="../VBoxManageModifyVM.cpp" line="684"/> 9709 9442 <source>File "%s" is bigger than 256KByte</source> 9710 9443 <translation type="unfinished"></translation> 9711 9444 </message> 9712 9445 <message> 9713 <location filename="../VBoxManageModifyVM.cpp" line="6 77"/>9446 <location filename="../VBoxManageModifyVM.cpp" line="692"/> 9714 9447 <source>Cannot read contents of file "%s": %Rrc</source> 9715 9448 <translation type="unfinished"></translation> 9716 9449 </message> 9717 9450 <message> 9718 <location filename="../VBoxManageModifyVM.cpp" line="7 28"/>9451 <location filename="../VBoxManageModifyVM.cpp" line="743"/> 9719 9452 <source>Invalid --firmware argument '%s'</source> 9720 9453 <translation type="unfinished"></translation> 9721 9454 </message> 9722 9455 <message> 9723 <location filename="../VBoxManageModifyVM.cpp" line=" 799"/>9456 <location filename="../VBoxManageModifyVM.cpp" line="814"/> 9724 9457 <source>Invalid --paravirtprovider argument '%s'</source> 9725 9458 <translation type="unfinished"></translation> 9726 9459 </message> 9727 9460 <message> 9728 <location filename="../VBoxManageModifyVM.cpp" line="8 26"/>9729 <location filename="../VBoxManageModifyVM.cpp" line="19 26"/>9730 <location filename="../VBoxManageModifyVM.cpp" line="23 19"/>9731 <location filename="../VBoxManageModifyVM.cpp" line="24 00"/>9732 <location filename="../VBoxManageModifyVM.cpp" line="2 444"/>9733 <location filename="../VBoxManageModifyVM.cpp" line="2 881"/>9734 <source>Missing or Invalid argument to '%s'</source>9735 <translation type="unfinished"></translation> 9736 </message> 9737 <message> 9738 <location filename="../VBoxManageModifyVM.cpp" line="9 70"/>9461 <location filename="../VBoxManageModifyVM.cpp" line="841"/> 9462 <location filename="../VBoxManageModifyVM.cpp" line="1989"/> 9463 <location filename="../VBoxManageModifyVM.cpp" line="2381"/> 9464 <location filename="../VBoxManageModifyVM.cpp" line="2460"/> 9465 <location filename="../VBoxManageModifyVM.cpp" line="2503"/> 9466 <location filename="../VBoxManageModifyVM.cpp" line="2939"/> 9467 <source>Missing or invalid argument to '%s'</source> 9468 <translation type="unfinished"></translation> 9469 </message> 9470 <message> 9471 <location filename="../VBoxManageModifyVM.cpp" line="985"/> 9739 9472 <source>Invalid --graphicscontroller argument '%s'</source> 9740 9473 <translation type="unfinished"></translation> 9741 9474 </message> 9742 9475 <message> 9743 <location filename="../VBoxManageModifyVM.cpp" line="10 36"/>9476 <location filename="../VBoxManageModifyVM.cpp" line="1051"/> 9744 9477 <source>Invalid --biosbootmenu argument '%s'</source> 9745 9478 <translation type="unfinished"></translation> 9746 9479 </message> 9747 9480 <message> 9748 <location filename="../VBoxManageModifyVM.cpp" line="10 60"/>9481 <location filename="../VBoxManageModifyVM.cpp" line="1075"/> 9749 9482 <source>Invalid --biosapic argument '%s'</source> 9750 9483 <translation type="unfinished"></translation> 9751 9484 </message> 9752 9485 <message> 9753 <location filename="../VBoxManageModifyVM.cpp" line="11 07"/>9486 <location filename="../VBoxManageModifyVM.cpp" line="1122"/> 9754 9487 <source>Invalid boot device '%s'</source> 9755 9488 <translation type="unfinished"></translation> 9756 9489 </message> 9757 9490 <message> 9758 <location filename="../VBoxManageModifyVM.cpp" line="1 187"/>9491 <location filename="../VBoxManageModifyVM.cpp" line="1202"/> 9759 9492 <source>Invalid --idecontroller argument '%s'</source> 9760 9493 <translation type="unfinished"></translation> 9761 9494 </message> 9762 9495 <message> 9763 <location filename="../VBoxManageModifyVM.cpp" line="12 17"/>9496 <location filename="../VBoxManageModifyVM.cpp" line="1232"/> 9764 9497 <source>Invalid --usb argument '%s'</source> 9765 9498 <translation type="unfinished"></translation> 9766 9499 </message> 9767 9500 <message> 9768 <location filename="../VBoxManageModifyVM.cpp" line="1 292"/>9501 <location filename="../VBoxManageModifyVM.cpp" line="1307"/> 9769 9502 <source>Invalid --scsitype argument '%s'</source> 9770 9503 <translation type="unfinished"></translation> 9771 9504 </message> 9772 9505 <message> 9773 <location filename="../VBoxManageModifyVM.cpp" line="13 47"/>9774 <location filename="../VBoxManageModifyVM.cpp" line="13 55"/>9506 <location filename="../VBoxManageModifyVM.cpp" line="1362"/> 9507 <location filename="../VBoxManageModifyVM.cpp" line="1370"/> 9775 9508 <source>Invalid host DVD drive name "%s"</source> 9776 9509 <translation type="unfinished"></translation> 9777 9510 </message> 9778 9511 <message> 9779 <location filename="../VBoxManageModifyVM.cpp" line="14 21"/>9512 <location filename="../VBoxManageModifyVM.cpp" line="1436"/> 9780 9513 <source>Invalid host floppy drive name "%s"</source> 9781 9514 <translation type="unfinished"></translation> 9782 9515 </message> 9783 9516 <message> 9784 <location filename="../VBoxManageModifyVM.cpp" line="15 01"/>9517 <location filename="../VBoxManageModifyVM.cpp" line="1516"/> 9785 9518 <source>Invalid --nicproperty%d argument '%s'</source> 9786 9519 <translation type="unfinished"></translation> 9787 9520 </message> 9788 9521 <message> 9789 <location filename="../VBoxManageModifyVM.cpp" line="15 08"/>9522 <location filename="../VBoxManageModifyVM.cpp" line="1523"/> 9790 9523 <source>Error: Failed to allocate memory for --nicproperty%d '%s' 9791 9524 </source> … … 9793 9526 </message> 9794 9527 <message> 9795 <location filename="../VBoxManageModifyVM.cpp" line="15 64"/>9528 <location filename="../VBoxManageModifyVM.cpp" line="1597"/> 9796 9529 <source>Invalid NIC type '%s' specified for NIC %u</source> 9797 9530 <translation type="unfinished"></translation> 9798 9531 </message> 9799 9532 <message> 9800 <location filename="../VBoxManageModifyVM.cpp" line="1 599"/>9533 <location filename="../VBoxManageModifyVM.cpp" line="1632"/> 9801 9534 <source>Invalid boot priority '%u' specfied for NIC %u</source> 9802 9535 <translation type="unfinished"></translation> 9803 9536 </message> 9804 9537 <message> 9805 <location filename="../VBoxManageModifyVM.cpp" line="16 21"/>9538 <location filename="../VBoxManageModifyVM.cpp" line="1654"/> 9806 9539 <source>Unknown promiscuous mode policy '%s'</source> 9807 9540 <translation type="unfinished"></translation> 9808 9541 </message> 9809 9542 <message> 9810 <location filename="../VBoxManageModifyVM.cpp" line="17 48"/>9543 <location filename="../VBoxManageModifyVM.cpp" line="1789"/> 9811 9544 <source>Invalid type '%s' specfied for NIC %u</source> 9812 9545 <translation type="unfinished"></translation> 9813 9546 </message> 9814 9547 <message> 9815 <location filename="../VBoxManageModifyVM.cpp" line="20 10"/>9548 <location filename="../VBoxManageModifyVM.cpp" line="2073"/> 9816 9549 <source>Invalid proto '%s' specfied for NIC %u</source> 9817 9550 <translation type="unfinished"></translation> 9818 9551 </message> 9819 9552 <message> 9820 <location filename="../VBoxManageModifyVM.cpp" line="22 28"/>9553 <location filename="../VBoxManageModifyVM.cpp" line="2291"/> 9821 9554 <source>Invalid type '%s' specfied for pointing device</source> 9822 9555 <translation type="unfinished"></translation> 9823 9556 </message> 9824 9557 <message> 9825 <location filename="../VBoxManageModifyVM.cpp" line="2 273"/>9558 <location filename="../VBoxManageModifyVM.cpp" line="2336"/> 9826 9559 <source>Invalid type '%s' specfied for keyboard</source> 9827 9560 <translation type="unfinished"></translation> 9828 9561 </message> 9829 9562 <message> 9830 <location filename="../VBoxManageModifyVM.cpp" line="2 378"/>9563 <location filename="../VBoxManageModifyVM.cpp" line="2439"/> 9831 9564 <source>Invalid argument to '%s'</source> 9832 9565 <translation type="unfinished"></translation> 9833 9566 </message> 9834 9567 <message> 9835 <location filename="../VBoxManageModifyVM.cpp" line="24 07"/>9568 <location filename="../VBoxManageModifyVM.cpp" line="2467"/> 9836 9569 <source>Error parsing UART I/O base '%s'</source> 9837 9570 <translation type="unfinished"></translation> 9838 9571 </message> 9839 9572 <message> 9840 <location filename="../VBoxManageModifyVM.cpp" line="2 451"/>9573 <location filename="../VBoxManageModifyVM.cpp" line="2510"/> 9841 9574 <source>Error parsing LPT I/O base '%s'</source> 9842 9575 <translation type="unfinished"></translation> 9843 9576 </message> 9844 9577 <message> 9845 <location filename="../VBoxManageModifyVM.cpp" line="2 480"/>9578 <location filename="../VBoxManageModifyVM.cpp" line="2539"/> 9846 9579 <source>Invalid --audiocontroller argument '%s'</source> 9847 9580 <translation type="unfinished"></translation> 9848 9581 </message> 9849 9582 <message> 9850 <location filename="../VBoxManageModifyVM.cpp" line="25 02"/>9583 <location filename="../VBoxManageModifyVM.cpp" line="2561"/> 9851 9584 <source>Invalid --audiocodec argument '%s'</source> 9852 9585 <translation type="unfinished"></translation> 9853 9586 </message> 9854 9587 <message> 9855 <location filename="../VBoxManageModifyVM.cpp" line="2 574"/>9588 <location filename="../VBoxManageModifyVM.cpp" line="2633"/> 9856 9589 <source>Invalid --audio argument '%s'</source> 9857 9590 <translation type="unfinished"></translation> 9858 9591 </message> 9859 9592 <message> 9860 <location filename="../VBoxManageModifyVM.cpp" line="26 14"/>9593 <location filename="../VBoxManageModifyVM.cpp" line="2673"/> 9861 9594 <source>Invalid --clipboard-mode argument '%s'</source> 9862 9595 <translation type="unfinished"></translation> 9863 9596 </message> 9864 9597 <message> 9865 <location filename="../VBoxManageModifyVM.cpp" line="26 34"/>9598 <location filename="../VBoxManageModifyVM.cpp" line="2693"/> 9866 9599 <source>Invalid --clipboard-file-transfers argument '%s'</source> 9867 9600 <translation type="unfinished"></translation> 9868 9601 </message> 9869 9602 <message> 9870 <location filename="../VBoxManageModifyVM.cpp" line="2 659"/>9603 <location filename="../VBoxManageModifyVM.cpp" line="2718"/> 9871 9604 <source>Invalid --draganddrop argument '%s'</source> 9872 9605 <translation type="unfinished"></translation> 9873 9606 </message> 9874 9607 <message> 9875 <location filename="../VBoxManageModifyVM.cpp" line="27 13"/>9608 <location filename="../VBoxManageModifyVM.cpp" line="2772"/> 9876 9609 <source>Invalid --vrdeproperty argument '%s'</source> 9877 9610 <translation type="unfinished"></translation> 9878 9611 </message> 9879 9612 <message> 9880 <location filename="../VBoxManageModifyVM.cpp" line="27 21"/>9613 <location filename="../VBoxManageModifyVM.cpp" line="2780"/> 9881 9614 <source>Error: Failed to allocate memory for VRDE property '%s' 9882 9615 </source> … … 9884 9617 </message> 9885 9618 <message> 9886 <location filename="../VBoxManageModifyVM.cpp" line="2 783"/>9619 <location filename="../VBoxManageModifyVM.cpp" line="2842"/> 9887 9620 <source>Invalid --vrdeauthtype argument '%s'</source> 9888 9621 <translation type="unfinished"></translation> 9889 9622 </message> 9890 9623 <message> 9891 <location filename="../VBoxManageModifyVM.cpp" line="29 02"/>9624 <location filename="../VBoxManageModifyVM.cpp" line="2960"/> 9892 9625 <source>Invalid --usbrename parameters, nothing renamed</source> 9893 9626 <translation type="unfinished"></translation> 9894 9627 </message> 9895 9628 <message> 9896 <location filename="../VBoxManageModifyVM.cpp" line="31 06"/>9629 <location filename="../VBoxManageModifyVM.cpp" line="3164"/> 9897 9630 <source>*** I/O APIC must be enabled for ICH9, enabling. *** 9898 9631 </source> … … 9900 9633 </message> 9901 9634 <message> 9902 <location filename="../VBoxManageModifyVM.cpp" line="31 12"/>9635 <location filename="../VBoxManageModifyVM.cpp" line="3170"/> 9903 9636 <source>Invalid --chipset argument '%s' (valid: piix3,ich9)</source> 9904 9637 <translation type="unfinished"></translation> 9905 9638 </message> 9906 9639 <message> 9907 <location filename="../VBoxManageModifyVM.cpp" line="31 30"/>9640 <location filename="../VBoxManageModifyVM.cpp" line="3188"/> 9908 9641 <source>Invalid --iommu argument '%s' (valid: none,amd,automatic)</source> 9909 9642 <translation type="unfinished"></translation> 9910 9643 </message> 9911 9644 <message> 9912 <location filename="../VBoxManageModifyVM.cpp" line="31 39"/>9645 <location filename="../VBoxManageModifyVM.cpp" line="3197"/> 9913 9646 <source>Warning: On Intel hosts, 'automatic' will not enable an IOMMU since the Intel IOMMU device is not supported yet. 9914 9647 </source> … … 9916 9649 </message> 9917 9650 <message> 9918 <location filename="../VBoxManageModifyVM.cpp" line="3 144"/>9651 <location filename="../VBoxManageModifyVM.cpp" line="3202"/> 9919 9652 <source>Invalid --iommu argument '%s'</source> 9920 9653 <translation type="unfinished"></translation> 9921 9654 </message> 9922 9655 <message> 9923 <location filename="../VBoxManageModifyVM.cpp" line="3 169"/>9656 <location filename="../VBoxManageModifyVM.cpp" line="3227"/> 9924 9657 <source>Invalid --tpm-type argument '%s'</source> 9925 9658 <translation type="unfinished"></translation> 9926 9659 </message> 9927 9660 <message> 9928 <location filename="../VBoxManageModifyVM.cpp" line="32 26"/>9661 <location filename="../VBoxManageModifyVM.cpp" line="3284"/> 9929 9662 <source>Invalid list of screens specified 9930 9663 </source> … … 9932 9665 </message> 9933 9666 <message> 9934 <location filename="../VBoxManageModifyVM.cpp" line="3 248"/>9667 <location filename="../VBoxManageModifyVM.cpp" line="3306"/> 9935 9668 <source>Cannot convert filename "%s" to absolute path 9936 9669 </source> … … 9938 9671 </message> 9939 9672 <message> 9940 <location filename="../VBoxManageModifyVM.cpp" line="3 278"/>9941 <location filename="../VBoxManageModifyVM.cpp" line="3 287"/>9673 <location filename="../VBoxManageModifyVM.cpp" line="3336"/> 9674 <location filename="../VBoxManageModifyVM.cpp" line="3345"/> 9942 9675 <source>Error parsing video resolution '%s' (expected <width>x<height>)</source> 9943 9676 <translation type="unfinished"></translation> 9944 9677 </message> 9945 9678 <message> 9946 <location filename="../VBoxManageModifyVM.cpp" line="3 362"/>9679 <location filename="../VBoxManageModifyVM.cpp" line="3420"/> 9947 9680 <source>Invalid --autostop-type argument '%s' (valid: disabled, savestate, poweroff, acpishutdown)</source> 9948 9681 <translation type="unfinished"></translation> 9949 9682 </message> 9950 9683 <message> 9951 <location filename="../VBoxManageModifyVM.cpp" line="3 382"/>9684 <location filename="../VBoxManageModifyVM.cpp" line="3440"/> 9952 9685 <source>Invalid --pciattach argument '%s' (valid: 'HB:HD.HF@GB:GD.GF' or just 'HB:HD.HF')</source> 9953 9686 <translation type="unfinished"></translation> 9954 9687 </message> 9955 9688 <message> 9956 <location filename="../VBoxManageModifyVM.cpp" line="34 00"/>9689 <location filename="../VBoxManageModifyVM.cpp" line="3458"/> 9957 9690 <source>Invalid --pcidetach argument '%s' (valid: 'HB:HD.HF')</source> 9958 9691 <translation type="unfinished"></translation> 9959 9692 </message> 9960 9693 <message> 9961 <location filename="../VBoxManageModifyVM.cpp" line="34 34"/>9694 <location filename="../VBoxManageModifyVM.cpp" line="3492"/> 9962 9695 <source>Invalid --vm-process-priority '%s'</source> 9963 9696 <translation type="unfinished"></translation> 9964 9697 </message> 9965 9698 <message> 9966 <location filename="../VBoxManageModifyVM.cpp" line="3 463"/>9699 <location filename="../VBoxManageModifyVM.cpp" line="3521"/> 9967 9700 <source>--testing-cfg-dword index %u is out of range: 0 thru 9</source> 9968 9701 <translation type="unfinished"></translation> … … 9972 9705 <name>Nat</name> 9973 9706 <message> 9974 <location filename="../VBoxManageNATNetwork.cpp" line="9 8"/>9707 <location filename="../VBoxManageNATNetwork.cpp" line="96"/> 9975 9708 <source>Name: %ls 9976 9709 </source> … … 9978 9711 </message> 9979 9712 <message> 9980 <location filename="../VBoxManageNATNetwork.cpp" line="1 01"/>9713 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 9981 9714 <source>Network: %ls 9982 9715 </source> … … 9984 9717 </message> 9985 9718 <message> 9986 <location filename="../VBoxManageNATNetwork.cpp" line="1 04"/>9719 <location filename="../VBoxManageNATNetwork.cpp" line="113"/> 9987 9720 <source>Gateway: %ls 9988 9721 </source> … … 9990 9723 </message> 9991 9724 <message> 9992 <location filename="../VBoxManageNATNetwork.cpp" line="107"/> 9993 <source>DHCP Sever: %s 9994 </source> 9995 <translation type="unfinished"></translation> 9996 </message> 9997 <message> 9998 <location filename="../VBoxManageNATNetwork.cpp" line="107"/> 9999 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 9725 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 10000 9726 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10001 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 9727 <location filename="../VBoxManageNATNetwork.cpp" line="119"/> 9728 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 10002 9729 <source>Yes</source> 10003 9730 <translation type="unfinished"></translation> 10004 9731 </message> 10005 9732 <message> 10006 <location filename="../VBoxManageNATNetwork.cpp" line="107"/> 10007 <location filename="../VBoxManageNATNetwork.cpp" line="110"/> 9733 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 10008 9734 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10009 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 9735 <location filename="../VBoxManageNATNetwork.cpp" line="119"/> 9736 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 10010 9737 <source>No</source> 10011 9738 <translation type="unfinished"></translation> 10012 9739 </message> 10013 9740 <message> 10014 <location filename="../VBoxManageNATNetwork.cpp" line="1 13"/>9741 <location filename="../VBoxManageNATNetwork.cpp" line="122"/> 10015 9742 <source>IPv6 Prefix: %ls 10016 9743 </source> … … 10018 9745 </message> 10019 9746 <message> 9747 <location filename="../VBoxManageNATNetwork.cpp" line="125"/> 9748 <source>IPv6 Default: %s 9749 </source> 9750 <translation type="unfinished"></translation> 9751 </message> 9752 <message> 9753 <location filename="../VBoxManageNATNetwork.cpp" line="106"/> 9754 <source>Enabled: %s 9755 </source> 9756 <translation type="unfinished"></translation> 9757 </message> 9758 <message> 10020 9759 <location filename="../VBoxManageNATNetwork.cpp" line="116"/> 10021 <source>IPv6 Default: %s 10022 </source> 10023 <translation type="unfinished"></translation> 10024 </message> 10025 <message> 10026 <location filename="../VBoxManageNATNetwork.cpp" line="120"/> 10027 <source>Enabled: %s 10028 </source> 10029 <translation type="unfinished"></translation> 10030 </message> 10031 <message> 10032 <location filename="../VBoxManageNATNetwork.cpp" line="133"/> 9760 <source>DHCP Server: %s 9761 </source> 9762 <translation type="unfinished"></translation> 9763 </message> 9764 <message> 9765 <location filename="../VBoxManageNATNetwork.cpp" line="142"/> 9766 <source>Port-forwarding (ipv4) 9767 </source> 9768 <translation type="unfinished"></translation> 9769 </message> 9770 <message> 9771 <location filename="../VBoxManageNATNetwork.cpp" line="146"/> 9772 <source>Port-forwarding (ipv6) 9773 </source> 9774 <translation type="unfinished"></translation> 9775 </message> 9776 <message> 9777 <location filename="../VBoxManageNATNetwork.cpp" line="150"/> 9778 <source>loopback mappings (ipv4) 9779 </source> 9780 <translation type="unfinished"></translation> 9781 </message> 9782 <message> 9783 <location filename="../VBoxManageNATNetwork.cpp" line="166"/> 10033 9784 <source>NAT Networks: 10034 9785 … … 10037 9788 </message> 10038 9789 <message> 10039 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>9790 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10040 9791 <source>%zu %s found 10041 9792 </source> … … 10043 9794 </message> 10044 9795 <message> 10045 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>9796 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10046 9797 <source>network</source> 10047 9798 <translation type="unfinished"></translation> 10048 9799 </message> 10049 9800 <message numerus="yes"> 10050 <location filename="../VBoxManageNATNetwork.cpp" line="1 67"/>9801 <location filename="../VBoxManageNATNetwork.cpp" line="198"/> 10051 9802 <source>networks</source> 10052 9803 <translation type="unfinished"> … … 10055 9806 </message> 10056 9807 <message> 10057 <location filename="../VBoxManageNATNetwork.cpp" line=" 175"/>10058 <location filename="../VBoxManageNATNetwork.cpp" line=" 549"/>9808 <location filename="../VBoxManageNATNetwork.cpp" line="206"/> 9809 <location filename="../VBoxManageNATNetwork.cpp" line="602"/> 10059 9810 <source>Not enough parameters</source> 10060 9811 <translation type="unfinished"></translation> 10061 9812 </message> 10062 9813 <message> 10063 <location filename="../VBoxManageNATNetwork.cpp" line="2 22"/>9814 <location filename="../VBoxManageNATNetwork.cpp" line="261"/> 10064 9815 <source>You can only specify --netname only once.</source> 10065 9816 <translation type="unfinished"></translation> 10066 9817 </message> 10067 9818 <message> 10068 <location filename="../VBoxManageNATNetwork.cpp" line="2 28"/>9819 <location filename="../VBoxManageNATNetwork.cpp" line="267"/> 10069 9820 <source>You can only specify --network only once.</source> 10070 9821 <translation type="unfinished"></translation> 10071 9822 </message> 10072 9823 <message> 10073 <location filename="../VBoxManageNATNetwork.cpp" line="2 34"/>10074 <location filename="../VBoxManageNATNetwork.cpp" line="2 40"/>9824 <location filename="../VBoxManageNATNetwork.cpp" line="273"/> 9825 <location filename="../VBoxManageNATNetwork.cpp" line="279"/> 10075 9826 <source>You can specify either --enable or --disable once.</source> 10076 9827 <translation type="unfinished"></translation> 10077 9828 </message> 10078 9829 <message> 10079 <location filename="../VBoxManageNATNetwork.cpp" line="2 46"/>9830 <location filename="../VBoxManageNATNetwork.cpp" line="285"/> 10080 9831 <source>You can specify --dhcp only once.</source> 10081 9832 <translation type="unfinished"></translation> 10082 9833 </message> 10083 9834 <message> 10084 <location filename="../VBoxManageNATNetwork.cpp" line="2 52"/>9835 <location filename="../VBoxManageNATNetwork.cpp" line="291"/> 10085 9836 <source>You can specify --ipv6 only once.</source> 10086 9837 <translation type="unfinished"></translation> 10087 9838 </message> 10088 9839 <message> 10089 <location filename="../VBoxManageNATNetwork.cpp" line="2 58"/>9840 <location filename="../VBoxManageNATNetwork.cpp" line="297"/> 10090 9841 <source>You can specify --ipv6-prefix only once.</source> 10091 9842 <translation type="unfinished"></translation> 10092 9843 </message> 10093 9844 <message> 10094 <location filename="../VBoxManageNATNetwork.cpp" line="269"/> 9845 <location filename="../VBoxManageNATNetwork.cpp" line="303"/> 9846 <source>You can specify --ipv6-default only once.</source> 9847 <translation type="unfinished"></translation> 9848 </message> 9849 <message> 9850 <location filename="../VBoxManageNATNetwork.cpp" line="313"/> 10095 9851 <source>loopback couldn't be deleted on modified 10096 9852 </source> … … 10098 9854 </message> 10099 9855 <message> 10100 <location filename="../VBoxManageNATNetwork.cpp" line=" 281"/>10101 <location filename="../VBoxManageNATNetwork.cpp" line="3 20"/>9856 <location filename="../VBoxManageNATNetwork.cpp" line="324"/> 9857 <location filename="../VBoxManageNATNetwork.cpp" line="362"/> 10102 9858 <source>Not enough parаmeters 10103 9859 </source> … … 10105 9861 </message> 10106 9862 <message> 10107 <location filename="../VBoxManageNATNetwork.cpp" line="3 06"/>9863 <location filename="../VBoxManageNATNetwork.cpp" line="349"/> 10108 9864 <source>Invalid port-forward rule %s 10109 9865 </source> … … 10111 9867 </message> 10112 9868 <message> 10113 <location filename="../VBoxManageNATNetwork.cpp" line="3 15"/>9869 <location filename="../VBoxManageNATNetwork.cpp" line="357"/> 10114 9870 <source>Port-forward could be deleted on modify 10115 9871 </source> … … 10117 9873 </message> 10118 9874 <message> 10119 <location filename="../VBoxManageNATNetwork.cpp" line="3 23"/>9875 <location filename="../VBoxManageNATNetwork.cpp" line="365"/> 10120 9876 <source>Port-forward rule name is too long 10121 9877 </source> … … 10123 9879 </message> 10124 9880 <message> 10125 <location filename="../VBoxManageNATNetwork.cpp" line="3 40"/>9881 <location filename="../VBoxManageNATNetwork.cpp" line="382"/> 10126 9882 <source>You need to specify the --netname option</source> 10127 9883 <translation type="unfinished"></translation> 10128 9884 </message> 10129 9885 <message> 10130 <location filename="../VBoxManageNATNetwork.cpp" line="3 46"/>9886 <location filename="../VBoxManageNATNetwork.cpp" line="388"/> 10131 9887 <source>You need to specify the --network option</source> 10132 9888 <translation type="unfinished"></translation> 10133 9889 </message> 10134 9890 <message> 10135 <location filename="../VBoxManageNATNetwork.cpp" line="3 54"/>9891 <location filename="../VBoxManageNATNetwork.cpp" line="396"/> 10136 9892 <source>Unknown operation (:%d)</source> 10137 9893 <translation type="unfinished"></translation> 10138 9894 </message> 10139 9895 <message> 10140 <location filename="../VBoxManageNATNetwork.cpp" line=" 366"/>9896 <location filename="../VBoxManageNATNetwork.cpp" line="408"/> 10141 9897 <source>NATNetwork server already exists</source> 10142 9898 <translation type="unfinished"></translation> 10143 9899 </message> 10144 9900 <message> 10145 <location filename="../VBoxManageNATNetwork.cpp" line=" 370"/>9901 <location filename="../VBoxManageNATNetwork.cpp" line="412"/> 10146 9902 <source>Failed to create the NAT network service</source> 10147 9903 <translation type="unfinished"></translation> 10148 9904 </message> 10149 9905 <message> 10150 <location filename="../VBoxManageNATNetwork.cpp" line=" 373"/>9906 <location filename="../VBoxManageNATNetwork.cpp" line="415"/> 10151 9907 <source>NATNetwork server does not exist</source> 10152 9908 <translation type="unfinished"></translation> 10153 9909 </message> 10154 9910 <message> 10155 <location filename="../VBoxManageNATNetwork.cpp" line="384"/> 10156 <location filename="../VBoxManageNATNetwork.cpp" line="390"/> 10157 <location filename="../VBoxManageNATNetwork.cpp" line="402"/> 10158 <location filename="../VBoxManageNATNetwork.cpp" line="409"/> 10159 <location filename="../VBoxManageNATNetwork.cpp" line="420"/> 10160 <location filename="../VBoxManageNATNetwork.cpp" line="515"/> 9911 <location filename="../VBoxManageNATNetwork.cpp" line="426"/> 9912 <location filename="../VBoxManageNATNetwork.cpp" line="432"/> 9913 <location filename="../VBoxManageNATNetwork.cpp" line="444"/> 9914 <location filename="../VBoxManageNATNetwork.cpp" line="451"/> 9915 <location filename="../VBoxManageNATNetwork.cpp" line="462"/> 9916 <location filename="../VBoxManageNATNetwork.cpp" line="470"/> 9917 <location filename="../VBoxManageNATNetwork.cpp" line="565"/> 10161 9918 <source>Failed to set configuration</source> 10162 9919 <translation type="unfinished"></translation> 10163 9920 </message> 10164 9921 <message> 10165 <location filename="../VBoxManageNATNetwork.cpp" line="4 31"/>9922 <location filename="../VBoxManageNATNetwork.cpp" line="481"/> 10166 9923 <source>Failed to delete pf</source> 10167 9924 <translation type="unfinished"></translation> 10168 9925 </message> 10169 9926 <message> 10170 <location filename="../VBoxManageNATNetwork.cpp" line=" 456"/>9927 <location filename="../VBoxManageNATNetwork.cpp" line="506"/> 10171 9928 <source>Failed to add pf</source> 10172 9929 <translation type="unfinished"></translation> 10173 9930 </message> 10174 9931 <message> 10175 <location filename="../VBoxManageNATNetwork.cpp" line=" 482"/>10176 <location filename="../VBoxManageNATNetwork.cpp" line=" 488"/>9932 <location filename="../VBoxManageNATNetwork.cpp" line="532"/> 9933 <location filename="../VBoxManageNATNetwork.cpp" line="538"/> 10177 9934 <source>invalid loopback string</source> 10178 9935 <translation type="unfinished"></translation> 10179 9936 </message> 10180 9937 <message> 10181 <location filename="../VBoxManageNATNetwork.cpp" line="5 23"/>9938 <location filename="../VBoxManageNATNetwork.cpp" line="573"/> 10182 9939 <source>Failed to remove nat network</source> 10183 9940 <translation type="unfinished"></translation> 10184 9941 </message> 10185 9942 <message> 10186 <location filename="../VBoxManageNATNetwork.cpp" line="5 30"/>9943 <location filename="../VBoxManageNATNetwork.cpp" line="580"/> 10187 9944 <source>Failed to start network</source> 10188 9945 <translation type="unfinished"></translation> 10189 9946 </message> 10190 9947 <message> 10191 <location filename="../VBoxManageNATNetwork.cpp" line="5 37"/>9948 <location filename="../VBoxManageNATNetwork.cpp" line="587"/> 10192 9949 <source>Failed to stop network</source> 10193 9950 <translation type="unfinished"></translation> 10194 9951 </message> 10195 9952 <message> 10196 <location filename="../VBoxManageNATNetwork.cpp" line=" 565"/>9953 <location filename="../VBoxManageNATNetwork.cpp" line="636"/> 10197 9954 <source>Invalid parameter '%s'</source> 10198 9955 <translation type="unfinished"></translation> … … 10202 9959 <name>Nvram</name> 10203 9960 <message> 9961 <location filename="../VBoxManageModifyNvram.cpp" line="121"/> 9962 <source>No platform key file path was given to "enrollpk"</source> 9963 <translation type="unfinished"></translation> 9964 </message> 9965 <message> 10204 9966 <location filename="../VBoxManageModifyNvram.cpp" line="123"/> 10205 <source>No platform key file path was given to "enrollpk"</source>10206 <translation type="unfinished"></translation>10207 </message>10208 <message>10209 <location filename="../VBoxManageModifyNvram.cpp" line="125"/>10210 9967 <source>No owner UUID was given to "enrollpk"</source> 10211 9968 <translation type="unfinished"></translation> 10212 9969 </message> 10213 9970 <message> 10214 <location filename="../VBoxManageModifyNvram.cpp" line="14 9"/>9971 <location filename="../VBoxManageModifyNvram.cpp" line="147"/> 10215 9972 <source>Cannot read contents of file "%s": %Rrc</source> 10216 9973 <translation type="unfinished"></translation> 10217 9974 </message> 10218 9975 <message> 10219 <location filename="../VBoxManageModifyNvram.cpp" line="15 2"/>9976 <location filename="../VBoxManageModifyNvram.cpp" line="150"/> 10220 9977 <source>File "%s" is bigger than 32KByte</source> 10221 9978 <translation type="unfinished"></translation> 10222 9979 </message> 10223 9980 <message> 10224 <location filename="../VBoxManageModifyNvram.cpp" line="15 5"/>9981 <location filename="../VBoxManageModifyNvram.cpp" line="153"/> 10225 9982 <source>Cannot get size of file "%s": %Rrc</source> 10226 9983 <translation type="unfinished"></translation> 10227 9984 </message> 10228 9985 <message> 10229 <location filename="../VBoxManageModifyNvram.cpp" line="1 60"/>9986 <location filename="../VBoxManageModifyNvram.cpp" line="158"/> 10230 9987 <source>Cannot open file "%s": %Rrc</source> 10231 9988 <translation type="unfinished"></translation> 10232 9989 </message> 10233 9990 <message> 10234 <location filename="../VBoxManageModifyNvram.cpp" line="25 2"/>9991 <location filename="../VBoxManageModifyNvram.cpp" line="250"/> 10235 9992 <source>No variable name was given to "queryvar"</source> 10236 9993 <translation type="unfinished"></translation> 10237 9994 </message> 10238 9995 <message> 10239 <location filename="../VBoxManageModifyNvram.cpp" line="27 9"/>9996 <location filename="../VBoxManageModifyNvram.cpp" line="277"/> 10240 9997 <source>Error writing to '%s': %Rrc</source> 10241 9998 <translation type="unfinished"></translation> 10242 9999 </message> 10243 10000 <message> 10244 <location filename="../VBoxManageModifyNvram.cpp" line="28 4"/>10245 <location filename="../VBoxManageModifyNvram.cpp" line="41 3"/>10001 <location filename="../VBoxManageModifyNvram.cpp" line="282"/> 10002 <location filename="../VBoxManageModifyNvram.cpp" line="411"/> 10246 10003 <source>Error opening '%s': %Rrc</source> 10247 10004 <translation type="unfinished"></translation> 10248 10005 </message> 10249 10006 <message> 10007 <location filename="../VBoxManageModifyNvram.cpp" line="329"/> 10008 <source>No variable name was given to "deletevar"</source> 10009 <translation type="unfinished"></translation> 10010 </message> 10011 <message> 10250 10012 <location filename="../VBoxManageModifyNvram.cpp" line="331"/> 10251 <source>No variable name was given to "deletevar"</source>10252 <translation type="unfinished"></translation>10253 </message>10254 <message>10255 <location filename="../VBoxManageModifyNvram.cpp" line="333"/>10256 10013 <source>No owner UUID was given to "deletevar"</source> 10257 10014 <translation type="unfinished"></translation> 10258 10015 </message> 10259 10016 <message> 10017 <location filename="../VBoxManageModifyNvram.cpp" line="381"/> 10018 <source>No variable name was given to "changevar"</source> 10019 <translation type="unfinished"></translation> 10020 </message> 10021 <message> 10260 10022 <location filename="../VBoxManageModifyNvram.cpp" line="383"/> 10261 <source>No variable name was given to "changevar"</source>10262 <translation type="unfinished"></translation>10263 </message>10264 <message>10265 <location filename="../VBoxManageModifyNvram.cpp" line="385"/>10266 10023 <source>No variable data filename was given to "changevar"</source> 10267 10024 <translation type="unfinished"></translation> 10268 10025 </message> 10269 10026 <message> 10270 <location filename="../VBoxManageModifyNvram.cpp" line="40 9"/>10027 <location filename="../VBoxManageModifyNvram.cpp" line="407"/> 10271 10028 <source>Error reading from '%s': %Rrc</source> 10272 10029 <translation type="unfinished"></translation> … … 10362 10119 <name>Storage</name> 10363 10120 <message> 10364 <location filename="../VBoxManageStorageController.cpp" line="16 8"/>10365 <location filename="../VBoxManageStorageController.cpp" line="118 2"/>10121 <location filename="../VBoxManageStorageController.cpp" line="166"/> 10122 <location filename="../VBoxManageStorageController.cpp" line="1180"/> 10366 10123 <source>Invalid --type argument '%s'</source> 10367 10124 <translation type="unfinished"></translation> 10368 10125 </message> 10369 10126 <message> 10370 <location filename="../VBoxManageStorageController.cpp" line="30 7"/>10127 <location filename="../VBoxManageStorageController.cpp" line="305"/> 10371 10128 <source>Invalid medium type '%s'</source> 10372 10129 <translation type="unfinished"></translation> 10373 10130 </message> 10374 10131 <message> 10375 <location filename="../VBoxManageStorageController.cpp" line="32 9"/>10132 <location filename="../VBoxManageStorageController.cpp" line="327"/> 10376 10133 <source>Storage controller name not specified</source> 10377 10134 <translation type="unfinished"></translation> 10378 10135 </message> 10379 10136 <message> 10137 <location filename="../VBoxManageStorageController.cpp" line="347"/> 10138 <source>Drive passthrough state cannot be changed while the VM is running 10139 </source> 10140 <translation type="unfinished"></translation> 10141 </message> 10142 <message> 10380 10143 <location filename="../VBoxManageStorageController.cpp" line="349"/> 10381 <source>Drive passthrough state cannot be changed while the VM is running10382 </source>10383 <translation type="unfinished"></translation>10384 </message>10385 <message>10386 <location filename="../VBoxManageStorageController.cpp" line="351"/>10387 10144 <source>Bandwidth group cannot be changed while the VM is running 10388 10145 </source> … … 10390 10147 </message> 10391 10148 <message> 10392 <location filename="../VBoxManageStorageController.cpp" line="35 8"/>10149 <location filename="../VBoxManageStorageController.cpp" line="356"/> 10393 10150 <source>Could not find a controller named '%s' 10394 10151 </source> … … 10396 10153 </message> 10397 10154 <message> 10398 <location filename="../VBoxManageStorageController.cpp" line="37 2"/>10155 <location filename="../VBoxManageStorageController.cpp" line="370"/> 10399 10156 <source>Port not specified</source> 10400 10157 <translation type="unfinished"></translation> 10401 10158 </message> 10402 10159 <message> 10403 <location filename="../VBoxManageStorageController.cpp" line="37 9"/>10160 <location filename="../VBoxManageStorageController.cpp" line="377"/> 10404 10161 <source>Device not specified</source> 10405 10162 <translation type="unfinished"></translation> 10406 10163 </message> 10407 10164 <message> 10408 <location filename="../VBoxManageStorageController.cpp" line="44 3"/>10165 <location filename="../VBoxManageStorageController.cpp" line="441"/> 10409 10166 <source>No DVD/Floppy Drive attached to the controller '%s'at the port: %u, device: %u</source> 10410 10167 <translation type="unfinished"></translation> 10411 10168 </message> 10412 10169 <message> 10413 <location filename="../VBoxManageStorageController.cpp" line="46 3"/>10170 <location filename="../VBoxManageStorageController.cpp" line="461"/> 10414 10171 <source>The attachment is not supported by the storage controller '%s'</source> 10415 10172 <translation type="unfinished"></translation> 10416 10173 </message> 10417 10174 <message> 10418 <location filename="../VBoxManageStorageController.cpp" line="51 8"/>10175 <location filename="../VBoxManageStorageController.cpp" line="516"/> 10419 10176 <source>Cannot find the Guest Additions ISO image 10420 10177 </source> … … 10422 10179 </message> 10423 10180 <message> 10424 <location filename="../VBoxManageStorageController.cpp" line="54 4"/>10181 <location filename="../VBoxManageStorageController.cpp" line="542"/> 10425 10182 <source>Argument --type must be specified 10426 10183 </source> … … 10428 10185 </message> 10429 10186 <message> 10430 <location filename="../VBoxManageStorageController.cpp" line="55 8"/>10187 <location filename="../VBoxManageStorageController.cpp" line="556"/> 10431 10188 <source>The given attachment is not supported by the storage controller '%s'</source> 10432 10189 <translation type="unfinished"></translation> 10433 10190 </message> 10434 10191 <message> 10435 <location filename="../VBoxManageStorageController.cpp" line="5 80"/>10436 <location filename="../VBoxManageStorageController.cpp" line="58 4"/>10192 <location filename="../VBoxManageStorageController.cpp" line="578"/> 10193 <location filename="../VBoxManageStorageController.cpp" line="582"/> 10437 10194 <source>Invalid host DVD drive name "%s"</source> 10438 10195 <translation type="unfinished"></translation> 10439 10196 </message> 10440 10197 <message> 10441 <location filename="../VBoxManageStorageController.cpp" line="59 3"/>10198 <location filename="../VBoxManageStorageController.cpp" line="591"/> 10442 10199 <source>Invalid host floppy drive name "%s"</source> 10443 10200 <translation type="unfinished"></translation> 10444 10201 </message> 10445 10202 <message> 10446 <location filename="../VBoxManageStorageController.cpp" line=" 600"/>10203 <location filename="../VBoxManageStorageController.cpp" line="598"/> 10447 10204 <source>Parameters --server and --target are required for iSCSI media</source> 10448 10205 <translation type="unfinished"></translation> 10449 10206 </message> 10450 10207 <message> 10451 <location filename="../VBoxManageStorageController.cpp" line="66 7"/>10208 <location filename="../VBoxManageStorageController.cpp" line="665"/> 10452 10209 <source>iSCSI disk created. UUID: %s 10453 10210 </source> … … 10455 10212 </message> 10456 10213 <message> 10457 <location filename="../VBoxManageStorageController.cpp" line="67 8"/>10214 <location filename="../VBoxManageStorageController.cpp" line="676"/> 10458 10215 <source>Missing --medium argument</source> 10459 10216 <translation type="unfinished"></translation> 10460 10217 </message> 10461 10218 <message> 10462 <location filename="../VBoxManageStorageController.cpp" line="68 7"/>10219 <location filename="../VBoxManageStorageController.cpp" line="685"/> 10463 10220 <source>Invalid UUID or filename "%s"</source> 10464 10221 <translation type="unfinished"></translation> 10465 10222 </message> 10466 10223 <message> 10467 <location filename="../VBoxManageStorageController.cpp" line="69 7"/>10224 <location filename="../VBoxManageStorageController.cpp" line="695"/> 10468 10225 <source>Failed to set the medium/parent medium UUID</source> 10469 10226 <translation type="unfinished"></translation> 10470 10227 </message> 10471 10228 <message> 10472 <location filename="../VBoxManageStorageController.cpp" line="7 11"/>10229 <location filename="../VBoxManageStorageController.cpp" line="709"/> 10473 10230 <source>Failed to set the medium type</source> 10474 10231 <translation type="unfinished"></translation> 10475 10232 </message> 10476 10233 <message> 10477 <location filename="../VBoxManageStorageController.cpp" line="80 6"/>10234 <location filename="../VBoxManageStorageController.cpp" line="804"/> 10478 10235 <source>Invalid --passthrough argument '%s'</source> 10479 10236 <translation type="unfinished"></translation> 10480 10237 </message> 10481 10238 <message> 10482 <location filename="../VBoxManageStorageController.cpp" line="80 9"/>10483 <location filename="../VBoxManageStorageController.cpp" line="83 5"/>10484 <location filename="../VBoxManageStorageController.cpp" line="8 61"/>10485 <location filename="../VBoxManageStorageController.cpp" line="88 7"/>10486 <location filename="../VBoxManageStorageController.cpp" line="91 3"/>10239 <location filename="../VBoxManageStorageController.cpp" line="807"/> 10240 <location filename="../VBoxManageStorageController.cpp" line="833"/> 10241 <location filename="../VBoxManageStorageController.cpp" line="859"/> 10242 <location filename="../VBoxManageStorageController.cpp" line="885"/> 10243 <location filename="../VBoxManageStorageController.cpp" line="911"/> 10487 10244 <source>Couldn't find the controller attachment for the controller '%s' 10488 10245 </source> … … 10490 10247 </message> 10491 10248 <message> 10492 <location filename="../VBoxManageStorageController.cpp" line="83 2"/>10249 <location filename="../VBoxManageStorageController.cpp" line="830"/> 10493 10250 <source>Invalid --tempeject argument '%s'</source> 10494 10251 <translation type="unfinished"></translation> 10495 10252 </message> 10496 10253 <message> 10497 <location filename="../VBoxManageStorageController.cpp" line="85 8"/>10254 <location filename="../VBoxManageStorageController.cpp" line="856"/> 10498 10255 <source>Invalid --nonrotational argument '%s'</source> 10499 10256 <translation type="unfinished"></translation> 10500 10257 </message> 10501 10258 <message> 10502 <location filename="../VBoxManageStorageController.cpp" line="88 4"/>10259 <location filename="../VBoxManageStorageController.cpp" line="882"/> 10503 10260 <source>Invalid --discard argument '%s'</source> 10504 10261 <translation type="unfinished"></translation> 10505 10262 </message> 10506 10263 <message> 10507 <location filename="../VBoxManageStorageController.cpp" line="9 10"/>10264 <location filename="../VBoxManageStorageController.cpp" line="908"/> 10508 10265 <source>Invalid --hotpluggable argument '%s'</source> 10509 10266 <translation type="unfinished"></translation> 10510 10267 </message> 10511 10268 <message> 10512 <location filename="../VBoxManageStorageController.cpp" line="99 2"/>10269 <location filename="../VBoxManageStorageController.cpp" line="990"/> 10513 10270 <source>Too few parameters</source> 10514 10271 <translation type="unfinished"></translation> 10515 10272 </message> 10516 10273 <message> 10517 <location filename="../VBoxManageStorageController.cpp" line="105 8"/>10274 <location filename="../VBoxManageStorageController.cpp" line="1056"/> 10518 10275 <source>Storage controller name not specified 10519 10276 </source> … … 10521 10278 </message> 10522 10279 <message> 10523 <location filename="../VBoxManageStorageController.cpp" line="11 21"/>10280 <location filename="../VBoxManageStorageController.cpp" line="1119"/> 10524 10281 <source>Invalid --add argument '%s'</source> 10525 10282 <translation type="unfinished"></translation> 10526 10283 </message> 10527 10284 <message> 10528 <location filename="../VBoxManageStorageController.cpp" line="118 8"/>10529 <location filename="../VBoxManageStorageController.cpp" line="120 7"/>10530 <location filename="../VBoxManageStorageController.cpp" line="123 8"/>10531 <location filename="../VBoxManageStorageController.cpp" line="126 4"/>10532 <location filename="../VBoxManageStorageController.cpp" line="128 3"/>10285 <location filename="../VBoxManageStorageController.cpp" line="1186"/> 10286 <location filename="../VBoxManageStorageController.cpp" line="1205"/> 10287 <location filename="../VBoxManageStorageController.cpp" line="1236"/> 10288 <location filename="../VBoxManageStorageController.cpp" line="1262"/> 10289 <location filename="../VBoxManageStorageController.cpp" line="1281"/> 10533 10290 <source>Couldn't find the controller with the name: '%s' 10534 10291 </source> … … 10536 10293 </message> 10537 10294 <message> 10538 <location filename="../VBoxManageStorageController.cpp" line="123 2"/>10295 <location filename="../VBoxManageStorageController.cpp" line="1230"/> 10539 10296 <source>Invalid --hostiocache argument '%s'</source> 10540 10297 <translation type="unfinished"></translation> 10541 10298 </message> 10542 10299 <message> 10543 <location filename="../VBoxManageStorageController.cpp" line="125 8"/>10300 <location filename="../VBoxManageStorageController.cpp" line="1256"/> 10544 10301 <source>Invalid --bootable argument '%s'</source> 10545 10302 <translation type="unfinished"></translation> … … 10549 10306 <name>UpdateCheck</name> 10550 10307 <message> 10308 <location filename="../VBoxManageUpdateCheck.cpp" line="81"/> 10309 <source>Enabled: %s 10310 </source> 10311 <translation type="unfinished"></translation> 10312 </message> 10313 <message> 10314 <location filename="../VBoxManageUpdateCheck.cpp" line="82"/> 10315 <source>yes</source> 10316 <translation type="unfinished"></translation> 10317 </message> 10318 <message> 10319 <location filename="../VBoxManageUpdateCheck.cpp" line="82"/> 10320 <source>no</source> 10321 <translation type="unfinished"></translation> 10322 </message> 10323 <message> 10551 10324 <location filename="../VBoxManageUpdateCheck.cpp" line="89"/> 10552 <source>Enabled: %s10553 </source>10554 <translation type="unfinished"></translation>10555 </message>10556 <message>10557 <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>10558 <source>yes</source>10559 <translation type="unfinished"></translation>10560 </message>10561 <message>10562 <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>10563 <source>no</source>10564 <translation type="unfinished"></translation>10565 </message>10566 <message>10567 <location filename="../VBoxManageUpdateCheck.cpp" line="97"/>10568 10325 <source>Count: %u 10569 10326 </source> … … 10571 10328 </message> 10572 10329 <message> 10573 <location filename="../VBoxManageUpdateCheck.cpp" line=" 104"/>10330 <location filename="../VBoxManageUpdateCheck.cpp" line="99"/> 10574 10331 <source>Frequency: never 10575 10332 </source> … … 10577 10334 </message> 10578 10335 <message> 10579 <location filename="../VBoxManageUpdateCheck.cpp" line="10 6"/>10336 <location filename="../VBoxManageUpdateCheck.cpp" line="101"/> 10580 10337 <source>Frequency: every day 10581 10338 </source> … … 10583 10340 </message> 10584 10341 <message> 10585 <location filename="../VBoxManageUpdateCheck.cpp" line="10 8"/>10342 <location filename="../VBoxManageUpdateCheck.cpp" line="103"/> 10586 10343 <source>Frequency: every %u days 10587 10344 </source> … … 10589 10346 </message> 10590 10347 <message> 10591 <location filename="../VBoxManageUpdateCheck.cpp" line="11 7"/>10348 <location filename="../VBoxManageUpdateCheck.cpp" line="112"/> 10592 10349 <source>Stable - new minor and maintenance releases</source> 10593 10350 <translation type="unfinished"></translation> 10594 10351 </message> 10595 10352 <message> 10596 <location filename="../VBoxManageUpdateCheck.cpp" line="1 21"/>10353 <location filename="../VBoxManageUpdateCheck.cpp" line="116"/> 10597 10354 <source>All releases - new minor, maintenance, and major releases</source> 10598 10355 <translation type="unfinished"></translation> 10599 10356 </message> 10600 10357 <message> 10358 <location filename="../VBoxManageUpdateCheck.cpp" line="120"/> 10359 <source>With Betas - new minor, maintenance, major, and beta releases</source> 10360 <translation type="unfinished"></translation> 10361 </message> 10362 <message> 10601 10363 <location filename="../VBoxManageUpdateCheck.cpp" line="125"/> 10602 <source>With Betas - new minor, maintenance, major, and beta releases</source>10603 <translation type="unfinished"></translation>10604 </message>10605 <message>10606 <location filename="../VBoxManageUpdateCheck.cpp" line="130"/>10607 10364 <source>Unset</source> 10608 10365 <translation type="unfinished"></translation> 10609 10366 </message> 10610 10367 <message> 10611 <location filename="../VBoxManageUpdateCheck.cpp" line="137"/> 10612 <source>Target: %s 10613 </source> 10614 <translation type="unfinished"></translation> 10615 </message> 10616 <message> 10617 <location filename="../VBoxManageUpdateCheck.cpp" line="145"/> 10368 <location filename="../VBoxManageUpdateCheck.cpp" line="132"/> 10369 <source>Channel: %s 10370 </source> 10371 <translation type="unfinished"></translation> 10372 </message> 10373 <message> 10374 <location filename="../VBoxManageUpdateCheck.cpp" line="189"/> 10375 <source>Unknown channel specified: '%s'</source> 10376 <translation type="unfinished"></translation> 10377 </message> 10378 <message> 10379 <location filename="../VBoxManageUpdateCheck.cpp" line="258"/> 10380 <source>Checking for a new %ls version... 10381 </source> 10382 <translation type="unfinished"></translation> 10383 </message> 10384 <message> 10385 <location filename="../VBoxManageUpdateCheck.cpp" line="269"/> 10386 <source>Failed to create update progress object: %Rhrc 10387 </source> 10388 <translation type="unfinished"></translation> 10389 </message> 10390 <message> 10391 <location filename="../VBoxManageUpdateCheck.cpp" line="277"/> 10392 <source>Checking for update failed.</source> 10393 <translation type="unfinished"></translation> 10394 </message> 10395 <message> 10396 <location filename="../VBoxManageUpdateCheck.cpp" line="296"/> 10397 <source>A new version of %ls has been released! Version %ls is available at virtualbox.org. 10398 You can download this version here: %ls 10399 </source> 10400 <translation type="unfinished"></translation> 10401 </message> 10402 <message> 10403 <location filename="../VBoxManageUpdateCheck.cpp" line="312"/> 10404 <source>You are already running the most recent version of %ls. 10405 </source> 10406 <translation type="unfinished"></translation> 10407 </message> 10408 <message> 10409 <location filename="../VBoxManageUpdateCheck.cpp" line="324"/> 10410 <source>Something went wrong while checking for updates! 10411 Please check network connection and try again later. 10412 </source> 10413 <translation type="unfinished"></translation> 10414 </message> 10415 <message> 10416 <location filename="../VBoxManageUpdateCheck.cpp" line="140"/> 10618 10417 <source>Last Check Date: %ls 10619 10418 </source> … … 10621 10420 </message> 10622 10421 <message> 10623 <location filename="../VBoxManageUpdateCheck.cpp" line="197"/> 10624 <source>Unknown target specified: '%s'</source> 10625 <translation type="unfinished"></translation> 10626 </message> 10627 <message> 10628 <location filename="../VBoxManageUpdateCheck.cpp" line="203"/> 10422 <location filename="../VBoxManageUpdateCheck.cpp" line="195"/> 10629 10423 <source>The update frequency cannot be zero</source> 10630 10424 <translation type="unfinished"></translation> 10631 10425 </message> 10632 10426 <message> 10633 <location filename="../VBoxManageUpdateCheck.cpp" line="2 14"/>10427 <location filename="../VBoxManageUpdateCheck.cpp" line="206"/> 10634 10428 <source>No change requested</source> 10635 <translation type="unfinished"></translation>10636 </message>10637 <message>10638 <location filename="../VBoxManageUpdateCheck.cpp" line="285"/>10639 <source>Checking for a new VirtualBox version...10640 </source>10641 <translation type="unfinished"></translation>10642 </message>10643 <message>10644 <location filename="../VBoxManageUpdateCheck.cpp" line="296"/>10645 <source>VirtualBox update checking has been disabled.10646 </source>10647 <translation type="unfinished"></translation>10648 </message>10649 <message>10650 <location filename="../VBoxManageUpdateCheck.cpp" line="301"/>10651 <source>Failed to create ptrProgress object: %Rhrc10652 </source>10653 <translation type="unfinished"></translation>10654 </message>10655 <message>10656 <location filename="../VBoxManageUpdateCheck.cpp" line="309"/>10657 <source>Check for update failed.</source>10658 <translation type="unfinished"></translation>10659 </message>10660 <message>10661 <location filename="../VBoxManageUpdateCheck.cpp" line="325"/>10662 <source>A new version of VirtualBox has been released! Version %ls is available at virtualbox.org.10663 You can download this version here: %ls10664 </source>10665 <translation type="unfinished"></translation>10666 </message>10667 <message>10668 <location filename="../VBoxManageUpdateCheck.cpp" line="336"/>10669 <source>You are already running the most recent version of VirtualBox.10670 </source>10671 10429 <translation type="unfinished"></translation> 10672 10430 </message> … … 10676 10434 <message> 10677 10435 <location filename="../VBoxManageUSB.cpp" line="178"/> 10678 <location filename="../VBoxManageUSB.cpp" line="2 02"/>10679 <location filename="../VBoxManageUSB.cpp" line="2 04"/>10680 <location filename="../VBoxManageUSB.cpp" line="3 62"/>10681 <location filename="../VBoxManageUSB.cpp" line="5 60"/>10436 <location filename="../VBoxManageUSB.cpp" line="214"/> 10437 <location filename="../VBoxManageUSB.cpp" line="216"/> 10438 <location filename="../VBoxManageUSB.cpp" line="373"/> 10439 <location filename="../VBoxManageUSB.cpp" line="571"/> 10682 10440 <source>Not enough parameters</source> 10683 10441 <translation type="unfinished"></translation> 10684 10442 </message> 10685 10443 <message> 10686 <location filename="../VBoxManageUSB.cpp" line="1 87"/>10444 <location filename="../VBoxManageUSB.cpp" line="199"/> 10687 10445 <source>Invalid parameter '%s'</source> 10688 10446 <translation type="unfinished"></translation> 10689 10447 </message> 10690 10448 <message> 10691 <location filename="../VBoxManageUSB.cpp" line=" 191"/>10449 <location filename="../VBoxManageUSB.cpp" line="203"/> 10692 10450 <source>Invalid index '%s'</source> 10693 10451 <translation type="unfinished"></translation> 10694 10452 </message> 10695 10453 <message> 10696 <location filename="../VBoxManageUSB.cpp" line="2 19"/>10697 <location filename="../VBoxManageUSB.cpp" line="2 34"/>10698 <location filename="../VBoxManageUSB.cpp" line="2 42"/>10699 <location filename="../VBoxManageUSB.cpp" line="2 55"/>10700 <location filename="../VBoxManageUSB.cpp" line="2 63"/>10701 <location filename="../VBoxManageUSB.cpp" line="2 71"/>10702 <location filename="../VBoxManageUSB.cpp" line="2 79"/>10703 <location filename="../VBoxManageUSB.cpp" line="2 87"/>10704 <location filename="../VBoxManageUSB.cpp" line=" 295"/>10705 <location filename="../VBoxManageUSB.cpp" line="3 03"/>10706 <location filename="../VBoxManageUSB.cpp" line="3 11"/>10707 <location filename="../VBoxManageUSB.cpp" line="3 24"/>10708 <location filename="../VBoxManageUSB.cpp" line="3 70"/>10454 <location filename="../VBoxManageUSB.cpp" line="231"/> 10455 <location filename="../VBoxManageUSB.cpp" line="246"/> 10456 <location filename="../VBoxManageUSB.cpp" line="254"/> 10457 <location filename="../VBoxManageUSB.cpp" line="267"/> 10458 <location filename="../VBoxManageUSB.cpp" line="275"/> 10459 <location filename="../VBoxManageUSB.cpp" line="283"/> 10460 <location filename="../VBoxManageUSB.cpp" line="291"/> 10461 <location filename="../VBoxManageUSB.cpp" line="299"/> 10462 <location filename="../VBoxManageUSB.cpp" line="307"/> 10463 <location filename="../VBoxManageUSB.cpp" line="315"/> 10464 <location filename="../VBoxManageUSB.cpp" line="323"/> 10465 <location filename="../VBoxManageUSB.cpp" line="336"/> 10466 <location filename="../VBoxManageUSB.cpp" line="381"/> 10709 10467 <source>Missing argument to '%s'</source> 10710 10468 <translation type="unfinished"></translation> 10711 10469 </message> 10712 10470 <message> 10713 <location filename="../VBoxManageUSB.cpp" line="2 49"/>10471 <location filename="../VBoxManageUSB.cpp" line="261"/> 10714 10472 <source>Invalid --active argument '%s'</source> 10715 10473 <translation type="unfinished"></translation> 10716 10474 </message> 10717 10475 <message> 10718 <location filename="../VBoxManageUSB.cpp" line="3 16"/>10476 <location filename="../VBoxManageUSB.cpp" line="328"/> 10719 10477 <source>Failed to convert the --maskedinterfaces value '%s' to a number, vrc=%Rrc</source> 10720 10478 <translation type="unfinished"></translation> 10721 10479 </message> 10722 10480 <message> 10723 <location filename="../VBoxManageUSB.cpp" line="3 31"/>10481 <location filename="../VBoxManageUSB.cpp" line="343"/> 10724 10482 <source>Invalid USB filter action '%s'</source> 10725 10483 <translation type="unfinished"></translation> 10726 10484 </message> 10727 10485 <message> 10728 <location filename="../VBoxManageUSB.cpp" line="3 35"/>10486 <location filename="../VBoxManageUSB.cpp" line="346"/> 10729 10487 <source>Unknown option '%s'</source> 10730 10488 <translation type="unfinished"></translation> 10731 10489 </message> 10732 10490 <message> 10733 <location filename="../VBoxManageUSB.cpp" line="3 52"/>10734 <location filename="../VBoxManageUSB.cpp" line="3 84"/>10491 <location filename="../VBoxManageUSB.cpp" line="363"/> 10492 <location filename="../VBoxManageUSB.cpp" line="395"/> 10735 10493 <source>Mandatory options not supplied</source> 10736 10494 <translation type="unfinished"></translation> 10737 10495 </message> 10738 10496 <message> 10739 <location filename="../VBoxManageUSB.cpp" line="5 68"/>10497 <location filename="../VBoxManageUSB.cpp" line="581"/> 10740 10498 <source>Invalid number of parameters</source> 10741 10499 <translation type="unfinished"></translation> 10742 10500 </message> 10743 10501 <message> 10744 <location filename="../VBoxManageUSB.cpp" line="5 83"/>10502 <location filename="../VBoxManageUSB.cpp" line="596"/> 10745 10503 <source>Parameter "%s" is invalid</source> 10746 10504 <translation type="unfinished"></translation> … … 10750 10508 <name>Utils</name> 10751 10509 <message> 10752 <location filename="../VBoxManageUtils.cpp" line="10 3"/>10510 <location filename="../VBoxManageUtils.cpp" line="102"/> 10753 10511 <source>type bridged</source> 10754 10512 <translation type="unfinished"></translation> 10755 10513 </message> 10756 10514 <message> 10757 <location filename="../VBoxManageUtils.cpp" line="10 7"/>10515 <location filename="../VBoxManageUtils.cpp" line="106"/> 10758 10516 <source>type host-only</source> 10759 10517 <translation type="unfinished"></translation> 10760 10518 </message> 10761 10519 <message> 10762 <location filename="../VBoxManageUtils.cpp" line="11 2"/>10520 <location filename="../VBoxManageUtils.cpp" line="111"/> 10763 10521 <source>unknown type %RU32</source> 10764 10522 <translation type="unfinished"></translation> 10765 10523 </message> 10766 10524 <message> 10767 <location filename="../VBoxManageUtils.cpp" line="11 7"/>10525 <location filename="../VBoxManageUtils.cpp" line="116"/> 10768 10526 <source>Interface "%s" is of %s</source> 10769 10527 <translation type="unfinished"></translation> 10770 10528 </message> 10771 10529 <message> 10772 <location filename="../VBoxManageUtils.cpp" line="12 1"/>10530 <location filename="../VBoxManageUtils.cpp" line="120"/> 10773 10531 <source>Interface "%s" doesn't seem to exist</source> 10774 10532 <translation type="unfinished"></translation> … … 10778 10536 <name>VBoxManage</name> 10779 10537 <message> 10780 <location filename="../VBoxManage.cpp" line="3 31"/>10781 <location filename="../VBoxManage.cpp" line="49 9"/>10538 <location filename="../VBoxManage.cpp" line="327"/> 10539 <location filename="../VBoxManage.cpp" line="495"/> 10782 10540 <source>Progress object failure: %Rhrc 10783 10541 </source> … … 10785 10543 </message> 10786 10544 <message> 10787 <location filename="../VBoxManage.cpp" line="34 8"/>10545 <location filename="../VBoxManage.cpp" line="344"/> 10788 10546 <source>Failed to get progress description: %Rhrc 10789 10547 </source> … … 10791 10549 </message> 10792 10550 <message> 10793 <location filename="../VBoxManage.cpp" line="41 5"/>10551 <location filename="../VBoxManage.cpp" line="411"/> 10794 10552 <source>(%u/%u) %ls %02u%% => %02u%% (%d s remaining) 10795 10553 </source> … … 10797 10555 </message> 10798 10556 <message> 10557 <location filename="../VBoxManage.cpp" line="481"/> 10558 <source>CANCELED 10559 </source> 10560 <translation type="unfinished"></translation> 10561 </message> 10562 <message> 10799 10563 <location filename="../VBoxManage.cpp" line="485"/> 10800 <source>CANCELED10801 </source>10802 <translation type="unfinished"></translation>10803 </message>10804 <message>10805 <location filename="../VBoxManage.cpp" line="489"/>10806 10564 <source>Progress state: %Rhrc 10807 10565 </source> … … 10809 10567 </message> 10810 10568 <message> 10811 <location filename="../VBoxManage.cpp" line="6 81"/>10569 <location filename="../VBoxManage.cpp" line="672"/> 10812 10570 <source>Password expected</source> 10813 10571 <translation type="unfinished"></translation> 10814 10572 </message> 10815 10573 <message> 10816 <location filename="../VBoxManage.cpp" line="68 9"/>10574 <location filename="../VBoxManage.cpp" line="680"/> 10817 10575 <source>No password file specified</source> 10818 10576 <translation type="unfinished"></translation> 10819 10577 </message> 10820 10578 <message> 10821 <location filename="../VBoxManage.cpp" line="6 97"/>10579 <location filename="../VBoxManage.cpp" line="687"/> 10822 10580 <source>Only one response file allowed</source> 10823 10581 <translation type="unfinished"></translation> 10824 10582 </message> 10825 10583 <message> 10826 <location filename="../VBoxManage.cpp" line=" 705"/>10584 <location filename="../VBoxManage.cpp" line="695"/> 10827 10585 <source>Error reading response file '%s': %Rrc</source> 10828 10586 <translation type="unfinished"></translation> 10829 10587 </message> 10830 10588 <message> 10831 <location filename="../VBoxManage.cpp" line="7 10"/>10589 <location filename="../VBoxManage.cpp" line="700"/> 10832 10590 <source>Invalid response file ('%s') encoding: %Rrc</source> 10833 10591 <translation type="unfinished"></translation> 10834 10592 </message> 10835 10593 <message> 10836 <location filename="../VBoxManage.cpp" line="7 18"/>10594 <location filename="../VBoxManage.cpp" line="708"/> 10837 10595 <source>Failed to parse response file '%s' (bourne shell style): %Rrc</source> 10838 10596 <translation type="unfinished"></translation> 10839 10597 </message> 10840 10598 <message> 10841 <location filename="../VBoxManage.cpp" line="7 24"/>10599 <location filename="../VBoxManage.cpp" line="714"/> 10842 10600 <source>out of memory</source> 10843 10601 <translation type="unfinished"></translation> 10844 10602 </message> 10845 10603 <message> 10846 <location filename="../VBoxManage.cpp" line="7 68"/>10604 <location filename="../VBoxManage.cpp" line="755"/> 10847 10605 <source>commands: 10848 10606 </source> … … 10850 10608 </message> 10851 10609 <message> 10852 <location filename="../VBoxManage.cpp" line="7 77"/>10610 <location filename="../VBoxManage.cpp" line="762"/> 10853 10611 <source>Invalid command '%s'</source> 10854 10612 <translation type="unfinished"></translation> 10855 10613 </message> 10856 10614 <message> 10857 <location filename="../VBoxManage.cpp" line="7 96"/>10615 <location filename="../VBoxManage.cpp" line="781"/> 10858 10616 <source>Failed to initialize COM because the global settings directory '%s' is not accessible!</source> 10859 10617 <translation type="unfinished"></translation> 10860 10618 </message> 10861 10619 <message> 10862 <location filename="../VBoxManage.cpp" line="7 99"/>10620 <location filename="../VBoxManage.cpp" line="784"/> 10863 10621 <source>Failed to initialize COM! (hrc=%Rhrc)</source> 10864 10622 <translation type="unfinished"></translation> 10865 10623 </message> 10866 10624 <message> 10867 <location filename="../VBoxManage.cpp" line="8 82"/>10625 <location filename="../VBoxManage.cpp" line="867"/> 10868 10626 <source>Failed to create a session object!</source> 10869 10627 <translation type="unfinished"></translation> 10870 10628 </message> 10871 10629 <message> 10872 <location filename="../VBoxManage.cpp" line="8 92"/>10630 <location filename="../VBoxManage.cpp" line="877"/> 10873 10631 <source>Failed to create the VirtualBox object!</source> 10874 10632 <translation type="unfinished"></translation> 10875 10633 </message> 10876 10634 <message> 10877 <location filename="../VBoxManage.cpp" line="8 96"/>10635 <location filename="../VBoxManage.cpp" line="881"/> 10878 10636 <source>Most likely, the VirtualBox COM server is not running or failed to start.</source> 10879 10637 <translation type="unfinished"></translation> -
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r94623 r94643 255 255 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE) \ 256 256 $(if $(VBOX_WITH_QHELP_VIEWER),VBOX_WITH_QHELP_VIEWER) \ 257 $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,) 257 $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,) \ 258 $(if $(VBOX_WITH_UPDATE_AGENT),VBOX_WITH_UPDATE_AGENT) 258 259 ifdef VBOX_WITH_DEBUGGER_GUI 259 260 UICommon_DEFS += VBOX_WITH_DEBUGGER_GUI -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r94516 r94643 4316 4316 connect(this, &UINotificationProgress::sigProgressFinished, 4317 4317 this, &UINotificationProgressNewVersionChecker::sltHandleProgressFinished); 4318 CHost comHost = uiCommon().virtualBox().GetHost(); 4318 4319 #ifdef VBOX_WITH_UPDATE_AGENT 4320 CHost comHost = uiCommon().host(); 4319 4321 if (!comHost.isNull()) 4320 m_comUpdateChecker = comHost.GetUpdate(); 4322 m_comUpdateHost = comHost.GetUpdateHost(); 4323 #endif /* VBOX_WITH_UPDATE_AGENT */ 4321 4324 } 4322 4325 4323 4326 QString UINotificationProgressNewVersionChecker::name() const 4324 4327 { 4325 return UINotificationProgress::tr("Check for New Version ..."); 4328 #ifdef VBOX_WITH_UPDATE_AGENT 4329 if (m_comUpdateHost.isOk()) 4330 return UINotificationProgress::tr("Checking for new version of %s ...", m_comUpdateHost.GetName().toLocal8Bit().data()); 4331 #endif /* VBOX_WITH_UPDATE_AGENT */ 4332 return UINotificationProgress::tr("Checking for new version ..."); 4326 4333 } 4327 4334 … … 4333 4340 CProgress UINotificationProgressNewVersionChecker::createProgress(COMResult &comResult) 4334 4341 { 4335 if (!m_comUpdateChecker.isOk()) 4342 #ifdef VBOX_WITH_UPDATE_AGENT 4343 if (!m_comUpdateHost.isOk()) 4336 4344 return CProgress(); 4337 4345 4338 CProgress comProgress = m_comUpdateChecker.UpdateCheck(KUpdateCheckType_VirtualBox); 4339 comResult = m_comUpdateChecker; 4340 4341 return comProgress; 4346 CProgress comProgress = m_comUpdateHost.Check(); 4347 comResult = m_comUpdateHost; 4348 4349 return comProgress; 4350 #else 4351 return CProgress(); 4352 #endif /* VBOX_WITH_UPDATE_AGENT */ 4342 4353 } 4343 4354 4344 4355 void UINotificationProgressNewVersionChecker::sltHandleProgressFinished() 4345 4356 { 4346 if (m_comUpdateChecker.isNull() && !m_comUpdateChecker.isOk()) 4357 #ifdef VBOX_WITH_UPDATE_AGENT 4358 if (m_comUpdateHost.isNull() && !m_comUpdateHost.isOk()) 4347 4359 return; 4348 4360 4349 bool fUpdateAvailable = m_comUpdateChecker.GetUpdateResponse();4350 if (!m_comUpdate Checker.isOk())4361 bool const fUpdateAvailable = m_comUpdateHost.GetState() == UpdateState_Available; /** @todo Handle other states. */ 4362 if (!m_comUpdateHost.isOk()) 4351 4363 return; 4352 4364 4353 4365 if (fUpdateAvailable) 4354 4366 { 4355 QString strVersion = m_comUpdate Checker.GetUpdateVersion();4356 if (!m_comUpdate Checker.isOk())4367 QString strVersion = m_comUpdateHost.GetVersion(); 4368 if (!m_comUpdateHost.isOk()) 4357 4369 return; 4358 4370 4359 QString strURL = m_comUpdate Checker.GetUpdateURL();4360 if (!m_comUpdate Checker.isOk())4371 QString strURL = m_comUpdateHost.GetDownloadUrl(); 4372 if (!m_comUpdateHost.isOk()) 4361 4373 return; 4362 4374 … … 4368 4380 UINotificationMessage::showUpdateNotFound(); 4369 4381 } 4382 #endif /* VBOX_WITH_UPDATE_AGENT */ 4370 4383 } 4371 4384 -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h
r94516 r94643 42 42 #include "CGuest.h" 43 43 #include "CHost.h" 44 #include "CHostUpdate.h"45 44 #include "CHostNetworkInterface.h" 46 45 #include "CMachine.h" … … 49 48 #include "CSnapshot.h" 50 49 #include "CStringArray.h" 50 #ifdef VBOX_WITH_UPDATE_AGENT 51 # include "CUpdateAgent.h" 52 #endif 51 53 #include "CVFSExplorer.h" 52 54 #include "CVirtualSystemDescription.h" … … 2709 2711 private: 2710 2712 2711 CHostUpdate m_comUpdateChecker; 2713 #ifdef VBOX_WITH_UPDATE_AGENT 2714 CUpdateAgent m_comUpdateHost; 2715 #endif 2712 2716 /** Holds whether this customer has forced privelegies. */ 2713 bool m_fForcedCall;2717 bool m_fForcedCall; 2714 2718 }; 2715 2719 -
trunk/src/VBox/Main/Makefile.kmk
r94521 r94643 146 146 VBOX_MAIN_DEFS += VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS 147 147 endif 148 endif 149 ifdef VBOX_WITH_UPDATE_AGENT 150 VBOX_MAIN_DEFS += VBOX_WITH_UPDATE_AGENT 148 151 endif 149 152 ifdef VBOX_WITH_USB_CARDREADER … … 522 525 $(if $(VBOX_USB_WITH_INOTIFY),VBOX_USB_WITH_INOTIFY,) \ 523 526 $(if $(VBOX_WITH_NAT_SERVICE),VBOX_WITH_NAT_SERVICE,) \ 524 $(if $(VBOX_WITH_ LIBCURL),VBOX_WITH_HOST_UPDATE_CHECK,) \527 $(if $(VBOX_WITH_UPDATE_AGENT),VBOX_WITH_UPDATE_AGENT,) \ 525 528 $(if $(VBOX_WITH_IOMMU_AMD),VBOX_WITH_IOMMU_AMD,) \ 526 529 $(if $(VBOX_WITH_IOMMU_INTEL),VBOX_WITH_IOMMU_INTEL,) \ … … 629 632 src-server/HostNetworkInterfaceImpl.cpp \ 630 633 src-server/HostPower.cpp \ 631 src-server/HostUpdateImpl.cpp\634 $(if $(VBOX_WITH_UPDATE_AGENT),src-server/UpdateAgentImpl.cpp,) \ 632 635 src-server/HostVideoInputDeviceImpl.cpp \ 633 636 src-server/HostDrivePartitionImpl.cpp \ … … 1862 1865 $(VBoxAPIWrap_0_OUTDIR)/apiwrappers-sources-odd \ 1863 1866 $(VBoxAPIWrap_0_OUTDIR)/apiwrappers-sources-even 1864 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r94601 r94643 11034 11034 11035 11035 <enum 11036 name="UpdateCheckType" 11037 uuid="ac34bb91-6739-4791-b30f-ce84e57928bb" 11038 > 11039 <desc> 11040 Which type of software to check whether a new version exists. 11041 </desc> 11042 <const name="None" value="0"> 11043 <desc>No flags specified. Do not use this.</desc> 11044 </const> 11045 <const name="VirtualBox" value="1"/> 11046 <const name="ExtensionPack" value="2"/> 11047 <const name="GuestAdditions" value="3"/> 11036 name="UpdateChannel" 11037 uuid="9f1562a5-e47a-496b-a818-66776f06ce40" 11038 > 11039 <const name="Invalid" value="0"> 11040 <desc>No channel specified. Do not use this.</desc> 11041 </const> 11042 <const name="Stable" value="1"> 11043 <desc>All stable releases (maintenance and minor releases within the same major release)</desc> 11044 </const> 11045 <const name="All" value="2"> 11046 <desc>All stable releases, including major versions.</desc> 11047 </const> 11048 <const name="WithBetas" value="3"> 11049 <desc>All stable and major releases, including beta versions.</desc> 11050 </const> 11051 <const name="WithTesting" value="4"> 11052 <desc>All stable, major and beta releases, including testing versions.</desc> 11053 </const> 11048 11054 </enum> 11049 11055 11056 <enum 11057 name="UpdateSeverity" 11058 uuid="359a5fee-8a06-4306-8068-2f2dd5cde06f" 11059 > 11060 <const name="Invalid" value="0"> 11061 <desc>No severity specified. Do not use this.</desc> 11062 </const> 11063 <const name="Critical" value="1"> 11064 <desc>Update contains critical patches.</desc> 11065 </const> 11066 <const name="Major" value="2"> 11067 <desc>Update contains a major version.</desc> 11068 </const> 11069 <const name="Minor" value="3"> 11070 <desc>Update contains a minor version.</desc> 11071 </const> 11072 <const name="Testing" value="4"> 11073 <desc>Update contains a testing version. Use with caution!</desc> 11074 </const> 11075 </enum> 11076 11077 <enum 11078 name="UpdateState" 11079 uuid="6623e363-c892-45f8-80cb-4e8ffd9b4e60" 11080 > 11081 <const name="Invalid" value="0"> 11082 <desc>Invalid / not set update state.</desc> 11083 </const> 11084 <const name="Available" value="1"> 11085 <desc>An uppdate is available.</desc> 11086 </const> 11087 <const name="NotAvailable" value="2"> 11088 <desc>No update available.</desc> 11089 </const> 11090 <const name="Downloading" value="3"> 11091 <desc>Update is being downloaded currently.</desc> 11092 </const> 11093 <const name="Downloaded" value="4"> 11094 <desc>Update has been successfully downloaded.</desc> 11095 </const> 11096 <const name="Installing" value="5"> 11097 <desc>Update is being installed currently.</desc> 11098 </const> 11099 <const name="Installed" value="6"> 11100 <desc>Update has been successfully installed.</desc> 11101 </const> 11102 <const name="UserInteraction" value="7"> 11103 <desc>Update requires user interaction to continue.</desc> 11104 </const> 11105 <const name="Canceled" value="8"> 11106 <desc>Update has been canceled.</desc> 11107 </const> 11108 <const name="Maintenance" value="9"> 11109 <desc>Update service currently is in maintenance mode.</desc> 11110 </const> 11111 <const name="Error" value="10"> 11112 <desc>An error occurred while updating.</desc> 11113 </const> 11114 </enum> 11115 11050 11116 <interface 11051 name="I HostUpdate" extends="$unknown"11052 uuid=" 6fa2671b-0547-448e-bc7c-94e9e173bf57"11117 name="IUpdateAgent" extends="$unknown" 11118 uuid="de87048a-036c-4a27-a0f8-73b51e66c2ca" 11053 11119 wsmap="managed" 11054 11120 rest="managed" … … 11057 11123 11058 11124 <desc> 11059 Represents the state of the update checking logic (a singleton returned 11060 by <link to="IHost::update" /> attribute). 11125 Abstract parent interface for handling updateable software components. 11061 11126 </desc> 11062 11127 11063 <method name="updateCheck"> 11064 <desc> 11065 Check for a newer version of software based on the 'checkType' value. 11066 </desc> 11067 <param name="checkType" type="UpdateCheckType" dir="in"> 11068 <desc>The type of software to check.</desc> 11069 </param> 11128 <method name="check"> 11129 <desc> 11130 Checks for an update. 11131 </desc> 11070 11132 <param name="progress" type="IProgress" dir="return"> 11071 11133 <desc>Progress object to track operation completion.</desc> … … 11073 11135 </method> 11074 11136 11075 <attribute name="updateResponse" type="boolean" readonly="yes"> 11076 <desc> 11077 The response from the <link to="IHostUpdate::updateCheck"/> method. 11078 </desc> 11079 </attribute> 11080 11081 <attribute name="updateVersion" type="wstring" readonly="yes"> 11082 <desc> 11083 The newer version of the software returned by calling the update check 11084 <link to="IHostUpdate::updateCheck"/> method. 11085 </desc> 11086 </attribute> 11087 11088 <attribute name="updateURL" type="wstring" readonly="yes"> 11089 <desc> 11090 The download URL of the newer software version returned by calling the 11091 update check <link to="IHostUpdate::updateCheck"/> method. 11092 </desc> 11093 </attribute> 11094 11095 <attribute name="updateCheckNeeded" type="boolean" readonly="yes"> 11096 <desc> 11097 Is it time to check for a newer version of software? 11137 <method name="download"> 11138 <desc> 11139 Downloads the update. 11140 </desc> 11141 <result name="VBOX_E_NOT_SUPPORTED"> 11142 Downloading update not supported. 11143 </result> 11144 <param name="progress" type="IProgress" dir="return"> 11145 <desc>Progress object to track operation completion.</desc> 11146 </param> 11147 </method> 11148 11149 <method name="install"> 11150 <desc> 11151 Installs the update. 11152 </desc> 11153 <result name="VBOX_E_NOT_SUPPORTED"> 11154 Installing update not supported. 11155 </result> 11156 <param name="progress" type="IProgress" dir="return"> 11157 <desc>Progress object to track operation completion.</desc> 11158 </param> 11159 </method> 11160 11161 <method name="rollback"> 11162 <desc> 11163 Rolls back installing the update. 11164 </desc> 11165 <result name="VBOX_E_NOT_SUPPORTED"> 11166 Rolling back update not supported. 11167 </result> 11168 </method> 11169 11170 <attribute name="name" type="wstring" readonly="yes"> 11171 <desc> 11172 Name of the update component. 11173 </desc> 11174 </attribute> 11175 11176 <attribute name="order" type="unsigned long" readonly="yes"> 11177 <desc> 11178 Order hint the update component needs to run at, in conjunction with other update components. 11179 </desc> 11180 <result name="0"> 11181 No order preferred / disabled. 11182 </result> 11183 <note> 11184 Lower numbers mean higher priority. 0 means no order or disabled. 11185 </note> 11186 </attribute> 11187 11188 <attribute name="dependsOn" type="wstring" readonly="yes" safearray="yes"> 11189 <desc> 11190 Array of other update component names this component depends on before being able to get installed. 11191 </desc> 11192 <note> 11193 Ordered entries, highest priority first. No dependencies when array is empty. 11194 Dependency entries also can contain a minimum version number after the update component name, separated by an "@", 11195 e.g. "Guest [email protected]_BETA2". 11196 </note> 11197 </attribute> 11198 11199 <attribute name="version" type="wstring" readonly="yes"> 11200 <result name="VBOX_E_INVALID_OBJECT_STATE"> 11201 Result not available yet. 11202 </result> 11203 <desc> 11204 Version the update contains. 11205 </desc> 11206 </attribute> 11207 11208 <attribute name="downloadUrl" type="wstring" readonly="yes"> 11209 <result name="VBOX_E_INVALID_OBJECT_STATE"> 11210 Result not available yet. 11211 </result> 11212 <desc> 11213 Download URL of the update. 11214 </desc> 11215 </attribute> 11216 11217 <attribute name="webUrl" type="wstring" readonly="yes"> 11218 <result name="VBOX_E_INVALID_OBJECT_STATE"> 11219 Result not available yet. 11220 </result> 11221 <desc> 11222 Web URL of the update. 11223 </desc> 11224 </attribute> 11225 11226 <attribute name="releaseNotes" type="wstring" readonly="yes"> 11227 <result name="VBOX_E_INVALID_OBJECT_STATE"> 11228 Result not available yet. 11229 </result> 11230 <desc> 11231 Release notes of the update. 11232 </desc> 11233 </attribute> 11234 11235 <attribute name="enabled" type="boolean" readonly="no"> 11236 <desc> 11237 Enables or disables the update component. 11238 </desc> 11239 </attribute> 11240 11241 <attribute name="hidden" type="boolean" readonly="yes"> 11242 <desc> 11243 Whether the update component shall be hidden from the user or not. 11244 </desc> 11245 </attribute> 11246 11247 <attribute name="state" type="UpdateState" readonly="yes"> 11248 <desc> 11249 Returns the current update state. 11250 </desc> 11251 </attribute> 11252 11253 <attribute name="checkFrequency" type="unsigned long" readonly="no"> 11254 <desc> 11255 The update check frequency (in seconds). 11256 </desc> 11257 </attribute> 11258 11259 <attribute name="channel" type="UpdateChannel" readonly="no"> 11260 <desc> 11261 Update channel to use for checking for updates. 11262 </desc> 11263 </attribute> 11264 11265 <attribute name="repositoryURL" type="wstring" readonly="no"> 11266 <desc> 11267 Update repository URL to use for retrieving the update. 11268 </desc> 11269 <note> 11270 Only repositories with the https:// URL scheme are allowed. 11271 </note> 11272 </attribute> 11273 11274 <attribute name="proxyMode" type="ProxyMode" readonly="no"> 11275 <desc> 11276 Proxy mode to use. 11277 </desc> 11278 </attribute> 11279 11280 <attribute name="proxyURL" type="wstring" readonly="no"> 11281 <desc> 11282 Proxy URL to use. 11283 </desc> 11284 </attribute> 11285 11286 <attribute name="lastCheckDate" type="wstring" readonly="yes"> 11287 <desc> 11288 Date of last update check. 11289 </desc> 11290 <note> 11291 Uses ISO date. 11292 </note> 11293 </attribute> 11294 11295 <attribute name="checkCount" type="unsigned long" readonly="yes"> 11296 <desc> 11297 How many times the update check has happened already. 11298 </desc> 11299 </attribute> 11300 </interface> 11301 11302 <interface 11303 name="IHostUpdateAgent" extends="IUpdateAgent" 11304 uuid="26934cbf-5bb6-4a27-9599-83ca057905d4" 11305 wsmap="managed" 11306 reservedMethods="12" reservedAttributes="24" 11307 > 11308 <desc> 11309 Implementation of the <link to="IUpdateAgent" /> object 11310 for VirtualBox host updates. 11311 </desc> 11312 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 11313 </interface> 11314 11315 <interface 11316 name="IUpdateAgentEvent" extends="$unknown" 11317 uuid="aa1987dc-6402-4e3c-a0e9-68e87d301a83" 11318 wsmap="managed" 11319 reservedAttributes="4" 11320 > 11321 <desc> 11322 Abstract base interface for update agent events. 11323 </desc> 11324 11325 <attribute name="eventSource" type="IEventSource" readonly="yes"> 11326 <desc> 11327 Event source for update agent events. 11328 </desc> 11329 </attribute> 11330 11331 </interface> 11332 11333 <interface 11334 name="IUpdateAgentSettingsChangedEvent" extends="IUpdateAgentEvent" 11335 uuid="7bfd3718-b2ad-4112-8a86-328ebeb7b091" 11336 wsmap="managed" 11337 reservedMethods="4" reservedAttributes="8" 11338 > 11339 <desc> 11340 Notification when update agent settings have been changed. 11341 </desc> 11342 </interface> 11343 11344 <interface 11345 name="IUpdateAgentErrorEvent" extends="IUpdateAgentEvent" 11346 uuid="2dad1ad8-78be-441d-b4fa-9cff25ee16b2" 11347 wsmap="managed" 11348 reservedAttributes="4" 11349 > 11350 <desc> 11351 </desc> 11352 11353 <attribute name="msg" type="wstring" readonly="yes"> 11354 <desc> 11355 Error message in human readable format. 11356 </desc> 11357 </attribute> 11358 11359 <attribute name="rcError" type="long" readonly="yes"> 11360 <desc> 11361 IPRT-style error code. 11362 </desc> 11363 </attribute> 11364 11365 </interface> 11366 11367 <interface 11368 name="IUpdateAgentAvailableEvent" extends="IUpdateAgentEvent" 11369 uuid="7b931bfa-3b2b-4220-87ce-86cb0dee7ed1" 11370 wsmap="managed" 11371 reservedAttributes="4" 11372 > 11373 <desc> 11374 Notification when an update is available. 11375 </desc> 11376 11377 <attribute name="version" type="wstring" readonly="yes"> 11378 <desc> 11379 Version of the update. 11380 </desc> 11381 </attribute> 11382 11383 <attribute name="channel" type="UpdateChannel" readonly="yes"> 11384 <desc> 11385 Channel containing the update. 11386 </desc> 11387 </attribute> 11388 11389 <attribute name="severity" type="UpdateSeverity" readonly="yes"> 11390 <desc> 11391 Severity of the update. 11392 </desc> 11393 </attribute> 11394 11395 <attribute name="downloadURL" type="wstring" readonly="yes"> 11396 <desc> 11397 Download URL of the update. 11398 </desc> 11399 </attribute> 11400 11401 <attribute name="webURL" type="wstring" readonly="yes"> 11402 <desc> 11403 Web URL of the update. 11404 </desc> 11405 </attribute> 11406 11407 <attribute name="releaseNotes" type="wstring" readonly="yes"> 11408 <desc> 11409 Release notes of the update. 11410 </desc> 11411 </attribute> 11412 11413 </interface> 11414 11415 <interface 11416 name="IUpdateAgentStateChangedEvent" extends="IUpdateAgentEvent" 11417 uuid="7da1b997-10ea-4690-99ff-df78bf309164" 11418 wsmap="managed" 11419 reservedAttributes="4" 11420 > 11421 <desc> 11422 </desc> 11423 11424 <attribute name="state" type="UpdateState" readonly="yes"> 11425 <desc> 11098 11426 </desc> 11099 11427 </attribute> … … 11780 12108 </method> 11781 12109 11782 <attribute name="update" type="IHostUpdate" readonly="yes"> 11783 <desc>The check for newer software object (singleton).</desc> 12110 <attribute name="updateHost" type="IUpdateAgent" readonly="yes"> 12111 <desc>Checks for new VirtualBox host versions.</desc> 12112 </attribute> 12113 12114 <attribute name="updateExtPack" type="IUpdateAgent" readonly="yes"> 12115 <desc>Checks for new VirtualBox Extension Pack versions.</desc> 12116 </attribute> 12117 12118 <attribute name="updateGuestAdditions" type="IUpdateAgent" readonly="yes"> 12119 <desc>Checks for new Guest Additions versions.</desc> 11784 12120 </attribute> 11785 12121 … … 11828 12164 </enum> 11829 12165 11830 <enum name="VBoxUpdateTarget" uuid="900d4a76-7b08-4af8-a453-f331e783eaee">11831 <desc> The preferred release type used for determining whether a newer version of VirtualBox is available. <link to="ISystemProperties::VBoxUpdateTarget"/></desc>11832 <const name="Stable" value="0">11833 <desc>Stable releases: new maintenance and minor releases within the same major release version. This is the default.</desc>11834 </const>11835 <const name="AllReleases" value="1">11836 <desc>All releases: new maintenance, minor, and major releases.</desc>11837 </const>11838 <const name="WithBetas" value="2">11839 <desc>With betas: new maintenance, minor, and major releases as well as beta releases.</desc>11840 </const>11841 </enum>11842 11843 12166 <interface 11844 12167 name="ISystemProperties" 11845 12168 extends="$unknown" 11846 uuid=" 31cdb11d-9bb0-455a-b2ca-a1a5b1177912"12169 uuid="e6bf9165-6685-4ebe-96cd-9c1b7ab7f776" 11847 12170 wsmap="managed" 11848 12171 rest="managed" … … 12371 12694 Returns an array of officially supported values for enum <link to="ChipsetType"/>, 12372 12695 in the sense of what is e.g. worth offering in the VirtualBox GUI. 12373 </desc>12374 </attribute>12375 12376 <attribute name="VBoxUpdateEnabled" type="boolean">12377 <desc> Is the VirtualBox update check enabled?</desc>12378 </attribute>12379 12380 <attribute name="VBoxUpdateFrequency" type="unsigned long">12381 <desc> How often should a check for a newer version of VirtualBox be made? (in days)</desc>12382 </attribute>12383 12384 <attribute name="VBoxUpdateLastCheckDate" type="wstring">12385 <desc>12386 When was the update check last performed? If updating this attribute the12387 string must be in ISO 8601 format (e.g. 2020-05-11T21:13:39.348416000Z).12388 </desc>12389 </attribute>12390 12391 <attribute name="VBoxUpdateTarget" type="VBoxUpdateTarget">12392 <desc> The preferred release type used for determining whether a newer version of VirtualBox is available.</desc>12393 </attribute>12394 12395 <attribute name="VBoxUpdateCount" type="unsigned long">12396 <desc> The count of update check attempts.</desc>12397 </attribute>12398 12399 <attribute name="supportedVBoxUpdateTargetTypes" type="VBoxUpdateTarget" safearray="yes" readonly="yes">12400 <desc>12401 Returns an array of officially supported values for enum <link to="VBoxUpdateTarget"/>.12402 12696 </desc> 12403 12697 </attribute> -
trunk/src/VBox/Main/include/HostImpl.h
r93115 r94643 119 119 HRESULT getAcceleration3DAvailable(BOOL *aAcceleration3DAvailable); 120 120 HRESULT getVideoInputDevices(std::vector<ComPtr<IHostVideoInputDevice> > &aVideoInputDevices); 121 HRESULT getUpdate(ComPtr<IHostUpdate> &aUpdate); 121 HRESULT getUpdateHost(ComPtr<IUpdateAgent> &aUpdate); 122 HRESULT getUpdateExtPack(ComPtr<IUpdateAgent> &aUpdate); 123 HRESULT getUpdateGuestAdditions(ComPtr<IUpdateAgent> &aUpdate); 122 124 HRESULT getUpdateResponse(BOOL *aUpdateNeeded); 123 125 HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion); … … 168 170 169 171 HRESULT removeUSBDeviceSource(const com::Utf8Str &aId); 170 HRESULT UpdateCheck(UpdateCheckType_T aCheckType,171 ComPtr<IProgress> &aProgress);172 172 173 173 // Internal Methods. -
trunk/src/VBox/Main/include/SystemPropertiesImpl.h
r93115 r94643 143 143 HRESULT getSupportedChipsetTypes(std::vector<ChipsetType_T> &aSupportedChipsetTypes) RT_OVERRIDE; 144 144 HRESULT getSupportedIommuTypes(std::vector<IommuType_T> &aSupportedIommuTypes) RT_OVERRIDE; 145 HRESULT getSupportedVBoxUpdateTargetTypes(std::vector<VBoxUpdateTarget_T> &aSupportedVBoxUpdateTargetTypes) RT_OVERRIDE;146 HRESULT getVBoxUpdateEnabled(BOOL *aVBoxUpdateEnabled) RT_OVERRIDE;147 HRESULT setVBoxUpdateEnabled(BOOL aVBoxUpdateEnabled) RT_OVERRIDE;148 HRESULT getVBoxUpdateFrequency(ULONG *aVBoxUpdateFrequency) RT_OVERRIDE;149 HRESULT setVBoxUpdateFrequency(ULONG aVBoxUpdateFrequency) RT_OVERRIDE;150 HRESULT getVBoxUpdateLastCheckDate(com::Utf8Str &aVBoxUpdateLastCheckDate) RT_OVERRIDE;151 HRESULT setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate) RT_OVERRIDE;152 HRESULT getVBoxUpdateTarget(VBoxUpdateTarget_T *aVBoxUpdateTarget) RT_OVERRIDE;153 HRESULT setVBoxUpdateTarget(VBoxUpdateTarget_T aVBoxUpdateTarget) RT_OVERRIDE;154 HRESULT getVBoxUpdateCount(ULONG *aVBoxUpdateCount) RT_OVERRIDE;155 HRESULT setVBoxUpdateCount(ULONG aVBoxUpdateCount) RT_OVERRIDE;156 145 HRESULT getLanguageId(com::Utf8Str &aLanguageId) RT_OVERRIDE; 157 146 HRESULT setLanguageId(const com::Utf8Str &aLanguageId) RT_OVERRIDE; … … 199 188 HRESULT i_setDefaultAdditionsISO(const com::Utf8Str &aPath); 200 189 HRESULT i_setDefaultFrontend(const com::Utf8Str &aDefaultFrontend); 201 HRESULT i_setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate);202 190 203 191 VirtualBox * const mParent; -
trunk/src/VBox/Main/include/UpdateAgentImpl.h
r94642 r94643 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox COM class implementation3 * Update agent COM class implementation - Header 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef MAIN_INCLUDED_ HostUpdateImpl_h19 #define MAIN_INCLUDED_ HostUpdateImpl_h18 #ifndef MAIN_INCLUDED_UpdateAgentImpl_h 19 #define MAIN_INCLUDED_UpdateAgentImpl_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once 22 22 #endif 23 23 24 #include "HostUpdateWrap.h" 25 #include <iprt/http.h> /* RTHTTP */ 24 #include <iprt/http.h> 26 25 26 #include <VBox/settings.h> 27 27 28 class ATL_NO_VTABLE HostUpdate 29 : public HostUpdateWrap 28 #include "UpdateAgentWrap.h" 29 #include "HostUpdateAgentWrap.h" 30 31 class UpdateAgentTask; 32 struct UpdateAgentTaskParms; 33 34 struct UpdateAgentTaskResult 35 { 36 Utf8Str strVer; 37 Utf8Str strWebUrl; 38 Utf8Str strDownloadUrl; 39 UpdateSeverity_T enmSeverity; 40 Utf8Str strReleaseNotes; 41 }; 42 43 class ATL_NO_VTABLE UpdateAgent 44 : public UpdateAgentWrap 30 45 { 31 46 public: 32 DECLARE_COMMON_CLASS_METHODS( HostUpdate)47 DECLARE_COMMON_CLASS_METHODS(UpdateAgent) 33 48 49 /** @name COM and internal init/term/mapping cruft. 50 * @{ */ 34 51 HRESULT FinalConstruct(); 35 52 void FinalRelease(); 36 53 37 // public initializer/uninitializer for internal purposes only38 54 HRESULT init(VirtualBox *aVirtualBox); 39 void uninit(); 55 void uninit(void); 56 /** @} */ 40 57 41 private: 42 /** @name wrapped IHostUpdate attributes and methods 58 /** @name Public methods for internal purposes only 59 * (ensure there is a caller and a read lock before calling them!) */ 60 HRESULT i_loadSettings(const settings::UpdateAgent &data); 61 HRESULT i_saveSettings(settings::UpdateAgent &data); 62 63 virtual HRESULT i_setCheckCount(ULONG aCount); 64 virtual HRESULT i_setLastCheckDate(const com::Utf8Str &aDate); 65 /** @} */ 66 67 protected: 68 /** @name Wrapped IUpdateAgent attributes and methods 43 69 * @{ */ 44 HRESULT updateCheck(UpdateCheckType_T aCheckType, ComPtr<IProgress> &aProgress) RT_OVERRIDE; 45 HRESULT getUpdateResponse(BOOL *aUpdateNeeded) RT_OVERRIDE; 46 HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion) RT_OVERRIDE; 47 HRESULT getUpdateURL(com::Utf8Str &aUpdateURL) RT_OVERRIDE; 48 HRESULT getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded) RT_OVERRIDE; 70 virtual HRESULT check(ComPtr<IProgress> &aProgress) RT_OVERRIDE = 0; 71 virtual HRESULT download(ComPtr<IProgress> &aProgress) RT_OVERRIDE; 72 virtual HRESULT install(ComPtr<IProgress> &aProgress) RT_OVERRIDE; 73 virtual HRESULT rollback(void) RT_OVERRIDE; 74 75 virtual HRESULT getName(com::Utf8Str &aName); 76 virtual HRESULT getOrder(ULONG *aOrder); 77 virtual HRESULT getDependsOn(std::vector<com::Utf8Str> &aDeps); 78 virtual HRESULT getVersion(com::Utf8Str &aVer); 79 virtual HRESULT getDownloadUrl(com::Utf8Str &aUrl); 80 virtual HRESULT getWebUrl(com::Utf8Str &aUrl); 81 virtual HRESULT getReleaseNotes(com::Utf8Str &aRelNotes); 82 virtual HRESULT getEnabled(BOOL *aEnabled); 83 virtual HRESULT setEnabled(BOOL aEnabled); 84 virtual HRESULT getHidden(BOOL *aHidden); 85 virtual HRESULT getState(UpdateState_T *aState); 86 virtual HRESULT getCheckCount(ULONG *aCount); 87 virtual HRESULT getCheckFrequency(ULONG *aFreqSeconds); 88 virtual HRESULT setCheckFrequency(ULONG aFreqSeconds); 89 virtual HRESULT getChannel(UpdateChannel_T *aChannel); 90 virtual HRESULT setChannel(UpdateChannel_T aChannel); 91 virtual HRESULT getRepositoryURL(com::Utf8Str &aRepo); 92 virtual HRESULT setRepositoryURL(const com::Utf8Str &aRepo); 93 virtual HRESULT getProxyMode(ProxyMode_T *aMode); 94 virtual HRESULT setProxyMode(ProxyMode_T aMode); 95 virtual HRESULT getProxyURL(com::Utf8Str &aAddress); 96 virtual HRESULT setProxyURL(const com::Utf8Str &aAddress); 97 virtual HRESULT getLastCheckDate(com::Utf8Str &aData); 49 98 /** @} */ 50 99 51 #ifdef VBOX_WITH_HOST_UPDATE_CHECK 52 Utf8Str i_platformInfo(); 53 class UpdateCheckTask; 54 HRESULT i_updateCheckTask(UpdateCheckTask *pTask); 55 HRESULT i_checkForVBoxUpdate(); 56 HRESULT i_checkForVBoxUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent, 57 ComPtr<ISystemProperties> const &ptrSystemProperties); 58 #endif 100 /** @name Internal task callbacks. 101 * @{ */ 102 friend UpdateAgentTask; 103 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask) = 0; 104 /** @} */ 105 106 /** @name Static helper methods. 107 * @{ */ 108 static Utf8Str i_getPlatformInfo(void); 109 /** @} */ 110 111 protected: 112 VirtualBox * const m_VirtualBox; 59 113 60 114 /** @name Data members. 61 115 * @{ */ 62 VirtualBox * const mVirtualBox; 63 BOOL m_updateNeeded; 64 Utf8Str m_updateVersion; 65 Utf8Str m_updateURL; 116 settings::UpdateAgent *m; 117 118 struct Data 119 { 120 UpdateAgentTaskResult m_lastResult; 121 122 Utf8Str m_strName; 123 bool m_fHidden; 124 UpdateState_T m_enmState; 125 uint32_t m_uOrder; 126 127 Data(void) 128 { 129 m_fHidden = true; 130 m_enmState = UpdateState_Invalid; 131 m_uOrder = UINT32_MAX; 132 } 133 } mData; 66 134 /** @} */ 67 135 }; 68 136 69 #endif /* !MAIN_INCLUDED_HostUpdateImpl_h*/137 /** @todo Put this into an own module, e.g. HostUpdateAgentImpl.[cpp|h]. */ 70 138 71 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ 139 class ATL_NO_VTABLE HostUpdateAgent : 140 public UpdateAgent 141 { 142 public: 143 /** @name COM and internal init/term/mapping cruft. 144 * @{ */ 145 DECLARE_COMMON_CLASS_METHODS(HostUpdateAgent) 146 147 HRESULT init(VirtualBox *aVirtualBox); 148 void uninit(void); 149 150 HRESULT FinalConstruct(void); 151 void FinalRelease(void); 152 /** @} */ 153 154 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask); 155 156 private: 157 /** @name Implemented (pure) virtual methods from UpdateAgent. 158 * @{ */ 159 HRESULT check(ComPtr<IProgress> &aProgress); 160 /** @} */ 161 162 #ifdef VBOX_WITH_UPDATE_AGENT 163 HRESULT i_updateAgentTask(UpdateAgentTask *pTask); 164 HRESULT i_checkForUpdate(void); 165 HRESULT i_checkForUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent); 166 #endif 167 }; 168 169 #endif /* !MAIN_INCLUDED_UpdateAgentImpl_h */ 170 -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r94597 r94643 45 45 #include "LoggingNew.h" 46 46 #include "Performance.h" 47 #include "HostUpdateImpl.h" 47 #ifdef VBOX_WITH_UPDATE_AGENT 48 # include "UpdateAgentImpl.h" 49 #endif 48 50 49 51 #include "MediumImpl.h" … … 250 252 bool fPersistentConfigUpToDate; 251 253 252 /** The reference to the update check handler singleton. */ 253 const ComObjPtr<HostUpdate> pHostUpdate; 254 #ifdef VBOX_WITH_UPDATE_AGENT 255 /** Reference to the host update agent. */ 256 const ComObjPtr<HostUpdateAgent> pUpdateHost; 257 #endif 254 258 }; 255 259 … … 308 312 m->hostDnsMonitorProxy.init(m->pParent); 309 313 310 hrc = unconst(m->pHostUpdate).createObject(); 314 #ifdef VBOX_WITH_UPDATE_AGENT 315 hrc = unconst(m->pUpdateHost).createObject(); 311 316 if (SUCCEEDED(hrc)) 312 hrc = m->p HostUpdate->init(m->pParent);317 hrc = m->pUpdateHost->init(m->pParent); 313 318 AssertComRCReturn(hrc, hrc); 319 #endif 314 320 315 321 #if defined(RT_OS_WINDOWS) … … 502 508 m->hostDnsMonitorProxy.uninit(); 503 509 504 if (m->pHostUpdate) 505 { 506 m->pHostUpdate->uninit(); 507 unconst(m->pHostUpdate).setNull(); 508 } 510 #ifdef VBOX_WITH_UPDATE_AGENT 511 if (m->pUpdateHost) 512 { 513 m->pUpdateHost->uninit(); 514 unconst(m->pUpdateHost).setNull(); 515 } 516 #endif 509 517 510 518 #ifdef VBOX_WITH_USB … … 1992 2000 } 1993 2001 1994 1995 HRESULT Host::getUpdate(ComPtr<IHostUpdate> &aUpdate) 1996 { 1997 HRESULT hrc = m->p HostUpdate.queryInterfaceTo(aUpdate.asOutParam());2002 HRESULT Host::getUpdateHost(ComPtr<IUpdateAgent> &aUpdate) 2003 { 2004 #ifdef VBOX_WITH_UPDATE_AGENT 2005 HRESULT hrc = m->pUpdateHost.queryInterfaceTo(aUpdate.asOutParam()); 1998 2006 return hrc; 1999 } 2000 2007 #else 2008 RT_NOREF(aUpdate); 2009 ReturnComNotImplemented(); 2010 #endif 2011 } 2012 2013 HRESULT Host::getUpdateExtPack(ComPtr<IUpdateAgent> &aUpdate) 2014 { 2015 RT_NOREF(aUpdate); 2016 ReturnComNotImplemented(); 2017 } 2018 2019 HRESULT Host::getUpdateGuestAdditions(ComPtr<IUpdateAgent> &aUpdate) 2020 { 2021 RT_NOREF(aUpdate); 2022 ReturnComNotImplemented(); 2023 } 2001 2024 2002 2025 HRESULT Host::getHostDrives(std::vector<ComPtr<IHostDrive> > &aHostDrives) … … 2067 2090 HRESULT Host::i_saveSettings(settings::Host &data) 2068 2091 { 2069 #ifdef VBOX_WITH_USB2070 2092 AutoCaller autoCaller(this); 2071 2093 if (FAILED(autoCaller.rc())) … … 2074 2096 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 2075 2097 2098 HRESULT rc; 2099 2100 #ifdef VBOX_WITH_USB 2076 2101 data.llUSBDeviceFilters.clear(); 2077 2102 data.llUSBDeviceSources.clear(); … … 2087 2112 } 2088 2113 2089 return m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources); 2114 rc = m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources); 2115 ComAssertComRCRet(rc, rc); 2090 2116 #else 2091 2117 RT_NOREF(data); 2118 #endif /* VBOX_WITH_USB */ 2119 2120 #ifdef VBOX_WITH_UPDATE_AGENT 2121 rc = m->pUpdateHost->i_saveSettings(data.updateHost); 2122 ComAssertComRCRet(rc, rc); 2123 /** @todo Add handling for ExtPack and Guest Additions updates here later. See @bugref{7983}. */ 2124 #endif 2125 2092 2126 return S_OK; 2093 #endif /* VBOX_WITH_USB */2094 2095 2127 } 2096 2128 -
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r94578 r94643 117 117 m->fExclusiveHwVirt = true; 118 118 #endif 119 120 m->fVBoxUpdateEnabled = true;121 m->uVBoxUpdateCount = 0;122 m->uVBoxUpdateFrequency = 1; // daily is the default123 m->uVBoxUpdateTarget = VBoxUpdateTarget_Stable;124 119 125 120 HRESULT rc = S_OK; … … 1829 1824 } 1830 1825 1831 HRESULT SystemProperties::getSupportedVBoxUpdateTargetTypes(std::vector<VBoxUpdateTarget_T> &aSupportedVBoxUpdateTargetTypes)1832 {1833 static const VBoxUpdateTarget_T aVBoxUpdateTargetTypes[] =1834 {1835 VBoxUpdateTarget_Stable,1836 VBoxUpdateTarget_AllReleases,1837 VBoxUpdateTarget_WithBetas1838 };1839 aSupportedVBoxUpdateTargetTypes.assign(aVBoxUpdateTargetTypes,1840 aVBoxUpdateTargetTypes + RT_ELEMENTS(aVBoxUpdateTargetTypes));1841 return S_OK;1842 }1843 1844 1826 1845 1827 // public methods only for internal purposes … … 1877 1859 1878 1860 m->strLanguageId = data.strLanguageId; 1879 1880 m->fVBoxUpdateEnabled = data.fVBoxUpdateEnabled;1881 m->uVBoxUpdateFrequency = data.uVBoxUpdateFrequency;1882 m->strVBoxUpdateLastCheckDate = data.strVBoxUpdateLastCheckDate;1883 m->uVBoxUpdateTarget = data.uVBoxUpdateTarget;1884 m->uVBoxUpdateCount = data.uVBoxUpdateCount;1885 1861 1886 1862 rc = i_setAutostartDatabasePath(data.strAutostartDatabasePath); … … 2228 2204 } 2229 2205 2230 HRESULT SystemProperties::i_setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate)2231 {2232 m->strVBoxUpdateLastCheckDate = aVBoxUpdateLastCheckDate;2233 2234 return S_OK;2235 }2236 2237 HRESULT SystemProperties::getVBoxUpdateEnabled(BOOL *aVBoxUpdateEnabled)2238 {2239 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);2240 2241 *aVBoxUpdateEnabled = m->fVBoxUpdateEnabled;2242 2243 return S_OK;2244 }2245 2246 HRESULT SystemProperties::setVBoxUpdateEnabled(BOOL aVBoxUpdateEnabled)2247 {2248 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);2249 m->fVBoxUpdateEnabled = !!aVBoxUpdateEnabled;2250 alock.release();2251 2252 // VirtualBox::i_saveSettings() needs vbox write lock2253 AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);2254 HRESULT rc = mParent->i_saveSettings();2255 2256 return rc;2257 }2258 2259 HRESULT SystemProperties::getVBoxUpdateCount(ULONG *aVBoxUpdateCount)2260 {2261 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);2262 2263 *aVBoxUpdateCount = m->uVBoxUpdateCount;2264 2265 return S_OK;2266 }2267 2268 HRESULT SystemProperties::setVBoxUpdateCount(ULONG aVBoxUpdateCount)2269 {2270 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);2271 m->uVBoxUpdateCount = aVBoxUpdateCount;2272 alock.release();2273 2274 // VirtualBox::i_saveSettings() needs vbox write lock2275 AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);2276 HRESULT rc = mParent->i_saveSettings();2277 2278 return rc;2279 }2280 2281 2206 HRESULT SystemProperties::getLanguageId(com::Utf8Str &aLanguageId) 2282 2207 { … … 2338 2263 } 2339 2264 2340 HRESULT SystemProperties::getVBoxUpdateFrequency(ULONG *aVBoxUpdateFrequency)2341 {2342 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);2343 2344 *aVBoxUpdateFrequency = m->uVBoxUpdateFrequency;2345 2346 return S_OK;2347 }2348 2349 HRESULT SystemProperties::setVBoxUpdateFrequency(ULONG aVBoxUpdateFrequency)2350 {2351 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);2352 m->uVBoxUpdateFrequency = aVBoxUpdateFrequency;2353 alock.release();2354 2355 // VirtualBox::i_saveSettings() needs vbox write lock2356 AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);2357 HRESULT rc = mParent->i_saveSettings();2358 2359 return rc;2360 }2361 2362 HRESULT SystemProperties::getVBoxUpdateTarget(VBoxUpdateTarget_T *aVBoxUpdateTarget)2363 {2364 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);2365 VBoxUpdateTarget_T enmTarget = *aVBoxUpdateTarget = (VBoxUpdateTarget_T)m->uVBoxUpdateTarget;2366 AssertMsgReturn(enmTarget == VBoxUpdateTarget_Stable ||2367 enmTarget == VBoxUpdateTarget_AllReleases ||2368 enmTarget == VBoxUpdateTarget_WithBetas,2369 ("enmTarget=%d\n", enmTarget), E_UNEXPECTED);2370 return S_OK;2371 }2372 2373 HRESULT SystemProperties::setVBoxUpdateTarget(VBoxUpdateTarget_T aVBoxUpdateTarget)2374 {2375 /* Validate input. */2376 switch (aVBoxUpdateTarget)2377 {2378 case VBoxUpdateTarget_Stable:2379 case VBoxUpdateTarget_AllReleases:2380 case VBoxUpdateTarget_WithBetas:2381 break;2382 default:2383 return setError(E_INVALIDARG, tr("Invalid Target value: %d"), (int)aVBoxUpdateTarget);2384 }2385 2386 /* Set and write out settings. */2387 {2388 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);2389 m->uVBoxUpdateTarget = aVBoxUpdateTarget;2390 }2391 AutoWriteLock alock(mParent COMMA_LOCKVAL_SRC_POS); /* required for saving. */2392 return mParent->i_saveSettings();2393 }2394 2395 HRESULT SystemProperties::getVBoxUpdateLastCheckDate(com::Utf8Str &aVBoxUpdateLastCheckDate)2396 {2397 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);2398 aVBoxUpdateLastCheckDate = m->strVBoxUpdateLastCheckDate;2399 return S_OK;2400 }2401 2402 HRESULT SystemProperties::setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate)2403 {2404 /*2405 * Validate input.2406 */2407 Utf8Str const *pLastCheckDate = &aVBoxUpdateLastCheckDate;2408 RTTIMESPEC TimeSpec;2409 2410 if (pLastCheckDate->isEmpty() || !RTTimeSpecFromString(&TimeSpec, pLastCheckDate->c_str()))2411 return setErrorBoth(E_INVALIDARG, VERR_INVALID_PARAMETER,2412 tr("Invalid LastCheckDate value: '%s'. "2413 "Must be in ISO 8601 format (e.g. 2020-05-11T21:13:39.348416000Z)"), pLastCheckDate->c_str());2414 2415 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);2416 HRESULT rc = i_setVBoxUpdateLastCheckDate(aVBoxUpdateLastCheckDate);2417 alock.release();2418 if (SUCCEEDED(rc))2419 {2420 // VirtualBox::i_saveSettings() needs vbox write lock2421 AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);2422 rc = mParent->i_saveSettings();2423 }2424 2425 return rc;2426 } -
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94550 r94643 1 1 /* $Id$ */ 2 2 /** @file 3 * I HostUpdateCOM class implementations.3 * IUpdateAgent COM class implementations. 4 4 */ 5 5 … … 17 17 18 18 19 #define LOG_GROUP LOG_GROUP_MAIN_ HOSTUPDATE19 #define LOG_GROUP LOG_GROUP_MAIN_UPDATEAGENT 20 20 21 21 #include <iprt/cpp/utils.h> … … 36 36 37 37 #include "HostImpl.h" 38 #include " HostUpdateImpl.h"38 #include "UpdateAgentImpl.h" 39 39 #include "ProgressImpl.h" 40 40 #include "AutoCaller.h" … … 48 48 //////////////////////////////////////////////////////////////////////////////// 49 49 // 50 // HostUpdateprivate data definition50 // UpdateAgent private data definition 51 51 // 52 52 //////////////////////////////////////////////////////////////////////////////// 53 53 54 #ifdef VBOX_WITH_HOST_UPDATE_CHECK 55 56 class HostUpdate::UpdateCheckTask : public ThreadTask 54 class UpdateAgentTask : public ThreadTask 57 55 { 58 56 public: 59 UpdateCheckTask(UpdateCheckType_T aCheckType, HostUpdate *aThat, Progress *aProgress) 60 : m_checkType(aCheckType) 61 , m_pHostUpdate(aThat) 62 , m_ptrProgress(aProgress) 63 { 64 m_strTaskName = "UpdateCheckTask"; 65 } 66 ~UpdateCheckTask() { } 57 UpdateAgentTask(UpdateAgent *aThat, Progress *aProgress) 58 : m_pParent(aThat) 59 , m_pProgress(aProgress) 60 { 61 m_strTaskName = "UpdateAgentTask"; 62 } 63 virtual ~UpdateAgentTask(void) { } 67 64 68 65 private: 69 void handler(); 70 71 UpdateCheckType_T m_checkType; 72 HostUpdate *m_pHostUpdate; 73 66 void handler(void); 67 68 /** Weak pointer to parent (update agent). */ 69 UpdateAgent *m_pParent; 74 70 /** Smart pointer to the progress object for this job. */ 75 ComObjPtr<Progress> m_ptrProgress;76 77 friend class HostUpdate; // allow member functions access to private data71 ComObjPtr<Progress> m_pProgress; 72 73 friend class UpdateAgent; // allow member functions access to private data 78 74 }; 79 75 80 void HostUpdate::UpdateCheckTask::handler() 81 { 82 HostUpdate *pHostUpdate = this->m_pHostUpdate; 83 84 LogFlowFuncEnter(); 85 LogFlowFunc(("HostUpdate %p\n", pHostUpdate)); 86 87 HRESULT rc = pHostUpdate->i_updateCheckTask(this); 88 89 LogFlowFunc(("rc=%Rhrc\n", rc)); NOREF(rc); 90 LogFlowFuncLeave(); 91 } 92 93 Utf8Str HostUpdate::i_platformInfo() 76 void UpdateAgentTask::handler(void) 77 { 78 UpdateAgent *pUpdateAgent = this->m_pParent; 79 AssertPtr(pUpdateAgent); 80 81 HRESULT rc = pUpdateAgent->i_updateTask(this); 82 83 if (!m_pProgress.isNull()) 84 m_pProgress->i_notifyComplete(rc); 85 86 LogFlowFunc(("rc=%Rhrc\n", rc)); RT_NOREF(rc); 87 } 88 89 90 /********************************************************************************************************************************* 91 * Update agent base class implementation * 92 *********************************************************************************************************************************/ 93 UpdateAgent::UpdateAgent() 94 : m_VirtualBox(NULL) 95 , m(new settings::UpdateAgent) 96 { 97 } 98 99 UpdateAgent::~UpdateAgent() 100 { 101 delete m; 102 } 103 104 HRESULT UpdateAgent::FinalConstruct() 105 { 106 return BaseFinalConstruct(); 107 } 108 109 void UpdateAgent::FinalRelease() 110 { 111 uninit(); 112 113 BaseFinalRelease(); 114 } 115 116 HRESULT UpdateAgent::init(VirtualBox *aVirtualBox) 117 { 118 // Enclose the state transition NotReady->InInit->Ready. 119 AutoInitSpan autoInitSpan(this); 120 AssertReturn(autoInitSpan.isOk(), E_FAIL); 121 122 /* Weak reference to a VirtualBox object */ 123 unconst(m_VirtualBox) = aVirtualBox; 124 125 autoInitSpan.setSucceeded(); 126 return S_OK; 127 } 128 129 void UpdateAgent::uninit() 130 { 131 // Enclose the state transition Ready->InUninit->NotReady. 132 AutoUninitSpan autoUninitSpan(this); 133 if (autoUninitSpan.uninitDone()) 134 return; 135 } 136 137 HRESULT UpdateAgent::download(ComPtr<IProgress> &aProgress) 138 { 139 RT_NOREF(aProgress); 140 141 return VBOX_E_NOT_SUPPORTED; 142 } 143 144 HRESULT UpdateAgent::install(ComPtr<IProgress> &aProgress) 145 { 146 RT_NOREF(aProgress); 147 148 return VBOX_E_NOT_SUPPORTED; 149 } 150 151 HRESULT UpdateAgent::rollback(void) 152 { 153 return S_OK; /* No-op by default. */ 154 } 155 156 HRESULT UpdateAgent::getName(com::Utf8Str &aName) 157 { 158 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 159 160 aName = mData.m_strName; 161 162 return S_OK; 163 } 164 165 HRESULT UpdateAgent::getOrder(ULONG *aOrder) 166 { 167 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 168 169 *aOrder = 0; /* 0 means no order / disabled. */ 170 171 return S_OK; 172 } 173 174 HRESULT UpdateAgent::getDependsOn(std::vector<com::Utf8Str> &aDeps) 175 { 176 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 177 178 aDeps.resize(0); /* No dependencies by default. */ 179 180 return S_OK; 181 } 182 183 HRESULT UpdateAgent::getVersion(com::Utf8Str &aVer) 184 { 185 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 186 187 aVer = mData.m_lastResult.strVer; 188 189 return S_OK; 190 } 191 192 HRESULT UpdateAgent::getDownloadUrl(com::Utf8Str &aUrl) 193 { 194 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 195 196 aUrl = mData.m_lastResult.strDownloadUrl; 197 198 return S_OK; 199 } 200 201 202 HRESULT UpdateAgent::getWebUrl(com::Utf8Str &aUrl) 203 { 204 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 205 206 aUrl = mData.m_lastResult.strWebUrl; 207 208 return S_OK; 209 } 210 211 HRESULT UpdateAgent::getReleaseNotes(com::Utf8Str &aRelNotes) 212 { 213 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 214 215 aRelNotes = mData.m_lastResult.strReleaseNotes; 216 217 return S_OK; 218 } 219 220 HRESULT UpdateAgent::getEnabled(BOOL *aEnabled) 221 { 222 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 223 224 *aEnabled = m->fEnabled; 225 226 return S_OK; 227 } 228 229 HRESULT UpdateAgent::setEnabled(const BOOL aEnabled) 230 { 231 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 232 233 m->fEnabled = aEnabled; 234 235 return S_OK; 236 } 237 238 239 HRESULT UpdateAgent::getHidden(BOOL *aHidden) 240 { 241 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 242 243 *aHidden = mData.m_fHidden; 244 245 return S_OK; 246 } 247 248 HRESULT UpdateAgent::getState(UpdateState_T *aState) 249 { 250 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 251 252 *aState = mData.m_enmState; 253 254 return S_OK; 255 } 256 257 HRESULT UpdateAgent::getCheckFrequency(ULONG *aFreqSeconds) 258 { 259 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 260 261 *aFreqSeconds = m->uCheckFreqSeconds; 262 263 return S_OK; 264 } 265 266 HRESULT UpdateAgent::setCheckFrequency(ULONG aFreqSeconds) 267 { 268 if (aFreqSeconds < RT_SEC_1DAY) /* Don't allow more frequent checks for now. */ 269 return setError(E_INVALIDARG, tr("Frequency too small; one day is the minimum")); 270 271 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 272 273 m->uCheckFreqSeconds = aFreqSeconds; 274 275 return S_OK; 276 } 277 278 HRESULT UpdateAgent::getChannel(UpdateChannel_T *aChannel) 279 { 280 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 281 282 *aChannel = m->enmChannel; 283 284 return S_OK; 285 } 286 287 HRESULT UpdateAgent::setChannel(UpdateChannel_T aChannel) 288 { 289 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 290 291 m->enmChannel = aChannel; 292 293 return S_OK; 294 } 295 296 HRESULT UpdateAgent::getCheckCount(ULONG *aCount) 297 { 298 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 299 300 *aCount = m->uCheckCount; 301 302 return S_OK; 303 } 304 305 HRESULT UpdateAgent::getRepositoryURL(com::Utf8Str &aRepo) 306 { 307 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 308 309 aRepo = m->strRepoUrl; 310 311 return S_OK; 312 } 313 314 HRESULT UpdateAgent::setRepositoryURL(const com::Utf8Str &aRepo) 315 { 316 if (!aRepo.startsWith("https://", com::Utf8Str::CaseInsensitive)) 317 return setError(E_INVALIDARG, tr("Invalid URL scheme specified; only https:// is supported.")); 318 319 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 320 321 m->strRepoUrl = aRepo; 322 323 return S_OK; 324 } 325 326 HRESULT UpdateAgent::getProxyMode(ProxyMode_T *aMode) 327 { 328 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 329 330 *aMode = m->enmProxyMode; 331 332 return S_OK; 333 } 334 335 HRESULT UpdateAgent::setProxyMode(ProxyMode_T aMode) 336 { 337 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 338 339 m->enmProxyMode = aMode; 340 341 return S_OK; 342 } 343 344 HRESULT UpdateAgent::getProxyURL(com::Utf8Str &aAddress) 345 { 346 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 347 348 aAddress = m->strProxyUrl; 349 350 return S_OK; 351 } 352 353 HRESULT UpdateAgent::setProxyURL(const com::Utf8Str &aAddress) 354 { 355 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 356 357 m->strProxyUrl = aAddress; 358 359 return S_OK; 360 } 361 362 HRESULT UpdateAgent::getLastCheckDate(com::Utf8Str &aDate) 363 { 364 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 365 366 aDate = m->strLastCheckDate; 367 368 return S_OK; 369 } 370 371 /* static */ 372 Utf8Str UpdateAgent::i_getPlatformInfo(void) 94 373 { 95 374 /* Prepare platform report: */ … … 255 534 } 256 535 257 HRESULT HostUpdate::i_checkForVBoxUpdate() 258 { 259 // Default to no update required 260 m_updateNeeded = FALSE; 536 HRESULT UpdateAgent::i_loadSettings(const settings::UpdateAgent &data) 537 { 538 AutoCaller autoCaller(this); 539 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 540 541 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 542 543 m->fEnabled = data.fEnabled; 544 m->enmChannel = data.enmChannel; 545 m->uCheckFreqSeconds = data.uCheckFreqSeconds; 546 m->strRepoUrl = data.strRepoUrl; 547 m->enmProxyMode = data.enmProxyMode; 548 m->strProxyUrl = data.strProxyUrl; 549 m->strLastCheckDate = data.strLastCheckDate; 550 m->uCheckCount = data.uCheckCount; 551 552 return S_OK; 553 } 554 555 HRESULT UpdateAgent::i_saveSettings(settings::UpdateAgent &data) 556 { 557 AutoCaller autoCaller(this); 558 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 559 560 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 561 562 data = *m; 563 564 return S_OK; 565 } 566 567 HRESULT UpdateAgent::i_setCheckCount(ULONG aCount) 568 { 569 AutoCaller autoCaller(this); 570 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 571 572 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 573 574 m->uCheckCount = aCount; 575 576 return S_OK; 577 } 578 579 HRESULT UpdateAgent::i_setLastCheckDate(const com::Utf8Str &aDate) 580 { 581 AutoCaller autoCaller(this); 582 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 583 584 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 585 586 m->strLastCheckDate = aDate; 587 588 return S_OK; 589 } 590 591 #if 0 592 HRESULT UpdateAgent::getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded) 593 { 594 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 595 596 HRESULT rc; 597 ComPtr<ISystemProperties> pSystemProperties; 598 rc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam()); 599 if (FAILED(rc)) 600 return rc; 601 602 /* 603 * Is update checking enabled? 604 */ 605 BOOL fVBoxUpdateEnabled; 606 rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled); 607 if (FAILED(rc)) 608 return rc; 609 610 if (!fVBoxUpdateEnabled) 611 { 612 *aUpdateCheckNeeded = false; 613 return S_OK; 614 } 615 616 /* 617 * When was the last update? 618 */ 619 Bstr strVBoxUpdateLastCheckDate; 620 rc = pSystemProperties->COMGETTER(VBoxUpdateLastCheckDate)(strVBoxUpdateLastCheckDate.asOutParam()); 621 if (FAILED(rc)) 622 return rc; 623 624 // No prior update check performed so do so now 625 if (strVBoxUpdateLastCheckDate.isEmpty()) 626 { 627 *aUpdateCheckNeeded = true; 628 return S_OK; 629 } 630 631 // convert stored timestamp to time spec 632 RTTIMESPEC LastCheckTime; 633 if (!RTTimeSpecFromString(&LastCheckTime, Utf8Str(strVBoxUpdateLastCheckDate).c_str())) 634 { 635 *aUpdateCheckNeeded = true; 636 return S_OK; 637 } 638 639 /* 640 * Compare last update with how often we are supposed to check for updates. 641 */ 642 ULONG uVBoxUpdateFrequency = 0; // value in days 643 rc = pSystemProperties->COMGETTER(VBoxUpdateFrequency)(&uVBoxUpdateFrequency); 644 if (FAILED(rc)) 645 return rc; 646 647 if (!uVBoxUpdateFrequency) 648 { 649 /* Consider config (enable, 0 day interval) as checking once but never again. 650 We've already check since we've got a date. */ 651 *aUpdateCheckNeeded = false; 652 return S_OK; 653 } 654 uint64_t const cSecsInXDays = uVBoxUpdateFrequency * RT_SEC_1DAY_64; 655 656 RTTIMESPEC TimeDiff; 657 RTTimeSpecSub(RTTimeNow(&TimeDiff), &LastCheckTime); 658 659 LogRelFunc(("Checking if seconds since last check (%lld) >= Number of seconds in %lu day%s (%lld)\n", 660 RTTimeSpecGetSeconds(&TimeDiff), uVBoxUpdateFrequency, uVBoxUpdateFrequency > 1 ? "s" : "", cSecsInXDays)); 661 662 if (RTTimeSpecGetSeconds(&TimeDiff) >= (int64_t)cSecsInXDays) 663 *aUpdateCheckNeeded = true; 664 665 return S_OK; 666 } 667 #endif 668 669 670 /********************************************************************************************************************************* 671 * Host update implementation * 672 *********************************************************************************************************************************/ 673 674 HostUpdateAgent::HostUpdateAgent(void) 675 { 676 } 677 678 HostUpdateAgent::~HostUpdateAgent(void) 679 { 680 } 681 682 683 HRESULT HostUpdateAgent::FinalConstruct(void) 684 { 685 return BaseFinalConstruct(); 686 } 687 688 void HostUpdateAgent::FinalRelease(void) 689 { 690 uninit(); 691 692 BaseFinalRelease(); 693 } 694 695 HRESULT HostUpdateAgent::init(VirtualBox *aVirtualBox) 696 { 697 // Enclose the state transition NotReady->InInit->Ready. 698 AutoInitSpan autoInitSpan(this); 699 AssertReturn(autoInitSpan.isOk(), E_FAIL); 700 701 /* Weak reference to a VirtualBox object */ 702 unconst(m_VirtualBox) = aVirtualBox; 703 704 /* Initialize the bare minimum to get things going. 705 ** @todo Add more stuff later here. */ 706 mData.m_strName = "VirtualBox"; 707 mData.m_fHidden = false; 708 709 /* Set default repository. */ 710 m->strRepoUrl = "https://update.virtualbox.org"; 711 712 autoInitSpan.setSucceeded(); 713 return S_OK; 714 } 715 716 void HostUpdateAgent::uninit() 717 { 718 // Enclose the state transition Ready->InUninit->NotReady. 719 AutoUninitSpan autoUninitSpan(this); 720 if (autoUninitSpan.uninitDone()) 721 return; 722 } 723 724 HRESULT HostUpdateAgent::check(ComPtr<IProgress> &aProgress) 725 { 726 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 727 728 ComObjPtr<Progress> pProgress; 729 HRESULT rc = pProgress.createObject(); 730 if (FAILED(rc)) 731 return rc; 732 733 rc = pProgress->init(m_VirtualBox, 734 static_cast<IUpdateAgent*>(this), 735 tr("Checking for update for %s ...", this->mData.m_strName.c_str()), 736 TRUE /* aCancelable */); 737 if (FAILED(rc)) 738 return rc; 739 740 /* initialize the worker task */ 741 UpdateAgentTask *pTask = new UpdateAgentTask(this, pProgress); 742 rc = pTask->createThread(); 743 pTask = NULL; 744 if (FAILED(rc)) 745 return rc; 746 747 return pProgress.queryInterfaceTo(aProgress.asOutParam()); 748 } 749 750 751 /********************************************************************************************************************************* 752 * Host update internal functions * 753 *********************************************************************************************************************************/ 754 755 DECLCALLBACK(HRESULT) HostUpdateAgent::i_updateTask(UpdateAgentTask *pTask) 756 { 757 RT_NOREF(pTask); 261 758 262 759 // Following the sequence of steps in UIUpdateStepVirtualBox::sltStartStep() 263 // Build up our query URL starting with the URL basename 264 Utf8Str strUrl("https://update.virtualbox.org/query.php/?"); 760 // Build up our query URL starting with the configured repository. 761 Utf8Str strUrl; 762 strUrl.appendPrintf("%s/query.php/?", m->strRepoUrl.c_str()); 763 764 // Add platform ID. 265 765 Bstr platform; 266 HRESULT rc = m VirtualBox->COMGETTER(PackageType)(platform.asOutParam());766 HRESULT rc = m_VirtualBox->COMGETTER(PackageType)(platform.asOutParam()); 267 767 AssertComRCReturn(rc, rc); 268 768 strUrl.appendPrintf("platform=%ls", platform.raw()); // e.g. SOLARIS_64BITS_GENERIC … … 270 770 // Get the complete current version string for the query URL 271 771 Bstr versionNormalized; 272 rc = m VirtualBox->COMGETTER(VersionNormalized)(versionNormalized.asOutParam());772 rc = m_VirtualBox->COMGETTER(VersionNormalized)(versionNormalized.asOutParam()); 273 773 AssertComRCReturn(rc, rc); 274 774 strUrl.appendPrintf("&version=%ls", versionNormalized.raw()); // e.g. 6.1.1 275 // strUrl.appendPrintf("&version=6.0.12"); // comment out previous line and uncomment this one for testing 775 #ifdef DEBUG // Comment out previous line and uncomment this one for testing. 776 // strUrl.appendPrintf("&version=6.0.12"); 777 #endif 276 778 277 779 ULONG revision = 0; 278 rc = m VirtualBox->COMGETTER(Revision)(&revision);780 rc = m_VirtualBox->COMGETTER(Revision)(&revision); 279 781 AssertComRCReturn(rc, rc); 280 782 strUrl.appendPrintf("_%u", revision); // e.g. 135618 281 783 282 // acquire the System Properties interface 283 ComPtr<ISystemProperties> ptrSystemProperties; 284 rc = mVirtualBox->COMGETTER(SystemProperties)(ptrSystemProperties.asOutParam()); 285 AssertComRCReturn(rc, rc); 286 287 // Update the VBoxUpdate setting 'VBoxUpdateLastCheckDate' 784 // Update the last update check timestamp. 288 785 RTTIME Time; 289 786 RTTIMESPEC TimeNow; 290 787 char szTimeStr[RTTIME_STR_LEN]; 291 788 RTTimeToString(RTTimeExplode(&Time, RTTimeNow(&TimeNow)), szTimeStr, sizeof(szTimeStr)); 292 LogRelFunc(("VBox updating UpdateDate with TimeString = %s\n", szTimeStr)); 293 rc = ptrSystemProperties->COMSETTER(VBoxUpdateLastCheckDate)(Bstr(szTimeStr).raw()); 294 AssertComRCReturn(rc, rc); 295 296 // Update the queryURL and the VBoxUpdate setting 'VBoxUpdateCount' 297 ULONG cVBoxUpdateCount = 0; 298 rc = ptrSystemProperties->COMGETTER(VBoxUpdateCount)(&cVBoxUpdateCount); 299 AssertComRCReturn(rc, rc); 300 301 cVBoxUpdateCount++; 302 303 rc = ptrSystemProperties->COMSETTER(VBoxUpdateCount)(cVBoxUpdateCount); 304 AssertComRCReturn(rc, rc); 305 strUrl.appendPrintf("&count=%u", cVBoxUpdateCount); 306 307 // Update the query URL and the VBoxUpdate settings (if necessary) with the 'Target' information. 308 VBoxUpdateTarget_T enmTarget = VBoxUpdateTarget_Stable; // default branch is 'stable' 309 rc = ptrSystemProperties->COMGETTER(VBoxUpdateTarget)(&enmTarget); 310 AssertComRCReturn(rc, rc); 311 312 switch (enmTarget) 313 { 314 case VBoxUpdateTarget_AllReleases: 789 LogRel2(("Update agent (%s): Setting last update check timestamp to '%s'\n", mData.m_strName.c_str(), szTimeStr)); 790 791 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 792 793 m->strLastCheckDate = szTimeStr; 794 m->uCheckCount++; 795 796 strUrl.appendPrintf("&count=%RU32", m->uCheckCount); 797 798 alock.release(); 799 800 // Update the query URL (if necessary) with the 'channel' information. 801 switch (m->enmChannel) 802 { 803 case UpdateChannel_All: 315 804 strUrl.appendPrintf("&branch=allrelease"); // query.php expects 'allrelease' and not 'allreleases' 316 805 break; 317 case VBoxUpdateTarget_WithBetas:806 case UpdateChannel_WithBetas: 318 807 strUrl.appendPrintf("&branch=withbetas"); 319 808 break; 320 case VBoxUpdateTarget_Stable: 809 /** @todo Handle UpdateChannel_WithTesting once implemented on the backend. */ 810 case UpdateChannel_Stable: 811 RT_FALL_THROUGH(); 321 812 default: 322 813 strUrl.appendPrintf("&branch=stable"); … … 324 815 } 325 816 326 rc = ptrSystemProperties->COMSETTER(VBoxUpdateTarget)(enmTarget); 327 AssertComRCReturn(rc, rc); 328 329 LogRelFunc(("VBox update URL = %s\n", strUrl.c_str())); 817 LogRel2(("Update agent (%s): Using URL '%s'\n", mData.m_strName.c_str(), strUrl.c_str())); 330 818 331 819 /* … … 333 821 */ 334 822 Bstr version; 335 rc = m VirtualBox->COMGETTER(Version)(version.asOutParam()); // e.g. 6.1.0_RC1823 rc = m_VirtualBox->COMGETTER(Version)(version.asOutParam()); // e.g. 6.1.0_RC1 336 824 AssertComRCReturn(rc, rc); 337 825 338 Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), HostUpdate::i_platformInfo().c_str());339 LogRel Func(("userAgent = %s\n", strUserAgent.c_str()));826 Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), UpdateAgent::i_getPlatformInfo().c_str()); 827 LogRel2(("Update agent (%s): Using user agent '%s'\n", mData.m_strName.c_str(), strUserAgent.c_str())); 340 828 341 829 /* … … 349 837 try 350 838 { 351 rc = i_checkFor VBoxUpdateInner(hHttp, strUrl, strUserAgent, ptrSystemProperties);839 rc = i_checkForUpdateInner(hHttp, strUrl, strUserAgent); 352 840 } 353 841 catch (...) … … 359 847 } 360 848 else 361 rc = setErrorVrc(vrc, tr(" %s: RTHttpCreate() failed: %Rrc"), __FUNCTION__, vrc);362 return S_OK; 363 } 364 365 HRESULT HostUpdate::i_checkForVBoxUpdateInner(RTHTTP hHttp, Utf8Str const &strUrl, Utf8Str const &strUserAgent, 366 ComPtr<ISystemProperties> const &ptrSystemProperties)367 { 368 / // @todo Are there any other headers needed to be added first via RTHttpSetHeaders()?849 rc = setErrorVrc(vrc, tr("Update agent (%s): RTHttpCreate() failed: %Rrc"), mData.m_strName.c_str(), vrc); 850 851 return rc; 852 } 853 854 HRESULT HostUpdateAgent::i_checkForUpdateInner(RTHTTP hHttp, Utf8Str const &strUrl, Utf8Str const &strUserAgent) 855 { 856 /** @todo Are there any other headers needed to be added first via RTHttpSetHeaders()? */ 369 857 int vrc = RTHttpAddHeader(hHttp, "User-Agent", strUserAgent.c_str(), strUserAgent.length(), RTHTTPADDHDR_F_BACK); 370 858 if (RT_FAILURE(vrc)) 371 return setErrorVrc(vrc, tr("%s: RTHttpAddHeader() failed: %Rrc (on User-Agent)"), __FUNCTION__, vrc); 859 return setErrorVrc(vrc, tr("Update agent (%s): RTHttpAddHeader() failed: %Rrc (on User-Agent)"), 860 mData.m_strName.c_str(), vrc); 372 861 373 862 /* 374 863 * Configure proxying. 375 864 */ 376 ProxyMode_T enmProxyMode; 377 HRESULT rc = ptrSystemProperties->COMGETTER(ProxyMode)(&enmProxyMode); 378 if (FAILED(rc)) 379 return setError(rc, tr("%s: ISystemProperties::proxyMode() failed: %Rrc"), __FUNCTION__, rc); 380 381 if (enmProxyMode == ProxyMode_Manual) 382 { 383 Bstr strProxyURL; 384 rc = ptrSystemProperties->COMGETTER(ProxyURL)(strProxyURL.asOutParam()); 385 if (FAILED(rc)) 386 return setError(rc, tr("%s: ISystemProperties::proxyURL() failed: %Rrc"), __FUNCTION__, rc); 387 vrc = RTHttpSetProxyByUrl(hHttp, Utf8Str(strProxyURL).c_str()); 865 if (m->enmProxyMode == ProxyMode_Manual) 866 { 867 vrc = RTHttpSetProxyByUrl(hHttp, m->strProxyUrl.c_str()); 388 868 if (RT_FAILURE(vrc)) 389 return setErrorVrc(vrc, tr(" %s: RTHttpSetProxyByUrl() failed: %Rrc"), __FUNCTION__, vrc);390 } 391 else if ( enmProxyMode == ProxyMode_System)869 return setErrorVrc(vrc, tr("Update agent (%s): RTHttpSetProxyByUrl() failed: %Rrc"), mData.m_strName.c_str(), vrc); 870 } 871 else if (m->enmProxyMode == ProxyMode_System) 392 872 { 393 873 vrc = RTHttpUseSystemProxySettings(hHttp); 394 874 if (RT_FAILURE(vrc)) 395 return setErrorVrc(vrc, tr("%s: RTHttpUseSystemProxySettings() failed: %Rrc"), __FUNCTION__, vrc); 875 return setErrorVrc(vrc, tr("Update agent (%s): RTHttpUseSystemProxySettings() failed: %Rrc"), 876 mData.m_strName.c_str(), vrc); 396 877 } 397 878 else 398 Assert( enmProxyMode == ProxyMode_NoProxy);879 Assert(m->enmProxyMode == ProxyMode_NoProxy); 399 880 400 881 /* … … 405 886 vrc = RTHttpGetBinary(hHttp, strUrl.c_str(), &pvResponse, &cbResponse); 406 887 if (RT_FAILURE(vrc)) 407 return setErrorVrc(vrc, tr(" %s: RTHttpGetBinary() failed: %Rrc"), __FUNCTION__, vrc);888 return setErrorVrc(vrc, tr("Update agent (%s): RTHttpGetBinary() failed: %Rrc"), mData.m_strName.c_str(), vrc); 408 889 409 890 /* Note! We can do nothing that might throw exceptions till we call RTHttpFreeResponse! */ … … 432 913 size_t const cchWord1 = (size_t)(pchResponse - pchWord1); 433 914 915 HRESULT rc; 916 917 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 918 434 919 /* Decode the two word: */ 435 920 static char const s_szUpToDate[] = "UPTODATE"; … … 437 922 && memcmp(pchWord0, s_szUpToDate, sizeof(s_szUpToDate) - 1) == 0) 438 923 { 439 m _updateNeeded = FALSE;924 mData.m_enmState = UpdateState_NotAvailable; 440 925 rc = S_OK; 441 926 } 442 927 else 443 928 { 929 mData.m_enmState = UpdateState_Error; /* Play safe by default. */ 930 444 931 vrc = RTStrValidateEncodingEx(pchWord0, cchWord0, 0 /*fFlags*/); 445 932 if (RT_SUCCESS(vrc)) … … 448 935 { 449 936 /** @todo Any additional sanity checks we could perform here? */ 450 rc = m _updateVersion.assignEx(pchWord0, cchWord0);937 rc = mData.m_lastResult.strVer.assignEx(pchWord0, cchWord0); 451 938 if (SUCCEEDED(rc)) 939 rc = mData.m_lastResult.strDownloadUrl.assignEx(pchWord1, cchWord1); 940 941 if (RT_SUCCESS(vrc)) 452 942 { 453 rc = m_updateURL.assignEx(pchWord1, cchWord1); 454 if (SUCCEEDED(rc)) 455 m_updateNeeded = TRUE; 943 /** @todo Implement this on the backend first. 944 * We also could do some guessing based on the installed version vs. reported update version? */ 945 mData.m_lastResult.enmSeverity = UpdateSeverity_Invalid; 946 mData.m_enmState = UpdateState_Available; 456 947 } 457 LogRelFunc(("HTTP server reply = %.*s %.*s\n", cchWord0, pchWord0, cchWord1, pchWord1)); 948 949 LogRel(("Update agent (%s): HTTP server replied: %.*s %.*s\n", 950 mData.m_strName.c_str(), cchWord0, pchWord0, cchWord1, pchWord1)); 458 951 } 459 952 else 460 rc = setErrorVrc(vrc, tr(" Invalid server response: %Rrc (%.*Rhxs -- %.*Rhxs)"),461 vrc, cchWord0, pchWord0, cchWord1, pchWord1);953 rc = setErrorVrc(vrc, tr("Update agent (%s): Invalid server response: %Rrc (%.*Rhxs -- %.*Rhxs)"), 954 mData.m_strName.c_str(), vrc, cchWord0, pchWord0, cchWord1, pchWord1); 462 955 } 463 956 … … 467 960 } 468 961 469 HRESULT HostUpdate::i_updateCheckTask(UpdateCheckTask *pTask)470 {471 LogFlowFuncEnter();472 AutoCaller autoCaller(this);473 HRESULT hrc = autoCaller.rc();474 if (SUCCEEDED(hrc))475 {476 try477 {478 switch (pTask->m_checkType)479 {480 case UpdateCheckType_VirtualBox:481 hrc = i_checkForVBoxUpdate();482 break;483 # if 0484 case UpdateCheckType_ExtensionPack:485 hrc = i_checkForExtPackUpdate();486 break;487 488 case UpdateCheckType_GuestAdditions:489 hrc = i_checkForGuestAdditionsUpdate();490 break;491 # endif492 default:493 hrc = setError(E_FAIL, tr("Update check type %d is not implemented"), pTask->m_checkType);494 break;495 }496 }497 catch (...)498 {499 AssertFailed();500 hrc = E_UNEXPECTED;501 }502 }503 504 if (!pTask->m_ptrProgress.isNull())505 pTask->m_ptrProgress->i_notifyComplete(hrc);506 507 LogFlowFunc(("rc=%Rhrc\n", hrc));508 LogFlowFuncLeave();509 return hrc;510 }511 512 #endif /* VBOX_WITH_HOST_UPDATE_CHECK */513 514 515 ////////////////////////////////////////////////////////////////////////////////516 //517 // HostUpdate constructor / destructor518 //519 // ////////////////////////////////////////////////////////////////////////////////520 HostUpdate::HostUpdate()521 : mVirtualBox(NULL)522 {523 }524 525 HostUpdate::~HostUpdate()526 {527 }528 529 530 HRESULT HostUpdate::FinalConstruct()531 {532 return BaseFinalConstruct();533 }534 535 void HostUpdate::FinalRelease()536 {537 uninit();538 539 BaseFinalRelease();540 }541 542 HRESULT HostUpdate::init(VirtualBox *aVirtualBox)543 {544 // Enclose the state transition NotReady->InInit->Ready.545 AutoInitSpan autoInitSpan(this);546 AssertReturn(autoInitSpan.isOk(), E_FAIL);547 548 /* Weak reference to a VirtualBox object */549 unconst(mVirtualBox) = aVirtualBox;550 551 autoInitSpan.setSucceeded();552 return S_OK;553 }554 555 void HostUpdate::uninit()556 {557 // Enclose the state transition Ready->InUninit->NotReady.558 AutoUninitSpan autoUninitSpan(this);559 if (autoUninitSpan.uninitDone())560 return;561 }562 563 HRESULT HostUpdate::updateCheck(UpdateCheckType_T aCheckType,564 ComPtr<IProgress> &aProgress)565 {566 #ifdef VBOX_WITH_HOST_UPDATE_CHECK567 /* Validate input */568 switch (aCheckType)569 {570 case UpdateCheckType_VirtualBox:571 break;572 case UpdateCheckType_ExtensionPack:573 return setError(E_NOTIMPL, tr("UpdateCheckType::ExtensionPack is not implemented"));574 case UpdateCheckType_GuestAdditions:575 return setError(E_NOTIMPL, tr("UpdateCheckType::GuestAdditions is not implemented"));576 default:577 return setError(E_INVALIDARG, tr("Invalid aCheckType value %d"), aCheckType);578 }579 580 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);581 582 // Check whether VirtualBox updates have been disabled before spawning the task thread.583 ComPtr<ISystemProperties> pSystemProperties;584 HRESULT rc = mVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());585 AssertComRCReturn(rc, rc);586 587 BOOL fVBoxUpdateEnabled = true;588 rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled);589 AssertComRCReturn(rc, rc);590 591 /** @todo r=bird: Not sure if this makes sense, it should at least have a592 * better status code and a proper error message. Also, isn't this really593 * something the caller should check? Presumably the caller already check594 * whther this was a good time to perform an update check (i.e. the configured595 * time has elapsed since last check) ...596 *597 * It would make sense to allow performing a one-off update check even if the598 * automatic update checking is disabled, wouldn't it? */599 if (!fVBoxUpdateEnabled)600 return E_NOTIMPL;601 602 ComObjPtr<Progress> pProgress;603 rc = pProgress.createObject();604 if (FAILED(rc))605 return rc;606 607 rc = pProgress->init(mVirtualBox,608 static_cast<IHostUpdate*>(this),609 tr("Checking for software update..."),610 TRUE /* aCancelable */);611 if (FAILED(rc))612 return rc;613 614 /* initialize the worker task */615 UpdateCheckTask *pTask = new UpdateCheckTask(aCheckType, this, pProgress);616 rc = pTask->createThread();617 pTask = NULL;618 if (FAILED(rc))619 return rc;620 621 rc = pProgress.queryInterfaceTo(aProgress.asOutParam());622 623 return rc;624 #else /* !VBOX_WITH_HOST_UPDATE_CHECK */625 RT_NOREF(aCheckType, aProgress);626 return setError(E_NOTIMPL, tr("Update checking support was not compiled into this VirtualBox build"));627 #endif /* !VBOX_WITH_HOST_UPDATE_CHECK */628 }629 630 HRESULT HostUpdate::getUpdateVersion(com::Utf8Str &aUpdateVersion)631 {632 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);633 634 aUpdateVersion = m_updateVersion;635 636 return S_OK;637 }638 639 HRESULT HostUpdate::getUpdateURL(com::Utf8Str &aUpdateURL)640 {641 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);642 643 aUpdateURL = m_updateURL;644 645 return S_OK;646 }647 648 HRESULT HostUpdate::getUpdateResponse(BOOL *aUpdateNeeded)649 {650 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);651 652 *aUpdateNeeded = m_updateNeeded;653 654 return S_OK;655 }656 657 HRESULT HostUpdate::getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded)658 {659 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);660 661 HRESULT rc;662 ComPtr<ISystemProperties> pSystemProperties;663 rc = mVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());664 if (FAILED(rc))665 return rc;666 667 /*668 * Is update checking enabled?669 */670 BOOL fVBoxUpdateEnabled;671 rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled);672 if (FAILED(rc))673 return rc;674 675 if (!fVBoxUpdateEnabled)676 {677 *aUpdateCheckNeeded = false;678 return S_OK;679 }680 681 /*682 * When was the last update?683 */684 Bstr strVBoxUpdateLastCheckDate;685 rc = pSystemProperties->COMGETTER(VBoxUpdateLastCheckDate)(strVBoxUpdateLastCheckDate.asOutParam());686 if (FAILED(rc))687 return rc;688 689 // No prior update check performed so do so now690 if (strVBoxUpdateLastCheckDate.isEmpty())691 {692 *aUpdateCheckNeeded = true;693 return S_OK;694 }695 696 // convert stored timestamp to time spec697 RTTIMESPEC LastCheckTime;698 if (!RTTimeSpecFromString(&LastCheckTime, Utf8Str(strVBoxUpdateLastCheckDate).c_str()))699 {700 *aUpdateCheckNeeded = true;701 return S_OK;702 }703 704 /*705 * Compare last update with how often we are supposed to check for updates.706 */707 ULONG uVBoxUpdateFrequency = 0; // value in days708 rc = pSystemProperties->COMGETTER(VBoxUpdateFrequency)(&uVBoxUpdateFrequency);709 if (FAILED(rc))710 return rc;711 712 if (!uVBoxUpdateFrequency)713 {714 /* Consider config (enable, 0 day interval) as checking once but never again.715 We've already check since we've got a date. */716 *aUpdateCheckNeeded = false;717 return S_OK;718 }719 uint64_t const cSecsInXDays = uVBoxUpdateFrequency * RT_SEC_1DAY_64;720 721 RTTIMESPEC TimeDiff;722 RTTimeSpecSub(RTTimeNow(&TimeDiff), &LastCheckTime);723 724 LogRelFunc(("Checking if seconds since last check (%lld) >= Number of seconds in %lu day%s (%lld)\n",725 RTTimeSpecGetSeconds(&TimeDiff), uVBoxUpdateFrequency, uVBoxUpdateFrequency > 1 ? "s" : "", cSecsInXDays));726 727 if (RTTimeSpecGetSeconds(&TimeDiff) >= (int64_t)cSecsInXDays)728 *aUpdateCheckNeeded = true;729 730 return S_OK;731 }732 733 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r94598 r94643 80 80 # include "PerformanceImpl.h" 81 81 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 82 #ifdef VBOX_WITH_UPDATE_AGENT 83 # include "UpdateAgentImpl.h" 84 #endif 82 85 #include "EventImpl.h" 83 86 #ifdef VBOX_WITH_EXTPACK -
trunk/src/VBox/Main/xml/Settings.cpp
r94598 r94643 1638 1638 , uLogHistoryCount(3) 1639 1639 , fExclusiveHwVirt(true) 1640 , fVBoxUpdateEnabled(true)1641 , uVBoxUpdateCount(0)1642 , uVBoxUpdateFrequency(1)1643 , uVBoxUpdateTarget(VBoxUpdateTarget_Stable)1644 1640 { 1645 1641 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) … … 1647 1643 #endif 1648 1644 } 1645 1646 #ifdef VBOX_WITH_UPDATE_AGENT 1647 UpdateAgent::UpdateAgent() 1648 : fEnabled(false) 1649 , enmChannel(UpdateChannel_Stable) 1650 , uCheckFreqSeconds(RT_SEC_1DAY) 1651 , enmProxyMode(ProxyMode_NoProxy) 1652 , uCheckCount(0) 1653 { 1654 } 1655 #endif /* VBOX_WITH_UPDATE_AGENT */ 1649 1656 1650 1657 /** … … 2332 2339 fCopyProxySettingsFromExtraData = true; 2333 2340 pelmGlobalChild->getAttributeValue("proxyUrl", systemProperties.strProxyUrl); 2334 pelmGlobalChild->getAttributeValue("updateEnabled", systemProperties.fVBoxUpdateEnabled);2335 pelmGlobalChild->getAttributeValue("updateCount", systemProperties.uVBoxUpdateCount);2336 pelmGlobalChild->getAttributeValue("updateFrequency", systemProperties.uVBoxUpdateFrequency);2337 pelmGlobalChild->getAttributeValue("updateTarget", systemProperties.uVBoxUpdateTarget);2338 pelmGlobalChild->getAttributeValue("updateLastCheckDate",2339 systemProperties.strVBoxUpdateLastCheckDate);2340 2341 pelmGlobalChild->getAttributeValue("LanguageId", systemProperties.strLanguageId); 2341 2342 } 2343 #ifdef VBOX_WITH_UPDATE_AGENT 2344 else if (pelmGlobalChild->nameEquals("Updates")) 2345 { 2346 /* We keep the updates configuration as part of the host for now, as the API exposes the IHost::updateHost attribute, 2347 * but use an own "Updates" branch in the XML for better structurizing stuff in the future. */ 2348 UpdateAgent &updateHost = host.updateHost; 2349 2350 xml::NodesLoop nlLevel4(*pelmGlobalChild); 2351 const xml::ElementNode *pelmLevel4Child; 2352 while ((pelmLevel4Child = nlLevel4.forAllNodes())) 2353 { 2354 if (pelmLevel4Child->nameEquals("Host")) 2355 { 2356 pelmLevel4Child->getAttributeValue("enabled", updateHost.fEnabled); 2357 pelmLevel4Child->getAttributeValue("channel", (uint32_t&)updateHost.enmChannel); 2358 pelmLevel4Child->getAttributeValue("checkFrequency", updateHost.uCheckFreqSeconds); 2359 pelmLevel4Child->getAttributeValue("repoUrl", updateHost.strRepoUrl); 2360 pelmLevel4Child->getAttributeValue("proxyMode", (uint32_t&)updateHost.enmProxyMode); 2361 pelmLevel4Child->getAttributeValue("proxyUrl", (uint32_t&)updateHost.enmProxyMode); 2362 pelmLevel4Child->getAttributeValue("lastCheckDate", updateHost.strLastCheckDate); 2363 pelmLevel4Child->getAttributeValue("checkCount", updateHost.uCheckCount); 2364 } 2365 /** @todo Add update settings for ExtPack and Guest Additions here later. See @bugref{7983}. */ 2366 } 2367 2368 /* Global enabled switch for updates. Currently bound to host updates, as this is the only update we have so far. */ 2369 pelmGlobalChild->getAttributeValue("enabled", updateHost.fEnabled); 2370 } 2371 #endif 2342 2372 else if (pelmGlobalChild->nameEquals("ExtraData")) 2343 2373 readExtraData(*pelmGlobalChild, mapExtraDataItems); … … 2561 2591 #endif /* VBOX_WITH_CLOUD_NET */ 2562 2592 2593 #ifdef VBOX_WITH_UPDATE_AGENT 2594 /* We keep the updates configuration as part of the host for now, as the API exposes the IHost::updateHost attribute, 2595 * but use an own "Updates" branch in the XML for better structurizing stuff in the future. */ 2596 UpdateAgent &updateHost = host.updateHost; 2597 2598 xml::ElementNode *pelmUpdates = pelmGlobal->createChild("Updates"); 2599 /* Global enabled switch for updates. Currently bound to host updates, as this is the only update we have so far. */ 2600 pelmUpdates->setAttribute("enabled", updateHost.fEnabled); 2601 2602 xml::ElementNode *pelmUpdateHost = pelmUpdates->createChild("Host"); 2603 pelmUpdateHost->setAttribute("enabled", updateHost.fEnabled); 2604 pelmUpdateHost->setAttribute("channel", (int32_t)updateHost.enmChannel); 2605 pelmUpdateHost->setAttribute("checkFrequency", updateHost.uCheckFreqSeconds); 2606 if (updateHost.strRepoUrl.length()) 2607 pelmUpdateHost->setAttribute("repoUrl", updateHost.strRepoUrl); 2608 pelmUpdateHost->setAttribute("proxyMode", (int32_t)updateHost.enmProxyMode); 2609 if (updateHost.strProxyUrl.length()) 2610 pelmUpdateHost->setAttribute("proxyUrl", updateHost.strProxyUrl); 2611 if (updateHost.strLastCheckDate.length()) 2612 pelmUpdateHost->setAttribute("lastCheckDate", updateHost.strLastCheckDate); 2613 pelmUpdateHost->setAttribute("checkCount", updateHost.uCheckCount); 2614 /** @todo Add update settings for ExtPack and Guest Additions here later. See @bugref{7983}. */ 2615 #endif 2563 2616 2564 2617 xml::ElementNode *pelmSysProps = pelmGlobal->createChild("SystemProperties"); … … 2584 2637 pelmSysProps->setAttribute("proxyMode", systemProperties.uProxyMode); 2585 2638 pelmSysProps->setAttribute("exclusiveHwVirt", systemProperties.fExclusiveHwVirt); 2586 pelmSysProps->setAttribute("updateEnabled", systemProperties.fVBoxUpdateEnabled);2587 pelmSysProps->setAttribute("updateCount", systemProperties.uVBoxUpdateCount);2588 pelmSysProps->setAttribute("updateFrequency", systemProperties.uVBoxUpdateFrequency);2589 pelmSysProps->setAttribute("updateTarget", systemProperties.uVBoxUpdateTarget);2590 if (systemProperties.strVBoxUpdateLastCheckDate.length())2591 pelmSysProps->setAttribute("updateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate);2592 2639 if (systemProperties.strLanguageId.isNotEmpty()) 2593 2640 pelmSysProps->setAttribute("LanguageId", systemProperties.strLanguageId);
Note:
See TracChangeset
for help on using the changeset viewer.