@dhis2/analytics 26.9.6 → 26.10.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 (129) hide show
  1. package/build/cjs/__demo__/DataDimension.stories.js +53 -0
  2. package/build/cjs/api/dimensions.js +1 -1
  3. package/build/cjs/api/expression.js +20 -10
  4. package/build/cjs/components/DataDimension/Calculation/CalculationModal.js +1 -1
  5. package/build/cjs/components/DataDimension/DataDimension.js +4 -1
  6. package/build/cjs/components/DataDimension/Info/CalculationInfo.js +106 -0
  7. package/build/cjs/components/DataDimension/Info/DataElementInfo.js +135 -0
  8. package/build/cjs/components/DataDimension/Info/DataElementOperandInfo.js +188 -0
  9. package/build/cjs/components/DataDimension/Info/DataSetInfo.js +115 -0
  10. package/build/cjs/components/DataDimension/Info/EventDataItemInfo.js +111 -0
  11. package/build/cjs/components/DataDimension/Info/IndicatorInfo.js +179 -0
  12. package/build/cjs/components/DataDimension/Info/InfoPopover.js +58 -0
  13. package/build/cjs/components/DataDimension/Info/InfoTable.js +219 -0
  14. package/build/cjs/components/DataDimension/Info/ProgramIndicatorInfo.js +191 -0
  15. package/build/cjs/components/DataDimension/Info/styles/InfoPopover.style.js +10 -0
  16. package/build/cjs/components/DataDimension/ItemSelector.js +22 -5
  17. package/build/cjs/components/DataDimension/TransferOption.js +117 -0
  18. package/build/cjs/components/DataDimension/styles/TransferOption.style.js +10 -0
  19. package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
  20. package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
  21. package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
  22. package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
  23. package/build/cjs/components/styles/DimensionSelector.style.js +2 -2
  24. package/build/cjs/index.js +66 -10
  25. package/build/cjs/locales/ar/translations.json +96 -22
  26. package/build/cjs/locales/ar_IQ/translations.json +141 -44
  27. package/build/cjs/locales/bn/translations.json +458 -0
  28. package/build/cjs/locales/ckb/translations.json +137 -44
  29. package/build/cjs/locales/cs/translations.json +88 -20
  30. package/build/cjs/locales/da/translations.json +102 -23
  31. package/build/cjs/locales/en/translations.json +73 -9
  32. package/build/cjs/locales/es/translations.json +75 -9
  33. package/build/cjs/locales/es_419/translations.json +77 -9
  34. package/build/cjs/locales/fr/translations.json +77 -9
  35. package/build/cjs/locales/hi_IN/translations.json +458 -0
  36. package/build/cjs/locales/id/translations.json +95 -22
  37. package/build/cjs/locales/index.js +74 -70
  38. package/build/cjs/locales/km/translations.json +100 -23
  39. package/build/cjs/locales/lo/translations.json +73 -9
  40. package/build/cjs/locales/my/translations.json +101 -23
  41. package/build/cjs/locales/nb/translations.json +88 -20
  42. package/build/cjs/locales/ne/translations.json +77 -9
  43. package/build/cjs/locales/nl/translations.json +95 -22
  44. package/build/cjs/locales/or/translations.json +137 -44
  45. package/build/cjs/locales/prs/translations.json +102 -23
  46. package/build/cjs/locales/ps/translations.json +102 -23
  47. package/build/cjs/locales/pt/translations.json +73 -9
  48. package/build/cjs/locales/pt_BR/translations.json +95 -22
  49. package/build/cjs/locales/ro/translations.json +138 -44
  50. package/build/cjs/locales/ru/translations.json +77 -9
  51. package/build/cjs/locales/si/translations.json +102 -23
  52. package/build/cjs/locales/sv/translations.json +88 -20
  53. package/build/cjs/locales/tet/translations.json +101 -23
  54. package/build/cjs/locales/tg/translations.json +102 -23
  55. package/build/cjs/locales/uk/translations.json +96 -22
  56. package/build/cjs/locales/ur/translations.json +96 -22
  57. package/build/cjs/locales/uz_UZ_Cyrl/translations.json +95 -22
  58. package/build/cjs/locales/uz_UZ_Latn/translations.json +96 -22
  59. package/build/cjs/locales/vi/translations.json +73 -9
  60. package/build/cjs/locales/zh/translations.json +73 -9
  61. package/build/cjs/locales/zh_CN/translations.json +95 -22
  62. package/build/cjs/modules/dimensionListItem.js +3 -3
  63. package/build/cjs/modules/dimensionSelectorHelper.js +2 -2
  64. package/build/cjs/modules/valueTypes.js +50 -11
  65. package/build/es/__demo__/DataDimension.stories.js +42 -0
  66. package/build/es/api/dimensions.js +1 -1
  67. package/build/es/api/expression.js +19 -9
  68. package/build/es/components/DataDimension/Calculation/CalculationModal.js +2 -2
  69. package/build/es/components/DataDimension/DataDimension.js +4 -1
  70. package/build/es/components/DataDimension/Info/CalculationInfo.js +96 -0
  71. package/build/es/components/DataDimension/Info/DataElementInfo.js +127 -0
  72. package/build/es/components/DataDimension/Info/DataElementOperandInfo.js +178 -0
  73. package/build/es/components/DataDimension/Info/DataSetInfo.js +107 -0
  74. package/build/es/components/DataDimension/Info/EventDataItemInfo.js +103 -0
  75. package/build/es/components/DataDimension/Info/IndicatorInfo.js +169 -0
  76. package/build/es/components/DataDimension/Info/InfoPopover.js +54 -0
  77. package/build/es/components/DataDimension/Info/InfoTable.js +205 -0
  78. package/build/es/components/DataDimension/Info/ProgramIndicatorInfo.js +181 -0
  79. package/build/es/components/DataDimension/Info/styles/InfoPopover.style.js +4 -0
  80. package/build/es/components/DataDimension/ItemSelector.js +24 -7
  81. package/build/es/components/DataDimension/TransferOption.js +109 -0
  82. package/build/es/components/DataDimension/styles/TransferOption.style.js +4 -0
  83. package/build/es/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
  84. package/build/es/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
  85. package/build/es/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
  86. package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
  87. package/build/es/components/styles/DimensionSelector.style.js +2 -2
  88. package/build/es/index.js +1 -1
  89. package/build/es/locales/ar/translations.json +96 -22
  90. package/build/es/locales/ar_IQ/translations.json +141 -44
  91. package/build/es/locales/bn/translations.json +458 -0
  92. package/build/es/locales/ckb/translations.json +137 -44
  93. package/build/es/locales/cs/translations.json +88 -20
  94. package/build/es/locales/da/translations.json +102 -23
  95. package/build/es/locales/en/translations.json +73 -9
  96. package/build/es/locales/es/translations.json +75 -9
  97. package/build/es/locales/es_419/translations.json +77 -9
  98. package/build/es/locales/fr/translations.json +77 -9
  99. package/build/es/locales/hi_IN/translations.json +458 -0
  100. package/build/es/locales/id/translations.json +95 -22
  101. package/build/es/locales/index.js +4 -0
  102. package/build/es/locales/km/translations.json +100 -23
  103. package/build/es/locales/lo/translations.json +73 -9
  104. package/build/es/locales/my/translations.json +101 -23
  105. package/build/es/locales/nb/translations.json +88 -20
  106. package/build/es/locales/ne/translations.json +77 -9
  107. package/build/es/locales/nl/translations.json +95 -22
  108. package/build/es/locales/or/translations.json +137 -44
  109. package/build/es/locales/prs/translations.json +102 -23
  110. package/build/es/locales/ps/translations.json +102 -23
  111. package/build/es/locales/pt/translations.json +73 -9
  112. package/build/es/locales/pt_BR/translations.json +95 -22
  113. package/build/es/locales/ro/translations.json +138 -44
  114. package/build/es/locales/ru/translations.json +77 -9
  115. package/build/es/locales/si/translations.json +102 -23
  116. package/build/es/locales/sv/translations.json +88 -20
  117. package/build/es/locales/tet/translations.json +101 -23
  118. package/build/es/locales/tg/translations.json +102 -23
  119. package/build/es/locales/uk/translations.json +96 -22
  120. package/build/es/locales/ur/translations.json +96 -22
  121. package/build/es/locales/uz_UZ_Cyrl/translations.json +95 -22
  122. package/build/es/locales/uz_UZ_Latn/translations.json +96 -22
  123. package/build/es/locales/vi/translations.json +73 -9
  124. package/build/es/locales/zh/translations.json +73 -9
  125. package/build/es/locales/zh_CN/translations.json +95 -22
  126. package/build/es/modules/dimensionListItem.js +1 -1
  127. package/build/es/modules/dimensionSelectorHelper.js +2 -2
  128. package/build/es/modules/valueTypes.js +48 -10
  129. package/package.json +5 -5
