fix spelling, formatting, and spacing

This commit is contained in:
Josh Hawkins 2025-03-16 11:14:19 -05:00
parent 5a40e81a36
commit cc3878bd08
14 changed files with 154 additions and 154 deletions

View File

@ -96,8 +96,8 @@
"languages": "Languages",
"language": {
"en": "English",
"zhCN": "简体中文(Simplified Chinese)",
"withSystem.label": "Use the system settings for languag"
"zhCN": "简体中文 (Simplified Chinese)",
"withSystem.label": "Use the system settings for language"
},
"appearance": "Appearance",
"darkMode": {

View File

@ -9,7 +9,7 @@
"rateLimit": "Exceeded rate limit. Try again later.",
"loginFailed": "Login failed",
"unknownError": "Unknown error. Check logs.",
"webUnkownError": "Unknown error. Check console logs."
"webUnknownError": "Unknown error. Check console logs."
}
}
}

View File

@ -19,8 +19,8 @@
"bandwidth.short": "Bandwidth",
"latency": "Latency:",
"latency.short": "Latency",
"latency.value": "{{secounds}} seconds",
"latency.short.value": "{{secounds}} sec",
"latency.value": "{{seconds}} seconds",
"latency.short.value": "{{seconds}} sec",
"totalFrames": "Total Frames:",
"droppedFrames": "Dropped Frames:",
"droppedFrames.short": "Dropped",

View File

@ -89,8 +89,8 @@
"camera": "Camera",
"unused": "Unused",
"unusedStorageInformation": "Unused Storage Information",
"storageUsed": "Storage Used",
"percentageOfTotalUsed": "Percentage of Total Used",
"storageUsed": "Storage",
"percentageOfTotalUsed": "Percentage of Total",
"bandwidth": "Bandwidth",
"unused.tips": "This value may not accurately represent the free space available to Frigate if you have other files stored on your drive beyond Frigate's recordings. Frigate does not track storage usage outside of its recordings."
}

View File

@ -101,7 +101,7 @@
"systemLogs": "系统日志",
"settings": "设置",
"configurationEditor": "配置编辑器",
"languages": "languages / 语言",
"languages": "Languages / 语言",
"language": {
"en": "English",
"zhCN": "简体中文",

View File

@ -9,7 +9,7 @@
"rateLimit": "超出请求限制,请稍后再试。",
"loginFailed": "登录失败",
"unknownError": "未知错误,请检查日志。",
"webUnkownError": "未知错误,请检查控制台日志。"
"webUnknownError": "未知错误,请检查控制台日志。"
}
}
}

View File

@ -19,8 +19,8 @@
"bandwidth.short": "带宽",
"latency": "延迟:",
"latency.short": "延迟",
"latency.value": "{{secounds}} 秒",
"latency.short.value": "{{secounds}} 秒",
"latency.value": "{{seconds}} 秒",
"latency.short.value": "{{seconds}} 秒",
"totalFrames": "总帧数:",
"droppedFrames": "丢帧数:",
"droppedFrames.short": "丢帧",

View File

@ -77,7 +77,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
});
}
} else {
toast.error(t("form.errors.webUnkownError"), {
toast.error(t("form.errors.webUnknownError"), {
position: "top-center",
});
}

View File

@ -25,7 +25,7 @@ export function PlayerStats({ stats, minimal }: PlayerStatsProps) {
<span
className={`text-white ${stats.latency > 2 ? "text-danger" : ""}`}
>
{t("stats.latency.value", { secounds: stats.latency.toFixed(2) })}
{t("stats.latency.value", { seconds: stats.latency.toFixed(2) })}
</span>
</p>
)}
@ -73,7 +73,7 @@ export function PlayerStats({ stats, minimal }: PlayerStatsProps) {
className={`text-white ${stats.latency >= 2 ? "text-danger" : ""}`}
>
{t("stats.latency.short.value", {
secounds: stats.latency.toFixed(2),
seconds: stats.latency.toFixed(2),
})}
</span>
</div>