{{ t('title') }}

{{ t('description') }}

@if (totalBooks > 0) {
{{ t('booksWithDates', { count: totalBooks }) }}
}
@if (totalBooks > 0) {
@if (insights) {
@if (insights.oldestBook) {
{{ t('insightOldest') }} {{ insights.oldestBook.year }} {{ insights.oldestBook.title }}
}
{{ t('insightAverageYear') }} {{ insights.averageYear }} {{ t('insightMedian', { year: insights.medianYear }) }}
@if (insights.newestBook) {
{{ t('insightNewest') }} {{ insights.newestBook.year }} {{ insights.newestBook.title }}
}
{{ t('insightMostCommonYear') }} {{ insights.mostCommonYear.year }} {{ t('insightMostCommonYearBooks', { count: insights.mostCommonYear.count }) }}
{{ t('insightTimeSpan') }} {{ insights.timeSpan }} {{ t('insightYearsOfLiterature') }}
{{ t('insightPeakDecade') }} {{ insights.peakDecade }} {{ t('insightPeakDecadeBooks', { count: insights.peakDecadeCount }) }}
{{ t('insightGoldenEra') }} {{ insights.goldenEra.start }}-{{ insights.goldenEra.end }} {{ t('insightGoldenEraRange', { count: insights.goldenEra.count }) }}
{{ t('insightRarityScore') }} {{ insights.rarityScore }}% {{ t('insightRarePicks') }}
} } @if (totalBooks === 0) {

{{ t('noData') }}

}