@@ -19,6 +19,8 @@
19
19
  "About this map": "Acerca de este mapa",
20
20
  "About this line list": "Acerca de esta lista",
21
21
  "About this visualization": "Acerca de esta visualización",
22
+ "About this event chart": "",
23
+ "About this event report": "",
22
24
  "This app could not retrieve required data.": "Esta aplicación no pudo recuperar los datos requeridos.",
23
25
  "Network error": "Error de red",
24
26
  "Data / Edit calculation": "Datos / Editar cálculo",
@@ -48,6 +50,54 @@
48
50
  "All types": "Todos los tipos",
49
51
  "Disaggregation": "Desagregación",
50
52
  "No data": "No hay datos",
53
+ "Expression description": "",
54
+ "Error loading value": "",
55
+ "None": "Ninguno",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "",
59
+ "False": "",
60
+ "Value type": "",
61
+ "Aggregation type": "",
62
+ "Category combo": "",
63
+ "Option set": "",
64
+ "Group membership": "",
65
+ "Legend set(s)": "",
66
+ "Category option name": "",
67
+ "Category combo name": "",
68
+ "Categories name": "",
69
+ "Period type": "Tipo de período",
70
+ "Indicators": "Indicadores",
71
+ "Expiry days": "",
72
+ "Type": "Tipo",
73
+ "Data element": "Elemento de datos",
74
+ "Tracked entity attribute": "",
75
+ "Numerator description": "",
76
+ "Numerator expression": "",
77
+ "Denominator description": "",
78
+ "Denominator expression": "",
79
+ "Annualized": "",
80
+ "Yes": "Sí",
81
+ "No": "No",
82
+ "Indicator type": "",
83
+ "Decimals in output": "",
84
+ "There was a problem loading information for this data item.": "",
85
+ "Name": "Nombre",
86
+ "Description": "Descripción",
87
+ "Code": "",
88
+ "ID": "",
89
+ "Last updated date": "",
90
+ "Created date": "",
91
+ "Created by": "Creado por",
92
+ "Custom": "",
93
+ "Program": "Programa",
94
+ "Analytics type": "",
95
+ "Enrollment": "Inscripción",
96
+ "Event": "Evento",
97
+ "Analytics period boundaries": "",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "",
100
+ "Filter": "Filtro",
51
101
  "Search by data item name": "Búsqueda por nombre de elemento de datos",
