Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1748] Fix incorrect copy #2026

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ changes.
- Fixed terms and conditions link [Issue 1968](https://github.com/IntersectMBO/govtool/issues/1968)
- Hide Delegate button in DRep list and details if user has already delegated to this DRep [Issue 1982](https://github.com/IntersectMBO/govtool/issues/1982)
- Fix condition for disabling voting on different GA types [Issue 2008](https://github.com/IntersectMBO/govtool/issues/2008)
- Fix incorrect copy (ex. github) to (e.g. github) [Issue 1748](https://github.com/IntersectMBO/govtool/issues/1748)

### Changed

Expand Down
6 changes: 3 additions & 3 deletions govtool/frontend/src/i18n/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const en = {
"Download your file, save it to your chosen location, and enter the URL of that location in step 3",
storingInformationStep1Label: "Download this file",
storingInformationStep2Label:
"Save this file in a location that provides a public URL (ex. github)",
"Save this file in a location that provides a public URL (e.g. github)",
storingInformationStep2Link: "Read full guide",
storingInformationStep3Label: "Paste the URL here",
storingInformationTitle: "Information Storage Steps",
Expand Down Expand Up @@ -660,7 +660,7 @@ export const en = {
"Download your file, save it to your chosen location, and enter the URL of that location in step 3",
storingInformationStep1Label: "Download this file",
storingInformationStep2Label:
"Save this file in a location that provides a public URL (ex. github)",
"Save this file in a location that provides a public URL (e.g. github)",
storingInformationStep2Link: "Read full guide",
storingInformationStep3Label: "Paste the URL here",
storingInformationTitle: "Information Storage Steps",
Expand Down Expand Up @@ -699,7 +699,7 @@ export const en = {
"Download your file, save it to your chosen location, and enter the URL of that location in step 3",
storingInformationStep1Label: "Download this file",
storingInformationStep2Label:
"Save this file in a location that provides a public URL (ex. github)",
"Save this file in a location that provides a public URL (e.g. github)",
storingInformationStep2Link: "Read full guide",
storingInformationStep3Label: "Paste the URL here",
storingInformationTitle: "Information Storage Steps",
Expand Down
4 changes: 2 additions & 2 deletions govtool/frontend/src/stories/Step.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const readFullGuideMock = jest.fn();
export const WithIconButton: StoryObj<typeof Step> = {
args: {
label:
"Save this file in a location that provides a public URL (ex. github)",
"Save this file in a location that provides a public URL (e.g. github)",
stepNumber: 2,
component: (
<Button
Expand Down Expand Up @@ -82,7 +82,7 @@ export const WithIconButton: StoryObj<typeof Step> = {
export const WithInput: StoryObj<typeof Step> = {
args: {
label:
"Save this file in a location that provides a public URL (ex. github)",
"Save this file in a location that provides a public URL (e.g. github)",
stepNumber: 2,
component: (
<Field.Input dataTestId="url-input" name="storingURL" placeholder="URL" />
Expand Down
Loading