update translations

This commit is contained in:
henrygd
2026-04-05 14:36:15 -04:00
parent 0f2e16c63c
commit a68e02ca84
35 changed files with 5753 additions and 418 deletions

View File

@@ -192,7 +192,7 @@ export function useSystemData(id: string) {
// Skip the fetch if the latest cached point is recent enough that no new point is expected yet
const lastCreated = cachedSystemStats.at(-1)?.created as number | undefined
if (lastCreated && Date.now() - lastCreated < expectedInterval) {
if (lastCreated && Date.now() - lastCreated < expectedInterval * 0.9) {
return
}
} else {