Skip to content

Commit bab286f

Browse files
committed
Terminology changed to "idea"
1 parent 95046c4 commit bab286f

2 files changed

Lines changed: 8 additions & 9 deletions

File tree

locale/en/client.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@
150150
"mysettings.page.subtitle": "Manage your profile settings",
151151
"mysettings.page.title": "Settings",
152152
"newpost.modal.addimage": "Add Images",
153-
"newpost.modal.description.placeholder": "Tell us about your idea. Explain it fully, don't hold back, the more information the better.",
154-
"newpost.modal.title": "Share your feedback...",
155-
"newpost.modal.title.label": "Give your suggestion a title",
153+
"newpost.modal.description.placeholder": "Tell us about it. Explain it fully, don't hold back, the more information the better.",
154+
"newpost.modal.title": "Share your idea...",
155+
"newpost.modal.title.label": "Give your idea a title",
156156
"newpost.modal.title.placeholder": "Something short and snappy, sum it up in a few words",
157157
"page.backhome": "Take me back to <0>{0}</0> home page.",
158158
"page.notinvited.text": "We could not find an account for your email address.",

public/pages/Home/components/ShareFeedback.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,20 +200,19 @@ export const ShareFeedback: React.FC<ShareFeedbackProps> = (props) => {
200200
<Modal.Content>
201201
<div className="c-share-feedback__content mb-4">
202202
<h1 className="text-large pb-6">
203-
<Trans id="newpost.modal.title">Share your feedback...</Trans>
203+
<Trans id="newpost.modal.title">Share your idea...</Trans>
204204
</h1>
205205
<div className="c-share-feedback-form">
206206
<Form error={error}>
207207
<TextArea
208-
label={props.placeholder}
209208
field="description"
210209
onChange={handleDescriptionChange}
211210
value={description}
212211
minRows={5}
213212
inputRef={descriptionRef}
214213
placeholder={i18n._({
215214
id: "newpost.modal.description.placeholder",
216-
message: "Tell us about your idea. Explain it fully, don't hold back, the more information the better.",
215+
message: "Tell us about it. Explain it fully, don't hold back, the more information the better.",
217216
})}
218217
/>
219218
<SimilarPosts title={title} tags={props.tags} />
@@ -235,7 +234,7 @@ export const ShareFeedback: React.FC<ShareFeedbackProps> = (props) => {
235234
field="title"
236235
inputRef={titleRef}
237236
maxLength={255}
238-
label={i18n._({ id: "newpost.modal.title.label", message: "Give your suggestion a title" })}
237+
label={i18n._({ id: "newpost.modal.title.label", message: "Give your idea a title" })}
239238
value={title}
240239
onChange={handleTitleChange}
241240
placeholder={i18n._({ id: "newpost.modal.title.placeholder", message: "Something short and snappy, sum it up in a few words" })}
@@ -258,7 +257,7 @@ export const ShareFeedback: React.FC<ShareFeedbackProps> = (props) => {
258257
<div className="c-share-feedback__content">
259258
<div className="c-share-feedback-signin">
260259
<h2 className="text-title text-center mb-4">
261-
<Trans id="modal.signin.header">Submit your feedback</Trans>
260+
<Trans id="newpost.modal.submit">Submit your idea</Trans>
262261
</h2>
263262
<SignInControl
264263
onSubmit={onSubmitFeedback}
@@ -276,7 +275,7 @@ export const ShareFeedback: React.FC<ShareFeedbackProps> = (props) => {
276275
<div className="c-share-feedback-signin">
277276
<div className="flex justify-center">
278277
<Button variant="primary" onClick={finaliseFeedback}>
279-
<Trans id="modal.signin.header">Submit your feedback</Trans>
278+
<Trans id="newpost.modal.submit">Submit your idea</Trans>
280279
</Button>
281280
</div>
282281
</div>

0 commit comments

Comments
 (0)