You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This update applies the acronym-expansion change in core (shared translations) instead of public-only overrides, per review feedback.
Updated shared English locale strings in shared-helpers/src/locales/general.json:
listings.singleRoomOccupancy → Single Room Occupancy
listings.unitTypes.SRO → Single Room Occupancy
listings.unitTypes.oneBdrm → 1 Bedroom
listings.unitTypes.twoBdrm → 2 Bedrooms
listings.unitTypes.threeBdrm → 3 Bedrooms
listings.unitTypes.fourBdrm → 4 Bedrooms
listings.unitTypes.fiveBdrm → 5 Bedrooms
Reverted the public override additions in sites/public/page_content/locale_overrides/general.json.
Removed the added test file sites/public/__tests__/lib/translations.test.ts (redundant coverage).
Updated existing assertions in sites/public/__tests__/components/browse/FilterDrawer.test.tsx to match Single Room Occupancy.
How Can This Be Tested/Reviewed?
Confirm the updated strings in shared-helpers/src/locales/general.json for listings.singleRoomOccupancy and listings.unitTypes.*.
Confirm sites/public/page_content/locale_overrides/general.json no longer contains the added unit-type overrides from the earlier revision.
Review sites/public/__tests__/components/browse/FilterDrawer.test.tsx for updated expected label text.
Run targeted tests:
cd /home/runner/work/bloom/bloom/sites/public && yarn test:unit --watchAll=false __tests__/components/browse/FilterDrawer.test.tsx __tests__/components/listing/ListingView.test.tsx
Run lint:
cd /home/runner/work/bloom/bloom && yarn lint
Manual verification: run public app and verify unit-type copy renders expanded wording (screenshot captured during verification).
Author Checklist:
Added QA notes to the issue with applicable URLs
Reviewed in a desktop view
Reviewed in a mobile view
Reviewed considering accessibility
Added tests covering the changes
Made corresponding changes to the documentation
Ran yarn generate:client and/or created a migration when required
Review Process:
Read and understand the issue
Ensure the author has added QA notes
Review the code itself from a style point of view
Pull the changes down locally and test that the acceptance criteria is met
Either (1) explicitly ask a clarifying question, (2) request changes, or (3) approve the PR, even if there are very small remaining changes, if you don't need to re-review after the updates
CopilotAI
changed the title
[WIP] Spell out SRO and unit type abbreviations on public site
fix(public): spell out SRO/BR unit type acronyms in public copy
May 15, 2026
The reason will be displayed to describe this comment to others. Learn more.
We're able to do this in core, which means to make the changes in the general file in shared-helpers. We can also remove the new test - it's not testing anything we don't have covered elsewhere.
We're able to do this in core, which means to make the changes in the general file in shared-helpers. We can also remove the new test - it's not testing anything we don't have covered elsewhere.
Updated in commit 9f94175: moved the wording changes into shared-helpers/src/locales/general.json, reverted the public override file, removed the added sites/public/__tests__/lib/translations.test.ts, and updated existing FilterDrawer expectations accordingly. Screenshot from manual verification: /tmp/public-listings-core-acronyms.png.
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
Configure Actions setup steps to set up my environment, which run before the firewall is enabled
Add the appropriate URLs or hosts to the custom allowlist in this repository's Copilot coding agent settings (admins only)
CopilotAI
changed the title
fix(public): spell out SRO/BR unit type acronyms in public copy
fix(shared-helpers): spell out SRO/BR unit type acronyms in core locale copy
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses #(insert-number-here)
Description
This update applies the acronym-expansion change in core (shared translations) instead of public-only overrides, per review feedback.
shared-helpers/src/locales/general.json:listings.singleRoomOccupancy→Single Room Occupancylistings.unitTypes.SRO→Single Room Occupancylistings.unitTypes.oneBdrm→1 Bedroomlistings.unitTypes.twoBdrm→2 Bedroomslistings.unitTypes.threeBdrm→3 Bedroomslistings.unitTypes.fourBdrm→4 Bedroomslistings.unitTypes.fiveBdrm→5 Bedroomssites/public/page_content/locale_overrides/general.json.sites/public/__tests__/lib/translations.test.ts(redundant coverage).sites/public/__tests__/components/browse/FilterDrawer.test.tsxto matchSingle Room Occupancy.How Can This Be Tested/Reviewed?
shared-helpers/src/locales/general.jsonforlistings.singleRoomOccupancyandlistings.unitTypes.*.sites/public/page_content/locale_overrides/general.jsonno longer contains the added unit-type overrides from the earlier revision.sites/public/__tests__/components/browse/FilterDrawer.test.tsxfor updated expected label text.cd /home/runner/work/bloom/bloom/sites/public && yarn test:unit --watchAll=false __tests__/components/browse/FilterDrawer.test.tsx __tests__/components/listing/ListingView.test.tsxcd /home/runner/work/bloom/bloom && yarn lintAuthor Checklist:
yarn generate:clientand/or created a migration when requiredReview Process: