Localize the budget dropdown to Persian
deploy / deploy (push) Successful in 24s

The budget options were English/USD even in Persian mode. Make them
locale-aware (stable option values) so the FA form is fully Persian.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-26 11:13:34 +03:30
parent ffba74a727
commit 154e06ef54
+4 -4
View File
@@ -337,10 +337,10 @@
<label class="flabel" for="budget">@(fa ? "بودجه (تقریبی)" : "Budget (rough)")<span class="text-red-600" aria-hidden="true"> *</span></label> <label class="flabel" for="budget">@(fa ? "بودجه (تقریبی)" : "Budget (rough)")<span class="text-red-600" aria-hidden="true"> *</span></label>
<select id="budget" name="budget" required class="field"> <select id="budget" name="budget" required class="field">
<option value="" disabled selected>@(fa ? "انتخاب کنید" : "Select…")</option> <option value="" disabled selected>@(fa ? "انتخاب کنید" : "Select…")</option>
<option>Under $10k</option> <option value="under-10k">@(fa ? "زیر ۱۰ هزار دلار" : "Under $10k")</option>
<option>$10k - $50k</option> <option value="10-50k">@(fa ? "۱۰ تا ۵۰ هزار دلار" : "$10k - $50k")</option>
<option>$50k - $200k</option> <option value="50-200k">@(fa ? "۵۰ تا ۲۰۰ هزار دلار" : "$50k - $200k")</option>
<option>$200k+</option> <option value="200k-plus">@(fa ? "بیش از ۲۰۰ هزار دلار" : "$200k+")</option>
</select> </select>
</div> </div>
</div> </div>