52
102
  "No items selected": "No hay elementos seleccionados",
53
103
  "Selected Items": "Artículos seleccionados",
@@ -98,8 +148,6 @@
98
148
  "Open in this app": "Abrir en esta aplicación",
99
149
  "Close": "Cerrar",
100
150
  "Rename {{fileType}}": "Cambie el nombre de {{fileType}}",
101
- "Name": "Nombre",
102
- "Description": "Descripción",
103
151
  "Rename": "Cambie el nombre de",
104
152
  "{{- objectName}} (copy)": "{{- objectName}} (copia)",
105
153
  "Save {{fileType}} as": "Guardar {{fileType}} como",
@@ -135,7 +183,6 @@
135
183
  "Could not update interpretation": "No se ha podido actualizar la interpretación",
136
184
  "Enter interpretation text": "Introducir texto de interpretación",
137
185
  "Not available offline": "No disponible sin conexión",
138
- "Created by": "Creado por",
139
186
  "Anyone": "Quien sea",
140
187
  "Only you": "Sólo tú",
141
188
  "Others": "Otros",
@@ -143,7 +190,6 @@
143
190
  "Filter by name": "Filtrar por nombre",
144
191
  "Created": "Creado",
145
192
  "Last updated": "Última actualización",
146
- "Type": "Tipo",
147
193
  "Clear filters": "Limpiar filtros",
