client: Use translations for first day of week

This commit is contained in:
Elian Doran 2024-09-01 00:22:29 +03:00
parent 9fa31db207
commit bfea3d53b3
No known key found for this signature in database
3 changed files with 1250 additions and 1246 deletions

View File

@ -24,6 +24,7 @@ scopeRangeRegex: "useTranslation\\(\\s*\\[?\\s*['\"`](.*?)['\"`]"
# The "$1" will be replaced by the keypath specified.
refactorTemplates:
- t("$1")
- ${t("$1")}
# If set to true, only enables this custom framework (will disable all built-in frameworks)

View File

@ -14,10 +14,10 @@ const TPL = `
</div>
<div class="col-6">
<label>First day of the week</label>
<label>${t("i18n.first-day-of-the-week")}</label>
<select class="first-day-of-week-select form-control">
<option value="0">Sunday</option>
<option value="1">Monday</option>
<option value="0">${t("i18n.sunday")}</option>
<option value="1">${t("i18n.monday")}</option>
</select>
</div>
</div>

File diff suppressed because it is too large Load Diff