From af65c07492c72612ecea91690f22a0197c403c98 Mon Sep 17 00:00:00 2001 From: Tomer Vainshtein <62185136+i5x64BIT@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:37:54 +0200 Subject: [PATCH] Match text to new context (#233) --- src/locale/en.json | 2 +- src/locale/he.json | 2 +- src/pages/RealtimeMapPage.tsx | 9 --------- src/resources/texts.tsx | 2 +- 4 files changed, 3 insertions(+), 12 deletions(-) diff --git a/src/locale/en.json b/src/locale/en.json index d1313677..c5c88c94 100644 --- a/src/locale/en.json +++ b/src/locale/en.json @@ -36,7 +36,7 @@ "checkbox_only_gaps": "Only gaps", "dashboard_page_title": "Public transport operators according to planned trips", "dashboard_tooltip_content": "A GPS is attached to every line in Israel that reports the location of the bus every few moments.\nSo what is a missed trip? This is a trip that was planned, but was not reported to have taken place in the GPS data. You can see it in the app for example, but when you wait at the station, it will never arrive", - "worst_lines_page_title": "The worst lines of the 5 major operators", + "worst_lines_page_title": "Least Efficient Lines", "rides_planned": "planned trips", "rides_actual": "Trips out", "dashboard_page_graph_title": "Exit percentages of total trips by time", diff --git a/src/locale/he.json b/src/locale/he.json index 2dfd2081..ff7a5794 100644 --- a/src/locale/he.json +++ b/src/locale/he.json @@ -35,7 +35,7 @@ "checkbox_only_gaps": "רק פערים", "dashboard_page_title": "קיום נסיעות", "dashboard_tooltip_content": "על כל קו בישראל מוצמד GPS שמדווח את מיקום האוטובוס כל כמה רגעים.\nאז מה היא נסיעה שלא בוצעה? זאת נסיעה שתוכננה, אבל לא דווח שיצאה בנתוני הGPS. תוכלו לראות אותה באפליקציה למשל, אבל כשתחכו בתחנה, היא לעולם לא תגיע", - "worst_lines_page_title": "הקווים הגרועים ביותר של 5 המפעילות הגדולות", + "worst_lines_page_title": "הקווים הגרועים ביותר", "rides_planned": "נסיעות שתוכננו", "rides_actual": "נסיעות שיצאו", "dashboard_page_graph_title": "אחוזי יציאה מסך הנסיעות לפי זמן", diff --git a/src/pages/RealtimeMapPage.tsx b/src/pages/RealtimeMapPage.tsx index 14a2415d..99c75bad 100644 --- a/src/pages/RealtimeMapPage.tsx +++ b/src/pages/RealtimeMapPage.tsx @@ -66,15 +66,6 @@ export default function RealtimeMapPage() { recorded_at_time: new Date(location.recorded_at_time).getTime(), point: location, })) - - // keep only the latest point for each vehicle - // pos = pos.filter((p) => - // pos.every( - // (p2) => - // p2.point!.siri_ride__vehicle_ref !== p.point!.siri_ride__vehicle_ref || - // p2.recorded_at_time! <= p.recorded_at_time!, - // ), - // ) return pos }, [locations]) diff --git a/src/resources/texts.tsx b/src/resources/texts.tsx index 2af6b4d9..157afba1 100644 --- a/src/resources/texts.tsx +++ b/src/resources/texts.tsx @@ -118,7 +118,7 @@ export const TEXTS = { dashboard_tooltip_content: 'על כל קו בישראל מוצמד GPS שמדווח את מיקום האוטובוס כל כמה רגעים.\n' + 'אז מה היא נסיעה שלא בוצעה? זאת נסיעה שתוכננה, אבל לא דווח שיצאה בנתוני הGPS. תוכלו לראות אותה באפליקציה למשל, אבל כשתחכו בתחנה, היא לעולם לא תגיע', - worst_lines_page_title: 'הקווים הגרועים ביותר של 5 המפעילות הגדולות', + worst_lines_page_title: 'הקווים הגרועים ביותר', rides_planned: 'נסיעות שתוכננו', rides_actual: 'נסיעות שיצאו', dashboard_page_graph_title_day: 'אחוזי יציאה מסך הנסיעות לפי יום',