@dhis2/analytics 23.11.1 → 23.12.2

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 (136) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/build/cjs/components/Interpretations/InterpretationModal/Comment.js +64 -0
  3. package/build/cjs/components/Interpretations/InterpretationModal/CommentAddForm.js +93 -0
  4. package/build/cjs/components/Interpretations/InterpretationModal/CommentDeleteButton.js +62 -0
  5. package/build/cjs/components/Interpretations/InterpretationModal/CommentUpdateForm.js +95 -0
  6. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationModal.js +187 -0
  7. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationThread.js +100 -0
  8. package/build/cjs/components/Interpretations/InterpretationModal/index.js +13 -0
  9. package/build/cjs/components/Interpretations/InterpretationModal/useModalContentWidth.js +39 -0
  10. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationForm.js +94 -0
  11. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationList.js +94 -0
  12. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +135 -0
  13. package/build/cjs/components/Interpretations/InterpretationsUnit/index.js +13 -0
  14. package/build/cjs/components/Interpretations/common/Interpretation/Interpretation.js +110 -0
  15. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +58 -0
  16. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +50 -0
  17. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +108 -0
  18. package/build/cjs/components/Interpretations/common/Interpretation/index.js +21 -0
  19. package/build/cjs/components/Interpretations/common/Interpretation/useLike.js +53 -0
  20. package/build/cjs/components/Interpretations/common/Message/Message.js +55 -0
  21. package/build/cjs/components/Interpretations/common/Message/MessageButtonStrip.js +33 -0
  22. package/build/cjs/components/Interpretations/common/Message/MessageEditorContainer.js +42 -0
  23. package/build/cjs/components/Interpretations/common/Message/MessageIconButton.js +67 -0
  24. package/build/cjs/components/Interpretations/common/Message/MessageInput.js +31 -0
  25. package/build/cjs/components/Interpretations/common/Message/MessageStatsBar.js +33 -0
  26. package/build/cjs/components/Interpretations/common/Message/index.js +53 -0
  27. package/build/cjs/components/Interpretations/common/RichTextEditor/RichTextEditor.js +262 -0
  28. package/build/cjs/components/Interpretations/common/RichTextEditor/index.js +13 -0
  29. package/build/cjs/components/Interpretations/common/RichTextEditor/markdownHandler.js +148 -0
  30. package/build/cjs/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +21 -0
  31. package/build/cjs/components/Interpretations/common/UserMention/UserList.js +48 -0
  32. package/build/cjs/components/Interpretations/common/UserMention/UserMentionWrapper.js +226 -0
  33. package/build/cjs/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +30 -0
  34. package/build/cjs/components/Interpretations/common/UserMention/useUserSearchResults.js +78 -0
  35. package/build/cjs/components/Interpretations/common/index.js +44 -0
  36. package/build/cjs/index.js +16 -0
  37. package/build/cjs/locales/ar/translations.json +32 -1
  38. package/build/cjs/locales/ar_EG/translations.json +32 -1
  39. package/build/cjs/locales/ar_IQ/translations.json +32 -1
  40. package/build/cjs/locales/ckb/translations.json +32 -1
  41. package/build/cjs/locales/cs/translations.json +32 -1
  42. package/build/cjs/locales/da/translations.json +32 -1
  43. package/build/cjs/locales/en/translations.json +32 -1
  44. package/build/cjs/locales/es/translations.json +32 -1
  45. package/build/cjs/locales/fr/translations.json +32 -1
  46. package/build/cjs/locales/id/translations.json +32 -1
  47. package/build/cjs/locales/km/translations.json +32 -1
  48. package/build/cjs/locales/lo/translations.json +32 -1
  49. package/build/cjs/locales/my/translations.json +32 -1
  50. package/build/cjs/locales/nb/translations.json +32 -1
  51. package/build/cjs/locales/nl/translations.json +32 -1
  52. package/build/cjs/locales/or/translations.json +32 -1
  53. package/build/cjs/locales/prs/translations.json +32 -1
  54. package/build/cjs/locales/ps/translations.json +32 -1
  55. package/build/cjs/locales/pt/translations.json +32 -1
  56. package/build/cjs/locales/pt_BR/translations.json +32 -1
  57. package/build/cjs/locales/ro/translations.json +32 -1
  58. package/build/cjs/locales/ru/translations.json +32 -1
  59. package/build/cjs/locales/sv/translations.json +32 -1
  60. package/build/cjs/locales/tet/translations.json +32 -1
  61. package/build/cjs/locales/tg/translations.json +32 -1
  62. package/build/cjs/locales/uk/translations.json +32 -1
  63. package/build/cjs/locales/ur/translations.json +32 -1
  64. package/build/cjs/locales/uz/translations.json +32 -1
  65. package/build/cjs/locales/uz_Latn/translations.json +32 -1
  66. package/build/cjs/locales/vi/translations.json +32 -1
  67. package/build/cjs/locales/zh/translations.json +32 -1
  68. package/build/cjs/locales/zh_CN/translations.json +32 -1
  69. package/build/es/components/Interpretations/InterpretationModal/Comment.js +45 -0
  70. package/build/es/components/Interpretations/InterpretationModal/CommentAddForm.js +70 -0
  71. package/build/es/components/Interpretations/InterpretationModal/CommentDeleteButton.js +47 -0
  72. package/build/es/components/Interpretations/InterpretationModal/CommentUpdateForm.js +73 -0
  73. package/build/es/components/Interpretations/InterpretationModal/InterpretationModal.js +165 -0
  74. package/build/es/components/Interpretations/InterpretationModal/InterpretationThread.js +79 -0
  75. package/build/es/components/Interpretations/InterpretationModal/index.js +1 -0
  76. package/build/es/components/Interpretations/InterpretationModal/useModalContentWidth.js +28 -0
  77. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationForm.js +71 -0
  78. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationList.js +78 -0
  79. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +112 -0
  80. package/build/es/components/Interpretations/InterpretationsUnit/index.js +1 -0
  81. package/build/es/components/Interpretations/common/Interpretation/Interpretation.js +87 -0
  82. package/build/es/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +43 -0
  83. package/build/es/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +33 -0
  84. package/build/es/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +85 -0
  85. package/build/es/components/Interpretations/common/Interpretation/index.js +2 -0
  86. package/build/es/components/Interpretations/common/Interpretation/useLike.js +45 -0
  87. package/build/es/components/Interpretations/common/Message/Message.js +41 -0
  88. package/build/es/components/Interpretations/common/Message/MessageButtonStrip.js +21 -0
  89. package/build/es/components/Interpretations/common/Message/MessageEditorContainer.js +30 -0
  90. package/build/es/components/Interpretations/common/Message/MessageIconButton.js +54 -0
  91. package/build/es/components/Interpretations/common/Message/MessageInput.js +16 -0
  92. package/build/es/components/Interpretations/common/Message/MessageStatsBar.js +21 -0
  93. package/build/es/components/Interpretations/common/Message/index.js +6 -0
  94. package/build/es/components/Interpretations/common/RichTextEditor/RichTextEditor.js +240 -0
  95. package/build/es/components/Interpretations/common/RichTextEditor/index.js +1 -0
  96. package/build/es/components/Interpretations/common/RichTextEditor/markdownHandler.js +128 -0
  97. package/build/es/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +9 -0
  98. package/build/es/components/Interpretations/common/UserMention/UserList.js +33 -0
  99. package/build/es/components/Interpretations/common/UserMention/UserMentionWrapper.js +202 -0
  100. package/build/es/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +17 -0
  101. package/build/es/components/Interpretations/common/UserMention/useUserSearchResults.js +63 -0
  102. package/build/es/components/Interpretations/common/index.js +3 -0
  103. package/build/es/index.js +2 -0
  104. package/build/es/locales/ar/translations.json +32 -1
  105. package/build/es/locales/ar_EG/translations.json +32 -1
  106. package/build/es/locales/ar_IQ/translations.json +32 -1
  107. package/build/es/locales/ckb/translations.json +32 -1
  108. package/build/es/locales/cs/translations.json +32 -1
  109. package/build/es/locales/da/translations.json +32 -1
  110. package/build/es/locales/en/translations.json +32 -1
  111. package/build/es/locales/es/translations.json +32 -1
  112. package/build/es/locales/fr/translations.json +32 -1
  113. package/build/es/locales/id/translations.json +32 -1
  114. package/build/es/locales/km/translations.json +32 -1
  115. package/build/es/locales/lo/translations.json +32 -1
  116. package/build/es/locales/my/translations.json +32 -1
  117. package/build/es/locales/nb/translations.json +32 -1
  118. package/build/es/locales/nl/translations.json +32 -1
  119. package/build/es/locales/or/translations.json +32 -1
  120. package/build/es/locales/prs/translations.json +32 -1
  121. package/build/es/locales/ps/translations.json +32 -1
  122. package/build/es/locales/pt/translations.json +32 -1
  123. package/build/es/locales/pt_BR/translations.json +32 -1
  124. package/build/es/locales/ro/translations.json +32 -1
  125. package/build/es/locales/ru/translations.json +32 -1
  126. package/build/es/locales/sv/translations.json +32 -1
  127. package/build/es/locales/tet/translations.json +32 -1
  128. package/build/es/locales/tg/translations.json +32 -1
  129. package/build/es/locales/uk/translations.json +32 -1
  130. package/build/es/locales/ur/translations.json +32 -1
  131. package/build/es/locales/uz/translations.json +32 -1
  132. package/build/es/locales/uz_Latn/translations.json +32 -1
  133. package/build/es/locales/vi/translations.json +32 -1
  134. package/build/es/locales/zh/translations.json +32 -1
  135. package/build/es/locales/zh_CN/translations.json +32 -1
  136. package/package.json +2 -1
