11import { Row , Col } from "../bootstrap"
22import Image from "react-bootstrap/Image"
33import styled from "styled-components"
4+ import { useTranslation } from "next-i18next"
45
56const StyledImage = styled ( Image ) `
67 width: 12.5rem;
@@ -27,9 +28,9 @@ const WritingContent = () => (
2728 < Row className = "align-items-center" >
2829 < Col xs = { 12 } md = { 8 } lg = { { span : 7 , offset : 1 } } >
2930 < p >
30- You can submit your thoughts on a bill to the Committee hearing it
31- before the date of their public hearing. This website, the MAPLE
32- platform, focuses on this mechanism.
31+ { useTranslation ( "learnComponents" ) . t (
32+ "communicating.testifyInWriting.content"
33+ ) }
3334 </ p >
3435 </ Col >
3536 < Col md = { 4 } lg = { 3 } >
@@ -58,8 +59,9 @@ const OralContent = () => (
5859 lg = { { span : 7 , order : 1 } }
5960 >
6061 < p >
61- You can attend a public hearing for a bill of interest to you and sign
62- up for a slot to speak before the Committee.
62+ { useTranslation ( "learnComponents" ) . t (
63+ "communicating.testifyOrally.content"
64+ ) }
6365 </ p >
6466 </ Col >
6567 </ Row >
@@ -69,12 +71,9 @@ const WriteOrCallContent = () => (
6971 < Row className = "align-items-center" >
7072 < Col xs = { 12 } md = { 8 } lg = { { span : 7 , offset : 1 } } >
7173 < p >
72- You can contact your legislators any time by looking up their contact
73- information on the MA Legislature website. Your voice will probably
74- carry the most weight with the House and Senate representatives of your
75- own district, but you are free to contact Committee Chairs or any other
76- member of the legislature with your opinions. You could request a
77- meeting in person.
74+ { useTranslation ( "learnComponents" ) . t (
75+ "communicating.writeOrCall.content"
76+ ) }
7877 </ p >
7978 </ Col >
8079 < Col md = { 4 } lg = { 3 } >
0 commit comments