Merged in fix/en-dash (pull request #2164)
fix(SW-2760): revert removal of en-dash * fix(SW-2760): revert removal of en-dash Approved-by: Michael Zetterberg
This commit is contained in:
@@ -60,12 +60,12 @@ export default async function Facility({ data }: FacilityProps) {
|
||||
<p>
|
||||
{ordinaryOpeningTimes.alwaysOpen
|
||||
? intl.formatMessage({
|
||||
defaultMessage: "Monday-Friday: Always open",
|
||||
defaultMessage: "Monday–Friday: Always open",
|
||||
})
|
||||
: intl.formatMessage(
|
||||
{
|
||||
defaultMessage:
|
||||
"Monday-Friday: {openingTime}-{closingTime}",
|
||||
"Monday–Friday: {openingTime}–{closingTime}",
|
||||
},
|
||||
{
|
||||
openingTime: ordinaryOpeningTimes.openingTime,
|
||||
@@ -76,12 +76,12 @@ export default async function Facility({ data }: FacilityProps) {
|
||||
<p>
|
||||
{weekendOpeningTimes.alwaysOpen
|
||||
? intl.formatMessage({
|
||||
defaultMessage: "Saturday-Sunday: Always open",
|
||||
defaultMessage: "Saturday–Sunday: Always open",
|
||||
})
|
||||
: intl.formatMessage(
|
||||
{
|
||||
defaultMessage:
|
||||
"Saturday-Sunday: {openingTime}-{closingTime}",
|
||||
"Saturday–Sunday: {openingTime}–{closingTime}",
|
||||
},
|
||||
{
|
||||
openingTime: weekendOpeningTimes.openingTime,
|
||||
|
||||
Reference in New Issue
Block a user