@@ -0,0 +1,63 @@
1
+ import { useDataQuery } from '@dhis2/app-runtime';
2
+ import debounce from 'lodash/debounce';
3
+ import { useCallback, useEffect, useState } from 'react';
4
+ const usersQuery = {
5
+ users: {
6
+ resource: 'users/gist',
7
+ params: _ref => {
8
+ let {
9
+ searchText
10
+ } = _ref;
11
+ return {
12
+ fields: 'id,displayName,username',
13
+ order: 'firstName,surname',
14
+ total: true,
15
+ filter: "username:ilike:".concat(searchText, ",firstName:ilike:").concat(searchText, ",surname:ilike:").concat(searchText, ",email:ilike:").concat(searchText),
16
+ rootJunction: 'OR'
17
+ };
18
+ }
19
+ }
20
+ };
21
+ export const useUserSearchResults = _ref2 => {
22
+ let {
23
+ searchText
24
+ } = _ref2;
25
+ const [{
26
+ users,
27
+ pager
28
+ }, setData] = useState({
29
+ users: [],
30
+ pager: {}
31
+ });
32
+ const {
33
+ data,
34
+ fetching,
35
+ refetch
36
+ } = useDataQuery(usersQuery, {
37
+ lazy: true
38
+ });
39
+ const debouncedRefetch = useCallback(debounce(refetch, 250), [refetch]);
40
+ useEffect(() => {
41
+ if (searchText.length) {
42
+ debouncedRefetch({
43
+ searchText
44
+ });
45
+ }
46
+
47
+ return () => debouncedRefetch.cancel();
48
+ }, [searchText]);
49
+ useEffect(() => {
50
+ if (data) {
51
+ setData(data.users);
52
+ }
53
+ }, [data]);
54
+ return {
55
+ users,
56
+ pager,
57
+ fetching,
58
+ clear: () => setData({
59
+ users: [],
60
+ pager: {}
61
+ })
62
+ };
63
+ };
@@ -0,0 +1,3 @@
1
+ export * from './Interpretation/index.js';
2
+ export * from './Message/index.js';
3
+ export * from './RichTextEditor/index.js';
package/build/es/index.js CHANGED
@@ -14,6 +14,8 @@ export { default as FileMenu } from './components/FileMenu/FileMenu.js';
14
14
  export { default as VisTypeIcon } from './components/VisTypeIcon.js';
