Update index.ts

This commit is contained in:
Pavel Slabý
2025-11-20 12:02:19 +01:00
committed by GitHub
parent 987d9fad08
commit e1c30eb0d7

View File

@@ -31,7 +31,7 @@ const i18n = createI18n({
cs_CZ(choice: number) {
if (choice === 0) return 0;
if (choice === 1) return 1;
return (choice >= 2 && choice <= 4) ? 2 : 3;
return choice >= 2 && choice <= 4 ? 2 : 3;
},
},
});