@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.
Files changed (486) hide show
  1. package/LICENSE +62 -0
  2. package/README.txt +3143 -0
  3. package/bin/dxclient +3 -0
  4. package/dist/LICENSE +62 -0
  5. package/dist/configuration/config.json +52 -0
  6. package/dist/configuration/versionConfigMap.json +34 -0
  7. package/dist/package.json +149 -0
  8. package/dist/packages/admintasks/package-lock.json +21843 -0
  9. package/dist/packages/admintasks/package.json +56 -0
  10. package/dist/packages/admintasks/src/commands/createCredentialVault.d.ts +5 -0
  11. package/dist/packages/admintasks/src/commands/createCredentialVault.js +100 -0
  12. package/dist/packages/admintasks/src/commands/createCredentialVault.js.map +1 -0
  13. package/dist/packages/admintasks/src/commands/createSyndicationRelation.d.ts +4 -0
  14. package/dist/packages/admintasks/src/commands/createSyndicationRelation.js +70 -0
  15. package/dist/packages/admintasks/src/commands/createSyndicationRelation.js.map +1 -0
  16. package/dist/packages/admintasks/src/commands/createVirtualPortal.d.ts +4 -0
  17. package/dist/packages/admintasks/src/commands/createVirtualPortal.js +63 -0
  18. package/dist/packages/admintasks/src/commands/createVirtualPortal.js.map +1 -0
  19. package/dist/packages/admintasks/src/commands/differentialReport.d.ts +6 -0
  20. package/dist/packages/admintasks/src/commands/differentialReport.js +149 -0
  21. package/dist/packages/admintasks/src/commands/differentialReport.js.map +1 -0
  22. package/dist/packages/admintasks/src/commands/exportVirtualPortal.d.ts +4 -0
  23. package/dist/packages/admintasks/src/commands/exportVirtualPortal.js +66 -0
  24. package/dist/packages/admintasks/src/commands/exportVirtualPortal.js.map +1 -0
  25. package/dist/packages/admintasks/src/commands/exportWCMLibrary.d.ts +4 -0
  26. package/dist/packages/admintasks/src/commands/exportWCMLibrary.js +141 -0
  27. package/dist/packages/admintasks/src/commands/exportWCMLibrary.js.map +1 -0
  28. package/dist/packages/admintasks/src/commands/importVirtualPortal.d.ts +4 -0
  29. package/dist/packages/admintasks/src/commands/importVirtualPortal.js +67 -0
  30. package/dist/packages/admintasks/src/commands/importVirtualPortal.js.map +1 -0
  31. package/dist/packages/admintasks/src/commands/importWCMLibrary.d.ts +4 -0
  32. package/dist/packages/admintasks/src/commands/importWCMLibrary.js +112 -0
  33. package/dist/packages/admintasks/src/commands/importWCMLibrary.js.map +1 -0
  34. package/dist/packages/admintasks/src/commands/listVirtualPortals.d.ts +4 -0
  35. package/dist/packages/admintasks/src/commands/listVirtualPortals.js +57 -0
  36. package/dist/packages/admintasks/src/commands/listVirtualPortals.js.map +1 -0
  37. package/dist/packages/admintasks/src/commands/pznRulesExport.d.ts +4 -0
  38. package/dist/packages/admintasks/src/commands/pznRulesExport.js +85 -0
  39. package/dist/packages/admintasks/src/commands/pznRulesExport.js.map +1 -0
  40. package/dist/packages/admintasks/src/commands/pznRulesImport.d.ts +4 -0
  41. package/dist/packages/admintasks/src/commands/pznRulesImport.js +130 -0
  42. package/dist/packages/admintasks/src/commands/pznRulesImport.js.map +1 -0
  43. package/dist/packages/admintasks/src/commands/resEnvProviderActions.d.ts +4 -0
  44. package/dist/packages/admintasks/src/commands/resEnvProviderActions.js +179 -0
  45. package/dist/packages/admintasks/src/commands/resEnvProviderActions.js.map +1 -0
  46. package/dist/packages/admintasks/src/commands/restartCorePods.d.ts +4 -0
  47. package/dist/packages/admintasks/src/commands/restartCorePods.js +45 -0
  48. package/dist/packages/admintasks/src/commands/restartCorePods.js.map +1 -0
  49. package/dist/packages/admintasks/src/commands/restartDXCore.d.ts +4 -0
  50. package/dist/packages/admintasks/src/commands/restartDXCore.js +68 -0
  51. package/dist/packages/admintasks/src/commands/restartDXCore.js.map +1 -0
  52. package/dist/packages/admintasks/src/errors/CommandLineMessages_en.json +62 -0
  53. package/dist/packages/admintasks/src/messages/messages_en.json +34 -0
  54. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.d.ts +4 -0
  55. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js +53 -0
  56. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js.map +1 -0
  57. package/dist/packages/admintasks/src/services/differentialReportService.d.ts +5 -0
  58. package/dist/packages/admintasks/src/services/differentialReportService.js +59 -0
  59. package/dist/packages/admintasks/src/services/differentialReportService.js.map +1 -0
  60. package/dist/packages/admintasks/src/services/resEnvProviderService.d.ts +9 -0
  61. package/dist/packages/admintasks/src/services/resEnvProviderService.js +238 -0
  62. package/dist/packages/admintasks/src/services/resEnvProviderService.js.map +1 -0
  63. package/dist/packages/admintasks/src/services/restartCorePodsService.d.ts +4 -0
  64. package/dist/packages/admintasks/src/services/restartCorePodsService.js +45 -0
  65. package/dist/packages/admintasks/src/services/restartCorePodsService.js.map +1 -0
  66. package/dist/packages/admintasks/src/services/restartDXCoreService.d.ts +4 -0
  67. package/dist/packages/admintasks/src/services/restartDXCoreService.js +82 -0
  68. package/dist/packages/admintasks/src/services/restartDXCoreService.js.map +1 -0
  69. package/dist/packages/admintasks/src/services/virtualPortalServices.d.ts +33 -0
  70. package/dist/packages/admintasks/src/services/virtualPortalServices.js +169 -0
  71. package/dist/packages/admintasks/src/services/virtualPortalServices.js.map +1 -0
  72. package/dist/packages/admintasks/src/utils/createCredentialVault.xml +14 -0
  73. package/dist/packages/admintasks/src/utils/differential-report-utils.d.ts +11 -0
  74. package/dist/packages/admintasks/src/utils/differential-report-utils.js +1564 -0
  75. package/dist/packages/admintasks/src/utils/differential-report-utils.js.map +1 -0
  76. package/dist/packages/admintasks/src/utils/differential-report-utils.ts +1651 -0
  77. package/dist/packages/admintasks/src/utils/reportAttributes.properties +179 -0
  78. package/dist/packages/dam/package-lock.json +14605 -0
  79. package/dist/packages/dam/package.json +57 -0
  80. package/dist/packages/dam/src/commands/createSecrets.d.ts +4 -0
  81. package/dist/packages/dam/src/commands/createSecrets.js +61 -0
  82. package/dist/packages/dam/src/commands/createSecrets.js.map +1 -0
  83. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.d.ts +7 -0
  84. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js +50 -0
  85. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js.map +1 -0
  86. package/dist/packages/dam/src/commands/deleteSchema.d.ts +4 -0
  87. package/dist/packages/dam/src/commands/deleteSchema.js +80 -0
  88. package/dist/packages/dam/src/commands/deleteSchema.js.map +1 -0
  89. package/dist/packages/dam/src/commands/exportAssets.d.ts +5 -0
  90. package/dist/packages/dam/src/commands/exportAssets.js +106 -0
  91. package/dist/packages/dam/src/commands/exportAssets.js.map +1 -0
  92. package/dist/packages/dam/src/commands/findDAMStagingMismatch.d.ts +7 -0
  93. package/dist/packages/dam/src/commands/findDAMStagingMismatch.js +53 -0
  94. package/dist/packages/dam/src/commands/findDAMStagingMismatch.js.map +1 -0
  95. package/dist/packages/dam/src/commands/importAssets.d.ts +4 -0
  96. package/dist/packages/dam/src/commands/importAssets.js +78 -0
  97. package/dist/packages/dam/src/commands/importAssets.js.map +1 -0
  98. package/dist/packages/dam/src/commands/listSchema.d.ts +4 -0
  99. package/dist/packages/dam/src/commands/listSchema.js +44 -0
  100. package/dist/packages/dam/src/commands/listSchema.js.map +1 -0
  101. package/dist/packages/dam/src/commands/stagingMismatchReport.d.ts +15 -0
  102. package/dist/packages/dam/src/commands/stagingMismatchReport.js +168 -0
  103. package/dist/packages/dam/src/commands/stagingMismatchReport.js.map +1 -0
  104. package/dist/packages/dam/src/commands/stagingResync.d.ts +7 -0
  105. package/dist/packages/dam/src/commands/stagingResync.js +53 -0
  106. package/dist/packages/dam/src/commands/stagingResync.js.map +1 -0
  107. package/dist/packages/dam/src/commands/subscriberDeRegistration.d.ts +4 -0
  108. package/dist/packages/dam/src/commands/subscriberDeRegistration.js +45 -0
  109. package/dist/packages/dam/src/commands/subscriberDeRegistration.js.map +1 -0
  110. package/dist/packages/dam/src/commands/subscriberDetails.d.ts +9 -0
  111. package/dist/packages/dam/src/commands/subscriberDetails.js +50 -0
  112. package/dist/packages/dam/src/commands/subscriberDetails.js.map +1 -0
  113. package/dist/packages/dam/src/commands/subscriberRegistration.d.ts +9 -0
  114. package/dist/packages/dam/src/commands/subscriberRegistration.js +62 -0
  115. package/dist/packages/dam/src/commands/subscriberRegistration.js.map +1 -0
  116. package/dist/packages/dam/src/commands/triggerDAMStaging.d.ts +4 -0
  117. package/dist/packages/dam/src/commands/triggerDAMStaging.js +45 -0
  118. package/dist/packages/dam/src/commands/triggerDAMStaging.js.map +1 -0
  119. package/dist/packages/dam/src/commands/triggerDamReindexing.d.ts +4 -0
  120. package/dist/packages/dam/src/commands/triggerDamReindexing.js +54 -0
  121. package/dist/packages/dam/src/commands/triggerDamReindexing.js.map +1 -0
  122. package/dist/packages/dam/src/commands/updateSecrets.d.ts +4 -0
  123. package/dist/packages/dam/src/commands/updateSecrets.js +61 -0
  124. package/dist/packages/dam/src/commands/updateSecrets.js.map +1 -0
  125. package/dist/packages/dam/src/commands/validateAssets.d.ts +4 -0
  126. package/dist/packages/dam/src/commands/validateAssets.js +64 -0
  127. package/dist/packages/dam/src/commands/validateAssets.js.map +1 -0
  128. package/dist/packages/dam/src/errors/CommandLineMessages_en.json +80 -0
  129. package/dist/packages/dam/src/export/collection.d.ts +10 -0
  130. package/dist/packages/dam/src/export/collection.js +291 -0
  131. package/dist/packages/dam/src/export/collection.js.map +1 -0
  132. package/dist/packages/dam/src/export/favorite.d.ts +2 -0
  133. package/dist/packages/dam/src/export/favorite.js +61 -0
  134. package/dist/packages/dam/src/export/favorite.js.map +1 -0
  135. package/dist/packages/dam/src/export/media-item.d.ts +6 -0
  136. package/dist/packages/dam/src/export/media-item.js +193 -0
  137. package/dist/packages/dam/src/export/media-item.js.map +1 -0
  138. package/dist/packages/dam/src/export/media-type-group.d.ts +2 -0
  139. package/dist/packages/dam/src/export/media-type-group.js +43 -0
  140. package/dist/packages/dam/src/export/media-type-group.js.map +1 -0
  141. package/dist/packages/dam/src/export/media-type.d.ts +2 -0
  142. package/dist/packages/dam/src/export/media-type.js +43 -0
  143. package/dist/packages/dam/src/export/media-type.js.map +1 -0
  144. package/dist/packages/dam/src/export/renditions.d.ts +8 -0
  145. package/dist/packages/dam/src/export/renditions.js +255 -0
  146. package/dist/packages/dam/src/export/renditions.js.map +1 -0
  147. package/dist/packages/dam/src/import/collection.d.ts +5 -0
  148. package/dist/packages/dam/src/import/collection.js +148 -0
  149. package/dist/packages/dam/src/import/collection.js.map +1 -0
  150. package/dist/packages/dam/src/import/favorite.d.ts +2 -0
  151. package/dist/packages/dam/src/import/favorite.js +65 -0
  152. package/dist/packages/dam/src/import/favorite.js.map +1 -0
  153. package/dist/packages/dam/src/import/media-items.d.ts +5 -0
  154. package/dist/packages/dam/src/import/media-items.js +182 -0
  155. package/dist/packages/dam/src/import/media-items.js.map +1 -0
  156. package/dist/packages/dam/src/import/media-type-group.d.ts +2 -0
  157. package/dist/packages/dam/src/import/media-type-group.js +68 -0
  158. package/dist/packages/dam/src/import/media-type-group.js.map +1 -0
  159. package/dist/packages/dam/src/import/media-type.d.ts +2 -0
  160. package/dist/packages/dam/src/import/media-type.js +71 -0
  161. package/dist/packages/dam/src/import/media-type.js.map +1 -0
  162. package/dist/packages/dam/src/import/permission.d.ts +5 -0
  163. package/dist/packages/dam/src/import/permission.js +96 -0
  164. package/dist/packages/dam/src/import/permission.js.map +1 -0
  165. package/dist/packages/dam/src/import/renditions.d.ts +9 -0
  166. package/dist/packages/dam/src/import/renditions.js +326 -0
  167. package/dist/packages/dam/src/import/renditions.js.map +1 -0
  168. package/dist/packages/dam/src/messages/messages_en.json +19 -0
  169. package/dist/packages/dam/src/services/authService.d.ts +5 -0
  170. package/dist/packages/dam/src/services/authService.js +55 -0
  171. package/dist/packages/dam/src/services/authService.js.map +1 -0
  172. package/dist/packages/dam/src/services/stagingService.d.ts +37 -0
  173. package/dist/packages/dam/src/services/stagingService.js +440 -0
  174. package/dist/packages/dam/src/services/stagingService.js.map +1 -0
  175. package/dist/packages/dam/src/services/tokenCache.d.ts +8 -0
  176. package/dist/packages/dam/src/services/tokenCache.js +68 -0
  177. package/dist/packages/dam/src/services/tokenCache.js.map +1 -0
  178. package/dist/packages/dam/src/utils/constants.d.ts +70 -0
  179. package/dist/packages/dam/src/utils/constants.js +76 -0
  180. package/dist/packages/dam/src/utils/constants.js.map +1 -0
  181. package/dist/packages/dam/src/utils/interfaces/collection.d.ts +46 -0
  182. package/dist/packages/dam/src/utils/interfaces/collection.js +3 -0
  183. package/dist/packages/dam/src/utils/interfaces/collection.js.map +1 -0
  184. package/dist/packages/dam/src/utils/interfaces/favorite-request.d.ts +6 -0
  185. package/dist/packages/dam/src/utils/interfaces/favorite-request.js +3 -0
  186. package/dist/packages/dam/src/utils/interfaces/favorite-request.js.map +1 -0
  187. package/dist/packages/dam/src/utils/interfaces/media-request.d.ts +54 -0
  188. package/dist/packages/dam/src/utils/interfaces/media-request.js +3 -0
  189. package/dist/packages/dam/src/utils/interfaces/media-request.js.map +1 -0
  190. package/dist/packages/dam/src/utils/interfaces/media-type-group.d.ts +8 -0
  191. package/dist/packages/dam/src/utils/interfaces/media-type-group.js +3 -0
  192. package/dist/packages/dam/src/utils/interfaces/media-type-group.js.map +1 -0
  193. package/dist/packages/dam/src/utils/interfaces/media-type.d.ts +11 -0
  194. package/dist/packages/dam/src/utils/interfaces/media-type.js +3 -0
  195. package/dist/packages/dam/src/utils/interfaces/media-type.js.map +1 -0
  196. package/dist/packages/dam/src/utils/interfaces/media.d.ts +118 -0
  197. package/dist/packages/dam/src/utils/interfaces/media.js +3 -0
  198. package/dist/packages/dam/src/utils/interfaces/media.js.map +1 -0
  199. package/dist/packages/dam/src/utils/service.d.ts +8 -0
  200. package/dist/packages/dam/src/utils/service.js +126 -0
  201. package/dist/packages/dam/src/utils/service.js.map +1 -0
  202. package/dist/packages/dam/src/validation/collection-list-validate.d.ts +2 -0
  203. package/dist/packages/dam/src/validation/collection-list-validate.js +81 -0
  204. package/dist/packages/dam/src/validation/collection-list-validate.js.map +1 -0
  205. package/dist/packages/dam/src/validation/media-list-validate.d.ts +2 -0
  206. package/dist/packages/dam/src/validation/media-list-validate.js +91 -0
  207. package/dist/packages/dam/src/validation/media-list-validate.js.map +1 -0
  208. package/dist/packages/dam/src/validation/media-type-group-validate.d.ts +1 -0
  209. package/dist/packages/dam/src/validation/media-type-group-validate.js +28 -0
  210. package/dist/packages/dam/src/validation/media-type-group-validate.js.map +1 -0
  211. package/dist/packages/dam/src/validation/media-type-validate.d.ts +1 -0
  212. package/dist/packages/dam/src/validation/media-type-validate.js +28 -0
  213. package/dist/packages/dam/src/validation/media-type-validate.js.map +1 -0
  214. package/dist/packages/dam/src/validation/root-validate.d.ts +1 -0
  215. package/dist/packages/dam/src/validation/root-validate.js +42 -0
  216. package/dist/packages/dam/src/validation/root-validate.js.map +1 -0
  217. package/dist/packages/dam/src/validation/validate.rendition.d.ts +1 -0
  218. package/dist/packages/dam/src/validation/validate.rendition.js +69 -0
  219. package/dist/packages/dam/src/validation/validate.rendition.js.map +1 -0
  220. package/dist/packages/dam/src/validation/validate.versions.d.ts +1 -0
  221. package/dist/packages/dam/src/validation/validate.versions.js +67 -0
  222. package/dist/packages/dam/src/validation/validate.versions.js.map +1 -0
  223. package/dist/packages/deployportlet/package-lock.json +20575 -0
  224. package/dist/packages/deployportlet/package.json +51 -0
  225. package/dist/packages/deployportlet/src/commands/deployPortlet.d.ts +4 -0
  226. package/dist/packages/deployportlet/src/commands/deployPortlet.js +99 -0
  227. package/dist/packages/deployportlet/src/commands/deployPortlet.js.map +1 -0
  228. package/dist/packages/deployportlet/src/commands/undeployPortlet.d.ts +4 -0
  229. package/dist/packages/deployportlet/src/commands/undeployPortlet.js +118 -0
  230. package/dist/packages/deployportlet/src/commands/undeployPortlet.js.map +1 -0
  231. package/dist/packages/deployportlet/src/commands/xmlaccess.d.ts +4 -0
  232. package/dist/packages/deployportlet/src/commands/xmlaccess.js +37 -0
  233. package/dist/packages/deployportlet/src/commands/xmlaccess.js.map +1 -0
  234. package/dist/packages/deployportlet/src/errors/CommandLineMessages_en.json +5 -0
  235. package/dist/packages/deployportlet/src/messages/messages_en.json +10 -0
  236. package/dist/packages/deployportlet/src/services/undeployPortletServices.d.ts +4 -0
  237. package/dist/packages/deployportlet/src/services/undeployPortletServices.js +92 -0
  238. package/dist/packages/deployportlet/src/services/undeployPortletServices.js.map +1 -0
  239. package/dist/packages/deployscriptapplication/package-lock.json +20758 -0
  240. package/dist/packages/deployscriptapplication/package.json +48 -0
  241. package/dist/packages/deployscriptapplication/src/commands/list.js +109 -0
  242. package/dist/packages/deployscriptapplication/src/commands/pull.d.ts +6 -0
  243. package/dist/packages/deployscriptapplication/src/commands/pull.js +195 -0
  244. package/dist/packages/deployscriptapplication/src/commands/pull.js.map +1 -0
  245. package/dist/packages/deployscriptapplication/src/commands/push.d.ts +9 -0
  246. package/dist/packages/deployscriptapplication/src/commands/push.js +282 -0
  247. package/dist/packages/deployscriptapplication/src/commands/push.js.map +1 -0
  248. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.d.ts +5 -0
  249. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js +125 -0
  250. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js.map +1 -0
  251. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.d.ts +5 -0
  252. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js +162 -0
  253. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js.map +1 -0
  254. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages.properties +211 -0
  255. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ar.properties +211 -0
  256. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ca.properties +211 -0
  257. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_cs.properties +211 -0
  258. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_da.properties +211 -0
  259. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_de.properties +211 -0
  260. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_el.properties +211 -0
  261. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.json +129 -0
  262. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.properties +211 -0
  263. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_es.properties +211 -0
  264. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fi.properties +211 -0
  265. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fr.properties +211 -0
  266. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hr.properties +211 -0
  267. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hu.properties +211 -0
  268. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_it.properties +212 -0
  269. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_iw.properties +211 -0
  270. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ja.properties +211 -0
  271. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_kk.properties +211 -0
  272. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ko.properties +211 -0
  273. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_nl.properties +211 -0
  274. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_no.properties +211 -0
  275. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pl.properties +211 -0
  276. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt.properties +211 -0
  277. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt_BR.properties +211 -0
  278. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ro.properties +211 -0
  279. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ru.properties +211 -0
  280. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sk.properties +211 -0
  281. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sl.properties +211 -0
  282. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sv.properties +211 -0
  283. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_th.properties +211 -0
  284. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_tr.properties +211 -0
  285. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_uk.properties +211 -0
  286. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh.properties +210 -0
  287. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh_TW.properties +211 -0
  288. package/dist/packages/deployscriptapplication/src/messages/messages.properties +63 -0
  289. package/dist/packages/deployscriptapplication/src/messages/messages_ar.properties +63 -0
  290. package/dist/packages/deployscriptapplication/src/messages/messages_ca.properties +63 -0
  291. package/dist/packages/deployscriptapplication/src/messages/messages_cs.properties +63 -0
  292. package/dist/packages/deployscriptapplication/src/messages/messages_da.properties +63 -0
  293. package/dist/packages/deployscriptapplication/src/messages/messages_de.properties +63 -0
  294. package/dist/packages/deployscriptapplication/src/messages/messages_el.properties +63 -0
  295. package/dist/packages/deployscriptapplication/src/messages/messages_en.json +61 -0
  296. package/dist/packages/deployscriptapplication/src/messages/messages_en.properties +63 -0
  297. package/dist/packages/deployscriptapplication/src/messages/messages_es.properties +63 -0
  298. package/dist/packages/deployscriptapplication/src/messages/messages_fi.properties +63 -0
  299. package/dist/packages/deployscriptapplication/src/messages/messages_fr.properties +63 -0
  300. package/dist/packages/deployscriptapplication/src/messages/messages_hr.properties +63 -0
  301. package/dist/packages/deployscriptapplication/src/messages/messages_hu.properties +63 -0
  302. package/dist/packages/deployscriptapplication/src/messages/messages_it.properties +63 -0
  303. package/dist/packages/deployscriptapplication/src/messages/messages_iw.properties +63 -0
  304. package/dist/packages/deployscriptapplication/src/messages/messages_ja.properties +63 -0
  305. package/dist/packages/deployscriptapplication/src/messages/messages_kk.properties +63 -0
  306. package/dist/packages/deployscriptapplication/src/messages/messages_ko.properties +63 -0
  307. package/dist/packages/deployscriptapplication/src/messages/messages_nl.properties +63 -0
  308. package/dist/packages/deployscriptapplication/src/messages/messages_no.properties +63 -0
  309. package/dist/packages/deployscriptapplication/src/messages/messages_pl.properties +63 -0
  310. package/dist/packages/deployscriptapplication/src/messages/messages_pt.properties +63 -0
  311. package/dist/packages/deployscriptapplication/src/messages/messages_pt_BR.properties +63 -0
  312. package/dist/packages/deployscriptapplication/src/messages/messages_ro.properties +63 -0
  313. package/dist/packages/deployscriptapplication/src/messages/messages_ru.properties +63 -0
  314. package/dist/packages/deployscriptapplication/src/messages/messages_sk.properties +63 -0
  315. package/dist/packages/deployscriptapplication/src/messages/messages_sl.properties +63 -0
  316. package/dist/packages/deployscriptapplication/src/messages/messages_sv.properties +63 -0
  317. package/dist/packages/deployscriptapplication/src/messages/messages_th.properties +63 -0
  318. package/dist/packages/deployscriptapplication/src/messages/messages_tr.properties +63 -0
  319. package/dist/packages/deployscriptapplication/src/messages/messages_uk.properties +63 -0
  320. package/dist/packages/deployscriptapplication/src/messages/messages_zh.properties +67 -0
  321. package/dist/packages/deployscriptapplication/src/messages/messages_zh_TW.properties +67 -0
  322. package/dist/packages/deployscriptapplication/src/util/constants.d.ts +74 -0
  323. package/dist/packages/deployscriptapplication/src/util/constants.js +98 -0
  324. package/dist/packages/deployscriptapplication/src/util/constants.js.map +1 -0
  325. package/dist/packages/deployscriptapplication/src/util/generic.d.ts +2 -0
  326. package/dist/packages/deployscriptapplication/src/util/generic.js +29 -0
  327. package/dist/packages/deployscriptapplication/src/util/generic.js.map +1 -0
  328. package/dist/packages/deploytheme/package-lock.json +21204 -0
  329. package/dist/packages/deploytheme/package.json +56 -0
  330. package/dist/packages/deploytheme/src/commands/deployApplication.d.ts +4 -0
  331. package/dist/packages/deploytheme/src/commands/deployApplication.js +115 -0
  332. package/dist/packages/deploytheme/src/commands/deployApplication.js.map +1 -0
  333. package/dist/packages/deploytheme/src/commands/deployTheme.d.ts +7 -0
  334. package/dist/packages/deploytheme/src/commands/deployTheme.js +286 -0
  335. package/dist/packages/deploytheme/src/commands/deployTheme.js.map +1 -0
  336. package/dist/packages/deploytheme/src/commands/undeployApplication.d.ts +4 -0
  337. package/dist/packages/deploytheme/src/commands/undeployApplication.js +46 -0
  338. package/dist/packages/deploytheme/src/commands/undeployApplication.js.map +1 -0
  339. package/dist/packages/deploytheme/src/commands/undeployTheme.d.ts +10 -0
  340. package/dist/packages/deploytheme/src/commands/undeployTheme.js +288 -0
  341. package/dist/packages/deploytheme/src/commands/undeployTheme.js.map +1 -0
  342. package/dist/packages/deploytheme/src/errors/CommandLineMessages_en.json +28 -0
  343. package/dist/packages/deploytheme/src/messages/messages_en.json +30 -0
  344. package/dist/packages/deploytheme/src/services/themeServices.d.ts +15 -0
  345. package/dist/packages/deploytheme/src/services/themeServices.js +413 -0
  346. package/dist/packages/deploytheme/src/services/themeServices.js.map +1 -0
  347. package/dist/packages/deploytheme/src/utils/Export.xml +28 -0
  348. package/dist/packages/livesync/package-lock.json +9737 -0
  349. package/dist/packages/livesync/package.json +49 -0
  350. package/dist/packages/livesync/src/commands/pullTheme.d.ts +5 -0
  351. package/dist/packages/livesync/src/commands/pullTheme.js +104 -0
  352. package/dist/packages/livesync/src/commands/pullTheme.js.map +1 -0
  353. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.d.ts +18 -0
  354. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js +193 -0
  355. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js.map +1 -0
  356. package/dist/packages/livesync/src/commands/pushTheme.d.ts +12 -0
  357. package/dist/packages/livesync/src/commands/pushTheme.js +233 -0
  358. package/dist/packages/livesync/src/commands/pushTheme.js.map +1 -0
  359. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.d.ts +4 -0
  360. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js +23 -0
  361. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js.map +1 -0
  362. package/dist/packages/livesync/src/errors/CommandLineMessages_en.json +52 -0
  363. package/dist/packages/livesync/src/messages/messages_en.json +33 -0
  364. package/dist/packages/livesync/src/services/EventsQueue.d.ts +12 -0
  365. package/dist/packages/livesync/src/services/EventsQueue.js +66 -0
  366. package/dist/packages/livesync/src/services/EventsQueue.js.map +1 -0
  367. package/dist/packages/livesync/src/services/foldersWcmServices.d.ts +7 -0
  368. package/dist/packages/livesync/src/services/foldersWcmServices.js +120 -0
  369. package/dist/packages/livesync/src/services/foldersWcmServices.js.map +1 -0
  370. package/dist/packages/livesync/src/services/htmlComponentWcmServices.d.ts +6 -0
  371. package/dist/packages/livesync/src/services/htmlComponentWcmServices.js +108 -0
  372. package/dist/packages/livesync/src/services/htmlComponentWcmServices.js.map +1 -0
  373. package/dist/packages/livesync/src/services/initialSyncServices.d.ts +3 -0
  374. package/dist/packages/livesync/src/services/initialSyncServices.js +94 -0
  375. package/dist/packages/livesync/src/services/initialSyncServices.js.map +1 -0
  376. package/dist/packages/livesync/src/services/livesyncUtils.d.ts +2 -0
  377. package/dist/packages/livesync/src/services/livesyncUtils.js +59 -0
  378. package/dist/packages/livesync/src/services/livesyncUtils.js.map +1 -0
  379. package/dist/packages/livesync/src/services/metadataServices.d.ts +16 -0
  380. package/dist/packages/livesync/src/services/metadataServices.js +117 -0
  381. package/dist/packages/livesync/src/services/metadataServices.js.map +1 -0
  382. package/dist/packages/livesync/src/services/ongoingSyncServices.d.ts +10 -0
  383. package/dist/packages/livesync/src/services/ongoingSyncServices.js +266 -0
  384. package/dist/packages/livesync/src/services/ongoingSyncServices.js.map +1 -0
  385. package/dist/packages/livesync/src/services/wcmRestV2Services.d.ts +5 -0
  386. package/dist/packages/livesync/src/services/wcmRestV2Services.js +92 -0
  387. package/dist/packages/livesync/src/services/wcmRestV2Services.js.map +1 -0
  388. package/dist/packages/livesync/src/types/EventHandler.type.d.ts +5 -0
  389. package/dist/packages/livesync/src/types/EventHandler.type.js +3 -0
  390. package/dist/packages/livesync/src/types/EventHandler.type.js.map +1 -0
  391. package/dist/packages/livesync/src/types/EventQueueItem.type.d.ts +7 -0
  392. package/dist/packages/livesync/src/types/EventQueueItem.type.js +3 -0
  393. package/dist/packages/livesync/src/types/EventQueueItem.type.js.map +1 -0
  394. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.d.ts +4 -0
  395. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js +3 -0
  396. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js.map +1 -0
  397. package/dist/packages/livesync/src/types/WcmRestApiV2.type.d.ts +99 -0
  398. package/dist/packages/livesync/src/types/WcmRestApiV2.type.js +3 -0
  399. package/dist/packages/livesync/src/types/WcmRestApiV2.type.js.map +1 -0
  400. package/dist/packages/livesync/src/types/index.d.ts +4 -0
  401. package/dist/packages/livesync/src/types/index.js +17 -0
  402. package/dist/packages/livesync/src/types/index.js.map +1 -0
  403. package/dist/packages/mls_exim/package-lock.json +13855 -0
  404. package/dist/packages/mls_exim/package.json +51 -0
  405. package/dist/packages/mls_exim/src/errors/CommandLineMessages_en.json +19 -0
  406. package/dist/packages/mls_exim/src/export/mlsExport.d.ts +7 -0
  407. package/dist/packages/mls_exim/src/export/mlsExport.js +292 -0
  408. package/dist/packages/mls_exim/src/export/mlsExport.js.map +1 -0
  409. package/dist/packages/mls_exim/src/export/mlsExport.ts +371 -0
  410. package/dist/packages/mls_exim/src/import/mlsImport.d.ts +8 -0
  411. package/dist/packages/mls_exim/src/import/mlsImport.js +104 -0
  412. package/dist/packages/mls_exim/src/import/mlsImport.js.map +1 -0
  413. package/dist/packages/mls_exim/src/import/mlsImport.ts +138 -0
  414. package/dist/packages/mls_exim/src/messages/messages_en.json +14 -0
  415. package/dist/packages/mls_exim/src/utils/interfaces/export.d.ts +133 -0
  416. package/dist/packages/mls_exim/src/utils/interfaces/export.js +3 -0
  417. package/dist/packages/mls_exim/src/utils/interfaces/export.js.map +1 -0
  418. package/dist/packages/mls_exim/src/utils/interfaces/export.ts +165 -0
  419. package/dist/packages/mls_exim/src/utils/interfaces/import.d.ts +52 -0
  420. package/dist/packages/mls_exim/src/utils/interfaces/import.js +3 -0
  421. package/dist/packages/mls_exim/src/utils/interfaces/import.js.map +1 -0
  422. package/dist/packages/mls_exim/src/utils/interfaces/import.ts +76 -0
  423. package/dist/packages/sharedlibrary/package-lock.json +20575 -0
  424. package/dist/packages/sharedlibrary/package.json +51 -0
  425. package/dist/packages/sharedlibrary/src/commands/delete.d.ts +4 -0
  426. package/dist/packages/sharedlibrary/src/commands/delete.js +64 -0
  427. package/dist/packages/sharedlibrary/src/commands/delete.js.map +1 -0
  428. package/dist/packages/sharedlibrary/src/commands/upload.d.ts +4 -0
  429. package/dist/packages/sharedlibrary/src/commands/upload.js +105 -0
  430. package/dist/packages/sharedlibrary/src/commands/upload.js.map +1 -0
  431. package/dist/packages/sharedlibrary/src/errors/CommandLineMessages_en.json +10 -0
  432. package/dist/packages/sharedlibrary/src/messages/messages_en.json +7 -0
  433. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.d.ts +5 -0
  434. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js +100 -0
  435. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js.map +1 -0
  436. package/dist/packages/syndication/package-lock.json +20575 -0
  437. package/dist/packages/syndication/package.json +51 -0
  438. package/dist/packages/syndication/src/commands/subscriber.d.ts +4 -0
  439. package/dist/packages/syndication/src/commands/subscriber.js +62 -0
  440. package/dist/packages/syndication/src/commands/subscriber.js.map +1 -0
  441. package/dist/packages/syndication/src/commands/syndicationReport.d.ts +2 -0
  442. package/dist/packages/syndication/src/commands/syndicationReport.js +99 -0
  443. package/dist/packages/syndication/src/commands/syndicationReport.js.map +1 -0
  444. package/dist/packages/syndication/src/commands/syndicator.d.ts +4 -0
  445. package/dist/packages/syndication/src/commands/syndicator.js +62 -0
  446. package/dist/packages/syndication/src/commands/syndicator.js.map +1 -0
  447. package/dist/packages/syndication/src/commands/syndicatorFailedItem.d.ts +4 -0
  448. package/dist/packages/syndication/src/commands/syndicatorFailedItem.js +104 -0
  449. package/dist/packages/syndication/src/commands/syndicatorFailedItem.js.map +1 -0
  450. package/dist/packages/syndication/src/errors/CommandLineMessages_en.json +12 -0
  451. package/dist/packages/syndication/src/messages/messages_en.json +9 -0
  452. package/dist/packages/syndication/src/services/syndicationService.d.ts +108 -0
  453. package/dist/packages/syndication/src/services/syndicationService.js +167 -0
  454. package/dist/packages/syndication/src/services/syndicationService.js.map +1 -0
  455. package/dist/src/errors/CommandLineMessages_en.json +53 -0
  456. package/dist/src/index.d.ts +1 -0
  457. package/dist/src/index.js +2207 -0
  458. package/dist/src/index.js.map +1 -0
  459. package/dist/src/services/apiServices.d.ts +32 -0
  460. package/dist/src/services/apiServices.js +932 -0
  461. package/dist/src/services/apiServices.js.map +1 -0
  462. package/dist/src/services/filesServices.d.ts +9 -0
  463. package/dist/src/services/filesServices.js +134 -0
  464. package/dist/src/services/filesServices.js.map +1 -0
  465. package/dist/src/services/requestService.d.ts +4 -0
  466. package/dist/src/services/requestService.js +55 -0
  467. package/dist/src/services/requestService.js.map +1 -0
  468. package/dist/src/utils/commands.d.ts +2 -0
  469. package/dist/src/utils/commands.js +13 -0
  470. package/dist/src/utils/commands.js.map +1 -0
  471. package/dist/src/utils/constants.d.ts +389 -0
  472. package/dist/src/utils/constants.js +464 -0
  473. package/dist/src/utils/constants.js.map +1 -0
  474. package/dist/src/utils/interfaces.d.ts +19 -0
  475. package/dist/src/utils/interfaces.js +3 -0
  476. package/dist/src/utils/interfaces.js.map +1 -0
  477. package/dist/src/utils/logger.d.ts +3 -0
  478. package/dist/src/utils/logger.js +126 -0
  479. package/dist/src/utils/logger.js.map +1 -0
  480. package/dist/src/utils/utils.d.ts +31 -0
  481. package/dist/src/utils/utils.js +791 -0
  482. package/dist/src/utils/utils.js.map +1 -0
  483. package/dist/src/utils/validateOptions.d.ts +4 -0
  484. package/dist/src/utils/validateOptions.js +730 -0
  485. package/dist/src/utils/validateOptions.js.map +1 -0
  486. 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=U\u017eivatel:
7
+ AutoAuthHandler.5=Heslo:
8
+ AutoAuthHandler.6=Ov\u011b\u0159ovac\u00ed adresa URL: {0}
9
+ AutoAuthHandler.8=Ov\u011b\u0159en\u00ed bylo \u00fasp\u011b\u0161n\u00e9.
10
+ BasicAuthHandler.0=U\u017eivatel:
11
+ BasicAuthHandler.1=Heslo:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Chcete-li zobrazit dokumentaci obslu\u017en\u00e9ho programu p\u0159\u00edkazov\u00e9ho \u0159\u00e1dku produktu Script Application, otev\u0159ete v prohl\u00ed\u017ee\u010di n\u00e1sleduj\u00edc\u00ed adresu URL.
14
+ CommandLine.20=P\u0159\u00edkaz prob\u011bhl \u00fasp\u011b\u0161n\u011b. Podrobnosti viz protokol: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Verze obslu\u017en\u00e9ho programu p\u0159\u00edkazov\u00e9ho \u0159\u00e1dku produktu Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u010c\u00edslo sestaven\u00ed obslu\u017en\u00e9ho programu p\u0159\u00edkazov\u00e9ho \u0159\u00e1dku produktu Script Application: {0}
19
+ CommandLine.8=Domovsk\u00e1 slo\u017eka: {0}
20
+ CommandLine.9=Nezad\u00e1no.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Server Script Application:
23
+ GenericResponseHandler.11=Stav odezvy: {0}
24
+ GenericResponseHandler.12=Efektivn\u00ed znakov\u00e1 sada t\u011bla: {0}
25
+ GenericResponseHandler.13=Obsah t\u011bla: {0}
26
+ GenericResponseHandler.14=Syntaktick\u00e1 anal\u00fdza t\u011bla odezvy se nezda\u0159ila.
27
+ ListCommand.10=C\u00edlov\u00e1 ov\u011b\u0159ovac\u00ed pov\u011b\u0159en\u00ed: {0}
28
+ ListCommand.23=N\u00e1zev virtu\u00e1ln\u00edho port\u00e1lu
29
+ ListCommand.24=N\u00e1zev projektu WCM
30
+ ListCommand.25=ID virtu\u00e1ln\u00edho port\u00e1lu
31
+ ListCommand.26=ID obsahu WCM
32
+ ListCommand.27=Cesta k oblasti webu
33
+ ListCommand.28=ID oblasti webu
34
+ ListCommand.37=Vyps\u00e1n\u00ed objekt\u016f bylo \u00fasp\u011b\u0161n\u00e9.
35
+ ListCommand.38=Ukon\u010dit vyps\u00e1n\u00ed objekt\u016f na port\u00e1lu.
36
+ ListCommand.6=Zah\u00e1jit vyps\u00e1n\u00ed objekt\u016f na port\u00e1lu.
37
+ ListCommand.7=Adresa URL seznamu: {0}
38
+ ListCommand.8=C\u00edlov\u00fd stav ov\u011b\u0159ov\u00e1n\u00ed: {0}
39
+ ListCommand.9=C\u00edlov\u00e9 sch\u00e9ma ov\u011b\u0159ov\u00e1n\u00ed: {0}
40
+ Logger.0={0} ({1} bajt\u016f)
41
+ Logger.10=Efektivn\u00ed vlastnosti konfigurace: {0}
42
+ Logger.16=Prost\u0159ed\u00ed Java: {0}
43
+ Logger.22=Proud archivu ({0} bajt\u016f v {1} souborech): {2}
44
+ Logger.24=Nezn\u00e1m\u00fd
45
+ Logger.26=Archivn\u00ed soubor: {0}({1} bajt\u016f v {2} souborech) {3}
46
+ Logger.4=V\u00fdchoz\u00ed hodnota protokolov\u00e1n\u00ed je standardn\u00ed chyba.
47
+ PushCommand.10=Titulek obsahu WCM: {0}
48
+ PushCommand.11=Hlavn\u00ed soubor HTML: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Vlastn\u00ed parametr POST: {0} = {1}
51
+ PushCommand.18=C\u00edlov\u00fd stav ov\u011b\u0159ov\u00e1n\u00ed: {0}
52
+ PushCommand.19=C\u00edlov\u00e9 sch\u00e9ma ov\u011b\u0159ov\u00e1n\u00ed: {0}
53
+ PushCommand.20=C\u00edlov\u00e1 ov\u011b\u0159ovac\u00ed pov\u011b\u0159en\u00ed: {0}
54
+ PushCommand.3=Hlavn\u00ed soubor HTML:
55
+ PushCommand.31=Odesl\u00e1n\u00ed obsahu typu push bylo \u00fasp\u011b\u0161n\u00e9.
56
+ PushCommand.32=Ukon\u010dit odesl\u00e1n\u00ed obsahu typu push na port\u00e1l.
57
+ PushCommand.4=Zah\u00e1jit odesl\u00e1n\u00ed obsahu typu push na port\u00e1l.
58
+ PushCommand.5=Adresa URL odesl\u00e1n\u00ed typu push: {0}
59
+ PushCommand.6=Kontext virtu\u00e1ln\u00edho port\u00e1lu: {0}
60
+ PushCommand.7=Kontext projektu: {0}
61
+ PushCommand.8=ID obsahu WCM: {0}
62
+ PushCommand.9=Cesta k obsahu 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=Bruger:
7
+ AutoAuthHandler.5=Kodeord:
8
+ AutoAuthHandler.6=Validerings-URL: {0}
9
+ AutoAuthHandler.8=Validering er udf\u00f8rt.
10
+ BasicAuthHandler.0=Bruger:
11
+ BasicAuthHandler.1=Kodeord:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u00c5bn f\u00f8lgende URL i en browser for at f\u00e5 vist kommandolinjedokumentationen til Script Application.
14
+ CommandLine.20=Kommandoen er udf\u00f8rt. Der er flere oplysninger i logfilen: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Version af Script Application-kommandolinjefunktion: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Buildnummer for Script Application-kommandolinjefunktion: {0}
19
+ CommandLine.8=Hjem-folder: {0}
20
+ CommandLine.9=Ikke angivet.
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=Effektivt indholdstegns\u00e6t: {0}
25
+ GenericResponseHandler.13=Indhold: {0}
26
+ GenericResponseHandler.14=Parsing af svarindhold er ikke udf\u00f8rt.
27
+ ListCommand.10=Legitimationsoplysninger for m\u00e5lvalidering: {0}
28
+ ListCommand.23=Navn p\u00e5 virtuel portal
29
+ ListCommand.24=Navn p\u00e5 WCM-projekt
30
+ ListCommand.25=Id p\u00e5 virtuel portal
31
+ ListCommand.26=Id p\u00e5 WCM-indhold
32
+ ListCommand.27=Sti i webstedsomr\u00e5de
33
+ ListCommand.28=Id for webstedsomr\u00e5de
34
+ ListCommand.37=Objektliste er udf\u00f8rt.
35
+ ListCommand.38=Afslut objektliste p\u00e5 Portal.
36
+ ListCommand.6=Begynd objektliste p\u00e5 Portal.
37
+ ListCommand.7=Liste-URL: {0}
38
+ ListCommand.8=M\u00e5lvalideringstilstand: {0}
39
+ ListCommand.9=M\u00e5lvalideringsskema: {0}
40
+ Logger.0={0} ({1} byte)
41
+ Logger.10=Effektive konfigurationsegenskaber: {0}
42
+ Logger.16=Java-milj\u00f8: {0}
43
+ Logger.22=Arkivstr\u00f8m ({0} byte i {1} filer): {2}
44
+ Logger.24=Ukendt
45
+ Logger.26=Arkivfil: {0}({1} byte i {2} filer) {3}
46
+ Logger.4=Logning placeres som standard under standardfejl.
47
+ PushCommand.10=Titel p\u00e5 WCM-indhold: {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\u00e5lvalideringstilstand: {0}
52
+ PushCommand.19=M\u00e5lvalideringsskema: {0}
53
+ PushCommand.20=Legitimationsoplysninger for m\u00e5lvalidering: {0}
54
+ PushCommand.3=HTML-hovedfil:
55
+ PushCommand.31=Push-funktion for indhold er udf\u00f8rt.
56
+ PushCommand.32=Afslut push-funktion for indhold til Portal.
57
+ PushCommand.4=Begynd push-funktion for indhold til Portal.
58
+ PushCommand.5=Push-funktion til URL: {0}
59
+ PushCommand.6=Indhold af virtuel portal: {0}
60
+ PushCommand.7=Projektindhold: {0}
61
+ PushCommand.8=Id p\u00e5 WCM-indhold: {0}
62
+ PushCommand.9=WCM-indholdssti: {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=Benutzer:
7
+ AutoAuthHandler.5=Kennwort:
8
+ AutoAuthHandler.6=Authentifizierungs-URL: {0}
9
+ AutoAuthHandler.8=Die Authentifizierung war erfolgreich.
10
+ BasicAuthHandler.0=Benutzer:
11
+ BasicAuthHandler.1=Kennwort:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u00d6ffnen Sie die URL in einem Browser, um die Dokumentation zum Script Application-Befehlszeilendienstprogramm anzuzeigen.
14
+ CommandLine.20=Der Befehl war erfolgreich. Suchen Sie im Protokoll nach Details: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Version des Script Application-Befehlszeilendienstprogramms: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Buildnummer des Script Application-Befehlszeilendienstprogramms: {0}
19
+ CommandLine.8=Ausgangsordner: {0}
20
+ CommandLine.9=Nicht angegeben.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application-Server:
23
+ GenericResponseHandler.11=Antwortstatus: {0}
24
+ GenericResponseHandler.12=Effektiver Zeichensatz f\u00fcr den Hauptteil: {0}
25
+ GenericResponseHandler.13=Hauptteilinhalt: {0}
26
+ GenericResponseHandler.14=Das Parsing des Antworthauptteils ist fehlgeschlagen.
27
+ ListCommand.10=Authentifizierungsnachweise f\u00fcr Ziel: {0}
28
+ ListCommand.23=Name des virtuellen Portals
29
+ ListCommand.24=Name des WCM-Projekts
30
+ ListCommand.25=ID des virtuellen Portals
31
+ ListCommand.26=WCM-Inhalts-ID
32
+ ListCommand.27=Sitebereichspfad
33
+ ListCommand.28=ID des Sitebereichs
34
+ ListCommand.37=Die Objektauflistung war erfolgreich.
35
+ ListCommand.38=Ende der Objektauflistung im Portal.
36
+ ListCommand.6=Anfang der Objektauflistung im Portal.
37
+ ListCommand.7=Listen-URL: {0}
38
+ ListCommand.8=Authentifizierungsschema des Ziels: {0}
39
+ ListCommand.9=Authentifizierungsschema des Ziels: {0}
40
+ Logger.0={0} ({1} Byte)
41
+ Logger.10=Effektive Konfigurationseigenschaften: {0}
42
+ Logger.16=Java-Umgebung: {0}
43
+ Logger.22=Archivdatenstrom ({0} Byte in {1} Dateien): {2}
44
+ Logger.24=Unbekannt
45
+ Logger.26=Archivdatei: {0}({1} Byte in {2} Dateien) {3}
46
+ Logger.4=Die Protokollierung wird standardm\u00e4\u00dfig in der Standardfehlerausgabe durchgef\u00fchrt.
47
+ PushCommand.10=Titel des WCM-Inhalts: {0}
48
+ PushCommand.11=Haupt-HTML-Datei: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Angepasster POST-Parameter: {0} = {1}
51
+ PushCommand.18=Authentifizierungsschema des Ziels: {0}
52
+ PushCommand.19=Authentifizierungsschema des Ziels: {0}
53
+ PushCommand.20=Authentifizierungsnachweise f\u00fcr Ziel: {0}
54
+ PushCommand.3=Haupt-HTML-Datei:
55
+ PushCommand.31=Die Push-Operation f\u00fcr den Inhalt war erfolgreich.
56
+ PushCommand.32=Ende der Push-Operation f\u00fcr den Inhalt im Portal.
57
+ PushCommand.4=Anfang der Push-Operation f\u00fcr den Inhalt im Portal.
58
+ PushCommand.5=Push-URL: {0}
59
+ PushCommand.6=Kontext des virtuellen Portals: {0}
60
+ PushCommand.7=Projektkontext: {0}
61
+ PushCommand.8=ID des WCM-Inhalts: {0}
62
+ PushCommand.9=Pfad des WCM-Inhalts: {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=\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2:
7
+ AutoAuthHandler.5=\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2:
8
+ AutoAuthHandler.6=\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd: {0}
9
+ AutoAuthHandler.8=\u0397 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03ae\u03c4\u03b1\u03bd \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b7\u03bc\u03ad\u03bd\u03b7.
10
+ BasicAuthHandler.0=\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2:
11
+ BasicAuthHandler.1=\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u0391\u03bd\u03bf\u03af\u03be\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03cc\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1 \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd \u03c4\u03bf\u03c5 Script Application.
14
+ CommandLine.20=\u0397 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ae \u03ae\u03c4\u03b1\u03bd \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b7\u03bc\u03ad\u03bd\u03b7. \u0391\u03bd\u03b1\u03c4\u03c1\u03ad\u03be\u03c4\u03b5 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd \u03c4\u03bf\u03c5 Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b4\u03cc\u03bc\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd \u03c4\u03bf\u03c5 Script Application: {0}
19
+ CommandLine.8=\u0391\u03c1\u03c7\u03b9\u03ba\u03cc\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2: {0}
20
+ CommandLine.9=\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=\u0395\u03be\u03c5\u03c0\u03b7\u03c1\u03b5\u03c4\u03b7\u03c4\u03ae\u03c2 Script Application:
23
+ GenericResponseHandler.11=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b9\u03c3\u03b7\u03c2: {0}
24
+ GenericResponseHandler.12=\u0395\u03bd\u03b5\u03c1\u03b3\u03cc \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03c9\u03bd \u03ba\u03c5\u03c1\u03af\u03bf\u03c5 \u03c3\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2: {0}
25
+ GenericResponseHandler.13=\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf\u03c5 \u03c3\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2: {0}
26
+ GenericResponseHandler.14=\u0397 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03c5\u03c1\u03af\u03bf\u03c5 \u03c3\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b9\u03c3\u03b7\u03c2 \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5.
27
+ ListCommand.10=\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
28
+ ListCommand.23=\u038c\u03bd\u03bf\u03bc\u03b1 \u03b5\u03b9\u03ba\u03bf\u03bd\u03b9\u03ba\u03ae\u03c2 \u03c0\u03cd\u03bb\u03b7\u03c2
29
+ ListCommand.24=\u038c\u03bd\u03bf\u03bc\u03b1 \u03ad\u03c1\u03b3\u03bf\u03c5 WCM
30
+ ListCommand.25=\u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b5\u03b9\u03ba\u03bf\u03bd\u03b9\u03ba\u03ae\u03c2 \u03c0\u03cd\u03bb\u03b7\u03c2
31
+ ListCommand.26=\u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 WCM
32
+ ListCommand.27=\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae\u03c2 \u03b4\u03b9\u03ba\u03c4\u03c5\u03b1\u03ba\u03bf\u03cd \u03c4\u03cc\u03c0\u03bf\u03c5
33
+ ListCommand.28=\u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae\u03c2 \u03b4\u03b9\u03ba\u03c4\u03c5\u03b1\u03ba\u03bf\u03cd \u03c4\u03cc\u03c0\u03bf\u03c5
34
+ ListCommand.37=\u0397 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03c9\u03bd \u03b4\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b7\u03bc\u03ad\u03bd\u03b7.
35
+ ListCommand.38=\u03a4\u03ad\u03bb\u03bf\u03c2 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7.
36
+ ListCommand.6=\u0391\u03c1\u03c7\u03ae \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7.
37
+ ListCommand.7=\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03bb\u03af\u03c3\u03c4\u03b1\u03c2: {0}
38
+ ListCommand.8=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
39
+ ListCommand.9=\u03a3\u03c7\u03ae\u03bc\u03b1 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
40
+ Logger.0={0} ({1} bytes)
41
+ Logger.10=\u0399\u03c3\u03c7\u03cd\u03bf\u03c5\u03c3\u03b5\u03c2 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7\u03c2: {0}
42
+ Logger.16=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Java: {0}
43
+ Logger.22=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c1\u03bf\u03ae\u03c2 ({0} bytes \u03c3\u03b5 {1} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1): {2}
44
+ Logger.24=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf
45
+ Logger.26=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7: {0}({1} bytes \u03c3\u03b5 {2} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1) {3}
46
+ Logger.4=\u0391\u03c0\u03cc \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b8\u03b1 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03b1 \u03c4\u03c5\u03c0\u03b9\u03ba\u03ac \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1.
47
+ PushCommand.10=\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 WCM: {0}
48
+ PushCommand.11=\u039a\u03cd\u03c1\u03b9\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf HTML: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2 POST: {0} = {1}
51
+ PushCommand.18=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
52
+ PushCommand.19=\u03a3\u03c7\u03ae\u03bc\u03b1 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
53
+ PushCommand.20=\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b5\u03be\u03b1\u03ba\u03c1\u03af\u03b2\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd: {0}
54
+ PushCommand.3=\u039a\u03cd\u03c1\u03b9\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf HTML:
55
+ PushCommand.31=\u0397 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ae\u03c4\u03b1\u03bd \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03b7\u03bc\u03ad\u03bd\u03b7.
56
+ PushCommand.32=\u03a4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7.
57
+ PushCommand.4=\u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7.
58
+ PushCommand.5=\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2: {0}
59
+ PushCommand.6=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b5\u03b9\u03ba\u03bf\u03bd\u03b9\u03ba\u03ae\u03c2 \u03c0\u03cd\u03bb\u03b7\u03c2: {0}
60
+ PushCommand.7=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03ad\u03c1\u03b3\u03bf\u03c5: {0}
61
+ PushCommand.8=\u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 WCM: {0}
62
+ PushCommand.9=\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 WCM: {0}
63
+
@@ -0,0 +1,61 @@
1
+ {
2
+ "NLS_ENCODING": "UNICODE",
3
+ "NLS_MARKUP": "IBMJDK12",
4
+ "AutoAuthHandler.4": "User:",
5
+ "AutoAuthHandler.5": "Password:",
6
+ "AutoAuthHandler.6": "Authentication URL: {0}",
7
+ "AutoAuthHandler.8": "Authentication was successful.",
8
+ "BasicAuthHandler.0": "User: ",
9
+ "BasicAuthHandler.1": "Password: ",
10
+ "CommandLine.1": "Open the following URL in a browser to view Script Application command line utility documentation.",
11
+ "CommandLine.20": "Command was successful. See the logger.log for details: ({0}).",
12
+ "CommandLine.7": "Script Application command line utility version: {0}.",
13
+ "CommandLine.BuildNumber": "Script Application command line utility build number: {0}.",
14
+ "CommandLine.8": "Home folder: {0}.",
15
+ "CommandLine.9": "Not specified..",
16
+ "GenericCommand.2": "Script Application Server: .",
17
+ "GenericResponseHandler.11": "Response status: {0}.",
18
+ "GenericResponseHandler.12": "Effective character set of body: {0}.",
19
+ "GenericResponseHandler.13": "Body content: {0}.",
20
+ "GenericResponseHandler.14": "Response body parsing failed.",
21
+ "ListCommand.10": "Target authentication credentials: {0}.",
22
+ "ListCommand.23": "Virtual Portal Name.",
23
+ "ListCommand.24": "WCM Project Name.",
24
+ "ListCommand.25": "Virtual Portal ID.",
25
+ "ListCommand.26": "WCM Content ID.",
26
+ "ListCommand.27": "Site Area Path.",
27
+ "ListCommand.28": "Site Area ID.",
28
+ "ListCommand.37": "Object list was successful.",
29
+ "ListCommand.38": "End object list on Portal.",
30
+ "ListCommand.6": "Begin object list on Portal.",
31
+ "ListCommand.7": "List URL: {0}.",
32
+ "ListCommand.8": "Target authentication state: {0}.",
33
+ "ListCommand.9": "Target authentication scheme: {0}.",
34
+ "Logger.0": "{0} ({1} bytes).",
35
+ "Logger.10": "Effective configuration properties: {0}.",
36
+ "Logger.16": "Java environment: {0}.",
37
+ "Logger.22": "Archive stream ({0} bytes in {1} files): {2}.",
38
+ "Logger.24": "Unknown.",
39
+ "Logger.26": "Archive file: {0}({1} bytes in {2} files) {3}.",
40
+ "Logger.4": "Logging will default to standard error.",
41
+ "PushCommand.10": "WCM Content Title: {0}.",
42
+ "PushCommand.11": "Main HTML file: {0}.",
43
+ "PushCommand.17": "Custom POST parameter: {0} : {1}.",
44
+ "PushCommand.18": "Target authentication state: {0}.",
45
+ "PushCommand.19": "Target authentication scheme: {0}.",
46
+ "PushCommand.20": "Target authentication credentials: {0}.",
47
+ "PushCommand.3": "Main HTML File: .",
48
+ "PushCommand.31": "Content push was successful.",
49
+ "PushCommand.32": "End content push to Portal.",
50
+ "PushCommand.4": "Begin content push to Portal.",
51
+ "PushCommand.5": "Push URL: {0}.",
52
+ "PushCommand.6": "Virtual Portal Context: {0}.",
53
+ "PushCommand.7": "Project Context: {0}.",
54
+ "PushCommand.8": "WCM content ID: {0}.",
55
+ "PushCommand.9": "WCM Content Path: {0}.",
56
+ "SCRIPT_APPLICATION_BACKUP_SUCCESS": "Successfully created a back up of Script Application before undeploy.",
57
+ "DISABLED_SCRIPT_APPLICATION_BACKUP": "Disabled taking the back up of script application to be undeployed.",
58
+ "SCRIPT_APPLICATION_SELECTED_DEFAULT_VERSION": "The previous version of the script application is selected as default : {0}",
59
+ "SCRIPT_APPLICATION_AVAILABLE_VERSIONS": "The provided version is invalid, please select an available version from the given list: {0}",
60
+ "RESTORE_SCRIPT_APPLICATION_SUCCESS": "The Script Application {0} was restored to version {1} successfully."
61
+ }
@@ -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=User:
7
+ AutoAuthHandler.5=Password:
8
+ AutoAuthHandler.6=Authentication URL: {0}
9
+ AutoAuthHandler.8=Authentication was successful.
10
+ BasicAuthHandler.0=User:
11
+ BasicAuthHandler.1=Password:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Open the following URL in a browser to view Script Application command line utility documentation.
14
+ CommandLine.20=Command was successful. See the log for details: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Script Application command line utility version: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Script Application command line utility build number: {0}
19
+ CommandLine.8=Home folder: {0}
20
+ CommandLine.9=Not specified.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application Server:
23
+ GenericResponseHandler.11=Response status: {0}
24
+ GenericResponseHandler.12=Effective character set of body: {0}
25
+ GenericResponseHandler.13=Body content: {0}
26
+ GenericResponseHandler.14=Response body parsing failed.
27
+ ListCommand.10=Target authentication credentials: {0}
28
+ ListCommand.23=Virtual Portal Name
29
+ ListCommand.24=WCM Project Name
30
+ ListCommand.25=Virtual Portal ID
31
+ ListCommand.26=WCM Content ID
32
+ ListCommand.27=Site Area Path
33
+ ListCommand.28=Site Area ID
34
+ ListCommand.37=Object list was successful.
35
+ ListCommand.38=End object list on Portal.
36
+ ListCommand.6=Begin object list on Portal.
37
+ ListCommand.7=List URL: {0}
38
+ ListCommand.8=Target authentication state: {0}
39
+ ListCommand.9=Target authentication scheme: {0}
40
+ Logger.0={0} ({1} bytes)
41
+ Logger.10=Effective configuration properties: {0}
42
+ Logger.16=Java environment: {0}
43
+ Logger.22=Archive stream ({0} bytes in {1} files): {2}
44
+ Logger.24=Unknown
45
+ Logger.26=Archive file: {0}({1} bytes in {2} files) {3}
46
+ Logger.4=Logging will default to standard error.
47
+ PushCommand.10=WCM Content Title: {0}
48
+ PushCommand.11=Main HTML file: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Custom POST parameter: {0} = {1}
51
+ PushCommand.18=Target authentication state: {0}
52
+ PushCommand.19=Target authentication scheme: {0}
53
+ PushCommand.20=Target authentication credentials: {0}
54
+ PushCommand.3=Main HTML File:
55
+ PushCommand.31=Content push was successful.
56
+ PushCommand.32=End content push to Portal.
57
+ PushCommand.4=Begin content push to Portal.
58
+ PushCommand.5=Push URL: {0}
59
+ PushCommand.6=Virtual Portal Context: {0}
60
+ PushCommand.7=Project Context: {0}
61
+ PushCommand.8=WCM content ID: {0}
62
+ PushCommand.9=WCM Content Path: {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=Usuario:
7
+ AutoAuthHandler.5=Contrase\u00f1a:
8
+ AutoAuthHandler.6=URL de autenticaci\u00f3n: {0}
9
+ AutoAuthHandler.8=La autenticaci\u00f3n fue satisfactoria.
10
+ BasicAuthHandler.0=Usuario:
11
+ BasicAuthHandler.1=Contrase\u00f1a:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Abra el siguiente URL en un navegador para ver la documentaci\u00f3n del programa de utilidad de l\u00ednea de mandatos de Script Application.
14
+ CommandLine.20=El mandato ha sido satisfactorio. Consulte el registro para obtener detalles: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Versi\u00f3n del programa de utilidad de l\u00ednea de mandatos de Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=N\u00famero de compilaci\u00f3n de programa de utilidad de l\u00ednea de mandatos de Script Application: {0}
19
+ CommandLine.8=Carpeta de inicio: {0}
20
+ CommandLine.9=No se ha especificado.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Servidor de Script Application:
23
+ GenericResponseHandler.11=Estado de respuesta: {0}
24
+ GenericResponseHandler.12=Juego de caracteres efectivo de cuerpo: {0}
25
+ GenericResponseHandler.13=Contenido de cuerpo: {0}
26
+ GenericResponseHandler.14=El an\u00e1lisis del cuerpo de respuesta ha fallado.
27
+ ListCommand.10=Credenciales de autenticaci\u00f3n de destino: {0}
28
+ ListCommand.23=Nombre de portal virtual
29
+ ListCommand.24=Nombre de proyecto de WCM
30
+ ListCommand.25=ID de portal virtual
31
+ ListCommand.26=ID de contenido de WCM
32
+ ListCommand.27=V\u00eda de acceso de \u00e1rea de sitio
33
+ ListCommand.28=ID de \u00e1rea de sitio
34
+ ListCommand.37=La lista de objetos ha sido satisfactoria.
35
+ ListCommand.38=Finalizar lista de objetos en Portal.
36
+ ListCommand.6=Empezar lista de objetos en Portal.
37
+ ListCommand.7=URL de lista: {0}
38
+ ListCommand.8=Estado de autenticaci\u00f3n de destino: {0}
39
+ ListCommand.9=Esquema de autenticaci\u00f3n de destino: {0}
40
+ Logger.0={0} ({1} bytes)
41
+ Logger.10=Propiedades de configuraci\u00f3n efectivas: {0}
42
+ Logger.16=Entorno de Java: {0}
43
+ Logger.22=Secuencia de archivado ({0} bytes en {1} archivos): {2}
44
+ Logger.24=Desconocido
45
+ Logger.26=Archivo de archivado: {0}({1} bytes en {2} archivos) {3}
46
+ Logger.4=El registro tomar\u00e1 el valor predeterminado de error est\u00e1ndar.
47
+ PushCommand.10=T\u00edtulo de contenido de WCM: {0}
48
+ PushCommand.11=Archivo HTML principal: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Par\u00e1metro POST personalizado: {0} = {1}
51
+ PushCommand.18=Estado de autenticaci\u00f3n de destino: {0}
52
+ PushCommand.19=Esquema de autenticaci\u00f3n de destino: {0}
53
+ PushCommand.20=Credenciales de autenticaci\u00f3n de destino: {0}
54
+ PushCommand.3=Archivo HTML principal:
55
+ PushCommand.31=El env\u00edo por push de contenido ha sido satisfactorio.
56
+ PushCommand.32=Finalizar env\u00edo por push de contenido a Portal.
57
+ PushCommand.4=Empezar env\u00edo por push de contenido a Portal.
58
+ PushCommand.5=URL de env\u00edo: {0}
59
+ PushCommand.6=Contexto de portal virtual: {0}
60
+ PushCommand.7=Contexto de proyecto: {0}
61
+ PushCommand.8=ID de contenido de WCM: {0}
62
+ PushCommand.9=V\u00eda de acceso de contenido de 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=K\u00e4ytt\u00e4j\u00e4:
7
+ AutoAuthHandler.5=Salasana:
8
+ AutoAuthHandler.6=Todennuksen URL-osoite: {0}
9
+ AutoAuthHandler.8=Todennus onnistui.
10
+ BasicAuthHandler.0=K\u00e4ytt\u00e4j\u00e4:
11
+ BasicAuthHandler.1=Salasana:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Voit tarkastella Script Application -komentoriviapuohjelman ohjeita avaamalla selaimessa seuraavan URL-osoitteen.
14
+ CommandLine.20=Komento onnistui. Lis\u00e4tietoja on lokissa: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Script Application -komentoriviapuohjelman versio: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Script Application -komentoriviapuohjelman koontiversion numero: {0}
19
+ CommandLine.8=Aloituskansio: {0}
20
+ CommandLine.9=Ei m\u00e4\u00e4ritetty.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application -palvelin:
23
+ GenericResponseHandler.11=Vastauksen tila: {0}
24
+ GenericResponseHandler.12=Tekstiosan k\u00e4yt\u00f6ss\u00e4 oleva merkist\u00f6: {0}
25
+ GenericResponseHandler.13=Tekstiosan sis\u00e4lt\u00f6: {0}
26
+ GenericResponseHandler.14=Vastauksen tekstiosan j\u00e4sennys ep\u00e4onnistui.
27
+ ListCommand.10=Kohteen todennuksessa k\u00e4ytett\u00e4v\u00e4t valtuustiedot: {0}
28
+ ListCommand.23=N\u00e4enn\u00e4isportaalin nimi
29
+ ListCommand.24=WCM-projektin nimi
30
+ ListCommand.25=N\u00e4enn\u00e4isportaalin tunnus
31
+ ListCommand.26=WCM-sis\u00e4ll\u00f6n tunnus
32
+ ListCommand.27=Sivustoalueen polku
33
+ ListCommand.28=Sivustoalueen tunnus
34
+ ListCommand.37=Objektiluettelon muodostus onnistui.
35
+ ListCommand.38=Portaalin objektiluettelon loppu.
36
+ ListCommand.6=Portaalin objektiluettelon alku.
37
+ ListCommand.7=Luettelon URL-osoite: {0}
38
+ ListCommand.8=Kohteen todennustila: {0}
39
+ ListCommand.9=Kohteen todennusskeema: {0}
40
+ Logger.0={0} ({1} tavua)
41
+ Logger.10=K\u00e4yt\u00f6ss\u00e4 olevat kokoonpano-ominaisuudet: {0}
42
+ Logger.16=Java-ymp\u00e4rist\u00f6: {0}
43
+ Logger.22=Arkistotietovirta ({0} tavua {1} tiedostossa): {2}
44
+ Logger.24=Tuntematon
45
+ Logger.26=Arkistotiedosto: {0}({1} tavua {2} tiedostossa) {3}
46
+ Logger.4=Kirjaus k\u00e4ytt\u00e4\u00e4 oletusarvoa vakiovirhe.
47
+ PushCommand.10=WCM-sis\u00e4ll\u00f6n otsikko: {0}
48
+ PushCommand.11=HTML-p\u00e4\u00e4tiedosto: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Mukautettu POST-parametri: {0} = {1}
51
+ PushCommand.18=Kohteen todennustila: {0}
52
+ PushCommand.19=Kohteen todennusskeema: {0}
53
+ PushCommand.20=Kohteen todennuksessa k\u00e4ytett\u00e4v\u00e4t valtuustiedot: {0}
54
+ PushCommand.3=HTML-p\u00e4\u00e4tiedosto:
55
+ PushCommand.31=Sis\u00e4ll\u00f6n v\u00e4litys onnistui.
56
+ PushCommand.32=Sis\u00e4ll\u00f6n v\u00e4litys portaaliin p\u00e4\u00e4ttyi.
57
+ PushCommand.4=Sis\u00e4ll\u00f6n v\u00e4litys portaaliin alkaa.
58
+ PushCommand.5=V\u00e4lityksen URL-osoite: {0}
59
+ PushCommand.6=N\u00e4enn\u00e4isportaalin konteksti: {0}
60
+ PushCommand.7=Projektin konteksti: {0}
61
+ PushCommand.8=WCM-sis\u00e4ll\u00f6n tunnus: {0}
62
+ PushCommand.9=WCM-sis\u00e4ll\u00f6n polku: {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=Utilisateur :
7
+ AutoAuthHandler.5=Mot de passe :
8
+ AutoAuthHandler.6=URL d''authentification : {0}
9
+ AutoAuthHandler.8=L'authentification a abouti.
10
+ BasicAuthHandler.0=Utilisateur :
11
+ BasicAuthHandler.1=Mot de passe :
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Ouvrez l'URL suivante dans un navigateur pour afficher la documentation de l'utilitaire de ligne de commande de Script Application.
14
+ CommandLine.20=La commande a abouti. Pour plus d''informations, voir le journal : ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Version de l''utilitaire de ligne de commande de Script Application : {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Num\u00e9ro de version de l''utilitaire de ligne de commande de Script Application : {0}
19
+ CommandLine.8=Dossier de base : {0}
20
+ CommandLine.9=Non sp\u00e9cifi\u00e9.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Serveur Script Application :
23
+ GenericResponseHandler.11=Statut de r\u00e9ponse : {0}
24
+ GenericResponseHandler.12=Jeu de caract\u00e8res de corps effectif : {0}
25
+ GenericResponseHandler.13=Contenu de corps : {0}
26
+ GenericResponseHandler.14=Echec de l'analyse syntaxique du corps de r\u00e9ponse.
27
+ ListCommand.10=Donn\u00e9es d''authentification cible : {0}
28
+ ListCommand.23=Nom de portail virtuel
29
+ ListCommand.24=Nom de projet WCM
30
+ ListCommand.25=ID de portail virtuel
31
+ ListCommand.26=ID de contenu WCM
32
+ ListCommand.27=Chemin de zone de site
33
+ ListCommand.28=ID de zone de site
34
+ ListCommand.37=La liste d'objets a abouti.
35
+ ListCommand.38=Fin de liste d'objets sur le portail.
36
+ ListCommand.6=D\u00e9but de liste d'objets sur le portail.
37
+ ListCommand.7=URL de liste : {0}
38
+ ListCommand.8=Etat d''authentification cible : {0}
39
+ ListCommand.9=Sch\u00e9ma d''authentification cible : {0}
40
+ Logger.0={0} ({1} octets)
41
+ Logger.10=Propri\u00e9t\u00e9s de configuration effective : {0}
42
+ Logger.16=Environnement Java : {0}
43
+ Logger.22=Flux d''archivage ({0} octets dans {1} fichiers) : {2}
44
+ Logger.24=Inconnu
45
+ Logger.26=Fichier archive : {0} ({1} octets dans {2} fichiers) {3}
46
+ Logger.4=Par d\u00e9faut, la consignation s'effectue dans l'erreur standard.
47
+ PushCommand.10=Titre de contenu WCM : {0}
48
+ PushCommand.11=Fichier HTML principal : {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Param\u00e8tre POST personnalis\u00e9 : {0} = {1}
51
+ PushCommand.18=Etat d''authentification cible : {0}
52
+ PushCommand.19=Sch\u00e9ma d''authentification cible : {0}
53
+ PushCommand.20=Donn\u00e9es d''authentification cible : {0}
54
+ PushCommand.3=Fichier HTML principal :
55
+ PushCommand.31=Le push de contenu a abouti.
56
+ PushCommand.32=Fin de push de contenu sur le portail.
57
+ PushCommand.4=D\u00e9but de push de contenu sur le portail.
58
+ PushCommand.5=URL de push : {0}
59
+ PushCommand.6=Contexte de portail virtuel : {0}
60
+ PushCommand.7=Contexte de projet : {0}
61
+ PushCommand.8=ID de contenu WCM : {0}
62
+ PushCommand.9=Chemin de contenu 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=Korisnik:
7
+ AutoAuthHandler.5=Lozinka:
8
+ AutoAuthHandler.6=URL za provjeru identiteta: {0}
9
+ AutoAuthHandler.8=Uspje\u0161na provjera identiteta.
10
+ BasicAuthHandler.0=Korisnik:
11
+ BasicAuthHandler.1=Lozinka:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Otvorite sljede\u0107i URL u pretra\u017eitelju za pregled dokumentacije pomo\u0107nog programa Script Application.
14
+ CommandLine.20=Naredba je uspjela. Pogledajte dnevnik za vi\u0161e detalja: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Verzija pomo\u0107nog programa Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Broj izgradnje pomo\u0107nog programa Script Application: {0}
19
+ CommandLine.8=Po\u010detni folder: {0}
20
+ CommandLine.9=Nije specificirano.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application poslu\u017eitelj:
23
+ GenericResponseHandler.11=Status odgovora: {0}
24
+ GenericResponseHandler.12=Skup znakova za tijelo: {0}
25
+ GenericResponseHandler.13=Sadr\u017eaj tijela: {0}
26
+ GenericResponseHandler.14=Sintakti\u010dka analiza tijela nije uspjela.
27
+ ListCommand.10=Vjerodajnice za ciljanu provjeru identiteta: {0}
28
+ ListCommand.23=Naziv virtualnog portala
29
+ ListCommand.24=Naziv WCM projekta
30
+ ListCommand.25=ID virtualnog portala
31
+ ListCommand.26=ID WCM sadr\u017eaja
32
+ ListCommand.27=Staza podru\u010dja sjedi\u0161ta
33
+ ListCommand.28=ID podru\u010dja sjedi\u0161ta
34
+ ListCommand.37=Lista objekta je uspjela.
35
+ ListCommand.38=Kraj liste objekata na portalu.
36
+ ListCommand.6=Zapo\u010dni listu objekata na portalu.
37
+ ListCommand.7=URL liste: {0}
38
+ ListCommand.8=Ciljno stanje provjere identiteta: {0}
39
+ ListCommand.9=Ciljna shema provjere identiteta: {0}
40
+ Logger.0={0} ({1} bajtova)
41
+ Logger.10=U\u010dinkovita konfiguracijska svojstva: {0}
42
+ Logger.16=Java okolina: {0}
43
+ Logger.22=Tok arhive ({0} bajtova u {1} datoteka): {2}
44
+ Logger.24=Nepoznato
45
+ Logger.26=Datoteka arhive: {0}({1} bajtova u {2} datoteka) {3}
46
+ Logger.4=U dnevnik se zapisuje standardna gre\u0161ka.
47
+ PushCommand.10=Naslov WCM sadr\u017eaja: {0}
48
+ PushCommand.11=Glavna HTML datoteka: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Prilago\u0111eni POST parametar: {0} = {1}
51
+ PushCommand.18=Ciljno stanje provjere identiteta: {0}
52
+ PushCommand.19=Ciljna shema provjere identiteta: {0}
53
+ PushCommand.20=Vjerodajnice za ciljanu provjeru identiteta: {0}
54
+ PushCommand.3=Glavna HTML datoteka:
55
+ PushCommand.31=Uspje\u0161an push sadr\u017eaja.
56
+ PushCommand.32=Zavr\u0161i push sadr\u017eaja na portal.
57
+ PushCommand.4=Zapo\u010dni push sadr\u017eaja na portal.
58
+ PushCommand.5=URL za push: {0}
59
+ PushCommand.6=Kontekst virtualnog portala: {0}
60
+ PushCommand.7=Kontekst projekta: {0}
61
+ PushCommand.8=ID WCM sadr\u017eaja: {0}
62
+ PushCommand.9=Staza WCM sadr\u017eaja: {0}
63
+