Skip to content

Commit

Permalink
fix: some route infobox bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
tekoiv committed Sep 18, 2023
1 parent 26c52f3 commit 5433f29
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/component/TransitLeg.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class TransitLeg extends React.Component {
<div className="info-notification">
<h3 className="info-header">{notification.header[lang]}</h3>
<div className="info-content">
{notification.content[lang]}
{notification.content[lang].join(' ')}
</div>
</div>
<Icon
Expand Down
6 changes: 4 additions & 2 deletions app/component/route.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,14 @@ $margin-left-right: 21.3px;
}
.button-block {
display: flex;
max-height: 24px;
margin-left: 24px;
label {
color: $primary-color;
font-weight: bold;
margin-right: 10px;
}
.route-notification-collapse-button {
max-height: 25px;
.route-notification-collapse-icon {
width: 10px;
height: 10px;
Expand Down Expand Up @@ -119,7 +120,8 @@ $margin-left-right: 21.3px;
}
}
.route-notification.minimized {
max-height: 25px;
min-height: 25px;
padding-bottom: 0;
}

.route-page-content {
Expand Down
33 changes: 17 additions & 16 deletions app/configurations/config.hsl.js
Original file line number Diff line number Diff line change
Expand Up @@ -554,15 +554,15 @@ export default {
},
content: {
fi: [
'Mm. lastenvaunujen osalta noudatetaan liikennöitsijän sääntöjä. ',
'Mm. lastenvaunujen osalta noudatetaan liikennöitsijän sääntöjä.',
'HSL-alueen ulkopuolelle käytetään liikennöitsijän lippuja.',
],
en: [
"The bus operators' regulations are applied e.g. to the transport of prams. ",
"The bus operators' regulations are applied e.g. to the transport of prams.",
"The bus operators' tickets are used outside the HSL area.",
],
sv: [
'Trafikföretagets regler tillämpas t.ex. på barnvagnar. ',
'Trafikföretagets regler tillämpas t.ex. på barnvagnar.',
'Trafikföretagets egna biljetter gäller utanför HRT-området.',
],
},
Expand All @@ -587,16 +587,16 @@ export default {
},
content: {
fi: [
'Pääset kyytiin myös keskiovista näyttämättä lippua kuljettajalle. ',
'Linja käyttää valikoituja pysäkkejä eli ei pysähdy kaikilla pysäkeillä. ',
'Pääset kyytiin myös keskiovista näyttämättä lippua kuljettajalle.',
'Linja käyttää valikoituja pysäkkejä eli ei pysähdy kaikilla pysäkeillä.',
],
en: [
'Passengers can board the buses also through the middle doors. ',
'The bus will not serve all stops along the route. ',
'Passengers can board the buses also through the middle doors.',
'The bus will not serve all stops along the route.',
],
sv: [
'Man kan stiga på genom mittdörren och behöver inte visa upp sin biljett för föraren. ',
'För att snabba upp trafiken stannar bussarna inte vid alla hållplatser. ',
'Man kan stiga på genom mittdörren och behöver inte visa upp sin biljett för föraren.',
'För att snabba upp trafiken stannar bussarna inte vid alla hållplatser.',
],
},
closeButtonLabel: {
Expand All @@ -615,21 +615,21 @@ export default {
id: 'localRouteNotification',
header: {
fi: 'Lähibussi',
en: 'Neighborhood route',
en: 'Neighbourhood route',
sv: 'Närbuss',
},
content: {
fi: [
'Lähibussit on suunniteltu erityisesti ikäihmisille ja liikuntarajoitteisille. ',
'Kyytiin voi nousta ja kyydistä poistua pysäkkien lisäksi myös muualla, liikennesääntöjen puitteissa. ',
'Lähibussit on suunniteltu erityisesti ikäihmisille ja liikuntarajoitteisille.',
'Kyytiin voi nousta ja kyydistä poistua pysäkkien lisäksi myös muualla, liikennesääntöjen puitteissa.',
],
en: [
'The routes and timetables have been planned to serve, in particular, the needs of senior citizens. ',
'In addition to regular bus stops, the buses can stop at other locations, as long as it is safe to do so. ',
'The routes and timetables have been planned to serve, in particular, the needs of senior citizens.',
'In addition to regular bus stops, the buses can stop at other locations, as long as it is safe to do so.',
],
sv: [
'Närbusslinjerna är planerade i synnerhet med tanke på seniorer och rörelsehindrade. ',
'Närbussarna kan inom ramen för trafikreglerna också stanna annanstans än vid markerade hållplatser. ',
'Närbusslinjerna är planerade i synnerhet med tanke på seniorer och rörelsehindrade.',
'Närbussarna kan inom ramen för trafikreglerna också stanna annanstans än vid markerade hållplatser.',
],
},
closeButtonLabel: {
Expand All @@ -645,6 +645,7 @@ export default {
},
{
showForRoute: route => route.type === 902,
id: 'speedtramNotification',
header: {
fi: 'Mitä pikaratikka tarkoittaa?',
en: 'What is light rail?',
Expand Down

0 comments on commit 5433f29

Please sign in to comment.