-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathgeneral.json
More file actions
1169 lines (1169 loc) · 94.2 KB
/
Copy pathgeneral.json
File metadata and controls
1169 lines (1169 loc) · 94.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"account.accountSettings": "Account settings",
"account.accountSettingsSubtitle": "Account settings, email and password",
"account.accountSettingsUpdate": "Update account settings",
"account.allMyApplications": "All my applications",
"account.application.confirmation": "Confirmation",
"account.application.error": "Error",
"account.application.lottery.applicantList": "Out of %{applicants} applicants on this list",
"account.application.lottery.next": "The property manager will contact applicants in preference order. They will start with the highest priority preference. If the property manager contacts you, they will ask you to provide documentation to support what you answered in the application. That documentation could include paystubs, for example. They might also need to gather more information by asking you to complete a supplemental application.",
"account.application.lottery.nextHeader": "What happens next?",
"account.application.lottery.preferences": "Lottery preferences for your application are shown here in priority order. If you do not qualify for any lottery preferences, you will be part of the general lottery category. The general lottery category is the last group processed.",
"account.application.lottery.preferencesButton": "What are lottery preferences?",
"account.application.lottery.preferencesHeader": "Your lottery preference(s)",
"account.application.lottery.preferencesMessage": "These results are based on the information you provided in your application. Preference eligibility is subject to change once your information is verified.",
"account.application.lottery.rawRank": "Raw rank is the basic randomized order of all applications received for the listing before the preferences are applied. For example, if 1,000 applications are submitted, each will be assigned a raw rank of 1 to 1,000.",
"account.application.lottery.rawRankButton": "What is raw rank?",
"account.application.lottery.rawRankHeader": "Your raw rank",
"account.application.lottery.resultsHeader": "Here are your lottery results",
"account.application.lottery.resultsSubheader": "%{applications} applications were submitted for %{units} unit",
"account.application.lottery.resultsSubheaderPlural": "%{applications} applications were submitted for %{units} units",
"account.application.lottery.viewResults": "View lottery results",
"account.application.noAccessError": "You are unauthorized to view this application",
"account.application.noApplicationError": "No application with that ID exists",
"account.application.return": "Return to applications",
"account.applicationsClose": "Applications close:",
"account.closedApplications": "Applications closed",
"account.createAccount": "Create account",
"account.errorFetchingApplications": "Error fetching applications",
"account.haveAnAccount": "Already have an account?",
"account.lotteryDate": "Lottery date:",
"account.lotteryPosted": "Lottery results posted:",
"account.lotteryRun": "Lottery run",
"account.myApplications": "My applications",
"account.myApplicationsSubtitle": "See lottery dates and listings for properties for which you've applied",
"account.myFavorites": "My favorites",
"account.myFavoritesSubtitle": "Save listings and check back for updates",
"account.noApplications": "It looks like you haven't applied to any listings yet.",
"account.noClosedApplications": "The listings you've applied to are either still accepting applications or already have lottery results posted.",
"account.noClosedApplicationsSimplified": "None of the listings you've applied to have closed.",
"account.noFavorites": "It looks like you haven't favorited any listings yet.",
"account.noLotteryApplications": "None of the listings you've applied to have released lottery results.",
"account.noOpenApplications": "None of the listings you've applied to are still accepting applications.",
"account.openApplications": "Accepting applications",
"account.pwdless.code": "Your code",
"account.pwdless.codeNewAlert": "A new code has been sent to %{email}. Be aware, the code will expire in 10 minutes.",
"account.pwdless.continue": "Continue",
"account.pwdless.createMessage": "We sent a code to %{email} to finish signing up. Be aware, the code will expire in 10 minutes.",
"account.pwdless.loginMessage": "If there is an account made with %{email}, we’ll send a code within 10 minutes. If you don’t receive a code, sign in with your password and confirm your email address under account settings.",
"account.pwdless.loginReCaptchaMessage": "You are being asked to verify your identity as an extra layer of security. We sent a code to %{email} to finish logging in. Be aware, the code will expire in 10 minutes.",
"account.pwdless.notReceived": "Didn't receive your code?",
"account.pwdless.resend": "Resend",
"account.pwdless.resendCode": "Resend code",
"account.pwdless.resendCodeButton": "Resend the code",
"account.pwdless.resendCodeHelper": "If there is an account made with %{email}, we’ll send a new code. Be aware, the code will expire in 10 minutes.",
"account.pwdless.signInWithYourPassword": "Sign in with your password",
"account.pwdless.verifyTitle": "Verify that it's you",
"account.reviewTerms": "Review Terms of Use",
"account.reviewTermsHelper": "You must accept the Terms of Use before creating an account.",
"account.settings.alerts.currentPassword": "Invalid current password. Please try again.",
"account.settings.alerts.dobSuccess": "Birthdate update successful",
"account.settings.alerts.emailSuccess": "Please go to your email to confirm this update",
"account.settings.alerts.genericError": "There was an error. Please try again, or contact support for help.",
"account.settings.alerts.nameSuccess": "Name update successful",
"account.settings.alerts.passwordEmpty": "Password fields may not be empty",
"account.settings.alerts.passwordMatch": "New password fields do not match",
"account.settings.alerts.passwordSuccess": "Password update successful",
"account.settings.confirmNewPassword": "Confirm new password",
"account.settings.currentPassword": "Current password",
"account.settings.newPassword": "New password",
"account.settings.passwordRemember": "When changing your password make sure you make note of it so you remember it in the future.",
"account.settings.placeholders.day": "DD",
"account.settings.placeholders.month": "MM",
"account.settings.placeholders.year": "YYYY",
"account.settings.update": "Update",
"account.signUpSaveTime.applyFaster": "Apply faster with saved application details",
"account.signUpSaveTime.checkStatus": "Check on the status of an application at any time",
"account.signUpSaveTime.resetPassword": "Simply reset your password if you forget it",
"account.signUpSaveTime.subTitle": "Having an account will save you time by using saved application details, and allow you to check the status of an application at anytime.",
"account.signUpSaveTime.title": "Sign up quickly and check application status at anytime",
"account.signUpSaveTime.useACode": "Use a code to sign in without a password",
"account.viewAllApplications": "View all my applications",
"account.viewApplications": "View applications",
"account.viewFavorites": "View favorites",
"alert.maintenance": "This site is undergoing scheduled maintenance. We apologize for any inconvenience.",
"application.ada.hearing": "For hearing impairments",
"application.ada.label": "ADA accessible units",
"application.ada.mobility": "For mobility impairments",
"application.ada.other": "For other impairments",
"application.ada.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.",
"application.ada.title": "Do you or anyone in your household need any of the following ADA accessibility features?",
"application.ada.vision": "For vision impairments",
"application.alternateContact.contact.contactMailingAddressHelperText": "Choose an address where they can receive updates and materials about your application",
"application.alternateContact.contact.contactMailingAddressLabel": "Contact mailing address",
"application.alternateContact.contact.description": "We'll only use this information to contact them about your application.",
"application.alternateContact.contact.emailAddressFormLabel": "Contact email address",
"application.alternateContact.contact.phoneNumberFormLabel": "Contact phone number",
"application.alternateContact.contact.title": "Let us know how to reach your alternate contact.",
"application.alternateContact.name.alternateContactFormLabel": "Name of alternate contact",
"application.alternateContact.name.caseManagerAgencyFormLabel": "Where does your case manager or housing counselor work?",
"application.alternateContact.name.caseManagerAgencyFormPlaceHolder": "Agency",
"application.alternateContact.name.caseManagerAgencyValidationErrorMessage": "Please enter an agency",
"application.alternateContact.name.title": "Who is your alternate contact?",
"application.alternateContact.type.description": "By providing alternate contact, you are allowing us to discuss information on your application with them.",
"application.alternateContact.type.label": "Alternate contact",
"application.alternateContact.type.options.caseManager": "Case manager or housing counselor",
"application.alternateContact.type.options.familyMember": "Family member",
"application.alternateContact.type.options.friend": "Friend",
"application.alternateContact.type.options.noContact": "I don't have an alternate contact",
"application.alternateContact.type.options.other": "Other",
"application.alternateContact.type.otherTypeFormPlaceholder": "What is your relationship?",
"application.alternateContact.type.otherTypeValidationErrorMessage": "Please enter relationship type",
"application.alternateContact.type.title": "Is there someone else you'd like to authorize us to contact if we can't reach you?",
"application.alternateContact.type.validationErrorMessage": "Please select an alternate contact",
"application.autofill.prefillYourApplication": "We'll simply pre-fill your application with the following details, and you can make updates as you go.",
"application.autofill.reset": "Reset and start fresh",
"application.autofill.saveTime": "Save time by using the details from your last application",
"application.autofill.start": "Start with these details",
"application.chooseLanguage.chooseYourLanguage": "Choose your language",
"application.chooseLanguage.letsGetStarted": "Let’s get started on your application",
"application.chooseLanguage.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.",
"application.confirmation.informationSubmittedTitle": "Here's the information you submitted.",
"application.confirmation.lotteryNumber": "Your confirmation number",
"application.confirmation.printCopy": "Print a copy for your records",
"application.confirmation.submitted": "Submitted: ",
"application.confirmation.viewOriginalListing": "View the original listing",
"application.contact.additionalPhoneNumber": "I have an additional phone number",
"application.contact.address": "Address",
"application.contact.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.",
"application.contact.apt": "Apt or unit #",
"application.contact.city": "City",
"application.contact.cityName": "City name",
"application.contact.contactPreference": "How do you prefer to be contacted?",
"application.contact.couldntLocateAddress": "We couldn't locate the address you entered. Please confirm it's correct.",
"application.contact.doYouWorkIn": "Do you work in %{county} County?",
"application.contact.doYouWorkInDescription": "TBD",
"application.contact.familyName": "Family name",
"application.contact.fullTimeStudent": "Are you a full-time student?",
"application.contact.givenName": "Given name",
"application.contact.mailingAddress": "Mailing address",
"application.contact.noPhoneNumber": "I don't have a telephone number",
"application.contact.number.subNote": "10-digit, for example 999-999-9999",
"application.contact.number": "Number",
"application.contact.phoneNumberTypes.cell": "Cell",
"application.contact.phoneNumberTypes.home": "Home",
"application.contact.phoneNumberTypes.prompt": "What type of number is this?",
"application.contact.phoneNumberTypes.work": "Work",
"application.contact.preferredContactType": "Preferred contact type",
"application.contact.provideAMailingAddress": "Provide an address where you can receive updates and materials about your application.",
"application.contact.secondNumber": "Second number",
"application.contact.sendMailToMailingAddress": "Send my mail to a different address",
"application.contact.state": "State",
"application.contact.streetAddress": "Street address",
"application.contact.suggestedAddress": "Suggested address:",
"application.contact.verifyMultipleAddresses": "Since there are multiple options for this preference, you’ll need to verify multiple addresses.",
"application.contact.title": "Thanks %{firstName}, now we need to know how to contact you about your application",
"application.contact.verifyAddressTitle": "We have located the following address, please confirm it's correct",
"application.contact.workAddress": "Work address",
"application.contact.youEntered": "You entered:",
"application.contact.yourAdditionalPhoneNumber": "Your second phone number",
"application.contact.yourAddress": "Your address",
"application.contact.yourPhoneNumber": "Your phone number",
"application.contact.zip": "Zip code",
"application.contact.zipCode": "Zipcode",
"application.details.adaPriorities": "ADA priorities selected",
"application.edited": "Edited",
"application.financial.income.instruction1": "Add up your total gross (pre-tax) household income from wages, benefits and other sources from all household members.",
"application.financial.income.instruction2": "You only need to provide an estimated total right now. The actual total will be calculated if you are selected.",
"application.financial.income.legend": "Income frequency",
"application.financial.income.placeholder": "Total all of your income sources",
"application.financial.income.prompt": "What is your household total pre-tax income?",
"application.financial.income.title": "Let's move to income",
"application.financial.income.validationError.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.",
"application.financial.income.validationError.instruction2": "If the information you entered is accurate, we encourage you to check back in the future as more properties become available.",
"application.financial.income.validationError.reason.high": "Your household income is too high.",
"application.financial.income.validationError.reason.low": "Your household income is too low.",
"application.financial.vouchers.housingVouchers.strong": "Housing vouchers",
"application.financial.vouchers.housingVouchers.text": "like Section 8",
"application.financial.vouchers.legend": "Housing vouchers, nontaxable income or rental subsidies",
"application.financial.vouchers.nonTaxableIncome.strong": "Non-taxable income",
"application.financial.vouchers.nonTaxableIncome.text": "like SSI, SSDI, child support payments, or worker's compensation benefits",
"application.financial.vouchers.rentalSubsidies.strong": "Rental subsidies",
"application.financial.vouchers.rentalSubsidies.text": "like VASH, HSA, HOPWA, Catholic Charities, AIDS Foundation, etc.",
"application.financial.vouchers.title": "Do you or anyone on this application receive any of the following?",
"application.form.general.saveAndFinishLater": "Save and finish later",
"application.form.general.saveAndReturn": "Save and return to review",
"application.form.options.relationship.aunt": "Aunt",
"application.form.options.relationship.child": "Child",
"application.form.options.relationship.cousin": "Cousin",
"application.form.options.relationship.friend": "Friend",
"application.form.options.relationship.grandparent": "Grandparent",
"application.form.options.relationship.greatGrandparent": "Great grandparent",
"application.form.options.relationship.inLaw": "In law",
"application.form.options.relationship.nephew": "Nephew",
"application.form.options.relationship.niece": "Niece",
"application.form.options.relationship.other": "Other",
"application.form.options.relationship.parent": "Parent",
"application.form.options.relationship.registeredDomesticPartner": "Registered domestic partner",
"application.form.options.relationship.sibling": "Sibling",
"application.form.options.relationship.spouse": "Spouse",
"application.form.options.relationship.uncle": "Uncle",
"application.household.addMembers.addHouseholdMember": "+ Add household member",
"application.household.addMembers.done": "Done adding people",
"application.household.addMembers.doubleCheck": "Please double-check the information for each household member.",
"application.household.addMembers.title": "Tell us about your household",
"application.household.assistanceUrl": "https://exygy.com/",
"application.household.dontQualifyHeader": "Unfortunately it appears you do not qualify for this listing.",
"application.household.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.",
"application.household.expectingChanges.question": "Do you anticipate any changes in your household in the next 12 months, such as the number of people?",
"application.household.expectingChanges.title": "Expecting household changes",
"application.household.genericSubtitle": "Should your application be chosen, be prepared to provide supporting documentation.",
"application.household.householdMember": "Household member",
"application.household.householdMembers": "Household members",
"application.household.householdStudent.question": "Is someone in your household a full time student or going to turn 18 years old within 60 days?",
"application.household.householdStudent.title": "Household includes student or member nearing 18",
"application.household.householdStudentAll.question": "Are all household members students?",
"application.household.householdStudentAll.title": "All household members students",
"application.household.liveAlone.liveWithOtherPeople": "Other people will live with me",
"application.household.liveAlone.title": "Next, we would like to know about the others who will live with you in the unit.",
"application.household.liveAlone.willLiveAlone": "I will live alone",
"application.household.member.cancelAddingThisPerson": "Cancel adding this person",
"application.household.member.dateOfBirth": "Date of birth",
"application.household.member.deleteThisPerson": "Delete this person",
"application.household.member.fullTimeStudent": "Are they a full-time student?",
"application.household.member.haveSameAddress": "Do they have the same address as you?",
"application.household.member.name": "Household member's name",
"application.household.member.saveHouseholdMember": "Save household member",
"application.household.member.subTitle": "You will have an opportunity to add more household members on the next screen.",
"application.household.member.title": "Tell us about this person",
"application.household.member.updateHouseholdMember": "Update household member",
"application.household.member.whatIsTheirRelationship": "What is their relationship to you?",
"application.household.member.whatReletionship": "What is their relationship to you",
"application.household.member.workInRegion": "Do they work in %{county} County?",
"application.household.member.workInRegionNote": "TBD",
"application.household.membersInfo.title": "Before adding other people, make sure that they aren't named on any other application for this listing",
"application.household.preferredUnit.legend": "Preferred unit type",
"application.household.preferredUnit.options.fiveBdrm": "5 bedroom",
"application.household.preferredUnit.options.fourBdrm": "4 bedroom",
"application.household.preferredUnit.options.oneBdrm": "1 bedroom",
"application.household.preferredUnit.options.SRO": "SRO",
"application.household.preferredUnit.options.studio": "Studio",
"application.household.preferredUnit.options.threeBdrm": "3 bedroom",
"application.household.preferredUnit.options.twoBdrm": "2 bedroom",
"application.household.preferredUnit.optionsLabel": "Select all that apply:",
"application.household.preferredUnit.preferredUnitType": "Preferred unit type",
"application.household.preferredUnit.subTitle": "Although unit sizes will typically be based on the number of people who will live in the unit, please provide your preferred unit size for determining your preference in this opportunity or establishing a waitlist (for this opportunity only).",
"application.household.preferredUnit.title": "What unit sizes are you interested in?",
"application.household.primaryApplicant": "Primary applicant",
"application.name.dobHelper": "For example: 01 19 2000",
"application.name.dobHelper2": "This is collected to verify that you are at least 18 years old.",
"application.name.dobHelperWithMonth": "For example: January 19 2000",
"application.name.emailPrivacy": "We will only use your email address to contact you about your application.",
"application.name.firstName": "First name",
"application.name.firstOrGivenName": "First or given name",
"application.name.lastName": "Last name",
"application.name.lastOrFamilyName": "Last or family name",
"application.name.middleName": "Middle name",
"application.name.middleNameOptional": "Middle name (optional)",
"application.name.noEmailAddress": "I don't have an email address",
"application.name.title": "What's your name?",
"application.name.yourDateOfBirth": "Your date of birth",
"application.name.yourEmailAddress": "Your email address",
"application.name.yourEmailAddressPwdlessHelper": "Enter your email address and we'll send you a code for a password-free sign in.",
"application.name.yourName": "Your name",
"application.preferences.dontWant": "I don't want these preferences",
"application.preferences.dontWantSingular": "I don't want this preference",
"application.preferences.general.preamble": "You will be in the general pool of applicants.",
"application.preferences.general.title": "Based on the information you have entered, your household has not claimed any housing preferences.",
"application.preferences.options.address": "Address",
"application.preferences.options.addressHolderName": "Full name of address holder",
"application.preferences.options.addressHolderRelationship": "Relationship to address holder",
"application.preferences.options.organization": "Name of organization",
"application.preferences.options.qualifyingAddress": "Qualifying address",
"application.preferences.preamble": "If you qualify for this preference, you'll get a higher ranking.",
"application.preferences.selectBelow": "If you have one of these housing preferences, select it below:",
"application.preferences.stillHaveOpportunity": "You'll still have the opportunity to claim other preferences.",
"application.preferences.title": "Your household may qualify for the following housing preferences.",
"application.preferences.youHaveClaimed": "You have claimed:",
"application.programs.selectBelow": "Please select all that apply:",
"application.referralApplication.furtherInformation": "For further information",
"application.referralApplication.instructions": "The permanent supportive housing units are referred directly through <JURISDICTION> 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.",
"application.referralApplication.phoneNumber": "211",
"application.review.confirmation.applicationReceived": "Application \nreceived",
"application.review.confirmation.applicationsClosed": "Application \nclosed",
"application.review.confirmation.applicationsRanked": "Application \nranked",
"application.review.confirmation.browseMore": "Browse more listings",
"application.review.confirmation.createAccount": "### Would you like to create an account?\n\nCreating an account will save your information for future applications, and you can check the status of this application anytime.",
"application.review.confirmation.createAccountParagraph": "Creating an account will save your information for future applications, and you can check the status of this application anytime.",
"application.review.confirmation.createAccountTitle": "Would you like to create an account?",
"application.review.confirmation.doNotSubmitTitle": "Do not submit another application for this listing.",
"application.review.confirmation.eligibleApplicants.FCFS": "Eligible applicants will be contacted by on a **first come first serve** basis until vacancies are filled.",
"application.review.confirmation.eligibleApplicants.lottery": "Eligible applicants will be contacted by the agent in lottery rank order until vacancies are filled.",
"application.review.confirmation.eligibleApplicants.lotteryDate": "The lottery will be held on **%{lotteryDate}**.",
"application.review.confirmation.fullTimeStudent": "Full-time student",
"application.review.confirmation.imdone": "No thanks, I'm done.",
"application.review.confirmation.lotteryNumber": "Your confirmation number",
"application.review.confirmation.needToMakeUpdates": "### Need to make updates?\n\nIf you need to update information on your application, do not apply again. Instead, contact the agent for this listing.\n\n**%{agentName}** \n%{agentPhone} \n%{agentEmail}\n\n**Office Hours** \n%{agentOfficeHours}\n\nContact the agent if you did not receive an email confirmation.",
"application.review.confirmation.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.",
"application.review.confirmation.pleaseWriteNumber": "Please write down your application number and keep it in a safe place. We have also emailed this number to you if you have provided an email address.",
"application.review.confirmation.print": "View submitted application and print a copy.",
"application.review.confirmation.title": "Thanks, we have received your application for ",
"application.review.confirmation.whatExpectFirstParagraph.attend": " You do not need to attend the housing lottery. Results will be posted ",
"application.review.confirmation.whatExpectFirstParagraph.held": "The lottery will be held on ",
"application.review.confirmation.whatExpectFirstParagraph.listing": "on the listing. ",
"application.review.confirmation.whatExpectFirstParagraph.refer": "Please refer to the listing for the lottery results date.",
"application.review.confirmation.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.",
"application.review.confirmation.whatExpectTitle": "What to expect next",
"application.review.confirmation.whatHappensNext.fcfs": "### What happens next?\n\n* Eligible applicants will be contacted on a first come first serve basis until vacancies are filled.\n\n* Housing preferences, if applicable, will affect first come, first serve order.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.confirmation.whatHappensNext.lottery": "### What happens next?\n\n* Once the application period closes, eligible applicants will be placed in order based on lottery rank order.\n\n* Housing preferences, if applicable, will affect lottery rank order.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.confirmation.whatHappensNext.waitlist": "### What happens next?\n\n* Eligible applicants will be placed on the waitlist on a first come first serve basis until waitlist spots are filled.\n\n* Housing preferences, if applicable, will affect waitlist order.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.",
"application.review.confirmation.whatHappensNext.base": "### What happens next?\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.confirmation.whatHappensNext.noPref.fcfs": "### What happens next?\n\n* Eligible applicants will be contacted on a first come first serve basis until vacancies are filled.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.confirmation.whatHappensNext.noPref.lottery": "### What happens next?\n\n* Once the application period closes, eligible applicants will be placed in order based on lottery rank order.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.confirmation.whatHappensNext.noPref.waitlist": "### What happens next?\n\n* Eligible applicants will be placed on the waitlist on a first come first serve basis until waitlist spots are filled.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.",
"application.review.confirmation.whatHappensNext.noPref.base": "### What happens next?\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.",
"application.review.demographics.ethnicityLabel": "Which best describes your ethnicity?",
"application.review.demographics.ethnicityOptions.hispanicLatino": "Hispanic / Latino",
"application.review.demographics.ethnicityOptions.notHispanicLatino": "Not Hispanic / Latino",
"application.review.demographics.genderInfo": "Select one that best describes your current gender identity.",
"application.review.demographics.genderLabel": "What is your gender?",
"application.review.demographics.genderOptions.female": "Female",
"application.review.demographics.genderOptions.genderqueerGenderNon-Binary": "Genderqueer / gender non-binary",
"application.review.demographics.genderOptions.male": "Male",
"application.review.demographics.genderOptions.notListed": "Not listed",
"application.review.demographics.genderOptions.transFemale": "Trans female",
"application.review.demographics.genderOptions.transMale": "Trans male",
"application.review.demographics.howDidYouHearLabel": "How did you hear about this listing?",
"application.review.demographics.howDidYouHearOptions.busAd": "Bus ad",
"application.review.demographics.howDidYouHearOptions.developerWebsite": "Developer website",
"application.review.demographics.howDidYouHearOptions.emailAlert": "Email alert",
"application.review.demographics.howDidYouHearOptions.flyer": "Flyer",
"application.review.demographics.howDidYouHearOptions.friend": "Friend",
"application.review.demographics.howDidYouHearOptions.governmentWebsite": "Government website",
"application.review.demographics.howDidYouHearOptions.housingCounselor": "Housing counselor",
"application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "Alameda County HCD Website",
"application.review.demographics.howDidYouHearOptions.other": "Other",
"application.review.demographics.howDidYouHearOptions.propertyWebsite": "Property website",
"application.review.demographics.howDidYouHearOptions.radioAd": "Radio ad",
"application.review.demographics.raceLabel": "Which best describes your race/ethnicity? Please select all that apply:",
"application.review.demographics.raceOptions.americanIndianAlaskanNative": "American Indian / Alaskan Native",
"application.review.demographics.raceOptions.americanIndianAlaskanNativeAndBlackAfricanAmerican": "American Indian / Alaskan Native and Black/African American",
"application.review.demographics.raceOptions.americanIndianAlaskanNativeAndWhite": "American Indian / Alaskan Native and White",
"application.review.demographics.raceOptions.asian-asianIndian": "Asian Indian",
"application.review.demographics.raceOptions.asian-centralAsian": "Central Asian",
"application.review.demographics.raceOptions.asian-chinese": "Chinese",
"application.review.demographics.raceOptions.asian-filipino": "Filipino",
"application.review.demographics.raceOptions.asian-japanese": "Japanese",
"application.review.demographics.raceOptions.asian-korean": "Korean",
"application.review.demographics.raceOptions.asian-mongolian": "Mongolian",
"application.review.demographics.raceOptions.asian-otherAsian": "Other Asian",
"application.review.demographics.raceOptions.asian-southAsian": "South Asian",
"application.review.demographics.raceOptions.asian-southeastAsian": "Southeast Asian",
"application.review.demographics.raceOptions.asian-vietnamese": "Vietnamese",
"application.review.demographics.raceOptions.asian": "Asian",
"application.review.demographics.raceOptions.asianAndWhite": "Asian and White",
"application.review.demographics.raceOptions.black-african": "African",
"application.review.demographics.raceOptions.black-africanAmerican": "African American",
"application.review.demographics.raceOptions.black-caribbeanCentralSouthAmericanMexican": "Caribbean, Central American, South American or Mexican",
"application.review.demographics.raceOptions.black-otherBlack": "Other Black",
"application.review.demographics.raceOptions.black": "Black",
"application.review.demographics.raceOptions.blackAfricanAmerican": "Black / African American",
"application.review.demographics.raceOptions.blackAfricanAmericanAndWhite": "Black / African American and White",
"application.review.demographics.raceOptions.declineToRespond": "Decline to respond",
"application.review.demographics.raceOptions.indigenous-alaskanNative": "Alaskan Native",
"application.review.demographics.raceOptions.indigenous-indigenousFromMexicoCaribbeanCentralSouthAmerica": "Indigenous from Mexico, the Caribbean, Central America, or South America",
"application.review.demographics.raceOptions.indigenous-nativeAmerican": "American Indian/Native American",
"application.review.demographics.raceOptions.indigenous-otherIndigenous": "Other Indigenous",
"application.review.demographics.raceOptions.indigenous": "Indigenous",
"application.review.demographics.raceOptions.latino-caribbean": "Caribbean",
"application.review.demographics.raceOptions.latino-centralAmerican": "Central American",
"application.review.demographics.raceOptions.latino-mexican": "Mexican",
"application.review.demographics.raceOptions.latino-otherLatino": "Other Latino",
"application.review.demographics.raceOptions.latino-southAmerican": "South American",
"application.review.demographics.raceOptions.latino": "Latino",
"application.review.demographics.raceOptions.middleEasternOrAfrican-northAfrican": "North African",
"application.review.demographics.raceOptions.middleEasternOrAfrican-otherMiddleEasternNorthAfrican": "Other Middle Eastern or North African",
"application.review.demographics.raceOptions.middleEasternOrAfrican-westAsian": "West Asian",
"application.review.demographics.raceOptions.middleEasternOrAfrican": "Middle Eastern, West African or North African",
"application.review.demographics.raceOptions.nativeHawaiianOtherPacificIslander-guamanianOrChamorro": "Guamanian or Chamorro",
"application.review.demographics.raceOptions.nativeHawaiianOtherPacificIslander-nativeHawaiian": "Native Hawaiian",
"application.review.demographics.raceOptions.nativeHawaiianOtherPacificIslander-otherPacificIslander": "Other Pacific Islander",
"application.review.demographics.raceOptions.nativeHawaiianOtherPacificIslander-samoan": "Samoan",
"application.review.demographics.raceOptions.nativeHawaiianOtherPacificIslander": "Native Hawaiian / Other Pacific Islander",
"application.review.demographics.raceOptions.otherMultiracial": "Other / Multiracial",
"application.review.demographics.raceOptions.otherMutliracial": "Other / Mutliracial",
"application.review.demographics.raceOptions.pacificIslander-chamorro": "Chamorro",
"application.review.demographics.raceOptions.pacificIslander-nativeHawaiian": "Native Hawaiian",
"application.review.demographics.raceOptions.pacificIslander-otherPacificIslander": "Other Pacific Islander",
"application.review.demographics.raceOptions.pacificIslander-samoan": "Samoan",
"application.review.demographics.raceOptions.pacificIslander": "Pacific Islander",
"application.review.demographics.raceOptions.white-european": "European",
"application.review.demographics.raceOptions.white-otherWhite": "Other White",
"application.review.demographics.raceOptions.white": "White",
"application.review.demographics.sexualOrientationLabel": "Which best describes your sexual orientation or sexual identity? Please select one:",
"application.review.demographics.sexualOrientationOptions.asexual": "Asexual",
"application.review.demographics.sexualOrientationOptions.bisexual": "Bisexual",
"application.review.demographics.sexualOrientationOptions.differentTerm": "I use a different term",
"application.review.demographics.sexualOrientationOptions.dontKnow": "I don’t understand the question",
"application.review.demographics.sexualOrientationOptions.gayLesbianSameGenderLoving": "Gay / lesbian / same-gender loving",
"application.review.demographics.sexualOrientationOptions.notListed": "Not listed",
"application.review.demographics.sexualOrientationOptions.preferNoResponse": "Prefer not to respond",
"application.review.demographics.sexualOrientationOptions.questioningUnsure": "Questioning / unsure",
"application.review.demographics.sexualOrientationOptions.straightHeterosexual": "Straight / heterosexual",
"application.review.demographics.subTitle": "These questions are optional and won't affect your eligibility for housing. Your answers will be kept private.",
"application.review.demographics.title": "Help us ensure we are meeting our goal to serve all people",
"application.review.householdDetails": "Household details",
"application.review.lastChanceToEdit": "This is your last chance to edit before submitting.",
"application.review.noAdditionalMembers": "No additional household members",
"application.review.sameAddressAsApplicant": "Same address as applicant",
"application.review.takeAMomentToReview": "Take a moment to review your information before submitting your application.",
"application.review.terms.base.text": "* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* All of the information that you have provided will be verified and your eligibility confirmed.\n\n* Your application may be removed if you have made any fraudulent statements.\n\nFor more information, please contact the housing developer or property manager posted in the listing.\n\nCompleting this 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.\n\nYou cannot change your online application after you submit.\n\nI declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application may result in removal from the application process.",
"application.review.terms.confirmCheckboxText": "I agree and understand that I cannot change anything after I submit.",
"application.review.terms.fcfs.text": "* Applicants are applying to currently vacant apartments on a first come, first serve basis.\n\n* Eligible applicants will be contacted on a first come first serve basis until vacancies are filled.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* All of the information that you have provided will be verified and your eligibility confirmed.\n\n* Your application may be removed if you have made any fraudulent statements.\n\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.\n\nFor more information, please contact the housing developer or property manager posted in the listing.\n\nCompleting this 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.\n\nYou cannot change your online application after you submit.\n\nI declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application may result in removal from the application process.",
"application.review.terms.lottery.text": "* Applicants are applying to enter a lottery for currently vacant apartments.\n\n* Once the application period closes, eligible applicants will be placed in lottery rank order.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* All of the information that you have provided will be verified and your eligibility confirmed.\n\n* Your application may be removed if you have made any fraudulent statements.\n\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.\n\nFor more information, please contact the housing developer or property manager posted in the listing.\n\nCompleting this 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.\n\nYou cannot change your online application after you submit.\n\nI declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application may result in removal from the application process.",
"application.review.terms.submittingApplication": "Submitting application",
"application.review.terms.textSubmissionDate": "This application must be submitted by %{applicationDueDate}.",
"application.review.terms.title": "Terms",
"application.review.terms.waitlist.text": "* Applicants are applying for an open waitlist and not a currently vacant apartment.\n\n* When vacancies become available, eligible applicants will be contacted by the property manager on a first come, first serve basis.\n\n* If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.\n\n* All of the information that you have provided will be verified and your eligibility confirmed.\n\n* Your application may be removed if you have made any fraudulent statements.\n\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.\n\n* You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.\n\nFor more information, please contact the housing developer or property manager posted in the listing.\n\nCompleting this 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.\n\nYou cannot change your online application after you submit.\n\nI declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application may result in removal from the application process.",
"application.review.voucherOrSubsidy": "Housing voucher or rental subsidy",
"application.start.whatToExpect.base.finePrint": "* Please be aware that each household member can only appear on one application for each listing.\n* All of the information that you have provided will be verified and your eligibility confirmed.\n* Your application may be removed if you have made any fraudulent statements.",
"application.start.whatToExpect.fcfs.finePrint": "* Applicants are applying to currently vacant apartments on a first come, first serve basis.\n* Please be aware that each household member can only appear on one application for each listing.\n* Applicants will be contacted by the property manager on a first come, first serve basis, until vacancies are filled.\n* All of the information that you have provided will be verified and your eligibility confirmed.\n* Your application may be removed if you have made any fraudulent statements.\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.",
"application.start.whatToExpect.fcfs.steps": "1. First we'll ask about you and the people you plan to live with.\n2. Then, we'll ask about your income.\n3. Finally, we'll see if you qualify for any affordable housing lottery preferences, if applicable.",
"application.start.whatToExpect.lottery.finePrint": "* Applicants are applying to enter a lottery for currently vacant apartments.\n* Please be aware that each household member can only appear on one application for each listing.\n* Applicants will be contacted by the property agent in lottery rank order until vacancies are filled.\n* All of the information that you have provided will be verified and your eligibility confirmed.\n* Your application may be removed if you have made any fraudulent statements.\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.",
"application.start.whatToExpect.lottery.steps": "1. First we'll ask about you and the people you plan to live with.\n2. Then, we'll ask about your income.\n3. Finally, we'll see if you qualify for any affordable housing lottery preferences, if applicable.",
"application.start.whatToExpect.title": "Here's what to expect from this application.",
"application.start.whatToExpect.waitlist.finePrint": "* Applicants are applying for an open waitlist and not a currently available apartment.\n* Please be aware that each household member can only appear on one application for each listing.\n* When vacancies become available, eligible applicants will be contacted by the property manager on a first come, first serve basis.\n* All of the information that you have provided will be verified and your eligibility confirmed.\n* Your application may be removed if you have made any fraudulent statements.\n* For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.",
"application.start.whatToExpect.waitlist.steps": "1. First we'll ask about you and the people you plan to live with.\n2. Then, we'll ask about your income.\n3. Finally, we'll see if you qualify for any affordable housing preferences, if applicable.",
"application.status": "Status",
"application.statuses.inProgress": "In progress",
"application.statuses.neverSubmitted": "Never submitted",
"application.statuses.submitted": "Submitted",
"application.timeout.action": "Continue working",
"application.timeout.afterMessage": "We care about your security. We ended your session due to inactivity. Please start a new application to continue.",
"application.timeout.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.",
"application.viewApplication": "View application",
"application.yourLotteryNumber": "Your confirmation number is",
"applications.addApplication": "Add application",
"authentication.createAccount.accountConfirmed": "Your account was successfully confirmed.",
"authentication.createAccount.anEmailHasBeenSent": "An email has been sent to %{email}",
"authentication.createAccount.confirmationInstruction": "Please click on the link in the email we sent you in order to complete account creation.",
"authentication.createAccount.confirmationNeeded": "Confirmation needed",
"authentication.createAccount.emailSent": "Confirmation email has been sent. Please check your inbox.",
"authentication.createAccount.errors.accountConfirmed": "Your account is already confirmed.",
"authentication.createAccount.errors.emailInUse": "Email is already in use",
"authentication.createAccount.errors.emailMismatch": "The emails do not match",
"authentication.createAccount.errors.emailNotFound": "Email not found. Please register first.",
"authentication.createAccount.errors.errorSaving": "Oops! Looks like something went wrong. Please try again. \n\nContact your housing department if you're still experiencing issues.",
"authentication.createAccount.errors.generic": "Something went wrong while creating your account. Please try again.\n\nContact your housing department if you're still experiencing issues.",
"authentication.createAccount.errors.passwordMismatch": "The passwords do not match",
"authentication.createAccount.errors.passwordTooWeak": "Password is too weak. Must be at least 12 characters and include at least one lowercase letter, one uppercase letter, one number, and one special character (#?!@$%^&*-).",
"authentication.createAccount.errors.tokenExpired": "Your link has expired.",
"authentication.createAccount.linkExpired": "Your link has expired",
"authentication.createAccount.noAccount": "Don't have an account?",
"authentication.createAccount.password": "Password",
"authentication.createAccount.passwordInfo": "Must be at least 12 characters and include at least one lowercase letter, one uppercase letter, one number, and one special character (#?!@$%^&*-).",
"authentication.createAccount.reEnterEmail": "Re-enter email address",
"authentication.createAccount.reEnterPassword": "Re-enter your password",
"authentication.createAccount.resendAnEmailTo": "Resend an email to",
"authentication.createAccount.resendEmailInfo": "Please click on the link in the email we send you within 24 hours in order to complete account creation.",
"authentication.createAccount.resendTheEmail": "Resend the email",
"authentication.forgotPassword.changePassword": "Change password",
"authentication.forgotPassword.enterNewLoginPassword": "Please enter new login password",
"authentication.forgotPassword.errors.emailNotFound": "Email not found. Please make sure your email has an account with us and is confirmed.",
"authentication.forgotPassword.errors.passwordTooWeak": "Password is too weak. Must be at least 12 characters and include at least one lowercase letter, one uppercase letter, one number, and one special character (#?!@$%^&*-).",
"authentication.forgotPassword.errors.tokenExpired": "Reset password token expired. Please request for a new one.",
"authentication.forgotPassword.errors.tokenMissing": "Token not found. Please request for a new one.",
"authentication.forgotPassword.message": "If there is an account made with that email, you'll receive an email with a link to reset your password. The reset link is valid for 1 hour.",
"authentication.forgotPassword.passwordConfirmation": "Password confirmation",
"authentication.forgotPassword.sendEmail": "Send email",
"authentication.signIn.accountHasBeenLocked": "For security reasons, this account has been locked.",
"authentication.signIn.afterFailedAttempts": "For security reasons, after %{count} failed attempts, you’ll have to wait 30 minutes before trying again.",
"authentication.signIn.changeYourPassword": "You can change your password",
"authentication.signIn.enterLoginEmail": "Please enter your login email",
"authentication.signIn.enterLoginPassword": "Please enter your login password",
"authentication.signIn.enterValidEmailAndPassword": "Please enter a valid email and password",
"authentication.signIn.enterValidEmailAndPasswordAndMFA": "Please enter a valid code",
"authentication.signIn.error": "There was an error signing you in",
"authentication.signIn.errorGenericMessage": "Please try again, or contact support for help.",
"authentication.signIn.forgotPassword": "Forgot password?",
"authentication.signIn.loginError": "Please enter a valid email address",
"authentication.signIn.mfaError": "This is a partner account, which for security reasons cannot login to the public site.",
"authentication.signIn.passwordError": "Please enter a valid password",
"authentication.signIn.passwordOutdated": "Your password has expired. Please reset your password.",
"authentication.signIn.pwdless.createAccountCopy": "Sign up quickly with no need to remember any passwords.",
"authentication.signIn.pwdless.emailHelperText": "Enter your email and we'll send you a code to sign in.",
"authentication.signIn.pwdless.error": "The code you've used is invalid or expired.",
"authentication.signIn.pwdless.getCode": "Get code to sign in",
"authentication.signIn.pwdless.useCode": "Get a code instead",
"authentication.signIn.pwdless.usePassword": "Use your password instead",
"authentication.signIn.success": "Welcome back, %{name}!",
"authentication.signIn.youHaveToWait": "You'll have to wait 30 minutes since the last failed attempt before trying again.",
"authentication.signIn.yourAccountIsNotConfirmed": "Your account is not confirmed",
"authentication.signOut.success": "You have successfully logged out of your account.",
"authentication.terms.acceptExtended": "I have reviewed, understand and agree to the Terms of Use.",
"authentication.terms.acceptToc": "I accept the Terms of Service",
"authentication.terms.publicAccept": "You must accept the Terms of Use before creating an account.",
"authentication.terms.reviewToc": "Please review the Terms of Service",
"authentication.terms.reviewTou": "Review Terms of Use",
"authentication.terms.termsOfService": "View the Terms of Service here",
"authentication.terms.termsOfUse": "Terms of Use",
"authentication.terms.youMustAcceptToc": "To continue you must accept the Terms of Service",
"authentication.timeout.action": "Stay logged in",
"authentication.timeout.signOutMessage": "We care about your security. We logged you out due to inactivity. Please sign in to continue.",
"authentication.timeout.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.",
"config.routePrefix": "",
"eligibility.accessibility.accessibleParking": "Accessible parking spots",
"eligibility.accessibility.acInUnit": "AC in unit",
"eligibility.accessibility.barrierFreeBathroom": "Barrier-free bathrooms",
"eligibility.accessibility.barrierFreeEntrance": "Barrier-free (no-step) property entrance",
"eligibility.accessibility.barrierFreeUnitEntrance": "Barrier-free (no-step) unit entrances",
"eligibility.accessibility.description": "Some properties have accessibility features that others may not have.",
"eligibility.accessibility.elevator": "Elevator",
"eligibility.accessibility.grabBars": "Grab bars in bathrooms",
"eligibility.accessibility.hearing": "Units for those with hearing disabilities",
"eligibility.accessibility.heatingInUnit": "Heating in unit",
"eligibility.accessibility.inUnitWasherDryer": "In-unit washer/dryer",
"eligibility.accessibility.laundryInBuilding": "Laundry in building",
"eligibility.accessibility.loweredCabinets": "Lowered cabinets and countertops",
"eligibility.accessibility.loweredLightSwitch": "Lowered light switches",
"eligibility.accessibility.mobility": "Units for those with mobility disabilities",
"eligibility.accessibility.parkingOnSite": "Parking on site",
"eligibility.accessibility.prompt": "Do you require additional accessibility features?",
"eligibility.accessibility.rollInShower": "Roll-in showers",
"eligibility.accessibility.serviceAnimalsAllowed": "Service animals allowed",
"eligibility.accessibility.title": "Accessibility features",
"eligibility.accessibility.visual": "Units for those with visual disabilities",
"eligibility.accessibility.wheelchairRamp": "Wheelchair ramp",
"eligibility.accessibility.wideDoorways": "Wide unit doorways for wheelchairs",
"errors.agreeError": "You must agree to the terms in order to continue",
"errors.alert.applicationSubmissionVerificationError": "Your application is missing required fields. Please go back and correct this before submitting.",
"errors.alert.badRequest": "Looks like something went wrong. Please try again. \n\nContact your housing department if you're still experiencing issues.",
"errors.alert.listingsApprovalEmailError": "This listing was updated, but the associated emails failed to send.",
"errors.alert.timeoutPleaseTryAgain": "Oops! Looks like something went wrong. Please try again.",
"errors.backToHome": "Back to home",
"errors.cityError": "Please enter a city",
"errors.dateError": "Please enter a valid date",
"errors.dateOfBirthError": "Please enter a valid date of birth",
"errors.dateOfBirthErrorAge": "Please enter a valid date of birth, must be 18 or older",
"errors.emailAddressError": "Please enter an email address",
"errors.errorsToResolve": "There are errors you'll need to resolve before moving on.",
"errors.familyNameError": "Please enter a family name",
"errors.firstNameError": "Please enter a first name",
"errors.givenNameError": "Please enter a given name",
"errors.householdTooBig": "Your household size is too big.",
"errors.householdTooSmall": "Your household size is too small.",
"errors.lastNameError": "Please enter a last name",
"errors.maxLength": "Must not be more than %{length} characters.",
"errors.maxLessThanMinRentError": "Max rent must be greater than or equal to min rent",
"errors.minGreaterThanMaxRentError": "Min rent must be less than or equal to max rent",
"errors.notFound.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.",
"errors.notFound.subtitle": "Sorry, we couldn't find the page you're looking for.",
"errors.notFound.title": "Page not found",
"errors.numberError": "Please enter a valid number greater than 0.",
"errors.passwordConfirmationMismatch": "Password confirmation does not match",
"errors.phoneNumberError": "Please enter a phone number",
"errors.phoneNumberTypeError": "Please enter a phone number type",
"errors.rateLimitExceeded": "Rate limit exceeded, try again later.",
"errors.requiredFieldError": "This field is required",
"errors.requiredFieldsError": "These fields are required",
"errors.selectAllThatApply": "Please select all that apply.",
"errors.selectAnOption": "Please select an option.",
"errors.selectAtLeastOne": "Please select at least one option.",
"errors.selectOption": "Please select one of the options above.",
"errors.somethingWentWrong": "Oops! Looks like something went wrong.",
"errors.stateError": "Please enter a state",
"errors.streetError": "Please enter an address",
"errors.timeError": "Please enter a valid time",
"errors.zipCodeError": "Please enter a zip code",
"finder.accessibility.question": "Do you or anyone in your household need any of the following accessibility features?",
"finder.accessibility.subtitle": "Accessibility features include many designed specifically for residents with disabilities as well as a number of other building and unit amenities.",
"finder.bedrooms.fourMoreBdrm": "4 or more bedrooms",
"finder.bedrooms.question": "How many bedrooms do you need?",
"finder.bedrooms.subtitle": "We'll use your selection to highlight possible rentals that match.",
"finder.building.homeless": "Supportive housing for the homeless",
"finder.building.question": "Are you looking for one of the following rental types?",
"finder.building.senior55": "Rentals for seniors 55+",
"finder.building.senior62": "Rentals for seniors 62+",
"finder.building.subtitle": "Some affordable housing rental properties are dedicated to specific populations, like seniors. We will use your selections to find you rentals that may match your housing needs.",
"finder.building.veteran": "Rentals for veterans",
"finder.building.withDisabilities": "Rentals for residents with disabilities",
"finder.buildingSectionTitle": "Building types",
"finder.disclaimer.alert": "Disclaimer: The information in this personalized rental finder should be used for informational purposes only. Due to the changing nature of property information, the best way to see if you qualify for a property or if it has any availability is by contacting the property itself.",
"finder.disclaimer.info1": "This website will show you regulated affordable rentals, meaning they are affordable because of governmental funding.",
"finder.disclaimer.info2": "With this funding, these kinds of rentals often have restrictions about who can live in a property.",
"finder.disclaimer.info3": "Many buildings serve moderate- or lower-income households, so applicants cannot make more money than specific income limits.",
"finder.disclaimer.info4": "Some buildings are only reserved for seniors.",
"finder.disclaimer.info5": "At these kinds of rentals, property management staff will help you determine your eligibility.",
"finder.disclaimer.question": "Before you see the results",
"finder.disclaimer.subtitle": "We have some final notes on understanding regulated affordable housing.",
"finder.finderTitle": "Find listings for you",
"finder.housingSectionTitle": "Housing needs",
"finder.multiselectLegend": "Select all that apply",
"finder.progress.stepPreposition": "of",
"finder.region.question": "What areas would you like to live in?",
"finder.region.subtitle": "We will use your selections to find you rentals that may match your housing needs.",
"finder.rent.maxRent": "Maximum rent",
"finder.rent.minRent": "Minimum rent",
"finder.rent.noMaxRent": "No maximum rent",
"finder.rent.noMinRent": "No minimum rent",
"finder.rent.question": "How much rent can you afford to pay?",
"finder.rent.section8": "Include rentals that accept Section 8 Housing Choice Vouchers",
"finder.rent.subtitle": "We will use your selections to find you rentals that may match your housing needs.",
"finder.skip": "Skip this and show me listings",
"footer.contact": "Contact",
"footer.content.applicationQuestions": "For listing and application questions, please contact the Leasing Agent displayed on the listing.",
"footer.content.partnership": "in partnership with",
"footer.content.programQuestions": "For general program inquiries, you may call MOHD at 123-456-7890.",
"footer.content.projectOf": "Bloomington Housing Portal is a project of the",
"footer.copyright": "© City & County of Bloomington",
"footer.disclaimer": "Disclaimer",
"footer.forGeneralQuestions": "For general program inquiries, you may call us at 000-000-0000.",
"footer.giveFeedback": "Give feedback",
"homeType.apartment": "Apartment",
"homeType.duplex": "Duplex",
"homeType.house": "Single-family house",
"homeType.townhome": "Townhome",
"housingCounselors.call": "Call %{number}",
"housingCounselors.languageServices": "Language services: ",
"housingCounselors.subtitle": "Talk with a local housing counselor specific to your needs.",
"housingCounselors.visitWebsite": "Visit %{name}",
"languages.ar": "عربى",
"languages.bn": "বাংলা",
"languages.en": "English",
"languages.es": "Español",
"languages.tl": "Filipino",
"languages.vi": "Tiếng Việt",
"languages.zh": "中文",
"leasingAgent.contact": "Contact leasing agent",
"leasingAgent.dueToHighCallVolume": "Due to high call volume you may hear a message.",
"leasingAgent.officeHours": "Office hours",
"listingFilters.clear": "Clear",
"listingFilters.program.Families": "Families",
"listingFilters.program.Residents with Disabilities": "Residents with disabilities",
"listingFilters.program.Seniors 55+": "Seniors 55+",
"listingFilters.program.Seniors 62+": "Seniors 62+",
"listingFilters.program.Supportive Housing for the Homeless": "Supportive housing for the homeless",
"listingFilters.program.Veterans": "Veterans",
"listings.additionalInformation": "Additional information",
"listings.additionalInformationEnvelope": "Additional information envelope",
"listings.allUnits": "All units",
"listings.allUnitsReservedFor": "All units reserved for %{type}",
"listings.amenities.groceryStores": "Grocery stores",
"listings.amenities.healthCareResources": "Health care resources",
"listings.amenities.parksAndCommunityCenters": "Parks and community centers",
"listings.amenities.pharmacies": "Pharmacies",
"listings.amenities.publicTransportation": "Public transportation",
"listings.amenities.schools": "Schools",
"listings.annualIncome": "%{income} per year",
"listings.applicationAlreadySubmitted": "This application has already been submitted.",
"listings.applicationDeadline": "Application due date",
"listings.applicationDue": "Application due",
"listings.applicationFCFS": "First come first serve",
"listings.applicationFee": "Application fee",
"listings.applicationFeeDueAt": "Due at interview",
"listings.applicationOpenPeriod": "Applications open",
"listings.applicationPerApplicantAgeDescription": "per applicant age 18 and over",
"listings.applications": "Applications",
"listings.applicationsClosed": "Applications closed",
"listings.applicationsClosedRedirect": "This listing is no longer accepting applications.",
"listings.apply.applicationSeason": "Residents should apply in",
"listings.apply.applicationWillBeAvailableOn": "Application will be available for download and pick up on %{openDate}",
"listings.apply.applyOnline": "Apply online",
"listings.apply.downloadApplication": "Download application",
"listings.apply.dropOffApplication": "Drop off application",
"listings.apply.dropOffApplicationOrMail": "Drop off application or send by US Mail",
"listings.apply.getAPaperApplication": "Get a paper application",
"listings.apply.howToApply": "How to apply",
"listings.apply.paperApplicationsMustBeMailed": "Paper applications must be sent by US Mail and cannot be submitted in person.",
"listings.apply.pickUpAnApplication": "Pick up an application",
"listings.apply.sendByUsMail": "Send application by US Mail",
"listings.apply.submitAPaperApplication": "Submit a paper application",
"listings.apply.submitPaperDueDateNoPostMark": "Applications must be received by the deadline. If sending by U.S. Mail, the application must be received by %{applicationDueDate}. %{developer} is not responsible for lost or delayed mail.",
"listings.apply.submitPaperNoDueDateNoPostMark": "%{developer} is not responsible for lost or delayed mail.",
"listings.apply.submitPaperPostMark": "Applications must be received by the deadline. If sending by U.S. Mail, the application must be postmarked by %{postmarkReceivedByDate}. %{developer} is not responsible for lost or delayed mail.",
"listings.availability.closedWaitlist": "Closed waitlist",
"listings.availability.comingSoon": "Coming soon",
"listings.availability.openWaitlist": "Open waitlist",
"listings.availability.unitsAvailable": "Units available",
"listings.availability.vacantUnits": "Vacant units",
"listings.availabilityUnknown": "Availability unknown",
"listings.availableAndWaitlist": "Available units & open waitlist",
"listings.availableUnit": "Available unit",
"listings.availableUnits": "Available units",
"listings.availableUnitsAndWaitlist": "Available units and waitlist",
"listings.availableUnitsAndWaitlistDesc": "Once applicants fill all available units, additional applicants will be placed on the waitlist for <span class='t-italic'>%{number} units</span>",
"listings.availableUnitsDescription": "Applicants will be reviewed in lottery rank order until all vacancies are filled.",
"listings.bath": "bath",
"listings.browseListings.countInfo": "Showing %{currentCount} of %{totalCount} listings",
"listings.browseListings.pageInfo": "Page %{currentPage} of %{totalPages}",
"listings.browseListings": "Browse listings",
"listings.buildingImageAltText": "A picture of the building",
"listings.buildingSelectionCriteria": "Building selection criteria",
"listings.cc&r": "Covenants, Conditions and Restrictions (CC&R's)",
"listings.cc&rDescription": "The CC&R's explain the rules of the homeowners' association, and restrict how you can modify the property.",
"listings.chooseALanguage": "Choose a language",
"listings.closed": "Closed",
"listings.closedListings": "Closed listings",
"listings.comingSoon": "Coming soon",
"listings.communityTypesDescription": "This program includes opportunities for members of specific communities",
"listings.communityTypesNote": "Affordable housing properties often receive funding to house specific populations, like seniors, residents with disabilities, etc. Properties can serve more than one population. Contact this property if you are unsure if you qualify.",
"listings.confirmedListings": "Confirmed listings",
"listings.confirmedListingsOnly": "Only show listings confirmed by property",
"listings.confirmedPreferenceList": "Confirmed %{preference} List",
"listings.costsNotIncluded": "Costs not included",
"listings.creditHistory": "Credit history",
"listings.criminalBackground": "Criminal background",
"listings.depositMayBeHigherForLowerCredit": "May be higher for lower credit scores",
"listings.depositOrMonthsRent": "or one month's rent",
"listings.developmentalDisabilities": "Persons with developmental disabilities",
"listings.developmentalDisabilitiesDescription": "A portion number of units in this building are set aside for persons with developmental disabilities. Please visit <a className='lined' 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.",
"listings.downloadPdf": "Download PDF",
"listings.eligibilityNotebook": "Eligibility notebook",
"listings.eligibleApplicants.FCFS": "Eligible applicants will be contacted on a first come first serve basis until vacancies are filled.",
"listings.enterLotteryForWaitlist": "Submit an application for an open slot on the waitlist for %{units} units.",
"listings.favorite": "Favorite",
"listings.favoriteSaveError": "Listing was not saved to favorites - try again",
"listings.featuresCards": "Features cards",
"listings.forIncomeCalculations": "For income calculations, household size includes everyone (all ages) living in the unit.",
"listings.forIncomeCalculationsBMR": "Income calculations are based on unit type",
"listings.hideClosedListings": "Hide closed listings",
"listings.homeType.apartment": "Apartment",
"listings.homeType.duplex": "Duplex",
"listings.homeType.house": "Single family house",
"listings.homeType.townhome": "Townhome",
"listings.homeType": "Home type",
"listings.householdMaximumIncome": "Household maximum income",
"listings.householdSize": "Household size",
"listings.importantProgramRules": "Important program rules",
"listings.includesPriorityUnits": "Includes priority units for %{priorities}",
"listings.listingPreviewOnly": "This is a listing preview only.",
"listings.listingUpdated": "Listing updated",
"listings.lottery": "Lottery",
"listings.lotteryResults.completeResultsWillBePosted": "Complete lottery results will be posted soon.",
"listings.lotteryResults.downloadResults": "Download results",
"listings.lotteryResults.header": "Lottery results",
"listings.maxIncomeMonth": "Maximum income / month",
"listings.maxIncomeYear": "Maximum income / year",
"listings.maxRent": "Max rent",
"listings.minRent": "Min rent",
"listings.monthlyIncome": "%{income} per month",
"listings.moreBuildingSelectionCriteria": "Find out more about building selection criteria",
"listings.moreImagesAltDescription": "more images for %{listingName}",
"listings.moreImagesLabel": "images",
"listings.neighborhoodBuildings": "Neighborhood buildings",
"listings.noAvailableUnits": "There are no available units at this time.",
"listings.noClosedListings": "No listings currently have closed applications",
"listings.noMatchingClosedListings": "No matching listings with closed applications",
"listings.noMatchingOpenListings": "No matching listings with open applications",
"listings.noOpenListings": "No listings currently have open applications",
"listings.occupancyDescriptionAllSro": "Occupancy for this building is limited to 1 person per unit.",
"listings.occupancyDescriptionNoSro": "Occupancy limits for this building are based on unit type.",
"listings.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.",
"listings.openHouseEvent.header": "Open houses",
"listings.openHouseEvent.seeVideo": "See video",
"listings.percentAMIUnit": "%{percent}% AMI unit",
"listings.priorityUnits": "Priority units",
"listings.priorityUnitsDescription": "This building has units set aside if any of the following apply to you or someone in your household:",
"listings.processInfo": "Process info",
"listings.publicLottery.header": "Public lottery",
"listings.remainingUnitsAfterPreferenceConsideration": "After all preference holders have been considered, any remaining units will be available to other qualified applicants.",
"listings.remainingUnitsAfterPrograms": "One or more questions in the application will help to determine whether or not you are eligible for the housing programs listed above. After you have submitted your application, the property manager will ask you to verify your housing program eligibility by providing documentation or another form of verification.",
"listings.removeFilters": "Try removing some of your filters or show all listings.",
"listings.rentalHistory": "Rental history",
"listings.rePricing": "Re-pricing",
"listings.requiredDocuments": "Required documents",
"listings.reservedCommunityBuilding": "%{type} building",
"listings.reservedCommunitySeniorTitle": "Senior building",
"listings.reservedCommunityTitleDefault": "Reserved building",
"listings.reservedCommunityType": "Reserved community type",
"listings.reservedCommunityTypeDescriptions.developmentalDisability": "People with developmental disabilities",
"listings.reservedCommunityTypeDescriptions.farmworkerHousing": "Farmworkers and their families",
"listings.reservedCommunityTypeDescriptions.housingVoucher": "HCV/Section 8 Voucher holders",
"listings.reservedCommunityTypeDescriptions.schoolEmployee": "School employees",
"listings.reservedCommunityTypeDescriptions.senior": "Seniors",
"listings.reservedCommunityTypeDescriptions.senior55": "Seniors 55+",
"listings.reservedCommunityTypeDescriptions.senior62": "Seniors 62+",
"listings.reservedCommunityTypeDescriptions.specialNeeds": "Special needs",
"listings.reservedCommunityTypeDescriptions.tay": "TAY - Transition aged youth",
"listings.reservedCommunityTypeDescriptions.veteran": "Veterans",
"listings.reservedCommunityTypes.developmentalDisability": "Developmental disability",
"listings.reservedCommunityTypes.farmworkerHousing": "Farmworker housing",
"listings.reservedCommunityTypes.housingVoucher": "HCV/Section 8 Voucher",
"listings.reservedCommunityTypes.schoolEmployee": "School employee",
"listings.reservedCommunityTypes.senior": "Seniors",
"listings.reservedCommunityTypes.senior55": "Seniors 55+",
"listings.reservedCommunityTypes.senior62": "Seniors 62+",
"listings.reservedCommunityTypes.specialNeeds": "Special needs",
"listings.reservedCommunityTypes.tay": "TAY - Transition aged youth",
"listings.reservedCommunityTypes.veteran": "Veteran",
"listings.reservedFor": "Reserved for %{type}",
"listings.reservedTypePlural.developmentalDisability": "Developmental disabilities",
"listings.reservedTypePlural.family": "families",
"listings.reservedTypePlural.senior": "seniors",
"listings.reservedTypePlural.specialNeeds": "special needs",
"listings.reservedTypePlural.tay": "transition aged youth",
"listings.reservedTypePlural.veteran": "veterans",
"listings.reservedUnits": "Reserved units",
"listings.reservedUnitsDescription": "In order to qualify for these units one of the following must apply to you or someone in your household:",
"listings.reservedUnitsForWhoAre": "Reserved for %{communityType} who are %{reservedType}",
"listings.search.subNote": "Enter full or partial listing name",
"listings.section8Acceptance": "Accepts Section 8 Housing Choice Vouchers",
"listings.section8VoucherInfo": "If you have a <strong>Section 8 Housing Choice Voucher</strong>, the income requirements do not apply and you will pay rent based on your income",
"listings.sections.accessibilityFeatures": "Accessibility features",
"listings.sections.additionalEligibilitySubtitle": "Applicants must also qualify under the rules of the building.",
"listings.sections.additionalEligibilityTitle": "Additional eligibility rules",
"listings.sections.additionalFees": "Additional fees",
"listings.sections.additionalInformationSubtitle": "Required documents and selection criteria",
"listings.sections.eligibilitySubtitle": "Income, occupancy, preferences, and subsidies",
"listings.sections.eligibilityTitle": "Eligibility",
"listings.sections.featuresSubtitle": "Amenities, unit details and additional fees",
"listings.sections.featuresTitle": "Features",
"listings.sections.housingPreferencesSubtitle": "Preference holders will be given highest ranking.",
"listings.sections.housingPreferencesTitle": "Housing preferences",
"listings.sections.housingProgramsSubtitle": "Some or all of the units for this property are reserved for persons who qualify for the particular housing program(s) listed below. You may need to qualify for one of these programs in order to be eligible for a unit at this property.",
"listings.sections.housingProgramsTitle": "Housing programs",
"listings.sections.neighborhoodAmenitiesSubtitle": "The neighborhood around this property has the following resources and services for households",
"listings.sections.neighborhoodAmenitiesTitle": "Within 2 miles",
"listings.sections.neighborhoodSubtitle": "Location and transportation",
"listings.sections.processSubtitle": "Important dates and contact information",
"listings.sections.processTitle": "Process",
"listings.sections.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.",
"listings.sections.rentalAssistanceTitle": "Rental assistance",
"listings.sections.utilities": "Utilities included",
"listings.sections.verification": "I verify that this listing data is valid",
"listings.sections.verificationLabel": "I verify that this listing data is valid",
"listings.sections.verificationSubtitle": "Provide verification of listing data accuracy",
"listings.sections.verificationTitle": "Verification",
"listings.seeMaximumIncomeInformation": "See maximum income information",
"listings.seePreferenceInformation": "See preference information",
"listings.seeUnitInformation": "See unit information",
"listings.showClosedListings": "Show closed listings",
"listings.showMatchingListings": "Show matching listings",
"listings.singleRoomOccupancy": "SRO",
"listings.singleRoomOccupancyDescription": "This property offers single rooms for one person only. Tenants may share bathrooms, and sometimes kitchen facilities.",
"listings.specialNotes": "Special notes",
"listings.underConstruction": "Under construction",
"listings.unit.sharedBathroom": "Shared",
"listings.unitsAreFor": "These units are for %{type}.",
"listings.unitsHaveAccessibilityFeaturesFor": "These units have accessibility features for people with %{type}.",
"listings.unitsSummary.notAvailable": "Not available",
"listings.unitTypes.bedroomSize": "Bedroom size",
"listings.unitTypes.expanded.fiveBdrm": "5 bedroom",
"listings.unitTypes.expanded.fourBdrm": "4 bedroom",
"listings.unitTypes.expanded.oneBdrm": "1 bedroom",
"listings.unitTypes.expanded.threeBdrm": "3 bedroom",
"listings.unitTypes.expanded.twoBdrm": "2 bedroom",
"listings.unitTypes.fiveBdrm": "5 BR",
"listings.unitTypes.fourBdrm": "4 BR",
"listings.unitTypes.oneBdrm": "1 BR",
"listings.unitTypes.SRO": "SRO",
"listings.unitTypes.studio": "Studio",
"listings.unitTypes.threeBdrm": "3 BR",
"listings.unitTypes.twoBdrm": "2 BR",
"listings.upcomingLotteries.noResults": "There are no closed listings with upcoming lotteries at this time.",
"listings.utilities.cable": "Cable",
"listings.utilities.electricity": "Electricity",
"listings.utilities.gas": "Gas",
"listings.utilities.internet": "Internet",
"listings.utilities.phone": "Phone",
"listings.utilities.sewer": "Sewer",
"listings.utilities.trash": "Trash",
"listings.utilities.water": "Water",
"listings.vacantUnit": "Vacant unit",
"listings.vacantUnits": "Vacant units",
"listings.vacantUnitsAvailable": "Vacant units available",
"listings.verifiedListing": "Confirmed by property",
"listings.waitlist.closed": "Waitlist closed",
"listings.waitlist.currentSize": "Current waitlist size",
"listings.waitlist.finalSize": "Final waitlist size",
"listings.waitlist.isClosed": "Waitlist is closed",
"listings.waitlist.isOpen": "Waitlist is open",
"listings.waitlist.label": "Waitlist",
"listings.waitlist.open": "Open waitlist",
"listings.waitlist.openSlots": "Open waitlist slots",
"listings.waitlist.submitAnApplication": "Once ranked applicants fill all available units, the remaining ranked applicants will be placed on a waitlist for those same units.",
"listings.waitlist.submitForWaitlist": "Submit an application for an open slot on the waitlist.",
"listings.waitlist.unitsAndWaitlist": "Available units and waitlist",
"lottery.applicationsThatQualifyForPreference": "Applications that qualify for this preference will be given a higher priority.",
"lottery.viewPreferenceList": "View preference list",
"months.january": "January",
"months.february": "February",
"months.march": "March",
"months.april": "April",
"months.may": "May",
"months.june": "June",
"months.july": "July",
"months.august": "August",
"months.september": "September",
"months.october": "October",
"months.november": "November",
"months.december": "December",
"nav.browseProperties": "Browse properties",
"nav.getFeedback": "We'd love to get your feedback!",
"nav.listings": "Listings",
"nav.myAccount": "My account",
"nav.myDashboard": "My dashboard",
"nav.mySettings": "My settings",
"nav.properties": "Properties",
"nav.signIn": "Sign in",
"nav.signInMFA.addNumber": "Add a phone number",
"nav.signInMFA.addNumberSecondaryTitle": "Enter your phone number and we'll send you a code that you can use to sign in.",
"nav.signInMFA.addPhoneNumber": "Your phone number",
"nav.signInMFA.code": "Code",
"nav.signInMFA.editPhoneNumber": "Edit phone number",
"nav.signInMFA.haveSentCodeToEmail": "We sent a code to your email. Please enter the number below.",
"nav.signInMFA.haveSentCodeToPhone": "We sent a code to your phone. Please enter the number below.",
"nav.signInMFA.noMFACode": "Please enter your code",
"nav.signInMFA.noMFAType": "Please select MFA type",
"nav.signInMFA.phoneNumber": "Phone number",
"nav.signInMFA.sentTo": "Code sent to: %{phoneNumber}",
"nav.signInMFA.signIn": "Verify and sign in",
"nav.signInMFA.verificationChoiceMainTitle": "How would you like us to verify that it's you?",
"nav.signInMFA.verificationChoiceSecondaryTitle": "We can send a code to your email or phone number",
"nav.signInMFA.verifyByEmail": "Verify with email",
"nav.signInMFA.verifyByPhone": "Verify with phone number",
"nav.signInMFA.verifyTitle": "Verify that it's you",
"nav.signOut": "Sign out",
"nav.siteTitle": "Housing Portal",
"nav.viewListings": "View listings",
"pageDescription.additionalResources": "We encourage you to browse other affordable housing resources.",
"pageDescription.getAssistance": "Learn more about finding and applying for affordable rental opportunities, and find additional housing listings.",
"pageDescription.listing": "Apply for affordable housing at %{listingName} in %{regionName}, built in partnership with Exygy.",
"pageDescription.welcome": "Search and apply for affordable housing on %{regionName}'s Housing Portal",
"pageTitle.accessibilityStatement": "Accessibility statement",
"pageTitle.adaFeatures": "ADA features",
"pageTitle.addHouseholdMembers": "Add household members",
"pageTitle.additionalResources": "More housing opportunities",
"pageTitle.alternateContactDetails": "Alternate contact details",
"pageTitle.alternateContactName": "Alternate contact name",
"pageTitle.alternateContactType": "Alternate contact type",
"pageTitle.autofill": "Autofill",
"pageTitle.communityDisclaimer": "Community disclaimer",
"pageTitle.demographics": "Demographics",
"pageTitle.disclaimer": "Disclaimer",
"pageTitle.forgotPassword": "Forgot password",
"pageTitle.getAssistance": "Get assistance",
"pageTitle.householdMembersNotice": "Household members notice",
"pageTitle.householdStudent": "Household student",
"pageTitle.housingCounselors": "Housing counselors",
"pageTitle.liveAlone": "Live alone",
"pageTitle.preferencesNotice": "Preferences notice",
"pageTitle.preview": "Preview",
"pageTitle.primaryApplicantAddress": "Primary applicant address",
"pageTitle.primaryApplicantName": "Primary applicant name",
"pageTitle.privacy": "Privacy policy",
"pageTitle.rent": "Rent affordable housing",
"pageTitle.rentalFinder": "Rental finder",
"pageTitle.resetPassword": "Reset password",
"pageTitle.summary": "Summary",
"pageTitle.termsAndConditions": "Terms and Conditions",
"pageTitle.verifyCode": "Verify code",
"pageTitle.vouchersAndSubsidies": "Vouchers & subsidies",
"pageTitle.welcomeEnglish": "Welcome",
"pageTitle.welcomeSpanish": "Bienvenido",
"pageTitle.welcomeVietnamese": "Tiếng Việt",
"progressNav.completed": "completed",
"progressNav.notCompleted": "not completed",
"progressNav.srHeading": "Progress",
"region.name": "Bloomington",
"seasons.fall": "Fall",
"seasons.spring": "Spring",
"seasons.summer": "Summer",
"seasons.winter": "Winter",
"siteMessage.generic": "This is a generic site message to inform users of important information to consider as they search for affordable housing and supportive resources. For more information, check out this <a className='lined' href='https://www.example.com/' target='_blank'>example site</a>.",
"states.AK": "Alaska",
"states.AL": "Alabama",
"states.AR": "Arkansas",
"states.AZ": "Arizona",
"states.CA": "California",
"states.CO": "Colorado",
"states.CT": "Connecticut",
"states.DC": "District Of Columbia",
"states.DE": "Delaware",
"states.FL": "Florida",
"states.GA": "Georgia",
"states.HI": "Hawaii",
"states.IA": "Iowa",
"states.ID": "Idaho",
"states.IL": "Illinois",
"states.IN": "Indiana",
"states.KS": "Kansas",
"states.KY": "Kentucky",
"states.LA": "Louisiana",
"states.MA": "Massachusetts",
"states.MD": "Maryland",
"states.ME": "Maine",
"states.MI": "Michigan",
"states.MN": "Minnesota",
"states.MO": "Missouri",
"states.MS": "Mississippi",
"states.MT": "Montana",
"states.NC": "North Carolina",
"states.ND": "North Dakota",
"states.NE": "Nebraska",
"states.NH": "New Hampshire",
"states.NJ": "New Jersey",
"states.NM": "New Mexico",
"states.NV": "Nevada",
"states.NY": "New York",
"states.OH": "Ohio",
"states.OK": "Oklahoma",