Hey there!
I’m using this rather primitive code as page method to detect if translated pages exist, which doesn’t work with my virtual page since it’s looking for the actual file:
function isTranslated(string $language): bool {
# Check if translation file for given language exists
return $this->translation($language)->exists();
}
Did you encounter this problem, and how are you dealing with it?