diff --git a/anyway/backend_constants.py b/anyway/backend_constants.py index e3b2abd1..36103168 100644 --- a/anyway/backend_constants.py +++ b/anyway/backend_constants.py @@ -292,6 +292,18 @@ def labels(cls): } +class DayNight(Enum): + DAY = 1 + NIGHT = 5 + + @classmethod + def labels(cls): + return { + DayNight.DAY: "Day", + DayNight.NIGHT: "Night", + } + + class CrossCategory(Enum): UNKNOWN = 0 NONE = 1 diff --git a/anyway/infographics_dictionaries.py b/anyway/infographics_dictionaries.py index bcf6b5f4..874247b2 100755 --- a/anyway/infographics_dictionaries.py +++ b/anyway/infographics_dictionaries.py @@ -39,6 +39,9 @@ def __missing__(self, key): _("Collision with an animal") _("Damage caused by a falling load off a vehicle") +_("Day") +_("Night") + _("professional_driver") # "נהג מקצועי" _("private_vehicle_driver") # "נהג פרטי" _("other_driver") # "לא ידוע" diff --git a/anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py b/anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py index 89e85d74..1d3fad8d 100644 --- a/anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py +++ b/anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py @@ -32,6 +32,10 @@ def generate_items(self) -> None: resolution=self.request_params.resolution ) + def is_included(self) -> bool: + accidents_count = sum(item['count'] for item in self.items) + return accidents_count > 0 + @staticmethod def get_accident_count_by_accident_type(location_info, start_time, end_time, resolution): all_accident_type_count = get_accidents_stats( diff --git a/anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py b/anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py index 9bc229a0..b526259d 100644 --- a/anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py +++ b/anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py @@ -50,6 +50,10 @@ def generate_items(self) -> None: ) self.items = format_2_level_items(res2, None, AccidentSeverity) + def is_included(self) -> bool: + accidents_count = sum(item['value'] for entry in self.items for item in entry['series']) + return accidents_count > 0 + @staticmethod def localize_items(request_params: RequestParams, items: Dict) -> Dict: location_text = get_location_text(request_params) diff --git a/anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py b/anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py index 74682a8d..96ef0076 100644 --- a/anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py +++ b/anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py @@ -6,7 +6,7 @@ from typing import Dict from flask_babel import _ - +from anyway.backend_constants import DayNight @register class AccidentCountByDayNightWidget(AllLocationsWidget): name: str = "accident_count_by_day_night" @@ -21,20 +21,29 @@ def __init__(self, request_params: RequestParams): ) def generate_items(self) -> None: - self.items = get_accidents_stats( + all_accident_day_night_count = get_accidents_stats( table_obj=AccidentMarkerView, filters=self.request_params.location_info, - group_by="day_night_hebrew", - count="day_night_hebrew", + group_by="day_night", + count="day_night", start_time=self.request_params.start_time, end_time=self.request_params.end_time, resolution=self.request_params.resolution, ) + all_items = [] + for item in all_accident_day_night_count: + at: DayNight = DayNight(item["day_night"]) + item["day_night"] = at.get_label() + all_items.append(item) + res = sorted(all_items, key=lambda x: x["count"], reverse=True) + return res @staticmethod def localize_items(request_params: RequestParams, items: Dict) -> Dict: location_text = get_location_text(request_params) items["data"]["text"] = {"title": _("Accidents by time"), "subtitle": _(location_text)} + for item in items["data"]["items"]: + item["day_night"] = _(item["day_night"]) return items diff --git a/anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py b/anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py index 5798fa50..2a199e05 100644 --- a/anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py +++ b/anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py @@ -26,6 +26,9 @@ def generate_items(self) -> None: resolution=self.request_params.resolution, ) + def is_included(self) -> bool: + return self.items["total_accidents_count"] > 0 + @staticmethod def get_accident_count_by_severity(location_info, start_time, end_time, resolution): count_by_severity = get_accidents_stats( diff --git a/anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py b/anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py index f4cfc76f..cdc51b55 100644 --- a/anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py +++ b/anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py @@ -50,6 +50,10 @@ def generate_items(self) -> None: ) self.items = format_2_level_items(res2, None, InjurySeverity) + def is_included(self) -> bool: + injured_count = sum(item['value'] for entry in self.items for item in entry['series']) + return injured_count > 0 + @staticmethod def localize_items(request_params: RequestParams, items: Dict) -> Dict: location_text = get_location_text(request_params) diff --git a/anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py b/anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py index 6fee966e..3b0fe487 100644 --- a/anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py +++ b/anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py @@ -32,6 +32,9 @@ def generate_items(self) -> None: self.request_params.end_time, ) + def is_included(self) -> bool: + return self.items["total_injured_count"] > 0 + @staticmethod def get_injured_count_by_severity( resolution: BE_CONST.ResolutionCategories, diff --git a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py index e3c5e976..a4e00a78 100644 --- a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py +++ b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py @@ -68,6 +68,10 @@ def localize_items(request_params: RequestParams, items: Dict) -> Dict: items["meta"]["information"] = _("Injured count per age group and injurey severity. The graph shows all injury severities: fatal, severe, and light.") return items + def is_included(self) -> bool: + killed_injured_count = sum(item['value'] for entry in self.items for item in entry['series']) + return killed_injured_count > 0 + @staticmethod def get_age_range_list() -> List[str]: age_list = [] diff --git a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py index 7012d84a..8c10235e 100644 --- a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py +++ b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py @@ -36,6 +36,10 @@ def generate_items(self) -> None: structured_data_list.append({BE.LKEY: age_group, BE.VAL: count_total}) self.items = structured_data_list + def is_included(self) -> bool: + accidents_count = sum(item['value'] for item in self.items) + return accidents_count > 0 + @staticmethod def localize_items(request_params: RequestParams, items: Dict) -> Dict: if request_params.lang != "en": diff --git a/anyway/widgets/road_segment_widgets/head_on_collisions_comparison_widget.py b/anyway/widgets/road_segment_widgets/head_on_collisions_comparison_widget.py index f930a9eb..d7c92796 100644 --- a/anyway/widgets/road_segment_widgets/head_on_collisions_comparison_widget.py +++ b/anyway/widgets/road_segment_widgets/head_on_collisions_comparison_widget.py @@ -117,7 +117,7 @@ def is_included(self) -> bool: else: raise ValueError all_total = all_h2h + all_others # pylint: disable=E0606 - return segment_h2h > 0 and (segment_h2h / segment_total) > all_h2h / all_total + return segment_h2h > 1 and (segment_h2h / segment_total) > all_h2h / all_total # adding calls to _() for pybabel extraction diff --git a/anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py b/anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py index 3acfabaf..d419c22d 100644 --- a/anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py +++ b/anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py @@ -116,6 +116,10 @@ def generate_items(self) -> None: logging.error(f"InjuredAccidentsWithPedestriansWidget.generate_items(): {e}") raise + def is_included(self) -> bool: + accidents_with_pedestrians_count = sum(item['value'] for entry in self.items for item in entry['series']) + return accidents_with_pedestrians_count > 0 + @staticmethod def localize_items(request_params: RequestParams, items: Dict) -> Dict: items["data"]["text"] = { diff --git a/anyway/widgets/widget.py b/anyway/widgets/widget.py index c27faf25..3291c5d6 100644 --- a/anyway/widgets/widget.py +++ b/anyway/widgets/widget.py @@ -46,7 +46,6 @@ def is_in_cache() -> bool: """Whether this widget is stored in the cache""" return True - # noinspection PyMethodMayBeStatic def is_included(self) -> bool: """Whether this widget is included in the response""" return bool(self.items) diff --git a/messages.pot b/messages.pot index bb81fa1d..6661f4c9 100644 --- a/messages.pot +++ b/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-10-23 15:22+0000\n" +"POT-Creation-Date: 2024-10-31 19:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -126,14 +126,22 @@ msgid "Damage caused by a falling load off a vehicle" msgstr "" #: anyway/infographics_dictionaries.py:42 -msgid "professional_driver" +msgid "Day" msgstr "" #: anyway/infographics_dictionaries.py:43 +msgid "Night" +msgstr "" + +#: anyway/infographics_dictionaries.py:45 +msgid "professional_driver" +msgstr "" + +#: anyway/infographics_dictionaries.py:46 msgid "private_vehicle_driver" msgstr "" -#: anyway/infographics_dictionaries.py:44 +#: anyway/infographics_dictionaries.py:47 msgid "other_driver" msgstr "" @@ -170,259 +178,263 @@ msgid "other vehicle" msgstr "" #: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:54 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 #: anyway/widgets/all_locations_widgets/seriously_injured_killed_in_bicycles_scooter_widget.py:49 #: anyway/widgets/widget_utils.py:345 msgid "in" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:61 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:65 msgid "Number of accidents by accident type" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:70 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:74 msgid "Collision" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:71 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:75 msgid "" "Distribution of accidents by type in the selected segment and time " "period. Three most common accident types are displayed" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:61 msgid "Number of accidents, per year, split by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light accidents count in the specified years, split by " "accident severity" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:37 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:47 msgid "Accidents by time" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:41 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:49 +msgid "day_night" +msgstr "" + +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:53 msgid "" "Distribution of accidents by day/night. Day/night are determined by " "sunrise and sunset at each day of the year." msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:71 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:74 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 msgid "one light" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:73 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:179 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:76 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 msgid "light plural" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:78 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:81 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 msgid "one severe" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:80 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:83 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 msgid "severe plural" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:85 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:88 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 msgid "one fatal" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:87 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 msgid "fatal plural" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:167 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:110 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:170 msgid "in yishuv" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:92 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:109 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:169 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:95 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:112 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:172 msgid "in street" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:114 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:174 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:117 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:177 msgid "in road" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:99 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:102 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:119 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:179 msgid "in segment" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:105 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:124 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:185 msgid "between the years" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:150 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:154 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:193 msgid "took place" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:110 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:152 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:113 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:156 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:194 msgid "accidents" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:114 msgid "out of them (feminine)" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:135 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:120 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:140 msgid " and " msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:128 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:132 msgid "Number of accidents by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:129 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:133 #: anyway/widgets/road_segment_widgets/accident_count_by_car_type_widget.py:148 #: anyway/widgets/road_segment_widgets/accident_count_by_hour_widget.py:32 #: anyway/widgets/road_segment_widgets/suburban_crosswalk_widget.py:77 msgid "road_segment_name" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:131 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:135 msgid "non_urban_intersection_hebrew" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:139 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:174 msgid "Fatal, severe and light accidents count in " msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "segment" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:177 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "junction" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:141 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:172 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:163 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:145 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:196 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 msgid "in the selected time" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:147 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:151 msgid "in years" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:159 msgid "{street_name}, {yishuv_name}" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:157 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:175 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:162 msgid "street" msgstr "" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:52 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 msgid "All accidents heat map" msgstr "" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:58 msgid "All accidents heat map (fatal, severe, light) in location" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:61 msgid "Number of injured in accidents, per year, split by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light injured count in the specified years, split by " "injury severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:88 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:91 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:179 msgid "one light injured" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:199 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:202 msgid "light injured plural" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:95 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:172 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:98 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:177 msgid "one severe injured" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:197 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:200 msgid "severe injured plural" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:102 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:105 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 msgid "one killed" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:104 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:198 msgid "killed plural" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 msgid "injured/killed" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:129 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:169 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:132 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 msgid "people from car accidents" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:133 msgid "out of them (masculine plural)" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:148 msgid "Number of Injuries in accidents by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:161 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:166 msgid "Fatal, severe and light injuries count in" msgstr "" #: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py:57 -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:44 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:48 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:163 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:165 msgid "label_key" @@ -438,11 +450,11 @@ msgid "" "injury severities: fatal, severe, and light." msgstr "" -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:51 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:55 msgid "Injury per age group" msgstr "" -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:52 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:56 msgid "" "Injured count per age group. The graph shows all injury severities: " "fatal, severe, and light." @@ -458,66 +470,66 @@ msgstr "" msgid "Severe accidents" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:161 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:164 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 msgid "latest severe accident took place" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:163 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:166 msgid "latest severe accidents took place" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:188 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:191 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 msgid "in date" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:190 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 msgid "in hour" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:192 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:240 msgid "occured accident" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:196 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:241 msgid "of type" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:211 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:214 msgid "accident_severity" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:212 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:215 msgid "type" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:229 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 msgid "" "Most recent fatal and severe accidents, ordered by date. Up to 10 " "accidents are presented." msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:230 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 msgid "Severe accidents in suburban junction" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:231 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 msgid "Most severe accidents in segment" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 msgid "Severe accidents in street" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:242 msgid "injured" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:82 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:85 msgid "" "Most recent fatal and severe accidents displayed on a map. Up to 10 " "accidents are presented." @@ -677,7 +689,7 @@ msgstr "" msgid "Segments with most accidents" msgstr "" -#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:122 +#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:126 msgid "Pedestrian accidents by severity and year" msgstr "" diff --git a/translations/en/LC_MESSAGES/messages.mo b/translations/en/LC_MESSAGES/messages.mo index b2f933b4..eee23e6e 100644 Binary files a/translations/en/LC_MESSAGES/messages.mo and b/translations/en/LC_MESSAGES/messages.mo differ diff --git a/translations/en/LC_MESSAGES/messages.po b/translations/en/LC_MESSAGES/messages.po index f7b5fe3b..5aa16f92 100644 --- a/translations/en/LC_MESSAGES/messages.po +++ b/translations/en/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-10-23 15:22+0000\n" +"POT-Creation-Date: 2024-10-31 19:22+0000\n" "PO-Revision-Date: 2020-11-26 16:45+0200\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -127,14 +127,23 @@ msgid "Damage caused by a falling load off a vehicle" msgstr "" #: anyway/infographics_dictionaries.py:42 -msgid "professional_driver" +msgid "Day" msgstr "" #: anyway/infographics_dictionaries.py:43 +#, fuzzy +msgid "Night" +msgstr "light" + +#: anyway/infographics_dictionaries.py:45 +msgid "professional_driver" +msgstr "" + +#: anyway/infographics_dictionaries.py:46 msgid "private_vehicle_driver" msgstr "" -#: anyway/infographics_dictionaries.py:44 +#: anyway/infographics_dictionaries.py:47 msgid "other_driver" msgstr "" @@ -171,269 +180,273 @@ msgid "other vehicle" msgstr "" #: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:54 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 #: anyway/widgets/all_locations_widgets/seriously_injured_killed_in_bicycles_scooter_widget.py:49 #: anyway/widgets/widget_utils.py:345 msgid "in" msgstr "in " -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:61 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:65 msgid "Number of accidents by accident type" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:70 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:74 msgid "Collision" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:71 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:75 msgid "" "Distribution of accidents by type in the selected segment and time " "period. Three most common accident types are displayed" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:61 #, fuzzy msgid "Number of accidents, per year, split by severity" msgstr "Number of accidents by severity" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light accidents count in the specified years, split by " "accident severity" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:37 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:47 msgid "Accidents by time" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:41 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:49 +msgid "day_night" +msgstr "" + +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:53 msgid "" "Distribution of accidents by day/night. Day/night are determined by " "sunrise and sunset at each day of the year." msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:71 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:74 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 msgid "one light" msgstr "one light" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:73 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:179 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:76 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 msgid "light plural" msgstr "light" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:78 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:81 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 msgid "one severe" msgstr "one severe" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:80 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:83 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 msgid "severe plural" msgstr "severe" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:85 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:88 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 msgid "one fatal" msgstr "one fatal" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:87 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 msgid "fatal plural" msgstr "fatal" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:167 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:110 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:170 msgid "in yishuv" msgstr "in yishuv" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:92 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:109 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:169 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:95 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:112 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:172 msgid "in street" msgstr "in street" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:114 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:174 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:117 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:177 msgid "in road" msgstr "in road" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:99 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:102 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:119 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:179 msgid "in segment" msgstr "in segment" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:105 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:124 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:185 msgid "between the years" msgstr "between the years" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:150 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:154 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:193 msgid "took place" msgstr "took place" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:110 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:152 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:113 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:156 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:194 msgid "accidents" msgstr "accidents" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:114 #, fuzzy msgid "out of them (feminine)" msgstr "out of them" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:135 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:120 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:140 msgid " and " msgstr " and " -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:128 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:132 msgid "Number of accidents by severity" msgstr "Number of accidents by severity" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:129 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:133 #: anyway/widgets/road_segment_widgets/accident_count_by_car_type_widget.py:148 #: anyway/widgets/road_segment_widgets/accident_count_by_hour_widget.py:32 #: anyway/widgets/road_segment_widgets/suburban_crosswalk_widget.py:77 msgid "road_segment_name" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:131 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:135 msgid "non_urban_intersection_hebrew" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:139 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:174 msgid "Fatal, severe and light accidents count in " msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "segment" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:177 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "junction" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:141 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:172 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:163 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:145 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:196 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 msgid "in the selected time" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:147 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:151 msgid "in years" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:159 msgid "{street_name}, {yishuv_name}" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:157 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:175 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:162 msgid "street" msgstr "" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:52 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 msgid "All accidents heat map" msgstr "" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:58 msgid "All accidents heat map (fatal, severe, light) in location" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:61 msgid "Number of injured in accidents, per year, split by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light injured count in the specified years, split by " "injury severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:88 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:91 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:179 #, fuzzy msgid "one light injured" msgstr "light injured" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:199 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:202 #, fuzzy msgid "light injured plural" msgstr "light injured" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:95 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:172 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:98 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:177 #, fuzzy msgid "one severe injured" msgstr "severe injured" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:197 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:200 #, fuzzy msgid "severe injured plural" msgstr "severe injured" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:102 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:105 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 #, fuzzy msgid "one killed" msgstr "killed" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:104 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:198 #, fuzzy msgid "killed plural" msgstr "killed" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 #, fuzzy msgid "injured/killed" msgstr "killed" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:129 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:169 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:132 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 #, fuzzy msgid "people from car accidents" msgstr "severe injured" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:133 msgid "out of them (masculine plural)" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:148 msgid "Number of Injuries in accidents by severity" msgstr "" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:161 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:166 msgid "Fatal, severe and light injuries count in" msgstr "" #: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py:57 -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:44 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:48 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:163 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:165 msgid "label_key" @@ -449,11 +462,11 @@ msgid "" "injury severities: fatal, severe, and light." msgstr "" -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:51 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:55 msgid "Injury per age group" msgstr "" -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:52 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:56 msgid "" "Injured count per age group. The graph shows all injury severities: " "fatal, severe, and light." @@ -470,66 +483,66 @@ msgstr "" msgid "Severe accidents" msgstr "severe injured" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:161 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:164 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 msgid "latest severe accident took place" msgstr "atest severe accident took place" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:163 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:166 msgid "latest severe accidents took place" msgstr "latest severe accidents took place" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:188 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:191 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 msgid "in date" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:190 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 msgid "in hour" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:192 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:240 msgid "occured accident" msgstr "occured accident" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:196 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:241 msgid "of type" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:211 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:214 msgid "accident_severity" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:212 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:215 msgid "type" msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:229 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 msgid "" "Most recent fatal and severe accidents, ordered by date. Up to 10 " "accidents are presented." msgstr "" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:230 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 msgid "Severe accidents in suburban junction" msgstr "severe injured" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:231 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 msgid "Most severe accidents in segment" msgstr "Most severe accidents in segment" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 msgid "Severe accidents in street" msgstr "Severe accidents in street" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:242 msgid "injured" msgstr "injured" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:82 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:85 msgid "" "Most recent fatal and severe accidents displayed on a map. Up to 10 " "accidents are presented." @@ -689,7 +702,7 @@ msgstr "" msgid "Segments with most accidents" msgstr "" -#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:122 +#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:126 msgid "Pedestrian accidents by severity and year" msgstr "" diff --git a/translations/he/LC_MESSAGES/messages.mo b/translations/he/LC_MESSAGES/messages.mo index d5c181f6..10248eb8 100644 Binary files a/translations/he/LC_MESSAGES/messages.mo and b/translations/he/LC_MESSAGES/messages.mo differ diff --git a/translations/he/LC_MESSAGES/messages.po b/translations/he/LC_MESSAGES/messages.po index ac5cc72f..d8980225 100644 --- a/translations/he/LC_MESSAGES/messages.po +++ b/translations/he/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-10-23 15:22+0000\n" +"POT-Creation-Date: 2024-10-31 19:22+0000\n" "PO-Revision-Date: 2020-10-16 15:42+0000\n" "Last-Translator: FULL NAME \n" "Language: he\n" @@ -127,14 +127,22 @@ msgid "Damage caused by a falling load off a vehicle" msgstr "פגיעה ממטען של רכב" #: anyway/infographics_dictionaries.py:42 +msgid "Day" +msgstr "יום" + +#: anyway/infographics_dictionaries.py:43 +msgid "Night" +msgstr "לילה" + +#: anyway/infographics_dictionaries.py:45 msgid "professional_driver" msgstr "נהג מקצועי" -#: anyway/infographics_dictionaries.py:43 +#: anyway/infographics_dictionaries.py:46 msgid "private_vehicle_driver" msgstr "נהג רכב פרטי" -#: anyway/infographics_dictionaries.py:44 +#: anyway/infographics_dictionaries.py:47 msgid "other_driver" msgstr "אחר" @@ -171,21 +179,21 @@ msgid "other vehicle" msgstr "רכב אחר" #: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:54 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 #: anyway/widgets/all_locations_widgets/seriously_injured_killed_in_bicycles_scooter_widget.py:49 #: anyway/widgets/widget_utils.py:345 msgid "in" msgstr "ב" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:61 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:65 msgid "Number of accidents by accident type" msgstr "מספר תאונות לפי סוג" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:70 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:74 msgid "Collision" msgstr "התנגשות" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:71 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_type_widget.py:75 msgid "" "Distribution of accidents by type in the selected segment and time " "period. Three most common accident types are displayed" @@ -193,11 +201,11 @@ msgstr "" "התפלגות תאונות לפי סוג התאונה במקטע, בפרק הזמן הנבחר. מוצגים 3 סוגי " "התאונות הנפוצים ביותר במקום זה" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:61 msgid "Number of accidents, per year, split by severity" msgstr "מספר תאונות לפי שנה, לפי חומרה" -#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/accident_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light accidents count in the specified years, split by " "accident severity" @@ -205,11 +213,15 @@ msgstr "" "כמות התאונות הקטלניות, הקשות והקלות במקטע, לפי שנת התאונה, מחולק לפי " "חומרת התאונה, בפרק הזמן הנבחר." -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:37 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:47 msgid "Accidents by time" msgstr "תאונות על פי זמן" -#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:41 +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:49 +msgid "day_night" +msgstr "" + +#: anyway/widgets/all_locations_widgets/accident_count_by_day_night_widget.py:53 msgid "" "Distribution of accidents by day/night. Day/night are determined by " "sunrise and sunset at each day of the year." @@ -217,157 +229,157 @@ msgstr "" "התפלגות התאונות ביום ובלילה. היום והלילה נקבעים לפי זריחת השמש ושקיעתה " "בכל יום בשנה" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:71 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:74 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 msgid "one light" msgstr "קלה אחת" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:73 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:179 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:76 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 msgid "light plural" msgstr "קלות" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:78 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:81 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 msgid "one severe" msgstr "קשה אחת" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:80 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:83 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 msgid "severe plural" msgstr "קשות" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:85 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:88 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 msgid "one fatal" msgstr "קטלנית אחת" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:87 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:183 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 msgid "fatal plural" msgstr "קטלניות" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:167 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:110 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:170 msgid "in yishuv" msgstr "ביישוב" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:92 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:185 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:109 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:169 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:95 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:112 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:172 msgid "in street" msgstr "ברחוב" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:186 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:114 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:174 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:117 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:177 msgid "in road" msgstr "בכביש" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:99 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:184 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:187 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:102 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:119 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:179 msgid "in segment" msgstr "במקטע" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:105 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:188 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:124 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:182 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:185 msgid "between the years" msgstr "בין השנים" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:108 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:150 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:189 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:154 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:193 msgid "took place" msgstr "התרחשו" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:110 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:152 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:190 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:113 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:156 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:194 msgid "accidents" msgstr "תאונות" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:111 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:114 msgid "out of them (feminine)" msgstr "מתוכן" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:116 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:191 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:135 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:120 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:140 msgid " and " msgstr " ו-" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:128 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:132 msgid "Number of accidents by severity" msgstr "מספר תאונות לפי חומרה" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:129 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:133 #: anyway/widgets/road_segment_widgets/accident_count_by_car_type_widget.py:148 #: anyway/widgets/road_segment_widgets/accident_count_by_hour_widget.py:32 #: anyway/widgets/road_segment_widgets/suburban_crosswalk_widget.py:77 msgid "road_segment_name" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:131 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:135 msgid "non_urban_intersection_hebrew" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:139 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:174 msgid "Fatal, severe and light accidents count in " msgstr "כמות התאונות הקטלניות, הקשות והקלות ב" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "segment" msgstr "מקטע" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:140 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:177 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:144 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:181 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:160 msgid "junction" msgstr "צמת" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:141 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:172 -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:192 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:163 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:145 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:196 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 msgid "in the selected time" msgstr "בפרק הזמן הנבחר" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:147 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:151 msgid "in years" msgstr "בשנים" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:155 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:159 msgid "{street_name}, {yishuv_name}" msgstr "" -#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:157 +#: anyway/widgets/all_locations_widgets/accident_count_by_severity_widget.py:175 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:162 msgid "street" msgstr "רחוב" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:52 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 msgid "All accidents heat map" msgstr "מפת חום של מוקדי התאונות" -#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:55 +#: anyway/widgets/all_locations_widgets/accidents_heat_map_widget.py:58 msgid "All accidents heat map (fatal, severe, light) in location" msgstr "מפת חום עם מוקדי התאונות (קטלניות, קשות, קלות) במיקום הנוכחי" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:57 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:61 msgid "Number of injured in accidents, per year, split by severity" msgstr "מספר נפגעים לפי שנה, לפי חומרה" -#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:64 +#: anyway/widgets/all_locations_widgets/injured_count_by_accident_year_widget.py:68 msgid "" "Fatal, severe and light injured count in the specified years, split by " "injury severity" @@ -375,63 +387,63 @@ msgstr "" "מספר הרוגים, פצועים קשה וקל, לפי שנה במקטע, מחולק לפי חומרת הפגיעה, בפרק " "הזמן הנבחר." -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:88 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:91 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:179 msgid "one light injured" msgstr "פצוע/ה קל" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:90 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:199 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:93 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:180 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:202 msgid "light injured plural" msgstr "פצועים/ות קל" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:95 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:172 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:98 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:177 msgid "one severe injured" msgstr "פצוע/ה קשה" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:97 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:197 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:100 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:178 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:200 msgid "severe injured plural" msgstr "פצועים קשה" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:102 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:170 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:105 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:175 msgid "one killed" msgstr "הרוג" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:104 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:171 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:107 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:176 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:198 msgid "killed plural" msgstr "הרוגים" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:127 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:168 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:173 msgid "injured/killed" msgstr "נפצעו/נהרגו" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:129 -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:169 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:132 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:174 msgid "people from car accidents" msgstr "אנשים מתאונות דרכים" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:130 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:133 msgid "out of them (masculine plural)" msgstr "מתוכם" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:143 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:148 msgid "Number of Injuries in accidents by severity" msgstr "מספר תאונות לפי חומרה" -#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:161 +#: anyway/widgets/all_locations_widgets/injured_count_by_severity_widget.py:166 msgid "Fatal, severe and light injuries count in" msgstr "כמות ההרוגים, פצועים קשה ופצועים קל ב" #: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_stacked_widget.py:57 -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:44 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:48 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:163 #: anyway/widgets/road_segment_widgets/motorcycle_accidents_vs_all_accidents_widget.py:165 msgid "label_key" @@ -449,11 +461,11 @@ msgstr "" "כמות נפגעים לפי קבוצת גיל וחומרת פגיעה. הגרף מראה את כל חומרות הפגיעה: " "הרוגים, פצועים קשה ופצועים קל." -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:51 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:55 msgid "Injury per age group" msgstr "נפגעים לפי קבוצת גיל" -#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:52 +#: anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget.py:56 msgid "" "Injured count per age group. The graph shows all injury severities: " "fatal, severe, and light." @@ -471,44 +483,44 @@ msgstr "לא ידוע" msgid "Severe accidents" msgstr "תאונות חמורות" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:161 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:164 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 msgid "latest severe accident took place" msgstr "תאונה חמורה אחרונה התרחשה" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:163 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:166 msgid "latest severe accidents took place" msgstr "תאונות חמורות אחרונות התרחשו" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:188 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:191 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 msgid "in date" msgstr "בתאריך" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:190 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:236 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 msgid "in hour" msgstr "בשעה" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:192 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:237 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:195 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:240 msgid "occured accident" msgstr "התרחשה תאונה" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:193 -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:238 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:196 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:241 msgid "of type" msgstr "מסוג" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:211 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:214 msgid "accident_severity" msgstr "חומרת תאונה" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:212 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:215 msgid "type" msgstr "סוג" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:229 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 msgid "" "Most recent fatal and severe accidents, ordered by date. Up to 10 " "accidents are presented." @@ -516,23 +528,23 @@ msgstr "" "התאונות החמורות (קשות וקטלניות) האחרונות, מסודרות לפי תאריך בסדר יורד. " "מוצגות עד 10 תאונות." -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:230 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:233 msgid "Severe accidents in suburban junction" msgstr "תאונות חמורות בצמת בינעירוני" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:231 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:234 msgid "Most severe accidents in segment" msgstr "תאונות חמורות במקטע" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:232 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:235 msgid "Severe accidents in street" msgstr "תאונות חמורות ברחוב" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:239 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_table_widget.py:242 msgid "injured" msgstr "פצועים" -#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:82 +#: anyway/widgets/all_locations_widgets/most_severe_accidents_widget.py:85 msgid "" "Most recent fatal and severe accidents displayed on a map. Up to 10 " "accidents are presented." @@ -697,7 +709,7 @@ msgstr "תאונות קטלניות וקשות לכל קילומטר לפי מק msgid "Segments with most accidents" msgstr "מקטעים עם הכי הרבה תאונות" -#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:122 +#: anyway/widgets/urban_widgets/injured_accidents_with_pedestrians_widget.py:126 msgid "Pedestrian accidents by severity and year" msgstr "תאונות הולכי רגל לפי חומרה ולפי שנה"