15
15
  export { default as LegendKey } from './components/LegendKey/LegendKey.js';
16
16
  export { default as AboutAOUnit } from './components/AboutAOUnit/AboutAOUnit.js';
17
+ export { InterpretationsUnit } from './components/Interpretations/InterpretationsUnit/InterpretationsUnit.js';
18
+ export { InterpretationModal } from './components/Interpretations/InterpretationModal/InterpretationModal.js';
17
19
  export { CachedDataQueryProvider, useCachedDataQuery } from './components/CachedDataQueryProvider.js'; // Api
18
20
 
19
21
  export { default as Analytics } from './api/analytics/Analytics.js';
@@ -87,6 +87,38 @@
87
87
  "line list": "",
88
88
  "map": "خريطة",
89
89
  "visualization": "",
90
+ "Edit": "تعديل",
91
+ "Write a reply": "كتابة رد",
92
+ "Post reply": "",
93
+ "Could not update comment": "",
94
+ "Enter comment text": "",
95
+ "Update": "تحديث",
96
+ "Viewing interpretation: {{visualisationName}}": "",
97
+ "Could not load interpretation": "",
98
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
99
+ "Hide interpretation": "",
100
+ "Write an interpretation": "كتابة تفسير",
101
+ "Post interpretation": "",
102
+ "Interpretations": "التفسيرات",
103
+ "Unlike": "إلغاء الإعجاب",
104
+ "Like": "إعجاب",
105
+ "Reply": "رد",
106
+ "Share": "مشاركة",
107
+ "See interpretation": "",
108
+ "Manage sharing": "إدارة المشاركة",
109
+ "Could not update interpretation": "",
110
+ "Enter interpretation text": "",
111
+ "Bold text": "",
112
+ "Italic text": "",
113
+ "Link to a URL": "",
114
+ "Mention a user": "",
115
+ "Add emoji": "",
116
+ "Preview": "معاينة",
117
+ "Back to write mode": "",
118
+ "Too many results. Try refining the search.": "",
119
+ "Search for a user": "",
120
+ "Searching for \"{{searchText}}\"": "",
121
+ "No results found": "لم يتم العثور على أي نتائج",
90
122
  "Created by": "تم الإنشاء بواسطة",
