Skip to content

Commit

Permalink
Modified language for services (#603)
Browse files Browse the repository at this point in the history
- Title case for services (e.g. Blue/Red/Green Line)
- Title case for branches (e.g. B Branch, C Branch)
- Changed "Mattapan Line" to "Mattapan Trolley"

Co-authored-by: Dean Shi <dshi@mbta.com>
  • Loading branch information
deanshi and deanshi authored Feb 4, 2025
1 parent 755e946 commit 4a72298
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const SelectStationsPage = ({
<div className="title">Station Groups</div>
<div className="col-content">
<div className="route-groups ">
<div className="h5">Green line</div>
<div className="h5">Green Line</div>
<StationGroupCheckbox
title="Central Subway"
label="North Station-Kenmore"
Expand Down Expand Up @@ -165,7 +165,7 @@ const SelectStationsPage = ({
<hr />
</div>
<div className="route-groups">
<div className="h5">Red line</div>
<div className="h5">Red Line</div>
<StationGroupCheckbox
title="Braintree Branch"
label="JFK-Braintree"
Expand Down Expand Up @@ -199,7 +199,7 @@ const SelectStationsPage = ({
<hr />
</div>
<div className="route-groups">
<div className="h5">Orange line</div>
<div className="h5">Orange Line</div>
<StationGroupCheckbox
title="North"
label="Oak Grove-North Station"
Expand All @@ -226,7 +226,7 @@ const SelectStationsPage = ({
<div className="route-col route-col--green col">
<Form.Check
className="title"
label="Green line"
label="Green Line"
type="checkbox"
id="green-line"
onChange={(evt) => {
Expand All @@ -249,7 +249,7 @@ const SelectStationsPage = ({
return (
<RouteColumn
key={branch}
label={`${branch} branch`}
label={`${branch} Branch`}
routeIds={[route]}
places={placesByRoute[route]}
value={value}
Expand All @@ -267,7 +267,7 @@ const SelectStationsPage = ({
className={`route-col ${ROUTE_TO_CLASS_NAMES_MAP[route]} col`}
>
<RouteColumn
label={`${route} line`}
label={`${route} ${route === "Mattapan" ? "Trolley" : "Line"}`}
orderingRouteId={route}
routeIds={routeNameToRouteIds[route]}
places={placesByRoute[route]}
Expand Down

0 comments on commit 4a72298

Please sign in to comment.