@dhis2/analytics 26.0.11 → 26.0.13

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 (57) hide show
  1. package/build/cjs/components/Interpretations/InterpretationModal/Comment.js +7 -4
  2. package/build/cjs/components/Interpretations/InterpretationModal/CommentDeleteButton.js +24 -5
  3. package/build/cjs/components/Interpretations/InterpretationModal/CommentUpdateForm.js +1 -1
  4. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationModal.js +1 -1
  5. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationThread.js +8 -5
  6. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +1 -1
  7. package/build/cjs/components/Interpretations/common/Interpretation/Interpretation.js +26 -10
  8. package/build/cjs/components/Interpretations/common/Message/MessageIconButton.js +9 -6
  9. package/build/cjs/components/Interpretations/common/__tests__/getInterpretationAccess.spec.js +152 -0
  10. package/build/cjs/components/Interpretations/common/getInterpretationAccess.js +25 -0
  11. package/build/cjs/components/Interpretations/common/index.js +11 -0
  12. package/build/cjs/locales/ar/translations.json +10 -1
  13. package/build/cjs/locales/cs/translations.json +8 -1
  14. package/build/cjs/locales/en/translations.json +5 -1
  15. package/build/cjs/locales/es/translations.json +5 -1
  16. package/build/cjs/locales/fr/translations.json +6 -1
  17. package/build/cjs/locales/id/translations.json +5 -1
  18. package/build/cjs/locales/nb/translations.json +6 -1
  19. package/build/cjs/locales/nl/translations.json +5 -1
  20. package/build/cjs/locales/pt/translations.json +5 -1
  21. package/build/cjs/locales/ru/translations.json +8 -1
  22. package/build/cjs/locales/uk/translations.json +8 -1
  23. package/build/cjs/locales/ur/translations.json +6 -1
  24. package/build/cjs/locales/uz/translations.json +5 -1
  25. package/build/cjs/locales/uz_Latn/translations.json +5 -1
  26. package/build/cjs/locales/vi/translations.json +5 -1
  27. package/build/cjs/locales/zh/translations.json +4 -1
  28. package/build/cjs/locales/zh_CN/translations.json +5 -1
  29. package/build/es/components/Interpretations/InterpretationModal/Comment.js +8 -5
  30. package/build/es/components/Interpretations/InterpretationModal/CommentDeleteButton.js +23 -6
  31. package/build/es/components/Interpretations/InterpretationModal/CommentUpdateForm.js +1 -1
  32. package/build/es/components/Interpretations/InterpretationModal/InterpretationModal.js +1 -1
  33. package/build/es/components/Interpretations/InterpretationModal/InterpretationThread.js +9 -6
  34. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +1 -1
  35. package/build/es/components/Interpretations/common/Interpretation/Interpretation.js +27 -11
  36. package/build/es/components/Interpretations/common/Message/MessageIconButton.js +9 -6
  37. package/build/es/components/Interpretations/common/__tests__/getInterpretationAccess.spec.js +150 -0
  38. package/build/es/components/Interpretations/common/getInterpretationAccess.js +17 -0
  39. package/build/es/components/Interpretations/common/index.js +2 -1
  40. package/build/es/locales/ar/translations.json +10 -1
  41. package/build/es/locales/cs/translations.json +8 -1
  42. package/build/es/locales/en/translations.json +5 -1
  43. package/build/es/locales/es/translations.json +5 -1
  44. package/build/es/locales/fr/translations.json +6 -1
  45. package/build/es/locales/id/translations.json +5 -1
  46. package/build/es/locales/nb/translations.json +6 -1
  47. package/build/es/locales/nl/translations.json +5 -1
  48. package/build/es/locales/pt/translations.json +5 -1
  49. package/build/es/locales/ru/translations.json +8 -1
  50. package/build/es/locales/uk/translations.json +8 -1
  51. package/build/es/locales/ur/translations.json +6 -1
  52. package/build/es/locales/uz/translations.json +5 -1
  53. package/build/es/locales/uz_Latn/translations.json +5 -1
  54. package/build/es/locales/vi/translations.json +5 -1
  55. package/build/es/locales/zh/translations.json +4 -1
  56. package/build/es/locales/zh_CN/translations.json +5 -1
  57. package/package.json +1 -1
@@ -106,6 +106,7 @@
106
106
  "Edit": "编辑",
107
107
  "Write a reply": "书写应答",
108
108
  "Post reply": "发表回复",
109
+ "Delete failed": "删除失败",
109
110
  "Could not update comment": "无法更新评论",
110
111
  "Enter comment text": "输入评论文本",
111
112
  "Update": "更新",
@@ -116,9 +117,11 @@
116
117
  "Write an interpretation": "书写注释",
117
118
  "Post interpretation": "后解释",
118
119
  "Interpretations": "解释",
120
+ "Reply": "应答",
121
+ "{{count}} replies": "{{count}}条回复",
122
+ "View replies": "",
119
123
  "Unlike": "不喜欢",
120
124
  "Like": "喜欢",
121
- "Reply": "应答",
122
125
  "Share": "分享",
123
126
  "See interpretation": "见解释",
124
127
  "Manage sharing": "管理共享",
@@ -106,6 +106,7 @@
106
106
  "Edit": "编辑",
107
107
  "Write a reply": "",
108
108
  "Post reply": "",
109
+ "Delete failed": "删除失败",
109
110
  "Could not update comment": "",
110
111
  "Enter comment text": "",
111
112
  "Update": "更新",
@@ -116,9 +117,11 @@
116
117
  "Write an interpretation": "",
117
118
  "Post interpretation": "",
118
119
  "Interpretations": "注释",
120
+ "Reply": "回复",
121
+ "{{count}} replies": "",
122
+ "View replies": "",
119
123
  "Unlike": "",
120
124
  "Like": "Like",
121
- "Reply": "回复",
122
125
  "Share": "分享",
123
126
  "See interpretation": "",
124
127
  "Manage sharing": "",
@@ -263,6 +266,7 @@
263
266
  "Six-months": "",
264
267
  "Financial Years": "",
265
268
  "Years": "年",
269
+ "Interpretations and details": "",
266
270
  "Translating to": "",
267
271
  "Choose a locale": "",
268
272
  "Base locale reference": "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhis2/analytics",
3
- "version": "26.0.11",
3
+ "version": "26.0.13",
4
4
  "main": "./build/cjs/index.js",
5
5
  "module": "./build/es/index.js",
6
6
  "exports": {