@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
|
@@ -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": "",
|
|
@@ -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": "",
|