@hcl-software/dxclient 221.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +62 -0
- package/README.txt +3143 -0
- package/bin/dxclient +3 -0
- package/dist/LICENSE +62 -0
- package/dist/configuration/config.json +52 -0
- package/dist/configuration/versionConfigMap.json +34 -0
- package/dist/package.json +149 -0
- package/dist/packages/admintasks/package-lock.json +21843 -0
- package/dist/packages/admintasks/package.json +56 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.d.ts +5 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js +100 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js +70 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js +63 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/differentialReport.d.ts +6 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js +149 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js +66 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js +141 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js +67 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js +112 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js +57 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js +85 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js +130 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js +179 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js +45 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js +68 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js.map +1 -0
- package/dist/packages/admintasks/src/errors/CommandLineMessages_en.json +62 -0
- package/dist/packages/admintasks/src/messages/messages_en.json +34 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.d.ts +4 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js +53 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js.map +1 -0
- package/dist/packages/admintasks/src/services/differentialReportService.d.ts +5 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js +59 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js.map +1 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.d.ts +9 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js +238 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js +45 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js +82 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js.map +1 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.d.ts +33 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js +169 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js.map +1 -0
- package/dist/packages/admintasks/src/utils/createCredentialVault.xml +14 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.d.ts +11 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js +1564 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js.map +1 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.ts +1651 -0
- package/dist/packages/admintasks/src/utils/reportAttributes.properties +179 -0
- package/dist/packages/dam/package-lock.json +14605 -0
- package/dist/packages/dam/package.json +57 -0
- package/dist/packages/dam/src/commands/createSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/createSecrets.js +61 -0
- package/dist/packages/dam/src/commands/createSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js +50 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/deleteSchema.js +80 -0
- package/dist/packages/dam/src/commands/deleteSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/exportAssets.d.ts +5 -0
- package/dist/packages/dam/src/commands/exportAssets.js +106 -0
- package/dist/packages/dam/src/commands/exportAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js +53 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/importAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/importAssets.js +78 -0
- package/dist/packages/dam/src/commands/importAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/listSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/listSchema.js +44 -0
- package/dist/packages/dam/src/commands/listSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.d.ts +15 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js +168 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingResync.d.ts +7 -0
- package/dist/packages/dam/src/commands/stagingResync.js +53 -0
- package/dist/packages/dam/src/commands/stagingResync.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.d.ts +4 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js +45 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDetails.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js +50 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js +62 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js +45 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js +54 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js.map +1 -0
- package/dist/packages/dam/src/commands/updateSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/updateSecrets.js +61 -0
- package/dist/packages/dam/src/commands/updateSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/validateAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/validateAssets.js +64 -0
- package/dist/packages/dam/src/commands/validateAssets.js.map +1 -0
- package/dist/packages/dam/src/errors/CommandLineMessages_en.json +80 -0
- package/dist/packages/dam/src/export/collection.d.ts +10 -0
- package/dist/packages/dam/src/export/collection.js +291 -0
- package/dist/packages/dam/src/export/collection.js.map +1 -0
- package/dist/packages/dam/src/export/favorite.d.ts +2 -0
- package/dist/packages/dam/src/export/favorite.js +61 -0
- package/dist/packages/dam/src/export/favorite.js.map +1 -0
- package/dist/packages/dam/src/export/media-item.d.ts +6 -0
- package/dist/packages/dam/src/export/media-item.js +193 -0
- package/dist/packages/dam/src/export/media-item.js.map +1 -0
- package/dist/packages/dam/src/export/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type-group.js +43 -0
- package/dist/packages/dam/src/export/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/export/media-type.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type.js +43 -0
- package/dist/packages/dam/src/export/media-type.js.map +1 -0
- package/dist/packages/dam/src/export/renditions.d.ts +8 -0
- package/dist/packages/dam/src/export/renditions.js +255 -0
- package/dist/packages/dam/src/export/renditions.js.map +1 -0
- package/dist/packages/dam/src/import/collection.d.ts +5 -0
- package/dist/packages/dam/src/import/collection.js +148 -0
- package/dist/packages/dam/src/import/collection.js.map +1 -0
- package/dist/packages/dam/src/import/favorite.d.ts +2 -0
- package/dist/packages/dam/src/import/favorite.js +65 -0
- package/dist/packages/dam/src/import/favorite.js.map +1 -0
- package/dist/packages/dam/src/import/media-items.d.ts +5 -0
- package/dist/packages/dam/src/import/media-items.js +182 -0
- package/dist/packages/dam/src/import/media-items.js.map +1 -0
- package/dist/packages/dam/src/import/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type-group.js +68 -0
- package/dist/packages/dam/src/import/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/import/media-type.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type.js +71 -0
- package/dist/packages/dam/src/import/media-type.js.map +1 -0
- package/dist/packages/dam/src/import/permission.d.ts +5 -0
- package/dist/packages/dam/src/import/permission.js +96 -0
- package/dist/packages/dam/src/import/permission.js.map +1 -0
- package/dist/packages/dam/src/import/renditions.d.ts +9 -0
- package/dist/packages/dam/src/import/renditions.js +326 -0
- package/dist/packages/dam/src/import/renditions.js.map +1 -0
- package/dist/packages/dam/src/messages/messages_en.json +19 -0
- package/dist/packages/dam/src/services/authService.d.ts +5 -0
- package/dist/packages/dam/src/services/authService.js +55 -0
- package/dist/packages/dam/src/services/authService.js.map +1 -0
- package/dist/packages/dam/src/services/stagingService.d.ts +37 -0
- package/dist/packages/dam/src/services/stagingService.js +440 -0
- package/dist/packages/dam/src/services/stagingService.js.map +1 -0
- package/dist/packages/dam/src/services/tokenCache.d.ts +8 -0
- package/dist/packages/dam/src/services/tokenCache.js +68 -0
- package/dist/packages/dam/src/services/tokenCache.js.map +1 -0
- package/dist/packages/dam/src/utils/constants.d.ts +70 -0
- package/dist/packages/dam/src/utils/constants.js +76 -0
- package/dist/packages/dam/src/utils/constants.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/collection.d.ts +46 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.d.ts +6 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.d.ts +54 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.d.ts +8 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.d.ts +11 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media.d.ts +118 -0
- package/dist/packages/dam/src/utils/interfaces/media.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media.js.map +1 -0
- package/dist/packages/dam/src/utils/service.d.ts +8 -0
- package/dist/packages/dam/src/utils/service.js +126 -0
- package/dist/packages/dam/src/utils/service.js.map +1 -0
- package/dist/packages/dam/src/validation/collection-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js +81 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/media-list-validate.js +91 -0
- package/dist/packages/dam/src/validation/media-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/root-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/root-validate.js +42 -0
- package/dist/packages/dam/src/validation/root-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.js +69 -0
- package/dist/packages/dam/src/validation/validate.rendition.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.versions.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.versions.js +67 -0
- package/dist/packages/dam/src/validation/validate.versions.js.map +1 -0
- package/dist/packages/deployportlet/package-lock.json +20575 -0
- package/dist/packages/deployportlet/package.json +51 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js +99 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js +118 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js +37 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js.map +1 -0
- package/dist/packages/deployportlet/src/errors/CommandLineMessages_en.json +5 -0
- package/dist/packages/deployportlet/src/messages/messages_en.json +10 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.d.ts +4 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js +92 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js.map +1 -0
- package/dist/packages/deployscriptapplication/package-lock.json +20758 -0
- package/dist/packages/deployscriptapplication/package.json +48 -0
- package/dist/packages/deployscriptapplication/src/commands/list.js +109 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.d.ts +6 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js +195 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/push.d.ts +9 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js +282 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js +125 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js +162 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ar.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ca.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_cs.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_da.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_de.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_el.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.json +129 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_es.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fi.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hu.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_it.properties +212 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_iw.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ja.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_kk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ko.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_nl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_no.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt_BR.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ro.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ru.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sv.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_th.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_tr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_uk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh.properties +210 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh_TW.properties +211 -0
- package/dist/packages/deployscriptapplication/src/messages/messages.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ar.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ca.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_cs.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_da.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_de.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_el.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.json +61 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_es.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fi.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hu.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_it.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_iw.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ja.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_kk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ko.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_nl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_no.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt_BR.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ro.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ru.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sv.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_th.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_tr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_uk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh.properties +67 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh_TW.properties +67 -0
- package/dist/packages/deployscriptapplication/src/util/constants.d.ts +74 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js +98 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/util/generic.d.ts +2 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js +29 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js.map +1 -0
- package/dist/packages/deploytheme/package-lock.json +21204 -0
- package/dist/packages/deploytheme/package.json +56 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js +115 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.d.ts +7 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js +286 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js +46 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.d.ts +10 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js +288 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/errors/CommandLineMessages_en.json +28 -0
- package/dist/packages/deploytheme/src/messages/messages_en.json +30 -0
- package/dist/packages/deploytheme/src/services/themeServices.d.ts +15 -0
- package/dist/packages/deploytheme/src/services/themeServices.js +413 -0
- package/dist/packages/deploytheme/src/services/themeServices.js.map +1 -0
- package/dist/packages/deploytheme/src/utils/Export.xml +28 -0
- package/dist/packages/livesync/package-lock.json +9737 -0
- package/dist/packages/livesync/package.json +49 -0
- package/dist/packages/livesync/src/commands/pullTheme.d.ts +5 -0
- package/dist/packages/livesync/src/commands/pullTheme.js +104 -0
- package/dist/packages/livesync/src/commands/pullTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.d.ts +18 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js +193 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushTheme.d.ts +12 -0
- package/dist/packages/livesync/src/commands/pushTheme.js +233 -0
- package/dist/packages/livesync/src/commands/pushTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.d.ts +4 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js +23 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/errors/CommandLineMessages_en.json +52 -0
- package/dist/packages/livesync/src/messages/messages_en.json +33 -0
- package/dist/packages/livesync/src/services/EventsQueue.d.ts +12 -0
- package/dist/packages/livesync/src/services/EventsQueue.js +66 -0
- package/dist/packages/livesync/src/services/EventsQueue.js.map +1 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.d.ts +7 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js +120 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.d.ts +6 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js +108 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/initialSyncServices.d.ts +3 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js +94 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/livesyncUtils.d.ts +2 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js +59 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js.map +1 -0
- package/dist/packages/livesync/src/services/metadataServices.d.ts +16 -0
- package/dist/packages/livesync/src/services/metadataServices.js +117 -0
- package/dist/packages/livesync/src/services/metadataServices.js.map +1 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.d.ts +10 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js +266 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.d.ts +5 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js +92 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js.map +1 -0
- package/dist/packages/livesync/src/types/EventHandler.type.d.ts +5 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js +3 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js.map +1 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.d.ts +7 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js +3 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js.map +1 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.d.ts +4 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js +3 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js.map +1 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.d.ts +99 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js +3 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js.map +1 -0
- package/dist/packages/livesync/src/types/index.d.ts +4 -0
- package/dist/packages/livesync/src/types/index.js +17 -0
- package/dist/packages/livesync/src/types/index.js.map +1 -0
- package/dist/packages/mls_exim/package-lock.json +13855 -0
- package/dist/packages/mls_exim/package.json +51 -0
- package/dist/packages/mls_exim/src/errors/CommandLineMessages_en.json +19 -0
- package/dist/packages/mls_exim/src/export/mlsExport.d.ts +7 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js +292 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js.map +1 -0
- package/dist/packages/mls_exim/src/export/mlsExport.ts +371 -0
- package/dist/packages/mls_exim/src/import/mlsImport.d.ts +8 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js +104 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js.map +1 -0
- package/dist/packages/mls_exim/src/import/mlsImport.ts +138 -0
- package/dist/packages/mls_exim/src/messages/messages_en.json +14 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.d.ts +133 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.ts +165 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.d.ts +52 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.ts +76 -0
- package/dist/packages/sharedlibrary/package-lock.json +20575 -0
- package/dist/packages/sharedlibrary/package.json +51 -0
- package/dist/packages/sharedlibrary/src/commands/delete.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js +64 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js.map +1 -0
- package/dist/packages/sharedlibrary/src/commands/upload.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js +105 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js.map +1 -0
- package/dist/packages/sharedlibrary/src/errors/CommandLineMessages_en.json +10 -0
- package/dist/packages/sharedlibrary/src/messages/messages_en.json +7 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.d.ts +5 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js +100 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js.map +1 -0
- package/dist/packages/syndication/package-lock.json +20575 -0
- package/dist/packages/syndication/package.json +51 -0
- package/dist/packages/syndication/src/commands/subscriber.d.ts +4 -0
- package/dist/packages/syndication/src/commands/subscriber.js +62 -0
- package/dist/packages/syndication/src/commands/subscriber.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicationReport.d.ts +2 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js +99 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicator.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicator.js +62 -0
- package/dist/packages/syndication/src/commands/syndicator.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js +104 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js.map +1 -0
- package/dist/packages/syndication/src/errors/CommandLineMessages_en.json +12 -0
- package/dist/packages/syndication/src/messages/messages_en.json +9 -0
- package/dist/packages/syndication/src/services/syndicationService.d.ts +108 -0
- package/dist/packages/syndication/src/services/syndicationService.js +167 -0
- package/dist/packages/syndication/src/services/syndicationService.js.map +1 -0
- package/dist/src/errors/CommandLineMessages_en.json +53 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +2207 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/services/apiServices.d.ts +32 -0
- package/dist/src/services/apiServices.js +932 -0
- package/dist/src/services/apiServices.js.map +1 -0
- package/dist/src/services/filesServices.d.ts +9 -0
- package/dist/src/services/filesServices.js +134 -0
- package/dist/src/services/filesServices.js.map +1 -0
- package/dist/src/services/requestService.d.ts +4 -0
- package/dist/src/services/requestService.js +55 -0
- package/dist/src/services/requestService.js.map +1 -0
- package/dist/src/utils/commands.d.ts +2 -0
- package/dist/src/utils/commands.js +13 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/constants.d.ts +389 -0
- package/dist/src/utils/constants.js +464 -0
- package/dist/src/utils/constants.js.map +1 -0
- package/dist/src/utils/interfaces.d.ts +19 -0
- package/dist/src/utils/interfaces.js +3 -0
- package/dist/src/utils/interfaces.js.map +1 -0
- package/dist/src/utils/logger.d.ts +3 -0
- package/dist/src/utils/logger.js +126 -0
- package/dist/src/utils/logger.js.map +1 -0
- package/dist/src/utils/utils.d.ts +31 -0
- package/dist/src/utils/utils.js +791 -0
- package/dist/src/utils/utils.js.map +1 -0
- package/dist/src/utils/validateOptions.d.ts +4 -0
- package/dist/src/utils/validateOptions.js +730 -0
- package/dist/src/utils/validateOptions.js.map +1 -0
- package/package.json +149 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# NLS_ENCODING=UTF-8
|
|
2
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
3
|
+
#CMVCPATHNAME wp/code/wp.scriptportlet.cmdln/src/com/ibm/wps/scriptportlet/cmdln/resources/CommandLineMessages_en.nlsprops
|
|
4
|
+
#COMPONENTPREFIX EJPRC
|
|
5
|
+
#COMPONENTNAMEFOR EJPRC Script Application Command Line Utility Messages
|
|
6
|
+
|
|
7
|
+
# AutoAuthHandler.7
|
|
8
|
+
ERROR_CMDLN_AUTHN_FAILURE_0=EJPRC0001E: Application push failed due to authentication failure.
|
|
9
|
+
ERROR_CMDLN_AUTHN_FAILURE_0.explanation=The specified command failed due to a failure to authenticate to the server with the specified credentials.
|
|
10
|
+
ERROR_CMDLN_AUTHN_FAILURE_0.useraction=Check sp-cmdln.log in the application folder for more detailed error information and specify the correct username, password for the specified server url.
|
|
11
|
+
|
|
12
|
+
# CommandLine.14
|
|
13
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1=EJPRC0002E: Malformed command: {0}
|
|
14
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1.explanation=Unrecognized command syntax.
|
|
15
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1.useraction=Check sp-cmdln.log in the application folder and correct the syntax of the command to match the Script Application command line utility overview documentation for this utility's commands and options.
|
|
16
|
+
|
|
17
|
+
# CommandLine.17
|
|
18
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1=EJPRC0003E: Unrecognized command line options: {0}
|
|
19
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1.explanation=The specified command line options are not recognized or supported.
|
|
20
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1.useraction=Refer to the Script Application command line utility overview documentation for the supported options and retry the command with correct option syntax.
|
|
21
|
+
|
|
22
|
+
# CommandLine.19
|
|
23
|
+
# The following {0} is replaced with the path to the log file that it's asking you to refer to for more details.
|
|
24
|
+
ERROR_CMDLN_CMD_FAILED_1=EJPRC0004E: Command failed with one or more errors. See the log for details: ({0}).
|
|
25
|
+
ERROR_CMDLN_CMD_FAILED_1.explanation=The command failed with one or more errors, logged in sp-cmdln.log. This is a summary error displayed to the console or standard output when a command completes without an exception being raised, but where errors were logged to the logfile during the command execution.
|
|
26
|
+
ERROR_CMDLN_CMD_FAILED_1.useraction=Check sp-cmdln.log in the application folder to determine what error or errors occurred.
|
|
27
|
+
|
|
28
|
+
# CommandLine.21
|
|
29
|
+
ERROR_CMDLN_BAD_CONFIG_1=EJPRC0005E: Command failed with one or more configuration errors. See the log for details: ({0}).
|
|
30
|
+
ERROR_CMDLN_BAD_CONFIG_1.explanation=The command failed while validating the combination of configuration properties and command line arguments specified.
|
|
31
|
+
ERROR_CMDLN_BAD_CONFIG_1.useraction=Check sp-cmdln.log in the application folder to determine what error or errors occurred. This particular error is associated with more detailed error information in the sp-cmdln.log file, describing which configuration or command line arguments are causing the problem.
|
|
32
|
+
|
|
33
|
+
# CommandLine.22
|
|
34
|
+
# In the following error condition, an unexpected exception made it past more specific error handling and was caught at the outer command processing layer, but the logger was not initialized so the exception is being logged to the console.
|
|
35
|
+
ERROR_CMDLN_CMD_FAILED_0=EJPRC0006E: Command failed with an exception.
|
|
36
|
+
ERROR_CMDLN_CMD_FAILED_0.explanation=The command failed with an exception thrown from an API called by this utility. The logging subsystem was not initialized at the point the failure occurred, so the exception message was logged to the console or to the standard error stream if the utility was run from a build script.
|
|
37
|
+
ERROR_CMDLN_CMD_FAILED_0.useraction=Check the associated exception message in the command line console output or to where the standard error stream is captured if the command was run from a build script, to determine what error or errors occurred.
|
|
38
|
+
|
|
39
|
+
# CommandLine.23
|
|
40
|
+
# The difference between the above EJPRC0006E and this EJPRC0007E is in the above, the logging system failed to initialize so the error is to the console output and in this one, the logging system is initialized so the details are logged there.
|
|
41
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0=EJPRC0007E: Command failed with an exception. See the sp-cmdln.log file for more descriptive error information.
|
|
42
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0.explanation=The command failed with one or more errors. Details of the exception were logged to sp-cmdln.log.
|
|
43
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0.useraction=Check sp-cmdln.log in the application folder to determine what error or errors occurred.
|
|
44
|
+
|
|
45
|
+
# CommandLine.6
|
|
46
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0=EJPRC0008W: The specified root folder does not exist; attempting to continue.
|
|
47
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0.explanation=The specified root folder does not exist, but the specified command is attempting to continue processing anyway.
|
|
48
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0.useraction=Check that the root folder specified via sp-config.json configuration property or command line argument refers to a valid existing folder on disk, that contains the application to be pushed to the server.
|
|
49
|
+
|
|
50
|
+
# ConfigUtilities.29
|
|
51
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1=EJPRC0009E: Configuration value {0} must be an array of strings.
|
|
52
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1.explanation=The specified configuration parameter expected an array of strings in JSON syntax, but the configuration utility was unable to parse the value as an array of strings.
|
|
53
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
54
|
+
|
|
55
|
+
# ConfigUtilities.30
|
|
56
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1=EJPRC0010E: Configuration value {0} must be a boolean.
|
|
57
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1.explanation=The specified configuration parameter expected a boolean value in JSON syntax, but the configuration utility was unable to parse the value as a boolean value.
|
|
58
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
59
|
+
|
|
60
|
+
# ConfigUtilities.32
|
|
61
|
+
ERROR_CMDLN_CONFIG_INTEGER_1=EJPRC0011E: Configuration value {0} must be an integer.
|
|
62
|
+
ERROR_CMDLN_CONFIG_INTEGER_1.explanation=The specified configuration parameter expected an integer value in JSON syntax, but the configuration utility was unable to parse the value as an integer value.
|
|
63
|
+
ERROR_CMDLN_CONFIG_INTEGER_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
64
|
+
|
|
65
|
+
# ConfigUtilities.33
|
|
66
|
+
ERROR_CMDLN_CONFIG_JSON_1=EJPRC0012E: Configuration value {0} must be a JSON object.
|
|
67
|
+
ERROR_CMDLN_CONFIG_JSON_1.explanation=The specified configuration parameter expected a JSON object, but the configuration utility was unable to parse the value as a JSON object.
|
|
68
|
+
ERROR_CMDLN_CONFIG_JSON_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
69
|
+
|
|
70
|
+
# ConfigUtilities.34
|
|
71
|
+
ERROR_CMDLN_CONFIG_STRING_1=EJPRC0013E: Configuration value {0} must be a string.
|
|
72
|
+
ERROR_CMDLN_CONFIG_STRING_1.explanation=The specified configuration parameter expected a JSON string value, but the configuration utility was unable to parse the value as a JSON string value.
|
|
73
|
+
ERROR_CMDLN_CONFIG_STRING_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
74
|
+
|
|
75
|
+
# ConfigUtilities.37
|
|
76
|
+
ERROR_CMDLN_CONFIG_URL_1=EJPRC0014E: Configuration value {0} must be a URL.
|
|
77
|
+
ERROR_CMDLN_CONFIG_URL_1.explanation=The specified configuration parameter expected a url value, but the configuration utility was unable to parse the value as a url value.
|
|
78
|
+
ERROR_CMDLN_CONFIG_URL_1.useraction=Examine and fix the specified configuration parameter to match the syntax described in the Script Application command line utility overview documentation.
|
|
79
|
+
|
|
80
|
+
# ConfigUtilities.38
|
|
81
|
+
# The command line options typically come in pairs, eg: -wcmContentName foo. If you specified -wcmContentGnome foo it would list that option pair as being unrecognized "wcmContentGnome" "foo" to give the user a chance to recognize what they mistyped. It'll use a different msg if you had a single unrecognized arg as opposed to an arg pair that it didn't recognize.
|
|
82
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2=EJPRC0015W: Ignoring unrecognized command line option: {0} {1}
|
|
83
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2.explanation=The utility is ignoring an unrecognized command line option.
|
|
84
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2.useraction=Examine and fix the specified command line options to match the syntax described in the Script Application command line utility overview documentation.
|
|
85
|
+
|
|
86
|
+
# ConfigUtilities.41
|
|
87
|
+
# Note, this appears to be a placeholder for future functionality. There does not appear to be code that calls this config-save functionality yet.
|
|
88
|
+
ERROR_CMDLN_CONFIG_EXISTS_0=EJPRC0016E: Configuration file exists and overwrite was not allowed.
|
|
89
|
+
ERROR_CMDLN_CONFIG_EXISTS_0.explanation=A configuration file with the same name already exists and overwrite was not allowed.
|
|
90
|
+
ERROR_CMDLN_CONFIG_EXISTS_0.useraction=Rename or remove the existing configuration file and try the operation again.
|
|
91
|
+
|
|
92
|
+
# GenericCommand.0
|
|
93
|
+
ERROR_CMDLN_AUTHN_HANDLER_1=EJPRC0017E: The specified authentication handler {0} could not be created.
|
|
94
|
+
ERROR_CMDLN_AUTHN_HANDLER_1.explanation=An error occurred attempting to create an instance of the configured authentication handler.
|
|
95
|
+
ERROR_CMDLN_AUTHN_HANDLER_1.useraction=Examine the sp-cmdln.log file for more details. If you are not attempting to configure a custom authentication handler, then the command line utility installation may be corrupt. See the Script Application command line utility documentation for information on how to download and install the command line utility.
|
|
96
|
+
|
|
97
|
+
# GenericCommand.1
|
|
98
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0=EJPRC0018E: The chosen client provider could not be created.
|
|
99
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0.explanation=An error occurred attempting to create an instance of the configured command line http client provider.
|
|
100
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0.useraction=Ensure the command line utility was installed correctly. Examine the sp-cmdln.log file for more details.
|
|
101
|
+
|
|
102
|
+
# GenericResponseHandler.14
|
|
103
|
+
ERROR_CMDLN_RESPONSE_PARSE_0=EJPRC0019E: Response body parsing failed.
|
|
104
|
+
ERROR_CMDLN_RESPONSE_PARSE_0.explanation=The command line utility was unable to parse the response from the server.
|
|
105
|
+
ERROR_CMDLN_RESPONSE_PARSE_0.useraction=Examine the sp-cmdln.log log file in the application folder to help determine the cause of the problem.
|
|
106
|
+
|
|
107
|
+
# ListCommand.0
|
|
108
|
+
ERROR_CMDLN_LIST_TYPE_2=EJPRC0020E: The list object type must be either {0} or {1}.
|
|
109
|
+
ERROR_CMDLN_LIST_TYPE_2.explanation=An unrecognized object type argument was specified for the list command.
|
|
110
|
+
ERROR_CMDLN_LIST_TYPE_2.useraction=Examine and fix the specified argument to the list command, to match the syntax described in the Script Application command line utility overview documentation.
|
|
111
|
+
|
|
112
|
+
# ListCommand.11 AND # ListCommand.39
|
|
113
|
+
ERROR_CMDLN_LIST_FAILED_0=EJPRC0021E: Object list failed with one or more errors.
|
|
114
|
+
ERROR_CMDLN_LIST_FAILED_0.explanation=The list command failed. Additional information and prior errors should be logged in the sp-cmdln.log file.
|
|
115
|
+
ERROR_CMDLN_LIST_FAILED_0.useraction=Examine the sp-cmdln.log file for more detailed information on any errors that may have occurred and ensure that the arguments and configuration match the documented syntax.
|
|
116
|
+
|
|
117
|
+
# ListCommand.15
|
|
118
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0=EJPRC0022E: Object list failed. Did not receive the expected body content.
|
|
119
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0.explanation=The list command did not receive the expected JSON response body content, indicating that the command may not have completed successfully.
|
|
120
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0.useraction=Examine the sp-cmdln.log file to determine what errors occurred and take appropriate action to resolve the problem.
|
|
121
|
+
|
|
122
|
+
# ListCommand.3
|
|
123
|
+
ERROR_CMDLN_NO_VPS_0=EJPRC0023E: No virtual portal instances were found.
|
|
124
|
+
ERROR_CMDLN_NO_VPS_0.explanation=No virtual portal instances were found.
|
|
125
|
+
ERROR_CMDLN_NO_VPS_0.useraction=Ensure that the correct user and server are specified.
|
|
126
|
+
|
|
127
|
+
# ListCommand.4=
|
|
128
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0=EJPRC0024E: No WCM projects were found.
|
|
129
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0.explanation=No WCM projects were found on the specified server, for the specified user credentials.
|
|
130
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0.useraction=Ensure that the correct user and server are specified, or create a project to work with if none exist yet.
|
|
131
|
+
|
|
132
|
+
# Logger.21
|
|
133
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0=EJPRC0025E: Exception while logging archive content. The list of extracted files may not be accurate.
|
|
134
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0.explanation=An exception occurred while writing the server's response to the push command to the sp-cmdln.log file.
|
|
135
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0.useraction=Rename the log file, ensure sufficient disk space is available, and try the command again.
|
|
136
|
+
|
|
137
|
+
# Logger.5
|
|
138
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0=EJPRC0026E: Initialization of log file failed. Logging to standard error.
|
|
139
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0.explanation=The utility was unable to write to the log file and wrote to the standard error stream instead.
|
|
140
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0.useraction=Check the command output for error messages.
|
|
141
|
+
|
|
142
|
+
# Logger.6
|
|
143
|
+
WARN_CMDLN_LOG_STDERR_0=EJPRC0027W: The log was written to standard error.
|
|
144
|
+
WARN_CMDLN_LOG_STDERR_0.explanation=The utility was unable to write to the log file and wrote to the standard error stream instead.
|
|
145
|
+
WARN_CMDLN_LOG_STDERR_0.useraction=Check the command output for error messages.
|
|
146
|
+
|
|
147
|
+
# PushCommand.21
|
|
148
|
+
ERROR_CMDLN_PUSH_FAILED_0=EJPRC0028E: Application push failed with one or more errors.
|
|
149
|
+
ERROR_CMDLN_PUSH_FAILED_0.explanation=An error occurred attempting to push the specified application to the server. This can occur when an unexpected exception is thrown from an API that the utility relies on or when the server returns a response message indicating that the request was not successful.
|
|
150
|
+
ERROR_CMDLN_PUSH_FAILED_0.useraction=Examine the sp-cmdln.log file to determine what errors occurred and take appropriate action to resolve the problem.
|
|
151
|
+
|
|
152
|
+
# PushCommand.25
|
|
153
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0=EJPRC0029E: Body content is not valid JSON.
|
|
154
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0.explanation=The push command did not receive the expected JSON response body content, indicating that the command may not have completed successfully.
|
|
155
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0.useraction=Examine the log file to determine what errors occurred and take appropriate action to resolve the problem.
|
|
156
|
+
|
|
157
|
+
# PushCommand.26
|
|
158
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0=EJPRC0030E: Application push failed. Did not receive the expected body content.
|
|
159
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0.explanation=The push command did not receive the expected JSON response body content, indicating that the command may not have completed successfully.
|
|
160
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0.useraction=Examine the log file to determine what errors occurred and take appropriate action to resolve the problem.
|
|
161
|
+
|
|
162
|
+
# PushCommand.34
|
|
163
|
+
# The word ZIP in the following resource string should not be translated.
|
|
164
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0=EJPRC0031E: A content push requires a prebuilt ZIP or a valid root folder.
|
|
165
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0.explanation=Either a prebuilt application archive or root folder to an application must be specified for this command.
|
|
166
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0.useraction=Ensure that the specified command arguments and configuration match the syntax described in the Script Application command line utility overview documentation.
|
|
167
|
+
|
|
168
|
+
# PushCommand.35
|
|
169
|
+
ERROR_CMDLN_MISSING_HTML_1=EJPRC0032E: The specified main HTML file does not exist in the root folder: {0}
|
|
170
|
+
ERROR_CMDLN_MISSING_HTML_1.explanation=The specified main HTML file does not exist in the specified application's root folder.
|
|
171
|
+
ERROR_CMDLN_MISSING_HTML_1.useraction=Examine the application to determine the main HTML file and specify the path to the HTML file appropriately.
|
|
172
|
+
|
|
173
|
+
# PushCommand.36
|
|
174
|
+
# The word ZIP in the following resource string should not be translated.
|
|
175
|
+
ERROR_CMDLN_MISSING_ZIP_1=EJPRC0033E: The specified prebuilt ZIP file does not exist: {0}
|
|
176
|
+
ERROR_CMDLN_MISSING_ZIP_1.explanation=The specified application archive does not exist.
|
|
177
|
+
ERROR_CMDLN_MISSING_ZIP_1.useraction=Examine the command line arguments and configuration to ensure that the correct path to the prebuilt application archive is specified.
|
|
178
|
+
|
|
179
|
+
# PushCommand.37
|
|
180
|
+
# The word ZIP in the following resource string should not be translated.
|
|
181
|
+
ERROR_CMDLN_NO_HTML_ZIP_1=EJPRC0034E: The prebuilt ZIP file does not contain the specified main HTML file: {0}
|
|
182
|
+
ERROR_CMDLN_NO_HTML_ZIP_1.explanation=The command utility was unable to find the main HTML file in the specified compressed application archive.
|
|
183
|
+
ERROR_CMDLN_NO_HTML_ZIP_1.useraction=Examine the application archive and the command line arguments and apply fixes as necessary to ensure that the product is able to find the main HTML file in the specified application archive.
|
|
184
|
+
|
|
185
|
+
# PushCommand.38
|
|
186
|
+
# The placeholders here are replaced with wcmContentName, wcmContentID and wcmContentPath, where exactly one of which must be specified by config file or command line argument for a successful push.
|
|
187
|
+
ERROR_CMDLN_MISSING_ARG_3=EJPRC0035E: One of {0}, {1}, or {2} must be specified when pushing content.
|
|
188
|
+
ERROR_CMDLN_MISSING_ARG_3.explanation=Insufficient arguments were supplied to complete the specified push command. The push command must identify where in WCM to store the Script Application content, by either name associated with a default configured site area, the content identifier of an existing Script Application instance, or a full path to a WCM content item.
|
|
189
|
+
ERROR_CMDLN_MISSING_ARG_3.useraction=Examine the configuration and command line arguments and ensure that they match the Script Application command line overview documentation of the syntax for this command.
|
|
190
|
+
|
|
191
|
+
# PushCommand.39
|
|
192
|
+
# Placeholders replaced with non-translatable wcmContentID, wcmContentName and wcmContentPath, only one of which may be specified via config or command-line arg, for a valid push command.
|
|
193
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3=EJPRC0036E: Only one of {0}, {1}, or {2} may be specified when pushing content.
|
|
194
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3.explanation=Conflicting arguments or configuration were specified. This can happen if you specify a content name to store the Script Application as, but also specify a content id or full WCM content path to store the Script Application at. Only one of these arguments or configuration properties indicating where to store the pushed Script Application content should be specified.
|
|
195
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3.useraction=Examine the configuration and command line arguments and ensure that they match the Script Application command line overview documentation of the syntax for this command.
|
|
196
|
+
|
|
197
|
+
# PushCommand.40
|
|
198
|
+
# The placeholders are replaced with the non-translatable wcmContentName and wcmContentSiteArea strings where if wcmContentName is specified, then wcmContentSiteArea must be specified by either configuration or command line argument.
|
|
199
|
+
ERROR_CMDLN_MISSING_ARG_2=EJPRC0037E: {0} must be used in combination with {1} when pushing content.
|
|
200
|
+
ERROR_CMDLN_MISSING_ARG_2.explanation=The specified argument must be supplied when executing this command. This occurs if wcmContentName configuration property or command line argument is specified without also specifying the wcmContentSiteArea configuration property or command line argument.
|
|
201
|
+
ERROR_CMDLN_MISSING_ARG_2.useraction=Ensure that the specified command arguments and configuration match the syntax described in the Script Application command line utility overview documentation.
|
|
202
|
+
|
|
203
|
+
# Utilities.0
|
|
204
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0=EJPRC0038E: A problem occurred during memory cleanup.
|
|
205
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0.explanation=An unexpected error occurred during memory cleanup while executing the specified command.
|
|
206
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0.useraction=Examine the sp-cmdln.log log file for more information on errors that may have occurred during execution of the command.
|
|
207
|
+
|
|
208
|
+
# Error to the sp push command line output when there is an error loading the configuration file. For example, "EJPRC0039E: Error loading configuration file c:\archive\ScriptPortlet\spcf\sp-config.json" followed by "java.io.FileNotFoundException: c:\archive\ScriptPortlet\spcf\sp-config.json (Access is denied)"
|
|
209
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1=EJPRC0039E: Error loading configuration file {0}
|
|
210
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1.explanation=An error occurred loading the specified configuration file. The Script Application log utility relies on reading a configuration file to operate correctly. If there is an error loading the configuration file, the logging details will be output to the system console rather than the log file.
|
|
211
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1.useraction=Fix the configuration file based on the error details and try the operation again.
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# NLS_ENCODING=UTF-8
|
|
2
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
3
|
+
#CMVCPATHNAME wp/code/wp.scriptportlet.cmdln/src/com/ibm/wps/scriptportlet/cmdln/resources/CommandLineMessages_en.nlsprops
|
|
4
|
+
#COMPONENTPREFIX EJPRC
|
|
5
|
+
#COMPONENTNAMEFOR EJPRC Script Application Command Line Utility Messages
|
|
6
|
+
|
|
7
|
+
# AutoAuthHandler.7
|
|
8
|
+
ERROR_CMDLN_AUTHN_FAILURE_0=EJPRC0001E: فشل في دفع التطبيق بسبب حدوث فشل في التوثيق.
|
|
9
|
+
ERROR_CMDLN_AUTHN_FAILURE_0.explanation=حدث فشل في الأمر المحدد بسبب حدوث فشل في التوثيق لوحدة الخدمة باستخدام بيانات الاعتماد المحددة.
|
|
10
|
+
ERROR_CMDLN_AUTHN_FAILURE_0.useraction=تحقق من sp-cmdln.log في حافظة التطبيق للحصول على المزيد من المعلومات التفصيلية عن الخطأ وتحديد اسم المستخدم وكلمة السرية الصحيحين لعنوان URL لوحدة الخدمة المحددة.
|
|
11
|
+
|
|
12
|
+
# CommandLine.14
|
|
13
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1=EJPRC0002E: أمر تالف: {0}
|
|
14
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1.explanation=صيغة أمر لا يمكن التعرف عليها.
|
|
15
|
+
ERROR_CMDLN_MALFORMED_COMMAND_1.useraction=ارجع الى sp-cmdln.log في حافظة التطبيق وقم بتصحيح صيغة الأمر ليطابق المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application لأوامر واختيارات هذه الوظيفة.
|
|
16
|
+
|
|
17
|
+
# CommandLine.17
|
|
18
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1=EJPRC0003E: اختيارات سطر الأمر التي لا يمكن التعرف عليها: {0}
|
|
19
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1.explanation=لم يتم التعرف على أو دعم اختيارات سطر الأمر المحددة.
|
|
20
|
+
ERROR_CMDLN_UNRECOGNIZED_OPTIONS_1.useraction=ارجع الى المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application لمعرفة الاختيارات المدعمة وأعد تنفيذ الأمر باستخدام صيغة الاختيار الصحيحة.
|
|
21
|
+
|
|
22
|
+
# CommandLine.19
|
|
23
|
+
# The following {0} is replaced with the path to the log file that it's asking you to refer to for more details.
|
|
24
|
+
ERROR_CMDLN_CMD_FAILED_1=EJPRC0004E: فشل الأمر مع حدوث خطأ أو أكثر. ارجع الى السجل للحصول على المزيد من التفاصيل: ({0}).
|
|
25
|
+
ERROR_CMDLN_CMD_FAILED_1.explanation=فشل في تنفيذ الأمر نتيجة لحدوث خطأ أو أكثر، تم تسجيله في sp-cmdln.log. يعد هذا ملخص الخطأ الذي يتم عرضه بشاشة التحكم الرئيسية أو المخرجات القياسية عند تنفيذ الأمر بدون اطلاق الخطأ الاستثنائي، لكن يتم تسجيل الأخطاء في ملف السجل أثناء تنفيذ الأمر.
|
|
26
|
+
ERROR_CMDLN_CMD_FAILED_1.useraction=ارجع الى sp-cmdln.log في حافظة التطبيق لتحديد الخطأ أو الأخطاء التي حدثت.
|
|
27
|
+
|
|
28
|
+
# CommandLine.21
|
|
29
|
+
ERROR_CMDLN_BAD_CONFIG_1=EJPRC0005E: فشل في تنفيذ الأمر مع حدوث خطأ أو أكثر في التوصيف. ارجع الى السجل للحصول على المزيد من التفاصيل: ({0}).
|
|
30
|
+
ERROR_CMDLN_BAD_CONFIG_1.explanation=يحدث فشل في تنفيذ الأمر أثناء التحقق من صلاحية مجموعة خصائص التوصيف والمتغيرات المستقلة لسطر الأمر المحددة.
|
|
31
|
+
ERROR_CMDLN_BAD_CONFIG_1.useraction=ارجع الى sp-cmdln.log في حافظة التطبيق لتحديد الخطأ أو الأخطاء التي حدثت. يكون هذا الخطأ الخاص مصاحبا بالمزيد من معلومات الخطأ التفصيلية في ملف sp-cmdln.log، والذي يوضح المتغيرات المستقلة للتوصيف أو سطر الأمر التي أدت الى حدوث المشكلة.
|
|
32
|
+
|
|
33
|
+
# CommandLine.22
|
|
34
|
+
# In the following error condition, an unexpected exception made it past more specific error handling and was caught at the outer command processing layer, but the logger was not initialized so the exception is being logged to the console.
|
|
35
|
+
ERROR_CMDLN_CMD_FAILED_0=EJPRC0006E: فشل في تنفيذ الأمر مع حدوث خطأ استثنائي.
|
|
36
|
+
ERROR_CMDLN_CMD_FAILED_0.explanation=فشل في تنفيذ الأمر مع حدوث خطأ استثنائي من واجهة تعامل برمجة التطبيق يتم استدعاؤه بواسطة هذه الوظيفة. لم يتم اعداد النظام الفرعي للتسجيل للبدء عند النقطة التي حدث فشل بها، لذلك يتم تسجيل رسالة الخطأ الاستئنائي في شاشة التحكم الرئيسية أو تسلسل الأخطاء القياسية اذا كان قد تم تشغيل الوظيفة من البرنامج النصي للبناء.
|
|
37
|
+
ERROR_CMDLN_CMD_FAILED_0.useraction=ارجع الى رسالة الخطأ الاستثنائية المصاحبة في مخرجات شاشة التحكم الرئيسية لسطر الأمر أو حيث تم التقاط تسلسل الأخطاء القياسية اذا كان قد تم تنفيذ الأمر من البرنامج النصي للبناء، لتحديد الخطأ أو الأخطاء التي حدثت.
|
|
38
|
+
|
|
39
|
+
# CommandLine.23
|
|
40
|
+
# The difference between the above EJPRC0006E and this EJPRC0007E is in the above, the logging system failed to initialize so the error is to the console output and in this one, the logging system is initialized so the details are logged there.
|
|
41
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0=EJPRC0007E: فشل في تنفيذ الأمر مع حدوث خطأ استثنائي. ارجع الى ملف sp-cmdln.log للحصول على المزيد من المعلومات التفصيلية عن الخطأ.
|
|
42
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0.explanation=حدث فشل في تنفيذ الأمر مع حدوث خطأ أو أكثر. تم تسجيل تفاصيل الخطأ الاستثنائي في sp-cmdln.log.
|
|
43
|
+
ERROR_CMDLN_CMD_FAILED_LOG_0.useraction=ارجع الى sp-cmdln.log في حافظة التطبيق لتحديد الخطأ أو الأخطاء التي حدثت.
|
|
44
|
+
|
|
45
|
+
# CommandLine.6
|
|
46
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0=EJPRC0008W: الحافظة الرئيسية المحددة غير موجودة؛ يتم محاولة الاستمرار.
|
|
47
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0.explanation=الحافظة الرئيسية المحددة غير موجودة، لكن الأمر المحدد يقوم بمحاولة الاستمرار في التشغيل بأي حال.
|
|
48
|
+
WARNING_CMDLN_INVALID_ROOT_FOLDER_0.useraction=تحقق من أن الحافظة الرئيسية المحددة من خلال خاصية التوصيف sp-config.json أو متغير سطر الأمر تشير الى حافظة صحيحة موجودة على القرص، تحتوي على التطبيق الذي سيتم دفعه الى وحدة الخدمة.
|
|
49
|
+
|
|
50
|
+
# ConfigUtilities.29
|
|
51
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1=EJPRC0009E: يجب أن تكون قيمة التوصيف {0} عبارة عن مصفوفة مجموعة حروف.
|
|
52
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1.explanation=يتوقع معامل التوصيف المحدد مصفوفة مجموعة حروف بصيغة JSON، لكن لم تستطع وظيفة التوصيف اجراء تحليل لغوي للقيمة كمصفوفة لمجموعة الحروف.
|
|
53
|
+
ERROR_CMDLN_CONFIG_ARRAY_STRINGS_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
54
|
+
|
|
55
|
+
# ConfigUtilities.30
|
|
56
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1=EJPRC0010E: يجب أن تكون قيمة التوصيف {0} بوولية.
|
|
57
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1.explanation=يتوقع معامل التوصيف المحدد قيمة بوولية في صيغة JSON، لكن لم تستطع وظيفة التوصيف اجراء تحليل لغوي للقيمة كقيمة بوولية.
|
|
58
|
+
ERROR_CMDLN_CONFIG_BOOLEAN_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
59
|
+
|
|
60
|
+
# ConfigUtilities.32
|
|
61
|
+
ERROR_CMDLN_CONFIG_INTEGER_1=EJPRC0011E: يجب أن تكون قيمة التوصيف {0} رقم صحيح.
|
|
62
|
+
ERROR_CMDLN_CONFIG_INTEGER_1.explanation=يتوقع معامل التوصيف المحدد قيمة رقم صحيح بصيغة JSON، لكن لم تستطع وظيفة التوصيف اجراء تحليل لغوي للقيمة كقيمة رقم صحيح.
|
|
63
|
+
ERROR_CMDLN_CONFIG_INTEGER_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
64
|
+
|
|
65
|
+
# ConfigUtilities.33
|
|
66
|
+
ERROR_CMDLN_CONFIG_JSON_1=EJPRC0012E: يجب أن تكون قيمة التوصيف {0} عنصر JSON.
|
|
67
|
+
ERROR_CMDLN_CONFIG_JSON_1.explanation=معامل التوصيف المحدد يتوقع عنصر JSON، لكن لم تستطيع وظيفة التوصيف اجراء تحليل لغوي للقيمة كعنصر JSON.
|
|
68
|
+
ERROR_CMDLN_CONFIG_JSON_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
69
|
+
|
|
70
|
+
# ConfigUtilities.34
|
|
71
|
+
ERROR_CMDLN_CONFIG_STRING_1=EJPRC0013E: يجب أن تكون قيمة التوصيف {0} مجموعة حروف.
|
|
72
|
+
ERROR_CMDLN_CONFIG_STRING_1.explanation=يتوقع معامل التوصيف المحدد قيمة مجموعة حروف JSON، لكن لم تستطع وظيفة التوصيف اجراء تحليل لغوي للقيمة كقيمة مجموعة حروف JSON.
|
|
73
|
+
ERROR_CMDLN_CONFIG_STRING_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
74
|
+
|
|
75
|
+
# ConfigUtilities.37
|
|
76
|
+
ERROR_CMDLN_CONFIG_URL_1=EJPRC0014E: يجب أن تكون قيمة التوصيف {0} عنوان URL.
|
|
77
|
+
ERROR_CMDLN_CONFIG_URL_1.explanation=يتوقع معامل التوصيف المحدد قيمة عنوان url، لكن وظيفة التوصيف لم تستطع اجراء تحليل لغوي للقيمة كقيمة عنوان url.
|
|
78
|
+
ERROR_CMDLN_CONFIG_URL_1.useraction=قم بفحص وتصحيح معامل التوصيف المحدد ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
79
|
+
|
|
80
|
+
# ConfigUtilities.38
|
|
81
|
+
# The command line options typically come in pairs, eg: -wcmContentName foo. If you specified -wcmContentGnome foo it would list that option pair as being unrecognized "wcmContentGnome" "foo" to give the user a chance to recognize what they mistyped. It'll use a different msg if you had a single unrecognized arg as opposed to an arg pair that it didn't recognize.
|
|
82
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2=EJPRC0015W: يتم تجاهل اختيار سطر الأمر الذي لم يتم التعرف عليه: {0} {1}
|
|
83
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2.explanation=تقوم الوظيفة بتجاهل اختيار سطر الأمر الذي لم يتم التعرف عليه.
|
|
84
|
+
WARN_CMDLN_IGNORING_UNRECOGNIZED_OPTIONS_2.useraction=قم بفحص وتصحيح اختيارات سطر الأمر المحددة لتطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
85
|
+
|
|
86
|
+
# ConfigUtilities.41
|
|
87
|
+
# Note, this appears to be a placeholder for future functionality. There does not appear to be code that calls this config-save functionality yet.
|
|
88
|
+
ERROR_CMDLN_CONFIG_EXISTS_0=EJPRC0016E: ملف التوصيف موجود ويسمح بالاحلال.
|
|
89
|
+
ERROR_CMDLN_CONFIG_EXISTS_0.explanation=يوجد ملف توصيف بنفس الاسم بالفعل ولا يسمح بالاحلال.
|
|
90
|
+
ERROR_CMDLN_CONFIG_EXISTS_0.useraction=أعد تسمية أو قم بازالة ملف التوصيف الحالي وأعد تنفيذ العملية مرة أخرى.
|
|
91
|
+
|
|
92
|
+
# GenericCommand.0
|
|
93
|
+
ERROR_CMDLN_AUTHN_HANDLER_1=EJPRC0017E: لا يمكن تكوين برنامج المعالجة للتوثيق المحدد {0}.
|
|
94
|
+
ERROR_CMDLN_AUTHN_HANDLER_1.explanation=حدث خطأ أثناء محاولة تكوين نسخة من برنامج معالجة التوثيق الذي تم توصيفه.
|
|
95
|
+
ERROR_CMDLN_AUTHN_HANDLER_1.useraction=ارجع الى ملف sp-cmdln.log للحصول على المزيد من التفاصيل. اذا كنت تحاول توصيف برنامج المعالجة للتوثيق المهيأ، عندئذ قد يتم اتلاف عملية تركيب وظيفة سطر الأمر. ارجع الى المطبوعات الفنية لوظيفة سطر أمر Script Application للحصول على معلومات عن كيفية تنزيل وتركيب وظيفة سطر الأمر.
|
|
96
|
+
|
|
97
|
+
# GenericCommand.1
|
|
98
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0=EJPRC0018E: لا يمكن تكوين جهة تقديم برنامج الوحدة التابعة المحددة.
|
|
99
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0.explanation=حدث خطأ أثناء محاولة تكوين نسخة من جهة اتاحة برنامج http لسطر الأمر الذي تم توصيفه.
|
|
100
|
+
ERROR_CMDLN_CLIENT_PROVIDER_0.useraction=تأكد من أنه تم تركيب وظيفة سطر الأمر بطريقة صحيحة. ارجع الى ملف sp-cmdln.log للحصول على المزيد من التفاصيل.
|
|
101
|
+
|
|
102
|
+
# GenericResponseHandler.14
|
|
103
|
+
ERROR_CMDLN_RESPONSE_PARSE_0=EJPRC0019E: فشل في اجراء تحليل لغوي لنص الاستجابة.
|
|
104
|
+
ERROR_CMDLN_RESPONSE_PARSE_0.explanation=لم تستطع وظيفة سطر الأمر اجراء تحليل لغوي للاستجابة من وحدة الخدمة.
|
|
105
|
+
ERROR_CMDLN_RESPONSE_PARSE_0.useraction=ارجع الى ملف sp-cmdln.log في حافظة التطبيق للمساعدة في تحديد سبب المشكلة.
|
|
106
|
+
|
|
107
|
+
# ListCommand.0
|
|
108
|
+
ERROR_CMDLN_LIST_TYPE_2=EJPRC0020E: يجب أن يكون نوع عنصر الكشف {0} أو {1}.
|
|
109
|
+
ERROR_CMDLN_LIST_TYPE_2.explanation=تم تحديد متغير مستقل لم يمكن التعرف عليه لنوع العنصر لسطر الكشف.
|
|
110
|
+
ERROR_CMDLN_LIST_TYPE_2.useraction=قم بفحص وتصحيح المتغير المستقل المحدد بأمر الكشف، ليطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
111
|
+
|
|
112
|
+
# ListCommand.11 AND # ListCommand.39
|
|
113
|
+
ERROR_CMDLN_LIST_FAILED_0=EJPRC0021E: فشل في كشف العناصر مع حدوث خطأ أو أكثر.
|
|
114
|
+
ERROR_CMDLN_LIST_FAILED_0.explanation=فشل في تنفيذ أوامر الكشف. يجب تسجيل المعلومات الاضافية والأخطاء السابقة في ملف sp-cmdln.log.
|
|
115
|
+
ERROR_CMDLN_LIST_FAILED_0.useraction=ارجع الى ملف sp-cmdln.log للحصول على معلومات تفصيلية عن أية أخطاء حدثت وتأكد من أن المتغيرات المستقلة والتوصيف يطابق الصيغة التي تم توثيقها.
|
|
116
|
+
|
|
117
|
+
# ListCommand.15
|
|
118
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0=EJPRC0022E: فشل في كشف العناصر. لم يتم استلام محتوى النص المتوقع.
|
|
119
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0.explanation=لم تقم أوامر الكشف باستلام محتوى نص استجابة JSON المتوقع، مما يشير الى أنه لم يتم استكمال الأمر بنجاح.
|
|
120
|
+
ERROR_CMDLN_LIST_FAILED_BODY_0.useraction=ارجع الى ملف sp-cmdln.log لتحديد الأخطاء التي حدثت واتخاذ التصرف المناسب لحل المشكلة.
|
|
121
|
+
|
|
122
|
+
# ListCommand.3
|
|
123
|
+
ERROR_CMDLN_NO_VPS_0=EJPRC0023E: لم يتم ايجاد أية نسخ بوابة افتراضية.
|
|
124
|
+
ERROR_CMDLN_NO_VPS_0.explanation=لم يتم ايجاد أية نسخ بوابة افتراضية.
|
|
125
|
+
ERROR_CMDLN_NO_VPS_0.useraction=تأكد من أنه تم تحديد المستخدم ووحدة الخدمة الصحيحين.
|
|
126
|
+
|
|
127
|
+
# ListCommand.4=
|
|
128
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0=EJPRC0024E: لم يتم ايجاد أية مشروعات WCM.
|
|
129
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0.explanation=لم يتم ايجاد أية مشروعات WCM على وحدة الخدمة المحددة، بالنسبة لبيانات اعتماد المستخدم المحددة.
|
|
130
|
+
ERROR_CMDLN_NO_WCM_PROJECTS_0.useraction=تأكد من أنه تم تحديد المستخدم ووحدة الخدمة الصحيحين، أو قم بتكوين مشروع للتعامل معه اذا لم يكن هناك أي مشروع.
|
|
131
|
+
|
|
132
|
+
# Logger.21
|
|
133
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0=EJPRC0025E: حدث خطأ استثنائي أثناء تسجيل محتوى التخزين. قد لا يكون كشف الملفات التي تم استخراجها دقيق.
|
|
134
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0.explanation=حدث خطأ استثنائي أثناء كتابة استجابة وحدة الخدمة الى أمر الدفع لملف sp-cmdln.log.
|
|
135
|
+
ERROR_CMDLN_ERROR_LOGGING_ARCHIVE_0.useraction=أعد تسمية ملف السجل، وتأكد من أنه توجد مساحة قرص كافية، وأعد تنفيذ الأمر مرة أخرى.
|
|
136
|
+
|
|
137
|
+
# Logger.5
|
|
138
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0=EJPRC0026E: فشل في اعداد ملف السجل للبدء. التسجيل للخطأ القياسي.
|
|
139
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0.explanation=لم تستطع الوظيفة الكتابة بملف السجل وتم الكتابة بتسلسل مخرجات الخطأ القياسي بدلا من ذلك.
|
|
140
|
+
ERROR_CMDLN_LOG_INIT_FAILED_0.useraction=تحقق من مخرجات الخطأ لمعرفة رسائل الخطأ.
|
|
141
|
+
|
|
142
|
+
# Logger.6
|
|
143
|
+
WARN_CMDLN_LOG_STDERR_0=EJPRC0027W: تم كتابة السجل للخطأ القياسي.
|
|
144
|
+
WARN_CMDLN_LOG_STDERR_0.explanation=لم تستطع الوظيفة الكتابة بملف السجل وتم الكتابة بتسلسل مخرجات الخطأ القياسي بدلا من ذلك.
|
|
145
|
+
WARN_CMDLN_LOG_STDERR_0.useraction=تحقق من مخرجات الخطأ لمعرفة رسائل الخطأ.
|
|
146
|
+
|
|
147
|
+
# PushCommand.21
|
|
148
|
+
ERROR_CMDLN_PUSH_FAILED_0=EJPRC0028E: فشل في تنفيذ أمر الدفع للتطبيق مع حدوث خطأ أو أكثر.
|
|
149
|
+
ERROR_CMDLN_PUSH_FAILED_0.explanation=حدث خطأ أثناء محاولة دفع التطبيق المحدد الى وحدة الخدمة. يمكن أن يحدث هذا الخطأ عند اطلاق خطأ استثنائي غير متوقع من خلال واجهة تعامل برمجة التطبيق التي توجد الوظيفة عليها أو عند قيام وحدة الخدمة بارجاع رسالة استجابة تشير الى عدم نجاح الطلب.
|
|
150
|
+
ERROR_CMDLN_PUSH_FAILED_0.useraction=ارجع الى ملف sp-cmdln.log لتحديد الأخطاء التي حدثت واتخاذ التصرف المناسب لحل المشكلة.
|
|
151
|
+
|
|
152
|
+
# PushCommand.25
|
|
153
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0=EJPRC0029E: محتوى النص لا يعد JSON صحيح.
|
|
154
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0.explanation=لم يقم أمر الدفع باستلام محتوى نص استجابة JSON المتوقع، مما يشير الى أنه لم يتم استكمال الأمر بنجاح.
|
|
155
|
+
ERROR_CMDLN_BODY_INVALID_JSON_0.useraction=ارجع الى ملف السجل لتحديد الأخطاء التي حدثت واتخاذ التصرف المناسب لحل المشكلة.
|
|
156
|
+
|
|
157
|
+
# PushCommand.26
|
|
158
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0=EJPRC0030E: حدث فشل في دفع التطبيق. لم يتم استلام محتوى النص المتوقع.
|
|
159
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0.explanation=لم يقم أمر الدفع باستلام محتوى نص استجابة JSON المتوقع، مما يشير الى أنه لم يتم استكمال الأمر بنجاح.
|
|
160
|
+
ERROR_CMDLN_PUSH_FAIL_RESPONSE_0.useraction=ارجع الى ملف السجل لتحديد الأخطاء التي حدثت واتخاذ التصرف المناسب لحل المشكلة.
|
|
161
|
+
|
|
162
|
+
# PushCommand.34
|
|
163
|
+
# The word ZIP in the following resource string should not be translated.
|
|
164
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0=EJPRC0031E: تتطلب عملية دفع المحتوى ZIP تم بناءه مسبقا أو حافظة رئيسية صحيحة.
|
|
165
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0.explanation=يجب تحديد ملف تخزين التطبيق الذي تم بناءه مسبقا أو الحافظة الرئيسية للتطبيق لهذا الأمر.
|
|
166
|
+
ERROR_CMDLN_PUSH_REQUIRES_APP_0.useraction=تأكد من أن المتغيرات المستقلة وتوصيف سطر الأمر المحدد يطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
167
|
+
|
|
168
|
+
# PushCommand.35
|
|
169
|
+
ERROR_CMDLN_MISSING_HTML_1=EJPRC0032E: ملف HTML الرئيسي المحدد غير موجود في الحافظة الرئيسية: {0}
|
|
170
|
+
ERROR_CMDLN_MISSING_HTML_1.explanation=ملف HTML الرئيسي المحدد غير موجود في الحافظة الرئيسية للتطبيق المحدد.
|
|
171
|
+
ERROR_CMDLN_MISSING_HTML_1.useraction=قم بفحص التطبيق لتحديد ملف HTML الرئيسي وحدد المسار لملف HTML بطريقة مناسبة.
|
|
172
|
+
|
|
173
|
+
# PushCommand.36
|
|
174
|
+
# The word ZIP in the following resource string should not be translated.
|
|
175
|
+
ERROR_CMDLN_MISSING_ZIP_1=EJPRC0033E: ملف ZIP المحدد الذي تم بناءه مسبقا غير موجود: {0}
|
|
176
|
+
ERROR_CMDLN_MISSING_ZIP_1.explanation=ملف تخزين التطبيق المحدد غير موجود.
|
|
177
|
+
ERROR_CMDLN_MISSING_ZIP_1.useraction=قم بفحص المتغيرات المستقلة لسطر الأمر والتوصيف للتأكد من أنه تم تحديد المسار الصحيح لملف تخزين التطبيق الذي تم بناءه مسبقا.
|
|
178
|
+
|
|
179
|
+
# PushCommand.37
|
|
180
|
+
# The word ZIP in the following resource string should not be translated.
|
|
181
|
+
ERROR_CMDLN_NO_HTML_ZIP_1=EJPRC0034E: ملف ZIP الذي تم بناءه مسبقا لا يحتوي على ملف HTML الرئيسي المحدد: {0}
|
|
182
|
+
ERROR_CMDLN_NO_HTML_ZIP_1.explanation=لم تستطع وظيفة الأمر ايجاد ملف HTML الرئيسي في ملف تخزين التطبيق المضغوط المحدد.
|
|
183
|
+
ERROR_CMDLN_NO_HTML_ZIP_1.useraction=ارجع الى ملف تخزين التطبيق والمتغيرات المستقلة لسطر الأمر وقم بتطبيق التصحيحات اذا تطلب الأمر للتأكد من أن المنتج يمكنه ايجاد ملف HTML الرئيسي في ملف تخزين التطبيق المحدد.
|
|
184
|
+
|
|
185
|
+
# PushCommand.38
|
|
186
|
+
# The placeholders here are replaced with wcmContentName, wcmContentID and wcmContentPath, where exactly one of which must be specified by config file or command line argument for a successful push.
|
|
187
|
+
ERROR_CMDLN_MISSING_ARG_3=EJPRC0035E: يجب تحديد واحد من {0} أو {1} أو {2} عند دفع المحتوى.
|
|
188
|
+
ERROR_CMDLN_MISSING_ARG_3.explanation=تم ادخال متغيرات مستقلة غير كافية لاستكمال أمر الدفع المحدد. يجب أن يقوم أمر الدفع بتعريف المكان في WCM الذي سيتم تخزين محتوى Script Application به، بواسطة الاسم الخاص بمساحة الموقع التي تم توصيفها، أو كود تعريف المحتوى لنسخة Script Application الحالية، أو المسار الكامل الى بند محتوى WCM.
|
|
189
|
+
ERROR_CMDLN_MISSING_ARG_3.useraction=ارجع الى المتغيرات المستقلة لسطر الأمر والتوصيف وتأكد من أنها مطابقة للمطبوعات الفنية للمقدمة عن سطر أمر Script Application للصيغة الخاصة بهذا الأمر.
|
|
190
|
+
|
|
191
|
+
# PushCommand.39
|
|
192
|
+
# Placeholders replaced with non-translatable wcmContentID, wcmContentName and wcmContentPath, only one of which may be specified via config or command-line arg, for a valid push command.
|
|
193
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3=EJPRC0036E: قد يتم تحديد واحد فقط من {0} أو {1} أو {2} عند دفع المحتوى.
|
|
194
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3.explanation=تم تحديد المتغيرات المستقلة أو التوصيف المتعارض. يمكن أن يحدث هذا اذا قمت بتحديد اسم محتوى لتخزين Script Application باستخدامه، لكن أيضا اذا تم تحديد كود المحتوى أو مسار المحتوى WCM الكامل لتخزين Script Application به. تشير أحد خصائص التوصيف أو المتغيرات المستقلة هذه الى المكان الذي يجب به تحديد محتوى Script Application الذي تم دفعه.
|
|
195
|
+
ERROR_CMDLN_CONFLICTING_ARGS_3.useraction=ارجع الى المتغيرات المستقلة لسطر الأمر والتوصيف وتأكد من أنها مطابقة للمطبوعات الفنية للمقدمة عن سطر أمر Script Application للصيغة الخاصة بهذا الأمر.
|
|
196
|
+
|
|
197
|
+
# PushCommand.40
|
|
198
|
+
# The placeholders are replaced with the non-translatable wcmContentName and wcmContentSiteArea strings where if wcmContentName is specified, then wcmContentSiteArea must be specified by either configuration or command line argument.
|
|
199
|
+
ERROR_CMDLN_MISSING_ARG_2=EJPRC0037E: يجب استخدام {0} في مجموعة مع {1} عند دفع المحتوى.
|
|
200
|
+
ERROR_CMDLN_MISSING_ARG_2.explanation=يجب ادخال المتغير المستقل المحدد عند تنفيذ هذا الأمر. يحدث هذا اذا تم تحديد متغير خاصية أو سطر أمر توصيف wcmContentName بدون تحديد المتغير المستقل لسطر أمر أو خاصية توصيف wcmContentSiteArea أيضا.
|
|
201
|
+
ERROR_CMDLN_MISSING_ARG_2.useraction=تأكد من أن المتغيرات المستقلة وتوصيف سطر الأمر المحدد يطابق الصيغة الموضحة في المطبوعات الفنية للمقدمة عن وظيفة سطر أمر Script Application.
|
|
202
|
+
|
|
203
|
+
# Utilities.0
|
|
204
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0=EJPRC0038E: حدثت مشكلة أثناء اعادة تنظيم الذاكرة.
|
|
205
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0.explanation=حدث خطأ غير متوقع أثناء اعادة تنظيم الذاكرة أثناء تنفيذ الأمر المحدد.
|
|
206
|
+
ERROR_CMDLN_UNHANDLED_DISPOSAL_0.useraction=ارجع الى ملف السجل sp-cmdln.log للحصول على المزيد من المعلومات عن الأخطاء التي قد تكون حدثت أثناء تنفيذ الأمر.
|
|
207
|
+
|
|
208
|
+
# Error to the sp push command line output when there is an error loading the configuration file. For example, "EJPRC0039E: Error loading configuration file c:\archive\ScriptPortlet\spcf\sp-config.json" followed by "java.io.FileNotFoundException: c:\archive\ScriptPortlet\spcf\sp-config.json (Access is denied)"
|
|
209
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1=EJPRC0039E: حدث خطأ أثناء تحميل ملف التوصيف {0}
|
|
210
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1.explanation=حدث خطأ أثناء تحميل ملف التوصيف المحدد. تعتمد وظيفة سجل Script Application على قراءة ملف التوصيف للتشغيل بطريقة صحيحة. اذا كان هناك خطأ في تحميل ملف التوصيف، ستكون مخرجات تفاصيل التسجيل الى شاشة التحكم الرئيسية بدلا من ملف السجل.
|
|
211
|
+
ERROR_CMDLN_ERROR_LOADING_CONFIG_1.useraction=قم بتصحيح ملف التوصيف بناءا على تفاصيل الخطأ وحاول تنفيذ العملية مرة أخرى.
|