91
123
  "Anyone": "أي شخص",
92
124
  "Only you": "",
@@ -127,7 +159,6 @@
127
159
  "New line list": "",
128
160
  "Options": "الخيارات",
129
161
  "Hide": "إخفاء",
130
- "Update": "تحديث",
131
162
  "{{count}} org units_0": "",
132
163
  "{{count}} org units_1": "",
133
164
  "{{count}} org units_2": "",
@@ -87,6 +87,38 @@
87
87
  "line list": "",
88
88
  "map": "",
89
89
  "visualization": "",
90
+ "Edit": "",
91
+ "Write a reply": "",
92
+ "Post reply": "",
93
+ "Could not update comment": "",
94
+ "Enter comment text": "",
95
+ "Update": "",
96
+ "Viewing interpretation: {{visualisationName}}": "",
97
+ "Could not load interpretation": "",
98
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
99
+ "Hide interpretation": "",
100
+ "Write an interpretation": "",
101
+ "Post interpretation": "",
102
+ "Interpretations": "",
103
+ "Unlike": "",
104
+ "Like": "",
105
+ "Reply": "",
106
+ "Share": "",
107
+ "See interpretation": "",
108
+ "Manage sharing": "",
109
+ "Could not update interpretation": "",
110
+ "Enter interpretation text": "",
111
+ "Bold text": "",
112
+ "Italic text": "",
113
+ "Link to a URL": "",
114
+ "Mention a user": "",
115
+ "Add emoji": "",
116
+ "Preview": "",
117
+ "Back to write mode": "",
118
+ "Too many results. Try refining the search.": "",
119
+ "Search for a user": "",
120
+ "Searching for \"{{searchText}}\"": "",
121
+ "No results found": "",
90
122
  "Created by": "",
