@dhis2/analytics 23.11.0 → 23.12.1

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 +38 -7
  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 +38 -7
  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
@@ -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": "",
@@ -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": "No results found",
85
117
  "Created by": "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": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "kart",
85
85
  "visualization": "",
86
+ "Edit": "Rediger",
87
+ "Write a reply": "Skriv et svar",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "Oppdater",
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": "Skriv en tolkning",
97
+ "Post interpretation": "",
98
+ "Interpretations": "Tolkninger",
99
+ "Unlike": "Fjern like",
100
+ "Like": "Like",
101
+ "Reply": "Svar",
102
+ "Share": "Del",
103
+ "See interpretation": "",
104
+ "Manage sharing": "Administrer deling",
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": "Forhåndsvisning",
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": "Ingen resultater funnet",
86
118
  "Created by": "Opprettet av",
87
119
  "Anyone": "Hvem som helst",
88
120
  "Only you": "Bare deg",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "Alternativ",
125
157
  "Hide": "Skjul",
126
- "Update": "Oppdater",
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": "",
85
85
  "visualization": "",
86
+ "Edit": "Bewerk",
87
+ "Write a reply": "",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "Bijwerken",
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": "Interpretaties",
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": "Geen resultaten gevonden",
86
118
  "Created by": "Gecreëerd door",
87
119
  "Anyone": "",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "Opties",
125
157
  "Hide": "Verbergen",
126
- "Update": "Bijwerken",
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": "",
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": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -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": "",
@@ -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": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "mapa",
85
85
  "visualization": "",
86
+ "Edit": "Editar",
87
+ "Write a reply": "Escreva uma resposta",
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": "Escreva uma interpretação",
97
+ "Post interpretation": "",
98
+ "Interpretations": "Interpretações",
99
+ "Unlike": "Ao contrário",
100
+ "Like": "como",
101
+ "Reply": "Responder",
102
+ "Share": "Partilha",
103
+ "See interpretation": "",
104
+ "Manage sharing": "Gerenciar compartilhamento",
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": "Pré-visualização",
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": "Nenhum resultado encontrado",
86
118
  "Created by": "Criado por",
87
119
  "Anyone": "",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "Opções",
125
157
  "Hide": "Esconder",
126
- "Update": "Actualizar",
127
158
  "{{count}} org units": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",