Merged in feat/lokalise-rebuild (pull request #2993)
Feat/lokalise rebuild * chore(lokalise): update translation ids * chore(lokalise): easier to switch between projects * chore(lokalise): update translation ids * . * . * . * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * chore(lokalise): new translations * merge * switch to errors for missing id's * merge * sync translations Approved-by: Linus Flood
This commit is contained in:
@@ -78,6 +78,7 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "meetingRoomCard.maxSeatings",
|
||||
defaultMessage: "max {seatings} pers",
|
||||
},
|
||||
{ seatings: maxSeatings }
|
||||
@@ -102,6 +103,7 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
name={translateSeatingType(seating.type, intl)}
|
||||
value={intl.formatMessage(
|
||||
{
|
||||
id: "meetingRoomCard.numberOfPeople",
|
||||
defaultMessage: "{number} people",
|
||||
},
|
||||
{ number: seating.capacity }
|
||||
@@ -113,10 +115,12 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
<tbody className={styles.rowItem}>
|
||||
<TableRow
|
||||
name={intl.formatMessage({
|
||||
id: "meetingRoomCard.locationInHotel",
|
||||
defaultMessage: "Location in hotel",
|
||||
})}
|
||||
value={intl.formatMessage(
|
||||
{
|
||||
id: "meetingRoomCard.floorNumber",
|
||||
defaultMessage: "Floor {floorNumber}",
|
||||
},
|
||||
{
|
||||
@@ -126,6 +130,7 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
/>
|
||||
<TableRow
|
||||
name={intl.formatMessage({
|
||||
id: "meetingRoomCard.lighting",
|
||||
defaultMessage: "Lighting",
|
||||
})}
|
||||
value={translateRoomLighting(room.lighting, intl)}
|
||||
@@ -133,6 +138,7 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
{room.doorHeight && room.doorWidth ? (
|
||||
<TableRow
|
||||
name={intl.formatMessage({
|
||||
id: "meetingRoomCard.accessSize",
|
||||
defaultMessage: "Access size",
|
||||
})}
|
||||
value={`${room.doorHeight} x ${room.doorWidth} m`}
|
||||
@@ -141,6 +147,7 @@ export default function MeetingRoomCard({ room }: MeetingRoomCardProps) {
|
||||
{room.length && room.width && room.height ? (
|
||||
<TableRow
|
||||
name={intl.formatMessage({
|
||||
id: "meetingRoomCard.dimensions",
|
||||
defaultMessage: "Dimensions",
|
||||
})}
|
||||
value={`${room.length} x ${room.width} x ${room.height} m`}
|
||||
|
||||
Reference in New Issue
Block a user