148
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} de {{totalNumberOfItems}}",
149
195
  "Open": "Abierto",
@@ -189,7 +235,6 @@
189
235
  "Select a level": "Seleccione un nivel",
190
236
  "Select a group": "Seleccione un grupo",
191
237
  "Deselect all": "Deseleccionar todo",
192
- "Period type": "Tipo de período",
193
238
  "Year": "Año",
194
239
  "Select year": "Seleccione el año",
195
240
  "Period": "Periodo",
@@ -265,6 +310,7 @@
265
310
  "Six-months": "Seis meses",
266
311
  "Financial Years": "Ejercicios financieros",
267
312
  "Years": "Años",
313
+ "Value: {{value}}": "",
268
314
  "Bold text": "Texto en negrita",
269
315
  "Italic text": "Texto en cursiva",
270
316
  "Link to a URL": "Enlace a una URL",
@@ -288,7 +334,6 @@
288
334
  "No results found": "No se han encontrado resultados",
289
335
  "Series": "Serie",
290
336
  "Category": "Categoría",
291
- "Filter": "Filtro",
292
337
  "Columns": "Columnas",
293
338
  "Rows": "Filas",
294
339
  "Points": "Puntos",
@@ -297,16 +342,13 @@
297
342
  "Actual reports": "Informes reales",
298
343
  "Actual reports on time": "Informes reales a tiempo",
299
344
  "Expected reports": "Informes previstos",
300
- "Program": "Programa",
301
345
  "Select a program": "Seleccione un programa",
302
- "Indicators": "Indicadores",
303
346
  "Indicator group": "Grupo de indicadores",
304
347
  "All groups": "Todos los grupos",
305
348
  "Indicator": "Indicador",
306
349
  "No indicator groups found": "No se han encontrado grupos de indicadores",
307
350
  "Loading indicator groups": "Grupos de indicadores de carga",
308
351
  "Data element group": "Grupo de elementos de datos",
309
- "Data element": "Elemento de datos",
310
352
  "No data element groups found": "No se han encontrado grupos de elementos de datos",
311
353
  "Loading data element groups": "Carga de grupos de elementos de datos",
312
354
  "Data sets": "Sets de datos",
@@ -355,9 +397,35 @@
355
397
  "{{thresholdFactor}} × Modified Z-score high": "{{thresholdFactor}} × Puntuación Z modificada alta",
356
398
  "{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Puntuación Z baja",
357
399
  "{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Puntuación Z alta",
400
+ "Not applicable": "",
358
401
  "Data": "Datos",
359
402
  "Organisation unit": "Unidad organizativa",
360
403
  "Assigned Categories": "Categorías asignadas",
404
+ "Text": "",
405
+ "Long text": "",
406
+ "Multi text": "",
407
+ "Letter": "",
408
+ "Phone number": "",
409
+ "Email": "",
410
+ "Yes/No": "",
411
+ "Yes Only": "",
412
+ "Date": "Fecha",
413
+ "Date & Time": "",
414
+ "Time": "",
415
+ "Unit interval": "",
416
+ "Percentage": "",
417
+ "Integer": "",
418
+ "Positive Integer": "",
419
+ "Negative Integer": "",
420
+ "Positive or Zero Integer": "",
421
+ "Tracker Associate": "",
422
+ "Username": "Nombre de usuario",
423
+ "Coordinate": "Coordenadas",
424
+ "Reference": "",
425
+ "Age": "",
426
+ "URL": "URL",
427
+ "Image": "",
428
+ "GeoJSON": "",
361
429
  "Pivot table": "Tabla dinámica",
