fix: correct milliseconds typo in translations

Fix typo from autofix.ci: miliseconds -> milliseconds
This commit is contained in:
bitloi 2026-01-17 14:36:45 +01:00
parent 1fadc95a96
commit 2d6ec375ea
2 changed files with 3 additions and 3 deletions

View File

@ -1055,8 +1055,8 @@
"remoteBrowserToggle": "By default Chromium runs inside the Uptime Kuma container. You can use a remote browser by toggling this switch.",
"useRemoteBrowser": "Use a Remote Browser",
"deleteRemoteBrowserMessage": "Are you sure want to delete this Remote Browser for all monitors?",
"Screenshot Delay": "Screenshot Delay ({miliseconds})",
"miliseconds": "{n} milisecond | {n} miliseconds",
"Screenshot Delay": "Screenshot Delay ({milliseconds})",
"milliseconds": "{n} millisecond | {n} milliseconds",
"screenshotDelayDescription": "Optionally wait this many milliseconds before taking the screenshot. Maximum: {maxValueMs}ms (0.5 × interval).",
"screenshotDelayWarning": "Higher values keep the browser open longer, which may increase memory usage with many concurrent monitors.",
"GrafanaOncallUrl": "Grafana Oncall URL",

View File

@ -268,7 +268,7 @@
<label for="screenshot-delay" class="form-label">
{{
$t("Screenshot Delay", {
miliseconds: $t("miliseconds", monitor.screenshot_delay),
milliseconds: $t("milliseconds", monitor.screenshot_delay),
})
}}
</label>