@kando-env/kando-ui 1.2.75-alpha.78 → 1.2.75-alpha.8
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/lib/Router.js +6 -5
- package/lib/Widgets/EventsCarousel/EventsCarousel.js +9 -7
- package/lib/Widgets/EventsRow/EventsRow.js +9 -7
- package/lib/Widgets/Map/Map.js +148 -39
- package/lib/Widgets/Map/areas/AreaPolygons.js +6 -1
- package/lib/Widgets/Map/events/EventIndicator.js +46 -21
- package/lib/Widgets/Map/events/EventIndicatorHover.js +252 -0
- package/lib/Widgets/Map/events/EventPath.js +37 -16
- package/lib/Widgets/Map/events/EventPathHover.js +81 -0
- package/lib/Widgets/Map/events/NetworkForSpecificEvent.js +102 -10
- package/lib/Widgets/Map/points/PointMarker.js +460 -13
- package/lib/Widgets/Map/points/PointMarkers.js +12 -31
- package/lib/Widgets/MostPolluting/Areas/AreaBox/PieChart/PieChart.js +2 -2
- package/lib/Widgets/MostPolluting/Factories/FactoryBox/PieChart/PieChart.js +2 -2
- package/lib/Widgets/MostPolluting/components/ChangePercent.js +6 -24
- package/lib/Widgets/QualitySummary/PieChart/PieChart.js +4 -6
- package/lib/Widgets/QualitySummary/PollutedLine/PollutedLine.js +3 -5
- package/lib/Widgets/QualitySummary/QualitySummary.js +5 -10
- package/lib/assets/icons/index.js +0 -8
- package/lib/components/CustomInputs/DoubleTabs/styles.js +2 -2
- package/lib/components/DischargeHeatmap/DischargeHeatmap.test.js +2 -2
- package/lib/components/Header/InfoBar/InfoBar.js +2 -6
- package/lib/components/Header/KandoNavbar/KandoNavbar.js +1 -3
- package/lib/components/Header/Toolbar/CustomerMenu/CustomerMenu.js +2 -4
- package/lib/components/Header/Toolbar/SearchDropdown/SearchDropdown.js +3 -2
- package/lib/components/Sector/Sector.test.js +11 -4
- package/lib/components/SevereEvent/SevereEvent.js +7 -5
- package/lib/components/TimeRangeSelector/constants.js +2 -2
- package/lib/hooks/useApiWithDashboardQuery.js +4 -2
- package/lib/hooks/useUserTimeZone.js +2 -2
- package/lib/i18n/en.json +29 -63
- package/lib/i18n/fr.json +424 -655
- package/lib/i18n/he.json +6 -40
- package/lib/i18n/it.json +190 -421
- package/lib/index.js +1 -8
- package/lib/macros/getVersion.js +2 -2
- package/lib/pages/AreaPage/AreaPage.js +2 -4
- package/lib/pages/AreaPage/Dashboard/Sites/Sites.js +3 -3
- package/lib/pages/AreaPage/Dashboard/Sites/styles.js +3 -3
- package/lib/pages/CovidPage/CovidPage.js +2 -7
- package/lib/pages/EventsPage/EventsMapContainer/EventsMapContainer.js +5 -2
- package/lib/pages/EventsPage/EventsPage.js +2 -7
- package/lib/pages/EventsPage/events/EventsStyle.scss +0 -5
- package/lib/pages/EventsPage/events/event_info/EventDetails.js +18 -74
- package/lib/pages/EventsPage/events/event_info/EventInfoStyle.scss +0 -16
- package/lib/pages/EventsPage/events/event_info/sources/Source.js +2 -2
- package/lib/pages/EventsPage/events/events_list/EventItem.js +19 -9
- package/lib/pages/EventsPage/events/events_list/EventsList.js +14 -28
- package/lib/pages/EventsPage/events/events_list/Filter/FilterContainer.js +2 -2
- package/lib/pages/EventsPage/events/events_list/Filter/FilterItem.js +1 -4
- package/lib/pages/EventsPage/events/events_list/Filter/FilterStyle.scss +1 -1
- package/lib/pages/ImportFileWizard/ValidationForm.js +12 -7
- package/lib/pages/NotificationsPage/NotificationsPage.js +2 -9
- package/lib/pages/NotificationsPageV2/components/NotificationsUtils.js +1 -5
- package/lib/pages/OldSitePage/OldSitePage.js +2 -4
- package/lib/pages/ProfilePage/PasswordModal/PasswordModal.js +8 -51
- package/lib/pages/ProfilePage/ProfilePage.js +2 -10
- package/lib/pages/SamplingsPage/DesktopActions/DownloadCSV.js +2 -3
- package/lib/pages/SamplingsPage/DesktopActions/UploadLabResult.js +2 -6
- package/lib/pages/SamplingsPage/NavigationDropdown.js +2 -9
- package/lib/pages/SamplingsPage/NewSamplingAction.js +4 -10
- package/lib/pages/SamplingsPage/SamplingActionDropdown.js +189 -0
- package/lib/pages/SamplingsPage/SamplingMobileModal.js +17 -1
- package/lib/pages/SamplingsPage/SamplingProperties/ImagePreviewModal.js +19 -41
- package/lib/pages/SamplingsPage/SamplingProperties/ImageUpload.js +2 -2
- package/lib/pages/SamplingsPage/SamplingProperties/SamplingProperties.js +12 -33
- package/lib/pages/SamplingsPage/SamplingProperties/SamplingPropertiesForm.js +19 -14
- package/lib/pages/SamplingsPage/SamplingProperties/SamplingPropertiesHead.js +19 -26
- package/lib/pages/SamplingsPage/SamplingProperties/SamplingPropertiesHeadMobile.js +11 -21
- package/lib/pages/SamplingsPage/SamplingProperties/samplingPropertiesUtils.js +4 -14
- package/lib/pages/SamplingsPage/SamplingProperties/style.module.scss +1 -5
- package/lib/pages/SamplingsPage/SamplingsMobileItem.js +3 -12
- package/lib/pages/SamplingsPage/SamplingsPage.js +3 -9
- package/lib/pages/SamplingsPage/SamplingsPageContainer.js +6 -9
- package/lib/pages/SamplingsPage/samplingsPageUtils.js +34 -77
- package/lib/pages/SamplingsPage/style.module.scss +1 -1
- package/lib/pages/SamplingsPage/table.styles.scss +6 -8
- package/lib/pages/SitePage/SamplingParameters/ParametersContainer/ParametersContainer.js +4 -5
- package/lib/pages/SitePage/SamplingParameters/charts/ParametersChart.js +3 -5
- package/lib/pages/SitePage/SamplingParameters/charts/options/options.js +23 -90
- package/lib/pages/SitePage/SamplingParameters/dataParser.js +6 -18
- package/lib/pages/SitePage/SitePage.js +2 -4
- package/lib/pages/UtilityDashboardPage/MostSevereEvents/MostSevereEvents.js +9 -7
- package/lib/pages/UtilityDashboardPage/UtilityDashboard.js +1 -6
- package/lib/pages/UtilityDashboardPage/UtilityDashboardPage.js +2 -4
- package/lib/pages/WbeDashboard/SummaryGraph.js +6 -15
- package/lib/pages/WbeDashboard/WbeDashboardPage.js +3 -10
- package/lib/store/areas/actions.js +2 -19
- package/lib/store/events/reducer.js +2 -4
- package/lib/store/permissions/permissionsSlice.js +1 -5
- package/lib/styles.scss +4 -5
- package/lib/ui-kit/Button/Button.test.js +11 -26
- package/lib/ui-kit/DropDown/DropDown.js +6 -12
- package/lib/ui-kit/DropDown/DropDown.test.js +41 -50
- package/lib/ui-kit/ImageUploadButton/ImageUploadButton.js +2 -9
- package/lib/ui-kit/InfoTooltip/InfoTooltip.js +3 -4
- package/lib/ui-kit/KandoTable/KandoTable.test.js +43 -46
- package/lib/utilities/i18n.js +1 -6
- package/lib/utilities/urls.js +5 -8
- package/package.json +2 -6
- package/lib/Widgets/Map/MapUtils.js +0 -103
- package/lib/Widgets/Map/events/Event.js +0 -69
- package/lib/Widgets/Map/events/EventUtils.js +0 -211
- package/lib/Widgets/Map/events/PointOfEvent.js +0 -135
- package/lib/Widgets/Map/events/PointsForSpecificEvent.js +0 -55
- package/lib/Widgets/Map/events/Snail.js +0 -60
- package/lib/Widgets/Map/points/PointUtils.js +0 -368
- package/lib/Widgets/MostPolluting/components/ChangePercent.test.js +0 -62
- package/lib/Widgets/QualitySummary/PieChart/PieChart.test.js +0 -75
- package/lib/Widgets/QualitySummary/PollutedLine/PollutedLine.test.js +0 -52
- package/lib/assets/icons/close-modal.svg +0 -8
- package/lib/components/DischargeHeatmap/mocks/handlers.js +0 -19
- package/lib/hooks/useUserTimeZone.test.js +0 -45
- package/lib/i18n/en_uk.json +0 -3759
- package/lib/pages/EventsPage/events/events_list/EventUtils.js +0 -19
- package/lib/pages/SamplingsPage/ActionsDropDown/LabResultValue.js +0 -43
- package/lib/pages/SamplingsPage/ActionsDropDown/LabResultValue.test.js +0 -39
- package/lib/pages/SamplingsPage/ActionsDropDown/SamplingActionContainer.js +0 -182
- package/lib/pages/SamplingsPage/ActionsDropDown/SamplingActionDropdown.js +0 -74
- package/lib/pages/SamplingsPage/ActionsDropDown/SamplingActions.js +0 -48
- package/lib/pages/SamplingsPage/ActionsDropDown/ViewLabResult.js +0 -119
- package/lib/pages/SamplingsPage/SamplingProperties/ManholeImageMobile.js +0 -63
- package/lib/pages/SamplingsPage/SamplingProperties/SamplerInProcess.js +0 -57
- package/lib/pages/SamplingsPage/SamplingProperties/styles.js +0 -27
- package/lib/test/mocks/browser.js +0 -23
- package/lib/test/test-utils.js +0 -61
package/lib/i18n/en.json
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
"en": {
|
|
3
3
|
"languages": {
|
|
4
4
|
"en": "English",
|
|
5
|
-
"en_uk": "English (UK)",
|
|
6
5
|
"he": "Hebrew",
|
|
7
6
|
"fr": "French",
|
|
8
7
|
"it": "Italian"
|
|
@@ -93,10 +92,6 @@
|
|
|
93
92
|
"removed": "<b>%{sensor}</b> was removed from the list"
|
|
94
93
|
}
|
|
95
94
|
},
|
|
96
|
-
"copy": {
|
|
97
|
-
"success": "Copied!",
|
|
98
|
-
"failed": "Copy failed"
|
|
99
|
-
},
|
|
100
95
|
"errors": {
|
|
101
96
|
"messages": {
|
|
102
97
|
"non_editable": "Can't be edited"
|
|
@@ -226,7 +221,7 @@
|
|
|
226
221
|
"edit": "Edit existing %{model}"
|
|
227
222
|
},
|
|
228
223
|
"info_tooltip": {
|
|
229
|
-
"quality_summary": "The utility's quality breakdown shows
|
|
224
|
+
"quality_summary": "The utility's quality breakdown shows effluent status at a glance like a compass.\nThe left pie shows the relation between the amount of clear and polluted sewage in your utility. The bars on the right show the breakdown of the polluted sewage by contamination severity.\nThis information gives a clear picture of the utility's effluent quality status. You can use this feature to observe trends and to understand if the measures taken to mitigate any issues are having the desired impact.\nTrends are compared to the previous period (e.g. 34% down meaning your sewer is 34% cleaner than at the last observation).",
|
|
230
225
|
"most_significant_events": "The four most significant pollution events in the utility for the selected time range.\nThey are arranged either by severity or period.",
|
|
231
226
|
"discharge_pattern": "The colored squares indicate the day and time of the discharge;\nthe deeper the color the higher the concentration was during that period.\nThis information allows you to communicate your trend observations to the factory and show clearly how it matches their behavior, and can also provide a useful guide to improve pre-treatment planning, indicating the best times to take samples.",
|
|
232
227
|
"pollution_score": "A 1-100 score that takes into account pollution severity and the period of any event.\nThe goal is to have as low a score as possible."
|
|
@@ -237,8 +232,8 @@
|
|
|
237
232
|
"update": "Update %{model}",
|
|
238
233
|
"submit": "Save %{model}"
|
|
239
234
|
},
|
|
240
|
-
"groups": "
|
|
241
|
-
"collectors": "
|
|
235
|
+
"groups": "Factories",
|
|
236
|
+
"collectors": "Collectors",
|
|
242
237
|
"points": "Manholes",
|
|
243
238
|
"letters": "Letters",
|
|
244
239
|
"yearly_schedule": "Yearly schedule",
|
|
@@ -391,7 +386,7 @@
|
|
|
391
386
|
"water_authority_overview": "Overview",
|
|
392
387
|
"water_authority": "Client",
|
|
393
388
|
"kpi": "KPI",
|
|
394
|
-
"groups": "
|
|
389
|
+
"groups": "Factories",
|
|
395
390
|
"weekly_report": "Weekly Report",
|
|
396
391
|
"dashboard_v2": "Utility Dashboard (Beta)"
|
|
397
392
|
},
|
|
@@ -433,7 +428,7 @@
|
|
|
433
428
|
},
|
|
434
429
|
"sampling_day_screen": {
|
|
435
430
|
"add_sampling": "Add Sampling",
|
|
436
|
-
"show_groups_on_map": "Show
|
|
431
|
+
"show_groups_on_map": "Show Factories On Map",
|
|
437
432
|
"hide_map": "Hide Map",
|
|
438
433
|
"to_sampling": "Sampling",
|
|
439
434
|
"water_consumption": "W.Consumption",
|
|
@@ -839,7 +834,7 @@
|
|
|
839
834
|
},
|
|
840
835
|
"group_type": {
|
|
841
836
|
"groups/factory": "Factory",
|
|
842
|
-
"groups/collectors": "
|
|
837
|
+
"groups/collectors": "Collectors",
|
|
843
838
|
"groups/pump_station": "Pump Station",
|
|
844
839
|
"groups/wastewater_treatment_plant": "WWTP",
|
|
845
840
|
"groups/water_level": "Water Level",
|
|
@@ -1200,7 +1195,7 @@
|
|
|
1200
1195
|
"monitored_with_device_and_exception": "Monitored Manhole w. Device and Exception",
|
|
1201
1196
|
"warn_full_bottle": "Full Bottle Warning"
|
|
1202
1197
|
},
|
|
1203
|
-
"upload_groups_list": "Uploading
|
|
1198
|
+
"upload_groups_list": "Uploading Factories List ...",
|
|
1204
1199
|
"filter_groups": "Filter Sites",
|
|
1205
1200
|
"pollution_view": "Switch to Pollution Map",
|
|
1206
1201
|
"assets_view": "Switch to Assets Map",
|
|
@@ -2345,9 +2340,9 @@
|
|
|
2345
2340
|
"pollution_rate_br": "Pollution<br/>Rate",
|
|
2346
2341
|
"pie_title": "Pollution Areas",
|
|
2347
2342
|
"group_list_title": "<strong>Groups</strong> list in %{type} <strong>%{name}</strong>",
|
|
2348
|
-
"collector_list_title": "<strong>
|
|
2343
|
+
"collector_list_title": "<strong>Collectors</strong> list in %{type} <strong>%{name}</strong>",
|
|
2349
2344
|
"group_list_title_no_area": "<strong>Groups</strong> list which do not belong to any area",
|
|
2350
|
-
"collector_list_title_no_area": "<strong>
|
|
2345
|
+
"collector_list_title_no_area": "<strong>Collectors</strong> list which do not belong to any area",
|
|
2351
2346
|
"data_related_to": "* The information is related to %{type} <strong>%{name}</strong>",
|
|
2352
2347
|
"data_related_to_no_area": "* The information is related to sites which do not belong to any area",
|
|
2353
2348
|
"position_change": "Trend",
|
|
@@ -2535,11 +2530,11 @@
|
|
|
2535
2530
|
"project_management": {
|
|
2536
2531
|
"title": "Deployment Management",
|
|
2537
2532
|
"kpi": {
|
|
2538
|
-
"most_polluted_collectors": "Most Polluted
|
|
2533
|
+
"most_polluted_collectors": "Most Polluted Collectors",
|
|
2539
2534
|
"detection": "Detection",
|
|
2540
2535
|
"upstream_detection": "Upstream Detection",
|
|
2541
|
-
"lowest_collectors_detection": "Lowest
|
|
2542
|
-
"most_polluted_factories": "Most Polluted
|
|
2536
|
+
"lowest_collectors_detection": "Lowest Collectors Detection",
|
|
2537
|
+
"most_polluted_factories": "Most Polluted Factories"
|
|
2543
2538
|
},
|
|
2544
2539
|
"period": "Period",
|
|
2545
2540
|
"2_months": "2 Months",
|
|
@@ -2549,10 +2544,10 @@
|
|
|
2549
2544
|
"downstream_detection": "Downstream Detection",
|
|
2550
2545
|
"minimum_deployment1": "A minimum of ",
|
|
2551
2546
|
"minimum_deployment2": "units are required to cover the selected area.",
|
|
2552
|
-
"additional_deployment_info1": "Please note, currently you have %{collectors_poor_detection}
|
|
2547
|
+
"additional_deployment_info1": "Please note, currently you have %{collectors_poor_detection} collectors in the selected area, with poor upstream detection.",
|
|
2553
2548
|
"additional_deployment_info2": "Please consider, adding more units upstream, to increase the detection rate",
|
|
2554
|
-
"collectors": "
|
|
2555
|
-
"factories": "
|
|
2549
|
+
"collectors": "Collectors",
|
|
2550
|
+
"factories": "Factories",
|
|
2556
2551
|
"low_detection_advice": "Low Detection! Please consider installing more units in the upstream.",
|
|
2557
2552
|
"legend": {
|
|
2558
2553
|
"legend": "Legend",
|
|
@@ -2894,7 +2889,6 @@
|
|
|
2894
2889
|
"back": "Go back"
|
|
2895
2890
|
},
|
|
2896
2891
|
"events_overview": {
|
|
2897
|
-
"more_than": "More than",
|
|
2898
2892
|
"floating_graph": {
|
|
2899
2893
|
"time_selection": {
|
|
2900
2894
|
"one_day": "1 Day",
|
|
@@ -3001,7 +2995,6 @@
|
|
|
3001
2995
|
"area_filter_item": "Area",
|
|
3002
2996
|
"sector_filter_item": "Sector",
|
|
3003
2997
|
"sampling_status_filter_item": "Status",
|
|
3004
|
-
"sampling_mode_filter_item": "Sampling Mode",
|
|
3005
2998
|
"sampling_id_filter_item": "ID",
|
|
3006
2999
|
"site_filter_item": "Site",
|
|
3007
3000
|
"lab_filter_item": "Lab"
|
|
@@ -3037,10 +3030,6 @@
|
|
|
3037
3030
|
"samplings_options": {
|
|
3038
3031
|
"with": "With",
|
|
3039
3032
|
"without": "Without"
|
|
3040
|
-
},
|
|
3041
|
-
"sampling_mode": {
|
|
3042
|
-
"manual": "Manual",
|
|
3043
|
-
"automatic": "Automatic"
|
|
3044
3033
|
}
|
|
3045
3034
|
}
|
|
3046
3035
|
},
|
|
@@ -3081,7 +3070,7 @@
|
|
|
3081
3070
|
"utility-score": "Utility Score",
|
|
3082
3071
|
"show-map": "Show Map",
|
|
3083
3072
|
"areas": "Areas",
|
|
3084
|
-
"Factories": "
|
|
3073
|
+
"Factories": "Factories",
|
|
3085
3074
|
"wwtps": "WWTPs"
|
|
3086
3075
|
},
|
|
3087
3076
|
"quality-summary": {
|
|
@@ -3097,7 +3086,7 @@
|
|
|
3097
3086
|
"undefined": "Could not be defined"
|
|
3098
3087
|
},
|
|
3099
3088
|
"most-common-damage": {
|
|
3100
|
-
"title": "
|
|
3089
|
+
"title": "Most Common Damage Types",
|
|
3101
3090
|
"coming-soon": "Coming soon",
|
|
3102
3091
|
"pipes": "Pipes/ Infrastructure",
|
|
3103
3092
|
"bacteria": "Bacteria/ process",
|
|
@@ -3108,10 +3097,10 @@
|
|
|
3108
3097
|
"most-polluting": {
|
|
3109
3098
|
"tabs": {
|
|
3110
3099
|
"areas": "Areas",
|
|
3111
|
-
"factories": "
|
|
3100
|
+
"factories": "Factories",
|
|
3112
3101
|
"wwtps": "WWTPs",
|
|
3113
3102
|
"pumping-station": "Pumping stations",
|
|
3114
|
-
"collectors": "
|
|
3103
|
+
"collectors": "Collectors"
|
|
3115
3104
|
},
|
|
3116
3105
|
"select": {
|
|
3117
3106
|
"area_most_polluting": "Sorted by pollution",
|
|
@@ -3126,13 +3115,13 @@
|
|
|
3126
3115
|
"show-more": "Show More",
|
|
3127
3116
|
"sector2": "Sector ",
|
|
3128
3117
|
"show-less": "Show less",
|
|
3129
|
-
"factories": "
|
|
3118
|
+
"factories": "Factories",
|
|
3130
3119
|
"most-polluting": "Most Polluting",
|
|
3131
3120
|
"most-clean": "Most Clean",
|
|
3132
3121
|
"order-by-improvements": "Sorted by improvement",
|
|
3133
|
-
"no-collectors": "No
|
|
3122
|
+
"no-collectors": "No collectors to show",
|
|
3134
3123
|
"no-area": "No areas to show",
|
|
3135
|
-
"no-factory": "No
|
|
3124
|
+
"no-factory": "No factories to show",
|
|
3136
3125
|
"no-wwtp": "No WWTP to show",
|
|
3137
3126
|
"no-site": "No sites to show"
|
|
3138
3127
|
},
|
|
@@ -3159,7 +3148,7 @@
|
|
|
3159
3148
|
"error": "Error",
|
|
3160
3149
|
"above": "Above",
|
|
3161
3150
|
"below": "Below",
|
|
3162
|
-
"total": "
|
|
3151
|
+
"total": "total",
|
|
3163
3152
|
"parameters": "Parameters",
|
|
3164
3153
|
"exceptions": "Exceptions",
|
|
3165
3154
|
"normal": "Normal",
|
|
@@ -3172,13 +3161,6 @@
|
|
|
3172
3161
|
"no-results3": "Please select another time frame to find results"
|
|
3173
3162
|
},
|
|
3174
3163
|
"profile": {
|
|
3175
|
-
"validations": {
|
|
3176
|
-
"min": "At least 8 characters",
|
|
3177
|
-
"uppercase": "At least 1 uppercase letter",
|
|
3178
|
-
"lowercase": "At least 1 lowercase letter",
|
|
3179
|
-
"digits": "At least 1 digit",
|
|
3180
|
-
"symbols": "At least 1 symbol e.g. !@#$"
|
|
3181
|
-
},
|
|
3182
3164
|
"title": "My Profile",
|
|
3183
3165
|
"personal-details": "Personal Details",
|
|
3184
3166
|
"first_name": "First Name",
|
|
@@ -3269,7 +3251,7 @@
|
|
|
3269
3251
|
"from_last_week": "From previous week",
|
|
3270
3252
|
"with_increased_virus_load": "With increased virus load",
|
|
3271
3253
|
"population": "Population",
|
|
3272
|
-
"big_graph_title": "Country-wide virus load",
|
|
3254
|
+
"big_graph_title": "Country-wide virus load vs. clinical cases",
|
|
3273
3255
|
"tooltip": {
|
|
3274
3256
|
"clean": "The percentage of areas with no indication of the virus, out of the total areas tested this week.",
|
|
3275
3257
|
"infected": "The percentage of areas with viral indication out of the total areas tested this week.",
|
|
@@ -3655,8 +3637,7 @@
|
|
|
3655
3637
|
"validation_results_error": "We cannot proceed with the import due to the following errors",
|
|
3656
3638
|
"upload_success_msg": "Update has been completed",
|
|
3657
3639
|
"upload_in_progress_msg": "Update is in progress...",
|
|
3658
|
-
"upload_in_progress_description": "Updating is taking place, please return later to check it was completed successfully."
|
|
3659
|
-
"invalid_file": "Invalid file"
|
|
3640
|
+
"upload_in_progress_description": "Updating is taking place, please return later to check it was completed successfully."
|
|
3660
3641
|
},
|
|
3661
3642
|
"upload_lab_result": {
|
|
3662
3643
|
"title": "Upload Lab Results for {{waterAuthorityName}}",
|
|
@@ -3690,7 +3671,6 @@
|
|
|
3690
3671
|
"samplings_page": {
|
|
3691
3672
|
"was_not_selected": "Was not selected",
|
|
3692
3673
|
"no_contact": "No contact",
|
|
3693
|
-
"point_id": "Point ID",
|
|
3694
3674
|
"no_contact_number": "No number",
|
|
3695
3675
|
"cancel_sampling": "Cancel Sampling",
|
|
3696
3676
|
"sampling_created": "New Sampling was successfully created",
|
|
@@ -3704,44 +3684,32 @@
|
|
|
3704
3684
|
"add_new_sampling": "Add New Sampling",
|
|
3705
3685
|
"site_placeholder": "Select or type...",
|
|
3706
3686
|
"no_data": "No data available",
|
|
3707
|
-
"type": {
|
|
3708
|
-
"GA": "Grab, Automatic",
|
|
3709
|
-
"GM": "Grab, Manual",
|
|
3710
|
-
"CA": "Composite, Automatic",
|
|
3711
|
-
"CM": "Composite, Manual"
|
|
3712
|
-
},
|
|
3713
3687
|
"manhole_navigation": {
|
|
3714
3688
|
"waze": "Waze",
|
|
3715
3689
|
"google_maps": "Google Maps",
|
|
3716
3690
|
"ios_maps": "Ios Maps"
|
|
3717
3691
|
},
|
|
3718
|
-
"lab_view": "Lab Result For Sampling {{samplingId}}",
|
|
3719
3692
|
"samplings_table_cols": {
|
|
3720
3693
|
"site": "Site",
|
|
3721
3694
|
"sampling_date": "Sampling Date",
|
|
3722
|
-
"sampling_mode": "Sampling Mode",
|
|
3723
3695
|
"manhole_address": "Manhole Address",
|
|
3696
|
+
"contact": "Contact",
|
|
3697
|
+
"contact_number": "Contact Number",
|
|
3724
3698
|
"bottle_level": "Bottle Level",
|
|
3725
3699
|
"sampling_id": "Sample ID",
|
|
3726
3700
|
"type": "Type",
|
|
3727
3701
|
"lab_name": "Lab Name",
|
|
3728
|
-
"status": "Status"
|
|
3729
|
-
"ml": "ml",
|
|
3730
|
-
"na": "N/A"
|
|
3702
|
+
"status": "Status"
|
|
3731
3703
|
},
|
|
3732
3704
|
"page_title": "Samplings Operation",
|
|
3705
|
+
"manhole_properties": "Manhole Properties",
|
|
3733
3706
|
"sampling_properties": "Sampling Properties",
|
|
3734
3707
|
"revert_cancellation": "Revert Cancellation",
|
|
3735
3708
|
"delete": "Delete",
|
|
3736
3709
|
"delete_confirmation": "Are you sure you want to delete sampling {{sampling_id}}? This action can not be reverted.",
|
|
3737
3710
|
"yes_delete": "Yes, Delete it",
|
|
3738
3711
|
"collect": "Collect",
|
|
3739
|
-
"lab_result": "View lab result",
|
|
3740
3712
|
"cancellation_title": "Select cancellation reason",
|
|
3741
|
-
"pump_in_progress": {
|
|
3742
|
-
"title": "Sampler activation in process",
|
|
3743
|
-
"content": "A request to activate the sampler was sent.\nTo collect the sample please reopen the form in a few minutes."
|
|
3744
|
-
},
|
|
3745
3713
|
"samplings_properties": {
|
|
3746
3714
|
"page_title_cancel": "Cancel Sampling",
|
|
3747
3715
|
"page_title_collect": "Collect Sampling",
|
|
@@ -3751,10 +3719,8 @@
|
|
|
3751
3719
|
"yes": "Delete",
|
|
3752
3720
|
"no": "No",
|
|
3753
3721
|
"cant_upload_without_saving": "You can't upload photos before creating a sampling.",
|
|
3754
|
-
"cant_upload_without_saving_lab_id_first": "You can't update properties without saving a lab first.",
|
|
3755
3722
|
"placeholder_reporter": "Place reporter",
|
|
3756
3723
|
"general_description": "Limit 200 characters",
|
|
3757
|
-
"manhole_image": "View site image",
|
|
3758
3724
|
"validation_messages": {
|
|
3759
3725
|
"lab_id": "Lab name is required",
|
|
3760
3726
|
"pump_sampling_volume": "Volume can't be empty",
|