@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=Utilizador:
7
+ AutoAuthHandler.5=Palavra-passe:
8
+ AutoAuthHandler.6=URL de autentica\u00e7\u00e3o: {0}
9
+ AutoAuthHandler.8=Autentica\u00e7\u00e3o com \u00eaxito.
10
+ BasicAuthHandler.0=Utilizador:
11
+ BasicAuthHandler.1=Palavra-passe:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Abra o seguinte URL num navegador para visualizar a documenta\u00e7\u00e3o do utilit\u00e1rio de linha de comandos da Script Application.
14
+ CommandLine.20=O comando foi bem sucedido. Consulte o registo para obter detalhes: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Vers\u00e3o do utilit\u00e1rio de linha de comandos da Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=N\u00famero da compila\u00e7\u00e3o do utilit\u00e1rio de linha de comandos da Script Application: {0}
19
+ CommandLine.8=Pasta inicial: {0}
20
+ CommandLine.9=N\u00e3o especificado.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Servidor da Script Application:
23
+ GenericResponseHandler.11=Estado de resposta: {0}
24
+ GenericResponseHandler.12=Conjunto de caracteres do corpo em vigor: {0}
25
+ GenericResponseHandler.13=Conte\u00fado do corpo: {0}
26
+ GenericResponseHandler.14=Falha ao analisar corpo da resposta.
27
+ ListCommand.10=Credenciais de autentica\u00e7\u00e3o de destino: {0}
28
+ ListCommand.23=Nome do portal virtual
29
+ ListCommand.24=Nome do projecto do WCM
30
+ ListCommand.25=ID do portal virtual
31
+ ListCommand.26=ID de conte\u00fado do WCM
32
+ ListCommand.27=Caminho da \u00e1rea do s\u00edtio
33
+ ListCommand.28=ID da \u00e1rea do s\u00edtio
34
+ ListCommand.37=Lista de objectos bem sucedida.
35
+ ListCommand.38=Termine a lista de objectos no Portal.
36
+ ListCommand.6=Inicie a lista de objectos no Portal.
37
+ ListCommand.7=Lista de URLs: {0}
38
+ ListCommand.8=Estado de autentica\u00e7\u00e3o de destino: {0}
39
+ ListCommand.9=Esquema de autentica\u00e7\u00e3o de destino: {0}
40
+ Logger.0={0} ({1} bytes)
41
+ Logger.10=Propriedades da configura\u00e7\u00e3o em vigor: {0}
42
+ Logger.16=Ambiente Java: {0}
43
+ Logger.22=Sequ\u00eancia de arquivo ({0} bytes em {1} ficheiros): {2}
44
+ Logger.24=Desconhecido(a)
45
+ Logger.26=Ficheiro de arquivo: {0}({1} bytes em {2} ficheiros) {3}
46
+ Logger.4=A predefini\u00e7\u00e3o do registo ser\u00e1 a sa\u00edda de erro padr\u00e3o.
47
+ PushCommand.10=T\u00edtulo de conte\u00fado do WCM: {0}
48
+ PushCommand.11=Ficheiro HTML principal: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Par\u00e2metro POST personalizado: {0} = {1}
51
+ PushCommand.18=Estado de autentica\u00e7\u00e3o de destino: {0}
52
+ PushCommand.19=Esquema de autentica\u00e7\u00e3o de destino: {0}
53
+ PushCommand.20=Credenciais de autentica\u00e7\u00e3o de destino: {0}
54
+ PushCommand.3=Ficheiro HTML principal:
55
+ PushCommand.31=Envio de conte\u00fado bem sucedido.
56
+ PushCommand.32=Terminado o envio de conte\u00fado para o Portal.
57
+ PushCommand.4=In\u00edcio do envio de conte\u00fado para o Portal.
58
+ PushCommand.5=URL de envio: {0}
59
+ PushCommand.6=Contexto do portal virtual: {0}
60
+ PushCommand.7=Contexto do projecto: {0}
61
+ PushCommand.8=ID de conte\u00fado do WCM: {0}
62
+ PushCommand.9=Caminho de conte\u00fado do 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=Usu\u00e1rio:
7
+ AutoAuthHandler.5=Senha:
8
+ AutoAuthHandler.6=URL de autentica\u00e7\u00e3o: {0}
9
+ AutoAuthHandler.8=A autentica\u00e7\u00e3o foi bem-sucedida.
10
+ BasicAuthHandler.0=Usu\u00e1rio:
11
+ BasicAuthHandler.1=Senha:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Abra a URL a seguir em um navegador para visualizar a documenta\u00e7\u00e3o do utilit\u00e1rio de linha de comandos do Script Application.
14
+ CommandLine.20=Comando bem-sucedido. Consulte o log para obter detalhes: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Vers\u00e3o do utilit\u00e1rio de linha de comandos do Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=N\u00famero da constru\u00e7\u00e3o do utilit\u00e1rio de linha de comandos do Script Application: {0}
19
+ CommandLine.8=Pasta inicial: {0}
20
+ CommandLine.9=N\u00e3o especificado.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application Server:
23
+ GenericResponseHandler.11=Status de resposta: {0}
24
+ GenericResponseHandler.12=Conjunto de caracteres efetivos do corpo: {0}
25
+ GenericResponseHandler.13=Conte\u00fado do corpo: {0}
26
+ GenericResponseHandler.14=An\u00e1lise sint\u00e1tica do corpo de resposta com falha.
27
+ ListCommand.10=Credenciais de autentica\u00e7\u00e3o alvo: {0}
28
+ ListCommand.23=Nome do Portal Virtual
29
+ ListCommand.24=Nome do Projeto WCM
30
+ ListCommand.25=Id do Portal Virtual
31
+ ListCommand.26=ID de Conte\u00fado WCM
32
+ ListCommand.27=Caminho da \u00e1rea de site
33
+ ListCommand.28=ID da \u00e1rea de site
34
+ ListCommand.37=A lista de objetos foi bem-sucedida.
35
+ ListCommand.38=Lista final de objetos no Portal.
36
+ ListCommand.6=Lista inicial de objetos no Portal.
37
+ ListCommand.7=URL da lista: {0}
38
+ ListCommand.8=Estado de autentica\u00e7\u00e3o alvo: {0}
39
+ ListCommand.9=Esquema de autentica\u00e7\u00e3o alvo: {0}
40
+ Logger.0={0} ({1} bytes)
41
+ Logger.10=Propriedades de configura\u00e7\u00e3o em vigor: {0}
42
+ Logger.16=Ambiente Java: {0}
43
+ Logger.22=Fluxo de archive ({0} bytes em {1} arquivos): {2}
44
+ Logger.24=Desconhecida
45
+ Logger.26=Archive: {0}({1} bytes em {2} arquivos) {3}
46
+ Logger.4=A cria\u00e7\u00e3o de log padronizar\u00e1 o erro padr\u00e3o.
47
+ PushCommand.10=T\u00edtulo de Conte\u00fado WCM: {0}
48
+ PushCommand.11=Arquivo HTML principal: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Par\u00e2metro POST customizado: {0} = {1}
51
+ PushCommand.18=Estado de autentica\u00e7\u00e3o alvo: {0}
52
+ PushCommand.19=Esquema de autentica\u00e7\u00e3o alvo: {0}
53
+ PushCommand.20=Credenciais de autentica\u00e7\u00e3o alvo: {0}
54
+ PushCommand.3=Arquivo HTML principal:
55
+ PushCommand.31=Envio de conte\u00fado por push bem-sucedido.
56
+ PushCommand.32=Envio de conte\u00fado final por push para o Portal.
57
+ PushCommand.4=Envio de conte\u00fado inicial por push para o Portal.
58
+ PushCommand.5=Push URL: {0}
59
+ PushCommand.6=Contexto do Portal Virtual: {0}
60
+ PushCommand.7=Contexto do Projeto: {0}
61
+ PushCommand.8=ID do conte\u00fado WCM: {0}
62
+ PushCommand.9=Caminho do conte\u00fado 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=Utilizator:
7
+ AutoAuthHandler.5=Parol\u0103:
8
+ AutoAuthHandler.6=URL de autentificare: {0}
9
+ AutoAuthHandler.8=Autentificarea s-a f\u0103cut cu succes.
10
+ BasicAuthHandler.0=Utilizator:
11
+ BasicAuthHandler.1=Parol\u0103:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Deschide\u0163i urm\u0103torul URL \u00eentr-un browser pentru a vizualiza documenta\u0163ia de utilitar Script Application.
14
+ CommandLine.20=Comanda s-a efectuat cu succes. Vede\u0163i fi\u015fierul istoric pentru detalii: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Versiunea de utilitar linie de comand\u0103 Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Num\u0103rul build-ului utilitarului liniei de comand\u0103 Script Application: {0}
19
+ CommandLine.8=Folder home: {0}
20
+ CommandLine.9=Nu a fost specificat.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Server Script Application:
23
+ GenericResponseHandler.11=Stare r\u0103spuns : {0}
24
+ GenericResponseHandler.12=Setul efectiv de caractere al corpului: {0}
25
+ GenericResponseHandler.13=Con\u0163inut corp : {0}
26
+ GenericResponseHandler.14=A e\u015fuat parsarea corpului de r\u0103spuns.
27
+ ListCommand.10=Acredit\u0103rile de autentificare \u0163int\u0103: {0}
28
+ ListCommand.23=Nume de portal virtual
29
+ ListCommand.24=Nume de proiect WCM
30
+ ListCommand.25=ID de portal virtual
31
+ ListCommand.26=ID con\u0163inut WCM
32
+ ListCommand.27=Cale zon\u0103 de site
33
+ ListCommand.28=ID zon\u0103 de site
34
+ ListCommand.37=Lista de obiecte a avut succes.
35
+ ListCommand.38=Terminarea listei de obiecte pe Portal.
36
+ ListCommand.6=Se \u00eencepe lista de obiecte pe Portal.
37
+ ListCommand.7=URL list\u0103: {0}
38
+ ListCommand.8=Starea de autentificare \u0163int\u0103: {0}
39
+ ListCommand.9=Schema de autentificare \u0163int\u0103: {0}
40
+ Logger.0={0} ({1} octe\u0163i)
41
+ Logger.10=Propriet\u0103\u0163i efective de configurare: {0}
42
+ Logger.16=Mediu Java: {0}
43
+ Logger.22=Flux de arhiv\u0103 ({0} octe\u0163i \u00een {1} fi\u015fiere): {2}
44
+ Logger.24=Necunoscut
45
+ Logger.26=Fi\u015fier de arhiv\u0103: {0}({1} octe\u0163i \u00een {2} fi\u015fiere) {3}
46
+ Logger.4=Jurnalizarea va fi implicit la eroarea standard.
47
+ PushCommand.10=Titlu de con\u0163inut WCM: {0}
48
+ PushCommand.11=Fi\u015fier HTML principal: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Parametru POST personalizat: {0} = {1}
51
+ PushCommand.18=Starea de autentificare \u0163int\u0103: {0}
52
+ PushCommand.19=Schema de autentificare \u0163int\u0103: {0}
53
+ PushCommand.20=Acredit\u0103rile de autentificare \u0163int\u0103: {0}
54
+ PushCommand.3=Fi\u015fier HTML principal:
55
+ PushCommand.31=\u00cempingerea con\u0163inutului a avut succes.
56
+ PushCommand.32=Terminarea \u00eempingerii con\u0163inutului la Portal.
57
+ PushCommand.4=Se \u00eencepe \u00eempingerea (push) con\u0163inutului c\u0103tre Portal.
58
+ PushCommand.5=URL de \u00eempingere: {0}
59
+ PushCommand.6=Context de portal virtual: {0}
60
+ PushCommand.7=Context de proiect: {0}
61
+ PushCommand.8=ID con\u0163inut WCM: {0}
62
+ PushCommand.9=Cale de con\u0163inut 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=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:
7
+ AutoAuthHandler.5=\u041f\u0430\u0440\u043e\u043b\u044c:
8
+ AutoAuthHandler.6=URL \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
9
+ AutoAuthHandler.8=\u0421\u0431\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438.
10
+ BasicAuthHandler.0=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:
11
+ BasicAuthHandler.1=\u041f\u0430\u0440\u043e\u043b\u044c:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u041e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 URL \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0443\u0442\u0438\u043b\u0438\u0442\u044b \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 Script Application.
14
+ CommandLine.20=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430. \u0411\u043e\u043b\u0435\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0435: {0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=\u0412\u0435\u0440\u0441\u0438\u044f \u0443\u0442\u0438\u043b\u0438\u0442\u044b \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438 \u0443\u0442\u0438\u043b\u0438\u0442\u044b \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 Script Application: {0}
19
+ CommandLine.8=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u043f\u0430\u043f\u043a\u0430: {0}
20
+ CommandLine.9=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application Server:
23
+ GenericResponseHandler.11=\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0442\u0432\u0435\u0442\u0430: {0}
24
+ GenericResponseHandler.12=\u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u043d\u0430\u0431\u043e\u0440 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0442\u0435\u043b\u0430: {0}
25
+ GenericResponseHandler.13=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0442\u0435\u043b\u0430: {0}
26
+ GenericResponseHandler.14=\u041e\u0448\u0438\u0431\u043a\u0430 \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0442\u0435\u043b\u0430 \u043e\u0442\u0432\u0435\u0442\u0430.
27
+ ListCommand.10=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
28
+ ListCommand.23=\u0418\u043c\u044f \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430\u043b\u0430
29
+ ListCommand.24=\u0418\u043c\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0430 WCM
30
+ ListCommand.25=\u0418\u0414 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430\u043b\u0430
31
+ ListCommand.26=\u0418\u0414 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 WCM
32
+ ListCommand.27=\u041f\u0443\u0442\u044c \u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0441\u0430\u0439\u0442\u0430
33
+ ListCommand.28=\u0418\u0414 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0441\u0430\u0439\u0442\u0430
34
+ ListCommand.37=\u0421\u043f\u0438\u0441\u043e\u043a \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d.
35
+ ListCommand.38=\u041a\u043e\u043d\u0435\u0446 \u0441\u043f\u0438\u0441\u043a\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u0432 \u043f\u043e\u0440\u0442\u0430\u043b\u0435.
36
+ ListCommand.6=\u041d\u0430\u0447\u0430\u043b\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u0432 \u043f\u043e\u0440\u0442\u0430\u043b\u0435.
37
+ ListCommand.7=URL \u0441\u043f\u0438\u0441\u043a\u0430: {0}
38
+ ListCommand.8=\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
39
+ ListCommand.9=\u0421\u0445\u0435\u043c\u0430 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
40
+ Logger.0={0} ({1} \u0431\u0430\u0439\u0442\u043e\u0432)
41
+ Logger.10=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438: {0}
42
+ Logger.16=\u0421\u0440\u0435\u0434\u0430 Java: {0}
43
+ Logger.22=\u041f\u043e\u0442\u043e\u043a \u0430\u0440\u0445\u0438\u0432\u043e\u0432 ({0} \u0431\u0430\u0439\u0442\u043e\u0432 \u0432 {1} \u0444\u0430\u0439\u043b\u0430\u0445): {2}
44
+ Logger.24=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e
45
+ Logger.26=\u0424\u0430\u0439\u043b \u0430\u0440\u0445\u0438\u0432\u0430: {0}({1} \u0431\u0430\u0439\u0442\u043e\u0432 \u0432 {2} \u0444\u0430\u0439\u043b\u0430\u0445) {3}
46
+ Logger.4=\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0438\u0441\u0430\u043d \u0432 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u043e\u0448\u0438\u0431\u043e\u043a.
47
+ PushCommand.10=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 WCM: {0}
48
+ PushCommand.11=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0444\u0430\u0439\u043b HTML: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 POST: {0} = {1}
51
+ PushCommand.18=\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
52
+ PushCommand.19=\u0421\u0445\u0435\u043c\u0430 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
53
+ PushCommand.20=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438: {0}
54
+ PushCommand.3=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0444\u0430\u0439\u043b HTML:
55
+ PushCommand.31=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430.
56
+ PushCommand.32=\u041a\u043e\u043d\u0435\u0446 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0432 \u043f\u043e\u0440\u0442\u0430\u043b.
57
+ PushCommand.4=\u041d\u0430\u0447\u0430\u043b\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0432 \u043f\u043e\u0440\u0442\u0430\u043b.
58
+ PushCommand.5=URL \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: {0}
59
+ PushCommand.6=\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430\u043b\u0430: {0}
60
+ PushCommand.7=\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u043f\u0440\u043e\u0435\u043a\u0442\u0430: {0}
61
+ PushCommand.8=\u0418\u0414 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 WCM: {0}
62
+ PushCommand.9=\u041f\u0443\u0442\u044c \u043a \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0430\u043c 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=Pou\u017e\u00edvate\u013e:
7
+ AutoAuthHandler.5=Heslo:
8
+ AutoAuthHandler.6=Autentifika\u010dn\u00e1 adresa URL: {0}
9
+ AutoAuthHandler.8=Autentifik\u00e1cia bola \u00faspe\u0161n\u00e1.
10
+ BasicAuthHandler.0=Pou\u017e\u00edvate\u013e:
11
+ BasicAuthHandler.1=Heslo:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Ak chcete zobrazi\u0165 dokument\u00e1ciu k pomocn\u00e9mu programu pr\u00edkazov\u00e9ho riadka Script Application, otvorte nasleduj\u00facu adresu URL v prehliada\u010di.
14
+ CommandLine.20=Pr\u00edkaz bol \u00faspe\u0161n\u00fd. Pozrite si podrobnosti v protokole: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Verzia pomocn\u00e9ho programu pr\u00edkazov\u00e9ho riadka Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u010c\u00edslo zostavenia pomocn\u00e9ho programu pr\u00edkazov\u00e9ho riadka Script Application: {0}
19
+ CommandLine.8=Domovsk\u00e1 zlo\u017eka: {0}
20
+ CommandLine.9=Nezadan\u00e9.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Server Script Application:
23
+ GenericResponseHandler.11=Stav odpovede: {0}
24
+ GenericResponseHandler.12=\u00da\u010dinn\u00e1 sada znakov tela: {0}
25
+ GenericResponseHandler.13=Obsah tela: {0}
26
+ GenericResponseHandler.14=Zlyhalo analyzovanie tela odpovede.
27
+ ListCommand.10=Cie\u013eov\u00e9 autentifika\u010dn\u00e9 prihlasovacie \u00fadaje: {0}
28
+ ListCommand.23=N\u00e1zov virtu\u00e1lneho port\u00e1lu
29
+ ListCommand.24=N\u00e1zov projektu WCM
30
+ ListCommand.25=ID virtu\u00e1lneho port\u00e1lu
31
+ ListCommand.26=ID obsahu WCM
32
+ ListCommand.27=Cesta k oblasti lokality
33
+ ListCommand.28=ID oblasti lokality
34
+ ListCommand.37=Zoznam objektov bol \u00faspe\u0161n\u00fd.
35
+ ListCommand.38=Zoznam koncov\u00fdch objektov v port\u00e1li.
36
+ ListCommand.6=Zoznam za\u010diato\u010dn\u00fdch objektov v port\u00e1li.
37
+ ListCommand.7=Adresa URL zoznamu: {0}
38
+ ListCommand.8=Cie\u013eov\u00fd stav autentifik\u00e1cia: {0}
39
+ ListCommand.9=Cie\u013eov\u00e1 autentifika\u010dn\u00e1 sch\u00e9ma: {0}
40
+ Logger.0={0} ({1} bajtov)
41
+ Logger.10=\u00da\u010dinn\u00e9 konfigura\u010dn\u00e9 vlastnosti: {0}
42
+ Logger.16=Prostredie Java: {0}
43
+ Logger.22=Pr\u00fad arch\u00edvu ({0} bajtov v {1} s\u00faboroch): {2}
44
+ Logger.24=Nezn\u00e1my
45
+ Logger.26=Arch\u00edvny s\u00fabor: {0}({1} bajtov v {2} s\u00faboroch) {3}
46
+ Logger.4=Protokolovanie pou\u017eije \u0161tandardn\u00fa chybu.
47
+ PushCommand.10=Nadpis obsahu WCM: {0}
48
+ PushCommand.11=Hlavn\u00fd s\u00fabor HTML: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Vlastn\u00fd parameter POST: {0} = {1}
51
+ PushCommand.18=Cie\u013eov\u00fd stav autentifik\u00e1cia: {0}
52
+ PushCommand.19=Cie\u013eov\u00e1 autentifika\u010dn\u00e1 sch\u00e9ma: {0}
53
+ PushCommand.20=Cie\u013eov\u00e9 autentifika\u010dn\u00e9 prihlasovacie \u00fadaje: {0}
54
+ PushCommand.3=Hlavn\u00fd s\u00fabor HTML:
55
+ PushCommand.31=Vkladanie obsahu bolo \u00faspe\u0161n\u00e9.
56
+ PushCommand.32=Ukon\u010di\u0165 vkladanie obsahu do port\u00e1lu.
57
+ PushCommand.4=Za\u010da\u0165 vkladanie obsahu do port\u00e1lu.
58
+ PushCommand.5=Adresa URL vkladania: {0}
59
+ PushCommand.6=Kontext virtu\u00e1lneho 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=Uporabnik:
7
+ AutoAuthHandler.5=Geslo:
8
+ AutoAuthHandler.6=URL za overjanje: {0}
9
+ AutoAuthHandler.8=Overjanje je bilo uspe\u0161no.
10
+ BasicAuthHandler.0=Uporabnik:
11
+ BasicAuthHandler.1=Geslo:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Odprite naslednji URL v brskalniku, da si ogledate dokumentacijo pripomo\u010dka z ukazno vrstico Script Application.
14
+ CommandLine.20=Ukaz je bil uspe\u0161en. Za podrobnosti glejte dnevnik: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Razli\u010dica pripomo\u010dka z ukazno vrstico Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u0160tevilka gradnje pripomo\u010dka z ukazno vrstico Script Application: {0}
19
+ CommandLine.8=Doma\u010da mapa: {0}
20
+ CommandLine.9=Ni podano.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Stre\u017enik Script Application:
23
+ GenericResponseHandler.11=Status odgovora: {0}
24
+ GenericResponseHandler.12=Nabor znakov besedila v veljavi: {0}
25
+ GenericResponseHandler.13=Vsebina telesa: {0}
26
+ GenericResponseHandler.14=Raz\u010dlenjevanje telesa odgovora ni uspelo.
27
+ ListCommand.10=Ciljne poverilnice za overjanje: {0}
28
+ ListCommand.23=Ime navideznega portala
29
+ ListCommand.24=Ime projekta WCM
30
+ ListCommand.25=ID navideznega portala
31
+ ListCommand.26=ID vsebine WCM
32
+ ListCommand.27=Pot do podro\u010dja spletnega mesta
33
+ ListCommand.28=ID podro\u010dja spletnega mesta
34
+ ListCommand.37=Seznam objektov je uspel.
35
+ ListCommand.38=Kon\u010daj seznam objektov v portalu.
36
+ ListCommand.6=Za\u010dni seznam objektov v portalu.
37
+ ListCommand.7=URL seznama: {0}
38
+ ListCommand.8=Ciljno stanje za overjanje: {0}
39
+ ListCommand.9=Ciljna shema za overjanje: {0}
40
+ Logger.0={0} ({1} bajtov)
41
+ Logger.10=Veljavne konfiguracijske lastnosti: {0}
42
+ Logger.16=Okolje Java: {0}
43
+ Logger.22=Tok arhiva ({0} bajtov v {1} datotekah): {2}
44
+ Logger.24=Neznano
45
+ Logger.26=Arhivska datoteka: {0}({1} bajtov {2} datotekah) {3}
46
+ Logger.4=Privzetek za bele\u017eenje bo standardna napaka.
47
+ PushCommand.10=Naslov vsebine WCM: {0}
48
+ PushCommand.11=Glavna datoteka HTML: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Parameter POST po meri: {0} = {1}
51
+ PushCommand.18=Ciljno stanje za overjanje: {0}
52
+ PushCommand.19=Ciljna shema za overjanje: {0}
53
+ PushCommand.20=Ciljne poverilnice za overjanje: {0}
54
+ PushCommand.3=Glavna datoteka HTML:
55
+ PushCommand.31=Potiskanje vsebine je uspelo.
56
+ PushCommand.32=Kon\u010daj potiskanje vsebine v Portal.
57
+ PushCommand.4=Za\u010dni potiskanje vsebine v Portal.
58
+ PushCommand.5=URL za potiskanje: {0}
59
+ PushCommand.6=Kontekst navideznega portala: {0}
60
+ PushCommand.7=Kontekst projekta: {0}
61
+ PushCommand.8=ID vsebine WCM: {0}
62
+ PushCommand.9=Pot do vsebine 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=Anv\u00e4ndare:
7
+ AutoAuthHandler.5=L\u00f6senord:
8
+ AutoAuthHandler.6=Autentiserings-URL: {0}
9
+ AutoAuthHandler.8=Autentiseringen \u00e4r klar.
10
+ BasicAuthHandler.0=Anv\u00e4ndare:
11
+ BasicAuthHandler.1=L\u00f6senord:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u00d6ppna f\u00f6ljande URL i en webbl\u00e4sare f\u00f6r att visa dokumentationen f\u00f6r Script Application-kommandoradsverktyget.
14
+ CommandLine.20=Kommandot genomf\u00f6rdes. Mer information finns i loggen: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Script Application-kommandoradsverktyg, version: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Script Application-kommandoradsverktyg, byggnummer: {0}
19
+ CommandLine.8=Installationsmapp: {0}
20
+ CommandLine.9=Inte angivet.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application-server:
23
+ GenericResponseHandler.11=Svarsstatus: {0}
24
+ GenericResponseHandler.12=Verklig teckentabell f\u00f6r texten: {0}
25
+ GenericResponseHandler.13=Textinneh\u00e5ll: {0}
26
+ GenericResponseHandler.14=Tolkning av svarstexten misslyckades.
27
+ ListCommand.10=Inloggningsuppgifter f\u00f6r autentisering p\u00e5 m\u00e5let: {0}
28
+ ListCommand.23=Den virtuella portalens namn
29
+ ListCommand.24=WCM-projektnamn
30
+ ListCommand.25=Den virtuella portalens ID
31
+ ListCommand.26=WCM-inneh\u00e5llets ID
32
+ ListCommand.27=S\u00f6kv\u00e4g till platsomr\u00e5de
33
+ ListCommand.28=ID f\u00f6r platsomr\u00e5de
34
+ ListCommand.37=Objektlistan genomf\u00f6rdes.
35
+ ListCommand.38=Avsluta objektlista i portal.
36
+ ListCommand.6=Starta objektlista i portal.
37
+ ListCommand.7=List-URL: {0}
38
+ ListCommand.8=Autentiseringsl\u00e4ge f\u00f6r m\u00e5let: {0}
39
+ ListCommand.9=Autentiseringsschema f\u00f6r m\u00e5let: {0}
40
+ Logger.0={0} ({1} byte)
41
+ Logger.10=Verkliga konfigurationsegenskaper: {0}
42
+ Logger.16=Java-milj\u00f6: {0}
43
+ Logger.22=Arkivstr\u00f6m ({0} byte i {1} filer): {2}
44
+ Logger.24=Ok\u00e4nd
45
+ Logger.26=Arkivfil: {0}({1} byte i {2} filer) {3}
46
+ Logger.4=Standardv\u00e4rdet fel anv\u00e4nds f\u00f6r loggning.
47
+ PushCommand.10=WCM-inneh\u00e5llstitel: {0}
48
+ PushCommand.11=HTML-huvudfil: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=Anpassad POST-parameter: {0} = {1}
51
+ PushCommand.18=Autentiseringsl\u00e4ge f\u00f6r m\u00e5let: {0}
52
+ PushCommand.19=Autentiseringsschema f\u00f6r m\u00e5let: {0}
53
+ PushCommand.20=Inloggningsuppgifter f\u00f6r autentisering f\u00f6r m\u00e5let: {0}
54
+ PushCommand.3=HTML-huvudfil:
55
+ PushCommand.31=PUSH f\u00f6r inneh\u00e5ll genomf\u00f6rdes.
56
+ PushCommand.32=Avsluta PUSH av inneh\u00e5ll till portalen.
57
+ PushCommand.4=Starta PUSH av inneh\u00e5ll till portal.
58
+ PushCommand.5=PUSH-URL: {0}
59
+ PushCommand.6=Virtuell portalkontext: {0}
60
+ PushCommand.7=Projektkontext: {0}
61
+ PushCommand.8=WCM-inneh\u00e5lls-ID: {0}
62
+ PushCommand.9=WCM-inneh\u00e5llss\u00f6kv\u00e4g: {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=\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49:
7
+ AutoAuthHandler.5=\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19:
8
+ AutoAuthHandler.6=URL \u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19: {0}
9
+ AutoAuthHandler.8=\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e25\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27
10
+ BasicAuthHandler.0=\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49:
11
+ BasicAuthHandler.1=\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=\u0e40\u0e1b\u0e34\u0e14 URL \u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49\u0e43\u0e19\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e14\u0e39\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d\u0e22\u0e39\u0e17\u0e34\u0e25\u0e35\u0e15\u0e35\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e23\u0e31\u0e1a\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 Script Application
14
+ CommandLine.20=\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e25\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27 \u0e42\u0e1b\u0e23\u0e14\u0e14\u0e39\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14: ({0})
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e0a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e22\u0e39\u0e17\u0e34\u0e25\u0e35\u0e15\u0e35\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e23\u0e31\u0e1a\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 Script Application: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1a\u0e34\u0e27\u0e14\u0e4c\u0e02\u0e2d\u0e07\u0e22\u0e39\u0e17\u0e34\u0e25\u0e35\u0e15\u0e35\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e23\u0e31\u0e1a\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 Script Application: {0}
19
+ CommandLine.8=\u0e42\u0e1f\u0e25\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e42\u0e2e\u0e21: {0}
20
+ CommandLine.9=\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application Server:
23
+ GenericResponseHandler.11=\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e15\u0e2d\u0e1a\u0e01\u0e25\u0e31\u0e1a: {0}
24
+ GenericResponseHandler.12=\u0e0a\u0e38\u0e14\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1b\u0e23\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e1c\u0e25\u0e02\u0e2d\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21: {0}
25
+ GenericResponseHandler.13=\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21: {0}
26
+ GenericResponseHandler.14=\u0e01\u0e32\u0e23\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e04\u0e33\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e01\u0e32\u0e23\u0e15\u0e2d\u0e1a\u0e01\u0e25\u0e31\u0e1a\u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27
27
+ ListCommand.10=\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e23\u0e31\u0e1a\u0e23\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
28
+ ListCommand.23=\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25\u0e40\u0e2a\u0e21\u0e37\u0e2d\u0e19
29
+ ListCommand.24=\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c WCM
30
+ ListCommand.25=ID \u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25\u0e40\u0e2a\u0e21\u0e37\u0e2d\u0e19
31
+ ListCommand.26=ID \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e02\u0e2d\u0e07 WCM
32
+ ListCommand.27=\u0e1e\u0e32\u0e18\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e44\u0e0b\u0e15\u0e4c
33
+ ListCommand.28=ID \u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e44\u0e0b\u0e15\u0e4c
34
+ ListCommand.37=\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e47\u0e2d\u0e1a\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e25\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08
35
+ ListCommand.38=\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e47\u0e2d\u0e1a\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22\u0e1a\u0e19\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25
36
+ ListCommand.6=\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e47\u0e2d\u0e1a\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e19\u0e1a\u0e19\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25
37
+ ListCommand.7=\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 URL: {0}
38
+ ListCommand.8=\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
39
+ ListCommand.9=\u0e2a\u0e01\u0e35\u0e21\u0e32\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
40
+ Logger.0={0} ({1} \u0e44\u0e1a\u0e15\u0e4c)
41
+ Logger.10=\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e39\u0e40\u0e23\u0e0a\u0e31\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1b\u0e23\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e1c\u0e25: {0}
42
+ Logger.16=\u0e2a\u0e20\u0e32\u0e27\u0e30\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e41\u0e1a\u0e1a Java: {0}
43
+ Logger.22=\u0e2a\u0e15\u0e23\u0e35\u0e21\u0e01\u0e32\u0e23\u0e40\u0e01\u0e47\u0e1a\u0e16\u0e32\u0e27\u0e23 ({0} \u0e44\u0e1a\u0e15\u0e4c\u0e43\u0e19 {1} \u0e44\u0e1f\u0e25\u0e4c): {2}
44
+ Logger.24=\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01
45
+ Logger.26=\u0e44\u0e1f\u0e25\u0e4c\u0e40\u0e01\u0e47\u0e1a\u0e16\u0e32\u0e27\u0e23: {0}({1} \u0e44\u0e1a\u0e15\u0e4c\u0e43\u0e19 {2} \u0e44\u0e1f\u0e25\u0e4c) {3}
46
+ Logger.4=\u0e01\u0e32\u0e23\u0e25\u0e47\u0e2d\u0e01\u0e08\u0e30\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e48\u0e32\u0e14\u0e35\u0e1f\u0e2d\u0e25\u0e15\u0e4c\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19
47
+ PushCommand.10=\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32 WCM: {0}
48
+ PushCommand.11=\u0e44\u0e1f\u0e25\u0e4c HTML \u0e2b\u0e25\u0e31\u0e01: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c POST: {0} = {1}
51
+ PushCommand.18=\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
52
+ PushCommand.19=\u0e2a\u0e01\u0e35\u0e21\u0e32\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
53
+ PushCommand.20=\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e23\u0e31\u0e1a\u0e23\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e15\u0e31\u0e27\u0e15\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: {0}
54
+ PushCommand.3=\u0e44\u0e1f\u0e25\u0e4c\u0e2b\u0e25\u0e31\u0e01 HTML:
55
+ PushCommand.31=\u0e1e\u0e38\u0e0a\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e25\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08
56
+ PushCommand.32=\u0e1e\u0e38\u0e0a\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25
57
+ PushCommand.4=\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e01\u0e32\u0e23\u0e1e\u0e38\u0e0a\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25
58
+ PushCommand.5=\u0e1e\u0e38\u0e0a URL: {0}
59
+ PushCommand.6=\u0e1a\u0e23\u0e34\u0e1a\u0e17\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25\u0e40\u0e2a\u0e21\u0e37\u0e2d\u0e19: {0}
60
+ PushCommand.7=\u0e1a\u0e23\u0e34\u0e1a\u0e17\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c: {0}
61
+ PushCommand.8=ID \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32 WCM: {0}
62
+ PushCommand.9=\u0e1e\u0e32\u0e18\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32 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=Kullan\u0131c\u0131:
7
+ AutoAuthHandler.5=Parola:
8
+ AutoAuthHandler.6=Kimlik do\u011frulama URL adresi: {0}
9
+ AutoAuthHandler.8=Kimlik do\u011frulama i\u015flemi ba\u015far\u0131l\u0131 oldu.
10
+ BasicAuthHandler.0=Kullan\u0131c\u0131:
11
+ BasicAuthHandler.1=Parola:
12
+ # Do not translate the product name "Script Application" in the following string
13
+ CommandLine.1=Script Application komut sat\u0131r\u0131 yard\u0131mc\u0131 program\u0131 belgelerini g\u00f6rmek i\u00e7in a\u015fa\u011f\u0131daki URL adresini bir taray\u0131c\u0131da a\u00e7\u0131n.
14
+ CommandLine.20=Komut ba\u015far\u0131l\u0131 oldu. Ayr\u0131nt\u0131lar i\u00e7in g\u00fcnl\u00fc\u011fe bak\u0131n: ({0}).
15
+ # Do not translate the product name "Script Application" in the following string
16
+ CommandLine.7=Script Application komut sat\u0131r\u0131 yard\u0131mc\u0131 program\u0131 s\u00fcr\u00fcm\u00fc: {0}
17
+ # Do not translate the product name "Script Application" in the following string
18
+ CommandLine.BuildNumber=Script Application komut sat\u0131r\u0131 yard\u0131mc\u0131 program\u0131 olu\u015fturma numaras\u0131: {0}
19
+ CommandLine.8=Ana klas\u00f6r: {0}
20
+ CommandLine.9=Belirtilmedi.
21
+ # Do not translate the product name "Script Application" in the following string
22
+ GenericCommand.2=Script Application Sunucusu:
23
+ GenericResponseHandler.11=Yan\u0131t durumu: {0}
24
+ GenericResponseHandler.12=G\u00f6vdenin y\u00fcr\u00fcrl\u00fckteki karakter k\u00fcmesi: {0}
25
+ GenericResponseHandler.13=G\u00f6vdenin i\u00e7eri\u011fi: {0}
26
+ GenericResponseHandler.14=Yan\u0131t g\u00f6vdesi ayr\u0131\u015ft\u0131r\u0131lamad\u0131.
27
+ ListCommand.10=Hedef kimlik do\u011frulamas\u0131 kimlik bilgileri: {0}
28
+ ListCommand.23=Sanal Portal Ad\u0131
29
+ ListCommand.24=WCM Projesi Ad\u0131
30
+ ListCommand.25=Sanal Portal Tan\u0131t\u0131c\u0131s\u0131
31
+ ListCommand.26=WCM \u0130\u00e7erik Tan\u0131t\u0131c\u0131s\u0131
32
+ ListCommand.27=Site B\u00f6lgesi Yolu
33
+ ListCommand.28=Site B\u00f6lgesi Tan\u0131t\u0131c\u0131s\u0131
34
+ ListCommand.37=Nesne listesi ba\u015far\u0131l\u0131 oldu.
35
+ ListCommand.38=Portalda nesne listesini bitir.
36
+ ListCommand.6=Portalda nesne listesini ba\u015flat.
37
+ ListCommand.7=Liste URL: {0}
38
+ ListCommand.8=Hedef kimlik do\u011frulamas\u0131 durumu: {0}
39
+ ListCommand.9=Hedef kimlik do\u011frulamas\u0131 \u015femas\u0131: {0}
40
+ Logger.0={0} ({1} byte)
41
+ Logger.10=Y\u00fcr\u00fcrl\u00fckteki yap\u0131lan\u0131\u015f \u00f6zellikleri: {0}
42
+ Logger.16=Java ortam\u0131: {0}
43
+ Logger.22=Ar\u015fiv ak\u0131m\u0131 ({1} dosyada {0} byte): {2}
44
+ Logger.24=Bilinmiyor
45
+ Logger.26=Ar\u015fiv dosyas\u0131: {0}({2} dosyada {1} byte) {3}
46
+ Logger.4=G\u00fcnl\u00fc\u011fe kaydetmek i\u00e7in varsay\u0131lan olarak standart hata ak\u0131m\u0131 kullan\u0131lacak.
47
+ PushCommand.10=WCM \u0130\u00e7erik Ba\u015fl\u0131\u011f\u0131: {0}
48
+ PushCommand.11=Ana HTML dosyas\u0131: {0}
49
+ # The word POST in the following resource string should not be translated.
50
+ PushCommand.17=\u00d6zel POST de\u011fi\u015ftirgesi: {0} = {1}
51
+ PushCommand.18=Hedef kimlik do\u011frulamas\u0131 durumu: {0}
52
+ PushCommand.19=Hedef kimlik do\u011frulamas\u0131 \u015femas\u0131: {0}
53
+ PushCommand.20=Hedef kimlik do\u011frulamas\u0131 kimlik bilgileri: {0}
54
+ PushCommand.3=Ana HTML Dosyas\u0131:
55
+ PushCommand.31=\u0130\u00e7erik g\u00f6nderme ba\u015far\u0131l\u0131 oldu.
56
+ PushCommand.32=Portala i\u00e7erik g\u00f6ndermeyi bitir.
57
+ PushCommand.4=Portala i\u00e7erik g\u00f6ndermeyi ba\u015flat.
58
+ PushCommand.5=G\u00f6nderme URL adresi: {0}
59
+ PushCommand.6=Sanal Portal Ba\u011flam\u0131: {0}
60
+ PushCommand.7=Proje Ba\u011flam\u0131: {0}
61
+ PushCommand.8=WCM i\u00e7erik tan\u0131t\u0131c\u0131s\u0131: {0}
62
+ PushCommand.9=WCM \u0130\u00e7erik Yolu: {0}
63
+