import type { I18nStrings } from '../types.js'; const en: I18nStrings = { locale: 'en', indicators: { 'weight-for-age': 'Weight for age', 'length-height-for-age': 'Length/height for age', 'bmi-for-age': 'BMI for age', 'head-circumference-for-age': 'Head circumference for age', 'weight-for-length': 'Weight for length', 'weight-for-height': 'Weight for height', }, classifications: { 'very-low': 'Very low', low: 'Low', adequate: 'Adequate', risk: 'Risk', high: 'High', 'very-high': 'Very high', }, age: { years: (n) => (n === 1 ? '1 year' : `${n} years`), months: (n) => (n === 1 ? '1 month' : `${n} months`), days: (n) => (n === 1 ? '1 day' : `${n} days`), and: 'and', }, }; export default en;