feat(i18n): i18nize everything

This commit is contained in:
2026-01-30 22:58:07 +01:00
parent 13e4ae64b5
commit 9deeb42cfd
16 changed files with 142 additions and 78 deletions

View File

@@ -71,7 +71,11 @@ const renderFrame = (timestamp: number) => {
for (const callback of sortedCallbacks) {
ctx.save();
callback(ctx, deltaTime, lastRealFrameTime);
try {
callback(ctx, deltaTime, lastRealFrameTime);
} catch (error: unknown) {
console.error(error);
}
ctx.restore();
}