${this.t('Annual profection')}
${data.targetDate ? html`${this.t('For')} ${formatDate(this.effectiveLang(), data.targetDate)}` : nothing}
${data.age}
${this.t('Age')}
${this.t('Activates')}
${this.t('House')} ${data.profectedHouse}
${sGlyph ? html`${sGlyph}` : nothing}${data.profectedSign}
${this.t('Lord of the year')}
${lordGlyph ? html`${lordGlyph} ` : nothing}${data.lordOfYear}
${
data.lordNatalPosition
? html`${this.t('Natal')} ${lordNatalGlyph ? html`${lordNatalGlyph} ` : nothing}${this.t('{{sign}} ยท house {{house}}', { sign: data.lordNatalPosition.sign, house: data.lordNatalPosition.house })}`
: nothing
}
${
// The house, the sign and the lord above are the profection; this is the
// read of them.
data.interpretation && !this.hideReadings
? html`
${data.interpretation}
`
: nothing
}
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'roxy-profection-card': RoxyProfectionCard;
}
}