From 4d1aa92b215324b96b9f9d18b43d2b527d89fbd5 Mon Sep 17 00:00:00 2001 From: 5ila5 <5ila5@users.noreply.github.com> Date: Thu, 25 Jul 2024 21:16:08 +0200 Subject: [PATCH] config_flow add seperate step for each source this way we can have individual translations per input filed and we can have individual descriptions for the whole form or input-field or on a input field basis, this way we can _move_ more documentation directly in the UI config_flow fix generics missing --- .../waste_collection_schedule/config_flow.py | 66 +- .../waste_collection_schedule/sources.json | 6 +- .../translations/de.json | 9590 ++++++++++++++++- .../translations/en.json | 9240 ++++++++++++++++ .../translations/it.json | 4439 ++++++++ update_docu_links.py | 145 +- 6 files changed, 23078 insertions(+), 408 deletions(-) diff --git a/custom_components/waste_collection_schedule/config_flow.py b/custom_components/waste_collection_schedule/config_flow.py index 504c8ceb..e6c2c202 100644 --- a/custom_components/waste_collection_schedule/config_flow.py +++ b/custom_components/waste_collection_schedule/config_flow.py @@ -302,6 +302,22 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call super().__init__(*args, **kwargs) self._sources = self._get_source_list() self._options: dict = {} + for _, sources in self._sources.items(): + for source in sources: + + async def args_method(args_input): + return await self.async_step_args(args_input) + + setattr( + self, + f"async_step_args_{source['module']}", + args_method, + ) + setattr( + self, + f"async_step_reconfigure_{source['module']}", + args_method, + ) # Get source list from JSON def _get_source_list(self) -> dict[str, list[SourceDict]]: @@ -485,29 +501,28 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call for arg in args: default = args[arg].default arg_name = args[arg].name - arg_key = f"{source}_{arg_name}" field_type = None annotation = args[arg].annotation description = None - if args_input is not None and arg_key in args_input: - description = {"suggested_value": args_input[arg_key]} + if args_input is not None and arg_name in args_input: + description = {"suggested_value": args_input[arg_name]} _LOGGER.debug( - f"Setting suggested value for {arg_key} to {args_input[arg_key]} (previously filled in)" + f"Setting suggested value for {arg_name} to {args_input[arg_name]} (previously filled in)" ) - elif arg_key in pre_filled: + elif arg_name in pre_filled: _LOGGER.debug( - f"Setting default value for {arg_key} to {pre_filled[arg_key]}" + f"Setting default value for {arg_name} to {pre_filled[arg_name]}" ) description = { - "suggested_value": pre_filled[arg_key], + "suggested_value": pre_filled[arg_name], } if annotation != inspect._empty: field_type = ( await self.__get_type_by_annotation(annotation) or field_type ) _LOGGER.debug( - f"Default for {arg_key}: {type(default) if default is not inspect.Signature.empty else inspect.Signature.empty}" + f"Default for {arg_name}: {type(default) if default is not inspect.Signature.empty else inspect.Signature.empty}" ) if arg_name in MODULE_FLOW_TYPES: @@ -532,14 +547,14 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call arg ].name in suggestions: _LOGGER.debug( - f"Adding suggestions to {arg_key}: {suggestions[arg_key]}" + f"Adding suggestions to {arg_name}: {suggestions[arg_name]}" ) # Add suggestions to the field if fetch/init raised an Exception with suggestions field_type = SelectSelector( SelectSelectorConfig( options=[ SelectOptionDict(label=x, value=x) - for x in suggestions[arg_key] + for x in suggestions[arg_name] ], mode=SelectSelectorMode.DROPDOWN, custom_value=True, @@ -548,7 +563,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call ) if default == inspect.Signature.empty: - vol_args[vol.Required(arg_key, description=description)] = ( + vol_args[vol.Required(arg_name, description=description)] = ( field_type or str ) @@ -556,7 +571,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call # Handle boolean, int, string, date, datetime, list defaults vol_args[ vol.Optional( - arg_key, + arg_name, default=UNDEFINED if default is None else default, description=description, ) @@ -565,7 +580,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call ) else: _LOGGER.debug( - f"Unsupported type: {type(default)}: {arg_key}: {default}: {field_type}" + f"Unsupported type: {type(default)}: {arg_name}: {default}: {field_type}" ) schema = vol.Schema(vol_args) @@ -586,7 +601,6 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call """ errors = {} description_placeholders: dict[str, str] = {} - args_input = {k.removeprefix(f"{source}_"): v for k, v in args_input.items()} if hasattr(module, "validate_params"): errors.update(module.validate_params(args_input)) @@ -613,17 +627,16 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call except SourceArgumentSuggestionsExceptionBase as e: if not hasattr(self, "_error_suggestions"): self._error_suggestions = {} - arg_key = f"{source}_{e.argument}" - self._error_suggestions.update({arg_key: e.suggestions}) - errors[arg_key] = "invalid_arg" + self._error_suggestions.update({e.argument: e.suggestions}) + errors[e.argument] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.simple_message if e.suggestion_type != str and e.suggestion_type != int: description_placeholders["invalid_arg_message"] = e.message except SourceArgumentRequired as e: - errors[f"{source}_{e.argument}"] = "invalid_arg" + errors[e.argument] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.message except SourceArgumentException as e: - errors[f"{source}_{e.argument}"] = "invalid_arg" + errors[e.argument] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.message except SourceArgumentExceptionMultiple as e: description_placeholders["invalid_arg_message"] = e.message @@ -637,6 +650,17 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call description_placeholders["fetch_error_message"] = str(e) return errors, description_placeholders, options + async def async_source_selected(self) -> None: + async def args_method(args_input): + return await self.async_step_args(args_input) + + setattr( + self, + f"async_step_args_{self._source}", + args_method, + ) + return await self.async_step_args() + # Step 3: User fills in source arguments async def async_step_args(self, args_input=None) -> ConfigFlowResult: self._source = cast(str, self._source) @@ -668,7 +692,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call self.async_show_form(step_id="options") return await self.async_step_flow_type() return self.async_show_form( - step_id="args", + step_id=f"args_{self._source}", data_schema=schema, errors=errors, description_placeholders=description_placeholders, @@ -832,7 +856,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call reason="reconfigure_successful", ) return self.async_show_form( - step_id="reconfigure", + step_id=f"reconfigure_{source}", data_schema=schema, errors=errors, description_placeholders=description_placeholders, diff --git a/custom_components/waste_collection_schedule/sources.json b/custom_components/waste_collection_schedule/sources.json index 1aecee36..367b97b7 100644 --- a/custom_components/waste_collection_schedule/sources.json +++ b/custom_components/waste_collection_schedule/sources.json @@ -3227,12 +3227,14 @@ { "title": "ICS", "module": "ics", - "default_params": {} + "default_params": {}, + "id": "ics" }, { "title": "Static Source", "module": "static", - "default_params": {} + "default_params": {}, + "id": "static" } ], "Germany": [ diff --git a/custom_components/waste_collection_schedule/translations/de.json b/custom_components/waste_collection_schedule/translations/de.json index 038aae85..3cd78754 100644 --- a/custom_components/waste_collection_schedule/translations/de.json +++ b/custom_components/waste_collection_schedule/translations/de.json @@ -67,180 +67,7 @@ "title": "Quelle konfigurieren", "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", "data": { - "ahk_heidekreis_de_city": "Ort", - "ahk_heidekreis_de_house_number": "Hausnummer", - "ahk_heidekreis_de_postcode": "PLZ", - "ahk_heidekreis_de_street": "Straße", - "art_trier_de_district": "Ort", - "art_trier_de_zip_code": "PLZ", - "asr_chemnitz_de_house_number": "Hausnummer", - "asr_chemnitz_de_object_number": "Objektnummer", - "asr_chemnitz_de_street": "Straße", - "awb_emsland_de_address_suffix": "Hausnummerzusatz", - "awb_emsland_de_city": "Ort", - "awb_emsland_de_house_number": "Hausnummer", - "awb_emsland_de_street": "Straße", - "awb_oldenburg_de_house_number": "Hausnummer", - "awb_oldenburg_de_street": "Straße", - "awbkoeln_de_building_number": "Hausnummer", - "awbkoeln_de_street_code": "Straßencode", - "awido_de_city": "Ort", - "awido_de_customer": "Kunde", - "awido_de_housenumber": "Hausnummer", - "awido_de_street": "Straße", - "awlneuss_de_building_number": "Hausnummer", - "awlneuss_de_street_code": "Straßencode", - "awlneuss_de_street_name": "Straßenname", - "awn_de_address_suffix": "Hausnummerzusatz", - "awn_de_city": "Ort", - "awn_de_house_number": "Hausnummer", - "awn_de_street": "Straße", - "awr_de_city": "Ort", - "awr_de_street": "Straße", - "awsh_de_city": "Ort", - "awsh_de_street": "Straße", - "berlin_recycling_de_password": "Passwort", - "berlin_recycling_de_username": "Benutzername", - "bielefeld_de_address_suffix": "Hausnummerzusatz", - "bielefeld_de_house_number": "Hausnummer", - "bielefeld_de_street": "Straße", - "bsr_de_abf_hausnr": "Hausnummer", - "bsr_de_abf_strasse": "Straße", - "buergerportal_de_district": "Ort", - "buergerportal_de_number": "Hausnummer", - "buergerportal_de_operator": "Betreiber", - "buergerportal_de_show_volume": "Große Container anzeigen", - "buergerportal_de_street": "Straße", - "buergerportal_de_subdistrict": "Ortsteil", - "calendar_title": "Kalender Titel", - "cederbaum_de_street": "Straße", - "dillingen_saar_de_street": "Straße", - "ead_darmstadt_de_street": "Straße", - "egn_abfallkalender_de_city": "Ort", - "egn_abfallkalender_de_district": "Ortsteil", - "egn_abfallkalender_de_housenumber": "Hausnummer", - "egn_abfallkalender_de_street": "Straße", - "eigenbetrieb_abfallwirtschaft_de_city": "Ort", - "eigenbetrieb_abfallwirtschaft_de_street": "Straße", - "erlangen_hoechstadt_de_city": "Ort", - "erlangen_hoechstadt_de_street": "Straße", - "geoport_nwm_de_district": "Ortsteil", - "hausmuell_info_hausnummer": "Hausnummer", - "hausmuell_info_ort": "Ort", - "hausmuell_info_ortsteil": "Ortsteil", - "hausmuell_info_strasse": "Straße", - "hausmuell_info_subdomain": "Subdomain", - "heilbronn_de_hausnr": "Hausnummer", - "heilbronn_de_plz": "PLZ", - "heilbronn_de_strasse": "Straße", - "ics_file": "Datei", - "ics_headers": "Headers", - "ics_method": "Methode", - "ics_offset": "Offset", - "ics_params": "Parameter", - "ics_regex": "Regulärer Ausdruck", - "ics_split_at": "Trennen bei", - "ics_title_template": "Titelvorlage", - "ics_url": "URL", - "ics_verify_ssl": "SSL-Verifizierung aktivieren", - "ics_version": "Version", - "ics_year_field": "Jahresfeld", - "infeo_at_city": "Ort", - "infeo_at_customer": "Kunde", - "infeo_at_housenumber": "Hausnummer", - "infeo_at_street": "Straße", - "infeo_at_zone": "Zone", - "insert_it_de_hnr": "Hausnummer", - "insert_it_de_location_id": "Standort ID", - "insert_it_de_municipality": "Ort", - "insert_it_de_street": "Straße", - "jumomind_de_area_id": "Bereich ID", - "jumomind_de_city": "Ort", - "jumomind_de_city_id": "Ort ID", - "jumomind_de_house_number": "Hausnummer", - "jumomind_de_service_id": "Service ID", - "jumomind_de_street": "Straße", - "karlsruhe_de_hnr": "Hausnummer", - "karlsruhe_de_ladeort": "Ladeort", - "karlsruhe_de_street": "Straße", - "korneuburg_stadtservice_at_street_name": "Straßenname", - "korneuburg_stadtservice_at_street_number": "Hausnummer", - "korneuburg_stadtservice_at_teilgebiet": "Teilgebiet", - "ks_boerde_de_house_number": "Hausnummer", - "ks_boerde_de_street": "Straße", - "ks_boerde_de_village": "Ort", - "kwb_goslar_de_pois": "POIS", - "kwu_de_city": "Ort", - "kwu_de_number": "Hausnummer", - "kwu_de_street": "Straße", - "landkreis_rhoen_grabfeld_city": "Ort", - "landkreis_rhoen_grabfeld_district": "Ortsteil", - "landkreis_wittmund_de_city": "Ort", - "landkreis_wittmund_de_street": "Straße", - "lindau_ch_city": "Ort", - "lrasha_de_location": "Gebiet", - "mags_de_number": "Hausnummer", - "mags_de_street": "Straße", - "mags_de_turnus": "Turnus", - "meinawb_de_address_suffix": "Hausnummerzusatz", - "meinawb_de_city": "Ort", - "meinawb_de_house_number": "Hausnummer", - "meinawb_de_street": "Strasse", - "monaloga_de_plz": "PLZ", - "monaloga_de_street": "Straße", - "muellabfuhr_de_city": "Ort", - "muellabfuhr_de_client": "Client", - "muellabfuhr_de_district": "Ortsteil", - "muellabfuhr_de_street": "Straße", - "muellmax_de_mm_frm_hnr_sel": "Hausnummer", - "muellmax_de_mm_frm_ort_sel": "Ort", - "muellmax_de_mm_frm_str_sel": "Straße", - "muellmax_de_service": "Service", - "muenchenstein_ch_waste_district": "Abfuhrkreis", - "offenbach_de_f_id_location": "Standort ID", - "potsdam_de_bio_rhythm": "Bio Rhythmus", - "potsdam_de_gelb_rhythm": "Gelb Rhythmus", - "potsdam_de_ortsteil": "Ortsteil", - "potsdam_de_papier_rhythm": "Papier Rhythmus", - "potsdam_de_rest_rhythm": "Restabfall Rhythmus", - "potsdam_de_strasse": "Straße", - "real_luzern_ch_municipality_id": "Orts ID", - "real_luzern_ch_street_id": "Strassen ID", - "regioentsorgung_de_city": "Ort", - "regioentsorgung_de_house_number": "Hausnummer", - "regioentsorgung_de_street": "Straße", - "rh_entsorgung_de_address_suffix": "Hausnummerzusatz", - "rh_entsorgung_de_city": "Ort", - "rh_entsorgung_de_house_number": "Hausnummer", - "rh_entsorgung_de_street": "Straße", - "sbazv_de_city": "Ort", - "sbazv_de_district": "Ortsteil", - "sbazv_de_street": "Straße", - "sector27_de_city": "Ort", - "sector27_de_street": "Straße", - "stuttgart_de_street": "Straße", - "stuttgart_de_streetnr": "Hausnummer", - "tbv_velbert_de_street": "Straße", - "tonnenleerung_de_url": "URL", - "was_wolfsburg_de_city": "Ort", - "was_wolfsburg_de_street": "Straße", - "wermelskirchen_de_house_number": "Hausnummer", - "wermelskirchen_de_street": "Straße", - "wsz_moosburg_at_address": "Adresse", - "wsz_moosburg_at_address_id": "Adressen ID", - "wsz_moosburg_at_municipal": "Gemeinde", - "wsz_moosburg_at_street": "Straße", - "wuerzburg_de_district": "Stadtteil", - "wuerzburg_de_street": "Straße", - "zakb_de_hnr": "Hausnummer", - "zakb_de_hnr_zusatz": "Hausnummerzusatz", - "zakb_de_ort": "Ort", - "zakb_de_strasse": "Straße", - "zva_sek_de_bezirk": "Abfuhrbezirk", - "zva_sek_de_ortsteil": "Ortsteil", - "zva_sek_de_strasse": "Straße", - "zva_wmk_de_city": "Ort", - "zva_wmk_de_street": "Straße" + "calendar_title": "Kalender Titel" }, "data_description": { "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." @@ -279,181 +106,9248 @@ "title": "Quelle Neu Konfigurieren", "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", "data": { - "ahk_heidekreis_de_city": "Ort", - "ahk_heidekreis_de_house_number": "Hausnummer", - "ahk_heidekreis_de_postcode": "PLZ", - "ahk_heidekreis_de_street": "Straße", - "art_trier_de_district": "Ort", - "art_trier_de_zip_code": "PLZ", - "asr_chemnitz_de_house_number": "Hausnummer", - "asr_chemnitz_de_object_number": "Objektnummer", - "asr_chemnitz_de_street": "Straße", - "awb_emsland_de_address_suffix": "Hausnummerzusatz", - "awb_emsland_de_city": "Ort", - "awb_emsland_de_house_number": "Hausnummer", - "awb_emsland_de_street": "Straße", - "awb_oldenburg_de_house_number": "Hausnummer", - "awb_oldenburg_de_street": "Straße", - "awbkoeln_de_building_number": "Hausnummer", - "awbkoeln_de_street_code": "Straßencode", - "awido_de_city": "Ort", - "awido_de_customer": "Kunde", - "awido_de_housenumber": "Hausnummer", - "awido_de_street": "Straße", - "awlneuss_de_building_number": "Hausnummer", - "awlneuss_de_street_code": "Straßencode", - "awlneuss_de_street_name": "Straßenname", - "awn_de_address_suffix": "Hausnummerzusatz", - "awn_de_city": "Ort", - "awn_de_house_number": "Hausnummer", - "awn_de_street": "Straße", - "awr_de_city": "Ort", - "awr_de_street": "Straße", - "awsh_de_city": "Ort", - "awsh_de_street": "Straße", - "berlin_recycling_de_password": "Passwort", - "berlin_recycling_de_username": "Benutzername", - "bielefeld_de_address_suffix": "Hausnummerzusatz", - "bielefeld_de_house_number": "Hausnummer", - "bielefeld_de_street": "Straße", - "bsr_de_abf_hausnr": "Hausnummer", - "bsr_de_abf_strasse": "Straße", - "buergerportal_de_district": "Ort", - "buergerportal_de_number": "Hausnummer", - "buergerportal_de_operator": "Betreiber", - "buergerportal_de_show_volume": "Große Container anzeigen", - "buergerportal_de_street": "Straße", - "buergerportal_de_subdistrict": "Ortsteil", - "calendar_title": "Kalender Titel", - "cederbaum_de_street": "Straße", - "dillingen_saar_de_street": "Straße", - "ead_darmstadt_de_street": "Straße", - "egn_abfallkalender_de_city": "Ort", - "egn_abfallkalender_de_district": "Ortsteil", - "egn_abfallkalender_de_housenumber": "Hausnummer", - "egn_abfallkalender_de_street": "Straße", - "eigenbetrieb_abfallwirtschaft_de_city": "Ort", - "eigenbetrieb_abfallwirtschaft_de_street": "Straße", - "erlangen_hoechstadt_de_city": "Ort", - "erlangen_hoechstadt_de_street": "Straße", - "geoport_nwm_de_district": "Ortsteil", - "hausmuell_info_hausnummer": "Hausnummer", - "hausmuell_info_ort": "Ort", - "hausmuell_info_ortsteil": "Ortsteil", - "hausmuell_info_strasse": "Straße", - "hausmuell_info_subdomain": "Subdomain", - "heilbronn_de_hausnr": "Hausnummer", - "heilbronn_de_plz": "PLZ", - "heilbronn_de_strasse": "Straße", - "ics_file": "Datei", - "ics_headers": "Headers", - "ics_method": "Methode", - "ics_offset": "Offset", - "ics_params": "Parameter", - "ics_regex": "Regulärer Ausdruck", - "ics_split_at": "Trennen bei", - "ics_title_template": "Titelvorlage", - "ics_url": "URL", - "ics_verify_ssl": "SSL-Verifizierung aktivieren", - "ics_version": "Version", - "ics_year_field": "Jahresfeld", - "infeo_at_city": "Ort", - "infeo_at_customer": "Kunde", - "infeo_at_housenumber": "Hausnummer", - "infeo_at_street": "Straße", - "infeo_at_zone": "Zone", - "insert_it_de_hnr": "Hausnummer", - "insert_it_de_location_id": "Standort ID", - "insert_it_de_municipality": "Ort", - "insert_it_de_street": "Straße", - "jumomind_de_area_id": "Bereich ID", - "jumomind_de_city": "Ort", - "jumomind_de_city_id": "Ort ID", - "jumomind_de_house_number": "Hausnummer", - "jumomind_de_service_id": "Service ID", - "jumomind_de_street": "Straße", - "karlsruhe_de_hnr": "Hausnummer", - "karlsruhe_de_ladeort": "Ladeort", - "karlsruhe_de_street": "Straße", - "korneuburg_stadtservice_at_street_name": "Straßenname", - "korneuburg_stadtservice_at_street_number": "Hausnummer", - "korneuburg_stadtservice_at_teilgebiet": "Teilgebiet", - "ks_boerde_de_house_number": "Hausnummer", - "ks_boerde_de_street": "Straße", - "ks_boerde_de_village": "Ort", - "kwb_goslar_de_pois": "POIS", - "kwu_de_city": "Ort", - "kwu_de_number": "Hausnummer", - "kwu_de_street": "Straße", - "landkreis_rhoen_grabfeld_city": "Ort", - "landkreis_rhoen_grabfeld_district": "Ortsteil", - "landkreis_wittmund_de_city": "Ort", - "landkreis_wittmund_de_street": "Straße", - "lindau_ch_city": "Ort", - "lrasha_de_location": "Gebiet", - "mags_de_number": "Hausnummer", - "mags_de_street": "Straße", - "mags_de_turnus": "Turnus", - "meinawb_de_address_suffix": "Hausnummerzusatz", - "meinawb_de_city": "Ort", - "meinawb_de_house_number": "Hausnummer", - "meinawb_de_street": "Strasse", - "monaloga_de_plz": "PLZ", - "monaloga_de_street": "Straße", - "muellabfuhr_de_city": "Ort", - "muellabfuhr_de_client": "Client", - "muellabfuhr_de_district": "Ortsteil", - "muellabfuhr_de_street": "Straße", - "muellmax_de_mm_frm_hnr_sel": "Hausnummer", - "muellmax_de_mm_frm_ort_sel": "Ort", - "muellmax_de_mm_frm_str_sel": "Straße", - "muellmax_de_service": "Service", - "muenchenstein_ch_waste_district": "Abfuhrkreis", - "offenbach_de_f_id_location": "Standort ID", - "potsdam_de_bio_rhythm": "Bio Rhythmus", - "potsdam_de_gelb_rhythm": "Gelb Rhythmus", - "potsdam_de_ortsteil": "Ortsteil", - "potsdam_de_papier_rhythm": "Papier Rhythmus", - "potsdam_de_rest_rhythm": "Restabfall Rhythmus", - "potsdam_de_strasse": "Straße", - "real_luzern_ch_municipality_id": "Orts ID", - "real_luzern_ch_street_id": "Strassen ID", - "regioentsorgung_de_city": "Ort", - "regioentsorgung_de_house_number": "Hausnummer", - "regioentsorgung_de_street": "Straße", - "rh_entsorgung_de_address_suffix": "Hausnummerzusatz", - "rh_entsorgung_de_city": "Ort", - "rh_entsorgung_de_house_number": "Hausnummer", - "rh_entsorgung_de_street": "Straße", - "sbazv_de_city": "Ort", - "sbazv_de_district": "Ortsteil", - "sbazv_de_street": "Straße", - "sector27_de_city": "Ort", - "sector27_de_street": "Straße", - "stuttgart_de_street": "Straße", - "stuttgart_de_streetnr": "Hausnummer", - "tbv_velbert_de_street": "Straße", - "tonnenleerung_de_url": "URL", - "was_wolfsburg_de_city": "Ort", - "was_wolfsburg_de_street": "Straße", - "wermelskirchen_de_house_number": "Hausnummer", - "wermelskirchen_de_street": "Straße", - "wsz_moosburg_at_address": "Adresse", - "wsz_moosburg_at_address_id": "Adressen ID", - "wsz_moosburg_at_municipal": "Gemeinde", - "wsz_moosburg_at_street": "Straße", - "wuerzburg_de_district": "Stadtteil", - "wuerzburg_de_street": "Straße", - "zakb_de_hnr": "Hausnummer", - "zakb_de_hnr_zusatz": "Hausnummerzusatz", - "zakb_de_ort": "Ort", - "zakb_de_strasse": "Straße", - "zva_sek_de_bezirk": "Abfuhrbezirk", - "zva_sek_de_ortsteil": "Ortsteil", - "zva_sek_de_strasse": "Straße", - "zva_wmk_de_city": "Ort", - "zva_wmk_de_street": "Straße" + "calendar_title": "Kalender Titel" } + }, + "args_a_region_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "district": "District" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_a_region_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "district": "District" + }, + "data_description": {} + }, + "args_aberdeenshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_aberdeenshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_abfall_havelland_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfall_havelland_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abfall_io": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "key": "Key", + "f_id_kommune": "F Id Kommune", + "f_id_strasse": "F Id Strasse", + "f_id_bezirk": "F Id Bezirk", + "f_id_strasse_hnr": "F Id Strasse Hnr", + "f_abfallarten": "F Abfallarten" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfall_io": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "key": "Key", + "f_id_kommune": "F Id Kommune", + "f_id_strasse": "F Id Strasse", + "f_id_bezirk": "F Id Bezirk", + "f_id_strasse_hnr": "F Id Strasse Hnr", + "f_abfallarten": "F Abfallarten" + }, + "data_description": {} + }, + "args_abfall_lippe_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "gemeinde": "Gemeinde", + "bezirk": "Bezirk" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfall_lippe_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "gemeinde": "Gemeinde", + "bezirk": "Bezirk" + }, + "data_description": {} + }, + "args_abfall_neunkirchen_siegerland_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfall_neunkirchen_siegerland_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abfallnavi_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfallnavi_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": {} + }, + "args_abfalltermine_forchheim_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "area": "Area" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfalltermine_forchheim_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "area": "Area" + }, + "data_description": {} + }, + "args_abfallwirtschaft_fuerth_eu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfallwirtschaft_fuerth_eu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": {} + }, + "args_abfallwirtschaft_germersheim_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfallwirtschaft_germersheim_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_abfallwirtschaft_pforzheim_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfallwirtschaft_pforzheim_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_abfallwirtschaft_vechta_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "stadt": "Stadt", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abfallwirtschaft_vechta_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "stadt": "Stadt", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abki_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_abki_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "number": "Number" + }, + "data_description": {} + }, + "args_act_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "split_suburb": "Split Suburb" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_act_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "split_suburb": "Split Suburb" + }, + "data_description": {} + }, + "args_adur_worthing_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_adur_worthing_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_affaldonline_dk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "values": "Values" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_affaldonline_dk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "values": "Values" + }, + "data_description": {} + }, + "args_affarsverken_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_affarsverken_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_aha_region_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "gemeinde": "Gemeinde", + "strasse": "Strasse", + "hnr": "Hnr", + "zusatz": "Zusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_aha_region_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "gemeinde": "Gemeinde", + "strasse": "Strasse", + "hnr": "Hnr", + "zusatz": "Zusatz" + }, + "data_description": {} + }, + "args_ahe_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "plz": "Plz", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ahe_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "plz": "Plz", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_ahk_heidekreis_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "postcode": "PLZ", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ahk_heidekreis_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "postcode": "PLZ", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_alchenstorf_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_alchenstorf_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel" + }, + "data_description": {} + }, + "args_allerdale_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_number": "Address Name Number", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_allerdale_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_number": "Address Name Number", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_alw_wf_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_alw_wf_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_ambervalley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ambervalley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_api_golemio_cz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "lat": "Lat", + "lon": "Lon", + "radius": "Radius", + "api_key": "Api Key", + "only_monitored": "Only Monitored", + "ignored_containers": "Ignored Containers", + "auto_suffix": "Auto Suffix", + "suffix": "Suffix" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_api_golemio_cz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "lat": "Lat", + "lon": "Lon", + "radius": "Radius", + "api_key": "Api Key", + "only_monitored": "Only Monitored", + "ignored_containers": "Ignored Containers", + "auto_suffix": "Auto Suffix", + "suffix": "Suffix" + }, + "data_description": {} + }, + "args_api_hubert_schmid_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "ortsteil": "Ortsteil", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_api_hubert_schmid_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "ortsteil": "Ortsteil", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_app_abfallplus_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "app_id": "App Id", + "strasse": "Strasse", + "hnr": "Hnr", + "bezirk": "Bezirk", + "city": "City", + "bundesland": "Bundesland", + "landkreis": "Landkreis" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_app_abfallplus_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "app_id": "App Id", + "strasse": "Strasse", + "hnr": "Hnr", + "bezirk": "Bezirk", + "city": "City", + "bundesland": "Bundesland", + "landkreis": "Landkreis" + }, + "data_description": {} + }, + "args_apps_imactivate_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "town": "Town", + "street": "Street", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_apps_imactivate_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "town": "Town", + "street": "Street", + "number": "Number" + }, + "data_description": {} + }, + "args_ardsandnorthdown_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ardsandnorthdown_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_armadale_wa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_armadale_wa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_art_trier_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Ort", + "zip_code": "PLZ" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_art_trier_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Ort", + "zip_code": "PLZ" + }, + "data_description": {} + }, + "args_ashfield_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ashfield_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_ashford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ashford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_asr_chemnitz_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer", + "object_number": "Objektnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_asr_chemnitz_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer", + "object_number": "Objektnummer" + }, + "data_description": {} + }, + "args_aucklandcouncil_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "area_number": "Area Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_aucklandcouncil_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "area_number": "Area Number" + }, + "data_description": {} + }, + "args_aw_harburg_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "level_1": "Level 1", + "level_2": "Level 2", + "level_3": "Level 3" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_aw_harburg_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "level_1": "Level 1", + "level_2": "Level 2", + "level_3": "Level 3" + }, + "data_description": {} + }, + "args_awb_bad_kreuznach_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "nummer": "Nummer", + "stadtteil": "Stadtteil" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awb_bad_kreuznach_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "nummer": "Nummer", + "stadtteil": "Stadtteil" + }, + "data_description": {} + }, + "args_awb_emsland_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awb_emsland_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_awb_es_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awb_es_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_awb_mainz_bingen_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bezirk": "Bezirk", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awb_mainz_bingen_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bezirk": "Bezirk", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_awb_oldenburg_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awb_oldenburg_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_awbkoeln_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_code": "Straßencode", + "building_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awbkoeln_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_code": "Straßencode", + "building_number": "Hausnummer" + }, + "data_description": {} + }, + "args_awido_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "customer": "Kunde", + "city": "Ort", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awido_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "customer": "Kunde", + "city": "Ort", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": {} + }, + "args_awigo_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awigo_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_awlneuss_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "building_number": "Hausnummer", + "street_name": "Straßenname", + "street_code": "Straßencode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awlneuss_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "building_number": "Hausnummer", + "street_name": "Straßenname", + "street_code": "Straßencode" + }, + "data_description": {} + }, + "args_awm_muenchen_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number", + "r_collect_cycle": "R Collect Cycle", + "b_collect_cycle": "B Collect Cycle", + "p_collect_cycle": "P Collect Cycle" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awm_muenchen_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number", + "r_collect_cycle": "R Collect Cycle", + "b_collect_cycle": "B Collect Cycle", + "p_collect_cycle": "P Collect Cycle" + }, + "data_description": {} + }, + "args_awn_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awn_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_awr_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awr_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_awsh_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_awsh_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_aylesburyvaledc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_aylesburyvaledc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_baden_umweltverbaende_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_baden_umweltverbaende_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region" + }, + "data_description": {} + }, + "args_ballarat_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ballarat_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_banyule_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_banyule_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": {} + }, + "args_barnsley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_barnsley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_basildon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_basildon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_basingstoke_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_basingstoke_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bathnes_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bathnes_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": {} + }, + "args_bcp_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bcp_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bedford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bedford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_belmont_wa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_belmont_wa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_berlin_recycling_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "username": "Benutzername", + "password": "Passwort" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_berlin_recycling_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "username": "Benutzername", + "password": "Passwort" + }, + "data_description": {} + }, + "args_bexley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bexley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bielefeld_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bielefeld_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_biffaleicester_co_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_biffaleicester_co_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_binzone_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_binzone_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bir_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bir_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter" + }, + "data_description": {} + }, + "args_birmingham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_birmingham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_blackburn_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_blackburn_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_blackpool_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_blackpool_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_blacktown_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_blacktown_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_bmv_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bmv_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": {} + }, + "args_bracknell_forest_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bracknell_forest_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_bradford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bradford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_braintree_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_braintree_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_breckland_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_breckland_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_brisbane_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_brisbane_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_bristol_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bristol_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bromley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bromley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": {} + }, + "args_bromsgrove_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bromsgrove_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_broxbourne_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_broxbourne_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_broxtowe_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_broxtowe_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_bsr_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "abf_strasse": "Straße", + "abf_hausnr": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bsr_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "abf_strasse": "Straße", + "abf_hausnr": "Hausnummer" + }, + "data_description": {} + }, + "args_buergerportal_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "operator": "Betreiber", + "district": "Ort", + "street": "Straße", + "subdistrict": "Ortsteil", + "number": "Hausnummer", + "show_volume": "Große Container anzeigen" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_buergerportal_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "operator": "Betreiber", + "district": "Ort", + "street": "Straße", + "subdistrict": "Ortsteil", + "number": "Hausnummer", + "show_volume": "Große Container anzeigen" + }, + "data_description": {} + }, + "args_burnley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_burnley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bury_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "id": "Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_bury_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "id": "Id" + }, + "data_description": {} + }, + "args_c_trace_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse", + "hausnummer": "Hausnummer", + "gemeinde": "Gemeinde", + "ort": "Ort", + "ortsteil": "Ortsteil", + "service": "Service" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_c_trace_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse", + "hausnummer": "Hausnummer", + "gemeinde": "Gemeinde", + "ort": "Ort", + "ortsteil": "Ortsteil", + "service": "Service" + }, + "data_description": {} + }, + "args_calgary_ca": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_calgary_ca": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_cambridge_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cambridge_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_camden_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_camden_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_campbelltown_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_campbelltown_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_canadabay_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_canadabay_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_canterbury_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_canterbury_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_cardiff_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cardiff_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cardinia_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cardinia_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_ccc_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ccc_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_cederbaum_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cederbaum_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": {} + }, + "args_centralbedfordshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "house_name": "House Name" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_centralbedfordshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "house_name": "House Name" + }, + "data_description": {} + }, + "args_cherwell_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cherwell_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cheshire_east_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cheshire_east_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": {} + }, + "args_cheshire_west_and_chester_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cheshire_west_and_chester_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chesterfield_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_chesterfield_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chichester_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_chichester_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chiemgau_recycling_lk_rosenheim": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "District" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_chiemgau_recycling_lk_rosenheim": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "District" + }, + "data_description": {} + }, + "args_chiltern_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_chiltern_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_circulus_nl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postal_code": "Postal Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_circulus_nl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postal_code": "Postal Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_citiesapps_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "calendar": "Calendar", + "password": "Password", + "email": "Email", + "phone": "Phone" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_citiesapps_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "calendar": "Calendar", + "password": "Password", + "email": "Email", + "phone": "Phone" + }, + "data_description": {} + }, + "args_cmcitymedia_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "hpid": "Hpid", + "realmid": "Realmid", + "district": "District" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cmcitymedia_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "hpid": "Hpid", + "realmid": "Realmid", + "district": "District" + }, + "data_description": {} + }, + "args_cockburn_wa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "property_no": "Property No" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cockburn_wa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "property_no": "Property No" + }, + "data_description": {} + }, + "args_colchester_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "llpgid": "Llpgid" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_colchester_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "llpgid": "Llpgid" + }, + "data_description": {} + }, + "args_conwy_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_conwy_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cornwall_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cornwall_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": {} + }, + "args_crawley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "usrn": "Usrn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_crawley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "usrn": "Usrn" + }, + "data_description": {} + }, + "args_croydon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "houseID": "House Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_croydon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "houseID": "House Id" + }, + "data_description": {} + }, + "args_cumberland_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_cumberland_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_darebin_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_location": "Property Location" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_darebin_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_location": "Property Location" + }, + "data_description": {} + }, + "args_darlington_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_darlington_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_data_umweltprofis_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "url": "Url", + "xmlurl": "Xmlurl" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_data_umweltprofis_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "url": "Url", + "xmlurl": "Xmlurl" + }, + "data_description": {} + }, + "args_denbighshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_denbighshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_derby_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "premises_id": "Premises Id", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_derby_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "premises_id": "Premises Id", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_dillingen_saar_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_dillingen_saar_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": {} + }, + "args_doncaster_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_doncaster_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_dudley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_dudley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_dunedin_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_dunedin_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_durham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_durham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_ead_darmstadt_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ead_darmstadt_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": {} + }, + "args_east_ayrshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_east_ayrshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_east_northamptonshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_east_northamptonshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_east_renfrewshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_east_renfrewshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastcambs_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastcambs_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastdevon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastdevon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastherts_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_name_number": "Address Name Number", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastherts_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_name_number": "Address Name Number", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_eastleigh_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastleigh_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastlothian_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "address_id": "Address Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastlothian_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address", + "address_id": "Address Id" + }, + "data_description": {} + }, + "args_eastriding_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eastriding_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_ecoharmonogram_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "town": "Town", + "app": "App", + "district": "District", + "street": "Street", + "house_number": "House Number", + "additional_sides_matcher": "Additional Sides Matcher", + "community": "Community" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ecoharmonogram_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "town": "Town", + "app": "App", + "district": "District", + "street": "Street", + "house_number": "House Number", + "additional_sides_matcher": "Additional Sides Matcher", + "community": "Community" + }, + "data_description": {} + }, + "args_edlitz_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "_": "" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_edlitz_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "_": "" + }, + "data_description": {} + }, + "args_edpevent_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "service_provider": "Service Provider", + "url": "Url" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_edpevent_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "service_provider": "Service Provider", + "url": "Url" + }, + "data_description": {} + }, + "args_egn_abfallkalender_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_egn_abfallkalender_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": {} + }, + "args_eigenbetrieb_abfallwirtschaft_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eigenbetrieb_abfallwirtschaft_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_ekosystem_wroc_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location_id": "Location Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ekosystem_wroc_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location_id": "Location Id" + }, + "data_description": {} + }, + "args_elmbridge_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_elmbridge_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_environmentfirst_co_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_environmentfirst_co_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_erlangen_hoechstadt_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_erlangen_hoechstadt_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_esch_lu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "zone": "Zone" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_esch_lu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "zone": "Zone" + }, + "data_description": {} + }, + "args_eth_erd_hu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_eth_erd_hu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_exeter_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_exeter_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_fareham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "road_name": "Road Name", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fareham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "road_name": "Road Name", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_fccenvironment_co_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "region": "Region" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fccenvironment_co_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "region": "Region" + }, + "data_description": {} + }, + "args_fenland_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fenland_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_fife_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fife_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_fkf_bo_hu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fkf_bo_hu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street" + }, + "data_description": {} + }, + "args_fkf_bp_hu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "District", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fkf_bp_hu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "District", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_flintshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_flintshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_frankston_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_frankston_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_fylde_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_fylde_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gastrikeatervinnare_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_gastrikeatervinnare_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_gateshead_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_gateshead_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_geelongaustralia_com_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_geelongaustralia_com_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_geoport_nwm_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Ortsteil" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_geoport_nwm_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Ortsteil" + }, + "data_description": {} + }, + "args_glasgow_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_glasgow_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gmina_miekinia_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location_id": "Location Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_gmina_miekinia_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location_id": "Location Id" + }, + "data_description": {} + }, + "args_goldcoast_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_goldcoast_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_gotland_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_gotland_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_grafikai_svara_lt": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region", + "street": "Street", + "house_number": "House Number", + "district": "District", + "waste_object_ids": "Waste Object Ids" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_grafikai_svara_lt": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region", + "street": "Street", + "house_number": "House Number", + "district": "District", + "waste_object_ids": "Waste Object Ids" + }, + "data_description": {} + }, + "args_grosswangen_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_grosswangen_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel" + }, + "data_description": {} + }, + "args_guildford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_guildford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gwynedd_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_gwynedd_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_haringey_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_haringey_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_harlow_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_harlow_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_harrow_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_harrow_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hart_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hart_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hausmuell_info": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "subdomain": "Subdomain", + "ort": "Ort", + "ortsteil": "Ortsteil", + "strasse": "Straße", + "hausnummer": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hausmuell_info": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "subdomain": "Subdomain", + "ort": "Ort", + "ortsteil": "Ortsteil", + "strasse": "Straße", + "hausnummer": "Hausnummer" + }, + "data_description": {} + }, + "args_hawkesbury_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No", + "postCode": "Post Code" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hawkesbury_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No", + "postCode": "Post Code" + }, + "data_description": {} + }, + "args_hcc_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hcc_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_heilbronn_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "plz": "PLZ", + "strasse": "Straße", + "hausnr": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_heilbronn_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "plz": "PLZ", + "strasse": "Straße", + "hausnr": "Hausnummer" + }, + "data_description": {} + }, + "args_herefordshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_herefordshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_highland_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_highland_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": {} + }, + "args_hobsonsbay_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hobsonsbay_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_hornsby_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id", + "show_nights": "Show Nights" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hornsby_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id", + "show_nights": "Show Nights" + }, + "data_description": {} + }, + "args_horowhenua_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "town": "Town", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_horowhenua_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "town": "Town", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_horsham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_horsham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hounslow_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hounslow_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hull_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hull_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hume_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hume_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "predict": "Predict" + }, + "data_description": {} + }, + "args_huntingdonshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_huntingdonshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hvcgroep_nl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postal_code": "Postal Code", + "house_number": "House Number", + "house_letter": "House Letter", + "suffix": "Suffix", + "service": "Service" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hvcgroep_nl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postal_code": "Postal Code", + "house_number": "House Number", + "house_letter": "House Letter", + "suffix": "Suffix", + "service": "Service" + }, + "data_description": {} + }, + "args_hygea_be": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetIndex": "Street Index", + "cp": "Cp" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_hygea_be": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetIndex": "Street Index", + "cp": "Cp" + }, + "data_description": {} + }, + "args_ics": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Mehr details: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md", + "data": { + "calendar_title": "Kalender Titel", + "file": "Datei", + "headers": "Headers", + "method": "Methode", + "offset": "Offset", + "params": "Parameter", + "regex": "Regulärer Ausdruck", + "split_at": "Trennen bei", + "title_template": "Titelvorlage", + "url": "URL", + "verify_ssl": "SSL-Verifizierung aktivieren", + "version": "Version", + "year_field": "Jahresfeld" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ics": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Mehr details: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md", + "data": { + "calendar_title": "Kalender Titel", + "file": "Datei", + "headers": "Headers", + "method": "Methode", + "offset": "Offset", + "params": "Parameter", + "regex": "Regulärer Ausdruck", + "split_at": "Trennen bei", + "title_template": "Titelvorlage", + "url": "URL", + "verify_ssl": "SSL-Verifizierung aktivieren", + "version": "Version", + "year_field": "Jahresfeld" + }, + "data_description": {} + }, + "args_impactapps_com_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "property_id": "Property Id", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_impactapps_com_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "property_id": "Property Id", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_infeo_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "customer": "Kunde", + "zone": "Zone", + "city": "Ort", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_infeo_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "customer": "Kunde", + "zone": "Zone", + "city": "Ort", + "street": "Straße", + "housenumber": "Hausnummer" + }, + "data_description": {} + }, + "args_innerwest_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_innerwest_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_insert_it_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Ort", + "street": "Straße", + "hnr": "Hausnummer", + "location_id": "Standort ID" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_insert_it_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Ort", + "street": "Straße", + "hnr": "Hausnummer", + "location_id": "Standort ID" + }, + "data_description": {} + }, + "args_ipswich_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ipswich_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": {} + }, + "args_iris_salten_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "kommune": "Kommune" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_iris_salten_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "kommune": "Kommune" + }, + "data_description": {} + }, + "args_iweb_itouchvision_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "council": "Council", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_iweb_itouchvision_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "council": "Council", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_jointwastesolutions_org": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house": "House", + "postcode": "Postcode", + "borough": "Borough" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_jointwastesolutions_org": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house": "House", + "postcode": "Postcode", + "borough": "Borough" + }, + "data_description": {} + }, + "args_jumomind_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service_id": "Service ID", + "city": "Ort", + "street": "Straße", + "city_id": "Ort ID", + "area_id": "Bereich ID", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_jumomind_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service_id": "Service ID", + "city": "Ort", + "street": "Straße", + "city_id": "Ort ID", + "area_id": "Bereich ID", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_juneavfall_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_juneavfall_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_kaev_niederlausitz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "abf_suche": "Abf Suche" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kaev_niederlausitz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "abf_suche": "Abf Suche" + }, + "data_description": {} + }, + "args_karlsruhe_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "hnr": "Hausnummer", + "ladeort": "Ladeort" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_karlsruhe_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "hnr": "Hausnummer", + "ladeort": "Ladeort" + }, + "data_description": {} + }, + "args_kiertokapula_fi": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bill_number": "Bill Number", + "password": "Password" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kiertokapula_fi": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bill_number": "Bill Number", + "password": "Password" + }, + "data_description": {} + }, + "args_kingston_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kingston_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_kingston_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kingston_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_kirklees_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "door_num": "Door Num", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kirklees_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "door_num": "Door Num", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_knox_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_knox_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_korneuburg_stadtservice_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Straßenname", + "street_number": "Hausnummer", + "teilgebiet": "Teilgebiet" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_korneuburg_stadtservice_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Straßenname", + "street_number": "Hausnummer", + "teilgebiet": "Teilgebiet" + }, + "data_description": {} + }, + "args_ks_boerde_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "village": "Ort", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ks_boerde_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "village": "Ort", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_kuringgai_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kuringgai_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_kwb_goslar_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "pois": "POIS" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kwb_goslar_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "pois": "POIS" + }, + "data_description": {} + }, + "args_kwu_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_kwu_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "number": "Hausnummer" + }, + "data_description": {} + }, + "args_lakemac_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lakemac_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_lancaster_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lancaster_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_landkreis_kusel_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ortsgemeinde": "Ortsgemeinde" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_landkreis_kusel_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ortsgemeinde": "Ortsgemeinde" + }, + "data_description": {} + }, + "args_landkreis_rhoen_grabfeld": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_landkreis_rhoen_grabfeld": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil" + }, + "data_description": {} + }, + "args_landkreis_wittmund_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_landkreis_wittmund_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_lbbd_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lbbd_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lerum_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lerum_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_lewisham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lewisham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lichfielddc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lichfielddc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lincoln_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lincoln_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lindau_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lindau_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort" + }, + "data_description": {} + }, + "args_lisburn_castlereagh_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lisburn_castlereagh_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_liverpool_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_liverpool_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": {} + }, + "args_logan_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_location": "Property Location" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_logan_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_location": "Property Location" + }, + "data_description": {} + }, + "args_lrasha_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location": "Gebiet" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lrasha_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location": "Gebiet" + }, + "data_description": {} + }, + "args_lsr_nu": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lsr_nu": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_lund_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_lund_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_mags_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "number": "Hausnummer", + "turnus": "Turnus" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mags_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "number": "Hausnummer", + "turnus": "Turnus" + }, + "data_description": {} + }, + "args_maidstone_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_maidstone_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_maldon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_maldon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mamirolle_info": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "_": "" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mamirolle_info": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "_": "" + }, + "data_description": {} + }, + "args_manchester_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_manchester_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mansfield_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mansfield_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mansfield_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mansfield_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_maribyrnong_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_maribyrnong_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_maroondah_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_maroondah_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_meinawb_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Strasse", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_meinawb_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Strasse", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_melton_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_melton_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_merri_bek_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_merri_bek_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_merton_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_merton_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": {} + }, + "args_mestorudna_cz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city_part": "City Part" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mestorudna_cz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city_part": "City Part" + }, + "data_description": {} + }, + "args_midsussex_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_name": "House Name", + "house_number": "House Number", + "street": "Street", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_midsussex_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_name": "House Name", + "house_number": "House Number", + "street": "Street", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_miljoteknik_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_miljoteknik_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_milton_keynes_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_milton_keynes_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_minrenovasjon_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "street_code": "Street Code", + "county_id": "County Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_minrenovasjon_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "street_code": "Street Code", + "county_id": "County Id" + }, + "data_description": {} + }, + "args_mojiodpadki_si": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mojiodpadki_si": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_monaloga_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "plz": "PLZ" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_monaloga_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "plz": "PLZ" + }, + "data_description": {} + }, + "args_montreal_ca": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "sector": "Sector" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_montreal_ca": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "sector": "Sector" + }, + "data_description": {} + }, + "args_moray_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_moray_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": {} + }, + "args_mosman_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mosman_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_movar_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_movar_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_mrsc_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_mrsc_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_muellabfuhr_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "client": "Client", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_muellabfuhr_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "client": "Client", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße" + }, + "data_description": {} + }, + "args_muellmax_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "mm_frm_ort_sel": "Ort", + "mm_frm_str_sel": "Straße", + "mm_frm_hnr_sel": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_muellmax_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "service": "Service", + "mm_frm_ort_sel": "Ort", + "mm_frm_str_sel": "Straße", + "mm_frm_hnr_sel": "Hausnummer" + }, + "data_description": {} + }, + "args_muenchenstein_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "waste_district": "Abfuhrkreis" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_muenchenstein_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "waste_district": "Abfuhrkreis" + }, + "data_description": {} + }, + "args_myutility_winnipeg_ca": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_myutility_winnipeg_ca": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_nawma_sa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "suburb": "Suburb", + "street_number": "Street Number", + "pid": "Pid" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nawma_sa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "suburb": "Suburb", + "street_number": "Street Number", + "pid": "Pid" + }, + "data_description": {} + }, + "args_newark_sherwooddc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_newark_sherwooddc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newcastle_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_newcastle_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newcastle_staffs_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_newcastle_staffs_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_newham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property": "Property" + }, + "data_description": {} + }, + "args_nillumbik_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nillumbik_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_north_ayrshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_north_ayrshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_north_kesteven_org_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_north_kesteven_org_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northherts_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northherts_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_northlincs_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northlincs_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northnorthants_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northnorthants_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_hambleton_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northyorks_hambleton_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_harrogate_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northyorks_harrogate_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_scarborough_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northyorks_scarborough_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_selby_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_northyorks_selby_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_nottingham_city_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nottingham_city_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_nsomerset_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nsomerset_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_nuernberger_land_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nuernberger_land_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": {} + }, + "args_nvaa_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nvaa_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_nwleics_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_nwleics_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_offenbach_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "f_id_location": "Standort ID" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_offenbach_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "f_id_location": "Standort ID" + }, + "data_description": {} + }, + "args_okc_gov": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "objectID": "Object Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_okc_gov": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "objectID": "Object Id" + }, + "data_description": {} + }, + "args_onkaparingacity_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_onkaparingacity_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_oslokommune_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter", + "street_id": "Street Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_oslokommune_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter", + "street_id": "Street Id" + }, + "data_description": {} + }, + "args_oxford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_oxford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_peterborough_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_peterborough_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_pgh_st": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number", + "street_name": "Street Name", + "zipcode": "Zipcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_pgh_st": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number", + "street_name": "Street Name", + "zipcode": "Zipcode" + }, + "data_description": {} + }, + "args_portenf_sa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "house_number": "House Number", + "unit_number": "Unit Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_portenf_sa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "house_number": "House Number", + "unit_number": "Unit Number" + }, + "data_description": {} + }, + "args_portsmouth_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_portsmouth_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_portstephens_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_portstephens_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_potsdam_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ortsteil": "Ortsteil", + "strasse": "Straße", + "rest_rhythm": "Restabfall Rhythmus", + "papier_rhythm": "Papier Rhythmus", + "bio_rhythm": "Bio Rhythmus", + "gelb_rhythm": "Gelb Rhythmus" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_potsdam_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ortsteil": "Ortsteil", + "strasse": "Straße", + "rest_rhythm": "Restabfall Rhythmus", + "papier_rhythm": "Papier Rhythmus", + "bio_rhythm": "Bio Rhythmus", + "gelb_rhythm": "Gelb Rhythmus" + }, + "data_description": {} + }, + "args_poznan_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_poznan_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_pronatura_bydgoszcz_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_pronatura_bydgoszcz_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_rambo_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rambo_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_rbwm_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rbwm_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rctcbc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rctcbc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_reading_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_reading_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": {} + }, + "args_real_luzern_ch": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality_id": "Orts ID", + "street_id": "Strassen ID" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_real_luzern_ch": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality_id": "Orts ID", + "street_id": "Strassen ID" + }, + "data_description": {} + }, + "args_recycleapp_be": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number", + "add_events": "Add Events" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_recycleapp_be": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number", + "add_events": "Add Events" + }, + "data_description": {} + }, + "args_recyclecoach_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City", + "state": "State", + "project_id": "Project Id", + "district_id": "District Id", + "zone_id": "Zone Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_recyclecoach_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City", + "state": "State", + "project_id": "Project Id", + "district_id": "District Id", + "zone_id": "Zone Id" + }, + "data_description": {} + }, + "args_recyclesmart_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "email": "Email", + "password": "Password" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_recyclesmart_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "email": "Email", + "password": "Password" + }, + "data_description": {} + }, + "args_redbridge_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_redbridge_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_redland_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_redland_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_regioentsorgung_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_regioentsorgung_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_reigatebanstead_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_reigatebanstead_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_remidt_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_remidt_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_renfrewshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_renfrewshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_renosyd_dk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_renosyd_dk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_renoweb_dk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "address": "Address", + "address_id": "Address Id", + "include_ordered_pickup_entries": "Include Ordered Pickup Entries" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_renoweb_dk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "municipality": "Municipality", + "address": "Address", + "address_id": "Address Id", + "include_ordered_pickup_entries": "Include Ordered Pickup Entries" + }, + "data_description": {} + }, + "args_republicservices_com": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "method": "Method" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_republicservices_com": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "method": "Method" + }, + "data_description": {} + }, + "args_reso_gmbh_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "ortsteil": "Ortsteil" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_reso_gmbh_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "ortsteil": "Ortsteil" + }, + "data_description": {} + }, + "args_rh_entsorgung_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rh_entsorgung_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße", + "house_number": "Hausnummer", + "address_suffix": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_richmondshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_richmondshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rotherham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rotherham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_runnymede_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_runnymede_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rushcliffe_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rushcliffe_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_rushmoor_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rushmoor_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rv_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr", + "hnr_zusatz": "Hnr Zusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_rv_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr", + "hnr_zusatz": "Hnr Zusatz" + }, + "data_description": {} + }, + "args_salford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_salford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_samiljo_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_samiljo_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_sandnes_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sandnes_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": {} + }, + "args_sbazv_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sbazv_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "district": "Ortsteil", + "street": "Straße" + }, + "data_description": {} + }, + "args_scambs_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_scambs_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_scheibbs_umweltverbaende_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_scheibbs_umweltverbaende_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "region": "Region" + }, + "data_description": {} + }, + "args_schweinfurt_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "showmobile": "Showmobile" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_schweinfurt_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "showmobile": "Showmobile" + }, + "data_description": {} + }, + "args_seattle_gov": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "prem_code": "Prem Code" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_seattle_gov": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "prem_code": "Prem Code" + }, + "data_description": {} + }, + "args_sector27_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sector27_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} + }, + "args_sepan_remondis_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sepan_remondis_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_sheffield_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sheffield_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_shellharbourwaste_com_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "zoneID": "Zone Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_shellharbourwaste_com_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "zoneID": "Zone Id" + }, + "data_description": {} + }, + "args_sholland_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sholland_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_shropshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_shropshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_solihull_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_solihull_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": {} + }, + "args_south_norfolk_and_broadland_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_payload": "Address Payload", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_south_norfolk_and_broadland_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_payload": "Address Payload", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_southampton_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_southampton_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southderbyshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_southderbyshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southglos_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_southglos_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southkesteven_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_id": "Address Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_southkesteven_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_id": "Address Id" + }, + "data_description": {} + }, + "args_southtyneside_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_southtyneside_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_srvatervinning_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "city": "City" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_srvatervinning_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "city": "City" + }, + "data_description": {} + }, + "args_ssam_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ssam_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_stadtreinigung_dresden_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "standort": "Standort" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stadtreinigung_dresden_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "standort": "Standort" + }, + "data_description": {} + }, + "args_stadtreinigung_hamburg": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "hnId": "Hn Id", + "asId": "As Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stadtreinigung_hamburg": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "hnId": "Hn Id", + "asId": "As Id" + }, + "data_description": {} + }, + "args_stadtreinigung_leipzig_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stadtreinigung_leipzig_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_stadtservice_bruehl_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stadtservice_bruehl_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_staedteservice_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street_number": "Street Number", + "street_name": "Street Name", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_staedteservice_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "City", + "street_number": "Street Number", + "street_name": "Street Name", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_staffordbc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_staffordbc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stalbans_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stalbans_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_static": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Mehr details: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md", + "data": { + "calendar_title": "Kalender Titel", + "count": "Count", + "dates": "Dates", + "excludes": "Excludes", + "frequency": "Frequency", + "interval": "Interval", + "start": "Start", + "type": "Type", + "until": "Until", + "weekdays": "Weekdays" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_static": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Mehr details: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md", + "data": { + "calendar_title": "Kalender Titel", + "count": "Count", + "dates": "Dates", + "excludes": "Excludes", + "frequency": "Frequency", + "interval": "Interval", + "start": "Start", + "type": "Type", + "until": "Until", + "weekdays": "Weekdays" + }, + "data_description": {} + }, + "args_stavanger_no": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stavanger_no": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": {} + }, + "args_stevenage_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stevenage_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stirling_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "route": "Route" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stirling_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "route": "Route" + }, + "data_description": {} + }, + "args_stockport_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stockport_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stockton_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stockton_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stoke_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stoke_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stonnington_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stonnington_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_stratford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stratford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stroud_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stroud_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stuttgart_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "streetnr": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_stuttgart_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "streetnr": "Hausnummer" + }, + "data_description": {} + }, + "args_sutton_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sutton_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "id": "Id" + }, + "data_description": {} + }, + "args_swansea_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "post_code": "Post Code" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_swansea_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_name": "Street Name", + "post_code": "Post Code" + }, + "data_description": {} + }, + "args_swindon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_swindon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_sysav_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_sysav_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_tameside_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tameside_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_tauranga_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tauranga_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_tbv_velbert_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tbv_velbert_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße" + }, + "data_description": {} + }, + "args_tekniskaverken_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tekniskaverken_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_telford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "name_number": "Name Number", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_telford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "name_number": "Name Number", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_tewkesbury_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tewkesbury_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_thehills_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_thehills_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No" + }, + "data_description": {} + }, + "args_tkeliai_lt": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location": "Location" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tkeliai_lt": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "location": "Location" + }, + "data_description": {} + }, + "args_tmbc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tmbc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "address": "Address" + }, + "data_description": {} + }, + "args_tonnenleerung_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "url": "URL" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tonnenleerung_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "url": "URL" + }, + "data_description": {} + }, + "args_toogoodtowaste_co_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_toogoodtowaste_co_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_toronto_ca": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_toronto_ca": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_townsville_qld_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_townsville_qld_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "property_id": "Property Id" + }, + "data_description": {} + }, + "args_tunbridgewells_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_tunbridgewells_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_ukbcd": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "file": "File" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ukbcd": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "file": "File" + }, + "data_description": {} + }, + "args_umweltverbaende_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Gebiet", + "municipal": "Gemeinde", + "calendar": "Kalender", + "calendar_title_separator": "Kalendertitel Seperator", + "calendar_splitter": "Kalendereintrag-Trenner" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_umweltverbaende_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Gebiet", + "municipal": "Gemeinde", + "calendar": "Kalender", + "calendar_title_separator": "Kalendertitel Seperator", + "calendar_splitter": "Kalendereintrag-Trenner" + }, + "data_description": {} + }, + "args_unley_sa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_unley_sa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_uppsalavatten_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_uppsalavatten_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_uttlesford_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house": "House" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_uttlesford_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house": "House" + }, + "data_description": {} + }, + "args_valeofglamorgan_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_valeofglamorgan_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_vasyd_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_vasyd_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_vestfor_dk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetName": "Street Name", + "number": "Number", + "zipCode": "Zip Code" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_vestfor_dk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetName": "Street Name", + "number": "Number", + "zipCode": "Zip Code" + }, + "data_description": {} + }, + "args_victoriapark_wa_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_victoriapark_wa_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "predict": "Predict" + }, + "data_description": {} + }, + "args_vivab_se": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_vivab_se": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_waipa_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_waipa_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_walsall_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_walsall_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_warrington_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_warrington_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_warszawa19115_pl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_warszawa19115_pl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": {} + }, + "args_warwickdc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_warwickdc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_was_wolfsburg_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "city": "Ort" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_was_wolfsburg_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "city": "Ort" + }, + "data_description": {} + }, + "args_wastenet_org_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "entry_id": "Entry Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wastenet_org_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address", + "entry_id": "Entry Id" + }, + "data_description": {} + }, + "args_waverley_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_waverley_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_wealden_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wealden_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_welhat_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_welhat_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wellington_govt_nz": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetId": "Street Id", + "streetName": "Street Name" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wellington_govt_nz": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "streetId": "Street Id", + "streetName": "Street Name" + }, + "data_description": {} + }, + "args_wermelskirchen_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wermelskirchen_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Straße", + "house_number": "Hausnummer" + }, + "data_description": {} + }, + "args_west_dunbartonshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number", + "uprn": "Uprn", + "street": "Street", + "town": "Town" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_west_dunbartonshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "house_number": "House Number", + "uprn": "Uprn", + "street": "Street", + "town": "Town" + }, + "data_description": {} + }, + "args_west_norfolk_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_west_norfolk_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_westberks_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_westberks_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": {} + }, + "args_westnorthants_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_westnorthants_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_westsuffolk_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_westsuffolk_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_whittlesea_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_whittlesea_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wigan_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wigan_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_wiltshire_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wiltshire_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wirral_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wirral_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": {} + }, + "args_wokingham_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "property": "Property", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wokingham_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "postcode": "Postcode", + "property": "Property", + "address": "Address" + }, + "data_description": {} + }, + "args_wollondilly_nsw_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wollondilly_nsw_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address": "Address" + }, + "data_description": {} + }, + "args_wollongongwaste_com_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "propertyID": "Property Id" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wollongongwaste_com_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "propertyID": "Property Id" + }, + "data_description": {} + }, + "args_wsz_moosburg_at": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_id": "Adressen ID", + "municipal": "Gemeinde", + "address": "Adresse", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wsz_moosburg_at": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "address_id": "Adressen ID", + "municipal": "Gemeinde", + "address": "Adresse", + "street": "Straße" + }, + "data_description": {} + }, + "args_wuerzburg_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Stadtteil", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wuerzburg_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "district": "Stadtteil", + "street": "Straße" + }, + "data_description": {} + }, + "args_wychavon_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wychavon_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_wyndham_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wyndham_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_wyreforestdc_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "town": "Town", + "garden_cutomer": "Garden Cutomer" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_wyreforestdc_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street": "Street", + "town": "Town", + "garden_cutomer": "Garden Cutomer" + }, + "data_description": {} + }, + "args_ximmio_nl": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "company": "Company", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_ximmio_nl": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "company": "Company", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_yarra_ranges_vic_gov_au": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_yarra_ranges_vic_gov_au": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_york_gov_uk": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_york_gov_uk": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_zakb_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Straße", + "hnr": "Hausnummer", + "hnr_zusatz": "Hausnummerzusatz" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_zakb_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "ort": "Ort", + "strasse": "Straße", + "hnr": "Hausnummer", + "hnr_zusatz": "Hausnummerzusatz" + }, + "data_description": {} + }, + "args_zva_sek_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bezirk": "Abfuhrbezirk", + "ortsteil": "Ortsteil", + "strasse": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_zva_sek_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "bezirk": "Abfuhrbezirk", + "ortsteil": "Ortsteil", + "strasse": "Straße" + }, + "data_description": {} + }, + "args_zva_wmk_de": { + "title": "Quelle konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": { + "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." + } + }, + "reconfigure_zva_wmk_de": { + "title": "Quelle Neu Konfigurieren", + "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", + "data": { + "calendar_title": "Kalender Titel", + "city": "Ort", + "street": "Straße" + }, + "data_description": {} } }, "error": { diff --git a/custom_components/waste_collection_schedule/translations/en.json b/custom_components/waste_collection_schedule/translations/en.json index bd5d2c65..8c322bee 100644 --- a/custom_components/waste_collection_schedule/translations/en.json +++ b/custom_components/waste_collection_schedule/translations/en.json @@ -2920,6 +2920,9246 @@ "zva_wmk_de_self": "Zva Wmk De Self", "zva_wmk_de_street": "Zva Wmk De Street" } + }, + "args_a_region_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "district": "District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_a_region_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "district": "District" + }, + "data_description": {} + }, + "args_aberdeenshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_aberdeenshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_abfall_havelland_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfall_havelland_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abfall_io": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "key": "Key", + "f_id_kommune": "F Id Kommune", + "f_id_strasse": "F Id Strasse", + "f_id_bezirk": "F Id Bezirk", + "f_id_strasse_hnr": "F Id Strasse Hnr", + "f_abfallarten": "F Abfallarten" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfall_io": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "key": "Key", + "f_id_kommune": "F Id Kommune", + "f_id_strasse": "F Id Strasse", + "f_id_bezirk": "F Id Bezirk", + "f_id_strasse_hnr": "F Id Strasse Hnr", + "f_abfallarten": "F Abfallarten" + }, + "data_description": {} + }, + "args_abfall_lippe_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "gemeinde": "Gemeinde", + "bezirk": "Bezirk" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfall_lippe_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "gemeinde": "Gemeinde", + "bezirk": "Bezirk" + }, + "data_description": {} + }, + "args_abfall_neunkirchen_siegerland_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfall_neunkirchen_siegerland_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abfallnavi_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfallnavi_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": {} + }, + "args_abfalltermine_forchheim_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "area": "Area" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfalltermine_forchheim_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "area": "Area" + }, + "data_description": {} + }, + "args_abfallwirtschaft_fuerth_eu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfallwirtschaft_fuerth_eu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": {} + }, + "args_abfallwirtschaft_germersheim_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfallwirtschaft_germersheim_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_abfallwirtschaft_pforzheim_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfallwirtschaft_pforzheim_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_abfallwirtschaft_vechta_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "stadt": "Stadt", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abfallwirtschaft_vechta_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "stadt": "Stadt", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_abki_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_abki_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "number": "Number" + }, + "data_description": {} + }, + "args_act_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "split_suburb": "Split Suburb" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_act_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "split_suburb": "Split Suburb" + }, + "data_description": {} + }, + "args_adur_worthing_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_adur_worthing_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_affaldonline_dk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "values": "Values" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_affaldonline_dk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "values": "Values" + }, + "data_description": {} + }, + "args_affarsverken_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_affarsverken_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_aha_region_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "gemeinde": "Gemeinde", + "strasse": "Strasse", + "hnr": "Hnr", + "zusatz": "Zusatz" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_aha_region_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "gemeinde": "Gemeinde", + "strasse": "Strasse", + "hnr": "Hnr", + "zusatz": "Zusatz" + }, + "data_description": {} + }, + "args_ahe_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "plz": "Plz", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ahe_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "plz": "Plz", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_ahk_heidekreis_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ahk_heidekreis_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_alchenstorf_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_alchenstorf_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title" + }, + "data_description": {} + }, + "args_allerdale_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_number": "Address Name Number", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_allerdale_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_number": "Address Name Number", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_alw_wf_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_alw_wf_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_ambervalley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ambervalley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_api_golemio_cz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "lat": "Lat", + "lon": "Lon", + "radius": "Radius", + "api_key": "Api Key", + "only_monitored": "Only Monitored", + "ignored_containers": "Ignored Containers", + "auto_suffix": "Auto Suffix", + "suffix": "Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_api_golemio_cz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "lat": "Lat", + "lon": "Lon", + "radius": "Radius", + "api_key": "Api Key", + "only_monitored": "Only Monitored", + "ignored_containers": "Ignored Containers", + "auto_suffix": "Auto Suffix", + "suffix": "Suffix" + }, + "data_description": {} + }, + "args_api_hubert_schmid_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "ortsteil": "Ortsteil", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_api_hubert_schmid_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "ortsteil": "Ortsteil", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_app_abfallplus_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "app_id": "App Id", + "strasse": "Strasse", + "hnr": "Hnr", + "bezirk": "Bezirk", + "city": "City", + "bundesland": "Bundesland", + "landkreis": "Landkreis" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_app_abfallplus_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "app_id": "App Id", + "strasse": "Strasse", + "hnr": "Hnr", + "bezirk": "Bezirk", + "city": "City", + "bundesland": "Bundesland", + "landkreis": "Landkreis" + }, + "data_description": {} + }, + "args_apps_imactivate_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "town": "Town", + "street": "Street", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_apps_imactivate_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "town": "Town", + "street": "Street", + "number": "Number" + }, + "data_description": {} + }, + "args_ardsandnorthdown_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ardsandnorthdown_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_armadale_wa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_armadale_wa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_art_trier_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "zip_code": "Zip Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_art_trier_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "zip_code": "Zip Code" + }, + "data_description": {} + }, + "args_ashfield_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ashfield_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_ashford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ashford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_asr_chemnitz_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "object_number": "Object Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_asr_chemnitz_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "object_number": "Object Number" + }, + "data_description": {} + }, + "args_aucklandcouncil_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "area_number": "Area Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_aucklandcouncil_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "area_number": "Area Number" + }, + "data_description": {} + }, + "args_aw_harburg_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "level_1": "Level 1", + "level_2": "Level 2", + "level_3": "Level 3" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_aw_harburg_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "level_1": "Level 1", + "level_2": "Level 2", + "level_3": "Level 3" + }, + "data_description": {} + }, + "args_awb_bad_kreuznach_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "nummer": "Nummer", + "stadtteil": "Stadtteil" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awb_bad_kreuznach_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "nummer": "Nummer", + "stadtteil": "Stadtteil" + }, + "data_description": {} + }, + "args_awb_emsland_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awb_emsland_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_awb_es_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awb_es_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_awb_mainz_bingen_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bezirk": "Bezirk", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awb_mainz_bingen_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bezirk": "Bezirk", + "ort": "Ort", + "strasse": "Strasse" + }, + "data_description": {} + }, + "args_awb_oldenburg_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awb_oldenburg_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_awbkoeln_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_code": "Street Code", + "building_number": "Building Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awbkoeln_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_code": "Street Code", + "building_number": "Building Number" + }, + "data_description": {} + }, + "args_awido_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "customer": "Customer", + "city": "City", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awido_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "customer": "Customer", + "city": "City", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": {} + }, + "args_awigo_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awigo_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_awlneuss_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "building_number": "Building Number", + "street_name": "Street Name", + "street_code": "Street Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awlneuss_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "building_number": "Building Number", + "street_name": "Street Name", + "street_code": "Street Code" + }, + "data_description": {} + }, + "args_awm_muenchen_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "r_collect_cycle": "R Collect Cycle", + "b_collect_cycle": "B Collect Cycle", + "p_collect_cycle": "P Collect Cycle" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awm_muenchen_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "r_collect_cycle": "R Collect Cycle", + "b_collect_cycle": "B Collect Cycle", + "p_collect_cycle": "P Collect Cycle" + }, + "data_description": {} + }, + "args_awn_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awn_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_awr_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awr_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_awsh_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_awsh_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_aylesburyvaledc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_aylesburyvaledc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_baden_umweltverbaende_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_baden_umweltverbaende_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region" + }, + "data_description": {} + }, + "args_ballarat_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ballarat_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_banyule_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_banyule_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": {} + }, + "args_barnsley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_barnsley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_basildon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_basildon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_basingstoke_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_basingstoke_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bathnes_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bathnes_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": {} + }, + "args_bcp_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bcp_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bedford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bedford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_belmont_wa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_belmont_wa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_berlin_recycling_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "username": "Username", + "password": "Password" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_berlin_recycling_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "username": "Username", + "password": "Password" + }, + "data_description": {} + }, + "args_bexley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bexley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bielefeld_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bielefeld_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_biffaleicester_co_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_biffaleicester_co_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_binzone_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_binzone_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bir_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bir_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter" + }, + "data_description": {} + }, + "args_birmingham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_birmingham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_blackburn_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_blackburn_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_blackpool_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_blackpool_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_blacktown_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_blacktown_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_bmv_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bmv_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hausnummer": "Hausnummer" + }, + "data_description": {} + }, + "args_bracknell_forest_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bracknell_forest_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_bradford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bradford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_braintree_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_braintree_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_breckland_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_breckland_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_brisbane_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_brisbane_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_bristol_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bristol_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bromley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bromley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": {} + }, + "args_bromsgrove_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bromsgrove_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_broxbourne_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_broxbourne_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_broxtowe_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_broxtowe_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_bsr_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "abf_strasse": "Abf Strasse", + "abf_hausnr": "Abf Hausnr" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bsr_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "abf_strasse": "Abf Strasse", + "abf_hausnr": "Abf Hausnr" + }, + "data_description": {} + }, + "args_buergerportal_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "operator": "Operator", + "district": "District", + "street": "Street", + "subdistrict": "Subdistrict", + "number": "Number", + "show_volume": "Show Volume" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_buergerportal_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "operator": "Operator", + "district": "District", + "street": "Street", + "subdistrict": "Subdistrict", + "number": "Number", + "show_volume": "Show Volume" + }, + "data_description": {} + }, + "args_burnley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_burnley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_bury_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "id": "Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_bury_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "id": "Id" + }, + "data_description": {} + }, + "args_c_trace_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Street", + "hausnummer": "House number", + "gemeinde": "Municipality", + "ort": "District", + "ortsteil": "Subdistrict", + "service": "Operator" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_c_trace_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Street", + "hausnummer": "House number", + "gemeinde": "Municipality", + "ort": "District", + "ortsteil": "Subdistrict", + "service": "Operator" + }, + "data_description": {} + }, + "args_calgary_ca": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_calgary_ca": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_cambridge_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cambridge_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_camden_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_camden_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_campbelltown_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_campbelltown_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_canadabay_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_canadabay_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_canterbury_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_canterbury_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_cardiff_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cardiff_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cardinia_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cardinia_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_ccc_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ccc_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_cederbaum_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cederbaum_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": {} + }, + "args_centralbedfordshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "house_name": "House Name" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_centralbedfordshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "house_name": "House Name" + }, + "data_description": {} + }, + "args_cherwell_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cherwell_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cheshire_east_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cheshire_east_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": {} + }, + "args_cheshire_west_and_chester_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cheshire_west_and_chester_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chesterfield_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_chesterfield_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chichester_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_chichester_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_chiemgau_recycling_lk_rosenheim": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_chiemgau_recycling_lk_rosenheim": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District" + }, + "data_description": {} + }, + "args_chiltern_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_chiltern_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_circulus_nl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postal_code": "Postal Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_circulus_nl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postal_code": "Postal Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_citiesapps_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "calendar": "Calendar", + "password": "Password", + "email": "Email", + "phone": "Phone" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_citiesapps_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "calendar": "Calendar", + "password": "Password", + "email": "Email", + "phone": "Phone" + }, + "data_description": {} + }, + "args_cmcitymedia_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "hpid": "Hpid", + "realmid": "Realmid", + "district": "District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cmcitymedia_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "hpid": "Hpid", + "realmid": "Realmid", + "district": "District" + }, + "data_description": {} + }, + "args_cockburn_wa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "property_no": "Property No" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cockburn_wa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "property_no": "Property No" + }, + "data_description": {} + }, + "args_colchester_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "llpgid": "Llpgid" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_colchester_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "llpgid": "Llpgid" + }, + "data_description": {} + }, + "args_conwy_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_conwy_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_cornwall_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cornwall_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": {} + }, + "args_crawley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "usrn": "Usrn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_crawley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "usrn": "Usrn" + }, + "data_description": {} + }, + "args_croydon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "houseID": "House Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_croydon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "houseID": "House Id" + }, + "data_description": {} + }, + "args_cumberland_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_cumberland_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_darebin_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_location": "Property Location" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_darebin_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_location": "Property Location" + }, + "data_description": {} + }, + "args_darlington_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_darlington_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_data_umweltprofis_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "url": "Url", + "xmlurl": "Xmlurl" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_data_umweltprofis_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "url": "Url", + "xmlurl": "Xmlurl" + }, + "data_description": {} + }, + "args_denbighshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_denbighshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_derby_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "premises_id": "Premises Id", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_derby_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "premises_id": "Premises Id", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_dillingen_saar_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_dillingen_saar_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": {} + }, + "args_doncaster_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_doncaster_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_dudley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_dudley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_dunedin_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_dunedin_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_durham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_durham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_ead_darmstadt_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ead_darmstadt_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": {} + }, + "args_east_ayrshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_east_ayrshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_east_northamptonshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_east_northamptonshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_east_renfrewshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_east_renfrewshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastcambs_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastcambs_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastdevon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastdevon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastherts_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_name_number": "Address Name Number", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastherts_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_name_number": "Address Name Number", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_eastleigh_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastleigh_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_eastlothian_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "address_id": "Address Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastlothian_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address", + "address_id": "Address Id" + }, + "data_description": {} + }, + "args_eastriding_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eastriding_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_ecoharmonogram_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "town": "Town", + "app": "App", + "district": "District", + "street": "Street", + "house_number": "House Number", + "additional_sides_matcher": "Additional Sides Matcher", + "community": "Community" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ecoharmonogram_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "town": "Town", + "app": "App", + "district": "District", + "street": "Street", + "house_number": "House Number", + "additional_sides_matcher": "Additional Sides Matcher", + "community": "Community" + }, + "data_description": {} + }, + "args_edlitz_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "_": "" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_edlitz_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "_": "" + }, + "data_description": {} + }, + "args_edpevent_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "service_provider": "Service Provider", + "url": "Url" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_edpevent_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "service_provider": "Service Provider", + "url": "Url" + }, + "data_description": {} + }, + "args_egn_abfallkalender_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_egn_abfallkalender_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": {} + }, + "args_eigenbetrieb_abfallwirtschaft_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eigenbetrieb_abfallwirtschaft_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_ekosystem_wroc_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location_id": "Location Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ekosystem_wroc_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location_id": "Location Id" + }, + "data_description": {} + }, + "args_elmbridge_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_elmbridge_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_environmentfirst_co_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_environmentfirst_co_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_erlangen_hoechstadt_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_erlangen_hoechstadt_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_esch_lu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "zone": "Zone" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_esch_lu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "zone": "Zone" + }, + "data_description": {} + }, + "args_eth_erd_hu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_eth_erd_hu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_exeter_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_exeter_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_fareham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "road_name": "Road Name", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fareham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "road_name": "Road Name", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_fccenvironment_co_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "region": "Region" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fccenvironment_co_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "region": "Region" + }, + "data_description": {} + }, + "args_fenland_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fenland_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_fife_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fife_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_fkf_bo_hu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fkf_bo_hu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": {} + }, + "args_fkf_bp_hu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fkf_bp_hu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_flintshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_flintshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_frankston_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_frankston_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_fylde_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_fylde_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gastrikeatervinnare_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_gastrikeatervinnare_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_gateshead_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_gateshead_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_geelongaustralia_com_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_geelongaustralia_com_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_geoport_nwm_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_geoport_nwm_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District" + }, + "data_description": {} + }, + "args_glasgow_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_glasgow_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gmina_miekinia_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location_id": "Location Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_gmina_miekinia_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location_id": "Location Id" + }, + "data_description": {} + }, + "args_goldcoast_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_goldcoast_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_gotland_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_gotland_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_grafikai_svara_lt": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region", + "street": "Street", + "house_number": "House Number", + "district": "District", + "waste_object_ids": "Waste Object Ids" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_grafikai_svara_lt": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region", + "street": "Street", + "house_number": "House Number", + "district": "District", + "waste_object_ids": "Waste Object Ids" + }, + "data_description": {} + }, + "args_grosswangen_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_grosswangen_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title" + }, + "data_description": {} + }, + "args_guildford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_guildford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_gwynedd_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_gwynedd_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_haringey_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_haringey_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_harlow_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_harlow_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_harrow_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_harrow_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hart_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hart_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hausmuell_info": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "subdomain": "Subdomain", + "ort": "City", + "ortsteil": "District", + "strasse": "Street", + "hausnummer": "House number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hausmuell_info": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "subdomain": "Subdomain", + "ort": "City", + "ortsteil": "District", + "strasse": "Street", + "hausnummer": "House number" + }, + "data_description": {} + }, + "args_hawkesbury_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No", + "postCode": "Post Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hawkesbury_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No", + "postCode": "Post Code" + }, + "data_description": {} + }, + "args_hcc_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hcc_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_heilbronn_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "plz": "Zip Code", + "strasse": "Street", + "hausnr": "House number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_heilbronn_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "plz": "Zip Code", + "strasse": "Street", + "hausnr": "House number" + }, + "data_description": {} + }, + "args_herefordshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_herefordshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_highland_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_highland_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": {} + }, + "args_hobsonsbay_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hobsonsbay_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_hornsby_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id", + "show_nights": "Show Nights" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hornsby_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id", + "show_nights": "Show Nights" + }, + "data_description": {} + }, + "args_horowhenua_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "town": "Town", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_horowhenua_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "town": "Town", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_horsham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_horsham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hounslow_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hounslow_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hull_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hull_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hume_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hume_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "predict": "Predict" + }, + "data_description": {} + }, + "args_huntingdonshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_huntingdonshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_hvcgroep_nl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postal_code": "Postal Code", + "house_number": "House Number", + "house_letter": "House Letter", + "suffix": "Suffix", + "service": "Service" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hvcgroep_nl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postal_code": "Postal Code", + "house_number": "House Number", + "house_letter": "House Letter", + "suffix": "Suffix", + "service": "Service" + }, + "data_description": {} + }, + "args_hygea_be": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetIndex": "Street Index", + "cp": "Cp" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_hygea_be": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetIndex": "Street Index", + "cp": "Cp" + }, + "data_description": {} + }, + "args_ics": { + "title": "Configure Source", + "description": "Configure your service provider. More detailes: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md.", + "data": { + "calendar_title": "Calendar Title", + "file": "File", + "headers": "Headers", + "method": "Method", + "offset": "Offset", + "params": "Parameters", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verify Ssl", + "version": "Version", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ics": { + "title": "Reconfigure Source", + "description": "Configure your service provider. More detailes: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md.", + "data": { + "calendar_title": "Calendar Title", + "file": "File", + "headers": "Headers", + "method": "Method", + "offset": "Offset", + "params": "Parameters", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verify Ssl", + "version": "Version", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_impactapps_com_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "property_id": "Property Id", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_impactapps_com_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "property_id": "Property Id", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_infeo_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "customer": "Customer", + "zone": "Zone", + "city": "City", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_infeo_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "customer": "Customer", + "zone": "Zone", + "city": "City", + "street": "Street", + "housenumber": "Housenumber" + }, + "data_description": {} + }, + "args_innerwest_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_innerwest_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_insert_it_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "street": "Street", + "hnr": "Hnr", + "location_id": "Location Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_insert_it_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "street": "Street", + "hnr": "Hnr", + "location_id": "Location Id" + }, + "data_description": {} + }, + "args_ipswich_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ipswich_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": {} + }, + "args_iris_salten_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "kommune": "Kommune" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_iris_salten_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "kommune": "Kommune" + }, + "data_description": {} + }, + "args_iweb_itouchvision_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "council": "Council", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_iweb_itouchvision_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "council": "Council", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_jointwastesolutions_org": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house": "House", + "postcode": "Postcode", + "borough": "Borough" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_jointwastesolutions_org": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house": "House", + "postcode": "Postcode", + "borough": "Borough" + }, + "data_description": {} + }, + "args_jumomind_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service_id": "Service Id", + "city": "City", + "street": "Street", + "city_id": "City Id", + "area_id": "Area Id", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_jumomind_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service_id": "Service Id", + "city": "City", + "street": "Street", + "city_id": "City Id", + "area_id": "Area Id", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_juneavfall_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_juneavfall_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_kaev_niederlausitz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "abf_suche": "Abf Suche" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kaev_niederlausitz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "abf_suche": "Abf Suche" + }, + "data_description": {} + }, + "args_karlsruhe_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "hnr": "House number", + "ladeort": "Loading point" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_karlsruhe_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "hnr": "House number", + "ladeort": "Loading point" + }, + "data_description": {} + }, + "args_kiertokapula_fi": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bill_number": "Bill Number", + "password": "Password" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kiertokapula_fi": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bill_number": "Bill Number", + "password": "Password" + }, + "data_description": {} + }, + "args_kingston_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kingston_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_kingston_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kingston_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_kirklees_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "door_num": "Door Num", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kirklees_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "door_num": "Door Num", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_knox_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_knox_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_korneuburg_stadtservice_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number", + "teilgebiet": "Subarea" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_korneuburg_stadtservice_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number", + "teilgebiet": "Subarea" + }, + "data_description": {} + }, + "args_ks_boerde_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "village": "Village", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ks_boerde_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "village": "Village", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_kuringgai_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kuringgai_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_kwb_goslar_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "pois": "POIS" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kwb_goslar_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "pois": "POIS" + }, + "data_description": {} + }, + "args_kwu_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_kwu_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "number": "Number" + }, + "data_description": {} + }, + "args_lakemac_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lakemac_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_lancaster_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lancaster_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_landkreis_kusel_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ortsgemeinde": "Ortsgemeinde" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_landkreis_kusel_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ortsgemeinde": "Ortsgemeinde" + }, + "data_description": {} + }, + "args_landkreis_rhoen_grabfeld": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_landkreis_rhoen_grabfeld": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District" + }, + "data_description": {} + }, + "args_landkreis_wittmund_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_landkreis_wittmund_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_lbbd_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lbbd_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lerum_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lerum_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_lewisham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lewisham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lichfielddc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lichfielddc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lincoln_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lincoln_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_lindau_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lindau_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City" + }, + "data_description": {} + }, + "args_lisburn_castlereagh_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lisburn_castlereagh_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id", + "postcode": "Postcode", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_liverpool_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_liverpool_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "name_number": "Name Number" + }, + "data_description": {} + }, + "args_logan_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_location": "Property Location" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_logan_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_location": "Property Location" + }, + "data_description": {} + }, + "args_lrasha_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location": "Location" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lrasha_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location": "Location" + }, + "data_description": {} + }, + "args_lsr_nu": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lsr_nu": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_lund_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_lund_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_mags_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "number": "Number", + "turnus": "Turnus" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mags_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "number": "Number", + "turnus": "Turnus" + }, + "data_description": {} + }, + "args_maidstone_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_maidstone_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_maldon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_maldon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mamirolle_info": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "_": "" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mamirolle_info": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "_": "" + }, + "data_description": {} + }, + "args_manchester_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_manchester_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mansfield_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mansfield_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_mansfield_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mansfield_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_maribyrnong_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_maribyrnong_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_maroondah_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_maroondah_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_meinawb_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_meinawb_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_melton_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_melton_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_merri_bek_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_merri_bek_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_merton_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_merton_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": {} + }, + "args_mestorudna_cz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city_part": "City Part" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mestorudna_cz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city_part": "City Part" + }, + "data_description": {} + }, + "args_midsussex_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_name": "House Name", + "house_number": "House Number", + "street": "Street", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_midsussex_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_name": "House Name", + "house_number": "House Number", + "street": "Street", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_miljoteknik_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_miljoteknik_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_milton_keynes_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_milton_keynes_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_minrenovasjon_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "street_code": "Street Code", + "county_id": "County Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_minrenovasjon_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "street_code": "Street Code", + "county_id": "County Id" + }, + "data_description": {} + }, + "args_mojiodpadki_si": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mojiodpadki_si": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_monaloga_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "plz": "ZIP" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_monaloga_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "plz": "ZIP" + }, + "data_description": {} + }, + "args_montreal_ca": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "sector": "Sector" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_montreal_ca": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "sector": "Sector" + }, + "data_description": {} + }, + "args_moray_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_moray_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": {} + }, + "args_mosman_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mosman_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_movar_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_movar_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_mrsc_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_mrsc_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_muellabfuhr_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "client": "Client", + "city": "City", + "district": "District", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_muellabfuhr_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "client": "Client", + "city": "City", + "district": "District", + "street": "Street" + }, + "data_description": {} + }, + "args_muellmax_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "mm_frm_ort_sel": "Mm Frm Ort Sel", + "mm_frm_str_sel": "Mm Frm Str Sel", + "mm_frm_hnr_sel": "Mm Frm Hnr Sel" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_muellmax_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "service": "Service", + "mm_frm_ort_sel": "Mm Frm Ort Sel", + "mm_frm_str_sel": "Mm Frm Str Sel", + "mm_frm_hnr_sel": "Mm Frm Hnr Sel" + }, + "data_description": {} + }, + "args_muenchenstein_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "waste_district": "Waste District" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_muenchenstein_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "waste_district": "Waste District" + }, + "data_description": {} + }, + "args_myutility_winnipeg_ca": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_myutility_winnipeg_ca": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_nawma_sa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "suburb": "Suburb", + "street_number": "Street Number", + "pid": "Pid" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nawma_sa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "suburb": "Suburb", + "street_number": "Street Number", + "pid": "Pid" + }, + "data_description": {} + }, + "args_newark_sherwooddc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_newark_sherwooddc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newcastle_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_newcastle_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newcastle_staffs_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_newcastle_staffs_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_newham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_newham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property": "Property" + }, + "data_description": {} + }, + "args_nillumbik_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nillumbik_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_north_ayrshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_north_ayrshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_north_kesteven_org_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_north_kesteven_org_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northherts_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northherts_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_northlincs_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northlincs_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northnorthants_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northnorthants_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_hambleton_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northyorks_hambleton_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_harrogate_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northyorks_harrogate_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_scarborough_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northyorks_scarborough_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_northyorks_selby_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_northyorks_selby_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_nottingham_city_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nottingham_city_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_nsomerset_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nsomerset_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_nuernberger_land_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nuernberger_land_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": {} + }, + "args_nvaa_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nvaa_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_nwleics_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_nwleics_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_offenbach_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "f_id_location": "F Id Location" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_offenbach_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "f_id_location": "F Id Location" + }, + "data_description": {} + }, + "args_okc_gov": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "objectID": "Object Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_okc_gov": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "objectID": "Object Id" + }, + "data_description": {} + }, + "args_onkaparingacity_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_onkaparingacity_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_oslokommune_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter", + "street_id": "Street Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_oslokommune_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "house_number": "House Number", + "house_letter": "House Letter", + "street_id": "Street Id" + }, + "data_description": {} + }, + "args_oxford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_oxford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_peterborough_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_peterborough_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number", + "name": "Name", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_pgh_st": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number", + "street_name": "Street Name", + "zipcode": "Zipcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_pgh_st": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number", + "street_name": "Street Name", + "zipcode": "Zipcode" + }, + "data_description": {} + }, + "args_portenf_sa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "house_number": "House Number", + "unit_number": "Unit Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_portenf_sa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "house_number": "House Number", + "unit_number": "Unit Number" + }, + "data_description": {} + }, + "args_portsmouth_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_portsmouth_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_portstephens_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_portstephens_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_potsdam_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ortsteil": "District", + "strasse": "Street", + "rest_rhythm": "General waste rhythm", + "papier_rhythm": "Paper rhythm", + "bio_rhythm": "Organics rhythm", + "gelb_rhythm": "Recycling rhythm" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_potsdam_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ortsteil": "District", + "strasse": "Street", + "rest_rhythm": "General waste rhythm", + "papier_rhythm": "Paper rhythm", + "bio_rhythm": "Organics rhythm", + "gelb_rhythm": "Recycling rhythm" + }, + "data_description": {} + }, + "args_poznan_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_poznan_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_pronatura_bydgoszcz_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_pronatura_bydgoszcz_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_rambo_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rambo_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_rbwm_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rbwm_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rctcbc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rctcbc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_reading_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_reading_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenameornumber": "Housenameornumber" + }, + "data_description": {} + }, + "args_real_luzern_ch": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality_id": "Municipality Id", + "street_id": "Street Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_real_luzern_ch": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality_id": "Municipality Id", + "street_id": "Street Id" + }, + "data_description": {} + }, + "args_recycleapp_be": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number", + "add_events": "Add Events" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_recycleapp_be": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "street": "Street", + "house_number": "House Number", + "add_events": "Add Events" + }, + "data_description": {} + }, + "args_recyclecoach_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City", + "state": "State", + "project_id": "Project Id", + "district_id": "District Id", + "zone_id": "Zone Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_recyclecoach_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City", + "state": "State", + "project_id": "Project Id", + "district_id": "District Id", + "zone_id": "Zone Id" + }, + "data_description": {} + }, + "args_recyclesmart_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "email": "Email", + "password": "Password" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_recyclesmart_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "email": "Email", + "password": "Password" + }, + "data_description": {} + }, + "args_redbridge_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_redbridge_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_redland_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_redland_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_regioentsorgung_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_regioentsorgung_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_reigatebanstead_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_reigatebanstead_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_remidt_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_remidt_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_renfrewshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_renfrewshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_renosyd_dk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_renosyd_dk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_renoweb_dk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "address": "Address", + "address_id": "Address Id", + "include_ordered_pickup_entries": "Include Ordered Pickup Entries" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_renoweb_dk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "municipality": "Municipality", + "address": "Address", + "address_id": "Address Id", + "include_ordered_pickup_entries": "Include Ordered Pickup Entries" + }, + "data_description": {} + }, + "args_republicservices_com": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "method": "Method" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_republicservices_com": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "method": "Method" + }, + "data_description": {} + }, + "args_reso_gmbh_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "ortsteil": "Ortsteil" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_reso_gmbh_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "ortsteil": "Ortsteil" + }, + "data_description": {} + }, + "args_rh_entsorgung_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rh_entsorgung_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street", + "house_number": "House Number", + "address_suffix": "Address Suffix" + }, + "data_description": {} + }, + "args_richmondshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_richmondshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rotherham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rotherham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_runnymede_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_runnymede_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rushcliffe_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rushcliffe_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_rushmoor_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rushmoor_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_rv_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr", + "hnr_zusatz": "Hnr Zusatz" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_rv_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "Ort", + "strasse": "Strasse", + "hnr": "Hnr", + "hnr_zusatz": "Hnr Zusatz" + }, + "data_description": {} + }, + "args_salford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_salford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_samiljo_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_samiljo_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_sandnes_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sandnes_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": {} + }, + "args_sbazv_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sbazv_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "district": "District", + "street": "Street" + }, + "data_description": {} + }, + "args_scambs_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_scambs_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "number": "Number" + }, + "data_description": {} + }, + "args_scheibbs_umweltverbaende_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_scheibbs_umweltverbaende_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "region": "Region" + }, + "data_description": {} + }, + "args_schweinfurt_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "showmobile": "Showmobile" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_schweinfurt_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "showmobile": "Showmobile" + }, + "data_description": {} + }, + "args_seattle_gov": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "prem_code": "Prem Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_seattle_gov": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "prem_code": "Prem Code" + }, + "data_description": {} + }, + "args_sector27_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sector27_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} + }, + "args_sepan_remondis_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sepan_remondis_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_sheffield_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sheffield_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_shellharbourwaste_com_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "zoneID": "Zone Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_shellharbourwaste_com_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "zoneID": "Zone Id" + }, + "data_description": {} + }, + "args_sholland_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sholland_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_shropshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_shropshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_solihull_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_solihull_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "predict": "Predict" + }, + "data_description": {} + }, + "args_south_norfolk_and_broadland_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_payload": "Address Payload", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_south_norfolk_and_broadland_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_payload": "Address Payload", + "postcode": "Postcode", + "address": "Address" + }, + "data_description": {} + }, + "args_southampton_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_southampton_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southderbyshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_southderbyshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southglos_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_southglos_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_southkesteven_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_id": "Address Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_southkesteven_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_id": "Address Id" + }, + "data_description": {} + }, + "args_southtyneside_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_southtyneside_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_srvatervinning_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_srvatervinning_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "city": "City" + }, + "data_description": {} + }, + "args_ssam_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ssam_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_stadtreinigung_dresden_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "standort": "Standort" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stadtreinigung_dresden_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "standort": "Standort" + }, + "data_description": {} + }, + "args_stadtreinigung_hamburg": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "hnId": "Hn Id", + "asId": "As Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stadtreinigung_hamburg": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "hnId": "Hn Id", + "asId": "As Id" + }, + "data_description": {} + }, + "args_stadtreinigung_leipzig_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stadtreinigung_leipzig_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_stadtservice_bruehl_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stadtservice_bruehl_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "strasse": "Strasse", + "hnr": "Hnr" + }, + "data_description": {} + }, + "args_staedteservice_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street_number": "Street Number", + "street_name": "Street Name", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_staedteservice_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street_number": "Street Number", + "street_name": "Street Name", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_staffordbc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_staffordbc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stalbans_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stalbans_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_static": { + "title": "Configure Source", + "description": "Configure your service provider. More detailes: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md.", + "data": { + "calendar_title": "Calendar Title", + "count": "Count", + "dates": "Dates", + "excludes": "Excludes", + "frequency": "Frequency", + "interval": "Interval", + "start": "Start", + "type": "Type", + "until": "Until", + "weekdays": "Weekdays" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_static": { + "title": "Reconfigure Source", + "description": "Configure your service provider. More detailes: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md.", + "data": { + "calendar_title": "Calendar Title", + "count": "Count", + "dates": "Dates", + "excludes": "Excludes", + "frequency": "Frequency", + "interval": "Interval", + "start": "Start", + "type": "Type", + "until": "Until", + "weekdays": "Weekdays" + }, + "data_description": {} + }, + "args_stavanger_no": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stavanger_no": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id", + "municipality": "Municipality", + "gnumber": "Gnumber", + "bnumber": "Bnumber", + "snumber": "Snumber" + }, + "data_description": {} + }, + "args_stevenage_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stevenage_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stirling_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "route": "Route" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stirling_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "route": "Route" + }, + "data_description": {} + }, + "args_stockport_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stockport_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stockton_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stockton_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stoke_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stoke_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stonnington_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stonnington_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_stratford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stratford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stroud_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stroud_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_stuttgart_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "streetnr": "Streetnr" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_stuttgart_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "streetnr": "Streetnr" + }, + "data_description": {} + }, + "args_sutton_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sutton_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "id": "Id" + }, + "data_description": {} + }, + "args_swansea_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "post_code": "Post Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_swansea_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_name": "Street Name", + "post_code": "Post Code" + }, + "data_description": {} + }, + "args_swindon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_swindon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_sysav_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_sysav_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_tameside_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tameside_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_tauranga_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tauranga_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_tbv_velbert_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tbv_velbert_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street" + }, + "data_description": {} + }, + "args_tekniskaverken_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tekniskaverken_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_telford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "name_number": "Name Number", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_telford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "name_number": "Name Number", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_tewkesbury_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tewkesbury_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_thehills_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_thehills_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street": "Street", + "houseNo": "House No" + }, + "data_description": {} + }, + "args_tkeliai_lt": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location": "Location" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tkeliai_lt": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "location": "Location" + }, + "data_description": {} + }, + "args_tmbc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tmbc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "address": "Address" + }, + "data_description": {} + }, + "args_tonnenleerung_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "url": "Url" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tonnenleerung_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "url": "Url" + }, + "data_description": {} + }, + "args_toogoodtowaste_co_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_toogoodtowaste_co_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_toronto_ca": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_toronto_ca": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_townsville_qld_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_townsville_qld_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "property_id": "Property Id" + }, + "data_description": {} + }, + "args_tunbridgewells_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_tunbridgewells_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_ukbcd": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "file": "File" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ukbcd": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "file": "File" + }, + "data_description": {} + }, + "args_umweltverbaende_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "municipal": "Municipal", + "calendar": "Calendar", + "calendar_title_separator": "Calendar Title Separator", + "calendar_splitter": "Calendar Splitter" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_umweltverbaende_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "municipal": "Municipal", + "calendar": "Calendar", + "calendar_title_separator": "Calendar Title Separator", + "calendar_splitter": "Calendar Splitter" + }, + "data_description": {} + }, + "args_unley_sa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_unley_sa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "post_code": "Post Code", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number" + }, + "data_description": {} + }, + "args_uppsalavatten_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_uppsalavatten_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_uttlesford_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house": "House" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_uttlesford_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house": "House" + }, + "data_description": {} + }, + "args_valeofglamorgan_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_valeofglamorgan_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_vasyd_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_vasyd_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_vestfor_dk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetName": "Street Name", + "number": "Number", + "zipCode": "Zip Code" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_vestfor_dk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetName": "Street Name", + "number": "Number", + "zipCode": "Zip Code" + }, + "data_description": {} + }, + "args_victoriapark_wa_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "predict": "Predict" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_victoriapark_wa_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "predict": "Predict" + }, + "data_description": {} + }, + "args_vivab_se": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_vivab_se": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_waipa_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_waipa_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_walsall_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_walsall_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_warrington_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_warrington_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_warszawa19115_pl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_warszawa19115_pl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address", + "geolocation_id": "Geolocation Id" + }, + "data_description": {} + }, + "args_warwickdc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_warwickdc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_was_wolfsburg_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_was_wolfsburg_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "city": "City" + }, + "data_description": {} + }, + "args_wastenet_org_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "entry_id": "Entry Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wastenet_org_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address", + "entry_id": "Entry Id" + }, + "data_description": {} + }, + "args_waverley_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_waverley_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_name_numer": "Address Name Numer", + "address_street": "Address Street", + "street_town": "Street Town", + "address_postcode": "Address Postcode" + }, + "data_description": {} + }, + "args_wealden_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wealden_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_welhat_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_welhat_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wellington_govt_nz": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetId": "Street Id", + "streetName": "Street Name" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wellington_govt_nz": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "streetId": "Street Id", + "streetName": "Street Name" + }, + "data_description": {} + }, + "args_wermelskirchen_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wermelskirchen_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_west_dunbartonshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number", + "uprn": "Uprn", + "street": "Street", + "town": "Town" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_west_dunbartonshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "house_number": "House Number", + "uprn": "Uprn", + "street": "Street", + "town": "Town" + }, + "data_description": {} + }, + "args_west_norfolk_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_west_norfolk_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_westberks_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_westberks_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode", + "housenumberorname": "Housenumberorname" + }, + "data_description": {} + }, + "args_westnorthants_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_westnorthants_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_westsuffolk_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_westsuffolk_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_whittlesea_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_whittlesea_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "suburb": "Suburb", + "street_name": "Street Name", + "street_number": "Street Number", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wigan_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wigan_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_wiltshire_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wiltshire_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn", + "postcode": "Postcode" + }, + "data_description": {} + }, + "args_wirral_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wirral_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "suburb": "Suburb" + }, + "data_description": {} + }, + "args_wokingham_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "property": "Property", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wokingham_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "postcode": "Postcode", + "property": "Property", + "address": "Address" + }, + "data_description": {} + }, + "args_wollondilly_nsw_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wollondilly_nsw_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address": "Address" + }, + "data_description": {} + }, + "args_wollongongwaste_com_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "propertyID": "Property Id" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wollongongwaste_com_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "propertyID": "Property Id" + }, + "data_description": {} + }, + "args_wsz_moosburg_at": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_id": "Address Id", + "municipal": "Municipal", + "address": "Address", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wsz_moosburg_at": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "address_id": "Address Id", + "municipal": "Municipal", + "address": "Address", + "street": "Street" + }, + "data_description": {} + }, + "args_wuerzburg_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wuerzburg_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "district": "District", + "street": "Street" + }, + "data_description": {} + }, + "args_wychavon_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wychavon_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_wyndham_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wyndham_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_wyreforestdc_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "town": "Town", + "garden_cutomer": "Garden Cutomer" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_wyreforestdc_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street": "Street", + "town": "Town", + "garden_cutomer": "Garden Cutomer" + }, + "data_description": {} + }, + "args_ximmio_nl": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "company": "Company", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_ximmio_nl": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "company": "Company", + "post_code": "Post Code", + "house_number": "House Number" + }, + "data_description": {} + }, + "args_yarra_ranges_vic_gov_au": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_yarra_ranges_vic_gov_au": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "street_address": "Street Address" + }, + "data_description": {} + }, + "args_york_gov_uk": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_york_gov_uk": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "uprn": "Uprn" + }, + "data_description": {} + }, + "args_zakb_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "City", + "strasse": "Street", + "hnr": "House number", + "hnr_zusatz": "House number addition" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_zakb_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "ort": "City", + "strasse": "Street", + "hnr": "House number", + "hnr_zusatz": "House number addition" + }, + "data_description": {} + }, + "args_zva_sek_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bezirk": "City district", + "ortsteil": "District", + "strasse": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_zva_sek_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "bezirk": "City district", + "ortsteil": "District", + "strasse": "Street" + }, + "data_description": {} + }, + "args_zva_wmk_de": { + "title": "Configure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": { + "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." + } + }, + "reconfigure_zva_wmk_de": { + "title": "Reconfigure Source", + "description": "Configure your service provider. For details see the source documentation.", + "data": { + "calendar_title": "Calendar Title", + "city": "City", + "street": "Street" + }, + "data_description": {} } }, "error": { diff --git a/custom_components/waste_collection_schedule/translations/it.json b/custom_components/waste_collection_schedule/translations/it.json index 2600afaa..4764860f 100644 --- a/custom_components/waste_collection_schedule/translations/it.json +++ b/custom_components/waste_collection_schedule/translations/it.json @@ -538,6 +538,4445 @@ "addressNo": "Indirizzo Numero", "territory": "Territorio" } + }, + "reconfigure_wyreforestdc_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/wyreforestdc_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "garden_cutomer": "Garden Cutomer", + "street": "Strada", + "town": "Città" + }, + "data_description": {} + }, + "args_okc_gov": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/okc_gov.md.", + "data": { + "calendar_title": "Nome Calendario", + "objectID": "Object Id" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_okc_gov": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/okc_gov.md.", + "data": { + "calendar_title": "Nome Calendario", + "objectID": "Object Id" + }, + "data_description": {} + }, + "args_pgh_st": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/pgh_st.md.", + "data": { + "calendar_title": "Nome Calendario", + "house_number": "Civico", + "street_name": "Nome Strada", + "zipcode": "Codice Postale CAP" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_pgh_st": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/pgh_st.md.", + "data": { + "calendar_title": "Nome Calendario", + "house_number": "Civico", + "street_name": "Nome Strada", + "zipcode": "Codice Postale CAP" + }, + "data_description": {} + }, + "args_republicservices_com": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/republicservices_com.md.", + "data": { + "calendar_title": "Nome Calendario", + "method": "Metodo", + "street_address": "Indirizzo Strada" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_republicservices_com": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/republicservices_com.md.", + "data": { + "calendar_title": "Nome Calendario", + "method": "Metodo", + "street_address": "Indirizzo Strada" + }, + "data_description": {} + }, + "args_seattle_gov": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/seattle_gov.md.", + "data": { + "calendar_title": "Nome Calendario", + "prem_code": "Premises Code", + "street_address": "Indirizzo Strada" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_seattle_gov": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/seattle_gov.md.", + "data": { + "calendar_title": "Nome Calendario", + "prem_code": "Premises Code", + "street_address": "Indirizzo Strada" + }, + "data_description": {} + }, + "args_ics_moretonbay_qld_gov_au": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.moretonbay.qld.gov.au/Services/Waste-Recycling/Collections/Bin-Days and select your location. \n- Click on `Subscribe to a personalised calendar` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/moretonbay_qld_gov_au.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_moretonbay_qld_gov_au": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.moretonbay.qld.gov.au/Services/Waste-Recycling/Collections/Bin-Days and select your location. \n- Click on `Subscribe to a personalised calendar` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/moretonbay_qld_gov_au.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_st-poelten_at": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.st-poelten.at/sonstiges/17653-abfallkalender and click \"Inhalte von services.st-poelten.at laden\"\n- fill out your address\n- click F12 or start the dev-mode on your browser another way\n- click on \"Download Kalenderexport\" and discard or save the file (you'll not need it for that)\n- find the link for the ics-file in the \"Network\"-section of your browsers Dev-tools\n- copy the link - for the Landhaus it's https://services.infeo.at/awm/api/st.p%C3%B6lten/wastecalendar/v2/export/?calendarId=135&cityId=162&streetId=124691&housenumber=1&outputType=ical\n- (the only values changing here shall be \"streetId\" and \"housenumber\") \n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/st-poelten_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_st-poelten_at": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.st-poelten.at/sonstiges/17653-abfallkalender and click \"Inhalte von services.st-poelten.at laden\"\n- fill out your address\n- click F12 or start the dev-mode on your browser another way\n- click on \"Download Kalenderexport\" and discard or save the file (you'll not need it for that)\n- find the link for the ics-file in the \"Network\"-section of your browsers Dev-tools\n- copy the link - for the Landhaus it's https://services.infeo.at/awm/api/st.p%C3%B6lten/wastecalendar/v2/export/?calendarId=135&cityId=162&streetId=124691&housenumber=1&outputType=ical\n- (the only values changing here shall be \"streetId\" and \"housenumber\") \n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/st-poelten_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_muellapp_com": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to the [Müll App homepage](https://muellapp.com/) and click on \"...abonniere den Kalender\" or follow [this Link](https://app.muellapp.com/web-reminder?channel=calendar)\n- Choose your municipality, address and collection types\n- Copy the URL under \"Adresse zum Abonnieren\" in the \"Kalender Abo/Download\" tab\n- Paste it to the `url` key in the example configuration\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/muellapp_com.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_muellapp_com": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to the [Müll App homepage](https://muellapp.com/) and click on \"...abonniere den Kalender\" or follow [this Link](https://app.muellapp.com/web-reminder?channel=calendar)\n- Choose your municipality, address and collection types\n- Copy the URL under \"Adresse zum Abonnieren\" in the \"Kalender Abo/Download\" tab\n- Paste it to the `url` key in the example configuration\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/muellapp_com.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gda_gv_at": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://gda.gv.at/abholtermine and select your location. \n- Copy the link of the `iCal` Button.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gda_gv_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gda_gv_at": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://gda.gv.at/abholtermine and select your location. \n- Copy the link of the `iCal` Button.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gda_gv_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_linzag_at": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.linzag.at/portal/de/privatkunden/zuhause/abfall/service_dienstleistungen/abfallkalender and select your location. \n- Click on the download `Abfallkalender (ICS)` button and copy the download link or copy the link of the button after you already pressed it (href changes after first click).\n- Replace the `url` in the example configuration with this link.\n- Replace the date in the url (after `downloadStartDate=`) with '01-01-{%Y}' this way the link keep valid for following years.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/linzag_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_linzag_at": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.linzag.at/portal/de/privatkunden/zuhause/abfall/service_dienstleistungen/abfallkalender and select your location. \n- Click on the download `Abfallkalender (ICS)` button and copy the download link or copy the link of the button after you already pressed it (href changes after first click).\n- Replace the `url` in the example configuration with this link.\n- Replace the date in the url (after `downloadStartDate=`) with '01-01-{%Y}' this way the link keep valid for following years.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/linzag_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_mayer_recycling_at": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.mayer-recycling.at/abfuhrplaene.\n- Right click - copy link the calendar icon of your Collection region to get the link of the ICS file.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/mayer_recycling_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_mayer_recycling_at": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.mayer-recycling.at/abfuhrplaene.\n- Right click - copy link the calendar icon of your Collection region to get the link of the ICS file.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/mayer_recycling_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_traiskirchen_gv_at": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://traiskirchen.gv.at/abfall-entsorgung/online-abfuhrplan/ and search your address. \n- Copy the link of `Abfuhrbereich...` below `Kalender zum Download als ICS` button.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/traiskirchen_gv_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_traiskirchen_gv_at": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://traiskirchen.gv.at/abfall-entsorgung/online-abfuhrplan/ and search your address. \n- Copy the link of `Abfuhrbereich...` below `Kalender zum Download als ICS` button.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/traiskirchen_gv_at.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfallv_zerowaste_io": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallv.zerowaste.io/web-reminder and select your location and waste types. \n- Click on `Kalender Bo/Download` and copy the URL below `Adresse zum Abonnieren`.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallv_zerowaste_io.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfallv_zerowaste_io": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallv.zerowaste.io/web-reminder and select your location and waste types. \n- Click on `Kalender Bo/Download` and copy the URL below `Adresse zum Abonnieren`.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallv_zerowaste_io.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_limburg_net": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.limburg.net/afvalkalender and select your location. \n- Click on `Download`.\n- Under `Kies formaat`, select `Android/iPhone`.\n- Copy the webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/limburg_net.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_limburg_net": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.limburg.net/afvalkalender and select your location. \n- Click on `Download`.\n- Under `Kies formaat`, select `Android/iPhone`.\n- Copy the webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/limburg_net.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_recollect": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- To get the URL, search your address in the recollect form of your home town.\n- Click \"Get a calendar\", then \"Add to Google Calendar\".\n- The URL shown is your ICS calendar link, for example.\n ```plain\n https://recollect.a.ssl.fastly.net/api/places/BCCDF30E-578B-11E4-AD38-5839C200407A/services/208/events.en.ics?client_id=6FBD18FE-167B-11EC-992A-C843A7F05606\n ```\n- You can strip the client ID URL parameter to get the final URL: `https://recollect.a.ssl.fastly.net/api/places/BCCDF30E-578B-11E4-AD38-5839C200407A/services/208/events.en.ics`\n\nknown to work with:\n|Region|Country|URL|\n|-|-|-|\n|Ottawa, ON|Canada|[ottawa.ca](https://ottawa.ca/en/garbage-and-recycling/recycling/garbage-and-recycling-collection-calendar)|\n|Simcoe County, ON|Canada|[simcoe.ca](https://www.simcoe.ca/dpt/swm/when)|\n|City of Bloomington, IN|USA|[api.recollect.net/r/area/bloomingtonin](https://api.recollect.net/r/area/bloomingtonin)|\n|City of Cambridge, MA|USA|[cambridgema.gov](https://www.cambridgema.gov/services/curbsidecollections)|\n|City of Georgetown, TX|USA|[texasdisposal.com](https://www.texasdisposal.com/waste-wizard/)|\n|City of Vancouver|Canada|[vancouver.ca](https://vancouver.ca/home-property-development/garbage-and-recycling-collection-schedules.aspx)|\n|City of Nanaimo|Canada|[nanaimo.ca](https://www.nanaimo.ca/city-services/garbage-recycling/collectionschedule)|\n|City of Austin|USA|[austintexas.gov](https://www.austintexas.gov/myschedule)|\n|Middlesbrough|UK|[middlesbrough.gov.uk](https://my.middlesbrough.gov.uk/login/)|\n|City of McKinney|USA|[mckinneytexas.org](https://www.mckinneytexas.org/503/Residential-Trash-Services/#App)|\n|Waste Connections|USA|[wasteconnections.com](https://www.wasteconnections.com/pickup-schedule/)|\n\nand probably a lot more.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/recollect.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_recollect": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- To get the URL, search your address in the recollect form of your home town.\n- Click \"Get a calendar\", then \"Add to Google Calendar\".\n- The URL shown is your ICS calendar link, for example.\n ```plain\n https://recollect.a.ssl.fastly.net/api/places/BCCDF30E-578B-11E4-AD38-5839C200407A/services/208/events.en.ics?client_id=6FBD18FE-167B-11EC-992A-C843A7F05606\n ```\n- You can strip the client ID URL parameter to get the final URL: `https://recollect.a.ssl.fastly.net/api/places/BCCDF30E-578B-11E4-AD38-5839C200407A/services/208/events.en.ics`\n\nknown to work with:\n|Region|Country|URL|\n|-|-|-|\n|Ottawa, ON|Canada|[ottawa.ca](https://ottawa.ca/en/garbage-and-recycling/recycling/garbage-and-recycling-collection-calendar)|\n|Simcoe County, ON|Canada|[simcoe.ca](https://www.simcoe.ca/dpt/swm/when)|\n|City of Bloomington, IN|USA|[api.recollect.net/r/area/bloomingtonin](https://api.recollect.net/r/area/bloomingtonin)|\n|City of Cambridge, MA|USA|[cambridgema.gov](https://www.cambridgema.gov/services/curbsidecollections)|\n|City of Georgetown, TX|USA|[texasdisposal.com](https://www.texasdisposal.com/waste-wizard/)|\n|City of Vancouver|Canada|[vancouver.ca](https://vancouver.ca/home-property-development/garbage-and-recycling-collection-schedules.aspx)|\n|City of Nanaimo|Canada|[nanaimo.ca](https://www.nanaimo.ca/city-services/garbage-recycling/collectionschedule)|\n|City of Austin|USA|[austintexas.gov](https://www.austintexas.gov/myschedule)|\n|Middlesbrough|UK|[middlesbrough.gov.uk](https://my.middlesbrough.gov.uk/login/)|\n|City of McKinney|USA|[mckinneytexas.org](https://www.mckinneytexas.org/503/Residential-Trash-Services/#App)|\n|Waste Connections|USA|[wasteconnections.com](https://www.wasteconnections.com/pickup-schedule/)|\n\nand probably a lot more.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/recollect.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_kredslob_dk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kredslob.dk/produkter-og-services/genbrug-og-affald/affaldsbeholdere/toemmekalender and select your location. \n- Click on `Abonnér på kalender` to get a ical subscription url.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kredslob_dk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_kredslob_dk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kredslob.dk/produkter-og-services/genbrug-og-affald/affaldsbeholdere/toemmekalender and select your location. \n- Click on `Abonnér på kalender` to get a ical subscription url.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kredslob_dk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_alp_lup_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://alp-lup.de/Service-Center/Abfuhrtermine/Abfallkalender/ and select your location. \n- Click on `Exportieren iCal` and copy the link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/alp_lup_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_alp_lup_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://alp-lup.de/Service-Center/Abfuhrtermine/Abfallkalender/ and select your location. \n- Click on `Exportieren iCal` and copy the link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/alp_lup_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfall_app_net": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto your providers web site collections calendar (alternative https://{service}.abfall-app.net) and select your location. \n- Copy the link of the 'Sync zu Kalender' Button.\n- Replace the `url` in the example configuration with this link.\n\nknown supported:\n- Landkreis Stendal: https://landkreis-stendal.abfall-app.net\n- Landkreis soest: https://soest.abfall-app.net\n- Landkreis Böblingen: https://boeblingen.abfall-app.net\n- Altmarkkreis Salzwedel: https://altmarkkreis-salzwedel.abfall-app.net\n- Landkreis Lüchow-Dannenberg: https://luechow-dannenberg.abfall-app.net\n- Rhein-Pfalz-Kreis: https://rhein-pfalz-kreis.abfall-app.net\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_app_net.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfall_app_net": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto your providers web site collections calendar (alternative https://{service}.abfall-app.net) and select your location. \n- Copy the link of the 'Sync zu Kalender' Button.\n- Replace the `url` in the example configuration with this link.\n\nknown supported:\n- Landkreis Stendal: https://landkreis-stendal.abfall-app.net\n- Landkreis soest: https://soest.abfall-app.net\n- Landkreis Böblingen: https://boeblingen.abfall-app.net\n- Altmarkkreis Salzwedel: https://altmarkkreis-salzwedel.abfall-app.net\n- Landkreis Lüchow-Dannenberg: https://luechow-dannenberg.abfall-app.net\n- Rhein-Pfalz-Kreis: https://rhein-pfalz-kreis.abfall-app.net\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_app_net.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfall_io_ics": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto your regions collection dates form.\n- Select you location and your desired waste types.\n- Right click - copy link address of the `ICS` button.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the URL with '{%Y}' (`...timeperiod=20240101-20241231` - '...timeperiod={%Y}0101-{%Y}1231').\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_io_ics.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfall_io_ics": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto your regions collection dates form.\n- Select you location and your desired waste types.\n- Right click - copy link address of the `ICS` button.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the URL with '{%Y}' (`...timeperiod=20240101-20241231` - '...timeperiod={%Y}0101-{%Y}1231').\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_io_ics.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfall_kreis_kassel_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-kreis-kassel.de/abfallkalender and select your location. \n- Click on `Dateien und App` expand.\n- Click on `ICS - Kalender importieren`\n- Right click on `Datei herunterladen` and copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_kreis_kassel_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfall_kreis_kassel_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-kreis-kassel.de/abfallkalender and select your location. \n- Click on `Dateien und App` expand.\n- Click on `ICS - Kalender importieren`\n- Right click on `Datei herunterladen` and copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_kreis_kassel_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awd_online_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awd-online.de/abfuhrtermine/ and select your location. \n- You can either preselect your collection types now or modify them later using the customize option.\n- Right click - copy url the `Als Kalenderdatei (.ics) herunterladen` link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awd_online_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awd_online_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awd-online.de/abfuhrtermine/ and select your location. \n- You can either preselect your collection types now or modify them later using the customize option.\n- Right click - copy url the `Als Kalenderdatei (.ics) herunterladen` link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awd_online_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_entsorgung_regional_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.entsorgung-regional.de/entsorgung/leerungstermine/terminservice-ics-datei.html and select your location. \n- Select all waste types (or at least the ones you want to be reminded of).\n- Replace the `url` in the example configuration with this link. \n- Do not forget the method and params parameter.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_regional_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_entsorgung_regional_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.entsorgung-regional.de/entsorgung/leerungstermine/terminservice-ics-datei.html and select your location. \n- Select all waste types (or at least the ones you want to be reminded of).\n- Replace the `url` in the example configuration with this link. \n- Do not forget the method and params parameter.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_regional_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfallwirtschaft_freiburg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-freiburg.de/de/private_haushalte/abfuhrtermine.php and select your location.\n- Right-click on `ICS` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the **2** year fields in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_freiburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfallwirtschaft_freiburg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-freiburg.de/de/private_haushalte/abfuhrtermine.php and select your location.\n- Right-click on `ICS` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the **2** year fields in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_freiburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_kreis_ploen_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kreis-ploen.de/Bürgerservice/Termine-Müllabfuhr/ and select your location.\n- Select `Jahreskalender` as view\n- Choose the types of waste you need\n- Click on `Als Kalenderdatei (.ics) exportieren`.\n- Get link of download (firefox only?):\n - select `Keine benachrichting` which should start the download\n - save the file\n - copy the download link (firefox download icon: right click(on the downloaded ics file) - copy download link)\n- If the above does not work (could not find a way to do this with chromium based browsers):\n - Open the developer tools (F12)\n - Go to the network tab\n - Select `Keine benachrichting` which should start the download\n - Look for the request in the network tab\n - copy the request url\n- Replace the `url` in the example configuration with this link.\n- Replace the year field in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kreis_ploen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_kreis_ploen_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kreis-ploen.de/Bürgerservice/Termine-Müllabfuhr/ and select your location.\n- Select `Jahreskalender` as view\n- Choose the types of waste you need\n- Click on `Als Kalenderdatei (.ics) exportieren`.\n- Get link of download (firefox only?):\n - select `Keine benachrichting` which should start the download\n - save the file\n - copy the download link (firefox download icon: right click(on the downloaded ics file) - copy download link)\n- If the above does not work (could not find a way to do this with chromium based browsers):\n - Open the developer tools (F12)\n - Go to the network tab\n - Select `Keine benachrichting` which should start the download\n - Look for the request in the network tab\n - copy the request url\n- Replace the `url` in the example configuration with this link.\n- Replace the year field in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kreis_ploen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awhas_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://awido.cubefour.de/customer/awhas/mobile/.\n- Select your Location and Garbage Types\n- Click on \"Termine und Daten laden\"\n- Select \"Mehr\" bottom left.\n- Select \"Erinnerungen beantragen\"\n- Select \"weiter ...\"\n- Copy the Link from the Button \"Termine als iCalendar\".\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' this keeps the link working in the coming years.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awhas_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awhas_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://awido.cubefour.de/customer/awhas/mobile/.\n- Select your Location and Garbage Types\n- Click on \"Termine und Daten laden\"\n- Select \"Mehr\" bottom left.\n- Select \"Erinnerungen beantragen\"\n- Select \"weiter ...\"\n- Copy the Link from the Button \"Termine als iCalendar\".\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' this keeps the link working in the coming years.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awhas_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_apm_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.apm-niemegk.de/kundenservice/abfuhrtermine/ and select your location. \n- Click on `Exportieren iCal` to get a webcal link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the Year in the URL with '{%Y}'\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/apm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_apm_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.apm-niemegk.de/kundenservice/abfuhrtermine/ and select your location. \n- Click on `Exportieren iCal` to get a webcal link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the Year in the URL with '{%Y}'\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/apm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfallwirtschaft_sonneberg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-sonneberg.de/abfallkalender/.\n- Select your municipality (`Ort`), district (`Ortsteil`) and - if necessary - street (`Straße`).\n- Right-click each dropdown field an click `Inspect`. This will open your browser's developer tools and display the corresponding HTML source:\n\n ```html\n \n\n \n\n \n\n \n ```\n\n You will need to get the exact `value` of your selected option as an option's value might differ from the text shown in the dropdown field for certain options, especially for the longer.\n \n- Replace the corresponding `params` in the example configuration with your values.\n\n *Please note that there's usually no need to replace umlauts in parameter values with their respective Unicode number (e.g. `ä` - `\\xE4`).*\n *This just happens while generating this documentation from source.*\n *Refer to [Abfallwirtschaft Sonneberg's documentation source](/doc/ics/yaml/abfallwirtschaft_sonneberg_de.yaml) for unaltered examples.*\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_sonneberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfallwirtschaft_sonneberg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-sonneberg.de/abfallkalender/.\n- Select your municipality (`Ort`), district (`Ortsteil`) and - if necessary - street (`Straße`).\n- Right-click each dropdown field an click `Inspect`. This will open your browser's developer tools and display the corresponding HTML source:\n\n ```html\n \n\n \n\n \n\n \n ```\n\n You will need to get the exact `value` of your selected option as an option's value might differ from the text shown in the dropdown field for certain options, especially for the longer.\n \n- Replace the corresponding `params` in the example configuration with your values.\n\n *Please note that there's usually no need to replace umlauts in parameter values with their respective Unicode number (e.g. `ä` - `\\xE4`).*\n *This just happens while generating this documentation from source.*\n *Refer to [Abfallwirtschaft Sonneberg's documentation source](/doc/ics/yaml/abfallwirtschaft_sonneberg_de.yaml) for unaltered examples.*\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_sonneberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awp_landkreis_pfaffenhofen": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awp-paf.de/Abfuhrtermine/Abfallkalender.aspx and select your town.\n- Enter your street and house number.\n- Click on `ical-Kalenderabo` and `URL in die Zwischenablage kopieren` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awp_landkreis_pfaffenhofen.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awp_landkreis_pfaffenhofen": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awp-paf.de/Abfuhrtermine/Abfallkalender.aspx and select your town.\n- Enter your street and house number.\n- Click on `ical-Kalenderabo` and `URL in die Zwischenablage kopieren` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awp_landkreis_pfaffenhofen.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_ilm_kreis_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://aik.ilm-kreis.de/Abfuhrtermine/ and select your municipality. \n- Right-click on `Terminexport` and select `Inspect`.\n- You should see a HTML fragment like this:\n\n ```html\n \n ```\n\n The relevant information pieces are the 2 numbers behind `ModID` and `pois` at the end of the HTML fragment:\n\n ```\n ModID=48\n pois=3053.8\n ```\n\n- Replace the numbers behind `ModID` and `pois` in the example configuration with your values from the HTML fragment.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ilm_kreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_ilm_kreis_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://aik.ilm-kreis.de/Abfuhrtermine/ and select your municipality. \n- Right-click on `Terminexport` and select `Inspect`.\n- You should see a HTML fragment like this:\n\n ```html\n \n ```\n\n The relevant information pieces are the 2 numbers behind `ModID` and `pois` at the end of the HTML fragment:\n\n ```\n ModID=48\n pois=3053.8\n ```\n\n- Replace the numbers behind `ModID` and `pois` in the example configuration with your values from the HTML fragment.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ilm_kreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awb_landkreis_karlsruhe_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awb-landkreis-karlsruhe.de/start/wissen/abfuhrkalender.html and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awb_landkreis_karlsruhe_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awb_landkreis_karlsruhe_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awb-landkreis-karlsruhe.de/start/wissen/abfuhrkalender.html and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awb_landkreis_karlsruhe_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfallwirtschaft_uhk_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-uhk.de/kopie-tourenpl%C3%A4ne-als-icalendar-f%C3%BCr-das-jahr-2022 and select your municipality (2022 in URL is right!). \n- Right-click on your city/county and copy link address.\n- Replace the year in the `url` with '{%Y}'. \n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_uhk_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfallwirtschaft_uhk_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfallwirtschaft-uhk.de/kopie-tourenpl%C3%A4ne-als-icalendar-f%C3%BCr-das-jahr-2022 and select your municipality (2022 in URL is right!). \n- Right-click on your city/county and copy link address.\n- Replace the year in the `url` with '{%Y}'. \n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallwirtschaft_uhk_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_aws_shg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://aws-shg.de/WasteManagementSchaumburg.html?action=wasteDisposalServices and select your location. \n- Under `ical-Kalenderabo`, click on `URL in die Zwischenablage kopieren` to copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/aws_shg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_aws_shg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://aws-shg.de/WasteManagementSchaumburg.html?action=wasteDisposalServices and select your location. \n- Under `ical-Kalenderabo`, click on `URL in die Zwischenablage kopieren` to copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/aws_shg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfuhrtermine_info": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- The abfuhrtermine.info website of your region (list below).\n- select your location.\n- Right click - copy link address on the \"Termine als ICS-Datei zum Import in Terminverwaltungssoftware/MobiltelefonKalender\" button.\n- Replace the `url` in the example configuration with this link.\n\n### List of available regions\n\n- Attendorn: https://attendorn.abfuhrtermine.info/\n- Drolshagen: https://drolshagen.abfuhrtermine.info/\n- Finnentrop: https://finnentrop.abfuhrtermine.info/\n- Kreuztal: https://kreuztal.abfuhrtermine.info/\n- Lennestadt: https://lennestadt.abfuhrtermine.info\n- Olpe: https://olpe.abfuhrtermine.info\n- Wenden: https://wenden.abfuhrtermine.info\n\nand maybe some more.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfuhrtermine_info.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfuhrtermine_info": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- The abfuhrtermine.info website of your region (list below).\n- select your location.\n- Right click - copy link address on the \"Termine als ICS-Datei zum Import in Terminverwaltungssoftware/MobiltelefonKalender\" button.\n- Replace the `url` in the example configuration with this link.\n\n### List of available regions\n\n- Attendorn: https://attendorn.abfuhrtermine.info/\n- Drolshagen: https://drolshagen.abfuhrtermine.info/\n- Finnentrop: https://finnentrop.abfuhrtermine.info/\n- Kreuztal: https://kreuztal.abfuhrtermine.info/\n- Lennestadt: https://lennestadt.abfuhrtermine.info\n- Olpe: https://olpe.abfuhrtermine.info\n- Wenden: https://wenden.abfuhrtermine.info\n\nand maybe some more.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfuhrtermine_info.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_alba_bs_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://alba-bs.de/service/abfuhrtermine.html and select your location. \n- Copy the link of `ICS-Kalender-Datei` (you may need to click it first and then copy the link from the opened popup)\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the `url` with '{%Y}'. \n This will be replaced by the current year.\n- You can remove the cHash parameter from the url.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/alba_bs_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_alba_bs_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://alba-bs.de/service/abfuhrtermine.html and select your location. \n- Copy the link of `ICS-Kalender-Datei` (you may need to click it first and then copy the link from the opened popup)\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the `url` with '{%Y}'. \n This will be replaced by the current year.\n- You can remove the cHash parameter from the url.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/alba_bs_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_art_trier_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.art-trier.de/ and select your municipality. \n- Scroll down to `JAHRESKALENDER FÜR IHR OUTLOOK, ETC.` \n- Set `Wann möchten Sie erinnert werden?` to `Keine Erinnerung` (not mandatory).\n- Click on `> Kalender (ICS) importieren` to get a webcal link. Or click on the `ICS-Kalender Speichern` link to download the ics file copy the download link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/art_trier_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_art_trier_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.art-trier.de/ and select your municipality. \n- Scroll down to `JAHRESKALENDER FÜR IHR OUTLOOK, ETC.` \n- Set `Wann möchten Sie erinnert werden?` to `Keine Erinnerung` (not mandatory).\n- Click on `> Kalender (ICS) importieren` to get a webcal link. Or click on the `ICS-Kalender Speichern` link to download the ics file copy the download link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/art_trier_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_avl_ludwigsburg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.avl-ludwigsburg.de/ and select your location. \n- Click on `URL ANZEIGEN` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/avl_ludwigsburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_avl_ludwigsburg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.avl-ludwigsburg.de/ and select your location. \n- Click on `URL ANZEIGEN` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/avl_ludwigsburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awg_bassum_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://www.awg-bassum.de/abfuhrkalender.html\n- Click on \"Ort wählen\" and choose your location\n- Type in your street address in \"Ihre Straße\"\n- Click on the name of your street\n- Scroll down and copy the link of \"iCal herunterladen\".\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the URL with '{%Y}' to automatically get the current year.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awg_bassum_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awg_bassum_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://www.awg-bassum.de/abfuhrkalender.html\n- Click on \"Ort wählen\" and choose your location\n- Type in your street address in \"Ihre Straße\"\n- Click on the name of your street\n- Scroll down and copy the link of \"iCal herunterladen\".\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the URL with '{%Y}' to automatically get the current year.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awg_bassum_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awista_starnberg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awista-starnberg.de/abfallwirtschaftskalender/ and select your municipality. \n- Click on `URL in die Zwischenablage kopieren`.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awista_starnberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awista_starnberg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awista-starnberg.de/abfallwirtschaftskalender/ and select your municipality. \n- Click on `URL in die Zwischenablage kopieren`.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awista_starnberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_azv_hof_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.azv-hof.de/privat/abfuhrtermine/abfuhrkalender-landkreis-hof.html and select your location. \n- Right-click, copy the link of the `KALENDER EXPORTIEREN` button to get the ICS link.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the link with '{%Y}'.\n- Feel free to remove the cHash argument (e.g. `&cHash=34c2ea8698d8ebba9d6f9f97abce20cf`) from the link.\n- If you want to ignore the `geschlossen` messages, add the `regex` option (second example) to the configuration. and use the customize parameter of the source to `display: False` all geschlossen entries. \n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/azv_hof_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_azv_hof_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.azv-hof.de/privat/abfuhrtermine/abfuhrkalender-landkreis-hof.html and select your location. \n- Right-click, copy the link of the `KALENDER EXPORTIEREN` button to get the ICS link.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the link with '{%Y}'.\n- Feel free to remove the cHash argument (e.g. `&cHash=34c2ea8698d8ebba9d6f9f97abce20cf`) from the link.\n- If you want to ignore the `geschlossen` messages, add the `regex` option (second example) to the configuration. and use the customize parameter of the source to `display: False` all geschlossen entries. \n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/azv_hof_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfalltermine_bamberg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfalltermine-bamberg.de/ and select your location. \n- Copy the link of the Herunterladen button below Digitaler Kalender.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfalltermine_bamberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfalltermine_bamberg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfalltermine-bamberg.de/ and select your location. \n- Copy the link of the Herunterladen button below Digitaler Kalender.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfalltermine_bamberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_bee_emden_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.bee-emden.de/abfall/entsorgungssystem/abfuhrkalender and search your location or find your `Bezirk`. \n- Right click and copy the link of the `abonnieren` button after your `Bezirk` or address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/bee_emden_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_bee_emden_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.bee-emden.de/abfall/entsorgungssystem/abfuhrkalender and search your location or find your `Bezirk`. \n- Right click and copy the link of the `abonnieren` button after your `Bezirk` or address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/bee_emden_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_blauetonne_schlauetonne_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.blauetonne-schlauetonne.de/abfuhrkalender and select your location.\n- Right-click on `iCal Download` link and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/blauetonne_schlauetonne_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_blauetonne_schlauetonne_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.blauetonne-schlauetonne.de/abfuhrkalender and select your location.\n- Right-click on `iCal Download` link and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/blauetonne_schlauetonne_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_entsorgung_cham_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://pwa.entsorgung-cham.de/termine and select your location. \n- Click on 'Termine {YEAR} im Kalender speichern (ICS)' and 'Kalenderdaten {YEAR} herunterladen'.\n- Copy the download link address.\n- Replace the `url` in the example configuration with this link. \n- Replace the year argument with '{%Y}', so the source will work for all years.\n- For easier automations and source configurations you probably want to add the `regex` argument like in the examle below. This will remove the date from the event title.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_cham_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_entsorgung_cham_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://pwa.entsorgung-cham.de/termine and select your location. \n- Click on 'Termine {YEAR} im Kalender speichern (ICS)' and 'Kalenderdaten {YEAR} herunterladen'.\n- Copy the download link address.\n- Replace the `url` in the example configuration with this link. \n- Replace the year argument with '{%Y}', so the source will work for all years.\n- For easier automations and source configurations you probably want to add the `regex` argument like in the examle below. This will remove the date from the event title.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_cham_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_worms_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.worms.de/de/web/ebwo/ and switch to the Abfallakalender tab.\n- Search for your street and click on the street name.\n- Right click on the 'Export-Datei (.ics) herunterladen' button and select 'Copy link address'.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' to keep the link valid for following years.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/worms_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_worms_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.worms.de/de/web/ebwo/ and switch to the Abfallakalender tab.\n- Search for your street and click on the street name.\n- Right click on the 'Export-Datei (.ics) herunterladen' button and select 'Copy link address'.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' to keep the link valid for following years.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/worms_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_edg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.edg.de/de/entsorgungsdienstleistungen/rein-damit/abfallkalender/abfallkalender.htm and select your location and press `weiter`. \n- Click on `URL in die Zwischenablage kopieren` to copy the ical url.\n- Replace the `url` in the example configuration with this link.\n- Leave the `regex` untouched\n- You can use the different types as `Bioabfall`, `Altpapier`, `Restabfall` and `Wertstoffe`\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/edg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_edg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.edg.de/de/entsorgungsdienstleistungen/rein-damit/abfallkalender/abfallkalender.htm and select your location and press `weiter`. \n- Click on `URL in die Zwischenablage kopieren` to copy the ical url.\n- Replace the `url` in the example configuration with this link.\n- Leave the `regex` untouched\n- You can use the different types as `Bioabfall`, `Altpapier`, `Restabfall` and `Wertstoffe`\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/edg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_ekm_mittelsachsen_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ekm-mittelsachsen.de/service-dienstleistungen/entsorgungstermine-abfallkalender\n- Select a year and your location.\n- Right-click on `Digitalen Kalender exportieren` to copy the link.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the pasted link by {%Y}\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ekm_mittelsachsen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_ekm_mittelsachsen_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ekm-mittelsachsen.de/service-dienstleistungen/entsorgungstermine-abfallkalender\n- Select a year and your location.\n- Right-click on `Digitalen Kalender exportieren` to copy the link.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the pasted link by {%Y}\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ekm_mittelsachsen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_entsorgungsbetrieb_mol_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.entsorgungsbetrieb-mol.de/de/tourenplan-2024.html and select your location. \n- copy the link of the `ICS` button.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgungsbetrieb_mol_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_entsorgungsbetrieb_mol_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.entsorgungsbetrieb-mol.de/de/tourenplan-2024.html and select your location. \n- copy the link of the `ICS` button.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgungsbetrieb_mol_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfall_eglz_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-eglz.de/abfallkalender.html and select your municipality. \n- Right-click on `Entsorgungstermine als iCalendar herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_eglz_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfall_eglz_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-eglz.de/abfallkalender.html and select your municipality. \n- Right-click on `Entsorgungstermine als iCalendar herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_eglz_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_entsorgungstermine_jena_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://entsorgungstermine.jena.de and select your address.\n- For all bin types do not select any bin type\n- Copy the link of the `ICS Jahr` button\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgungstermine_jena_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_entsorgungstermine_jena_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://entsorgungstermine.jena.de and select your address.\n- For all bin types do not select any bin type\n- Copy the link of the `ICS Jahr` button\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgungstermine_jena_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfallkalender_erftstadt_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallkalender-erftstadt.de/ and select your location. \n- Click on `Zum Kalender hinzufügen`.\n- Click on `weiter` without selecting reminder.\n- Copy the link below `Für Google Kalender` or copy the link from the `Abonnieren` or `Download` button.\n- Replace the `url` in the example configuration with this link.\n- Keeping the `regex` as it is, will remove the district name from the event title.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallkalender_erftstadt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfallkalender_erftstadt_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallkalender-erftstadt.de/ and select your location. \n- Click on `Zum Kalender hinzufügen`.\n- Click on `weiter` without selecting reminder.\n- Copy the link below `Für Google Kalender` or copy the link from the `Abonnieren` or `Download` button.\n- Replace the `url` in the example configuration with this link.\n- Keeping the `regex` as it is, will remove the district name from the event title.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfallkalender_erftstadt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_esg_soest_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.esg-soest.de/abfallkalender and select your location and press `weiter`.\n- Enter your street and press `weiter`.\n- Right click and copy the link of the `.ics-Datei` button.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/esg_soest_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_esg_soest_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.esg-soest.de/abfallkalender and select your location and press `weiter`.\n- Enter your street and press `weiter`.\n- Right click and copy the link of the `.ics-Datei` button.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/esg_soest_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_eva_abfallentsorgung_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.eva-abfallentsorgung.de/Service-Center/Abfallentsorgung/Abfuhrkalender%20individuell#\n- Choose Place and Location\n- Click on ICS-Datei Kalender herunterladen\n- Turn off Erinnerung and select Alarm Meldung anzeigen\n- Copy the link of the download ICS\n- Replace the url in the example configuration with this link\n- You might want to add a regex to the split_at parameter to remove the location from the title (Restmülls In Böbing, Böbing/s)\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/eva_abfallentsorgung_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_eva_abfallentsorgung_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.eva-abfallentsorgung.de/Service-Center/Abfallentsorgung/Abfuhrkalender%20individuell#\n- Choose Place and Location\n- Click on ICS-Datei Kalender herunterladen\n- Turn off Erinnerung and select Alarm Meldung anzeigen\n- Copy the link of the download ICS\n- Replace the url in the example configuration with this link\n- You might want to add a regex to the split_at parameter to remove the location from the title (Restmülls In Böbing, Böbing/s)\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/eva_abfallentsorgung_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_fes_frankfurt_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.fes-frankfurt.de/services/abfallkalender and select your location. \n- Click on `Kalender`.\n- Copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/fes_frankfurt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_fes_frankfurt_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.fes-frankfurt.de/services/abfallkalender and select your location. \n- Click on `Kalender`.\n- Copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/fes_frankfurt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gelbersack_stuttgart_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.gelbersack-stuttgart.de/abfuhrplan/ and select your location. \n- Right click - copy the url of the `Termine in meinen Kalender eintragen` button.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gelbersack_stuttgart_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gelbersack_stuttgart_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.gelbersack-stuttgart.de/abfuhrplan/ and select your location. \n- Right click - copy the url of the `Termine in meinen Kalender eintragen` button.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gelbersack_stuttgart_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gelsendienste_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.gelsendienste.de/privathaushalte/abfallkalender and select your location. \n- Click on `Abfallkalender abonnieren` to open a sub-frame, and then copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gelsendienste_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gelsendienste_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.gelsendienste.de/privathaushalte/abfallkalender and select your location. \n- Click on `Abfallkalender abonnieren` to open a sub-frame, and then copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gelsendienste_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gipsprojekt_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto the Abfuhrkalender url of your service provider (like https://www.gipsprojekt.de/featureGips/Gips?Anwendung=Abfuhrkalender&Mandant=Heidelberg&Abfuhrkalender=Heidelberg) and click on your location/street. \n- Right-click - copy the url of the Im iCalendar-Format abonnieren/speichern.\n- Replace the `url` in the example configuration with this link.\n- Replace the Jahr argument with '{%Y}' like in the example configuration. This way the year will be automatically updated.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gipsprojekt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gipsprojekt_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto the Abfuhrkalender url of your service provider (like https://www.gipsprojekt.de/featureGips/Gips?Anwendung=Abfuhrkalender&Mandant=Heidelberg&Abfuhrkalender=Heidelberg) and click on your location/street. \n- Right-click - copy the url of the Im iCalendar-Format abonnieren/speichern.\n- Replace the `url` in the example configuration with this link.\n- Replace the Jahr argument with '{%Y}' like in the example configuration. This way the year will be automatically updated.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gipsprojekt_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_hws_halle_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://hws-halle.de/privatkunden/entsorgung-reinigung/behaelterentsorgung/entsorgungskalender and enter your address.\n- Click on `Suchen`\n- Right-click on `Termine in Kalender übernehmen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/hws_halle_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_hws_halle_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://hws-halle.de/privatkunden/entsorgung-reinigung/behaelterentsorgung/entsorgungskalender and enter your address.\n- Click on `Suchen`\n- Right-click on `Termine in Kalender übernehmen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/hws_halle_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_heinz_entsorgung_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.heinz-entsorgung.de/leistungen/haushalte/entsorgungskalender/entsorgungskalender-freising/ and select your location.\n- Click on `ICAL-Datei`\n- Select the types of waste you are interested in (\"Fraktionen\")\n- Click on `Ok`\n- Download the ics file\n- Get the download link address from your browser's download history\n- Replace the `url` in the example configuration with this link.\n- Edit the link and replace the year with '{%Y}' (e.g. `Jahr=2024` with 'Jahr={%Y}')\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/heinz_entsorgung_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_heinz_entsorgung_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.heinz-entsorgung.de/leistungen/haushalte/entsorgungskalender/entsorgungskalender-freising/ and select your location.\n- Click on `ICAL-Datei`\n- Select the types of waste you are interested in (\"Fraktionen\")\n- Click on `Ok`\n- Download the ics file\n- Get the download link address from your browser's download history\n- Replace the `url` in the example configuration with this link.\n- Edit the link and replace the year with '{%Y}' (e.g. `Jahr=2024` with 'Jahr={%Y}')\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/heinz_entsorgung_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_herten_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallkalender.durth-roos.de/herten/ and select your location. \n- Right click copy-url of the `iCalendar` button to get a webcal link. (You can ignore the note below as this source automatically refetches the ics file)\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/herten_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_herten_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfallkalender.durth-roos.de/herten/ and select your location. \n- Right click copy-url of the `iCalendar` button to get a webcal link. (You can ignore the note below as this source automatically refetches the ics file)\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/herten_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_kecl_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kecl.de/sammeltermine and select your city by clicking\n- Now select your street. You can use the filter on top of the list.\n- Copy the link of the `abonnieren` button\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kecl_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_kecl_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.kecl.de/sammeltermine and select your city by clicking\n- Now select your street. You can use the filter on top of the list.\n- Copy the link of the `abonnieren` button\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/kecl_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_steinburg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.steinburg.de/kreisverwaltung/informationen-der-fachaemter/amt-fuer-umweltschutz/abfallwirtschaft/abfuhrtermine/muellabfuhr.html and select your location. \n- Right-click, copy the link address of the `Als Kalenderdatei (.ics) herunterladen` link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/steinburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_steinburg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.steinburg.de/kreisverwaltung/informationen-der-fachaemter/amt-fuer-umweltschutz/abfallwirtschaft/abfuhrtermine/muellabfuhr.html and select your location. \n- Right-click, copy the link address of the `Als Kalenderdatei (.ics) herunterladen` link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/steinburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gross_gerau_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://www.gross-gerau.de/B%C3%BCrger-Service-Online-Dienste/Ver-und-Entsorgung/Abfuhrtermine-PDF-Abfallkalender/index.php and select your street. \n- Click on `Als Kalenderdatei (.ics) herunterladen`, select no alarm. The ICS file will be doanloaded automatically, but one can grab the source URL. (inspecting the button (F12) reveals the URL (you need to add the prefix `https://www.gross-gerau.de`))\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gross_gerau_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gross_gerau_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://www.gross-gerau.de/B%C3%BCrger-Service-Online-Dienste/Ver-und-Entsorgung/Abfuhrtermine-PDF-Abfallkalender/index.php and select your street. \n- Click on `Als Kalenderdatei (.ics) herunterladen`, select no alarm. The ICS file will be doanloaded automatically, but one can grab the source URL. (inspecting the button (F12) reveals the URL (you need to add the prefix `https://www.gross-gerau.de`))\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gross_gerau_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_landkreis_as_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://landkreis-as.de/abfallwirtschaft/abfuhrtermine.php and select your location. \n- Click on `Kalenderübersicht anzegen`.\n- Right click - copy link address on the `exportieren` link.\n- Replace the `url` in the example configuration with this link.\n- You can also use the `regex` to strip unwanted text from the event summary.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_as_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_landkreis_as_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://landkreis-as.de/abfallwirtschaft/abfuhrtermine.php and select your location. \n- Click on `Kalenderübersicht anzegen`.\n- Right click - copy link address on the `exportieren` link.\n- Replace the `url` in the example configuration with this link.\n- You can also use the `regex` to strip unwanted text from the event summary.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_as_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abikw_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abikw.de/kundenportal/abfalltourenplan and select your location. \n- Click on `Exportieren iCal` and copy the link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abikw_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abikw_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abikw.de/kundenportal/abfalltourenplan and select your location. \n- Click on `Exportieren iCal` and copy the link below `URL in Kalender-App einbinden`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' (as shown in the example).\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abikw_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_hameln_pyrmont_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://kaw.hameln-pyrmont.de/Service/Abfuhrterminmodul/Abfuhrterminkalender/ and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy link address.\n- Replace the `url` in the example configuration with this link.\n- you might need to add the verify_ssl: true option to the source configuration if you get an ssl error in your logs.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/hameln_pyrmont_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_hameln_pyrmont_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://kaw.hameln-pyrmont.de/Service/Abfuhrterminmodul/Abfuhrterminkalender/ and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy link address.\n- Replace the `url` in the example configuration with this link.\n- you might need to add the verify_ssl: true option to the source configuration if you get an ssl error in your logs.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/hameln_pyrmont_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_abfall_hdh_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-hdh.de/internet/inhalt/inhalt.php?seite=98 and select your location. \n- Replace the `gemeinde`, `ortsteil` and `strasse` in the example configuration with the names you selected (leave `strasse` as is if you do not selected one on the website).\n- You may also want to set the `bio`, `garten`, `gs`, `rest`, `papier` and `papiertonne` parameters to `\"0\"` if you do not want to see the corresponding waste types in the calendar.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_hdh_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_abfall_hdh_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.abfall-hdh.de/internet/inhalt/inhalt.php?seite=98 and select your location. \n- Replace the `gemeinde`, `ortsteil` and `strasse` in the example configuration with the names you selected (leave `strasse` as is if you do not selected one on the website).\n- You may also want to set the `bio`, `garten`, `gs`, `rest`, `papier` and `papiertonne` parameters to `\"0\"` if you do not want to see the corresponding waste types in the calendar.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/abfall_hdh_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_nerdbridge_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfall.nerdbridge.de/ and select your municipality. \n- Click on `In die Zwischenablage kopieren` to copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/nerdbridge_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_nerdbridge_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfall.nerdbridge.de/ and select your municipality. \n- Click on `In die Zwischenablage kopieren` to copy the link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/nerdbridge_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_ab_peine_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ab-peine.de/Abfuhrtermine/ and select your address. You can leave `Ab Monat` and `Darstellung` as is.\n- For all bin types do not select any bin type checkbox\n- Copy the link of the `Kalender abonnieren` button\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ab_peine_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_ab_peine_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ab-peine.de/Abfuhrtermine/ and select your address. You can leave `Ab Monat` and `Darstellung` as is.\n- For all bin types do not select any bin type checkbox\n- Copy the link of the `Kalender abonnieren` button\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ab_peine_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_landkreis_stade_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfall.landkreis-stade.de/abfuhrkalender/ and select your location. \n- Right-click on `Als Kalenderdatei (.ics) herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_stade_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_landkreis_stade_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfall.landkreis-stade.de/abfuhrkalender/ and select your location. \n- Right-click on `Als Kalenderdatei (.ics) herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_stade_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_vogtlandkreis_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://vogtlandkreis.de/Bürgerservice-und-Verwaltung/Infos-und-Services/Abfallentsorgung/Abfuhrtermine and select your location. \n- Click on `URL ANZEIGEN` to get a ical link. If the button is broken use the `URL in Zwichenablage kopieren` button.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/vogtlandkreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_vogtlandkreis_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://vogtlandkreis.de/Bürgerservice-und-Verwaltung/Infos-und-Services/Abfallentsorgung/Abfuhrtermine and select your location. \n- Click on `URL ANZEIGEN` to get a ical link. If the button is broken use the `URL in Zwichenablage kopieren` button.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/vogtlandkreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_bodenseekreis_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.bodenseekreis.de/umwelt-landnutzung/abfallentsorgung-privat/termine/abfuhrkalender/ and select your municipality. \n- Click on `iCal-Kalender` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/bodenseekreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_bodenseekreis_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.bodenseekreis.de/umwelt-landnutzung/abfallentsorgung-privat/termine/abfuhrkalender/ and select your municipality. \n- Click on `iCal-Kalender` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/bodenseekreis_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_landkreis_miltenberg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://sperrgut.landkreis-miltenberg.de/WasteManagementMiltenberg/WasteManagementServlet?SubmitAction=wasteDisposalServices and select your location. \n- Click on `URL ANZEIGEN` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_miltenberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_landkreis_miltenberg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://sperrgut.landkreis-miltenberg.de/WasteManagementMiltenberg/WasteManagementServlet?SubmitAction=wasteDisposalServices and select your location. \n- Click on `URL ANZEIGEN` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/landkreis_miltenberg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_lebach_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.lebach.de/lebach/abfall/abfuhrkalender/ and select your location in the gray box on the right. \n- Right click on `hier: die Ical-Datei zum Importieren auf Ihr Mobiltelefon` select `copy link` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/lebach_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_lebach_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.lebach.de/lebach/abfall/abfuhrkalender/ and select your location in the gray box on the right. \n- Right click on `hier: die Ical-Datei zum Importieren auf Ihr Mobiltelefon` select `copy link` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/lebach_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_entsorgung_sad_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://entsorgung-sad.de and select your location. \n- Click on `ICS-Datei herunterladen` copy the download link of the downloaded ics file.\n- Replace the `url` in the example configuration with this link.\n- The `regex` is used to extract the pickup date from the event title.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_sad_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_entsorgung_sad_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://entsorgung-sad.de and select your location. \n- Click on `ICS-Datei herunterladen` copy the download link of the downloaded ics file.\n- Replace the `url` in the example configuration with this link.\n- The `regex` is used to extract the pickup date from the event title.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/entsorgung_sad_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_luebeck_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://insert-it.de/BMSAbfallkalenderLuebeck and select your location. \n- Right-click on `iCalendar` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/luebeck_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_luebeck_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://insert-it.de/BMSAbfallkalenderLuebeck and select your location. \n- Right-click on `iCalendar` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/luebeck_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_mein_abfallkalender_online": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- `mein-abfallkalender.online` uses a subdomain per supported municipality/city. Open the subdomain of your location, e.g., https://eppstein.mein-abfallkalender.online. If you not know the subdomain for your location, you can check their references page: https://www.mein-abfallkalender.de/unsere_referenzen.html.\n- Select your location (if needed).\n- Click on `Meine Termine anzeigen`.\n- Click on `Termine (iCal / WebCal)`.\n- Don't forget to register your e-mail, otherwise you will not get a valid webcal link!\n- Click on `Termine via iCal/WebCal nutzen`.\n- Copy the webcal link below `Online=Kalender \"Google Kalender\" (manuell)`.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/mein_abfallkalender_online.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_mein_abfallkalender_online": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- `mein-abfallkalender.online` uses a subdomain per supported municipality/city. Open the subdomain of your location, e.g., https://eppstein.mein-abfallkalender.online. If you not know the subdomain for your location, you can check their references page: https://www.mein-abfallkalender.de/unsere_referenzen.html.\n- Select your location (if needed).\n- Click on `Meine Termine anzeigen`.\n- Click on `Termine (iCal / WebCal)`.\n- Don't forget to register your e-mail, otherwise you will not get a valid webcal link!\n- Click on `Termine via iCal/WebCal nutzen`.\n- Copy the webcal link below `Online=Kalender \"Google Kalender\" (manuell)`.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/mein_abfallkalender_online.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_neu_ulm_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://neu-ulm.de/buerger-service/leben-in-neu-ulm/abfall-sauberkeit/abfallkalender and select your location. \n- Copy the correct link below `Abfuhrtermine als ICS-Dateien`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' so the url should stay valid the next years.\n- Keep the regex if you do not want to see the Abfuhr prefix in the event title.\n- If you want to split events like `Rest- und Biomüll` into two events, you can use the `split_at` option. ( results in events `Rest` and `Biomüll` You might want to change the name of the first one using the customize option. [_See configuration documentationt_](https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/installation.md#configuring-sources).)\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/neu_ulm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_neu_ulm_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://neu-ulm.de/buerger-service/leben-in-neu-ulm/abfall-sauberkeit/abfallkalender and select your location. \n- Copy the correct link below `Abfuhrtermine als ICS-Dateien`.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' so the url should stay valid the next years.\n- Keep the regex if you do not want to see the Abfuhr prefix in the event title.\n- If you want to split events like `Rest- und Biomüll` into two events, you can use the `split_at` option. ( results in events `Rest` and `Biomüll` You might want to change the name of the first one using the customize option. [_See configuration documentationt_](https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/installation.md#configuring-sources).)\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/neu_ulm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_awu_oberhavel_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awu-oberhavel.de/fuer-haushalte/zusatzinfos/tourenplan/ and select your location. \n- Right on `Alle Abfallarten` and select copy link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awu_oberhavel_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_awu_oberhavel_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.awu-oberhavel.de/fuer-haushalte/zusatzinfos/tourenplan/ and select your location. \n- Right on `Alle Abfallarten` and select copy link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/awu_oberhavel_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_asf_online_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.asf-online.de/abfuhrtermine/ and select your location.\n- You may want to select the `Abfallarten` if you do not want all to show up in your calendar.\n- Right click - copy-link the `Als Kalenderdatei (.ics) herunterladen` button to get the ICS link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/asf_online_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_asf_online_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.asf-online.de/abfuhrtermine/ and select your location.\n- You may want to select the `Abfallarten` if you do not want all to show up in your calendar.\n- Right click - copy-link the `Als Kalenderdatei (.ics) herunterladen` button to get the ICS link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/asf_online_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_detmold_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfuhrkalender.detmold.de/ and select your location. \n- Click on `Weitere Information`.\n- Click on `Download ics-Datei (iCal).\n- Right-click on `Download` link and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with `{%Y}Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/detmold_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_detmold_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://abfuhrkalender.detmold.de/ and select your location. \n- Click on `Weitere Information`.\n- Click on `Download ics-Datei (iCal).\n- Right-click on `Download` link and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with `{%Y}Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/detmold_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_koblenz_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://servicebetrieb.koblenz.de/abfallwirtschaft/entsorgungstermine-digital/. \n- Right-click on your municipality and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url by {%Y}.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/koblenz_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_koblenz_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://servicebetrieb.koblenz.de/abfallwirtschaft/entsorgungstermine-digital/. \n- Right-click on your municipality and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url by {%Y}.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/koblenz_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_stadt_mainhausen_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.mainhausen.de/download-muellkalender and select your street name. \n- Right-click on `Download Kalenderdatei nur Bezirke mit *selected street name*` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadt_mainhausen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_stadt_mainhausen_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.mainhausen.de/download-muellkalender and select your street name. \n- Right-click on `Download Kalenderdatei nur Bezirke mit *selected street name*` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadt_mainhausen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_osnabrueck_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://nachhaltig.osnabrueck.de/de/abfall/muellabfuhr/muellabfuhr-digital/online-abfuhrkalender/ and select your location. \n- Right-click on `Termine importieren` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/osnabrueck_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_osnabrueck_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://nachhaltig.osnabrueck.de/de/abfall/muellabfuhr/muellabfuhr-digital/online-abfuhrkalender/ and select your location. \n- Right-click on `Termine importieren` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/osnabrueck_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_stadtbetrieb_frechen_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtbetrieb-frechen.de/service/abfallkalender and select your street name. \n- Right-click on `Jahreskalender importieren (iCal)` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' this way the link keep valid for following years.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtbetrieb_frechen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_stadtbetrieb_frechen_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtbetrieb-frechen.de/service/abfallkalender and select your street name. \n- Right-click on `Jahreskalender importieren (iCal)` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the url with '{%Y}' this way the link keep valid for following years.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtbetrieb_frechen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_stadtentsorgung_rostock_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtentsorgung-rostock.de/service/ekalend/1216 and select your location. \n- Click on `Abfuhrtermine anzeigen`\n- Click on `Jahr`\n- Right-click on `Terminexport` and select `Inspect`.\n- You should see a HTML fragment like this:\n\n ```html\n \n ```\n\n The relevant information piece is the text between `(key)/` and `(period)`, which is `GEG~17155-AWI~17155` in this example.\n\n- Replace the corresponding text in the example configuration with your values from the HTML fragment.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtentsorgung_rostock_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_stadtentsorgung_rostock_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtentsorgung-rostock.de/service/ekalend/1216 and select your location. \n- Click on `Abfuhrtermine anzeigen`\n- Click on `Jahr`\n- Right-click on `Terminexport` and select `Inspect`.\n- You should see a HTML fragment like this:\n\n ```html\n \n ```\n\n The relevant information piece is the text between `(key)/` and `(period)`, which is `GEG~17155-AWI~17155` in this example.\n\n- Replace the corresponding text in the example configuration with your values from the HTML fragment.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtentsorgung_rostock_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_stadtreinigung_leipzig_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://stadtreinigung-leipzig.de/wir-kommen-zu-ihnen/abfallkalender, select your location and click on \"Termine anzeigen\". \n- Download the iCal file by clicking on 'Exportieren' - `Ganztätig` - `Herunterladen`.\n- Copy the download link of the ical file (firefox: downloads menu - right click - copy download-link).\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtreinigung_leipzig_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_stadtreinigung_leipzig_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://stadtreinigung-leipzig.de/wir-kommen-zu-ihnen/abfallkalender, select your location and click on \"Termine anzeigen\". \n- Download the iCal file by clicking on 'Exportieren' - `Ganztätig` - `Herunterladen`.\n- Copy the download link of the ical file (firefox: downloads menu - right click - copy download-link).\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtreinigung_leipzig_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_stadtwerke_huerth_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtwerke-huerth.de/de/Muellkalender/Muellkalender.html and select your location on the left of the calendar (not the dropdown menu above the calendar).\n- Copy the link of the button `Termine herunterladen` below the calendar.\n- Replace the `url` in the example configuration with this link.\n- You may want to change the date in the url to '{%Y}-01-01' für multi year use (not sure if necessary)\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtwerke_huerth_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_stadtwerke_huerth_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.stadtwerke-huerth.de/de/Muellkalender/Muellkalender.html and select your location on the left of the calendar (not the dropdown menu above the calendar).\n- Copy the link of the button `Termine herunterladen` below the calendar.\n- Replace the `url` in the example configuration with this link.\n- You may want to change the date in the url to '{%Y}-01-01' für multi year use (not sure if necessary)\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/stadtwerke_huerth_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_swk_herford_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://swk.herford.de/Entsorgung/Abfallkalender-/ and select your location. \n- Copy the link of ` Export in Kalenderanwendung`\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the `url` with '{%Y}'. \n This will be replaced by the current year.\n- you might want to keep the regex as it removes potentially unnecessary information from the title.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/swk_herford_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_swk_herford_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://swk.herford.de/Entsorgung/Abfallkalender-/ and select your location. \n- Copy the link of ` Export in Kalenderanwendung`\n- Replace the `url` in the example configuration with this link.\n- Replace the year in the `url` with '{%Y}'. \n This will be replaced by the current year.\n- you might want to keep the regex as it removes potentially unnecessary information from the title.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/swk_herford_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_tbr_reutlingen_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.tbr-reutlingen.de/entsorgungskalender and select your street. \n- Right-click on `Abfuhrtermine (iCal) herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- The trailing part of the URL is a URL-encoded JSON string. It contains the \"from\" and \"to\" dates for the calendar. You need to replace the \"from\" date with '01.01.{%Y}' and the \"to\" date with '31.12.{%Y}'. You can use a ureldecoding/-encoding service to make the URL path easier to edit.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/tbr_reutlingen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_tbr_reutlingen_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.tbr-reutlingen.de/entsorgungskalender and select your street. \n- Right-click on `Abfuhrtermine (iCal) herunterladen` and copy link address.\n- Replace the `url` in the example configuration with this link.\n- The trailing part of the URL is a URL-encoded JSON string. It contains the \"from\" and \"to\" dates for the calendar. You need to replace the \"from\" date with '01.01.{%Y}' and the \"to\" date with '31.12.{%Y}'. You can use a ureldecoding/-encoding service to make the URL path easier to edit.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/tbr_reutlingen_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_ebu_ulm_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ebu-ulm.de/abfall/abfuhrtermine.php and select your location. \n- Scroll down and copy the link of the `ICS Kalenderdaten für Outlook / iCal...` button.\n- Replace the `url` in the example configuration with this link.\n- Replcae the year with '{%Y}' to keep the link valid for following years.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ebu_ulm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_ebu_ulm_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.ebu-ulm.de/abfall/abfuhrtermine.php and select your location. \n- Scroll down and copy the link of the `ICS Kalenderdaten für Outlook / iCal...` button.\n- Replace the `url` in the example configuration with this link.\n- Replcae the year with '{%Y}' to keep the link valid for following years.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/ebu_ulm_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_zah_hildesheim_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zah-hildesheim.de/termine/ and select your location. \n- Right-click on `Export Kalender` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zah_hildesheim_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_zah_hildesheim_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zah-hildesheim.de/termine/ and select your location. \n- Right-click on `Export Kalender` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zah_hildesheim_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_zfa_iserlohn_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zfa-iserlohn.de/ and select your municipality.\n- Click on `Leerungstermine`\n- Right-click on `Leerungstermine 20xx als Kaldender-Datei (ICS-Format)` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zfa_iserlohn_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_zfa_iserlohn_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zfa-iserlohn.de/ and select your municipality.\n- Click on `Leerungstermine`\n- Right-click on `Leerungstermine 20xx als Kaldender-Datei (ICS-Format)` and copy link address.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zfa_iserlohn_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_zaoe_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zaoe.de/abfallkalender/entsorgungstermine/abholtermine/ and select your location. \n- Click on `(als iCal-Abonnement)` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zaoe_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_zaoe_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.zaoe.de/abfallkalender/entsorgungstermine/abholtermine/ and select your location. \n- Click on `(als iCal-Abonnement)` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/zaoe_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_za_sws_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.za-sws.de/abfallkalender.cfm?ab=1 and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy the link to the ICS file.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/za_sws_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_za_sws_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.za-sws.de/abfallkalender.cfm?ab=1 and select your location. \n- Click on `URL in die Zwischenablage kopieren` to copy the link to the ICS file.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/za_sws_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_contarina_it": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Copy the `url` in the example configuration with this link.\n- Replace the url's '{zone}' substring with your location's zone code (check below for the chart)\n- Keeping `regex` and `split_at` as they are will remove potetially unnecessary names and split the waste types if there are multiple in one day.\n\nZone codes '{code} : {zone}':\n - 1 : \"Treviso - cintura urbana\",\n - 2 : \"Treviso - fuori mura\",\n - 3 : \"Treviso - centro storico\",\n - 4 : \"Arcade\",\n - 5 : \"Breda di Piave\",\n - 6 : \"Carbonera\",\n - 7 : \"Casale sul Sile\",\n - 8 : \"Casier\",\n - 9 : \"Giavera del Montello\",\n - 10 : \"Maserada sul Piave\",\n - 11 : \"Monastier di Treviso\",\n - 12 : \"Morgano\",\n - 13 : \"Nervesa della Battaglia\",\n - 14 : \"Paese\",\n - 15 : \"Ponzano Veneto\",\n - 16 : \"Povegliano\",\n - 17 : \"Preganziol\",\n - 18 : \"Quinto di Treviso\",\n - 19 : \"Roncade\",\n - 20 : \"San Biagio di Callalta\",\n - 21 : \"Silea\",\n - 22 : \"Spresiano\",\n - 23 : \"Susegana\",\n - 24 : \"Villorba\",\n - 25 : \"Volpago del Montello\",\n - 26 : \"Zenson di Piave\",\n - 27 : \"Zero Branco\",\n - 28 : \"Altivole\",\n - 29 : \"Asolo - centro storico\",\n - 30 : \"Asolo - fuori centro storico\",\n - 31 : \"Borso del Grappa\",\n - 32 : \"Caerano di San Marco\",\n - 33 : \"Castelcucco\",\n - 34 : \"Castelfranco Veneto - centro storico\",\n - 35 : \"Castelfranco Veneto - fuori centro storico\",\n - 36 : \"Castello di Godego\",\n - 37 : \"Cavaso del Tomba\",\n - 38 : \"Cornuda\",\n - 40 : \"Crocetta del Montello\",\n - 41 : \"Fonte\",\n - 42 : \"Istrana\",\n - 43 : \"Loria\",\n - 44 : \"Maser\",\n - 45 : \"Monfumo\",\n - 46 : \"Montebelluna - centro storico\",\n - 47 : \"Montebelluna - fuori centro storico\",\n - 49 : \"Pederobba\",\n - 50 : \"Possagno\",\n - 51 : \"Resana\",\n - 52 : \"Riese Pio X\",\n - 53 : \"San Zenone degli Ezzelini\",\n - 54 : \"Trevignano\",\n - 55 : \"Vedelago\",\n - 56 : \"Pieve del Grappa\"\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/contarina_it.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_contarina_it": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Copy the `url` in the example configuration with this link.\n- Replace the url's '{zone}' substring with your location's zone code (check below for the chart)\n- Keeping `regex` and `split_at` as they are will remove potetially unnecessary names and split the waste types if there are multiple in one day.\n\nZone codes '{code} : {zone}':\n - 1 : \"Treviso - cintura urbana\",\n - 2 : \"Treviso - fuori mura\",\n - 3 : \"Treviso - centro storico\",\n - 4 : \"Arcade\",\n - 5 : \"Breda di Piave\",\n - 6 : \"Carbonera\",\n - 7 : \"Casale sul Sile\",\n - 8 : \"Casier\",\n - 9 : \"Giavera del Montello\",\n - 10 : \"Maserada sul Piave\",\n - 11 : \"Monastier di Treviso\",\n - 12 : \"Morgano\",\n - 13 : \"Nervesa della Battaglia\",\n - 14 : \"Paese\",\n - 15 : \"Ponzano Veneto\",\n - 16 : \"Povegliano\",\n - 17 : \"Preganziol\",\n - 18 : \"Quinto di Treviso\",\n - 19 : \"Roncade\",\n - 20 : \"San Biagio di Callalta\",\n - 21 : \"Silea\",\n - 22 : \"Spresiano\",\n - 23 : \"Susegana\",\n - 24 : \"Villorba\",\n - 25 : \"Volpago del Montello\",\n - 26 : \"Zenson di Piave\",\n - 27 : \"Zero Branco\",\n - 28 : \"Altivole\",\n - 29 : \"Asolo - centro storico\",\n - 30 : \"Asolo - fuori centro storico\",\n - 31 : \"Borso del Grappa\",\n - 32 : \"Caerano di San Marco\",\n - 33 : \"Castelcucco\",\n - 34 : \"Castelfranco Veneto - centro storico\",\n - 35 : \"Castelfranco Veneto - fuori centro storico\",\n - 36 : \"Castello di Godego\",\n - 37 : \"Cavaso del Tomba\",\n - 38 : \"Cornuda\",\n - 40 : \"Crocetta del Montello\",\n - 41 : \"Fonte\",\n - 42 : \"Istrana\",\n - 43 : \"Loria\",\n - 44 : \"Maser\",\n - 45 : \"Monfumo\",\n - 46 : \"Montebelluna - centro storico\",\n - 47 : \"Montebelluna - fuori centro storico\",\n - 49 : \"Pederobba\",\n - 50 : \"Possagno\",\n - 51 : \"Resana\",\n - 52 : \"Riese Pio X\",\n - 53 : \"San Zenone degli Ezzelini\",\n - 54 : \"Trevignano\",\n - 55 : \"Vedelago\",\n - 56 : \"Pieve del Grappa\"\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/contarina_it.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_offalkalinder_nl": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://offalkalinder.nl/wanneer and add your postcode and housenummer. (9074DL, 1)\n- Click on `Zet in agenda`\n- Click on `Kopieer naar klembord`\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/offalkalinder_nl.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_offalkalinder_nl": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://offalkalinder.nl/wanneer and add your postcode and housenummer. (9074DL, 1)\n- Click on `Zet in agenda`\n- Click on `Kopieer naar klembord`\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/offalkalinder_nl.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_trv_no": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://trv.no/plan/ and search for your address. \n- Copy the link address of `Legg til i kalender (iCal)` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/trv_no.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_trv_no": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to https://trv.no/plan/ and search for your address. \n- Copy the link address of `Legg til i kalender (iCal)` to get a webcal link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/trv_no.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_openerz_metaodi_ch": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Leave the url as is.\n- Set the region to one of the ones listed below.\n- Set the zip (not needed for all regions). \"The zip code for the collection. Some regions (e.g. Basel) do not provide zip codes.\" - Website\n- Set the area to one of the ones listed below.\n- You probably want to leave the regex as is to remove unnecessary information from the summary.\n\n| Region | Areas |\n| ------ | ----- |\n| adliswil | No Areas |\n| basel | A, B, C, D, E, F, G, H |\n| bassersdorf | No Areas |\n| duebendorf | 1, 2, 3, 4, oekibus-dienstag, oekibus-donnerstag, oekibus-mittwoch, oekibus-montag |\n| embrach | ost, west |\n| horgen | A, B, C, D |\n| kilchberg | A, B |\n| langnau | No Areas |\n| oberrieden | No Areas |\n| richterswil | A, B |\n| rueschlikon | A, B |\n| stgallen | A, B, C, D, E, F, G, H, I, K, L Ost, L West |\n| thalwil | A, B, C |\n| uster | 1, 2, 3, 4 |\n| waedenswil | A, B, C, D |\n| wangen-bruttisellen | No Areas |\n| zurich | 8001, 8002, 8003, 8004, 8005, 8006, 8008, 8032, 8037, 8038, 8041, 8044, 8045, 8046, 8047, 8048, 8049, 8050, 8051, 8052, 8053, 8055, 8057, 8064 |\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/openerz_metaodi_ch.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_openerz_metaodi_ch": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Leave the url as is.\n- Set the region to one of the ones listed below.\n- Set the zip (not needed for all regions). \"The zip code for the collection. Some regions (e.g. Basel) do not provide zip codes.\" - Website\n- Set the area to one of the ones listed below.\n- You probably want to leave the regex as is to remove unnecessary information from the summary.\n\n| Region | Areas |\n| ------ | ----- |\n| adliswil | No Areas |\n| basel | A, B, C, D, E, F, G, H |\n| bassersdorf | No Areas |\n| duebendorf | 1, 2, 3, 4, oekibus-dienstag, oekibus-donnerstag, oekibus-mittwoch, oekibus-montag |\n| embrach | ost, west |\n| horgen | A, B, C, D |\n| kilchberg | A, B |\n| langnau | No Areas |\n| oberrieden | No Areas |\n| richterswil | A, B |\n| rueschlikon | A, B |\n| stgallen | A, B, C, D, E, F, G, H, I, K, L Ost, L West |\n| thalwil | A, B, C |\n| uster | 1, 2, 3, 4 |\n| waedenswil | A, B, C, D |\n| wangen-bruttisellen | No Areas |\n| zurich | 8001, 8002, 8003, 8004, 8005, 8006, 8008, 8032, 8037, 8038, 8041, 8044, 8045, 8046, 8047, 8048, 8049, 8050, 8051, 8052, 8053, 8055, 8057, 8064 |\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/openerz_metaodi_ch.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_muensingen_ch": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to [Abfallkalender](https://www.muensingen.ch/de/verwaltung/dienstleistungen/detail/detail.php?i=90) to get the url of the ICal file.\n- Replace the URL in the Example section with the url of the ICal file.\n- Replace the year in the url with '{%Y}'.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/muensingen_ch.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_muensingen_ch": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Go to [Abfallkalender](https://www.muensingen.ch/de/verwaltung/dienstleistungen/detail/detail.php?i=90) to get the url of the ICal file.\n- Replace the URL in the Example section with the url of the ICal file.\n- Replace the year in the url with '{%Y}'.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/muensingen_ch.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_anglesey_gov_wales": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.anglesey.gov.wales/en/Residents/Bins-and-recycling/Waste-Collection-Day.aspx go to `Find your bin day` and search your address. \n- Copy the link(s) below `Download calendar to your device`\n- Replace the `url` in the example configuration with this link.\n- For multiple calendars (waste + garden) add a new source for each calendar.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/anglesey_gov_wales.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_anglesey_gov_wales": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.anglesey.gov.wales/en/Residents/Bins-and-recycling/Waste-Collection-Day.aspx go to `Find your bin day` and search your address. \n- Copy the link(s) below `Download calendar to your device`\n- Replace the `url` in the example configuration with this link.\n- For multiple calendars (waste + garden) add a new source for each calendar.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/anglesey_gov_wales.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_brent_gov_uk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://recyclingservices.brent.gov.uk/waste and enter your post code, and on the following page select your address. \n- Right click - copy the url of the `Add to your calendar (.ics file)` link.\n- Replace the `url` in the example configuration with this link. (If you know your address reference, you can just replace the last part of the url with it.)\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/brent_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_brent_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://recyclingservices.brent.gov.uk/waste and enter your post code, and on the following page select your address. \n- Right click - copy the url of the `Add to your calendar (.ics file)` link.\n- Replace the `url` in the example configuration with this link. (If you know your address reference, you can just replace the last part of the url with it.)\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/brent_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_falkirk_gov_uk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.falkirk.gov.uk/services/bins-rubbish-recycling/household-waste/bin-collection-dates.aspx and select your location. \n- Click on `Add to smartphone`.\n- select Android and uncheck Remind me.\n- Replace the `url` in the example configuration with the link shown in the bar below `Remind me`.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/falkirk_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_falkirk_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.falkirk.gov.uk/services/bins-rubbish-recycling/household-waste/bin-collection-dates.aspx and select your location. \n- Click on `Add to smartphone`.\n- select Android and uncheck Remind me.\n- Replace the `url` in the example configuration with the link shown in the bar below `Remind me`.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/falkirk_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_gedling_gov_uk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Gedling Borough Council does not provide bin collections in the iCal calendar format directly.\n- The iCal calendar files have been generated from the official printed calendars and hosted on GitHub for use.\n- Find your collection weekday and schedule by entering your street name in the [collection search tool](https://www.gbcbincalendars.co.uk/collection-search).\n- The correct calendar link will be displayed. On the calendar page use the \"Copy iCal URL\" button to get the calendar URL to use with this integration.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gedling_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_gedling_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Gedling Borough Council does not provide bin collections in the iCal calendar format directly.\n- The iCal calendar files have been generated from the official printed calendars and hosted on GitHub for use.\n- Find your collection weekday and schedule by entering your street name in the [collection search tool](https://www.gbcbincalendars.co.uk/collection-search).\n- The correct calendar link will be displayed. On the calendar page use the \"Copy iCal URL\" button to get the calendar URL to use with this integration.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/gedling_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_barrowbc_gov_uk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://ww.barrowbc.gov.uk/bins-recycling-and-street-cleaning/waste-collection-schedule and select your location. \n- Right click - copy the url of the `Add to iCalendar` link.\n- Replace the `url` in the example configuration with this link. (If you know your UPRN, you can just replace the last part of the url with it.)\n- if you want to shorten your entry names use the `regex` line from the second example (`Grey lidded bins for General waste` will show up as `Grey`)\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/barrowbc_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_barrowbc_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://ww.barrowbc.gov.uk/bins-recycling-and-street-cleaning/waste-collection-schedule and select your location. \n- Right click - copy the url of the `Add to iCalendar` link.\n- Replace the `url` in the example configuration with this link. (If you know your UPRN, you can just replace the last part of the url with it.)\n- if you want to shorten your entry names use the `regex` line from the second example (`Grey lidded bins for General waste` will show up as `Grey`)\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/barrowbc_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_southlakeland_gov_uk": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.southlakeland.gov.uk/bins-and-recycling/collection-calendar/ and select your location. \n- Rightclick - copy the URL of the `Import these dates into your calendar` link.\n- Replace the `url` in the example configuration with this link.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/southlakeland_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_southlakeland_gov_uk": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.southlakeland.gov.uk/bins-and-recycling/collection-calendar/ and select your location. \n- Rightclick - copy the URL of the `Import these dates into your calendar` link.\n- Replace the `url` in the example configuration with this link.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/southlakeland_gov_uk.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ics_asto_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.asto.de/ and navigate to the `Abfallkalender` page.\n- Click on `Digital / Mobil` in the left navigation sidebar, then select your region in the same sidebar.\n- Select your address.\n- Right-click - copy link address on the `Jahreskalender (iCal)` button.\n- Paste the copied link into the `url` parameter.\n- You can remove the cHash part of the URL, it is not needed.\n- It's recommended to replace the year in the URL with '{%Y}' so it will be automatically updated each year if the URL only changes the year.\n\n\nMaggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/asto_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics_asto_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. \n\n- Goto https://www.asto.de/ and navigate to the `Abfallkalender` page.\n- Click on `Digital / Mobil` in the left navigation sidebar, then select your region in the same sidebar.\n- Select your address.\n- Right-click - copy link address on the `Jahreskalender (iCal)` button.\n- Paste the copied link into the `url` parameter.\n- You can remove the cHash part of the URL, it is not needed.\n- It's recommended to replace the year in the URL with '{%Y}' so it will be automatically updated each year if the URL only changes the year.\n\n\nPer maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/ics/asto_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_ceb_coburg_de": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ceb_coburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "street": "Strada" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ceb_coburg_de": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ceb_coburg_de.md.", + "data": { + "calendar_title": "Nome Calendario", + "street": "Strada" + }, + "data_description": {} + }, + "args_ics": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_ics": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/ics.md.", + "data": { + "calendar_title": "Nome Calendario", + "file": "Nome File", + "headers": "Headers", + "method": "Metodo", + "offset": "Offset", + "params": "Parametri", + "regex": "Regex", + "split_at": "Split At", + "title_template": "Title Template", + "url": "Url", + "verify_ssl": "Verifica SSL", + "version": "Versione", + "year_field": "Year Field" + }, + "data_description": {} + }, + "args_static": { + "title": "Configurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md.", + "data": { + "calendar_title": "Nome Calendario", + "count": "Conteggio", + "dates": "Date", + "excludes": "Escludi", + "frequency": "Frequenza", + "interval": "Intervallo", + "start": "Inizio", + "type": "Type", + "until": "Fino", + "weekdays": "Giorni feriali" + }, + "data_description": { + "calendar_title": "Puoi cambiare il nome del calendario della raccolta dei rifiuti, altrimenti di default verra' utilizzato il nome del tuo fornitore di servizi." + } + }, + "reconfigure_static": { + "title": "Riconfigurazione Sorgente", + "description": "Compila i campi per ottenere le informazioni sul tuo servizio di raccolta. Per maggiori informazioni: https://github.com/mampfes/hacs_waste_collection_schedule/blob/master/doc/source/static.md.", + "data": { + "calendar_title": "Nome Calendario", + "count": "Conteggio", + "dates": "Date", + "excludes": "Escludi", + "frequency": "Frequenza", + "interval": "Intervallo", + "start": "Inizio", + "type": "Type", + "until": "Fino", + "weekdays": "Giorni feriali" + }, + "data_description": {} } }, "error": { diff --git a/update_docu_links.py b/update_docu_links.py index 31252e63..95e10045 100755 --- a/update_docu_links.py +++ b/update_docu_links.py @@ -35,6 +35,8 @@ END_SERVICE_SECTION = "" LANGUAGES = ["en", "de"] ARG_TRANSLATIONS_TO_KEEP = ["calendar_title"] +ARG_DESCRIPTIONS_TO_KEEP = ["calendar_title"] +ARG_GENERAL_KEYS_TO_KEEP = ["title", "description"] class SourceInfo: @@ -206,6 +208,8 @@ def browse_sources() -> list[SourceInfo]: sig = inspect.signature(module.Source.__init__) params = [param.name for param in sig.parameters.values()] + if "self" in params: + params.remove("self") param_translations = getattr(module, "PARAM_TRANSLATIONS", {}) filename = f"/doc/source/{f}.md" @@ -369,18 +373,10 @@ def beautify_url(url): return url -def update_json( - countries: dict[str, list[SourceInfo]], generics: list[SourceInfo] = [] -): - params = set() - param_translations: dict[str, dict[str, str]] = {} - countries = countries.copy() - countries["Generic"] = generics - # generate country list +def update_sources_json(countries: dict[str, list[SourceInfo]]) -> None: output: dict[str, list[dict[str, str | dict[str, Any]]]] = {} for country in sorted(countries): output[country] = [] - for e in sorted( countries[country], key=lambda e: (e.title.lower(), beautify_url(e.url), e.filename), @@ -402,17 +398,55 @@ def update_json( "default_params": e.extra_info_default_params, } ) - params.update([f"{e.module}_{p}" for p in e.params]) + with open( + "custom_components/waste_collection_schedule/sources.json", + "w", + encoding="utf-8", + ) as f: + f.write(json.dumps(output, indent=2)) + + +def get_custom_translations( + countries: dict[str, list[SourceInfo]] +) -> dict[str, dict[str, dict[str, str | None]]]: + """gets all parameters and its custom translations for all languages + + Args: + countries (dict[str, list[SourceInfo]]): + + Returns: + dict[str, dict[str, dict[str, str|None]]]: dict[MODULE][PARAM][LANG][TRANSLATION|None] + """ + param_translations: dict[str, dict[str, dict[str, str | None]]] = {} + for country in sorted(countries): + for e in sorted( + countries[country], + key=lambda e: (e.title.lower(), beautify_url(e.url), e.filename), + ): + if e.module is None: # ICS source + continue + if not e.module in param_translations: + param_translations[e.module] = {} + + for param in e.params: + if param not in param_translations[e.module]: + param_translations[e.module][param] = {} + for lang, translations in e.custom_param_translation.items(): - if lang in param_translations: - param_translations[lang].update( - {f"{e.module}_{k}": v for k, v in translations.items()} - ) - else: - param_translations[lang] = translations.copy() + for param, translation in translations.items(): + param_translations[e.module][param][lang] = translation - # output["Generic"] = [{"title": "ICS", "module": "ics", "default_params": {}}, {"title": "Static", "module": "static", "default_params": {}}] + return param_translations + +def update_json( + countries: dict[str, list[SourceInfo]], generics: list[SourceInfo] = [] +): + countries = countries.copy() + countries["Generic"] = generics + update_sources_json(countries) + + param_translations = get_custom_translations(countries) for lang in LANGUAGES: tranlation_file = ( f"custom_components/waste_collection_schedule/translations/{lang}.json" @@ -427,24 +461,68 @@ def update_json( ) as f: translations = json.load(f) - arg_translations = {} + translation_for_all = {} + description_for_all_args = {} + description_for_all_reconfigure = {} + + keys_for_all_args = {} + keys_for_all_reconfigure = {} + for key, value in translations["config"]["step"]["args"]["data"].items(): if key in ARG_TRANSLATIONS_TO_KEEP: - arg_translations[key] = value + translation_for_all[key] = value - for param in params: - param = f"{param}" - if param in param_translations.get(lang, {}): - arg_translations[param] = param_translations[lang][param] - elif lang == "en" and param not in arg_translations: - arg_translations[param] = " ".join( - [s.capitalize() for s in split_camel_and_snake_case(param)] - ) + for key, value in ( + translations["config"]["step"]["args"].get("data_description", {}).items() + ): + if key in ARG_DESCRIPTIONS_TO_KEEP: + description_for_all_args[key] = value + for key, value in ( + translations["config"]["step"]["reconfigure"] + .get("data_description", {}) + .items() + ): + if key in ARG_DESCRIPTIONS_TO_KEEP: + description_for_all_reconfigure[key] = value - arg_translations = {k: arg_translations[k] for k in sorted(arg_translations)} + for key, value in translations["config"]["step"]["args"].items(): + if key in ARG_GENERAL_KEYS_TO_KEEP: + keys_for_all_args[key] = value + for key, value in translations["config"]["step"]["reconfigure"].items(): + if key in ARG_GENERAL_KEYS_TO_KEEP: + keys_for_all_reconfigure[key] = value - translations["config"]["step"]["args"]["data"] = arg_translations - translations["config"]["step"]["reconfigure"]["data"] = arg_translations + for module, module_params in param_translations.items(): + translations["config"]["step"][f"args_{module}"] = keys_for_all_args.copy() + translations["config"]["step"][ + f"reconfigure_{module}" + ] = keys_for_all_reconfigure.copy() + + translations["config"]["step"][f"args_{module}"][ + "data" + ] = translation_for_all.copy() + translations["config"]["step"][f"reconfigure_{module}"][ + "data" + ] = translation_for_all.copy() + + translations["config"]["step"][f"args_{module}"][ + "data_description" + ] = description_for_all_args.copy() + translations["config"]["step"][f"reconfigure_{module}"][ + "data_description" + ] = description_for_all_reconfigure.copy() + + for param, languages in module_params.items(): + if languages.get(lang, None) is None: + languages[lang] = " ".join( + [s.capitalize() for s in split_camel_and_snake_case(param)] + ) + translations["config"]["step"][f"args_{module}"]["data"][ + param + ] = languages[lang] + translations["config"]["step"][f"reconfigure_{module}"]["data"][ + param + ] = languages[lang] with open( tranlation_file, @@ -453,13 +531,6 @@ def update_json( ) as f: json.dump(translations, f, indent=2, ensure_ascii=False) - with open( - "custom_components/waste_collection_schedule/sources.json", - "w", - encoding="utf-8", - ) as f: - f.write(json.dumps(output, indent=2)) - def update_readme_md(countries: dict[str, list[SourceInfo]]): # generate country list