362
430
  "Area": "Área",
363
431
  "Stacked area": "Área apilada",
@@ -19,6 +19,8 @@
19
19
  "About this map": "À propos de cette carte",
20
20
  "About this line list": "",
21
21
  "About this visualization": "À propos de cette visualisation",
22
+ "About this event chart": "",
23
+ "About this event report": "",
22
24
  "This app could not retrieve required data.": "Cette application n'a pas pu récupérer les données nécessaires.",
23
25
  "Network error": "Erreur réseau",
24
26
  "Data / Edit calculation": "",
@@ -48,6 +50,54 @@
48
50
  "All types": "Tous les types",
49
51
  "Disaggregation": "Disaggregation",
50
52
  "No data": "Aucune donnée",
53
+ "Expression description": "Description de l'expression",
54
+ "Error loading value": "",
55
+ "None": "Aucun",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "Vrai",
59
+ "False": "Faux",
60
+ "Value type": "Type de valeur",
61
+ "Aggregation type": "Type d'agrégation",
62
+ "Category combo": "Combinaison de catégorie",
63
+ "Option set": "Ensemble d'options",
64
+ "Group membership": "",
65
+ "Legend set(s)": "",
66
+ "Category option name": "",
67
+ "Category combo name": "",
68
+ "Categories name": "",
69
+ "Period type": "Type de période",
70
+ "Indicators": "Indicateurs",
71
+ "Expiry days": "Jours d'expiration",
72
+ "Type": "Type",
73
+ "Data element": "Élément de données",
74
+ "Tracked entity attribute": "Attribut d'entité suivie",
75
+ "Numerator description": "Description du numérateur",
76
+ "Numerator expression": "",
77
+ "Denominator description": "Description du dénominateur",
78
+ "Denominator expression": "",
79
+ "Annualized": "Annualisé",
80
+ "Yes": "Oui",
81
+ "No": "Non",
82
+ "Indicator type": "Type d'indicateur",
83
+ "Decimals in output": "",
84
+ "There was a problem loading information for this data item.": "",
85
+ "Name": "Nom",
86
+ "Description": "Description",
87
+ "Code": "Code",
88
+ "ID": "ID",
89
+ "Last updated date": "",
90
+ "Created date": "Date de création",
91
+ "Created by": "Créé par",
92
+ "Custom": "Personnalisé",
93
+ "Program": "Programme",
94
+ "Analytics type": "Type d'analytique",
95
+ "Enrollment": "Inscription",
96
+ "Event": "Événements",
97
+ "Analytics period boundaries": "Limites de période d'analytique",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "Expression",
100
+ "Filter": "Filtrer",
51
101
  "Search by data item name": "Rechercher par le nom de la donnée",
52
102
  "No items selected": "Aucun élément sélectionné",
53
103
  "Selected Items": "Éléments sélectionnés",
@@ -98,8 +148,6 @@
98
148
  "Open in this app": "Ouvrir dans cette app",
99
149
  "Close": "Fermer",
100
150
  "Rename {{fileType}}": "Renommer {{fileType}}",
101
- "Name": "Nom",
102
- "Description": "Description",
103
151
  "Rename": "Renommer",
104
152
  "{{- objectName}} (copy)": "",
105
153
  "Save {{fileType}} as": "Enregistrer {{fileType}} comme",
@@ -135,7 +183,6 @@
135
183
  "Could not update interpretation": "Échec de l'actualisation de l'interprétation",
136
184
  "Enter interpretation text": "",
137
185
  "Not available offline": "Non disponible hors ligne",
138
- "Created by": "Créé par",
139
186
  "Anyone": "Toute personne",
140
187
  "Only you": "",
141
188
  "Others": "Autres",
@@ -143,7 +190,6 @@
143
190
  "Filter by name": "Filtrer par nom",
144
191
  "Created": "Créé",
