@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,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=Felhaszn\u00e1l\u00f3:
|
|
7
|
+
AutoAuthHandler.5=Jelsz\u00f3:
|
|
8
|
+
AutoAuthHandler.6=Hiteles\u00edt\u00e9si URL: {0}
|
|
9
|
+
AutoAuthHandler.8=A hiteles\u00edt\u00e9s siker\u00fclt.
|
|
10
|
+
BasicAuthHandler.0=Felhaszn\u00e1l\u00f3:
|
|
11
|
+
BasicAuthHandler.1=Jelsz\u00f3:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Nyissa meg a k\u00f6vetkez\u0151 URL c\u00edmet egy b\u00f6ng\u00e9sz\u0151ben, hogy megtekintse a Script Application parancssori seg\u00e9dprogram dokument\u00e1ci\u00f3j\u00e1t.
|
|
14
|
+
CommandLine.20=A parancs siker\u00fclt. R\u00e9szletek\u00e9rt tekintse meg a napl\u00f3t: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=A Script Application parancssori seg\u00e9dprogram v\u00e1ltozata: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=A Script Application parancssori seg\u00e9dprogram \u00f6ssze\u00e9p\u00edt\u00e9si sz\u00e1ma: {0}
|
|
19
|
+
CommandLine.8=Alapk\u00f6nyvt\u00e1r: {0}
|
|
20
|
+
CommandLine.9=Nincs megadva.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application kiszolg\u00e1l\u00f3:
|
|
23
|
+
GenericResponseHandler.11=V\u00e1lasz \u00e1llapota: {0}
|
|
24
|
+
GenericResponseHandler.12=T\u00f6rzs hat\u00e1lyos karakterk\u00e9szlete: {0}
|
|
25
|
+
GenericResponseHandler.13=T\u00f6rzs tartalma: {0}
|
|
26
|
+
GenericResponseHandler.14=V\u00e1lasz t\u00f6rzs\u00e9nek \u00e9rtelmez\u00e9se meghi\u00fasult.
|
|
27
|
+
ListCommand.10=C\u00e9l hiteles\u00edt\u00e9si adatai: {0}
|
|
28
|
+
ListCommand.23=Virtu\u00e1lis port\u00e1l neve
|
|
29
|
+
ListCommand.24=WCM projekt neve
|
|
30
|
+
ListCommand.25=Virtu\u00e1lis port\u00e1l azonos\u00edt\u00f3ja
|
|
31
|
+
ListCommand.26=WCM tartalomazonos\u00edt\u00f3
|
|
32
|
+
ListCommand.27=Webhely ter\u00fclet el\u00e9r\u00e9si \u00fatja
|
|
33
|
+
ListCommand.28=Webhely ter\u00fclet azonos\u00edt\u00f3ja
|
|
34
|
+
ListCommand.37=Objektumok list\u00e1z\u00e1sa siker\u00fclt.
|
|
35
|
+
ListCommand.38=Objektumok list\u00e1z\u00e1s\u00e1nak befejez\u00e9se a port\u00e1lon.
|
|
36
|
+
ListCommand.6=Objektumok list\u00e1z\u00e1s\u00e1nak megkezd\u00e9se a port\u00e1lon.
|
|
37
|
+
ListCommand.7=Lista URL: {0}
|
|
38
|
+
ListCommand.8=C\u00e9l hiteles\u00edt\u00e9si \u00e1llapota: {0}
|
|
39
|
+
ListCommand.9=C\u00e9l hiteles\u00edt\u00e9si s\u00e9m\u00e1ja: {0}
|
|
40
|
+
Logger.0={0} ({1} byte)
|
|
41
|
+
Logger.10=Hat\u00e1lyos konfigur\u00e1ci\u00f3s tulajdons\u00e1gok: {0}
|
|
42
|
+
Logger.16=Java k\u00f6rnyezet: {0}
|
|
43
|
+
Logger.22=Arch\u00edv folyam ({0} byte {1} f\u00e1jlban): {2}
|
|
44
|
+
Logger.24=Ismeretlen
|
|
45
|
+
Logger.26=Arch\u00edv f\u00e1jl: {0}({1} byte {2} f\u00e1jlban) {3}
|
|
46
|
+
Logger.4=A napl\u00f3z\u00e1s vissza\u00e1ll az alap\u00e9rtelmezett szabv\u00e1nyos hibakimenetre.
|
|
47
|
+
PushCommand.10=WCM tartalom c\u00edme: {0}
|
|
48
|
+
PushCommand.11=F\u0151 HTML f\u00e1jl: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=Egy\u00e9ni POST param\u00e9ter: {0} = {1}
|
|
51
|
+
PushCommand.18=C\u00e9l hiteles\u00edt\u00e9si \u00e1llapota: {0}
|
|
52
|
+
PushCommand.19=C\u00e9l hiteles\u00edt\u00e9si s\u00e9m\u00e1ja: {0}
|
|
53
|
+
PushCommand.20=C\u00e9l hiteles\u00edt\u00e9si adatai: {0}
|
|
54
|
+
PushCommand.3=F\u0151 HTML f\u00e1jl:
|
|
55
|
+
PushCommand.31=A tartalom felt\u00f6lt\u00e9se siker\u00fclt.
|
|
56
|
+
PushCommand.32=Tartalom port\u00e1lra t\u00f6lt\u00e9s\u00e9nek befejez\u00e9se.
|
|
57
|
+
PushCommand.4=Tartalom port\u00e1lra t\u00f6lt\u00e9s\u00e9nek megkezd\u00e9se.
|
|
58
|
+
PushCommand.5=Push m\u0171velet URL c\u00edme: {0}
|
|
59
|
+
PushCommand.6=Virtu\u00e1lis port\u00e1l kontextusa: {0}
|
|
60
|
+
PushCommand.7=Projekt kontextusa: {0}
|
|
61
|
+
PushCommand.8=WCM tartalom azonos\u00edt\u00f3: {0}
|
|
62
|
+
PushCommand.9=WCM tartalom \u00fatvonala: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=Utente:
|
|
7
|
+
AutoAuthHandler.5=Password:
|
|
8
|
+
AutoAuthHandler.6=URL di autenticazione: {0}
|
|
9
|
+
AutoAuthHandler.8=Autenticazione eseguita con esito positivo.
|
|
10
|
+
BasicAuthHandler.0=Utente:
|
|
11
|
+
BasicAuthHandler.1=Password:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Aprire il seguente URL in un browser per visualizzare la documentazione dell'utility di riga comandi Script Application.
|
|
14
|
+
CommandLine.20=Comando riuscito. Consultare il log per i dettagli: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Versione utility di riga comandi Script Application: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Numero di build utility di riga comandi Script Application: {0}
|
|
19
|
+
CommandLine.8=Cartella Home: {0}
|
|
20
|
+
CommandLine.9=Non specificato.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Server Script Application:
|
|
23
|
+
GenericResponseHandler.11=Stato risposta: {0}
|
|
24
|
+
GenericResponseHandler.12=Serie di caratteri effettiva del corpo: {0}
|
|
25
|
+
GenericResponseHandler.13=Contenuto del corpo: {0}
|
|
26
|
+
GenericResponseHandler.14=Analisi corpo della risposta non riuscita.
|
|
27
|
+
ListCommand.10=Credenziali di autenticazione di destinazione: {0}
|
|
28
|
+
ListCommand.23=Nome portale virtuale
|
|
29
|
+
ListCommand.24=Nome progetto WCM
|
|
30
|
+
ListCommand.25=ID portale virtuale
|
|
31
|
+
ListCommand.26=ID contenuto WCM
|
|
32
|
+
ListCommand.27=Percorso area del sito
|
|
33
|
+
ListCommand.28=ID area del sito
|
|
34
|
+
ListCommand.37=Elenco oggetti riuscito.
|
|
35
|
+
ListCommand.38=Terminare l'elenco oggetti sul portale.
|
|
36
|
+
ListCommand.6=Iniziare l'elenco oggetti sul portale.
|
|
37
|
+
ListCommand.7=URL elenco: {0}
|
|
38
|
+
ListCommand.8=Stato di autenticazione di destinazione: {0}
|
|
39
|
+
ListCommand.9=Schema di autenticazione di destinazione: {0}
|
|
40
|
+
Logger.0={0} ({1} byte)
|
|
41
|
+
Logger.10=Propriet\u00e0 di configurazione effettive: {0}
|
|
42
|
+
Logger.16=Ambiente Java: {0}
|
|
43
|
+
Logger.22=Flusso archivio ({0} byte in {1} file): {2}
|
|
44
|
+
Logger.24=Sconosciuto
|
|
45
|
+
Logger.26=File archivio: {0}({1} byte in {2} file) {3}
|
|
46
|
+
Logger.4=La registrazione verr\u00e0 impostata sul valore predefinito errore standard.
|
|
47
|
+
PushCommand.10=Titolo contenuto WCM: {0}
|
|
48
|
+
PushCommand.11=File HTML principale: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=Parametro POST personalizzato: {0} = {1}
|
|
51
|
+
PushCommand.18=Stato di autenticazione di destinazione: {0}
|
|
52
|
+
PushCommand.19=Schema di autenticazione di destinazione: {0}
|
|
53
|
+
PushCommand.20=Credenziali di autenticazione di destinazione: {0}
|
|
54
|
+
PushCommand.3=File HTML principale:
|
|
55
|
+
PushCommand.31=Invio del contenuto riuscito.
|
|
56
|
+
PushCommand.32=Terminare l'invio del contenuto sul portale.
|
|
57
|
+
PushCommand.4=Iniziare l'invio del contenuto sul portale.
|
|
58
|
+
PushCommand.5=URL di invio: {0}
|
|
59
|
+
PushCommand.6=Contesto portale virtuale: {0}
|
|
60
|
+
PushCommand.7=Contesto progetto: {0}
|
|
61
|
+
PushCommand.8=ID contenuto WCM: {0}
|
|
62
|
+
PushCommand.9=Percorso contenuto WCM: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=\u05de\u05e9\u05ea\u05de\u05e9:
|
|
7
|
+
AutoAuthHandler.5=\u05e1\u05d9\u05e1\u05de\u05d4:
|
|
8
|
+
AutoAuthHandler.6=URL \u05d0\u05d9\u05de\u05d5\u05ea: {0}
|
|
9
|
+
AutoAuthHandler.8=\u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05e6\u05dc\u05d9\u05d7.
|
|
10
|
+
BasicAuthHandler.0=\u05de\u05e9\u05ea\u05de\u05e9:
|
|
11
|
+
BasicAuthHandler.1=\u05e1\u05d9\u05e1\u05de\u05d4:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=\u05e4\u05ea\u05d7\u05d5 \u05d0\u05ea \u05d4-URL \u05e9\u05dc\u05d4\u05dc\u05df \u05d1\u05d3\u05e4\u05d3\u05e4\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d9\u05d2 \u05d0\u05ea \u05ea\u05d9\u05e2\u05d5\u05d3 \u05e9\u05d5\u05e8\u05ea \u05d4\u05e4\u05e7\u05d5\u05d3\u05d4 \u05e9\u05dc Script Application.
|
|
14
|
+
CommandLine.20=\u05d4\u05e4\u05e7\u05d5\u05d3\u05d4 \u05d1\u05d5\u05e6\u05e2\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4. \u05e8\u05d0\u05d5 \u05e4\u05e8\u05d8\u05d9\u05dd \u05d1\u05d9\u05d5\u05de\u05df: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=\u05d2\u05e8\u05e1\u05ea \u05e9\u05d5\u05e8\u05ea \u05d4\u05e4\u05e7\u05d5\u05d3\u05d4 \u05e9\u05dc Script Application:\u200f {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=\u05de\u05e1\u05e4\u05e8 \u05d1\u05e0\u05d9\u05d9\u05d4 \u05e9\u05dc \u05e9\u05d5\u05e8\u05ea \u05d4\u05e4\u05e7\u05d5\u05d3\u05d4 \u05e9\u05dc Script Application:\u200f {0}
|
|
19
|
+
CommandLine.8=\u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05d1\u05d9\u05ea: {0}
|
|
20
|
+
CommandLine.9=\u05dc\u05d0 \u05e6\u05d5\u05d9\u05df.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=\u05e9\u05e8\u05ea Script Application:\u200f
|
|
23
|
+
GenericResponseHandler.11=\u05de\u05e6\u05d1 \u05ea\u05d2\u05d5\u05d1\u05d4: {0}
|
|
24
|
+
GenericResponseHandler.12=\u05de\u05e2\u05e8\u05db\u05ea \u05ea\u05d5\u05d5\u05d9\u05dd \u05d1\u05e4\u05d5\u05e2\u05dc \u05e9\u05dc \u05d4\u05d2\u05d5\u05e3: {0}
|
|
25
|
+
GenericResponseHandler.13=\u05ea\u05d5\u05db\u05df \u05d2\u05d5\u05e3: {0}
|
|
26
|
+
GenericResponseHandler.14=\u05e0\u05d9\u05ea\u05d5\u05d7 \u05d2\u05d5\u05e3 \u05d4\u05ea\u05d2\u05d5\u05d1\u05d4 \u05e0\u05db\u05e9\u05dc.
|
|
27
|
+
ListCommand.10=\u05d4\u05e1\u05de\u05db\u05d5\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
28
|
+
ListCommand.23=\u05e9\u05dd \u05e4\u05d5\u05e8\u05d8\u05dc \u05d5\u05d9\u05e8\u05d8\u05d5\u05d0\u05dc\u05d9
|
|
29
|
+
ListCommand.24=\u05e9\u05dd \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 WCM
|
|
30
|
+
ListCommand.25=\u05d6\u05d9\u05d4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05dc \u05d5\u05d9\u05e8\u05d8\u05d5\u05d0\u05dc\u05d9
|
|
31
|
+
ListCommand.26=\u05d6\u05d9\u05d4\u05d5\u05d9 \u05ea\u05d5\u05db\u05df \u05e9\u05dc WCM
|
|
32
|
+
ListCommand.27=\u05e0\u05ea\u05d9\u05d1 \u05d0\u05d6\u05d5\u05e8 \u05d0\u05ea\u05e8
|
|
33
|
+
ListCommand.28=\u05d6\u05d9\u05d4\u05d5\u05d9 \u05d0\u05d6\u05d5\u05e8 \u05d0\u05ea\u05e8
|
|
34
|
+
ListCommand.37=\u05d4\u05e6\u05d2\u05ea \u05e8\u05e9\u05d9\u05de\u05ea \u05d4\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd \u05d1\u05d5\u05e6\u05e2\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.
|
|
35
|
+
ListCommand.38=\u05e1\u05d9\u05d5\u05dd \u05d4\u05e6\u05d2\u05ea \u05e8\u05e9\u05d9\u05de\u05ea \u05d4\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd \u05d1\u05e4\u05d5\u05e8\u05d8\u05dc.
|
|
36
|
+
ListCommand.6=\u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05e6\u05d2\u05ea \u05e8\u05e9\u05d9\u05de\u05ea \u05d4\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd \u05d1\u05e4\u05d5\u05e8\u05d8\u05dc.
|
|
37
|
+
ListCommand.7=URL \u05e8\u05e9\u05d9\u05de\u05d4: {0}
|
|
38
|
+
ListCommand.8=\u05de\u05e6\u05d1 \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
39
|
+
ListCommand.9=\u05e1\u05db\u05d9\u05de\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
40
|
+
Logger.0={0} ({1} \u05d1\u05ea\u05d9\u05dd)
|
|
41
|
+
Logger.10=\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05ea\u05e6\u05d5\u05e8\u05d4 \u05d1\u05e4\u05d5\u05e2\u05dc: {0}
|
|
42
|
+
Logger.16=\u05e1\u05d1\u05d9\u05d1\u05ea Java: {0}
|
|
43
|
+
Logger.22=\u05d6\u05e8\u05dd \u05d0\u05e8\u05db\u05d5\u05d1 ({0} \u05d1\u05ea\u05d9\u05dd \u05d1-{1} \u05e7\u05d1\u05e6\u05d9\u05dd): {2}
|
|
44
|
+
Logger.24=\u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2
|
|
45
|
+
Logger.26=\u05e7\u05d5\u05d1\u05e5 \u05d0\u05e8\u05db\u05d9\u05d5\u05df: {0} ({1} \u05d1\u05ea\u05d9\u05dd \u05d1-{2} \u05e7\u05d1\u05e6\u05d9\u05dd) {3}
|
|
46
|
+
Logger.4=\u05e8\u05d9\u05e9\u05d5\u05dd \u05e9\u05d2\u05d9\u05d0\u05d5\u05ea \u05d9\u05d1\u05d5\u05e6\u05e2 \u05d0\u05dc sterror \u05db\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc.
|
|
47
|
+
PushCommand.10=\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d5\u05db\u05df WCM:\u200f {0}
|
|
48
|
+
PushCommand.11=\u05e7\u05d5\u05d1\u05e5 HTML \u05e8\u05d0\u05e9\u05d9: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=\u05e4\u05e8\u05de\u05d8\u05e8 POST \u05de\u05d5\u05ea\u05d0\u05dd: {0} = {1}
|
|
51
|
+
PushCommand.18=\u05de\u05e6\u05d1 \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
52
|
+
PushCommand.19=\u05e1\u05db\u05d9\u05de\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
53
|
+
PushCommand.20=\u05d4\u05e1\u05de\u05db\u05d5\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05d9\u05e2\u05d3: {0}
|
|
54
|
+
PushCommand.3=\u05e7\u05d5\u05d1\u05e5 HTML \u05e8\u05d0\u05e9\u05d9:
|
|
55
|
+
PushCommand.31=\u05d3\u05d7\u05d9\u05e4\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05d1\u05d5\u05e6\u05e2\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.
|
|
56
|
+
PushCommand.32=\u05e1\u05d9\u05d5\u05dd \u05d3\u05d7\u05d9\u05e4\u05ea \u05ea\u05d5\u05db\u05df \u05d1\u05e4\u05d5\u05e8\u05d8\u05dc.
|
|
57
|
+
PushCommand.4=\u05d4\u05ea\u05d7\u05dc\u05ea \u05d3\u05d7\u05d9\u05e4\u05ea \u05ea\u05d5\u05db\u05df \u05d1\u05e4\u05d5\u05e8\u05d8\u05dc.
|
|
58
|
+
PushCommand.5=URL \u05d3\u05d7\u05d9\u05e4\u05d4: {0}
|
|
59
|
+
PushCommand.6=\u05d4\u05e7\u05e9\u05e8 \u05e4\u05d5\u05e8\u05d8\u05dc \u05d5\u05d9\u05e8\u05d8\u05d5\u05d0\u05dc\u05d9: {0}
|
|
60
|
+
PushCommand.7=\u05d4\u05e7\u05e9\u05e8 \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8: {0}
|
|
61
|
+
PushCommand.8=\u05d6\u05d9\u05d4\u05d5\u05d9 \u05ea\u05d5\u05db\u05df WCM: {0}
|
|
62
|
+
PushCommand.9=\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d5\u05db\u05df WCM:\u200f {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=\u30e6\u30fc\u30b6\u30fc:
|
|
7
|
+
AutoAuthHandler.5=\u30d1\u30b9\u30ef\u30fc\u30c9:
|
|
8
|
+
AutoAuthHandler.6=\u8a8d\u8a3c URL: {0}
|
|
9
|
+
AutoAuthHandler.8=\u8a8d\u8a3c\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u3002
|
|
10
|
+
BasicAuthHandler.0=\u30e6\u30fc\u30b6\u30fc:
|
|
11
|
+
BasicAuthHandler.1=\u30d1\u30b9\u30ef\u30fc\u30c9:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=\u30d6\u30e9\u30a6\u30b6\u30fc\u3067\u4ee5\u4e0b\u306e URL \u3092\u958b\u3044\u3066\u3001Script Application \u30b3\u30de\u30f3\u30c9\u30fb\u30e9\u30a4\u30f3\u30fb\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u306e\u8cc7\u6599\u3092\u8868\u793a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
|
|
14
|
+
CommandLine.20=\u30b3\u30de\u30f3\u30c9\u304c\u6210\u529f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u306f\u30ed\u30b0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044: ({0})\u3002
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Script Application \u30b3\u30de\u30f3\u30c9\u30fb\u30e9\u30a4\u30f3\u30fb\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u30fb\u30d0\u30fc\u30b8\u30e7\u30f3: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Script Application \u30b3\u30de\u30f3\u30c9\u30fb\u30e9\u30a4\u30f3\u30fb\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u30fb\u30d3\u30eb\u30c9\u756a\u53f7: {0}
|
|
19
|
+
CommandLine.8=\u30db\u30fc\u30e0\u30fb\u30d5\u30a9\u30eb\u30c0\u30fc: {0}
|
|
20
|
+
CommandLine.9=\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application \u30b5\u30fc\u30d0\u30fc:
|
|
23
|
+
GenericResponseHandler.11=\u8fd4\u7b54\u72b6\u6cc1: {0}
|
|
24
|
+
GenericResponseHandler.12=\u672c\u6587\u306e\u6709\u52b9\u306a\u6587\u5b57\u30bb\u30c3\u30c8: {0}
|
|
25
|
+
GenericResponseHandler.13=\u672c\u6587\u30b3\u30f3\u30c6\u30f3\u30c4: {0}
|
|
26
|
+
GenericResponseHandler.14=\u8fd4\u7b54\u672c\u6587\u306e\u69cb\u6587\u89e3\u6790\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002
|
|
27
|
+
ListCommand.10=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u8cc7\u683c\u60c5\u5831: {0}
|
|
28
|
+
ListCommand.23=\u4eee\u60f3\u30dd\u30fc\u30bf\u30eb\u540d
|
|
29
|
+
ListCommand.24=WCM \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d
|
|
30
|
+
ListCommand.25=\u4eee\u60f3\u30dd\u30fc\u30bf\u30eb ID
|
|
31
|
+
ListCommand.26=WCM \u30b3\u30f3\u30c6\u30f3\u30c4 ID
|
|
32
|
+
ListCommand.27=\u30b5\u30a4\u30c8\u30fb\u30a8\u30ea\u30a2\u30fb\u30d1\u30b9
|
|
33
|
+
ListCommand.28=\u30b5\u30a4\u30c8\u30fb\u30a8\u30ea\u30a2 ID
|
|
34
|
+
ListCommand.37=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30fb\u30ea\u30b9\u30c8\u304c\u6210\u529f\u3057\u307e\u3057\u305f\u3002
|
|
35
|
+
ListCommand.38=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30fb\u30ea\u30b9\u30c8\u3092\u30dd\u30fc\u30bf\u30eb\u3067\u7d42\u4e86\u3057\u307e\u3059\u3002
|
|
36
|
+
ListCommand.6=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30fb\u30ea\u30b9\u30c8\u3092\u30dd\u30fc\u30bf\u30eb\u3067\u958b\u59cb\u3057\u307e\u3059\u3002
|
|
37
|
+
ListCommand.7=\u30ea\u30b9\u30c8 URL: {0}
|
|
38
|
+
ListCommand.8=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u72b6\u614b: {0}
|
|
39
|
+
ListCommand.9=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u30b9\u30ad\u30fc\u30e0: {0}
|
|
40
|
+
Logger.0={0} ({1} \u30d0\u30a4\u30c8)
|
|
41
|
+
Logger.10=\u6709\u52b9\u306a\u69cb\u6210\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc: {0}
|
|
42
|
+
Logger.16=Java \u74b0\u5883: {0}
|
|
43
|
+
Logger.22=\u30a2\u30fc\u30ab\u30a4\u30d6\u30fb\u30b9\u30c8\u30ea\u30fc\u30e0 ({1} \u30d5\u30a1\u30a4\u30eb\u5185\u306b {0} \u30d0\u30a4\u30c8): {2}
|
|
44
|
+
Logger.24=\u4e0d\u660e
|
|
45
|
+
Logger.26=\u30a2\u30fc\u30ab\u30a4\u30d6\u30fb\u30d5\u30a1\u30a4\u30eb: {0}({2} \u30d5\u30a1\u30a4\u30eb\u5185\u306b {1} \u30d0\u30a4\u30c8) {3}
|
|
46
|
+
Logger.4=\u30ed\u30b0\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u6a19\u6e96\u30a8\u30e9\u30fc\u306b\u66f8\u304d\u8fbc\u307e\u308c\u307e\u3059\u3002
|
|
47
|
+
PushCommand.10=WCM \u30b3\u30f3\u30c6\u30f3\u30c4\u30fb\u30bf\u30a4\u30c8\u30eb: {0}
|
|
48
|
+
PushCommand.11=\u30e1\u30a4\u30f3 HTML \u30d5\u30a1\u30a4\u30eb: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=\u30ab\u30b9\u30bf\u30e0 POST \u30d1\u30e9\u30e1\u30fc\u30bf\u30fc: {0} = {1}
|
|
51
|
+
PushCommand.18=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u72b6\u614b: {0}
|
|
52
|
+
PushCommand.19=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u30b9\u30ad\u30fc\u30e0: {0}
|
|
53
|
+
PushCommand.20=\u30bf\u30fc\u30b2\u30c3\u30c8\u8a8d\u8a3c\u8cc7\u683c\u60c5\u5831: {0}
|
|
54
|
+
PushCommand.3=\u30e1\u30a4\u30f3 HTML \u30d5\u30a1\u30a4\u30eb:
|
|
55
|
+
PushCommand.31=\u30b3\u30f3\u30c6\u30f3\u30c4\u30fb\u30d7\u30c3\u30b7\u30e5\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u3002
|
|
56
|
+
PushCommand.32=\u30dd\u30fc\u30bf\u30eb\u3078\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30fb\u30d7\u30c3\u30b7\u30e5\u3092\u7d42\u4e86\u3057\u307e\u3059\u3002
|
|
57
|
+
PushCommand.4=\u30dd\u30fc\u30bf\u30eb\u3078\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30fb\u30d7\u30c3\u30b7\u30e5\u3092\u958b\u59cb\u3057\u307e\u3059\u3002
|
|
58
|
+
PushCommand.5=\u30d7\u30c3\u30b7\u30e5 URL: {0}
|
|
59
|
+
PushCommand.6=\u4eee\u60f3\u30dd\u30fc\u30bf\u30eb\u30fb\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8: {0}
|
|
60
|
+
PushCommand.7=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30fb\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8: {0}
|
|
61
|
+
PushCommand.8=WCM \u30b3\u30f3\u30c6\u30f3\u30c4 ID: {0}
|
|
62
|
+
PushCommand.9=WCM \u30b3\u30f3\u30c6\u30f3\u30c4\u30fb\u30d1\u30b9: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b:
|
|
7
|
+
AutoAuthHandler.5=\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437:
|
|
8
|
+
AutoAuthHandler.6=\u0422\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0439\u0442\u044b\u043d URL \u043c\u0435\u043a\u0435\u043d-\u0436\u0430\u0439\u044b: {0}
|
|
9
|
+
AutoAuthHandler.8=\u0422\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043d\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u0441\u04d9\u0442\u0442\u0456 \u0431\u043e\u043b\u0434\u044b.
|
|
10
|
+
BasicAuthHandler.0=\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b:
|
|
11
|
+
BasicAuthHandler.1=\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Script Application \u043f\u04d9\u0440\u043c\u0435\u043d \u0436\u043e\u043b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u0441\u044b \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b\u043d \u043a\u04e9\u0440\u0443 \u04af\u0448\u0456\u043d \u0448\u043e\u043b\u0443\u0448\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u043a\u0435\u043b\u0435\u0441\u0456 URL-\u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0430\u0448\u044b\u04a3\u044b\u0437.
|
|
14
|
+
CommandLine.20=\u041f\u04d9\u0440\u043c\u0435\u043d \u0441\u04d9\u0442\u0442\u0456 \u0431\u043e\u043b\u0434\u044b. \u041c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0436\u0443\u0440\u043d\u0430\u043b\u0434\u044b \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Script Application \u043f\u04d9\u0440\u043c\u0435\u043d \u0436\u043e\u043b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Script Application \u043f\u04d9\u0440\u043c\u0435\u043d \u0436\u043e\u043b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430 \u0442\u04b1\u0440\u0493\u044b\u0437\u0443 \u043d\u04e9\u043c\u0456\u0440\u0456: {0}
|
|
19
|
+
CommandLine.8=\u0411\u0430\u0441\u0442\u044b \u049b\u0430\u043b\u0442\u0430: {0}
|
|
20
|
+
CommandLine.9=\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application \u0421\u0435\u0440\u0432\u0435\u0440\u0456:
|
|
23
|
+
GenericResponseHandler.11=\u0416\u0430\u0443\u0430\u043f \u043a\u04af\u0439\u0456: {0}
|
|
24
|
+
GenericResponseHandler.12=\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d\u043d\u0456\u04a3 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0431\u0430 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u044b\u043c\u044b: {0}
|
|
25
|
+
GenericResponseHandler.13=\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d\u043d\u0456\u04a3 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b: {0}
|
|
26
|
+
GenericResponseHandler.14=\u0416\u0430\u0443\u0430\u043f \u0431\u0435\u0440\u0443 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d\u0456\u043d\u0456\u04a3 \u0442\u0430\u043b\u0434\u0430\u043d\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437 \u0431\u043e\u043b\u0434\u044b.
|
|
27
|
+
ListCommand.10=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456: {0}
|
|
28
|
+
ListCommand.23=\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u0434\u044b \u043f\u043e\u0440\u0442\u0430\u043b \u0430\u0442\u044b
|
|
29
|
+
ListCommand.24=WCM \u0436\u043e\u0431\u0430\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b
|
|
30
|
+
ListCommand.25=\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u0434\u044b \u043f\u043e\u0440\u0442\u0430\u043b\u0434\u044b\u04a3 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b
|
|
31
|
+
ListCommand.26=WCM \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d\u044b\u04a3 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b
|
|
32
|
+
ListCommand.27=\u0422\u043e\u0440\u0430\u043f \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u044b\u04a3 \u0436\u043e\u043b\u044b
|
|
33
|
+
ListCommand.28=\u0422\u043e\u0440\u0430\u043f \u0430\u0443\u043c\u0430\u0493\u044b\u043d\u044b\u04a3 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b
|
|
34
|
+
ListCommand.37=\u041d\u044b\u0441\u0430\u043d \u0442\u0456\u0437\u0456\u043c\u0456 \u0441\u04d9\u0442\u0442\u0456 \u0431\u043e\u043b\u0434\u044b.
|
|
35
|
+
ListCommand.38=\u041f\u043e\u0440\u0442\u0430\u043b\u0434\u0430\u0493\u044b \u0441\u043e\u04a3\u0493\u044b \u043d\u044b\u0441\u0430\u043d \u0442\u0456\u0437\u0456\u043c\u0456
|
|
36
|
+
ListCommand.6=\u041f\u043e\u0440\u0442\u0430\u043b\u0434\u0430\u0493\u044b \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u043d\u044b\u0441\u0430\u043d \u0442\u0456\u0437\u0456\u043c\u0456.
|
|
37
|
+
ListCommand.7=\u0422\u0456\u0437\u0456\u043c\u043d\u0456\u04a3 URL \u043c\u0435\u043a\u0435\u043d-\u0436\u0430\u0439\u044b: {0}
|
|
38
|
+
ListCommand.8=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u043a\u04af\u0439\u0456: {0}
|
|
39
|
+
ListCommand.9=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u0441\u04b1\u043b\u0431\u0430\u0441\u044b: {0}
|
|
40
|
+
Logger.0={0} ({1} \u0431\u0430\u0439\u0442\u0442\u0430\u0440)
|
|
41
|
+
Logger.10=\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b: {0}
|
|
42
|
+
Logger.16=Java \u043e\u0440\u0442\u0430\u0441\u044b: {0}
|
|
43
|
+
Logger.22=\u041c\u04b1\u0440\u0430\u0493\u0430\u0442 \u0436\u043e\u043b\u044b ({0} \u0431\u0430\u0439\u0442\u0442\u0430\u0440 {1} \u0444\u0430\u0439\u043b\u044b\u043d\u0434\u0430): {2}
|
|
44
|
+
Logger.24=\u0411\u0435\u043b\u0433\u0456\u0441\u0456\u0437
|
|
45
|
+
Logger.26=\u041c\u04b1\u0440\u0430\u0493\u0430\u0442 \u0444\u0430\u0439\u043b\u044b: {0}({1} \u0431\u0430\u0439\u0442\u0442\u0430\u0440 {2} \u0444\u0430\u0439\u043b\u044b\u043d\u0434\u0430) {3}
|
|
46
|
+
Logger.4=\u041a\u0456\u0440\u0443 \u049b\u0430\u043b\u044b\u043f\u0442\u044b \u049b\u0430\u0442\u0435\u0433\u0435 \u04d9\u0434\u0435\u043f\u0442\u0456 \u0431\u043e\u043b\u0430\u0434\u044b.
|
|
47
|
+
PushCommand.10=WCM \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d\u044b\u04a3 \u0442\u0430\u049b\u044b\u0440\u044b\u0431\u044b: {0}
|
|
48
|
+
PushCommand.11=\u041d\u0435\u0433\u0456\u0437\u0433\u0456 HTML \u0444\u0430\u0439\u043b\u044b: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=\u04e8\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u043b\u0456 POST \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0456: {0} = {1}
|
|
51
|
+
PushCommand.18=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u043a\u04af\u0439\u0456: {0}
|
|
52
|
+
PushCommand.19=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u0441\u04b1\u043b\u0431\u0430\u0441\u044b: {0}
|
|
53
|
+
PushCommand.20=\u041c\u0430\u049b\u0441\u0430\u0442\u0442\u044b\u049b \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456: {0}
|
|
54
|
+
PushCommand.3=\u041d\u0435\u0433\u0456\u0437\u0433\u0456 HTML \u0444\u0430\u0439\u043b\u044b:
|
|
55
|
+
PushCommand.31=\u041c\u0430\u0437\u043c\u04b1\u043d\u043d\u044b\u04a3 \u0436\u044b\u043b\u0436\u0443\u044b \u0441\u04d9\u0442\u0442\u0456 \u0431\u043e\u043b\u0434\u044b.
|
|
56
|
+
PushCommand.32=\u041f\u043e\u0440\u0442\u0430\u043b\u0493\u0430 \u0441\u043e\u04a3\u0493\u044b \u043c\u0430\u0437\u043c\u04b1\u043d\u043d\u044b\u04a3 \u0436\u044b\u043b\u0436\u0443\u044b.
|
|
57
|
+
PushCommand.4=\u041f\u043e\u0440\u0442\u0430\u043b\u0493\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u044b\u043b\u0436\u044b\u0442\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u0443.
|
|
58
|
+
PushCommand.5=\u0416\u044b\u043b\u0436\u044b\u0442\u0443 URL \u043c\u0435\u043a\u0435\u043d-\u0436\u0430\u0439\u044b: {0}
|
|
59
|
+
PushCommand.6=\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u0434\u044b \u043f\u043e\u0440\u0442\u0430\u043b\u0434\u044b\u04a3 \u043c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d\u0456: {0}
|
|
60
|
+
PushCommand.7=\u0416\u043e\u0431\u0430\u043d\u044b\u04a3 \u043c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d\u0456: {0}
|
|
61
|
+
PushCommand.8=WCM \u043c\u0430\u0437\u043c\u04b1\u043d \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b: {0}
|
|
62
|
+
PushCommand.9=WCM \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d\u044b\u04a3 \u0436\u043e\u043b\u044b: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=\uc0ac\uc6a9\uc790:
|
|
7
|
+
AutoAuthHandler.5=\ube44\ubc00\ubc88\ud638:
|
|
8
|
+
AutoAuthHandler.6=\uc778\uc99d URL: {0}
|
|
9
|
+
AutoAuthHandler.8=\uc778\uc99d\uc5d0 \uc131\uacf5\ud588\uc2b5\ub2c8\ub2e4.
|
|
10
|
+
BasicAuthHandler.0=\uc0ac\uc6a9\uc790:
|
|
11
|
+
BasicAuthHandler.1=\ube44\ubc00\ubc88\ud638:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Script Application \uba85\ub839\ud589 \uc720\ud2f8\ub9ac\ud2f0 \ubb38\uc11c\ub97c \ubcf4\ub824\uba74 \ube0c\ub77c\uc6b0\uc800\uc5d0\uc11c \ub2e4\uc74c URL\uc744 \uc5ec\uc2ed\uc2dc\uc624.
|
|
14
|
+
CommandLine.20=\uba85\ub839\uc774 \uc131\uacf5\ud588\uc2b5\ub2c8\ub2e4. \uc138\ubd80\uc0ac\ud56d\uc740 \ub85c\uadf8\ub97c \ucc38\uc870\ud558\uc2ed\uc2dc\uc624({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Script Application \uba85\ub839\ud589 \uc720\ud2f8\ub9ac\ud2f0 \ubc84\uc804: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Script Application \uba85\ub839\ud589 \uc720\ud2f8\ub9ac\ud2f0 \ube4c\ub4dc \ubc88\ud638: {0}
|
|
19
|
+
CommandLine.8=\ud648 \ud3f4\ub354: {0}
|
|
20
|
+
CommandLine.9=\uc9c0\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application Server:
|
|
23
|
+
GenericResponseHandler.11=\uc751\ub2f5 \uc0c1\ud0dc: {0}
|
|
24
|
+
GenericResponseHandler.12=\ubcf8\ubb38\uc758 \uc720\ud6a8 \ubb38\uc790 \uc138\ud2b8: {0}
|
|
25
|
+
GenericResponseHandler.13=\ubcf8\ubb38 \ucee8\ud150\uce20: {0}
|
|
26
|
+
GenericResponseHandler.14=\uc751\ub2f5 \ubcf8\ubb38 \uad6c\ubb38 \ubd84\uc11d\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4.
|
|
27
|
+
ListCommand.10=\ub300\uc0c1 \uc778\uc99d \uc2e0\uc784 \uc815\ubcf4: {0}
|
|
28
|
+
ListCommand.23=\uac00\uc0c1 \ud3ec\ud138 \uc774\ub984
|
|
29
|
+
ListCommand.24=WCM \ud504\ub85c\uc81d\ud2b8 \uc774\ub984
|
|
30
|
+
ListCommand.25=\uac00\uc0c1 \ud3ec\ud138 ID
|
|
31
|
+
ListCommand.26=WCM \ucee8\ud150\uce20 ID
|
|
32
|
+
ListCommand.27=\uc0ac\uc774\ud2b8 \uc601\uc5ed \uacbd\ub85c
|
|
33
|
+
ListCommand.28=\uc0ac\uc774\ud2b8 \uc601\uc5ed ID
|
|
34
|
+
ListCommand.37=\uc624\ube0c\uc81d\ud2b8 \ub098\uc5f4\uc5d0 \uc131\uacf5\ud588\uc2b5\ub2c8\ub2e4.
|
|
35
|
+
ListCommand.38=\ud3ec\ud138\uc5d0 \uc624\ube0c\uc81d\ud2b8 \ub098\uc5f4\uc744 \uc885\ub8cc\ud569\ub2c8\ub2e4.
|
|
36
|
+
ListCommand.6=\ud3ec\ud138\uc5d0 \uc624\ube0c\uc81d\ud2b8 \ub098\uc5f4\uc744 \uc2dc\uc791\ud569\ub2c8\ub2e4.
|
|
37
|
+
ListCommand.7=\ubaa9\ub85d URL: {0}
|
|
38
|
+
ListCommand.8=\ub300\uc0c1 \uc778\uc99d \uc0c1\ud0dc: {0}
|
|
39
|
+
ListCommand.9=\ub300\uc0c1 \uc778\uc99d \uc124\uacc4: {0}
|
|
40
|
+
Logger.0={0}({1}\ubc14\uc774\ud2b8)
|
|
41
|
+
Logger.10=\uc720\ud6a8 \uad6c\uc131 \ud2b9\uc131: {0}
|
|
42
|
+
Logger.16=Java \ud658\uacbd: {0}
|
|
43
|
+
Logger.22=\uc2a4\ud2b8\ub9bc \uc544\uce74\uc774\ube0c({1} \ud30c\uc77c\uc5d0\uc11c {0}\ubc14\uc774\ud2b8): {2}
|
|
44
|
+
Logger.24=\uc54c \uc218 \uc5c6\uc74c
|
|
45
|
+
Logger.26=\ud30c\uc77c \uc544\uce74\uc774\ube0c: {0}({2} \ud30c\uc77c\uc5d0\uc11c {1}\ubc14\uc774\ud2b8) {3}
|
|
46
|
+
Logger.4=\ub85c\uae45 \uae30\ubcf8\uac12\uc774 \ud45c\uc900 \uc624\ub958\ub85c \uc124\uc815\ub429\ub2c8\ub2e4.
|
|
47
|
+
PushCommand.10=WCM \ucee8\ud150\uce20 \uc81c\ubaa9: {0}
|
|
48
|
+
PushCommand.11=\uae30\ubcf8 HTML \ud30c\uc77c: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=\uc0ac\uc6a9\uc790 \uc815\uc758 POST \ub9e4\uac1c\ubcc0\uc218: {0} = {1}
|
|
51
|
+
PushCommand.18=\ub300\uc0c1 \uc778\uc99d \uc0c1\ud0dc: {0}
|
|
52
|
+
PushCommand.19=\ub300\uc0c1 \uc778\uc99d \uc124\uacc4: {0}
|
|
53
|
+
PushCommand.20=\ub300\uc0c1 \uc778\uc99d \uc2e0\uc784 \uc815\ubcf4: {0}
|
|
54
|
+
PushCommand.3=\uae30\ubcf8 HTML \ud30c\uc77c:
|
|
55
|
+
PushCommand.31=\ucee8\ud150\uce20 \ud478\uc2dc\uc5d0 \uc131\uacf5\ud588\uc2b5\ub2c8\ub2e4.
|
|
56
|
+
PushCommand.32=\ud3ec\ud138\uc5d0 \ucee8\ud150\uce20 \ud478\uc2dc\ub97c \uc885\ub8cc\ud569\ub2c8\ub2e4.
|
|
57
|
+
PushCommand.4=\ud3ec\ud138\uc5d0 \ucee8\ud150\uce20 \ud478\uc2dc\ub97c \uc2dc\uc791\ud569\ub2c8\ub2e4.
|
|
58
|
+
PushCommand.5=\ud478\uc2dc URL: {0}
|
|
59
|
+
PushCommand.6=\uac00\uc0c1 \ud3ec\ud138 \ucee8\ud14d\uc2a4\ud2b8: {0}
|
|
60
|
+
PushCommand.7=\ud504\ub85c\uc81d\ud2b8 \ucee8\ud14d\uc2a4\ud2b8: {0}
|
|
61
|
+
PushCommand.8=WCM \ucee8\ud150\uce20 ID: {0}
|
|
62
|
+
PushCommand.9=WCM \ucee8\ud150\uce20 \uacbd\ub85c: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=Gebruiker:
|
|
7
|
+
AutoAuthHandler.5=Wachtwoord:
|
|
8
|
+
AutoAuthHandler.6=Verificatie-URL: {0}
|
|
9
|
+
AutoAuthHandler.8=Verificatie is gelukt.
|
|
10
|
+
BasicAuthHandler.0=Gebruiker:
|
|
11
|
+
BasicAuthHandler.1=Wachtwoord:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Open de volgende URL in een browser om documentatie van het opdrachtregelprogramma van Script Application te bekijken.
|
|
14
|
+
CommandLine.20=Opdracht is gelukt. Zie het logboek voor meer informatie: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Versie opdrachtregelprogramma Script Application: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Buildnummer opdrachtregelprogramma Script Application: {0}
|
|
19
|
+
CommandLine.8=Home-map: {0}
|
|
20
|
+
CommandLine.9=Niet opgegeven.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application-server:
|
|
23
|
+
GenericResponseHandler.11=Responsstatus: {0}
|
|
24
|
+
GenericResponseHandler.12=Feitelijke tekenset van corpus: {0}
|
|
25
|
+
GenericResponseHandler.13=Corpuscontent: {0}
|
|
26
|
+
GenericResponseHandler.14=Ontleden van responscorpus is mislukt.
|
|
27
|
+
ListCommand.10=Legitimatiegegevens voor doelverificatie: {0}
|
|
28
|
+
ListCommand.23=Naam virtuele portal
|
|
29
|
+
ListCommand.24=Naam WCM-project
|
|
30
|
+
ListCommand.25=ID virtuele portal
|
|
31
|
+
ListCommand.26=ID WCM-content
|
|
32
|
+
ListCommand.27=Pad sitegebied
|
|
33
|
+
ListCommand.28=ID sitegebied
|
|
34
|
+
ListCommand.37=Samenstellen van lijst van objecten is gelukt.
|
|
35
|
+
ListCommand.38=Einde lijst van objecten op Portal.
|
|
36
|
+
ListCommand.6=Begin lijst van objecten op Portal.
|
|
37
|
+
ListCommand.7=Lijst-URL: {0}
|
|
38
|
+
ListCommand.8=Status doelverificatie: {0}
|
|
39
|
+
ListCommand.9=Schema doelverificatie: {0}
|
|
40
|
+
Logger.0={0} ({1} bytes)
|
|
41
|
+
Logger.10=Feitelijke configuratie-eigenschappen: {0}
|
|
42
|
+
Logger.16=Java-omgeving: {0}
|
|
43
|
+
Logger.22=Archiefstroom ({0} bytes in {1} bestanden): {2}
|
|
44
|
+
Logger.24=Onbekend
|
|
45
|
+
Logger.26=Archiefbestand: {0}({1} bytes in {2} bestanden) {3}
|
|
46
|
+
Logger.4=Logboekregistratie wordt standaard ingesteld op standaardfouten.
|
|
47
|
+
PushCommand.10=Titel WCM-content: {0}
|
|
48
|
+
PushCommand.11=HTML-hoofdbestand: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=Aangepaste POST-parameter: {0} = {1}
|
|
51
|
+
PushCommand.18=Status doelverificatie: {0}
|
|
52
|
+
PushCommand.19=Schema doelverificatie: {0}
|
|
53
|
+
PushCommand.20=Legitimatiegegevens voor doelverificatie: {0}
|
|
54
|
+
PushCommand.3=HTML-hoofdbestand:
|
|
55
|
+
PushCommand.31=Pushen van content is gelukt.
|
|
56
|
+
PushCommand.32=Einde van pushen van content naar Portal.
|
|
57
|
+
PushCommand.4=Begin van pushen van content naar Portal.
|
|
58
|
+
PushCommand.5=Push-URL: {0}
|
|
59
|
+
PushCommand.6=Virtuele-portalcontext: {0}
|
|
60
|
+
PushCommand.7=Projectcontext: {0}
|
|
61
|
+
PushCommand.8=ID WCM-content: {0}
|
|
62
|
+
PushCommand.9=Pad WCM-content: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=Bruker:
|
|
7
|
+
AutoAuthHandler.5=Passord:
|
|
8
|
+
AutoAuthHandler.6=Autentiserings-URL: {0}
|
|
9
|
+
AutoAuthHandler.8=Autentiseringen var vellykket.
|
|
10
|
+
BasicAuthHandler.0=Bruker:
|
|
11
|
+
BasicAuthHandler.1=Passord:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=\u00c5pne f\u00f8lgende URL i en nettleser for \u00e5 vise Script Application-kommandolinjedokumentasjonen.
|
|
14
|
+
CommandLine.20=Kommandoen var vellykket. Du finner mer informasjon i loggen: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Versjon av Script Application-kommandolinjefunksjonen: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Byggnummer for Script Application-kommandolinjefunksjonen: {0}
|
|
19
|
+
CommandLine.8=Hjemmemappe: {0}
|
|
20
|
+
CommandLine.9=Ikke oppgitt.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Script Application-server:
|
|
23
|
+
GenericResponseHandler.11=Svarstatus: {0}
|
|
24
|
+
GenericResponseHandler.12=Faktisk tegnsett i meldingstekst: {0}
|
|
25
|
+
GenericResponseHandler.13=Innhold i meldingstekst: {0}
|
|
26
|
+
GenericResponseHandler.14=Analyse av svartekst mislyktes.
|
|
27
|
+
ListCommand.10=M\u00e5lautentiseringslegitimasjon: {0}
|
|
28
|
+
ListCommand.23=Navn p\u00e5 virtuell portal
|
|
29
|
+
ListCommand.24=WCM-prosjektnavn
|
|
30
|
+
ListCommand.25=ID for virtuell portal
|
|
31
|
+
ListCommand.26=WCM-innholds-ID
|
|
32
|
+
ListCommand.27=Stedsomr\u00e5debane
|
|
33
|
+
ListCommand.28=Stedsomr\u00e5de-ID
|
|
34
|
+
ListCommand.37=Objektliste var vellykket.
|
|
35
|
+
ListCommand.38=Slutt p\u00e5 objektliste i Portal.
|
|
36
|
+
ListCommand.6=Start p\u00e5 objektliste i Portal.
|
|
37
|
+
ListCommand.7=Liste-URL: {0}
|
|
38
|
+
ListCommand.8=M\u00e5lautentiseringsstatus: {0}
|
|
39
|
+
ListCommand.9=M\u00e5lautentiseringsskjema: {0}
|
|
40
|
+
Logger.0={0} ({1} byte)
|
|
41
|
+
Logger.10=Virksomme konfigurasjonsegenskaper: {0}
|
|
42
|
+
Logger.16=Java-milj\u00f8: {0}
|
|
43
|
+
Logger.22=Arkivstr\u00f8m ({0} byte i {1} filer): {2}
|
|
44
|
+
Logger.24=Ukjent
|
|
45
|
+
Logger.26=Arkivfil: {0}({1} byte i {2} filer) {3}
|
|
46
|
+
Logger.4=Logging bruker standardfeil.
|
|
47
|
+
PushCommand.10=WCM-innholdstittel: {0}
|
|
48
|
+
PushCommand.11=HTML-hovedfil: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=Tilpasset POST-parameter: {0} = {1}
|
|
51
|
+
PushCommand.18=M\u00e5lautentiseringsstatus: {0}
|
|
52
|
+
PushCommand.19=M\u00e5lautentiseringsskjema: {0}
|
|
53
|
+
PushCommand.20=M\u00e5lautentiseringslegitimasjon: {0}
|
|
54
|
+
PushCommand.3=HTML-hovedfil:
|
|
55
|
+
PushCommand.31=Innholdsoverf\u00f8ring (push) var vellykket.
|
|
56
|
+
PushCommand.32=Slutt p\u00e5 innholdsoverf\u00f8ring (push) til Portal.
|
|
57
|
+
PushCommand.4=Start p\u00e5 innholdsoverf\u00f8ring (push) til Portal.
|
|
58
|
+
PushCommand.5=Push-URL: {0}
|
|
59
|
+
PushCommand.6=Kontekst for virtuell portal: {0}
|
|
60
|
+
PushCommand.7=Prosjektkontekst: {0}
|
|
61
|
+
PushCommand.8=WCM-innholds-ID: {0}
|
|
62
|
+
PushCommand.9=WCM-innholdsbane: {0}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# NLS_ENCODING=UNICODE
|
|
2
|
+
# NLS_MARKUP=IBMJDK12
|
|
3
|
+
# G11N SA UI - Special IT Audience resources follow
|
|
4
|
+
# NLS_MESSAGEFORMAT_VAR
|
|
5
|
+
|
|
6
|
+
AutoAuthHandler.4=U\u017cytkownik:
|
|
7
|
+
AutoAuthHandler.5=Has\u0142o:
|
|
8
|
+
AutoAuthHandler.6=Adres URL uwierzytelniania: {0}
|
|
9
|
+
AutoAuthHandler.8=Uwierzytelnianie zako\u0144czy\u0142o si\u0119 powodzeniem.
|
|
10
|
+
BasicAuthHandler.0=U\u017cytkownik:
|
|
11
|
+
BasicAuthHandler.1=Has\u0142o:
|
|
12
|
+
# Do not translate the product name "Script Application" in the following string
|
|
13
|
+
CommandLine.1=Otw\u00f3rz nast\u0119puj\u0105cy adres URL w przegl\u0105darce, aby wy\u015bwietli\u0107 dokumentacj\u0119 programu narz\u0119dziowego wiersza komend produktu Script Application.
|
|
14
|
+
CommandLine.20=Wykonanie komendy zako\u0144czy\u0142o si\u0119 pomy\u015blnie. Szczeg\u00f3\u0142owe informacje znajduj\u0105 si\u0119 w dzienniku: ({0}).
|
|
15
|
+
# Do not translate the product name "Script Application" in the following string
|
|
16
|
+
CommandLine.7=Wersja programu narz\u0119dziowego wiersza komend produktu Script Application: {0}
|
|
17
|
+
# Do not translate the product name "Script Application" in the following string
|
|
18
|
+
CommandLine.BuildNumber=Numer kompilacji programu narz\u0119dziowego wiersza komend produktu Script Application: {0}
|
|
19
|
+
CommandLine.8=Folder g\u0142\u00f3wny: {0}
|
|
20
|
+
CommandLine.9=Nie podano.
|
|
21
|
+
# Do not translate the product name "Script Application" in the following string
|
|
22
|
+
GenericCommand.2=Serwer produktu Script Application:
|
|
23
|
+
GenericResponseHandler.11=Status odpowiedzi: {0}
|
|
24
|
+
GenericResponseHandler.12=Efektywny zestaw znak\u00f3w tre\u015bci: {0}
|
|
25
|
+
GenericResponseHandler.13=Tre\u015b\u0107: {0}
|
|
26
|
+
GenericResponseHandler.14=Niepowodzenie analizy tre\u015bci odpowiedzi.
|
|
27
|
+
ListCommand.10=Referencje uwierzytelniaj\u0105ce miejsca docelowego: {0}
|
|
28
|
+
ListCommand.23=Nazwa portalu wirtualnego
|
|
29
|
+
ListCommand.24=Nazwa projektu produktu WCM
|
|
30
|
+
ListCommand.25=Identyfikator portalu wirtualnego
|
|
31
|
+
ListCommand.26=Identyfikator tre\u015bci produktu WCM
|
|
32
|
+
ListCommand.27=\u015acie\u017cka obszaru serwisu
|
|
33
|
+
ListCommand.28=Identyfikator obszaru serwisu
|
|
34
|
+
ListCommand.37=Powodzenie listy obiekt\u00f3w.
|
|
35
|
+
ListCommand.38=Zako\u0144czenie listy obiekt\u00f3w w portalu.
|
|
36
|
+
ListCommand.6=Rozpocz\u0119cie listy obiekt\u00f3w w portalu.
|
|
37
|
+
ListCommand.7=Adres URL listy: {0}
|
|
38
|
+
ListCommand.8=Stan uwierzytelniania miejsca docelowego: {0}
|
|
39
|
+
ListCommand.9=Schemat uwierzytelniania miejsca docelowego: {0}
|
|
40
|
+
Logger.0={0} (liczba bajt\u00f3w: {1})
|
|
41
|
+
Logger.10=Efektywne w\u0142a\u015bciwo\u015bci konfiguracyjne: {0}
|
|
42
|
+
Logger.16=\u015arodowisko Java: {0}
|
|
43
|
+
Logger.22=Strumie\u0144 archiwum (liczba bajt\u00f3w: {0} w nast\u0119puj\u0105cej liczbie plik\u00f3w: {1}): {2}
|
|
44
|
+
Logger.24=Nieznane
|
|
45
|
+
Logger.26=Plik archiwum: {0} (liczba bajt\u00f3w: {1} w nast\u0119puj\u0105cej liczbie plik\u00f3w: {2}) {3}
|
|
46
|
+
Logger.4=Rejestrowanie b\u0119dzie domy\u015blnie kierowane do standardowego wyj\u015bcia b\u0142\u0119d\u00f3w.
|
|
47
|
+
PushCommand.10=Tytu\u0142 tre\u015bci produktu WCM: {0}
|
|
48
|
+
PushCommand.11=G\u0142\u00f3wny plik HTML: {0}
|
|
49
|
+
# The word POST in the following resource string should not be translated.
|
|
50
|
+
PushCommand.17=Niestandardowy parametr POST: {0} = {1}
|
|
51
|
+
PushCommand.18=Stan uwierzytelniania miejsca docelowego: {0}
|
|
52
|
+
PushCommand.19=Schemat uwierzytelniania miejsca docelowego: {0}
|
|
53
|
+
PushCommand.20=Referencje uwierzytelniaj\u0105ce miejsca docelowego: {0}
|
|
54
|
+
PushCommand.3=G\u0142\u00f3wny plik HTML:
|
|
55
|
+
PushCommand.31=Przesy\u0142anie tre\u015bci zako\u0144czy\u0142o si\u0119 pomy\u015blnie.
|
|
56
|
+
PushCommand.32=Zako\u0144czenie przesy\u0142ania tre\u015bci do portalu.
|
|
57
|
+
PushCommand.4=Rozpocz\u0119cie przesy\u0142ania tre\u015bci do portalu.
|
|
58
|
+
PushCommand.5=Adres URL na potrzeby przesy\u0142ania: {0}
|
|
59
|
+
PushCommand.6=Kontekst portalu wirtualnego: {0}
|
|
60
|
+
PushCommand.7=Kontekst projektu: {0}
|
|
61
|
+
PushCommand.8=Identyfikator tre\u015bci produktu WCM: {0}
|
|
62
|
+
PushCommand.9=\u015acie\u017cka tre\u015bci produktu WCM: {0}
|
|
63
|
+
|