@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.
- package/CHANGELOG.md +21 -0
- package/build/cjs/components/Interpretations/InterpretationModal/Comment.js +64 -0
- package/build/cjs/components/Interpretations/InterpretationModal/CommentAddForm.js +93 -0
- package/build/cjs/components/Interpretations/InterpretationModal/CommentDeleteButton.js +62 -0
- package/build/cjs/components/Interpretations/InterpretationModal/CommentUpdateForm.js +95 -0
- package/build/cjs/components/Interpretations/InterpretationModal/InterpretationModal.js +187 -0
- package/build/cjs/components/Interpretations/InterpretationModal/InterpretationThread.js +100 -0
- package/build/cjs/components/Interpretations/InterpretationModal/index.js +13 -0
- package/build/cjs/components/Interpretations/InterpretationModal/useModalContentWidth.js +39 -0
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationForm.js +94 -0
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationList.js +94 -0
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +135 -0
- package/build/cjs/components/Interpretations/InterpretationsUnit/index.js +13 -0
- package/build/cjs/components/Interpretations/common/Interpretation/Interpretation.js +110 -0
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +58 -0
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +50 -0
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +108 -0
- package/build/cjs/components/Interpretations/common/Interpretation/index.js +21 -0
- package/build/cjs/components/Interpretations/common/Interpretation/useLike.js +53 -0
- package/build/cjs/components/Interpretations/common/Message/Message.js +55 -0
- package/build/cjs/components/Interpretations/common/Message/MessageButtonStrip.js +33 -0
- package/build/cjs/components/Interpretations/common/Message/MessageEditorContainer.js +42 -0
- package/build/cjs/components/Interpretations/common/Message/MessageIconButton.js +67 -0
- package/build/cjs/components/Interpretations/common/Message/MessageInput.js +31 -0
- package/build/cjs/components/Interpretations/common/Message/MessageStatsBar.js +33 -0
- package/build/cjs/components/Interpretations/common/Message/index.js +53 -0
- package/build/cjs/components/Interpretations/common/RichTextEditor/RichTextEditor.js +262 -0
- package/build/cjs/components/Interpretations/common/RichTextEditor/index.js +13 -0
- package/build/cjs/components/Interpretations/common/RichTextEditor/markdownHandler.js +148 -0
- package/build/cjs/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +21 -0
- package/build/cjs/components/Interpretations/common/UserMention/UserList.js +48 -0
- package/build/cjs/components/Interpretations/common/UserMention/UserMentionWrapper.js +226 -0
- package/build/cjs/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +30 -0
- package/build/cjs/components/Interpretations/common/UserMention/useUserSearchResults.js +78 -0
- package/build/cjs/components/Interpretations/common/index.js +44 -0
- package/build/cjs/index.js +16 -0
- package/build/cjs/locales/ar/translations.json +32 -1
- package/build/cjs/locales/ar_EG/translations.json +32 -1
- package/build/cjs/locales/ar_IQ/translations.json +32 -1
- package/build/cjs/locales/ckb/translations.json +32 -1
- package/build/cjs/locales/cs/translations.json +32 -1
- package/build/cjs/locales/da/translations.json +32 -1
- package/build/cjs/locales/en/translations.json +32 -1
- package/build/cjs/locales/es/translations.json +32 -1
- package/build/cjs/locales/fr/translations.json +32 -1
- package/build/cjs/locales/id/translations.json +32 -1
- package/build/cjs/locales/km/translations.json +32 -1
- package/build/cjs/locales/lo/translations.json +32 -1
- package/build/cjs/locales/my/translations.json +32 -1
- package/build/cjs/locales/nb/translations.json +32 -1
- package/build/cjs/locales/nl/translations.json +32 -1
- package/build/cjs/locales/or/translations.json +32 -1
- package/build/cjs/locales/prs/translations.json +32 -1
- package/build/cjs/locales/ps/translations.json +32 -1
- package/build/cjs/locales/pt/translations.json +32 -1
- package/build/cjs/locales/pt_BR/translations.json +32 -1
- package/build/cjs/locales/ro/translations.json +38 -7
- package/build/cjs/locales/ru/translations.json +32 -1
- package/build/cjs/locales/sv/translations.json +32 -1
- package/build/cjs/locales/tet/translations.json +32 -1
- package/build/cjs/locales/tg/translations.json +32 -1
- package/build/cjs/locales/uk/translations.json +32 -1
- package/build/cjs/locales/ur/translations.json +32 -1
- package/build/cjs/locales/uz/translations.json +32 -1
- package/build/cjs/locales/uz_Latn/translations.json +32 -1
- package/build/cjs/locales/vi/translations.json +32 -1
- package/build/cjs/locales/zh/translations.json +32 -1
- package/build/cjs/locales/zh_CN/translations.json +32 -1
- package/build/es/components/Interpretations/InterpretationModal/Comment.js +45 -0
- package/build/es/components/Interpretations/InterpretationModal/CommentAddForm.js +70 -0
- package/build/es/components/Interpretations/InterpretationModal/CommentDeleteButton.js +47 -0
- package/build/es/components/Interpretations/InterpretationModal/CommentUpdateForm.js +73 -0
- package/build/es/components/Interpretations/InterpretationModal/InterpretationModal.js +165 -0
- package/build/es/components/Interpretations/InterpretationModal/InterpretationThread.js +79 -0
- package/build/es/components/Interpretations/InterpretationModal/index.js +1 -0
- package/build/es/components/Interpretations/InterpretationModal/useModalContentWidth.js +28 -0
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationForm.js +71 -0
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationList.js +78 -0
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +112 -0
- package/build/es/components/Interpretations/InterpretationsUnit/index.js +1 -0
- package/build/es/components/Interpretations/common/Interpretation/Interpretation.js +87 -0
- package/build/es/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +43 -0
- package/build/es/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +33 -0
- package/build/es/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +85 -0
- package/build/es/components/Interpretations/common/Interpretation/index.js +2 -0
- package/build/es/components/Interpretations/common/Interpretation/useLike.js +45 -0
- package/build/es/components/Interpretations/common/Message/Message.js +41 -0
- package/build/es/components/Interpretations/common/Message/MessageButtonStrip.js +21 -0
- package/build/es/components/Interpretations/common/Message/MessageEditorContainer.js +30 -0
- package/build/es/components/Interpretations/common/Message/MessageIconButton.js +54 -0
- package/build/es/components/Interpretations/common/Message/MessageInput.js +16 -0
- package/build/es/components/Interpretations/common/Message/MessageStatsBar.js +21 -0
- package/build/es/components/Interpretations/common/Message/index.js +6 -0
- package/build/es/components/Interpretations/common/RichTextEditor/RichTextEditor.js +240 -0
- package/build/es/components/Interpretations/common/RichTextEditor/index.js +1 -0
- package/build/es/components/Interpretations/common/RichTextEditor/markdownHandler.js +128 -0
- package/build/es/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +9 -0
- package/build/es/components/Interpretations/common/UserMention/UserList.js +33 -0
- package/build/es/components/Interpretations/common/UserMention/UserMentionWrapper.js +202 -0
- package/build/es/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +17 -0
- package/build/es/components/Interpretations/common/UserMention/useUserSearchResults.js +63 -0
- package/build/es/components/Interpretations/common/index.js +3 -0
- package/build/es/index.js +2 -0
- package/build/es/locales/ar/translations.json +32 -1
- package/build/es/locales/ar_EG/translations.json +32 -1
- package/build/es/locales/ar_IQ/translations.json +32 -1
- package/build/es/locales/ckb/translations.json +32 -1
- package/build/es/locales/cs/translations.json +32 -1
- package/build/es/locales/da/translations.json +32 -1
- package/build/es/locales/en/translations.json +32 -1
- package/build/es/locales/es/translations.json +32 -1
- package/build/es/locales/fr/translations.json +32 -1
- package/build/es/locales/id/translations.json +32 -1
- package/build/es/locales/km/translations.json +32 -1
- package/build/es/locales/lo/translations.json +32 -1
- package/build/es/locales/my/translations.json +32 -1
- package/build/es/locales/nb/translations.json +32 -1
- package/build/es/locales/nl/translations.json +32 -1
- package/build/es/locales/or/translations.json +32 -1
- package/build/es/locales/prs/translations.json +32 -1
- package/build/es/locales/ps/translations.json +32 -1
- package/build/es/locales/pt/translations.json +32 -1
- package/build/es/locales/pt_BR/translations.json +32 -1
- package/build/es/locales/ro/translations.json +38 -7
- package/build/es/locales/ru/translations.json +32 -1
- package/build/es/locales/sv/translations.json +32 -1
- package/build/es/locales/tet/translations.json +32 -1
- package/build/es/locales/tg/translations.json +32 -1
- package/build/es/locales/uk/translations.json +32 -1
- package/build/es/locales/ur/translations.json +32 -1
- package/build/es/locales/uz/translations.json +32 -1
- package/build/es/locales/uz_Latn/translations.json +32 -1
- package/build/es/locales/vi/translations.json +32 -1
- package/build/es/locales/zh/translations.json +32 -1
- package/build/es/locales/zh_CN/translations.json +32 -1
- package/package.json +2 -1
|
@@ -83,6 +83,38 @@
|
|
|
83
83
|
"line list": "",
|
|
84
84
|
"map": "",
|
|
85
85
|
"visualization": "",
|
|
86
|
+
"Edit": "Editar",
|
|
87
|
+
"Write a reply": "",
|
|
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": "",
|
|
97
|
+
"Post interpretation": "",
|
|
98
|
+
"Interpretations": "Interpretações",
|
|
99
|
+
"Unlike": "",
|
|
100
|
+
"Like": "",
|
|
101
|
+
"Reply": "Responder",
|
|
102
|
+
"Share": "Partilhar",
|
|
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": "Opções",
|
|
125
157
|
"Hide": "",
|
|
126
|
-
"Update": "Actualizar",
|
|
127
158
|
"{{count}} org units": "",
|
|
128
159
|
"{{count}} org units_plural": "",
|
|
129
160
|
"{{count}} levels": "",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"Nothing found for {{searchTerm}}": "",
|
|
62
62
|
"Delete {{fileType}}": "",
|
|
63
63
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
64
|
-
"Cancel": "",
|
|
64
|
+
"Cancel": "Anulare",
|
|
65
65
|
"Delete": "Lichidare",
|
|
66
66
|
"File": "Fişier",
|
|
67
67
|
"New": "Nou",
|
|
@@ -84,6 +84,38 @@
|
|
|
84
84
|
"line list": "",
|
|
85
85
|
"map": "",
|
|
86
86
|
"visualization": "",
|
|
87
|
+
"Edit": "Editare",
|
|
88
|
+
"Write a reply": "",
|
|
89
|
+
"Post reply": "",
|
|
90
|
+
"Could not update comment": "",
|
|
91
|
+
"Enter comment text": "",
|
|
92
|
+
"Update": "Actualizare",
|
|
93
|
+
"Viewing interpretation: {{visualisationName}}": "",
|
|
94
|
+
"Could not load interpretation": "",
|
|
95
|
+
"The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
|
|
96
|
+
"Hide interpretation": "",
|
|
97
|
+
"Write an interpretation": "",
|
|
98
|
+
"Post interpretation": "",
|
|
99
|
+
"Interpretations": "",
|
|
100
|
+
"Unlike": "",
|
|
101
|
+
"Like": "",
|
|
102
|
+
"Reply": "",
|
|
103
|
+
"Share": "Partajare",
|
|
104
|
+
"See interpretation": "",
|
|
105
|
+
"Manage sharing": "",
|
|
106
|
+
"Could not update interpretation": "",
|
|
107
|
+
"Enter interpretation text": "",
|
|
108
|
+
"Bold text": "",
|
|
109
|
+
"Italic text": "",
|
|
110
|
+
"Link to a URL": "",
|
|
111
|
+
"Mention a user": "",
|
|
112
|
+
"Add emoji": "",
|
|
113
|
+
"Preview": "",
|
|
114
|
+
"Back to write mode": "",
|
|
115
|
+
"Too many results. Try refining the search.": "",
|
|
116
|
+
"Search for a user": "",
|
|
117
|
+
"Searching for \"{{searchText}}\"": "",
|
|
118
|
+
"No results found": "Nu au fost găsite rezultate",
|
|
87
119
|
"Created by": "",
|
|
88
120
|
"Anyone": "Oricine",
|
|
89
121
|
"Only you": "",
|
|
@@ -124,7 +156,6 @@
|
|
|
124
156
|
"New line list": "",
|
|
125
157
|
"Options": "",
|
|
126
158
|
"Hide": "",
|
|
127
|
-
"Update": "Actualizare",
|
|
128
159
|
"{{count}} org units_0": "",
|
|
129
160
|
"{{count}} org units_1": "",
|
|
130
161
|
"{{count}} org units_2": "",
|
|
@@ -193,7 +224,7 @@
|
|
|
193
224
|
"This week": "Săptămâna aceasta",
|
|
194
225
|
"Last week": "Săptămâna trecută",
|
|
195
226
|
"Last 4 weeks": "Ultimele 4 săptămâni",
|
|
196
|
-
"Last 12 weeks": "",
|
|
227
|
+
"Last 12 weeks": "Ultimele 12 săptămâni",
|
|
197
228
|
"Last 52 weeks": "Ultimele 52 de săptămâni",
|
|
198
229
|
"Weeks this year": "Săptămâni în anul curent",
|
|
199
230
|
"This bi-week": "",
|
|
@@ -251,21 +282,21 @@
|
|
|
251
282
|
"Actual reports": "",
|
|
252
283
|
"Actual reports on time": "",
|
|
253
284
|
"Expected reports": "",
|
|
254
|
-
"Program": "",
|
|
285
|
+
"Program": "Program",
|
|
255
286
|
"Select a program": "",
|
|
256
287
|
"Indicators": "Indicatori",
|
|
257
|
-
"Indicator group": "",
|
|
288
|
+
"Indicator group": "Grup de indicatori",
|
|
258
289
|
"All groups": "",
|
|
259
290
|
"Indicator": "Indicator",
|
|
260
291
|
"No indicator groups found": "",
|
|
261
292
|
"Loading indicator groups": "",
|
|
262
|
-
"Data elements": "",
|
|
293
|
+
"Data elements": "Elemente de date",
|
|
263
294
|
"Data element group": "",
|
|
264
295
|
"Data element": "",
|
|
265
296
|
"No data element groups found": "",
|
|
266
297
|
"Loading data element groups": "",
|
|
267
298
|
"Data sets": "",
|
|
268
|
-
"Data set": "",
|
|
299
|
+
"Data set": "Set de date",
|
|
269
300
|
"All data sets": "",
|
|
270
301
|
"Loading data sets": "",
|
|
271
302
|
"Event data items": "",
|
|
@@ -85,6 +85,38 @@
|
|
|
85
85
|
"line list": "",
|
|
86
86
|
"map": "Карта",
|
|
87
87
|
"visualization": "",
|
|
88
|
+
"Edit": "Редактировать",
|
|
89
|
+
"Write a reply": "Написать ответ",
|
|
90
|
+
"Post reply": "",
|
|
91
|
+
"Could not update comment": "",
|
|
92
|
+
"Enter comment text": "",
|
|
93
|
+
"Update": "Обновить",
|
|
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": "Написать перевод",
|
|
99
|
+
"Post interpretation": "",
|
|
100
|
+
"Interpretations": "Interpretations",
|
|
101
|
+
"Unlike": "Не нравится",
|
|
102
|
+
"Like": "Нравится",
|
|
103
|
+
"Reply": "Ответить",
|
|
104
|
+
"Share": "Поделиться",
|
|
105
|
+
"See interpretation": "",
|
|
106
|
+
"Manage sharing": "Управление совместным доступом",
|
|
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": "Предварительный просмотр",
|
|
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": "Результаты не найдены",
|
|
88
120
|
"Created by": "Создано",
|
|
89
121
|
"Anyone": "Любой",
|
|
90
122
|
"Only you": "",
|
|
@@ -125,7 +157,6 @@
|
|
|
125
157
|
"New line list": "",
|
|
126
158
|
"Options": "Параметры",
|
|
127
159
|
"Hide": "Скрыть",
|
|
128
|
-
"Update": "Обновить",
|
|
129
160
|
"{{count}} org units_0": "",
|
|
130
161
|
"{{count}} org units_1": "",
|
|
131
162
|
"{{count}} org units_2": "",
|
|
@@ -83,6 +83,38 @@
|
|
|
83
83
|
"line list": "",
|
|
84
84
|
"map": "",
|
|
85
85
|
"visualization": "",
|
|
86
|
+
"Edit": "Redigera",
|
|
87
|
+
"Write a reply": "",
|
|
88
|
+
"Post reply": "",
|
|
89
|
+
"Could not update comment": "",
|
|
90
|
+
"Enter comment text": "",
|
|
91
|
+
"Update": "Uppdatera",
|
|
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": "tolkningar",
|
|
99
|
+
"Unlike": "",
|
|
100
|
+
"Like": "",
|
|
101
|
+
"Reply": "Svar",
|
|
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": "Inga resultat hittades",
|
|
86
118
|
"Created by": "Skapad av",
|
|
87
119
|
"Anyone": "",
|
|
88
120
|
"Only you": "",
|
|
@@ -123,7 +155,6 @@
|
|
|
123
155
|
"New line list": "",
|
|
124
156
|
"Options": "Alternativ",
|
|
125
157
|
"Hide": "",
|
|
126
|
-
"Update": "Uppdatera",
|
|
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": "Edita",
|
|
86
|
+
"Write a reply": "",
|
|
87
|
+
"Post reply": "",
|
|
88
|
+
"Could not update comment": "",
|
|
89
|
+
"Enter comment text": "",
|
|
90
|
+
"Update": "Atualiza",
|
|
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": "Interpretasoens",
|
|
98
|
+
"Unlike": "",
|
|
99
|
+
"Like": "",
|
|
100
|
+
"Reply": "Hatán",
|
|
101
|
+
"Share": "Partilla",
|
|
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": "Kria husi",
|
|
86
118
|
"Anyone": "",
|
|
87
119
|
"Only you": "",
|
|
@@ -122,7 +154,6 @@
|
|
|
122
154
|
"New line list": "",
|
|
123
155
|
"Options": "Opsoens",
|
|
124
156
|
"Hide": "Subar",
|
|
125
|
-
"Update": "Atualiza",
|
|
126
157
|
"{{count}} org units": "",
|
|
127
158
|
"{{count}} levels": "",
|
|
128
159
|
"{{count}} groups": "",
|
|
@@ -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": "",
|
|
@@ -85,6 +85,38 @@
|
|
|
85
85
|
"line list": "",
|
|
86
86
|
"map": "",
|
|
87
87
|
"visualization": "",
|
|
88
|
+
"Edit": "",
|
|
89
|
+
"Write a reply": "",
|
|
90
|
+
"Post reply": "",
|
|
91
|
+
"Could not update comment": "",
|
|
92
|
+
"Enter comment text": "",
|
|
93
|
+
"Update": "Оновити",
|
|
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": "",
|
|
99
|
+
"Post interpretation": "",
|
|
100
|
+
"Interpretations": "",
|
|
101
|
+
"Unlike": "",
|
|
102
|
+
"Like": "Вподобати",
|
|
103
|
+
"Reply": "Відповісти",
|
|
104
|
+
"Share": "",
|
|
105
|
+
"See interpretation": "",
|
|
106
|
+
"Manage sharing": "",
|
|
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": "",
|
|
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": "",
|
|
88
120
|
"Created by": "Створено",
|
|
89
121
|
"Anyone": "",
|
|
90
122
|
"Only you": "",
|
|
@@ -125,7 +157,6 @@
|
|
|
125
157
|
"New line list": "",
|
|
126
158
|
"Options": "Опції",
|
|
127
159
|
"Hide": "Сховати",
|
|
128
|
-
"Update": "Оновити",
|
|
129
160
|
"{{count}} org units_0": "",
|
|
130
161
|
"{{count}} org units_1": "",
|
|
131
162
|
"{{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": "",
|
|
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": "Таҳрирлаш",
|
|
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": "xarita",
|
|
84
84
|
"visualization": "",
|
|
85
|
+
"Edit": "Tahrirlash",
|
|
86
|
+
"Write a reply": "Izoh yozing",
|
|
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": "Talqin yozish",
|
|
96
|
+
"Post interpretation": "",
|
|
97
|
+
"Interpretations": "Talqinlar",
|
|
98
|
+
"Unlike": "Аksincha",
|
|
99
|
+
"Like": "Kabi, oʼxshash",
|
|
100
|
+
"Reply": "Javob",
|
|
101
|
+
"Share": "Улашиш",
|
|
102
|
+
"See interpretation": "",
|
|
103
|
+
"Manage sharing": "Ulashishni boshqarish",
|
|
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": "Hech qanday natija topilmadi",
|
|
85
117
|
"Created by": "Томонидан яратилган",
|
|
86
118
|
"Anyone": "Kimdir",
|
|
87
119
|
"Only you": "",
|
|
@@ -122,7 +154,6 @@
|
|
|
122
154
|
"New line list": "",
|
|
123
155
|
"Options": "Вариант",
|
|
124
156
|
"Hide": "Berkitish",
|
|
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": "bản đồ",
|
|
84
84
|
"visualization": "",
|
|
85
|
+
"Edit": "Chỉnh sửa",
|
|
86
|
+
"Write a reply": "Viết phản hồi",
|
|
87
|
+
"Post reply": "",
|
|
88
|
+
"Could not update comment": "",
|
|
89
|
+
"Enter comment text": "",
|
|
90
|
+
"Update": "Cập nhật",
|
|
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": "Viết diễn giải",
|
|
96
|
+
"Post interpretation": "",
|
|
97
|
+
"Interpretations": "Diễn giải ",
|
|
98
|
+
"Unlike": "",
|
|
99
|
+
"Like": "Thích",
|
|
100
|
+
"Reply": "Trả lời",
|
|
101
|
+
"Share": "",
|
|
102
|
+
"See interpretation": "",
|
|
103
|
+
"Manage sharing": "Quản lý chia sẻ",
|
|
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": "Xem thử",
|
|
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": "Được tạo bởi",
|
|
86
118
|
"Anyone": "Bất kỳ ai",
|
|
87
119
|
"Only you": "",
|
|
@@ -122,7 +154,6 @@
|
|
|
122
154
|
"New line list": "",
|
|
123
155
|
"Options": "Tùy chọn",
|
|
124
156
|
"Hide": "Ẩn",
|
|
125
|
-
"Update": "Cập nhật",
|
|
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": "{{count}} 个组织单位",
|
|
127
158
|
"{{count}} levels": "{{count}} 级",
|
|
128
159
|
"{{count}} groups": "{{count}} 组",
|
|
@@ -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": "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": "",
|