145
192
  "Last updated": "Dernière mise à jour",
146
- "Type": "Type",
147
193
  "Clear filters": "Effacer les filtres",
148
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
149
195
  "Open": "Ouvrir",
@@ -189,7 +235,6 @@
189
235
  "Select a level": "Sélectionnez un niveau",
190
236
  "Select a group": "Sélectionner un groupe",
191
237
  "Deselect all": "Desélectionner tout",
192
- "Period type": "Type de période",
193
238
  "Year": "Année",
194
239
  "Select year": "Sélectionnez année",
195
240
  "Period": "Période",
@@ -265,6 +310,7 @@
265
310
  "Six-months": "Semestres",
266
311
  "Financial Years": "Années fiscales",
267
312
  "Years": "Années",
313
+ "Value: {{value}}": "",
268
314
  "Bold text": "Texte en gras",
269
315
  "Italic text": "",
270
316
  "Link to a URL": "",
@@ -288,7 +334,6 @@
288
334
  "No results found": "Aucun résultat trouvé",
289
335
  "Series": "Séries",
290
336
  "Category": "Catégorie",
291
- "Filter": "Filtrer",
292
337
  "Columns": "Colonnes",
293
338
  "Rows": "Lignes",
294
339
  "Points": "Points",
@@ -297,16 +342,13 @@
297
342
  "Actual reports": "Rapports réels",
298
343
  "Actual reports on time": "Rapports réels à temps",
299
344
  "Expected reports": "Rapports attendus",
300
- "Program": "Programme",
301
345
  "Select a program": "Sélectionnez un programme",
302
- "Indicators": "Indicateurs",
303
346
  "Indicator group": "Groupe d'indicateurs",
304
347
  "All groups": " Tous les groupes",
305
348
  "Indicator": "Indicateur",
306
349
  "No indicator groups found": "Aucun groupe d'indicateurs trouvé",
307
350
  "Loading indicator groups": "Chargement des groupes d'indicateurs",
308
351
  "Data element group": "Groupe d'éléments de données",
309
- "Data element": "Élément de données",
310
352
  "No data element groups found": "Aucun groupe d'éléments de donnée trouvé",
311
353
  "Loading data element groups": "Chargement de groupes d'éléments de données",
312
354
  "Data sets": "Ensembles de données",
@@ -355,9 +397,35 @@
355
397
  "{{thresholdFactor}} × Modified Z-score high": "{{thresholdFactor}} × Modifié Z-score élevé",
356
398
  "{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Z-score faible",
357
399
  "{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Z-score élevé",
400
+ "Not applicable": "",
358
401
  "Data": "Données",
359
402
  "Organisation unit": "Unité d'organisation",
360
403
  "Assigned Categories": "Catégories attribuées",
404
+ "Text": "Texte",
405
+ "Long text": "Texte long",
406
+ "Multi text": "",
407
+ "Letter": "Lettre",
408
+ "Phone number": "Numéro de téléphone",
409
+ "Email": "Adresse e-mail",
410
+ "Yes/No": "Oui / Non",
411
+ "Yes Only": "Oui seulement",
412
+ "Date": "Date",
413
+ "Date & Time": "Date & Heure",
414
+ "Time": "Heure",
415
+ "Unit interval": "Intervalle unités",
416
+ "Percentage": "Pourcentage",
417
+ "Integer": "Nombre Entier",
418
+ "Positive Integer": "Entier positif",
419
+ "Negative Integer": "Entier Négatif",
420
+ "Positive or Zero Integer": "Entier Positif ou Zéro",
421
+ "Tracker Associate": "Tracker associé",
422
+ "Username": "Nom d'utilisateur",
423
+ "Coordinate": "Coordonnée",
424
+ "Reference": "Reférence",
425
+ "Age": "Âge",
426
+ "URL": "URL",
427
+ "Image": "Image",
428
+ "GeoJSON": "GeoJSON",
361
429
  "Pivot table": "Tableau croisé dynamique",
362
430
  "Area": "Aire",
363
431
  "Stacked area": "Zone empilée",