91
123
  "Anyone": "",
92
124
  "Only you": "",
@@ -127,7 +159,6 @@
127
159
  "New line list": "",
128
160
  "Options": "",
129
161
  "Hide": "",
130
- "Update": "",
131
162
  "{{count}} org units_0": "",
132
163
  "{{count}} org units_1": "",
133
164
  "{{count}} org units_2": "",
@@ -87,6 +87,38 @@
87
87
  "line list": "",
88
88
  "map": "",
89
89
  "visualization": "",
90
+ "Edit": "تعديل",
91
+ "Write a reply": "",
92
+ "Post reply": "",
93
+ "Could not update comment": "",
94
+ "Enter comment text": "",
95
+ "Update": "تحديث",
96
+ "Viewing interpretation: {{visualisationName}}": "",
97
+ "Could not load interpretation": "",
98
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
99
+ "Hide interpretation": "",
100
+ "Write an interpretation": "",
101
+ "Post interpretation": "",
102
+ "Interpretations": "التفسيرات",
103
+ "Unlike": "إلغاء الإعجاب",
104
+ "Like": "إعجاب",
105
+ "Reply": "رد",
106
+ "Share": "مشاركة",
107
+ "See interpretation": "",
108
+ "Manage sharing": "",
109
+ "Could not update interpretation": "",
110
+ "Enter interpretation text": "",
111
+ "Bold text": "",
112
+ "Italic text": "",
113
+ "Link to a URL": "",
114
+ "Mention a user": "",
115
+ "Add emoji": "",
116
+ "Preview": "",
117
+ "Back to write mode": "",
118
+ "Too many results. Try refining the search.": "",
119
+ "Search for a user": "",
120
+ "Searching for \"{{searchText}}\"": "",
121
+ "No results found": "",
90
122
  "Created by": "تم الإنشاء بواسطة",
91
123
  "Anyone": "أي شخص",
92
124
  "Only you": "",
@@ -127,7 +159,6 @@
127
159
  "New line list": "",
128
160
  "Options": "الخيارات",
129
161
  "Hide": "إخفاء",
130
- "Update": "تحديث",
131
162
  "{{count}} org units_0": "",
132
163
  "{{count}} org units_1": "",
133
164
  "{{count}} org units_2": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "",
85
85
  "visualization": "",
86
+ "Edit": "دةستكاري",
87
+ "Write a reply": "",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "نوێ کردنەوە",
92
+ "Viewing interpretation: {{visualisationName}}": "",
93
+ "Could not load interpretation": "",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
95
+ "Hide interpretation": "",
96
+ "Write an interpretation": "",
97
+ "Post interpretation": "",
98
+ "Interpretations": "",
99
+ "Unlike": "",
100
+ "Like": "",
101
+ "Reply": "",
102
+ "Share": "",
103
+ "See interpretation": "",
104
+ "Manage sharing": "",
105
+ "Could not update interpretation": "",
106
+ "Enter interpretation text": "",
107
+ "Bold text": "",
108
+ "Italic text": "",
109
+ "Link to a URL": "",
110
+ "Mention a user": "",
111
+ "Add emoji": "",
112
+ "Preview": "",
113
+ "Back to write mode": "",
114
+ "Too many results. Try refining the search.": "",
115
+ "Search for a user": "",
116
+ "Searching for \"{{searchText}}\"": "",
117
+ "No results found": "",
86
118
  "Created by": "",
