---
import { loadTranslations } from '../../utils/i18n';
import ScreenshotGallery from './ScreenshotGallery.astro';
const { software, locale } = Astro.props;
const t = await loadTranslations(locale);
---
{t.common.overview || 'Overview'}
{software.description}
{software.screenshots && software.screenshots.length > 0 && (
)}
{t.software.features || 'Features'}
{software.features.map(feature => (
- {feature}
))}
{t.software.platforms || 'Platforms'}
{software.platforms.map(platform => (
{platform}
))}
{t.software.lastUpdated || 'Last Updated'}: {new Date(software.lastUpdated).toLocaleDateString()}