@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,1307 @@
1
+ {
2
+ "": "",
3
+ "account": {
4
+ "accountSettings": "Account Settings",
5
+ "errorFetchingApplications": "Error fetching applications",
6
+ "noApplications": "It looks like you haven't applied to any listings yet.",
7
+ "accountSettingsSubtitle": "Account Settings, email and password",
8
+ "createAccount": "Create Account",
9
+ "haveAnAccount": "Already have an account?",
10
+ "myApplications": "My Applications",
11
+ "myApplicationsSubtitle": "See lottery dates and listings for properties for which you've applied",
12
+ "application": {
13
+ "confirmation": "Confirmation",
14
+ "error": "Error",
15
+ "noAccessError": "No application with that ID exists",
16
+ "noApplicationError": "No application with that ID exists",
17
+ "return": "Return to applications"
18
+ },
19
+ "settings": {
20
+ "passwordSuccess": "Password successfully updated",
21
+ "update": "Update",
22
+ "passwordRemember": "When changing your password make sure you make note of it so you remember it in the future.",
23
+ "currentPassword": "Current password",
24
+ "newPassword": "New password",
25
+ "confirmNewPassword": "Confirm new password",
26
+ "alerts": {
27
+ "genericError": "There was an error. Please try again, or contact support for help.",
28
+ "nameSuccess": "Name update successful",
29
+ "dobSuccess": "Birthdate update successful",
30
+ "emailSuccess": "Email update successful",
31
+ "currentPassword": "Invalid current password. Please try again.",
32
+ "passwordSuccess": "Password update successful",
33
+ "passwordMatch": "New password fields do not match",
34
+ "passwordEmpty": "Password fields may not be empty"
35
+ },
36
+ "placeholders": {
37
+ "month": "MM",
38
+ "day": "DD",
39
+ "year": "YYYY"
40
+ }
41
+ }
42
+ },
43
+ "applications": {
44
+ "begin": {
45
+ "en": "Begin",
46
+ "es": "Empezar",
47
+ "zh": "開始",
48
+ "vi": "Bắt đầu"
49
+ },
50
+ "totalApplications": "Total Applications",
51
+ "totalSets": "Total Sets",
52
+ "addApplication": "Add Application",
53
+ "newApplication": "New Application",
54
+ "editApplication": "Edit Application",
55
+ "applicationsReceived": "Applications Received",
56
+ "table": {
57
+ "applicationSubmissionDate": "Application Submission Date",
58
+ "declaredAnnualIncome": "Declared Annual Income",
59
+ "declaredMonthlyIncome": "Declared Monthly Income",
60
+ "subsidyOrVoucher": "Subsidy or Voucher",
61
+ "requestAda": "Request ADA",
62
+ "preferenceClaimed": "Preference Claimed",
63
+ "primaryDob": "Primary DOB",
64
+ "phoneType": "Phone Type",
65
+ "additionalPhoneType": "Additional Phone Type",
66
+ "residenceStreet": "Residence Street Address",
67
+ "residenceCity": "Residence City",
68
+ "residenceState": "Residence State",
69
+ "residenceZip": "Residence Zip",
70
+ "mailingStreet": "Mailing Street Address",
71
+ "mailingCity": "Mailing City",
72
+ "mailingState": "Mailing State",
73
+ "mailingZip": "Mailing Zip",
74
+ "workStreet": "Work Street Address",
75
+ "workCity": "Work City",
76
+ "workState": "Work State",
77
+ "workZip": "Work Zip",
78
+ "altContactFirstName": "Alt Contact First Name",
79
+ "altContactLastName": "Alt Contact Last Name",
80
+ "altContactRelationship": "Alt Contact Relationship",
81
+ "altContactAgency": "Alt Contact Agency",
82
+ "altContactEmail": "Alt Contact Email",
83
+ "altContactPhone": "Alt Contact Phone",
84
+ "altContactStreetAddress": "Alt Contact Street Address",
85
+ "altContactCity": "Alt Contact City",
86
+ "altContactState": "Alt Contact State",
87
+ "altContactZip": "Alt Contact Zip",
88
+ "householdFirstName": "Household First Name",
89
+ "householdLastName": "Household Last Name",
90
+ "householdRelationship": "Household Relationship",
91
+ "householdDob": "Household DOB",
92
+ "householdStreetAddress": "Household Street Address",
93
+ "householdCity": "Household City",
94
+ "householdState": "Household State",
95
+ "householdZip": "Household Zip",
96
+ "applicationType": "Application Type"
97
+ }
98
+ },
99
+ "application": {
100
+ "add": {
101
+ "applicationAddError": "You’ll need to resolve any errors before moving on.",
102
+ "workInRegion": "Work in the region?",
103
+ "mobility": "Mobility Impairments",
104
+ "vision": "Vision Impairments",
105
+ "hearing": "Hearing Impairments",
106
+ "preferences": {
107
+ "liveIn": "Live in",
108
+ "workIn": "Work in",
109
+ "optedOut": "Opted out of preference"
110
+ },
111
+ "incomePeriod": "Income Period",
112
+ "demographicsInformation": "Demographic Information",
113
+ "ethnicity": "Ethnicity",
114
+ "race": "Race",
115
+ "gender": "Gender",
116
+ "howDidYouHearAboutUs": "How did you hear about us?",
117
+ "sexualOrientation": "Sexual Orientation",
118
+ "addHouseholdMember": "Add Household Member",
119
+ "sameAddressAsPrimary": "Same Address as Primary",
120
+ "sameResidence": "Same Residence",
121
+ "languageSubmittedIn": "Language Submitted In",
122
+ "timeSubmitted": "Time Submitted",
123
+ "dateSubmitted": "Date Submitted",
124
+ "applicationSubmitted": "Application Submitted",
125
+ "applicationUpdated": "Application Updated",
126
+ "saveAndExit": "Save & exit",
127
+ "claimant": "Claimant",
128
+ "displacedAddress": "Displaced Address"
129
+ },
130
+ "referralApplication": {
131
+ "instructions": "The permanent supportive housing units are referred directly through <COUNTY> Coordinated Entry System. Households experiencing homelessness can call <PHONE_NUMBER> in order to get connected to an Access Point to learn more about the coordinated entry system and access housing-related resources and information.",
132
+ "furtherInformation": "For further information",
133
+ "phoneNumber": "211"
134
+ },
135
+ "details": {
136
+ "applicationData": "Application Data",
137
+ "number": "Application Number",
138
+ "type": "Application Submission Type",
139
+ "submittedDate": "Application Submitted Date",
140
+ "timeDate": "Application Submitted Time",
141
+ "language": "Application Language",
142
+ "householdSize": "Household Size",
143
+ "totalSize": "Total Household Size",
144
+ "submittedBy": "Submitted By",
145
+ "agency": "Agency if Applicable",
146
+ "adaPriorities": "ADA Priorities Selected",
147
+ "preferences": "Application Preferences",
148
+ "liveOrWorkIn": "Live or Work in",
149
+ "householdIncome": "Declared Household Income",
150
+ "annualIncome": "Annual Income",
151
+ "monthlyIncome": "Monthly Income",
152
+ "vouchers": "Housing Voucher or Subsidy",
153
+ "preferredContact": "Preferred Contact",
154
+ "residenceAddress": "Residence Address",
155
+ "workInRegion": "Work in Region",
156
+ "signatureOnTerms": "Signature on Terms of Agreement",
157
+ "submissionType": {
158
+ "electronical": "Electronic",
159
+ "paper": "Paper"
160
+ },
161
+ "applicationStatus": {
162
+ "draft": "Draft",
163
+ "submitted": "Submitted",
164
+ "removed": "Removed"
165
+ },
166
+ "preferredUnitSizes": "Preferred Unit Sizes",
167
+ "householdMemberDetails": "Household Member Details"
168
+ },
169
+ "form": {
170
+ "general": {
171
+ "saveAndReturn": "Save and return to review",
172
+ "saveAndFinishLater": "Save and finish later"
173
+ },
174
+ "options": {
175
+ "relationship": {
176
+ "spouse": "Spouse",
177
+ "registeredDomesticPartner": "Registered Domestic Partner",
178
+ "parent": "Parent",
179
+ "child": "Child",
180
+ "sibling": "Sibling",
181
+ "cousin": "Cousin",
182
+ "aunt": "Aunt",
183
+ "uncle": "Uncle",
184
+ "nephew": "Nephew",
185
+ "niece": "Niece",
186
+ "grandparent": "Grandparent",
187
+ "greatGrandparent": "Great Grandparent",
188
+ "inLaw": "In Law",
189
+ "friend": "Friend",
190
+ "other": "Other"
191
+ }
192
+ }
193
+ },
194
+ "chooseLanguage": {
195
+ "letsGetStarted": "Let’s get started on your application",
196
+ "chooseYourLanguage": "Choose Your Language",
197
+ "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."
198
+ },
199
+ "autofill": {
200
+ "saveTime": "Save time by using the details from your last application",
201
+ "prefillYourApplication": "We'll simply pre-fill your application with the following details, and you can make updates as you go.",
202
+ "start": "Start with these details",
203
+ "reset": "Reset and start fresh"
204
+ },
205
+ "name": {
206
+ "title": "What's your name?",
207
+ "yourName": "Your Name",
208
+ "firstName": "First Name",
209
+ "middleNameOptional": "Middle Name (optional)",
210
+ "middleName": "Middle Name",
211
+ "lastName": "Last Name",
212
+ "yourDateOfBirth": "Your Date of Birth",
213
+ "yourEmailAddress": "Your Email Address",
214
+ "emailPrivacy": "We will only use your email address to contact you about your application.",
215
+ "noEmailAddress": "I don't have an email address"
216
+ },
217
+ "contact": {
218
+ "title": "Thanks %{firstName}. Now we need to know how to contact you.",
219
+ "yourPhoneNumber": "Your Phone Number",
220
+ "phoneNumberTypes": {
221
+ "prompt": "What type of number is this?",
222
+ "work": "Work",
223
+ "home": "Home",
224
+ "cell": "Cell"
225
+ },
226
+ "noPhoneNumber": "I don't have a telephone number",
227
+ "yourAdditionalPhoneNumber": "Your Second Phone Number",
228
+ "additionalPhoneNumber": "I have an additional phone number",
229
+ "address": "Address",
230
+ "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.",
231
+ "streetAddress": "Street Address",
232
+ "apt": "Apt or Unit #",
233
+ "city": "City",
234
+ "cityName": "City Name",
235
+ "contactPreference": "How do you prefer to be contacted?",
236
+ "preferredContactType": "Preferred Contact Type",
237
+ "state": "State",
238
+ "zip": "Zip",
239
+ "zipCode": "Zipcode",
240
+ "sendMailToMailingAddress": "Send my mail to a different address",
241
+ "mailingAddress": "Mailing Address",
242
+ "provideAMailingAddress": "Provide an address where you can receive updates and materials about your application.",
243
+ "doYouWorkIn": "Do you work in %{county} County?",
244
+ "doYouWorkInDescription": "TBD",
245
+ "workAddress": "Work Address"
246
+ },
247
+ "alternateContact": {
248
+ "type": {
249
+ "title": "Is there someone else you'd like to authorize us to contact if we can't reach you?",
250
+ "description": "By providing alternate contact, you are allowing us to discuss information on your application with them.",
251
+ "label": "Alternate Contact",
252
+ "options": {
253
+ "familyMember": "Family member",
254
+ "friend": "Friend",
255
+ "caseManager": "Case manager or housing counselor",
256
+ "other": "Other",
257
+ "noContact": "I don't have an alternate contact"
258
+ },
259
+ "otherTypeFormPlaceholder": "What is your relationship?",
260
+ "otherTypeValidationErrorMessage": "Please enter relationship type",
261
+ "validationErrorMessage": "Please select an alternate contact"
262
+ },
263
+ "name": {
264
+ "title": "Who is your alternate contact?",
265
+ "alternateContactFormLabel": "Name of alternate contact",
266
+ "caseManagerAgencyFormLabel": "Where does your case manager or housing counselor work?",
267
+ "caseManagerAgencyFormPlaceHolder": "Agency",
268
+ "caseManagerAgencyValidationErrorMessage": "Please enter an agency"
269
+ },
270
+ "contact": {
271
+ "title": "Let us know how to reach your alternate contact",
272
+ "description": "We'll only use this information to contact them about your application.",
273
+ "phoneNumberFormLabel": "Contact phone number",
274
+ "emailAddressFormLabel": "Contact email address",
275
+ "contactMailingAddressLabel": "Contact mailing address",
276
+ "contactMailingAddressHelperText": "Choose an address where they can receive updates and materials about your application"
277
+ }
278
+ },
279
+ "household": {
280
+ "assistanceUrl": "https://exygy.com/",
281
+ "dontQualifyHeader": "Unfortunately it appears you do not qualify for this listing.",
282
+ "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.",
283
+ "addMembers": {
284
+ "addHouseholdMember": "+ Add Household Member",
285
+ "done": "Done adding people",
286
+ "title": "Tell us about your household.",
287
+ "doubleCheck": "Please double-check the information for each household member."
288
+ },
289
+ "householdMember": "Household Member",
290
+ "householdMembers": "Household Members",
291
+ "liveAlone": {
292
+ "title": "Next we would like to know about the others who will live with you in the unit",
293
+ "willLiveAlone": "I will live alone",
294
+ "liveWithOtherPeople": "Other people will live with me"
295
+ },
296
+ "preferredUnit": {
297
+ "preferredUnitType": "Preferred Unit Type",
298
+ "title": "What unit sizes are you interested in?",
299
+ "subTitle": "Your selected unit type will be subject to availability.",
300
+ "legend": "Preferred unit type",
301
+ "optionsLabel": "Check all that apply:",
302
+ "options": {
303
+ "studio": "Studio",
304
+ "oneBedroom": "1 Bedroom",
305
+ "twoBedroom": "2 Bedroom",
306
+ "threeBedroom": "3 Bedroom",
307
+ "moreThanThreeBedroom": "3+ Bedroom"
308
+ }
309
+ },
310
+ "member": {
311
+ "cancelAddingThisPerson": "Cancel adding this person",
312
+ "deleteThisPerson": "Delete this person",
313
+ "dateOfBirth": "Date of Birth",
314
+ "name": "Household member's name",
315
+ "haveSameAddress": "Do they have same address as you?",
316
+ "whatIsTheirRelationship": "What is their relationship to you?",
317
+ "saveHouseholdMember": "Save household member",
318
+ "subTitle": "You will have an opportunity to add more household members on the next screen",
319
+ "title": "Tell us about this person",
320
+ "updateHouseholdMember": "Update Household Member",
321
+ "whatReletionship": "What is their relationship to you",
322
+ "workInRegion": "Do they work in %{county} County?",
323
+ "workInRegionNote": "TBD"
324
+ },
325
+ "membersInfo": {
326
+ "title": "Before adding other people, make sure that they aren't named on any other application for this listing."
327
+ },
328
+ "primaryApplicant": "Primary Applicant"
329
+ },
330
+ "ada": {
331
+ "label": "ADA Accessible Units",
332
+ "title": "Do you or anyone in your household need any of the following ADA accessibility features?",
333
+ "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.",
334
+ "mobility": "For Mobility Impairments",
335
+ "vision": "For Vision Impairments",
336
+ "hearing": "For Hearing Impairments"
337
+ },
338
+ "financial": {
339
+ "income": {
340
+ "title": "Let's move to income.",
341
+ "instruction1": "Add up your total gross (pre-tax) household income from wages, benefits and other sources from all household members.",
342
+ "instruction2": "You only need to provide an estimated total right now. The actual total will be calculated if you are selected.",
343
+ "prompt": "What is your household total pre-tax income?",
344
+ "placeholder": "Total all of your income sources",
345
+ "legend": "Income frequency",
346
+ "validationError": {
347
+ "title": "Unfortunately it appears you do not qualify for this listing.",
348
+ "reason": {
349
+ "low": "Your household income is too low.",
350
+ "high": "Your household income is too high."
351
+ },
352
+ "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.",
353
+ "instruction2": "If the information you entered is accurate, we encourage you to check back in the future as more properties become available."
354
+ }
355
+ },
356
+ "vouchers": {
357
+ "title": "Do you or anyone on this application receive any of the following?",
358
+ "housingVouchers": {
359
+ "strong": "Housing vouchers",
360
+ "text": "like Section 8"
361
+ },
362
+ "nonTaxableIncome": {
363
+ "strong": "Non-taxable income",
364
+ "text": "like SSI, SSDI, child support payments, or worker's compensation benefits"
365
+ },
366
+ "rentalSubsidies": {
367
+ "strong": "Rental subsidies",
368
+ "text": "like VASH, HSA, HOPWA, Catholic Charities, AIDS Foundation, etc."
369
+ },
370
+ "legend": "Housing vouchers, nontaxable income or rental subsidies"
371
+ }
372
+ },
373
+ "preferences": {
374
+ "title": "Your household may qualify for the following housing preferences.",
375
+ "preamble": "If you qualify for this preference, you'll get a higher ranking.",
376
+ "selectBelow": "If you have one of these housing preferences, select it below:",
377
+ "dontWant": "I don't want these preferences",
378
+ "stillHaveOpportunity": "You'll still have the opportunity to claim other preferences.",
379
+ "youHaveClaimed": "You have claimed:",
380
+ "liveWork": {
381
+ "title": "Live or Work in %{county} County?",
382
+ "live": {
383
+ "label": "Live in %{county} County Preference",
384
+ "description": "Live in %{county} copy goes here…",
385
+ "link": "http://domain.com"
386
+ },
387
+ "work": {
388
+ "label": "Work in %{county} County Preference",
389
+ "description": "Work in %{county} copy goes here…",
390
+ "link": "http://domain.com"
391
+ }
392
+ },
393
+ "PBV": {
394
+ "title": "%{county} copy goes here…",
395
+ "residency": {
396
+ "label": "Residency",
397
+ "description": "%{county} copy goes here…"
398
+ },
399
+ "family": {
400
+ "label": "Family",
401
+ "description": "%{county} copy goes here…"
402
+ },
403
+ "veteran": {
404
+ "label": "Veteran",
405
+ "description": "%{county} copy goes here…"
406
+ },
407
+ "homeless": {
408
+ "label": "Homeless",
409
+ "description": "%{county} copy goes here…"
410
+ },
411
+ "noneApplyButConsider": {
412
+ "label": "None of these preferences apply to me, but I would like to be considered"
413
+ },
414
+ "doNotConsider": {
415
+ "label": "I don't want to be considered for [housing authority] project-based voucher units"
416
+ }
417
+ },
418
+ "HOPWA": {
419
+ "title": "Housing Opportunities for Persons with AIDS",
420
+ "hopwa": {
421
+ "label": "Housing Opportunities for Persons with AIDS",
422
+ "description": "%{county} copy goes here…"
423
+ },
424
+ "doNotConsider": {
425
+ "label": "I don't want to be considered"
426
+ }
427
+ },
428
+ "displacedTenant": {
429
+ "title": "Displaced Tenant Housing Preference",
430
+ "whichHouseholdMember": "Which household member is claiming this preference?",
431
+ "whatAddress": "What address was the household member displaced from?",
432
+ "general": {
433
+ "label": "Displaced Tenant Housing Preference",
434
+ "description": "Displaced Tenant copy goes here…",
435
+ "link": "http://domain.com"
436
+ },
437
+ "missionCorridor": {
438
+ "label": "Mission Corridor",
439
+ "description": "Mission Corridor copy goes here…"
440
+ }
441
+ },
442
+ "general": {
443
+ "title": "Based on the information you have entered, your household has not claimed any housing preferences.",
444
+ "preamble": "You will be in the general pool of applicants."
445
+ },
446
+ "options": {
447
+ "address": "Displaced Address",
448
+ "name": "Claimant"
449
+ }
450
+ },
451
+ "review": {
452
+ "takeAMomentToReview": "Take a moment to review your information before submitting your application.",
453
+ "sameAddressAsApplicant": "Same Address as Applicant",
454
+ "noAdditionalMembers": "No additional household members",
455
+ "householdDetails": "Household Details",
456
+ "voucherOrSubsidy": "Housing Voucher or Rental Subsidy",
457
+ "lastChanceToEdit": "This is your last chance to edit before submitting.",
458
+ "terms": {
459
+ "title": "Terms",
460
+ "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>",
461
+ "confirmCheckboxText": "I agree and understand that I cannot change anything after I submit."
462
+ },
463
+ "demographics": {
464
+ "title": "Help us ensure we are meeting our goal to serve all people.",
465
+ "subTitle": "These questions are optional and won't affect your eligibility for housing. Your answers will be kept private.",
466
+ "ethnicityLabel": "Which best describes your ethnicity?",
467
+ "raceLabel": "Which best describes your race?",
468
+ "genderLabel": "What is your gender?",
469
+ "genderInfo": "Select one that best describes your current gender identity.",
470
+ "sexualOrientationLabel": "How do you describe your sexual orientation or sexual identity?",
471
+ "howDidYouHearLabel": "How did you hear about this listing?",
472
+ "ethnicityOptions": {
473
+ "hispanicLatino": "Hispanic / Latino",
474
+ "notHispanicLatino": "Not Hispanic / Latino"
475
+ },
476
+ "raceOptions": {
477
+ "americanIndianAlaskanNative": "American Indian / Alaskan Native",
478
+ "asian": "Asian",
479
+ "blackAfricanAmerican": "Black / African American",
480
+ "nativeHawaiianOtherPacificIslander": "Native Hawaiian / Other Pacific Islander",
481
+ "white": "White",
482
+ "americanIndianAlaskanNativeAndBlackAfricanAmerican": "American Indian / Alaskan Native and Black/African American",
483
+ "americanIndianAlaskanNativeAndWhite": "American Indian / Alaskan Native and White",
484
+ "asianAndWhite": "Asian and White",
485
+ "blackAfricanAmericanAndWhite": "Black / African American and White",
486
+ "otherMutliracial": "Other / Mutliracial"
487
+ },
488
+ "genderOptions": {
489
+ "female": "Female",
490
+ "male": "Male",
491
+ "genderqueerGenderNon-Binary": "Genderqueer / Gender Non-Binary",
492
+ "transFemale": "Trans Female",
493
+ "transMale": "Trans Male",
494
+ "notListed": "Not Listed"
495
+ },
496
+ "sexualOrientationOptions": {
497
+ "bisexual": "Bisexual",
498
+ "gayLesbianSameGenderLoving": "Gay / Lesbian / Same-Gender Loving",
499
+ "questioningUnsure": "Questioning / Unsure",
500
+ "straightHeterosexual": "Straight / Heterosexual",
501
+ "notListed": "Not Listed"
502
+ },
503
+ "howDidYouHearOptions": {
504
+ "alamedaCountyHCDWebsite": "Alameda County HCD Website",
505
+ "developerWebsite": "Developer Website",
506
+ "flyer": "Flyer",
507
+ "emailAlert": "Email Alert",
508
+ "friend": "Friend",
509
+ "housingCounselor": "Housing Counselor",
510
+ "radioAd": "Radio Ad",
511
+ "busAd": "Bus Ad",
512
+ "other": "Other"
513
+ }
514
+ },
515
+ "confirmation": {
516
+ "title": "Thanks. We have received your application for ",
517
+ "lotteryNumber": "Here's your application confirmation number",
518
+ "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.",
519
+ "whatExpectTitle": "What to expect next",
520
+ "whatExpectFirstParagraph": {
521
+ "held": "The lottery will be held on ",
522
+ "attend": " You do not need to attend the housing lottery. Results will be posted ",
523
+ "listing": "on the listing. ",
524
+ "refer": "Please refer to the listing for the lottery results date."
525
+ },
526
+ "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.",
527
+ "doNotSubmitTitle": "Do not submit another application for this listing.",
528
+ "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.",
529
+ "createAccountTitle": "Would you like to create an account?",
530
+ "createAccountParagraph": "Creating an account will save your information for future applications, and you can check the status of this application anytime.",
531
+ "imdone": "No thanks, I'm done.",
532
+ "browseMore": "Browse more listings",
533
+ "print": "View submitted application and print a copy."
534
+ }
535
+ },
536
+ "confirmation": {
537
+ "viewOriginalListing": "View the original listing",
538
+ "informationSubmittedTitle": "Here's the information you submitted.",
539
+ "submitted": "Submitted: ",
540
+ "lotteryNumber": "Your confirmation number",
541
+ "preferences": "Preferences",
542
+ "generalLottery": "Based on information you have entered, your household has not claimed any housing lottery preferences. You will be in the general lottery.",
543
+ "printCopy": "Print a copy for your records"
544
+ },
545
+ "start": {
546
+ "whatToExpect": {
547
+ "title": "Here's what to expect from this application.",
548
+ "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.",
549
+ "info2": "Please be aware that each household member can only appear on one application for each listing.",
550
+ "info3": "Any fraudulent statements will cause your application to be removed."
551
+ }
552
+ },
553
+ "timeout": {
554
+ "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.",
555
+ "action": "Continue working",
556
+ "afterMessage": "We care about your security. We ended your session due to inactivity. Please start a new application to continue."
557
+ },
558
+ "continueApplication": "Continue Application",
559
+ "applicationNeverSubmitted": "Your application was never submitted",
560
+ "deleteThisApplication": "Delete this application?",
561
+ "deleteThisMember": "Delete this member?",
562
+ "deleteMemberDescription": "Do you really want to delete this member?",
563
+ "deleteApplicationDescription": "Deleting this application means you will lose all the information you've entered.",
564
+ "edited": "Edited",
565
+ "status": "Status",
566
+ "statuses": {
567
+ "inProgress": "In Progress",
568
+ "neverSubmitted": "Never Submitted",
569
+ "submitted": "Submitted"
570
+ },
571
+ "viewApplication": "View Application",
572
+ "yourLotteryNumber": "Your confirmation number is"
573
+ },
574
+ "users": {
575
+ "confirmed": "Confirmed",
576
+ "unconfirmed": "Unconfirmed",
577
+ "totalUsers": "total users",
578
+ "administrator": "Administrator",
579
+ "partner": "Partner"
580
+ },
581
+ "flags": {
582
+ "flaggedSet": "Flagged Set",
583
+ "ruleName": "Rule Name",
584
+ "pendingReview": "Pending Review",
585
+ "totalSets": "Total Sets",
586
+ "resolveFlag": "Resolve Flag",
587
+ "markedAsDuplicate": "%{quantity} applications marked as duplicate"
588
+ },
589
+ "authentication": {
590
+ "forgotPassword": {
591
+ "changePassword": "Change Password",
592
+ "sendEmail": "Send email",
593
+ "success": "We've sent you an email. You'll receive an email with a link to reset your password.",
594
+ "errors": {
595
+ "tokenExpired": "Reset password token expired. Please request for a new one.",
596
+ "tokenMissing": "Token not found. Please request for a new one.",
597
+ "generic": "There was an error. Please try again, or contact support for help.",
598
+ "emailNotFound": "Email not found. Please make sure your email has an account with us and is confirmed."
599
+ }
600
+ },
601
+ "timeout": {
602
+ "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.",
603
+ "action": "Stay logged in",
604
+ "signOutMessage": "We care about your security. We logged you out due to inactivity. Please sign in to continue."
605
+ },
606
+ "signIn": {
607
+ "loginError": "Please enter a valid email address",
608
+ "passwordError": "Please enter a valid password",
609
+ "cantFindAccount": "We couldn't find an account with that email address/password.",
610
+ "error": "There was an error signing you in",
611
+ "errorGenericMessage": "Please try again, or contact support for help.",
612
+ "forgotPassword": "Forgot password?",
613
+ "success": "Welcome back, %{name}!"
614
+ },
615
+ "createAccount": {
616
+ "accountConfirmed": "Your account was successfully confirmed.",
617
+ "anEmailHasBeenSent": "An email has been sent to %{email}",
618
+ "confirmationInstruction": "Please click on the link in the email we sent you in order to complete account creation.",
619
+ "confirmationNeeded": "Confirmation needed",
620
+ "emailSent": "Confirmation email has been sent. Please check your inbox.",
621
+ "yourName": "Your Name",
622
+ "firstName": "First Name",
623
+ "middleNameOptional": "Middle Name (optional)",
624
+ "middleName": "Middle Name",
625
+ "lastName": "Last Name",
626
+ "yourDateOfBirth": "Your Date of Birth",
627
+ "email": "Email",
628
+ "emailPrivacy": "We will only use your email address to contact you about your application.",
629
+ "reEnterEmail": "Re-enter email address",
630
+ "reEnterPassword": "Re-enter your password",
631
+ "resendTheEmail": "Resend the email",
632
+ "linkExpired": "Your link has expired",
633
+ "mustBe8Chars": "Must be 8 characters",
634
+ "password": "Password",
635
+ "passwordInfo": "Must be at least 8 characters and include at least 1 letter and at least one number.",
636
+ "resendEmailInfo": "Please click on the link in the email we send you within 24 hours in order to complete account creation.",
637
+ "resendAnEmailTo": "Resend an email to",
638
+ "errors": {
639
+ "accountConfirmed": "Your account is already confirmed.",
640
+ "errorSaving": "Oops! Looks like something went wrong. Please try again. \n\nContact your housing department if you're still experiencing issues.",
641
+ "emailInUse": "Email is already in use",
642
+ "emailMismatch": "The emails do not match",
643
+ "emailNotFound": "Email not found. Please register first.",
644
+ "passwordMismatch": "The passwords do not match",
645
+ "passwordTooWeak": "Password is too weak. Must be at least 8 characters and include at least 1 letter and at least one number.",
646
+ "tokenExpired": "Your link has expired.",
647
+ "tokenMissing": "Wrong token provided."
648
+ }
649
+ },
650
+ "signOut": {
651
+ "success": "You have successfully logged out of your account."
652
+ }
653
+ },
654
+ "config": {
655
+ "routePrefix": ""
656
+ },
657
+ "errors": {
658
+ "alert": {
659
+ "badRequest": "Oops! Looks like something went wrong. Please try again. \n\nContact your housing department if you're still experiencing issues.",
660
+ "timeoutPleaseTryAgain": "Oops! Looks like something went wrong. Please try again."
661
+ },
662
+ "notFound": {
663
+ "title": "Page Not Found",
664
+ "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."
665
+ },
666
+ "unauthorized": {
667
+ "title": "Unauthorized",
668
+ "message": "Uh oh, you are not allowed to access this page."
669
+ },
670
+ "agreeError": "You must agree to the terms in order to continue",
671
+ "firstNameError": "Please enter a First Name",
672
+ "lastNameError": "Please enter a Last Name",
673
+ "dateOfBirthError": "Please enter a valid Date of Birth",
674
+ "dateOfBirthErrorAge": "Please enter a valid Date of Birth, must be 18 or older",
675
+ "emailAddressError": "Please enter an email address",
676
+ "phoneNumberError": "Please enter a phone number",
677
+ "phoneNumberTypeError": "Please enter a phone number type",
678
+ "streetError": "Please enter an address",
679
+ "timeError": "Please enter a valid time",
680
+ "cityError": "Please enter a city",
681
+ "stateError": "Please enter a state",
682
+ "zipCodeError": "Please enter a zipcode",
683
+ "errorsToResolve": "There are errors you'll need to resolve before moving on.",
684
+ "numberError": "Please enter a valid number greater than 0.",
685
+ "selectAllThatApply": "Please select all that apply.",
686
+ "selectAtLeastOne": "Please select at least one option.",
687
+ "selectAnOption": "Please select an option.",
688
+ "selectOption": "Please select one of the options above.",
689
+ "urlError": "Please enter a valid url",
690
+ "householdTooBig": "Your household size is too big.",
691
+ "householdTooSmall": "Your household size is too small.",
692
+ "dateError": "Please enter a valid date",
693
+ "rateLimitExceeded": "Rate limit exceeded, try again later.",
694
+ "requiredFieldError": "This field is required."
695
+ },
696
+ "footer": {
697
+ "contact": "Contact",
698
+ "disclaimer": "Disclaimer",
699
+ "forGeneralQuestions": "For general program inquiries, you may call us at 000-000-0000.",
700
+ "giveFeedback": "Give Feedback",
701
+ "privacyPolicy": "Privacy Policy",
702
+ "copyright": "Demonstration County © 2020 • All Rights Reserved"
703
+ },
704
+ "housingCounselors": {
705
+ "subtitle": "Talk with a local housing counselor specific to your needs.",
706
+ "languageServices": "Language Services: ",
707
+ "call": "Call %{number}",
708
+ "visitWebsite": "Visit %{name}"
709
+ },
710
+ "languages": {
711
+ "en": "English",
712
+ "es": "Español",
713
+ "zh": "中文",
714
+ "vi": "Tiếng Việt"
715
+ },
716
+ "leasingAgent": {
717
+ "contact": "Contact Leasing Agent",
718
+ "dueToHighCallVolume": "Due to high call volume you may hear a message.",
719
+ "name": "Leasing Agent Name",
720
+ "namePlaceholder": "Full Name",
721
+ "title": "Leasing Agent Title",
722
+ "officeHours": "Office Hours",
723
+ "officeHoursPlaceholder": "ex: 9:00am - 5:00pm, Monday to Friday"
724
+ },
725
+ "listings": {
726
+ "error": "There was an issue submitting the form.",
727
+ "closeThisListing": "Do you really want to close this listing?",
728
+ "active": "Accepting Applications",
729
+ "pending": "Coming Soon",
730
+ "closed": "Closed",
731
+ "actions": {
732
+ "publish": "Publish",
733
+ "draft": "Save as Draft",
734
+ "preview": "Preview",
735
+ "close": "Close",
736
+ "viewListing": "View listing",
737
+ "unpublish": "Unpublish",
738
+ "postResults": "Post Results",
739
+ "resultsPosted": "Results Posted",
740
+ "previewLotteryResults": "Preview Lottery Results"
741
+ },
742
+ "activePreferences": "Active Preferences",
743
+ "addListing": "Add Listing",
744
+ "addPaperApplication": "Add Paper Application",
745
+ "addPhoto": "Add Photo",
746
+ "addPreference": "Add Preference",
747
+ "addPreferences": "Add Preferences",
748
+ "additionalApplicationSubmissionNotes": "Additional Application Submission Notes",
749
+ "additionalInformation": "Additional Information",
750
+ "allUnits": "All Units",
751
+ "allUnitsReservedFor": "All units reserved for %{type}",
752
+ "annualIncome": "%{income} per year",
753
+ "annualIncomeRange": "%{from} to %{to} per year",
754
+ "applicationTitle": "Application Data",
755
+ "applicationAddress": "Address",
756
+ "applicationDeadline": "Application Due Date",
757
+ "applicationDueTime": "Application Due Time",
758
+ "applicationFCFS": "First Come First Serve",
759
+ "applicationFee": "Application Fee",
760
+ "applicationFeeDueAt": "Due at interview",
761
+ "applicationOpenPeriod": "Applications Open",
762
+ "applicationPerApplicantAgeDescription": "per applicant age 18 and over",
763
+ "applicationPickupQuestion": "Can applications be picked up?",
764
+ "applicationsClosed": "Applications Closed",
765
+ "applicationDropOffQuestion": "Can applications be dropped off?",
766
+ "apply": {
767
+ "applicationsMustBeReceivedByDeadline": "Applications must be received by the deadline and postmarks will not be considered.",
768
+ "applicationWillBeAvailableOn": "Application will be available for download and pick up on %{openDate}",
769
+ "applyOnline": "Apply Online",
770
+ "downloadApplication": "Download Application",
771
+ "dropOffApplication": "Drop Off Application",
772
+ "dropOffApplicationOrMail": "Drop Off Application or Send by US Mail",
773
+ "getAPaperApplication": "Get a Paper Application",
774
+ "howToApply": "How to Apply",
775
+ "paperApplicationsMustBeMailed": "Paper applications must be sent by US Mail and cannot be submitted in person.",
776
+ "pickUpAnApplication": "Pick up an application",
777
+ "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.",
778
+ "sendByUsMail": "Send Application by US Mail",
779
+ "submitAPaperApplication": "Submit a Paper Application"
780
+ },
781
+ "atAnotherAddress": "At another address",
782
+ "atLeasingAgentAddress": "At the leasing agent address",
783
+ "atMailingAddress": "At the mailing address",
784
+ "availableAndWaitlist": "Available Units & Open Waitlist",
785
+ "availableUnits": "Available Units",
786
+ "availableUnitsAndWaitlist": "Available units and waitlist",
787
+ "availableUnitsAndWaitlistDesc": "Once applicants fill all available units, additional applicants will be placed on the waitlist for <span class='t-italic'>%{number} units</span>",
788
+ "bath": "bath",
789
+ "browseListings": "Browse Listings",
790
+ "buildingImageAltText": "A picture of the building",
791
+ "closedListings": "Closed Listings",
792
+ "comingSoon": "Coming Soon",
793
+ "confirmedPreferenceList": "Confirmed %{preference} List",
794
+ "creditHistory": "Credit History",
795
+ "criminalBackground": "Criminal Background",
796
+ "customOnlineApplicationUrl": "Custom Online Application URL",
797
+ "deleteListingDescription": "Deleting this listing means you will lose all the information you've entered.",
798
+ "depositMax": "Deposit Max",
799
+ "depositMin": "Deposit Min",
800
+ "depositOrMonthsRent": "or one month's rent",
801
+ "depositMayBeHigherForLowerCredit": "May be higher for lower credit scores",
802
+ "details": {
803
+ "listingData": "Listing Data",
804
+ "createdDate": "Date Created",
805
+ "updatedDate": "Date Updated",
806
+ "id": "Listing ID"
807
+ },
808
+ "developmentalDisabilities": "Persons with developmental disabilities",
809
+ "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.",
810
+ "dropOffAddress": "Drop Off Address",
811
+ "dueDateQuestion": "Is there an application due date?",
812
+ "editPreferences": "Edit Preferences",
813
+ "enterLotteryForWaitlist": "Submit an application for an open slot on the waitlist for %{units} units.",
814
+ "firstComeFirstServe": "First come first serve",
815
+ "forIncomeCalculations": "For income calculations, household size includes everyone (all ages) living in the unit.",
816
+ "forIncomeCalculationsBMR": "Income calculations are based on unit type",
817
+ "hideClosedListings": "Hide Closed Listings",
818
+ "householdMaximumIncome": "Household Maximum Income",
819
+ "householdSize": "Household Size",
820
+ "importantProgramRules": "Important Program Rules",
821
+ "includesPriorityUnits": "Includes Priority Units for %{priorities}",
822
+ "isDigitalApplication": "Is there a digital application?",
823
+ "isPaperApplication": "Is there a paper application?",
824
+ "isReferralOpportunity": "Is there a referral opportunity?",
825
+ "latitude": "Latitude",
826
+ "leasingAgentAddress": "Leasing Agent Address",
827
+ "listingPreviewOnly": "This is a listing preview only.",
828
+ "listingStatus": {
829
+ "active": "Open",
830
+ "pending": "Draft",
831
+ "closed": "Closed"
832
+ },
833
+ "listingSubmitted": "Listing Submitted",
834
+ "listingUpdated": "Listing Updated",
835
+ "longitude": "Longitude",
836
+ "lottery": "Lottery",
837
+ "lotteryDateNotes": "Lottery Date Notes",
838
+ "lotteryDateQuestion": "When will the lottery be run?",
839
+ "lotteryEndTime": "Lottery End Time",
840
+ "lotteryResults": {
841
+ "completeResultsWillBePosted": "Complete lottery results will be posted soon.",
842
+ "downloadResults": "Download Results",
843
+ "header": "Lottery Results"
844
+ },
845
+ "lotteryStartTime": "Lottery Start Time",
846
+ "mapPinAutomaticDescription": "Map pin position is based on the address provided",
847
+ "mapPinCustomDescription": "Drag the pin to update the marker location",
848
+ "mapPinPosition": "Map Pin Position",
849
+ "mapPreview": "Map Preview",
850
+ "mapPreviewNoAddress": "Enter an address to preview the map",
851
+ "maxIncomeMonth": "Maximum Income / Month",
852
+ "maxIncomeYear": "Maximum Income / Year",
853
+ "monthlyIncome": "%{income} per month",
854
+ "monthlyIncomeRange": "%{from} to %{to} per month",
855
+ "moreBuildingSelectionCriteria": "Find out more about Building Selection Criteria",
856
+ "newListing": "New Listing",
857
+ "noAvailableUnits": "There are no available units at this time.",
858
+ "noOpenListings": "No listings currently have open applications.",
859
+ "occupancyDescriptionAllSro": "Occupancy for this building is limited to 1 person per unit.",
860
+ "occupancyDescriptionNoSro": "Occupancy limits for this building are based on unit type.",
861
+ "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.",
862
+ "openHouseEvent": {
863
+ "header": "Open Houses",
864
+ "seeVideo": "See Video"
865
+ },
866
+ "paperDifferentAddress": "Paper applications are mailed to another address",
867
+ "percentAMIUnit": "%{percent}% AMI Unit",
868
+ "pickupAddress": "Pickup Address",
869
+ "postmarkByDate": "Postmark by Date",
870
+ "postmarksConsideredQuestion": "Are postmarks considered?",
871
+ "priorityUnits": "Priority Units",
872
+ "priorityUnitsDescription": "This building has units set aside if any of the following apply to you or someone in your household:",
873
+ "title": "Property Data",
874
+ "developer": "Housing Developer",
875
+ "buildingAddress": "Address",
876
+ "publicLottery": {
877
+ "header": "Public Lottery",
878
+ "seeVideo": "See Video"
879
+ },
880
+ "referralContactPhone": "Referral Contact Phone",
881
+ "referralSummary": "Referral Summary",
882
+ "remainingUnitsAfterPreferenceConsideration": "After all preference holders have been considered, any remaining units will be available to other qualified applicants.",
883
+ "rentalHistory": "Rental History",
884
+ "requiredDocuments": "Required Documents",
885
+ "reservedCommunityBuilding": "%{type} Building",
886
+ "reservedCommunityDescription": "Reserved Community Description",
887
+ "reservedCommunitySeniorTitle": "Senior Building",
888
+ "reservedCommunityTitleDefault": "Reserved Building",
889
+ "reservedCommunityTypes": {
890
+ "senior": "Seniors",
891
+ "senior55": "Seniors 55+",
892
+ "senior62": "Seniors 62+",
893
+ "specialNeeds": "Special Needs"
894
+ },
895
+ "reservedFor": "Reserved for %{type}",
896
+ "reservedCommunityType": "Reserved Community Type",
897
+ "reservedTypePlural": {
898
+ "family": "families",
899
+ "senior": "seniors",
900
+ "veteran": "veterans",
901
+ "specialNeeds": "special needs"
902
+ },
903
+ "reservedUnits": "Reserved Units",
904
+ "reservedUnitsDescription": "In order to qualify for these units one of the following must apply to you or someone in your household:",
905
+ "reservedUnitsForWhoAre": "Reserved for %{communityType} who are %{reservedType}",
906
+ "reviewOrderQuestion": "How is the application review order determined?",
907
+ "sections": {
908
+ "additionalDetails": "Additional Details",
909
+ "additionalDetailsSubtitle": "Are there any other required documents and selection criteria?",
910
+ "additionalEligibilitySubtext": "Let applicants know any other rules of the building.",
911
+ "additionalEligibilitySubtitle": "Applicants must also qualify under the rules of the building.",
912
+ "additionalEligibilityTitle": "Additional Eligibility Rules",
913
+ "additionalFees": "Additional Fees",
914
+ "additionalFeesSubtitle": "Tell us about any other fees required by the applicant.",
915
+ "additionalInformationSubtitle": "Required documents and selection criteria",
916
+ "additionalInformationTitle": "Additional Information",
917
+ "applicationAddressSubtitle": "In the event of paper applications, where do you want applications dropped off or mailed?",
918
+ "applicationAddressTitle": "Application Address",
919
+ "applicationTypesTitle": "Application Types",
920
+ "applicationTypesSubtitle": "Configure the online application and upload paper application forms.",
921
+ "buildingDetailsSubtitle": "Tell us where the building is located.",
922
+ "buildingDetailsTitle": "Building Details",
923
+ "buildingFeaturesSubtitle": "Provide details about any amenities and unit details.",
924
+ "buildingFeaturesTitle": "Building Features",
925
+ "applicationDatesTitle": "Application Dates",
926
+ "applicationDatesSubtitle": "Tell us about important dates related to this listing.",
927
+ "communityType": "Community Type",
928
+ "communityTypeSubtitle": "Are there any requirements that applicants need to meet?",
929
+ "costsNotIncluded": "Costs Not Included",
930
+ "eligibilitySubtitle": "Income, occupancy, preferences, and subsidies",
931
+ "eligibilityTitle": "Eligibility",
932
+ "featuresSubtitle": "Amenities, unit details and additional fees",
933
+ "featuresTitle": "Features",
934
+ "housingPreferencesSubtitle": "Preference holders will be given highest ranking.",
935
+ "housingPreferencesSubtext": "Tell us about any preferences that will be used to rank qualifying applicants.",
936
+ "housingPreferencesTitle": "Housing Preferences",
937
+ "introSubtitle": "Let's get started with some basic information about your listing.",
938
+ "introTitle": "Listing Intro",
939
+ "leasingAgentSubtitle": "Provide details about the leasing agent who will be managing the application process.",
940
+ "leasingAgentTitle": "Leasing Agent",
941
+ "neighborhoodSubtitle": "Location and transportation",
942
+ "neighborhoodTitle": "Neighborhood",
943
+ "photoTitle": "Listing Photo",
944
+ "photoSubtitle": "Upload an image for the listing that will be used as a preview.",
945
+ "processSubtitle": "Important dates and contact information",
946
+ "processTitle": "Process",
947
+ "rankingsResultsTitle": "Rankings & Results",
948
+ "rankingsResultsSubtitle": "Provide details about what happens to applications once they are submitted.",
949
+ "rentalAssistanceSubtitle": "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.",
950
+ "rentalAssistanceTitle": "Rental Assistance",
951
+ "addOpenHouse": "Add Open House",
952
+ "openHouse": "Open House"
953
+ },
954
+ "seeMaximumIncomeInformation": "See Maximum Income Information",
955
+ "seePreferenceInformation": "See Preference Information",
956
+ "seeUnitInformation": "See Unit Information",
957
+ "selectPreferences": "Select Preferences",
958
+ "showClosedListings": "Show Closed Listings",
959
+ "singleRoomOccupancy": "Single Room Occupancy",
960
+ "singleRoomOccupancyDescription": "This property offers single rooms for one person only. Tenants may share bathrooms, and sometimes kitchen facilities.",
961
+ "specialNotes": "Special Notes",
962
+ "streetAddressOrPOBox": "Street Address or PO Box",
963
+ "totalListings": "Total Listings",
964
+ "unitTypes": {
965
+ "oneBdrm": "1 BR",
966
+ "twoBdrm": "2 BR",
967
+ "threeBdrm": "3 BR",
968
+ "fourBdrm": "4 BR",
969
+ "studio": "Studio",
970
+ "SRO": "Single Room Occupancy"
971
+ },
972
+ "unitsAreFor": "These units are for %{type}.",
973
+ "unitsHaveAccessibilityFeaturesFor": "These units have accessibility features for people with %{type}.",
974
+ "upcomingLotteries": {
975
+ "hide": "Hide Closed Listings",
976
+ "noResults": "There are no closed listings with upcoming lotteries at this time.",
977
+ "show": "Show Closed Listings",
978
+ "title": "Closed Listings"
979
+ },
980
+ "usingCommonDigitalApplication": "Are you using the common digital application?",
981
+ "usingCommonPaperApplication": "Are you using the common paper application?",
982
+ "waitlist": {
983
+ "closed": "Waitlist Closed",
984
+ "currentSizeQuestion": "How many people are on the current list?",
985
+ "label": "Waitlist",
986
+ "isOpen": "Waitlist is open",
987
+ "currentSize": "Current Waitlist Size",
988
+ "finalSize": "Final Waitlist Size",
989
+ "maxSize": "Maximum Waitlist Size",
990
+ "maxSizeQuestion": "What is the maximum size of the waitlist?",
991
+ "open": "Open Waitlist",
992
+ "openQuestion": "Is the waitlist open?",
993
+ "openSize": "Number of Openings",
994
+ "openSizeQuestion": "How many spots are open on the list?",
995
+ "openSlots": "Open Waitlist Slots",
996
+ "sizeQuestion": "Do you want to show a waitlist size?",
997
+ "submitAnApplication": "Once ranked applicants fill all available units, the remaining ranked applicants will be placed on a waitlist for those same units.",
998
+ "submitForWaitlist": "Submit an application for an open slot on the waitlist.",
999
+ "unitsAndWaitlist": "Available Units and Waitlist"
1000
+ },
1001
+ "whatToExpectLabel": "Tell the applicant what to expect from the process",
1002
+ "whereDropOffQuestion": "Where are applications dropped off?",
1003
+ "wherePickupQuestion": "Where are applications picked up?",
1004
+ "yearBuilt": "Year Built",
1005
+ "whenApplicationsClose": "When applications close to the public",
1006
+ "cc&r": "Covenants, Conditions and Restrictions (CC&R's)",
1007
+ "cc&rDescription": "The CC&R's explain the rules of the homeowners' association, and restrict how you can modify the property.",
1008
+ "downloadPdf": "Download PDF",
1009
+ "rePricing": "Re-Pricing",
1010
+ "eligibilityNotebook": "Eligibility Notebook",
1011
+ "processInfo": "Process Info",
1012
+ "featuresCards": "Features Cards",
1013
+ "neighborhoodBuildings": "Neighborhood Buildings",
1014
+ "additionalInformationEnvelope": "Additional Information Envelope",
1015
+ "listingName": "Listing Name",
1016
+ "applicationsSubmitted": "Applications Submitted",
1017
+ "listingStatusText": "Listing Status",
1018
+ "applications": "Applications",
1019
+ "unit": {
1020
+ "title": "Unit",
1021
+ "add": "Add Unit",
1022
+ "number": "Unit #",
1023
+ "unitNumber": "Unit Number",
1024
+ "type": "Unit Type",
1025
+ "ami": "AMI",
1026
+ "amiChart": "AMI Chart",
1027
+ "amiPercentage": "Percentage of AMI",
1028
+ "rent": "Rent",
1029
+ "sqft": "SQ FT",
1030
+ "squareFootage": "Square Footage",
1031
+ "priorityType": "ADA",
1032
+ "reservedType": "Reserved",
1033
+ "status": "Status",
1034
+ "unitStatus": "Unit Status",
1035
+ "details": "Details",
1036
+ "numBathrooms": "Number of Bathrooms",
1037
+ "floor": "Unit Floor",
1038
+ "minOccupancy": "Minimum Occupancy",
1039
+ "maxOccupancy": "Max Occupancy",
1040
+ "rentType": "How is Rent Determined?",
1041
+ "fixed": "Fixed amount",
1042
+ "percentage": "% of income",
1043
+ "monthlyRent": "Monthly Rent",
1044
+ "%incomeRent": "Percentage of Income Rent",
1045
+ "accessibilityPriorityType": "Accessibility Priority Type",
1046
+ "unitTypes": "Unit Types",
1047
+ "individualUnits": "Individual Units",
1048
+ "delete": "Delete this Unit",
1049
+ "deleteConf": "Do you really want to delete this unit?",
1050
+ "eligibility": "Eligibility",
1051
+ "statusOptions": {
1052
+ "unknown": "Unknown",
1053
+ "available": "Available",
1054
+ "occupied": "Occupied",
1055
+ "unavailable": "Unavailable"
1056
+ }
1057
+ },
1058
+ "events": {
1059
+ "deleteThisEvent": "Delete this event",
1060
+ "deleteConf": "Do you really want to delete this event?",
1061
+ "openHouseNotes": "Open House Notes"
1062
+ },
1063
+ "units": "Listing Units",
1064
+ "unitsDescription": "Select the building units that are available through the listing.",
1065
+ "unitTypesOrIndividual": "Do you want to show unit types or individual units?"
1066
+ },
1067
+ "lottery": {
1068
+ "applicationsThatQualifyForPreference": "Applications that qualify for this preference will be given a higher priority.",
1069
+ "viewPreferenceList": "View Preference List"
1070
+ },
1071
+ "nav": {
1072
+ "accountSettings": "Account Settings",
1073
+ "browseProperties": "Browse Properties",
1074
+ "getAssistance": "Get Assistance",
1075
+ "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>",
1076
+ "listings": "Listings",
1077
+ "properties": "Properties",
1078
+ "applications": "Applications",
1079
+ "myAccount": "My Account",
1080
+ "myApplications": "My Applications",
1081
+ "myDashboard": "My Dashboard",
1082
+ "mySettings": "My Settings",
1083
+ "signIn": "Sign In",
1084
+ "signOut": "Sign Out",
1085
+ "siteTitle": "Housing Portal",
1086
+ "siteTitlePartners": "Partners Portal",
1087
+ "skip": "Skip to main content",
1088
+ "flags": "Flags",
1089
+ "users": "Users"
1090
+ },
1091
+ "pageTitle": {
1092
+ "additionalResources": "More Housing Opportunities",
1093
+ "disclaimer": "Endorsement Disclaimers",
1094
+ "housingCounselors": "Housing Counselors",
1095
+ "getAssistance": "Get Assistance",
1096
+ "rentalListings": "See Rentals",
1097
+ "rent": "Rent affordable housing",
1098
+ "privacy": "Privacy Policy",
1099
+ "welcomeEnglish": "Welcome",
1100
+ "welcomeSpanish": "Bienvenido",
1101
+ "welcomeVietnamese": "Tiếng Việt"
1102
+ },
1103
+ "pageDescription": {
1104
+ "welcome": "Search and apply for affordable housing on %{regionName}'s Housing Portal",
1105
+ "listing": "Apply for affordable housing at %{listingName} in %{regionName}, built in partnership with Exygy."
1106
+ },
1107
+ "region": {
1108
+ "name": "Local Region"
1109
+ },
1110
+ "states": {
1111
+ "AL": "Alabama",
1112
+ "AK": "Alaska",
1113
+ "AZ": "Arizona",
1114
+ "AR": "Arkansas",
1115
+ "CA": "California",
1116
+ "CO": "Colorado",
1117
+ "CT": "Connecticut",
1118
+ "DE": "Delaware",
1119
+ "DC": "District Of Columbia",
1120
+ "FL": "Florida",
1121
+ "GA": "Georgia",
1122
+ "HI": "Hawaii",
1123
+ "ID": "Idaho",
1124
+ "IL": "Illinois",
1125
+ "IN": "Indiana",
1126
+ "IA": "Iowa",
1127
+ "KS": "Kansas",
1128
+ "KY": "Kentucky",
1129
+ "LA": "Louisiana",
1130
+ "ME": "Maine",
1131
+ "MD": "Maryland",
1132
+ "MA": "Massachusetts",
1133
+ "MI": "Michigan",
1134
+ "MN": "Minnesota",
1135
+ "MS": "Mississippi",
1136
+ "MO": "Missouri",
1137
+ "MT": "Montana",
1138
+ "NE": "Nebraska",
1139
+ "NV": "Nevada",
1140
+ "NH": "New Hampshire",
1141
+ "NJ": "New Jersey",
1142
+ "NM": "New Mexico",
1143
+ "NY": "New York",
1144
+ "NC": "North Carolina",
1145
+ "ND": "North Dakota",
1146
+ "OH": "Ohio",
1147
+ "OK": "Oklahoma",
1148
+ "OR": "Oregon",
1149
+ "PA": "Pennsylvania",
1150
+ "RI": "Rhode Island",
1151
+ "SC": "South Carolina",
1152
+ "SD": "South Dakota",
1153
+ "TN": "Tennessee",
1154
+ "TX": "Texas",
1155
+ "UT": "Utah",
1156
+ "VT": "Vermont",
1157
+ "VA": "Virginia",
1158
+ "WA": "Washington",
1159
+ "WV": "West Virginia",
1160
+ "WI": "Wisconsin",
1161
+ "WY": "Wyoming"
1162
+ },
1163
+ "t": {
1164
+ "areYouSure": "Are you sure?",
1165
+ "addNotes": "Add notes",
1166
+ "at": "at",
1167
+ "additionalPhone": "Additional Phone",
1168
+ "area": "area",
1169
+ "areYouStillWorking": "Are you still working?",
1170
+ "accessibility": "Accessibility",
1171
+ "am": "AM",
1172
+ "availability": "Availability",
1173
+ "automatic": "Automatic",
1174
+ "back": "Back",
1175
+ "built": "Built",
1176
+ "call": "Call",
1177
+ "cancel": "Cancel",
1178
+ "confirm": "Confirm",
1179
+ "chooseFromFolder": "Choose from folder",
1180
+ "custom": "Custom",
1181
+ "day": "Day",
1182
+ "date": "Date",
1183
+ "delete": "Delete",
1184
+ "deposit": "Deposit",
1185
+ "done": "Done",
1186
+ "descriptionTitle": "Description",
1187
+ "description": "Enter Description",
1188
+ "emailAddressPlaceholder": "you@myemail.com",
1189
+ "end": "End",
1190
+ "dragFilesHere": "Drag files here",
1191
+ "dropFilesHere": "Drop files here…",
1192
+ "export": "Export",
1193
+ "enterAmount": "Enter amount",
1194
+ "fileName": "File Name",
1195
+ "filter": "Filter",
1196
+ "edit": "Edit",
1197
+ "email": "Email",
1198
+ "floor": "floor",
1199
+ "floors": "floors",
1200
+ "getDirections": "Get Directions",
1201
+ "hour": "Hour",
1202
+ "household": "Household",
1203
+ "income": "Income",
1204
+ "jumpTo": "Jump to",
1205
+ "jurisdiction": "Jurisdiction",
1206
+ "label": "Label",
1207
+ "language": "Language",
1208
+ "lastUpdated": "Last Updated",
1209
+ "letter": "Letter",
1210
+ "less": "Less",
1211
+ "link": "Link",
1212
+ "listing": "Listings",
1213
+ "loginIsRequired": "Login is required to view this page.",
1214
+ "menu": "Menu",
1215
+ "minimumIncome": "Minimum Income",
1216
+ "minutes": "minutes",
1217
+ "month": "Month",
1218
+ "more": "More",
1219
+ "n/a": "n/a",
1220
+ "name": "Name",
1221
+ "neighborhood": "Neighborhood",
1222
+ "next": "Next",
1223
+ "no": "No",
1224
+ "none": "None",
1225
+ "noneFound": "None found.",
1226
+ "notes": "Notes",
1227
+ "occupancy": "Occupancy",
1228
+ "ok": "OK",
1229
+ "optional": "Optional",
1230
+ "or": "or",
1231
+ "order": "Order",
1232
+ "pageXofY": "Page %{num} of %{total}",
1233
+ "people": "people",
1234
+ "person": "person",
1235
+ "perMonth": "per month",
1236
+ "perYear": "per year",
1237
+ "petsPolicy": "Pets Policy",
1238
+ "phone": "Phone",
1239
+ "phoneNumberPlaceholder": "(555) 555-5555",
1240
+ "pleaseSelectOne": "Please select one.",
1241
+ "pm": "PM",
1242
+ "post": "Post",
1243
+ "preferences": "Preferences",
1244
+ "preview": "Preview",
1245
+ "previous": "Previous",
1246
+ "propertyAmenities": "Property Amenities",
1247
+ "range": "%{from} to %{to}",
1248
+ "readLess": "read less",
1249
+ "readMore": "read more",
1250
+ "relationship": "Relationship",
1251
+ "otherRelationShip": "Other Relationship",
1252
+ "rent": "Rent",
1253
+ "review": "Review",
1254
+ "role": "Role",
1255
+ "secondPhone": "Second Phone",
1256
+ "seconds": "seconds",
1257
+ "seeDetails": "See Details",
1258
+ "seeListing": "See Listing",
1259
+ "selectOne": "Select One",
1260
+ "servicesOffered": "Services Offered",
1261
+ "show": "Show",
1262
+ "showLess": "show less",
1263
+ "showMore": "show more",
1264
+ "skipToMainContent": "Skip to main content",
1265
+ "smokingPolicy": "Smoking Policy",
1266
+ "sort": "Sort",
1267
+ "sqFeet": "sqft",
1268
+ "squareFeet": "square feet",
1269
+ "statusHistory": "Status History",
1270
+ "startTime": "Start Time",
1271
+ "endTime": "End Time",
1272
+ "street": "Street",
1273
+ "submit": "Submit",
1274
+ "submitNew": "Submit & New",
1275
+ "copyNew": "Copy & New",
1276
+ "save": "Save",
1277
+ "saveNew": "Save & New",
1278
+ "saveExit": "Save & Exit",
1279
+ "time": "time",
1280
+ "text": "Text",
1281
+ "to": "to",
1282
+ "unit": "unit",
1283
+ "units": "units",
1284
+ "unitAmenities": "Unit Amenities",
1285
+ "unitFeatures": "Unit Features",
1286
+ "unitType": "Unit Type",
1287
+ "url": "URL",
1288
+ "view": "View",
1289
+ "viewMap": "View Map",
1290
+ "viewOnMap": "View on Map",
1291
+ "website": "Website",
1292
+ "year": "Year",
1293
+ "yes": "Yes",
1294
+ "you": "You"
1295
+ },
1296
+ "welcome": {
1297
+ "allApplicationClosed": "All applications are currently closed, but you can view closed listings.",
1298
+ "seeRentalListings": "See Rentals",
1299
+ "title": "Apply for affordable housing in",
1300
+ "seeMoreOpportunities": "See more rental and ownership housing opportunities",
1301
+ "viewAdditionalHousing": "View Additional Housing Opportunities and Resources"
1302
+ },
1303
+ "whatToExpect": {
1304
+ "label": "What to Expect",
1305
+ "default": "Applicants will be contacted by the property agent in rank order until vacancies are filled. 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. Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents."
1306
+ }
1307
+ }