@bloom-housing/ui-components 2.0.0-pre-tailwind

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (223) hide show
  1. package/.jest/setup-tests.js +24 -0
  2. package/CHANGELOG.md +20 -0
  3. package/README.md +195 -0
  4. package/index.ts +148 -0
  5. package/jest.config.js +41 -0
  6. package/package.json +98 -0
  7. package/public/images/alameda-logo-white.svg +1 -0
  8. package/public/images/arrow-down.png +0 -0
  9. package/public/images/arrow-down.svg +1 -0
  10. package/public/images/check.png +0 -0
  11. package/public/images/check.svg +11 -0
  12. package/public/images/eho-logo-white.svg +1 -0
  13. package/public/images/eho-logo.svg +1 -0
  14. package/public/images/logo_glyph.svg +11 -0
  15. package/src/actions/Button.scss +157 -0
  16. package/src/actions/Button.tsx +80 -0
  17. package/src/actions/ExpandableContent.tsx +29 -0
  18. package/src/actions/ExpandableText.scss +18 -0
  19. package/src/actions/ExpandableText.tsx +52 -0
  20. package/src/actions/LinkButton.tsx +30 -0
  21. package/src/actions/LocalizedLink.tsx +11 -0
  22. package/src/authentication/AuthContext.ts +327 -0
  23. package/src/authentication/RequireLogin.tsx +62 -0
  24. package/src/authentication/index.ts +5 -0
  25. package/src/authentication/timeout.tsx +127 -0
  26. package/src/authentication/token.ts +17 -0
  27. package/src/authentication/useRequireLoggedInUser.ts +19 -0
  28. package/src/blocks/ActionBlock.scss +108 -0
  29. package/src/blocks/ActionBlock.tsx +51 -0
  30. package/src/blocks/AppStatusItem.scss +140 -0
  31. package/src/blocks/AppStatusItem.tsx +75 -0
  32. package/src/blocks/DashBlock.tsx +42 -0
  33. package/src/blocks/DashBlocks.scss +56 -0
  34. package/src/blocks/DashBlocks.tsx +7 -0
  35. package/src/blocks/FormCard.scss +201 -0
  36. package/src/blocks/FormCard.tsx +29 -0
  37. package/src/blocks/HousingCounselor.tsx +51 -0
  38. package/src/blocks/ImageCard.scss +91 -0
  39. package/src/blocks/ImageCard.tsx +77 -0
  40. package/src/blocks/InfoCard.scss +42 -0
  41. package/src/blocks/InfoCard.tsx +44 -0
  42. package/src/blocks/StatusBar.scss +30 -0
  43. package/src/blocks/StatusBar.tsx +31 -0
  44. package/src/blocks/ViewItem.scss +59 -0
  45. package/src/blocks/ViewItem.tsx +32 -0
  46. package/src/config/ConfigContext.tsx +36 -0
  47. package/src/config/NavigationContext.tsx +54 -0
  48. package/src/config/index.ts +2 -0
  49. package/src/footers/ExygyFooter.tsx +12 -0
  50. package/src/footers/SiteFooter.scss +28 -0
  51. package/src/footers/SiteFooter.tsx +10 -0
  52. package/src/forms/CloudinaryUpload.ts +50 -0
  53. package/src/forms/DOBField.tsx +132 -0
  54. package/src/forms/DateField.tsx +120 -0
  55. package/src/forms/Dropzone.scss +17 -0
  56. package/src/forms/Dropzone.tsx +67 -0
  57. package/src/forms/Field.tsx +115 -0
  58. package/src/forms/FieldGroup.tsx +82 -0
  59. package/src/forms/Form.tsx +22 -0
  60. package/src/forms/HouseholdMemberForm.tsx +41 -0
  61. package/src/forms/HouseholdSizeField.tsx +74 -0
  62. package/src/forms/PhoneField.tsx +69 -0
  63. package/src/forms/PhoneMask.tsx +24 -0
  64. package/src/forms/Select.tsx +80 -0
  65. package/src/forms/Textarea.scss +40 -0
  66. package/src/forms/Textarea.tsx +64 -0
  67. package/src/forms/TimeField.tsx +176 -0
  68. package/src/global/AppearanceTypes.ts +46 -0
  69. package/src/global/ApplicationStatusType.ts +6 -0
  70. package/src/global/accordion.scss +4 -0
  71. package/src/global/blocks.scss +137 -0
  72. package/src/global/custom_counter.scss +50 -0
  73. package/src/global/forms.scss +362 -0
  74. package/src/global/headers.scss +89 -0
  75. package/src/global/homepage.scss +8 -0
  76. package/src/global/index.scss +72 -0
  77. package/src/global/lists.scss +21 -0
  78. package/src/global/markdown.scss +33 -0
  79. package/src/global/mixins.scss +175 -0
  80. package/src/global/navbar.scss +280 -0
  81. package/src/global/print.scss +59 -0
  82. package/src/global/tables.scss +197 -0
  83. package/src/global/text.scss +141 -0
  84. package/src/global/vendor/AgPagination.tsx +133 -0
  85. package/src/global/vendor/_setup_bulma.scss +31 -0
  86. package/src/global/vendor/ag_grid.scss +140 -0
  87. package/src/headers/Hero.scss +56 -0
  88. package/src/headers/Hero.tsx +76 -0
  89. package/src/headers/PageHeader.scss +31 -0
  90. package/src/headers/PageHeader.tsx +39 -0
  91. package/src/headers/SiteHeader.tsx +136 -0
  92. package/src/helpers/address.tsx +46 -0
  93. package/src/helpers/blankApplication.ts +108 -0
  94. package/src/helpers/capitalize.tsx +7 -0
  95. package/src/helpers/dateToString.ts +11 -0
  96. package/src/helpers/debounce.ts +12 -0
  97. package/src/helpers/formOptions.tsx +229 -0
  98. package/src/helpers/formatYesNoLabel.ts +9 -0
  99. package/src/helpers/getTranslationWithArguments.ts +14 -0
  100. package/src/helpers/links.ts +7 -0
  101. package/src/helpers/localeRoute.tsx +13 -0
  102. package/src/helpers/mergeDeep.ts +12 -0
  103. package/src/helpers/nextjs.ts +7 -0
  104. package/src/helpers/numberOrdinal.ts +17 -0
  105. package/src/helpers/occupancyFormatting.tsx +46 -0
  106. package/src/helpers/pdfs.ts +19 -0
  107. package/src/helpers/photos.ts +19 -0
  108. package/src/helpers/preferences.tsx +426 -0
  109. package/src/helpers/resolveObject.ts +5 -0
  110. package/src/helpers/state.tsx +7 -0
  111. package/src/helpers/tableSummaries.tsx +80 -0
  112. package/src/helpers/translator.tsx +37 -0
  113. package/src/helpers/useKeyPress.ts +17 -0
  114. package/src/helpers/useMutate.ts +40 -0
  115. package/src/helpers/useOutsideClick.ts +25 -0
  116. package/src/helpers/validators.ts +3 -0
  117. package/src/icons/HeaderBadge.scss +29 -0
  118. package/src/icons/HeaderBadge.tsx +38 -0
  119. package/src/icons/Icon.scss +76 -0
  120. package/src/icons/Icon.tsx +145 -0
  121. package/src/icons/Icons.tsx +556 -0
  122. package/src/lists/PreferencesList.scss +72 -0
  123. package/src/lists/PreferencesList.tsx +60 -0
  124. package/src/locales/es.json +745 -0
  125. package/src/locales/general.json +1307 -0
  126. package/src/locales/general_OLD.json +868 -0
  127. package/src/locales/vi.json +745 -0
  128. package/src/locales/zh.json +745 -0
  129. package/src/navigation/Breadcrumbs.scss +25 -0
  130. package/src/navigation/Breadcrumbs.tsx +27 -0
  131. package/src/navigation/FooterNav.scss +47 -0
  132. package/src/navigation/FooterNav.tsx +19 -0
  133. package/src/navigation/LanguageNav.scss +32 -0
  134. package/src/navigation/LanguageNav.tsx +53 -0
  135. package/src/navigation/ProgressNav.scss +102 -0
  136. package/src/navigation/ProgressNav.tsx +50 -0
  137. package/src/navigation/TabNav.scss +38 -0
  138. package/src/navigation/TabNav.tsx +69 -0
  139. package/src/navigation/Tabs.scss +65 -0
  140. package/src/navigation/Tabs.tsx +93 -0
  141. package/src/navigation/UserNav.tsx +37 -0
  142. package/src/notifications/AlertBox.scss +78 -0
  143. package/src/notifications/AlertBox.tsx +79 -0
  144. package/src/notifications/AlertNotice.scss +58 -0
  145. package/src/notifications/AlertNotice.tsx +37 -0
  146. package/src/notifications/ApplicationStatus.scss +10 -0
  147. package/src/notifications/ApplicationStatus.tsx +64 -0
  148. package/src/notifications/ErrorMessage.tsx +15 -0
  149. package/src/notifications/SiteAlert.tsx +54 -0
  150. package/src/notifications/StatusAside.scss +11 -0
  151. package/src/notifications/StatusAside.tsx +25 -0
  152. package/src/notifications/StatusMessage.scss +25 -0
  153. package/src/notifications/StatusMessage.tsx +59 -0
  154. package/src/notifications/alertTypes.ts +7 -0
  155. package/src/notifications/index.ts +4 -0
  156. package/src/overlays/Drawer.scss +105 -0
  157. package/src/overlays/Drawer.tsx +51 -0
  158. package/src/overlays/LoadingOverlay.scss +25 -0
  159. package/src/overlays/LoadingOverlay.tsx +29 -0
  160. package/src/overlays/Modal.scss +55 -0
  161. package/src/overlays/Modal.tsx +61 -0
  162. package/src/overlays/Overlay.scss +50 -0
  163. package/src/overlays/Overlay.tsx +100 -0
  164. package/src/page_components/listing/AdditionalFees.tsx +56 -0
  165. package/src/page_components/listing/ListingCard.scss +47 -0
  166. package/src/page_components/listing/ListingCard.tsx +34 -0
  167. package/src/page_components/listing/ListingDetailHeader.tsx +25 -0
  168. package/src/page_components/listing/ListingDetails.tsx +29 -0
  169. package/src/page_components/listing/ListingMap.scss +36 -0
  170. package/src/page_components/listing/ListingMap.tsx +138 -0
  171. package/src/page_components/listing/ListingsGroup.scss +65 -0
  172. package/src/page_components/listing/ListingsGroup.tsx +49 -0
  173. package/src/page_components/listing/UnitTables.tsx +111 -0
  174. package/src/page_components/listing/listing_sidebar/ApplicationSection.tsx +49 -0
  175. package/src/page_components/listing/listing_sidebar/Apply.tsx +225 -0
  176. package/src/page_components/listing/listing_sidebar/LeasingAgent.tsx +77 -0
  177. package/src/page_components/listing/listing_sidebar/ListingUpdated.tsx +20 -0
  178. package/src/page_components/listing/listing_sidebar/ReferralApplication.tsx +28 -0
  179. package/src/page_components/listing/listing_sidebar/SidebarAddress.tsx +56 -0
  180. package/src/page_components/listing/listing_sidebar/Waitlist.tsx +94 -0
  181. package/src/page_components/listing/listing_sidebar/WhatToExpect.tsx +22 -0
  182. package/src/page_components/listing/listing_sidebar/events/DownloadLotteryResults.tsx +34 -0
  183. package/src/page_components/listing/listing_sidebar/events/EventDateSection.tsx +24 -0
  184. package/src/page_components/listing/listing_sidebar/events/LotteryResultsEvent.tsx +26 -0
  185. package/src/page_components/listing/listing_sidebar/events/OpenHouseEvent.tsx +27 -0
  186. package/src/page_components/listing/listing_sidebar/events/PublicLotteryEvent.tsx +22 -0
  187. package/src/prototypes/AppCard.scss +64 -0
  188. package/src/prototypes/Back.scss +19 -0
  189. package/src/prototypes/ButtonGroup.scss +6 -0
  190. package/src/prototypes/ButtonPager.scss +22 -0
  191. package/src/prototypes/FieldSection.scss +35 -0
  192. package/src/prototypes/FieldSection.tsx +31 -0
  193. package/src/prototypes/GridItem.tsx +15 -0
  194. package/src/prototypes/SideNav.scss +32 -0
  195. package/src/prototypes/SideNav.tsx +14 -0
  196. package/src/prototypes/SummaryCard.scss +34 -0
  197. package/src/sections/ContentSection.scss +15 -0
  198. package/src/sections/ContentSection.tsx +25 -0
  199. package/src/sections/FooterSection.scss +6 -0
  200. package/src/sections/FooterSection.tsx +16 -0
  201. package/src/sections/GridSection.scss +72 -0
  202. package/src/sections/GridSection.tsx +82 -0
  203. package/src/sections/InfoCardGrid.scss +45 -0
  204. package/src/sections/InfoCardGrid.tsx +20 -0
  205. package/src/sections/ListSection.scss +7 -0
  206. package/src/sections/ListSection.tsx +23 -0
  207. package/src/sections/MarkdownSection.scss +13 -0
  208. package/src/sections/MarkdownSection.tsx +21 -0
  209. package/src/sections/ResponsiveContentList.tsx +67 -0
  210. package/src/sections/ResponsiveWrappers.tsx +23 -0
  211. package/src/tables/GroupedTable.tsx +86 -0
  212. package/src/tables/MinimalTable.tsx +32 -0
  213. package/src/tables/ResponsiveTable.tsx +24 -0
  214. package/src/tables/StandardTable.tsx +229 -0
  215. package/src/text/Description.scss +52 -0
  216. package/src/text/Description.tsx +24 -0
  217. package/src/text/Message.scss +16 -0
  218. package/src/text/Message.tsx +16 -0
  219. package/src/text/Tag.scss +94 -0
  220. package/src/text/Tag.tsx +22 -0
  221. package/tailwind.config.js +128 -0
  222. package/tailwind.tosass.js +29 -0
  223. package/tsconfig.json +31 -0