87
119
  "Anyone": "هەرکەسێک",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "",
125
157
  "Hide": "شاردنەوە",
126
- "Update": "نوێ کردنەوە",
127
158
  "{{count}} org units_0": "",
128
159
  "{{count}} org units_1": "",
129
160
  "{{count}} levels_0": "",
@@ -85,6 +85,38 @@
85
85
  "line list": "",
86
86
  "map": "mapa",
87
87
  "visualization": "",
88
+ "Edit": "Upravit",
89
+ "Write a reply": "Napsat odpověď",
90
+ "Post reply": "",
91
+ "Could not update comment": "",
92
+ "Enter comment text": "",
93
+ "Update": "Aktualizovat",
94
+ "Viewing interpretation: {{visualisationName}}": "",
95
+ "Could not load interpretation": "",
96
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
97
+ "Hide interpretation": "",
98
+ "Write an interpretation": "Napsat interpretaci",
99
+ "Post interpretation": "",
100
+ "Interpretations": "Interpretace",
101
+ "Unlike": "Na rozdíl od",
102
+ "Like": "Jako",
103
+ "Reply": "Odpovědět",
104
+ "Share": "Sdílet",
105
+ "See interpretation": "",
106
+ "Manage sharing": "Spravovat sdílení",
107
+ "Could not update interpretation": "",
108
+ "Enter interpretation text": "",
109
+ "Bold text": "",
110
+ "Italic text": "",
111
+ "Link to a URL": "",
112
+ "Mention a user": "",
113
+ "Add emoji": "",
114
+ "Preview": "Náhled",
115
+ "Back to write mode": "",
116
+ "Too many results. Try refining the search.": "",
117
+ "Search for a user": "",
118
+ "Searching for \"{{searchText}}\"": "",
119
+ "No results found": "Nenalezeny žádné výsledky",
88
120
  "Created by": "Vytvořil",
89
121
  "Anyone": "Kdokoliv",
90
122
  "Only you": "Jen vy",
@@ -125,7 +157,6 @@
125
157
  "New line list": "Nový řádkový seznam",
126
158
  "Options": "Možnosti",
127
159
  "Hide": "Skrýt",
128
- "Update": "Aktualizovat",
129
160
  "{{count}} org units_0": "{{count}} organizační jednotka",
130
161
  "{{count}} org units_1": "{{count}} organizační jednotky",
131
162
  "{{count}} org units_2": "{{count}} organizačních jednotek",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "",
85
85
  "visualization": "",
86
+ "Edit": "",
87
+ "Write a reply": "",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "Update",
92
+ "Viewing interpretation: {{visualisationName}}": "",
93
+ "Could not load interpretation": "",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
95
+ "Hide interpretation": "",
96
+ "Write an interpretation": "",
97
+ "Post interpretation": "",
98
+ "Interpretations": "Interpretations",
99
+ "Unlike": "",
100
+ "Like": "",
101
+ "Reply": "",
102
+ "Share": "",
103
+ "See interpretation": "",
104
+ "Manage sharing": "",
105
+ "Could not update interpretation": "",
106
+ "Enter interpretation text": "",
107
+ "Bold text": "",
108
+ "Italic text": "",
109
+ "Link to a URL": "",
110
+ "Mention a user": "",
111
+ "Add emoji": "",
112
+ "Preview": "",
113
+ "Back to write mode": "",
114
+ "Too many results. Try refining the search.": "",
115
+ "Search for a user": "",
116
+ "Searching for \"{{searchText}}\"": "",
117
+ "No results found": "No results found",
86
118
  "Created by": "Created by",
87
119
  "Anyone": "",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "",
125
157
  "Hide": "",
126
- "Update": "Update",
127
158
  "{{count}} org units": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "line list",
84
84
  "map": "map",
85
85
  "visualization": "visualization",
86
+ "Edit": "Edit",
87
+ "Write a reply": "Write a reply",
88
+ "Post reply": "Post reply",
89
+ "Could not update comment": "Could not update comment",
90
+ "Enter comment text": "Enter comment text",
91
+ "Update": "Update",
92
+ "Viewing interpretation: {{visualisationName}}": "Viewing interpretation: {{visualisationName}}",
93
+ "Could not load interpretation": "Could not load interpretation",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "The interpretation couldn’t be displayed. Try again or contact your system administrator.",
95
+ "Hide interpretation": "Hide interpretation",
96
+ "Write an interpretation": "Write an interpretation",
97
+ "Post interpretation": "Post interpretation",
98
+ "Interpretations": "Interpretations",
99
+ "Unlike": "Unlike",
100
+ "Like": "Like",
101
+ "Reply": "Reply",
102
+ "Share": "Share",
103
+ "See interpretation": "See interpretation",
104
+ "Manage sharing": "Manage sharing",
105
+ "Could not update interpretation": "Could not update interpretation",
106
+ "Enter interpretation text": "Enter interpretation text",
107
+ "Bold text": "Bold text",
108
+ "Italic text": "Italic text",
109
+ "Link to a URL": "Link to a URL",
110
+ "Mention a user": "Mention a user",
111
+ "Add emoji": "Add emoji",
112
+ "Preview": "Preview",
113
+ "Back to write mode": "Back to write mode",
114
+ "Too many results. Try refining the search.": "Too many results. Try refining the search.",
115
+ "Search for a user": "Search for a user",
116
+ "Searching for \"{{searchText}}\"": "Searching for \"{{searchText}}\"",
117
+ "No results found": "No results found",
86
118
  "Created by": "Created by",
87
119
  "Anyone": "Anyone",
88
120
  "Only you": "Only you",
@@ -123,7 +155,6 @@
123
155
  "New line list": "New line list",
124
156
  "Options": "Options",
125
157
  "Hide": "Hide",
126
- "Update": "Update",
127
158
  "{{count}} org units": "{{count}} org unit",
128
159
  "{{count}} org units_plural": "{{count}} org units",
129
160
  "{{count}} levels": "{{count}} level",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "mapa",
85
85
  "visualization": "",
86
+ "Edit": "Editar",
87
+ "Write a reply": "Escribe una respuesta",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "Actualizar",
92
+ "Viewing interpretation: {{visualisationName}}": "",
93
+ "Could not load interpretation": "",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
95
+ "Hide interpretation": "",
96
+ "Write an interpretation": "Escribir una interpretación",
97
+ "Post interpretation": "",
98
+ "Interpretations": "Interpretaciones",
99
+ "Unlike": "diferente a",
100
+ "Like": "como",
101
+ "Reply": "Responder",
102
+ "Share": "Compartir",
103
+ "See interpretation": "",
104
+ "Manage sharing": "Administrar compartir",
105
+ "Could not update interpretation": "",
106
+ "Enter interpretation text": "",
107
+ "Bold text": "",
108
+ "Italic text": "",
109
+ "Link to a URL": "",
110
+ "Mention a user": "",
111
+ "Add emoji": "",
112
+ "Preview": "",
113
+ "Back to write mode": "",
114
+ "Too many results. Try refining the search.": "",
115
+ "Search for a user": "",
116
+ "Searching for \"{{searchText}}\"": "",
117
+ "No results found": "No results found",
86
118
  "Created by": "Creado por",
87
119
  "Anyone": "Alguien",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "Opciones",
125
157
  "Hide": "Ocultar",
