import type { PluralProcessor } from "../pluralization.js"; const p: PluralProcessor = (value: string[], count: number) => { const c = Math.floor(Math.abs(count)); if (c === 1 || c === 11) { return value[0]; } if (c === 2 || c === 12) { return value[1]; } if ((c >= 3 && c <= 10) || (c >= 13 && c <= 19)) { return value[2]; } return value[3]; }; export const plurals_gd = p;