--- import { t, type Locale } from '../i18n/utils'; interface Props { locale: Locale; } const { locale } = Astro.props; const copy = t(locale); const items = [ copy.trustStrip.openSource, copy.trustStrip.recoveryFirst, copy.trustStrip.developerAware, copy.trustStrip.macNative, copy.trustStrip.directDownload, ]; --- {items.map((item) => ( {item} ))}