126
- "Update": "Actualizar",
127
158
  "{{count}} org units": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "carte",
85
85
  "visualization": "",
86
+ "Edit": "Modifier",
87
+ "Write a reply": "Ecrire une réponse",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "Mettre à jour",
92
+ "Viewing interpretation: {{visualisationName}}": "",
93
+ "Could not load interpretation": "",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
95
+ "Hide interpretation": "",
96
+ "Write an interpretation": "Ecrire une interprétation",
97
+ "Post interpretation": "",
98
+ "Interpretations": "Interprétations",
99
+ "Unlike": "Je n'aime plus",
100
+ "Like": "J'aime",
101
+ "Reply": "Répondre",
102
+ "Share": "Partager",
103
+ "See interpretation": "",
104
+ "Manage sharing": "Gérer le partage",
105
+ "Could not update interpretation": "",
106
+ "Enter interpretation text": "",
107
+ "Bold text": "",
108
+ "Italic text": "",
109
+ "Link to a URL": "",
110
+ "Mention a user": "",
111
+ "Add emoji": "",
112
+ "Preview": "Aperçu",
113
+ "Back to write mode": "",
114
+ "Too many results. Try refining the search.": "",
115
+ "Search for a user": "",
116
+ "Searching for \"{{searchText}}\"": "",
117
+ "No results found": "Aucun résultat trouvé",
86
118
  "Created by": "Créé par",
87
119
  "Anyone": "Toute personne",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "Options",
125
157
  "Hide": "Masquer",
126
- "Update": "Mettre à jour",
127
158
  "{{count}} org units": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "",
84
84
  "visualization": "",
85
+ "Edit": "Sunting",
86
+ "Write a reply": "",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "Perbarui",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "",
96
+ "Post interpretation": "",
97
+ "Interpretations": "Interpretasi",
98
+ "Unlike": "Batalkan Suka",
99
+ "Like": "Suka",
100
+ "Reply": "Balas",
101
+ "Share": "Bagikan",
102
+ "See interpretation": "",
103
+ "Manage sharing": "",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "Tidak ada hasil ditemukan",
85
117
  "Created by": "Dibuat oleh",
86
118
  "Anyone": "Siapa saja",
87
119
  "Only you": "Hanya kamu",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "Opsi",
124
156
  "Hide": "Sembunyikan",
125
- "Update": "Perbarui",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "",
84
84
  "visualization": "",
85
+ "Edit": "កែសម្រួល​",
86
+ "Write a reply": "",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "ធ្វើ​បច្ចុប្បន្នភាព",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "",
96
+ "Post interpretation": "",
97
+ "Interpretations": "កន្លែងសន្ទនារ",
98
+ "Unlike": "",
99
+ "Like": "",
100
+ "Reply": "ឆ្លើយតប",
101
+ "Share": "ចែករំលែក",
102
+ "See interpretation": "",
103
+ "Manage sharing": "",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "",
85
117
  "Created by": "",
86
118
  "Anyone": "",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "",
124
156
  "Hide": "",
125
- "Update": "ធ្វើ​បច្ចុប្បន្នភាព",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "",
84
84
  "visualization": "",
85
+ "Edit": "ແກ້ໄຂ",
86
+ "Write a reply": "",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "ປັບປຸງ",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "",
96
+ "Post interpretation": "",
97
+ "Interpretations": "ການແປຂໍ້ມູນ",
98
+ "Unlike": "ບໍ່ມັກ",
99
+ "Like": "ມັກ",
100
+ "Reply": "ຕອບກັບ",
101
+ "Share": "ເຜີຍແຜ່",
102
+ "See interpretation": "",
103
+ "Manage sharing": "",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "",
85
117
  "Created by": "ສ້າງໂດຍ",
86
118
  "Anyone": "",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "ຈັດການ",
124
156
  "Hide": "ເຊື່ອງ",
125
- "Update": "ປັບປຸງ",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",