@@ -0,0 +1,868 @@
1
+ {
2
+ "account": {
3
+ "accountSettings": "Account Settings",
4
+ "accountSettingsSubtitle": "Account Settings, email and password",
5
+ "myApplications": "My Applications",
6
+ "myApplicationsSubtitle": "See lottery dates and listings for properties for which you've applied"
7
+ },
8
+ "applications": {
9
+ "totalApplications": "Total Applications",
10
+ "addApplication": "Add Application",
11
+ "applicationsReceived": "Applications Received",
12
+ "table": {
13
+ "applicationSubmissionDate": "Application Submission Date",
14
+ "declaredAnnualIncome": "Declared Annual Income",
15
+ "declaredMonthlyIncome": "Declared Monthly Income",
16
+ "subsidyOrVoucher": "Subsidy or Voucher",
17
+ "requestAda": "Request ADA",
18
+ "preferenceClaimed": "Preference Claimed",
19
+ "primaryDob": "Primary DOB",
20
+ "phoneType": "Phone Type",
21
+ "additionalPhoneType": "Additional Phone Type",
22
+ "residenceStreet": "Residence Street Address",
23
+ "residenceCity": "Residence City",
24
+ "residenceState": "Residence State",
25
+ "residenceZip": "Residence Zip",
26
+ "mailingStreet": "Mailing Street Address",
27
+ "mailingCity": "Mailing City",
28
+ "mailingState": "Mailing State",
29
+ "mailingZip": "Mailing Zip",
30
+ "workStreet": "Work Street Address",
31
+ "workCity": "Work City",
32
+ "workState": "Work State",
33
+ "workZip": "Work Zip",
34
+ "altContactFirstName": "Alt Contact First Name",
35
+ "altContactLastName": "Alt Contact Last Name",
36
+ "altContactRelationship": "Alt Contact Relationship",
37
+ "altContactAgency": "Alt Contact Agency",
38
+ "altContactEmail": "Alt Contact Email",
39
+ "altContactPhone": "Alt Contact Phone",
40
+ "altContactStreetAddress": "Alt Contact Street Address",
41
+ "altContactCity": "Alt Contact City",
42
+ "altContactState": "Alt Contact State",
43
+ "altContactZip": "Alt Contact Zip",
44
+ "householdFirstName": "Household First Name",
45
+ "householdLastName": "Household Last Name",
46
+ "householdRelationship": "Household Relationship",
47
+ "householdDob": "Household DOB",
48
+ "householdStreetAddress": "Household Street Address",
49
+ "householdCity": "Household City",
50
+ "householdState": "Household State",
51
+ "householdZip": "Household Zip"
52
+ }
53
+ },
54
+ "application": {
55
+ "details": {
56
+ "applicationData": "Application Data",
57
+ "number": "Application Number",
58
+ "type": "Application Submission Type",
59
+ "submittedDate": "Application Submitted Date",
60
+ "timeDate": "Application Submitted Time",
61
+ "language": "Application Language",
62
+ "householdSize": "Household Size",
63
+ "totalSize": "Total Household Size",
64
+ "submittedBy": "Submitted By",
65
+ "agency": "Agency if Applicable",
66
+ "adaPriorities": "ADA Priorities Selected",
67
+ "preferences": "Application Preferences",
68
+ "liveOrWorkIn": "Live or Work in",
69
+ "householdIncome": "Declared Household Income",
70
+ "annualIncome": "Annual Income",
71
+ "monthlyIncome": "Monthly Income",
72
+ "vouchers": "Housing Voucher or Subsidy",
73
+ "preferredContact": "Preferred Contact",
74
+ "residenceAddress": "Residence Address",
75
+ "workInRegion": "Work in Region",
76
+ "signatureOnTerms": "Signature on Terms of Agreement",
77
+ "submissionType": {
78
+ "electronical": "Electronical",
79
+ "paper": "Paper"
80
+ },
81
+ "applicationStatus": {
82
+ "draft": "Draft",
83
+ "submitted": "Submitted",
84
+ "removed": "Removed"
85
+ }
86
+ },
87
+ "form": {
88
+ "errors": {
89
+ "selectOption": "Please select one of the options above.",
90
+ "selectAtLeastOne": "Please select at least one option.",
91
+ "householdTooBig": "Your household size is too big.",
92
+ "householdTooSmall": "Your household size is too small."
93
+ },
94
+ "general": {
95
+ "saveAndReturn": "Save and return to review",
96
+ "saveAndFinishLater": "Save and finish later",
97
+ "defaultSelectPlaceholder": "Select One",
98
+ "createAccount": "Create Account"
99
+ },
100
+ "options": {
101
+ "contact": {
102
+ "email": "Email",
103
+ "phone": "Phone",
104
+ "letter": "Letter",
105
+ "text": "Text"
106
+ },
107
+ "relationship": {
108
+ "spouse": "Spouse",
109
+ "registeredDomesticPartner": "Registered Domestic Partner",
110
+ "parent": "Parent",
111
+ "child": "Child",
112
+ "sibling": "Sibling",
113
+ "cousin": "Cousin",
114
+ "aunt": "Aunt",
115
+ "uncle": "Uncle",
116
+ "nephew": "Nephew",
117
+ "niece": "Niece",
118
+ "grandparent": "Grandparent",
119
+ "greatGrandparent": "Great Grandparent",
120
+ "inLaw": "In Law",
121
+ "friend": "Friend",
122
+ "other": "Other"
123
+ },
124
+ "states": {
125
+ "AL": "Alabama",
126
+ "AK": "Alaska",
127
+ "AZ": "Arizona",
128
+ "AR": "Arkansas",
129
+ "CA": "California",
130
+ "CO": "Colorado",
131
+ "CT": "Connecticut",
132
+ "DE": "Delaware",
133
+ "DC": "District Of Columbia",
134
+ "FL": "Florida",
135
+ "GA": "Georgia",
136
+ "HI": "Hawaii",
137
+ "ID": "Idaho",
138
+ "IL": "Illinois",
139
+ "IN": "Indiana",
140
+ "IA": "Iowa",
141
+ "KS": "Kansas",
142
+ "KY": "Kentucky",
143
+ "LA": "Louisiana",
144
+ "ME": "Maine",
145
+ "MD": "Maryland",
146
+ "MA": "Massachusetts",
147
+ "MI": "Michigan",
148
+ "MN": "Minnesota",
149
+ "MS": "Mississippi",
150
+ "MO": "Missouri",
151
+ "MT": "Montana",
152
+ "NE": "Nebraska",
153
+ "NV": "Nevada",
154
+ "NH": "New Hampshire",
155
+ "NJ": "New Jersey",
156
+ "NM": "New Mexico",
157
+ "NY": "New York",
158
+ "NC": "North Carolina",
159
+ "ND": "North Dakota",
160
+ "OH": "Ohio",
161
+ "OK": "Oklahoma",
162
+ "OR": "Oregon",
163
+ "PA": "Pennsylvania",
164
+ "RI": "Rhode Island",
165
+ "SC": "South Carolina",
166
+ "SD": "South Dakota",
167
+ "TN": "Tennessee",
168
+ "TX": "Texas",
169
+ "UT": "Utah",
170
+ "VT": "Vermont",
171
+ "VA": "Virginia",
172
+ "WA": "Washington",
173
+ "WV": "West Virginia",
174
+ "WI": "Wisconsin",
175
+ "WY": "Wyoming"
176
+ }
177
+ }
178
+ },
179
+ "chooseLanguage": {
180
+ "letsGetStarted": "Let’s get started on your application",
181
+ "chooseYourLanguage": "Choose Your Language",
182
+ "haveAnAccount": "Already have an account?",
183
+ "signInSaveTime": "Signing in could save you time by starting with details of your last application, and allow you to check the status of this application at any time."
184
+ },
185
+ "name": {
186
+ "title": "What's your name?",
187
+ "yourName": "Your Name",
188
+ "firstName": "First Name",
189
+ "firstNameError": "Please enter a First Name",
190
+ "middleNameOptional": "Middle Name (optional)",
191
+ "middleName": "Middle Name",
192
+ "lastName": "Last Name",
193
+ "lastNameError": "Please enter a Last Name",
194
+ "yourDateOfBirth": "Your Date of Birth",
195
+ "dateOfBirthError": "Please enter a valid Date of Birth",
196
+ "yourEmailAddress": "Your Email Address",
197
+ "emailPrivacy": "We will only use your email address to contact you about your application.",
198
+ "emailAddressError": "Please enter an email address",
199
+ "noEmailAddress": "I don't have an email address"
200
+ },
201
+ "contact": {
202
+ "title": "Thanks %{firstName}. Now we need to know how to contact you.",
203
+ "yourPhoneNumber": "Your Phone Number",
204
+ "phoneNumberTypes": {
205
+ "prompt": "What type of number is this?",
206
+ "work": "Work",
207
+ "home": "Home",
208
+ "cell": "Cell"
209
+ },
210
+ "phoneNumberError": "Please enter a phone number",
211
+ "noPhoneNumber": "I don't have a telephone number",
212
+ "phoneNumberTypeError": "Please enter a phone number type",
213
+ "yourAdditionalPhoneNumber": "Your Second Phone Number",
214
+ "additionalPhoneNumber": "I have an additional phone number",
215
+ "address": "Address",
216
+ "addressWhereYouCurrentlyLive": "We need the address where you currently live. If you are homeless, enter either the shelter address or an address close to where you stay.",
217
+ "streetAddress": "Street Address",
218
+ "streetError": "Please enter an address",
219
+ "apt": "Apt or Unit #",
220
+ "city": "City",
221
+ "cityName": "City Name",
222
+ "cityError": "Please enter a city",
223
+ "contactPreference": "How do you prefer to be contacted?",
224
+ "preferredContactType": "Preferred Contact Type",
225
+ "state": "State",
226
+ "stateError": "Please enter a state",
227
+ "zip": "Zip",
228
+ "zipCode": "Zipcode",
229
+ "zipCodeError": "Please enter a zipcode",
230
+ "sendMailToMailingAddress": "Send my mail to a different address",
231
+ "mailingAddress": "Mailing Address",
232
+ "provideAMailingAddress": "Provide an address where you can receive updates and materials about your application.",
233
+ "doYouWorkIn": "Do you work in <REGION>?",
234
+ "doYouWorkInDescription": "TBD",
235
+ "workAddress": "Work Address"
236
+ },
237
+ "alternateContact": {
238
+ "type": {
239
+ "title": "Is there someone else you'd like to authorize us to contact if we can't reach you?",
240
+ "description": "By providing alternate contact, you are allowing us to discuss information on your application with them.",
241
+ "label": "Alternate Contact",
242
+ "helperText": "Please select one.",
243
+ "options": {
244
+ "familyMember": "Family member",
245
+ "friend": "Friend",
246
+ "caseManager": "Case manager or housing counselor",
247
+ "other": "Other",
248
+ "noContact": "I don't have an alternate contact"
249
+ },
250
+ "otherTypeFormPlaceholder": "What is your relationship?",
251
+ "otherTypeValidationErrorMessage": "Please enter relationship type",
252
+ "validationErrorMessage": "Please select an alternate contact"
253
+ },
254
+ "name": {
255
+ "title": "Who is your alternate contact?",
256
+ "alternateContactFormLabel": "Name of alternate contact",
257
+ "firstNameFormPlaceholder": "First Name",
258
+ "firstNameValidationErrorMessage": "Please enter a First Name",
259
+ "lastNameFormPlaceholder": "Last Name",
260
+ "lastNameValidationErrorMessage": "Please enter a Last Name",
261
+ "caseManagerAgencyFormLabel": "Where does your case manager or housing counselor work?",
262
+ "caseManagerAgencyFormPlaceHolder": "Agency",
263
+ "caseManagerAgencyValidationErrorMessage": "Please enter an agency"
264
+ },
265
+ "contact": {
266
+ "title": "Let us know how to reach your alternate contact",
267
+ "description": "We'll only use this information to contact them about your application.",
268
+ "phoneNumberFormLabel": "Contact phone number",
269
+ "phoneNumberFormPlaceHolder": "(555) 555-5555",
270
+ "emailAddressFormLabel": "Contact email address",
271
+ "emailAddressFormPlaceHolder": "you@myemail.com",
272
+ "contactMailingAddressLabel": "Contact mailing address",
273
+ "contactMailingAddressHelperText": "Choose an address where they can receive updates and materials about your application",
274
+ "streetFormPlaceholder": "Street Address",
275
+ "cityFormLabel": "City Name",
276
+ "cityFormPlaceholder": "City Name",
277
+ "stateFormLabel": "State",
278
+ "stateFormPlaceholder": "Select One",
279
+ "zipcodeFormLabel": "Zip",
280
+ "zipcodeFormPlaceholder": "Zip Code"
281
+ }
282
+ },
283
+ "household": {
284
+ "assistanceUrl": "https://exygy.com/",
285
+ "dontQualifyHeader": "Unfortunately it appears you do not qualify for this listing.",
286
+ "dontQualifyInfo": "Please make changes if you believe you might have made a mistake. Be aware that if you falsify any information on your application you will be disqualified. If the information you entered is accurate, we encourage you to check back in the future as more properties become available.",
287
+ "addMembers": {
288
+ "addHouseholdMember": "+ Add Household Member",
289
+ "done": "Done adding people",
290
+ "title": "Tell us about your household."
291
+ },
292
+ "householdMember": "Household Member",
293
+ "householdMembers": "Household Members",
294
+ "liveAlone": {
295
+ "title": "Next we would like to know about the others who will live with you in the unit",
296
+ "willLiveAlone": "I will live alone",
297
+ "liveWithOtherPeople": "Other people will live with me"
298
+ },
299
+ "preferredUnit": {
300
+ "preferredUnitType": "Preferred Unit Type",
301
+ "title": "What unit sizes are you interested in?",
302
+ "subTitle": "Your selected unit type will be subject to availability.",
303
+ "legend": "Preferred unit type",
304
+ "optionsLabel": "Check all that apply:",
305
+ "options": {
306
+ "studio": "Studio",
307
+ "oneBedroom": "1 Bedroom",
308
+ "twoBedroom": "2 Bedroom",
309
+ "threeBedroom": "3 Bedroom",
310
+ "moreThanThreeBedroom": "3+ Bedroom"
311
+ }
312
+ },
313
+ "member": {
314
+ "cancelAddingThisPerson": "Cancel adding this person",
315
+ "deleteThisPerson": "Delete this person",
316
+ "dateOfBirth": "Date of Birth",
317
+ "name": "Household member's name",
318
+ "haveSameAddress": "Do they have same address as you?",
319
+ "whatIsTheirRelationship": "What is their relationship to you?",
320
+ "saveHouseholdMember": "Save household member",
321
+ "subTitle": "You will have an opportunity to add more household members on the next screen",
322
+ "title": "Tell us about this person",
323
+ "updateHouseholdMember": "Update Household Member",
324
+ "whatReletionship": "What is their relationship to you",
325
+ "workInRegion": "Do they work in <REGION>?",
326
+ "workInRegionNote": "TBD"
327
+ },
328
+ "membersInfo": {
329
+ "title": "Before adding other people, make sure that they aren't named on any other application for this listing."
330
+ },
331
+ "primaryApplicant": "Primary Applicant"
332
+ },
333
+ "ada": {
334
+ "label": "ADA Accessible Units",
335
+ "title": "Do you or anyone in your household need any of the following ADA accessibility features?",
336
+ "subTitle": "If you are selected for a unit, the property will work to accommodate your need to the best of their ability. Should your application be chosen, be prepared to provide supporting documentation from your physician.",
337
+ "legend": "ADA Features",
338
+ "mobility": "For Mobility Impairments",
339
+ "vision": "For Vision Impairments",
340
+ "hearing": "For Hearing Impairments"
341
+ },
342
+ "preferences": {
343
+ "title": "Your household may qualify for the following housing preferences.",
344
+ "preamble": "If you qualify for this preference, you'll get a higher ranking.",
345
+ "selectBelow": "If you have one of these housing preferences, select it below:",
346
+ "dontWant": "I don't want this preference",
347
+ "stillHaveOpportunity": "You'll still have the opportunity to claim other preferences.",
348
+ "youHaveClaimed": "You have claimed:",
349
+ "liveIn": {
350
+ "label": "Live in <REGION> Preference",
351
+ "description": "Live in <REGION> copy goes here…",
352
+ "link": "http://domain.com"
353
+ },
354
+ "workIn": {
355
+ "label": "Work in <REGION> Preference",
356
+ "description": "Work in <REGION> copy goes here…",
357
+ "link": "http://domain.com"
358
+ },
359
+ "general": {
360
+ "title": "Based on the information you have entered, your household has not claimed any housing preferences.",
361
+ "preamble": "You will be in the general pool of applicants."
362
+ },
363
+ "options": {
364
+ "liveIn": "Live",
365
+ "workIn": "Work"
366
+ }
367
+ },
368
+ "review": {
369
+ "takeAMomentToReview": "Take a moment to review your information before submitting your application.",
370
+ "sameAddressAsApplicant": "Same Address as Applicant",
371
+ "noAdditionalMembers": "No additional household members",
372
+ "householdDetails": "Household Details",
373
+ "voucherOrSubsidy": "Housing Voucher or Rental Subsidy",
374
+ "lastChanceToEdit": "This is your last chance to edit before submitting.",
375
+ "terms": {
376
+ "title": "Terms",
377
+ "text": "This application must be submitted by %{applicationDueDate}.<br><br>Applicants will be contacted by the agent in the lottery rank and preference order until vacancies are filled.<br><br>All of the information that you have provided will be verified and you eligibility confirmed. Your application will be removed from the lottery if you have made any fraudulent statements, or if any household member appears on more than one application for this listing. If we cannot verify a housing lottery preference that you have claimed, you will not receive the preference but will not be otherwise penalised.<br><br>All of the information that you have provided will be verified and your eligibility confirmed. Your application will be removed from the waitlist if you have made any fraudulent statements, or if any household member appears on more than one application for this listing. If we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.<br><br>Should your application be chosen from the lottery, be prepared to fill out a more detailed application and provide required supporting documents within 5 bussiness days of being contacted. For more information, please contact the developer or agent posted in the listing. Completing this lottery application does not entitle you to housing or indicate you are eligible for housing. All applicants will be screened as outlined in the property's Resident Selection Criteria.<br><br>You cannot change your online application after you submit.<br><br>I declare that foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application will result in removal from the lottery.<br><br>",
378
+ "confirmCheckboxText": "I agree and understand that I cannot change anything after I submit.",
379
+ "agreeError": "You must agree to the terms in order to continue",
380
+ "submit": "Submit"
381
+ },
382
+ "demographics": {
383
+ "title": "Help us ensure we are meeting our goal to serve all people.",
384
+ "subTitle": "These questions are optional and won't affect your eligibility for housing. Your answers will be kept private.",
385
+ "ethnicityLabel": "Which best describes your ethnicity?",
386
+ "raceLabel": "Which best describes your race?",
387
+ "genderLabel": "What is your gender?",
388
+ "genderInfo": "Select one that best describes your current gender identity.",
389
+ "sexualOrientationLabel": "How do you describe your sexual orientation or sexual identity?",
390
+ "howDidYouHearLabel": "How did you hear about this listing?",
391
+ "ethnicityOptions": {
392
+ "hispanicLatino": "Hispanic / Latino",
393
+ "notHispanicLatino": "Not Hispanic / Latino"
394
+ },
395
+ "raceOptions": {
396
+ "americanIndianAlaskanNative": "American Indian / Alaskan Native",
397
+ "asian": "Asian",
398
+ "blackAfricanAmerican": "Black / African American",
399
+ "nativeHawaiianOtherPacificIslander": "Native Hawaiian / Other Pacific Islander",
400
+ "white": "White",
401
+ "americanIndianAlaskanNativeAndBlackAfricanAmerican": "American Indian / Alaskan Native and Black/African American",
402
+ "americanIndianAlaskanNativeAndWhite": "American Indian / Alaskan Native and White",
403
+ "asianAndWhite": "Asian and White",
404
+ "blackAfricanAmericanAndWhite": "Black / African American and White",
405
+ "otherMutliracial": "Other / Mutliracial"
406
+ },
407
+ "genderOptions": {
408
+ "female": "Female",
409
+ "male": "Male",
410
+ "genderqueerGenderNon-Binary": "Genderqueer / Gender Non-Binary",
411
+ "transFemale": "Trans Female",
412
+ "transMale": "Trans Male",
413
+ "notListed": "Not Listed"
414
+ },
415
+ "sexualOrientationOptions": {
416
+ "bisexual": "Bisexual",
417
+ "gayLesbianSameGenderLoving": "Gay / Lesbian / Same-Gender Loving",
418
+ "questioningUnsure": "Questioning / Unsure",
419
+ "straightHeterosexual": "Straight / Heterosexual",
420
+ "notListed": "Not Listed"
421
+ },
422
+ "howDidYouHearOptions": {
423
+ "alamedaCountyHCDWebsite": "Alameda County HCD Website",
424
+ "developerWebsite": "Developer Website",
425
+ "flyer": "Flyer",
426
+ "emailAlert": "Email Alert",
427
+ "friend": "Friend",
428
+ "housingCounselor": "Housing Counselor",
429
+ "radioAd": "Radio Ad",
430
+ "busAd": "Bus Ad",
431
+ "other": "Other"
432
+ }
433
+ },
434
+ "confirmation": {
435
+ "title": "Thanks. We have received your application for ",
436
+ "lotteryNumber": "Here's your application confirmation number",
437
+ "pleaseWriteNumber": "Please write down your application number and keep it in a safe place. We have also emailed this number to you if you provided an email address.",
438
+ "whatExpectTitle": "What to expect next",
439
+ "whatExpectFirstParagraph": {
440
+ "held": "The lottery will be held on ",
441
+ "attend": " You do not need to attend the housing lottery. Results will be posted ",
442
+ "listing": "on the listing. ",
443
+ "refer": "Please refer to the listing for the lottery results date."
444
+ },
445
+ "whatExpectSecondparagraph": "Applicants will be contacted in order until vacancies are filled. Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents.",
446
+ "doNotSubmitTitle": "Do not submit another application for this listing.",
447
+ "needToUpdate": "If you need to update information on your application, do not apply again. Contact the agent if you did not receive an email confirmation.",
448
+ "createAccountTitle": "Would you like to create an account?",
449
+ "createAccountParagraph": "Creating an account will save your information for future applications, and you can check the status of this application anytime.",
450
+ "imdone": "No thanks, I'm done.",
451
+ "browseMore": "Browse more listings",
452
+ "print": "View submitted application and print a copy."
453
+ }
454
+ },
455
+ "confirmation": {
456
+ "viewOriginalListing": "View the original listing",
457
+ "informationSubmittedTitle": "Here's the information you submitted.",
458
+ "submitted": "Submitted: ",
459
+ "lotteryNumber": "Your confirmation number",
460
+ "preferences": "Preferences",
461
+ "generalLottery": "Based on information you have entered, your household has not claimed any housing lottery preferences. You will be in the general lottery.",
462
+ "printCopy": "Print a copy for your records"
463
+ },
464
+ "financial": {
465
+ "income": {
466
+ "title": "Let's move to income.",
467
+ "instruction1": "Add up your total gross (pre-tax) household income from wages, benefits and other sources from all household members.",
468
+ "instruction2": "You only need to provide an estimated total right now. The actual total will be calculated if you are selected.",
469
+ "prompt": "What is your household total pre-tax income?",
470
+ "placeholder": "Total all of your income sources",
471
+ "incomeError": "Please enter a valid number greater than 0.",
472
+ "legend": "Income frequency",
473
+ "perMonth": "per month",
474
+ "perYear": "per year",
475
+ "periodError": "Please select one of the options above.",
476
+ "validationError": {
477
+ "title": "Unfortunately it appears you do not qualify for this listing.",
478
+ "reason": {
479
+ "low": "Your household income is too low.",
480
+ "high": "Your household income is too high."
481
+ },
482
+ "instruction1": "Please make changes if you believe you might have made a mistake. Be aware that if you falsify any information on your application you will be disqualified.",
483
+ "instruction2": "If the information you entered is accurate, we encourage you to check back in the future as more properties become available.",
484
+ "assistance": "Get Assistance"
485
+ }
486
+ },
487
+ "vouchers": {
488
+ "title": "Do you or anyone on this application receive any of the following?",
489
+ "housingVouchers": {
490
+ "strong": "Housing vouchers",
491
+ "text": "like Section 8"
492
+ },
493
+ "nonTaxableIncome": {
494
+ "strong": "Non-taxable income",
495
+ "text": "like SSI, SSDI, child support payments, or worker's compensation benefits"
496
+ },
497
+ "rentalSubsidies": {
498
+ "strong": "Rental subsidies",
499
+ "text": "like VASH, HSA, HOPWA, Catholic Charities, AIDS Foundation, etc."
500
+ },
501
+ "legend": "Housing vouchers, nontaxable income or rental subsidies",
502
+ "prompt": "Please select one.",
503
+ "yes": "Yes",
504
+ "no": "No",
505
+ "error": "Please select an option."
506
+ }
507
+ },
508
+ "start": {
509
+ "whatToExpect": {
510
+ "title": "Here's what to expect from this application.",
511
+ "info1": "First we'll ask about you and the people you plan to live with. Then, we'll ask about your income. Finally, we'll see if you qualify for any affordable housing lottery preference.",
512
+ "info2": "Please be aware that each household member can only appear on one application for each listing.",
513
+ "info3": "Any fraudulent statements will cause your application to be removed."
514
+ }
515
+ },
516
+ "timeout": {
517
+ "title": "Are you still working?",
518
+ "text": "To protect your identity, your session will expire in one minute due to inactivity. You will lose any unsaved information if you choose not to respond.",
519
+ "action": "Continue working",
520
+ "afterMessage": "We care about your security. We ended your session due to inactivity. Please log in or start a new application to continue."
521
+ },
522
+ "continueApplication": "Continue Application",
523
+ "applicationNeverSubmitted": "Your application was never submitted",
524
+ "deleteThisApplication": "Delete this application?",
525
+ "deleteApplicationDescription": "Deleting this application means you will lose all the information you've entered.",
526
+ "edited": "Edited",
527
+ "status": "Status",
528
+ "statuses": {
529
+ "inProgress": "In Progress",
530
+ "neverSubmitted": "Never Submitted",
531
+ "submitted": "Submitted"
532
+ },
533
+ "viewApplication": "View Application",
534
+ "yourLotteryNumber": "Your confirmation number is"
535
+ },
536
+ "authentication": {
537
+ "timeout": {
538
+ "title": "Are you still working?",
539
+ "text": "To protect your identity, your session will expire in one minute due to inactivity. You will lose any unsaved information and be logged out if you choose not to respond.",
540
+ "action": "Stay logged in",
541
+ "signOutMessage": "We care about your security. We logged you out due to inactivity. Please sign in to continue."
542
+ },
543
+ "signIn": {
544
+ "error": "There was an error signing you in",
545
+ "errorGenericMessage": "Please try again, or contact support for help.",
546
+ "success": "Welcome back, %{name}!"
547
+ },
548
+ "signOut": {
549
+ "success": "You have successfully logged out of your account."
550
+ }
551
+ },
552
+ "config": {
553
+ "routePrefix": ""
554
+ },
555
+ "error": {
556
+ "alert": {
557
+ "badRequest": "Oops! Looks like something went wrong. Please try again. \n\nContact sfhousing.info@sfgov.org if you're still experiencing issues.",
558
+ "timeoutPleaseTryAgain": "Oops! Looks like something went wrong. Please try again."
559
+ },
560
+ "notFound": {
561
+ "title": "Page Not Found",
562
+ "message": "Uh oh, we can’t seem to find the page you’re looking for. Try going back to the previous page or click below to browse listings."
563
+ }
564
+ },
565
+ "footer": {
566
+ "contact": "Contact",
567
+ "disclaimer": "Disclaimer",
568
+ "forGeneralQuestions": "For general program inquiries, you may call us at 000-000-0000.",
569
+ "giveFeedback": "Give Feedback",
570
+ "privacyPolicy": "Privacy Policy",
571
+ "copyright": "Demonstration County © 2020 • All Rights Reserved"
572
+ },
573
+ "housingCounselors": {
574
+ "subtitle": "Talk with a local housing counselor specific to your needs.",
575
+ "languageServices": "Language Services: ",
576
+ "call": "Call %{number}",
577
+ "visitWebsite": "Visit %{name}"
578
+ },
579
+ "label": {
580
+ "call": "Call",
581
+ "edit": "Edit",
582
+ "email": "Email",
583
+ "getDirections": "Get Directions",
584
+ "less": "Less",
585
+ "more": "More",
586
+ "readLess": "read less",
587
+ "readMore": "read more",
588
+ "seeDetails": "See Details",
589
+ "showLess": "show less",
590
+ "showMore": "show more",
591
+ "viewMap": "View Map"
592
+ },
593
+ "leasingAgent": {
594
+ "contact": "Contact Leasing Agent",
595
+ "dueToHighCallVolume": "Due to high call volume you may hear a message.",
596
+ "officeHours": "Office Hours"
597
+ },
598
+ "listingsForRent": {
599
+ "callout": {
600
+ "title": "See more listings from our community partners.",
601
+ "button": "View opportunities"
602
+ }
603
+ },
604
+ "listings": {
605
+ "openHouseEvent": {
606
+ "header": "Open Houses",
607
+ "seeVideo": "See Video"
608
+ },
609
+ "publicLottery": {
610
+ "header": "Public Lottery",
611
+ "seeVideo": "See Video"
612
+ },
613
+ "additionalFees": "Additional Fees",
614
+ "additionalInformation": "Additional Information",
615
+ "allUnits": "All Units",
616
+ "allUnitsReservedFor": "All units reserved for %{type}",
617
+ "applicationDeadline": "Application Due Date",
618
+ "applicationFCFS": "First Come First Serve",
619
+ "applicationFee": "Application Fee",
620
+ "applicationFeeDueAt": "Due at interview",
621
+ "applicationOpenPeriod": "Applications Open",
622
+ "applicationPerApplicantAgeDescription": "per applicant age 18 and over",
623
+ "applicationsClosed": "Applications Closed",
624
+ "apply": {
625
+ "applicationsMustBeReceivedByDeadline": "Applications must be received by the deadline and postmarks will not be considered.",
626
+ "applicationWillBeAvailableOn": "Application will be available for download and pick up on %{openDate}",
627
+ "applyOnline": "Apply Online",
628
+ "downloadApplication": "Download Application",
629
+ "dropOffApplication": "Drop Off Application",
630
+ "dropOffApplicationOrMail": "Drop Off Application or Send by US Mail",
631
+ "getAPaperApplication": "Get a Paper Application",
632
+ "howToApply": "How to Apply",
633
+ "paperApplicationsMustBeMailed": "Paper applications must be sent by US Mail and cannot be submitted in person.",
634
+ "pickUpAnApplication": "Pick up an application",
635
+ "postmarkedApplicationsMustBeReceivedByDate": "Applications must be received by the deadline. If sending by U.S. Mail, the application must be postmarked by %{applicationDueDate} and received by mail no later than %{postmarkReceivedByDate}. Applications received after %{postmarkReceivedByDate} via mail will not be accepted even if they are postmarked by %{applicationDueDate}. %{developer} is not responsible for lost or delayed mail.",
636
+ "sendByUsMail": "Send Application by US Mail",
637
+ "submitAPaperApplication": "Submit a Paper Application"
638
+ },
639
+ "availableAndWaitlist": "Available Units & Open Waitlist",
640
+ "availableUnits": "Available Units",
641
+ "availableUnitsAndWaitlist": "Available units and waitlist",
642
+ "availableUnitsAndWaitlistDesc": "Once applicants fill all available units, additional applicants will be placed on the waitlist for <span class='t-italic'>%{number} units</span>",
643
+ "bath": "bath",
644
+ "browseListings": "Browse Listings",
645
+ "closedListings": "Closed Listings",
646
+ "comingSoon": "Coming Soon",
647
+ "confirmedPreferenceList": "Confirmed %{preference} List",
648
+ "creditHistory": "Credit History",
649
+ "criminalBackground": "Criminal Background",
650
+ "depositOrMonthsRent": "or one month's rent",
651
+ "depositMayBeHigherForLowerCredit": "May be higher for lower credit scores",
652
+ "developmentalDisabilities": "Persons with developmental disabilities",
653
+ "developmentalDisabilitiesDescription": "A portion number of units in this building are set aside for persons with developmental disabilities. Please visit <a href='http://www.housingchoices.org/' target='_blank'>housingchoices.org</a> for information on eligibility, requirements, how to get an application and for answers to any other questions you may have about the process.",
654
+ "enterLotteryForWaitlist": "Submit an application for an open slot on the waitlist for %{units} units.",
655
+ "forIncomeCalculations": "For income calculations, household size includes everyone (all ages) living in the unit.",
656
+ "forIncomeCalculationsBMR": "Income calculations are based on unit type",
657
+ "hideClosedListings": "Hide Closed Listings",
658
+ "householdMaximumIncome": "Household Maximum Income",
659
+ "importantProgramRules": "Important Program Rules",
660
+ "includesPriorityUnits": "Includes Priority Units for %{priorities}",
661
+ "moreBuildingSelectionCriteria": "Find out more about Building Selection Criteria",
662
+ "noAvailableUnits": "There are no available units at this time.",
663
+ "noOpenListings": "No listings currently have open applications.",
664
+ "occupancyDescriptionAllSro": "Occupancy for this building is limited to 1 person per unit.",
665
+ "occupancyDescriptionNoSro": "Occupancy limits for this building are based on unit type.",
666
+ "occupancyDescriptionSomeSro": "Occupancy for this building varies by unit type. SROs are limited to 1 person per unit, regardless of age. For all other unit types, occupancy limits do not count children under 6.",
667
+ "people": "people",
668
+ "person": "person",
669
+ "percentAMIUnit": "%{percent}% AMI Unit",
670
+ "priorityUnits": "Priority Units",
671
+ "priorityUnitsDescription": "This building has units set aside if any of the following apply to you or someone in your household:",
672
+ "remainingUnitsAfterPreferenceConsideration": "After all preference holders have been considered, any remaining units will be available to other qualified applicants.",
673
+ "rentalHistory": "Rental History",
674
+ "requiredDocuments": "Required Documents",
675
+ "reservedCommunityBuilding": "%{type} Building",
676
+ "reservedFor": "Reserved for %{type}",
677
+ "reservedTypePlural": {
678
+ "family": "families",
679
+ "senior": "seniors",
680
+ "veteran": "veterans"
681
+ },
682
+ "reservedUnits": "Reserved Units",
683
+ "reservedUnitsDescription": "In order to qualify for these units one of the following must apply to you or someone in your household:",
684
+ "reservedUnitsForWhoAre": "Reserved for %{communityType} who are %{reservedType}",
685
+ "sections": {
686
+ "eligibilityTitle": "Eligibility",
687
+ "eligibilitySubtitle": "Income, occupancy, preferences, and subsidies",
688
+ "rentalAssistanceTitle": "Rental Assistance",
689
+ "rentalAssistance": "Housing Choice Vouchers, Section 8 and other valid rental assistance programs will be considered for this property. In the case of a valid rental subsidy, the required minimum income will be based on the portion of the rent that the tenant pays after use of the subsidy.",
690
+ "housingPreferencesTitle": "Housing Preferences",
691
+ "housingPreferencesSubtitle": "Preference holders will be given highest ranking.",
692
+ "additionalEligibilityTitle": "Additional Eligibility Rules",
693
+ "additionalEligibilitySubtitle": "Applicants must also qualify under the rules of the building.",
694
+ "processTitle": "Process",
695
+ "processSubtitle": "Important dates and contact information",
696
+ "featuresTitle": "Features",
697
+ "featuresSubtitle": "Amenities, unit details and additional fees",
698
+ "neighborhoodTitle": "Neighborhood",
699
+ "neighborhoodSubtitle": "Location and transportation",
700
+ "additionalInformationTitle": "Additional Information",
701
+ "additionalInformationSubtitle": "Required documents and selection criteria"
702
+ },
703
+ "seeMaximumIncomeInformation": "See Maximum Income Information",
704
+ "seePreferenceInformation": "See Preference Information",
705
+ "seeUnitInformation": "See Unit Information",
706
+ "showClosedListings": "Show Closed Listings",
707
+ "singleRoomOccupancy": "Single Room Occupancy",
708
+ "singleRoomOccupancyDescription": "This property offers single rooms for one person only. Tenants may share bathrooms, and sometimes kitchen facilities.",
709
+ "squareFeet": "square feet",
710
+ "unit": "unit",
711
+ "unitTypes": {
712
+ "oneBdrm": "1 BR",
713
+ "twoBdrm": "2 BR",
714
+ "threeBdrm": "3 BR",
715
+ "studio": "Studio",
716
+ "SRO": "Single Room Occupancy"
717
+ },
718
+ "units": "units",
719
+ "unitsAreFor": "These units are for %{type}.",
720
+ "unitsHaveAccessibilityFeaturesFor": "These units have accessibility features for people with %{type}.",
721
+ "upcomingLotteries": {
722
+ "hide": "Hide Closed Listings",
723
+ "noResults": "There are no closed listings with upcoming lotteries at this time.",
724
+ "show": "Show Closed Listings",
725
+ "title": "Closed Listings"
726
+ },
727
+ "waitlist": {
728
+ "closed": "Waitlist Closed",
729
+ "label": "Waitlist",
730
+ "isOpen": "Waitlist is open",
731
+ "currentSize": "Current Waitlist Size",
732
+ "finalSize": "Final Waitlist Size",
733
+ "open": "Open Waitlist",
734
+ "openSlots": "Open Waitlist Slots",
735
+ "submitAnApplication": "Once ranked applicants fill all available units, the remaining ranked applicants will be placed on a waitlist for those same units.",
736
+ "submitForWaitlist": "Submit an application for an open slot on the waitlist.",
737
+ "unitsAndWaitlist": "Available Units and Waitlist"
738
+ },
739
+ "cc&r": "Covenants, Conditions and Restrictions (CC&R's)",
740
+ "cc&rDescription": "The CC&R's explain the rules of the homeowners' association, and restrict how you can modify the property.",
741
+ "downloadPdf": "Download PDF",
742
+ "rePricing": "Re-Pricing",
743
+ "eligibilityNotebook": "Eligibility Notebook",
744
+ "processInfo": "Process Info",
745
+ "featuresCards": "Features Cards",
746
+ "neighborhoodBuildings": "Neighborhood Buildings",
747
+ "additionalInformationEnvelope": "Additional Information Envelope"
748
+ },
749
+ "lottery": {
750
+ "applicationsThatQualifyForPreference": "Applications that qualify for this preference will be given a higher priority.",
751
+ "viewPreferenceList": "View Preference List"
752
+ },
753
+ "nav": {
754
+ "accountSettings": "Account Settings",
755
+ "browseProperties": "Browse Properties",
756
+ "getAssistance": "Get Assistance",
757
+ "getFeedback": "This is a preview of our new website. We're just getting started. We'd love to get <a target='_blank' class='a-white lined' href='%{feedbackUrl}'>your feedback.</a>",
758
+ "listings": "Listings",
759
+ "properties": "Properties",
760
+ "applications": "Applications",
761
+ "myAccount": "My Account",
762
+ "myApplications": "My Applications",
763
+ "myDashboard": "My Dashboard",
764
+ "mySettings": "My Settings",
765
+ "signIn": "Sign In",
766
+ "signOut": "Sign Out",
767
+ "siteTitle": "Housing Portal",
768
+ "skip": "Skip to main content"
769
+ },
770
+ "pageTitle": {
771
+ "additionalResources": "More Housing Opportunities",
772
+ "disclaimer": "Endorsement Disclaimers",
773
+ "housingCounselors": "Housing Counselors",
774
+ "getAssistance": "Get Assistance",
775
+ "rentalListings": "See Rentals",
776
+ "rent": "Rent affordable housing",
777
+ "privacy": "Privacy Policy",
778
+ "welcomeEnglish": "Welcome",
779
+ "welcomeSpanish": "Bienvenido",
780
+ "welcomeVietnamese": "Tiếng Việt"
781
+ },
782
+ "pageDescription": {
783
+ "welcome": "Search and apply for affordable housing on %{regionName}'s Housing Portal",
784
+ "listing": "Apply for affordable housing at %{listingName} in %{regionName}, built in partnership with Exygy."
785
+ },
786
+ "region": {
787
+ "name": "Local Region"
788
+ },
789
+ "t": {
790
+ "at": "at",
791
+ "additionalPhone": "Additional Phone",
792
+ "area": "area",
793
+ "accessibility": "Accessibility",
794
+ "availability": "Availability",
795
+ "back": "Back",
796
+ "built": "Built",
797
+ "cancel": "Cancel",
798
+ "confirm": "Confirm",
799
+ "day": "Day",
800
+ "delete": "Delete",
801
+ "deposit": "Deposit",
802
+ "errorsToResolve": "There are errors you'll need to resolve before moving on.",
803
+ "export": "Export",
804
+ "filter": "Filter",
805
+ "floor": "floor",
806
+ "floors": "floors",
807
+ "income": "Income",
808
+ "jumpTo": "Jump to",
809
+ "loginIsRequired": "Login is required to view this page.",
810
+ "lastUpdated": "Last updated",
811
+ "menu": "Menu",
812
+ "minimumIncome": "Minimum Income",
813
+ "month": "Month",
814
+ "n/a": "n/a",
815
+ "name": "Name",
816
+ "neighborhood": "Neighborhood",
817
+ "next": "Next",
818
+ "no": "No",
819
+ "none": "None",
820
+ "noneFound": "None found.",
821
+ "occupancy": "Occupancy",
822
+ "or": "or",
823
+ "petsPolicy": "Pets Policy",
824
+ "phone": "Phone",
825
+ "email": "Email",
826
+ "previous": "Previous",
827
+ "phoneNumberPlaceholder": "(555) 555-5555",
828
+ "preferences": "Preferences",
829
+ "propertyAmenities": "Property Amenities",
830
+ "range": "%{from} to %{to}",
831
+ "rent": "Rent",
832
+ "secondPhone": "Second Phone",
833
+ "seeListing": "See Listing",
834
+ "selectAllThatApply": "Please select all that apply.",
835
+ "selectOne": "Select One",
836
+ "show": "Show",
837
+ "skipToMainContent": "Skip to main content",
838
+ "smokingPolicy": "Smoking Policy",
839
+ "street": "Street",
840
+ "sqFeet": "sqft",
841
+ "relationship": "Relationship",
842
+ "unitAmenities": "Unit Amenities",
843
+ "unitFeatures": "Unit Features",
844
+ "unitType": "Unit Type",
845
+ "viewOnMap": "View on Map",
846
+ "website": "Website",
847
+ "year": "Year",
848
+ "yes": "Yes",
849
+ "you": "You"
850
+ },
851
+ "welcome": {
852
+ "allApplicationClosed": "All applications are currently closed, but you can view closed listings.",
853
+ "seeRentalListings": "See Rentals",
854
+ "title": "Apply for affordable housing in",
855
+ "seeMoreOpportunities": "See more rental and ownership housing opportunities",
856
+ "viewAdditionalHousing": "View Additional Housing Details"
857
+ },
858
+ "whatToExpect": {
859
+ "label": "What to Expect",
860
+ "applicantsWillBeContacted": "Applicants will be contacted by the property agent in rank order until vacancies are filled.",
861
+ "allInfoWillBeVerified": "All of the information that you have provided will be verified and your eligibility confirmed. Your application will be removed from the waitlist if you have made any fraudulent statements. If we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.",
862
+ "bePreparedIfChosen": "Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents."
863
+ },
864
+ "languages": {
865
+ "en": "English",
866
+ "es": "Spanish"
867
+ }
868
+ }