mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-09 15:05:26 +03:00
fix spelling, formatting, and spacing
This commit is contained in:
parent
5a40e81a36
commit
cc3878bd08
@ -97,7 +97,7 @@
|
||||
"language": {
|
||||
"en": "English",
|
||||
"zhCN": "简体中文 (Simplified Chinese)",
|
||||
"withSystem.label": "Use the system settings for languag"
|
||||
"withSystem.label": "Use the system settings for language"
|
||||
},
|
||||
"appearance": "Appearance",
|
||||
"darkMode": {
|
||||
|
||||
@ -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."
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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",
|
||||
|
||||
@ -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."
|
||||
}
|
||||
|
||||
@ -101,7 +101,7 @@
|
||||
"systemLogs": "系统日志",
|
||||
"settings": "设置",
|
||||
"configurationEditor": "配置编辑器",
|
||||
"languages": "languages / 语言",
|
||||
"languages": "Languages / 语言",
|
||||
"language": {
|
||||
"en": "English",
|
||||
"zhCN": "简体中文",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"rateLimit": "超出请求限制,请稍后再试。",
|
||||
"loginFailed": "登录失败",
|
||||
"unknownError": "未知错误,请检查日志。",
|
||||
"webUnkownError": "未知错误,请检查控制台日志。"
|
||||
"webUnknownError": "未知错误,请检查控制台日志。"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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": "丢帧",
|
||||
|
||||
@ -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",
|
||||
});
|
||||
}
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user