mirror of
https://github.com/rommapp/romm.git
synced 2026-02-19 07:50:57 +01:00
Update index.ts
This commit is contained in:
@@ -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;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user