Skip to content

Commit

Permalink
Match text to new context (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haswell-s authored Nov 20, 2023
1 parent d3daf35 commit af65c07
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/locale/he.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "אחוזי יציאה מסך הנסיעות לפי זמן",
Expand Down
9 changes: 0 additions & 9 deletions src/pages/RealtimeMapPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down
2 changes: 1 addition & 1 deletion src/resources/texts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: 'אחוזי יציאה מסך הנסיעות לפי יום',
Expand Down

0 comments on commit af65c07

Please sign in to comment.