From 87a685f852acb1fa7d0d9676ac6fa358f46548b5 Mon Sep 17 00:00:00 2001 From: "rothwell.andy@gmail.com" Date: Wed, 18 Sep 2024 11:12:36 -0400 Subject: [PATCH] adds General Food Site category for new point --- src/components/ExpandCollapseContent.vue | 2 +- src/data-sources/covid-free-meal-sites.js | 1 - src/i18n/en-us.js | 4 ++++ src/i18n/es-us.js | 1 + src/i18n/fr-fr.js | 1 + src/i18n/ru-ru.js | 1 + src/i18n/vi-vn.js | 1 + src/i18n/zh-cn.js | 1 + src/main.js | 1 + 9 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/ExpandCollapseContent.vue b/src/components/ExpandCollapseContent.vue index 90ed7ed..3cac430 100644 --- a/src/components/ExpandCollapseContent.vue +++ b/src/components/ExpandCollapseContent.vue @@ -60,7 +60,7 @@
diff --git a/src/data-sources/covid-free-meal-sites.js b/src/data-sources/covid-free-meal-sites.js index eb2f537..a22d2d3 100644 --- a/src/data-sources/covid-free-meal-sites.js +++ b/src/data-sources/covid-free-meal-sites.js @@ -3,7 +3,6 @@ export default { type: 'http-get', dependent: 'none', resettable: false, - // url: 'https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/COVID19_FreeMealSites_2_0_FOR_TESTING/FeatureServer/0/query', url: 'https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/COVID19_FreeMealSites_3_0_PUBLICVIEW/FeatureServer/0/query', options: { params: { diff --git a/src/i18n/en-us.js b/src/i18n/en-us.js index 9e65c5f..9e74a1d 100644 --- a/src/i18n/en-us.js +++ b/src/i18n/en-us.js @@ -82,6 +82,9 @@ export default { Availability of food will vary based on donations. \ Visit each Community Refrigerator website for more details.', }, + 'General Food Site': { + name: 'General Food Site', + }, }, }, generalMealSites: { @@ -273,5 +276,6 @@ export default { "Open on first and third Monday of the month": "Open on first and third Monday of the month", "Open on third Saturday of the month": "Open on third Saturday of the month", "Open on second and fourth Wednesday of the month": "Open on second and fourth Wednesday of the month", + "Open on second and fourth Saturdays of the month": "Open on second and fourth Saturdays of the month", }, }; diff --git a/src/i18n/es-us.js b/src/i18n/es-us.js index a9b25b9..52ae6e5 100644 --- a/src/i18n/es-us.js +++ b/src/i18n/es-us.js @@ -244,5 +244,6 @@ export default { "Open on first and third Monday of the month": "Abierto el primer y tercer lunes de cada mes", "Open on third Saturday of the month": "Abierto el tercer sábado de cada mes", "Open on second and fourth Wednesday of the month": "Abierto el segundo y cuarto miércoles de cada mes", + "Open on second and fourth Saturdays of the month": "Abierto el segundo y cuarto sábado del mes", }, }; \ No newline at end of file diff --git a/src/i18n/fr-fr.js b/src/i18n/fr-fr.js index 5a8e669..e2800d4 100644 --- a/src/i18n/fr-fr.js +++ b/src/i18n/fr-fr.js @@ -244,5 +244,6 @@ export default { "Open on first and third Monday of the month": "Ouvert le premier et le troisième lundi du mois", "Open on third Saturday of the month": "Ouvert le troisième samedi du mois", "Open on second and fourth Wednesday of the month": "Ouvert les deuxième et quatrième mercredis du mois", + "Open on second and fourth Saturdays of the month": "Ouvert les deuxième et quatrième samedis du mois", }, }; \ No newline at end of file diff --git a/src/i18n/ru-ru.js b/src/i18n/ru-ru.js index aa7b27c..7d2dc82 100644 --- a/src/i18n/ru-ru.js +++ b/src/i18n/ru-ru.js @@ -243,5 +243,6 @@ export default { "Open on first and third Monday of the month": "Открыто в первый и третий понедельник месяца", "Open on third Saturday of the month": "Открыто в третью субботу месяца", "Open on second and fourth Wednesday of the month": "Открыто во вторую и четвертую среду месяца", + "Open on second and fourth Saturdays of the month": "Открыто во вторую и четвертую субботу месяца", }, }; \ No newline at end of file diff --git a/src/i18n/vi-vn.js b/src/i18n/vi-vn.js index 518d574..bcf02cc 100644 --- a/src/i18n/vi-vn.js +++ b/src/i18n/vi-vn.js @@ -244,5 +244,6 @@ export default { "Open on first and third Monday of the month": "Mở cửa vào thứ Hai đầu tiên và thứ ba của tháng", "Open on third Saturday of the month": "Mở cửa vào thứ bảy thứ ba của tháng", "Open on second and fourth Wednesday of the month": "Открыто во вторую и четвертую среду месяца", + "Open on second and fourth Saturdays of the month": "Mở cửa vào thứ bảy thứ hai và thứ tư trong tháng", }, }; \ No newline at end of file diff --git a/src/i18n/zh-cn.js b/src/i18n/zh-cn.js index 96b2fbd..a6b77f4 100644 --- a/src/i18n/zh-cn.js +++ b/src/i18n/zh-cn.js @@ -244,5 +244,6 @@ export default { "Open on first and third Monday of the month": "在每月的第一个和第三个星期一开放", "Open on third Saturday of the month": "每月第三个星期六开放", "Open on second and fourth Wednesday of the month": "每月第二和第四个星期三开放", + "Open on second and fourth Saturdays of the month": "每月第二和第四个星期六开放", }, }; \ No newline at end of file diff --git a/src/main.js b/src/main.js index f0864f4..5e40ba8 100644 --- a/src/main.js +++ b/src/main.js @@ -714,6 +714,7 @@ pinboard({ 'Nutritional Development Services': 'foodSites', 'Small Things Philly': 'foodSites', 'Community Refrigerators': 'foodSites', + 'General Food Site': 'foodSites', 'STP': 'generalMealSites', 'Office of Homeless Services': 'generalMealSites', 'Broad Street Ministry': 'generalMealSites',