This commit is contained in:
Andras Schmelczer 2026-05-14 08:09:19 +01:00
parent a8165249a4
commit a4103b0896
64 changed files with 5376 additions and 3832 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 120 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 371 KiB

After

Width:  |  Height:  |  Size: 178 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 283 KiB

After

Width:  |  Height:  |  Size: 110 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 385 KiB

After

Width:  |  Height:  |  Size: 387 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 396 KiB

After

Width:  |  Height:  |  Size: 354 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 392 KiB

After

Width:  |  Height:  |  Size: 382 KiB

Before After
Before After

Binary file not shown.

View file

@ -239,7 +239,7 @@ function SavedSearchesTab({
const shortUrl = await shortenUrl(params);
doCopy(shortUrl, id);
} catch {
doCopy(`${window.location.origin}/?${params}`, id);
doCopy(`${window.location.origin}/dashboard?${params}`, id);
} finally {
setSharingId(null);
}
@ -552,6 +552,15 @@ interface InviteListItem {
created: string;
}
interface ShareLinkListItem {
code: string;
url: string;
og_image_url: string;
params: string;
click_count: number;
created: string;
}
function InviteTable({
invites,
loading,
@ -646,7 +655,125 @@ function InviteTable({
);
}
export function InvitesPage({ user }: { user: AuthUser }) {
function ShareLinksSection() {
const { t } = useTranslation();
const [links, setLinks] = useState<ShareLinkListItem[]>([]);
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
const [copiedCode, setCopiedCode] = useState<string | null>(null);
useEffect(() => {
let cancelled = false;
setLoading(true);
setError(null);
fetch(apiUrl('share-links'), authHeaders())
.then((res) => {
assertOk(res, 'Fetch share links');
return res.json();
})
.then((data: { links: ShareLinkListItem[] }) => {
if (!cancelled) setLinks(data.links);
})
.catch((err) => {
if (!cancelled) {
setError(err instanceof Error ? err.message : 'Failed to fetch share links');
}
})
.finally(() => {
if (!cancelled) setLoading(false);
});
return () => {
cancelled = true;
};
}, []);
const handleCopy = (url: string, code: string) => {
copyToClipboard(url, () => {
setCopiedCode(code);
setTimeout(() => setCopiedCode(null), 2000);
});
};
return (
<section className="space-y-3">
<h2 className="text-base font-semibold text-navy-950 dark:text-warm-100">
{t('accountPage.shareLinksTitle')}
</h2>
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 overflow-hidden">
{loading ? (
<div className="flex items-center justify-center py-8">
<SpinnerIcon className="w-5 h-5 text-teal-600 dark:text-teal-400 animate-spin" />
</div>
) : error ? (
<p className="px-5 py-6 text-sm text-red-600 dark:text-red-400 text-center">{error}</p>
) : links.length === 0 ? (
<p className="px-5 py-6 text-sm text-warm-500 dark:text-warm-400 text-center">
{t('accountPage.noShareLinksYet')}
</p>
) : (
<div className="divide-y divide-warm-100 dark:divide-warm-700">
{links.map((link) => (
<div key={link.code} className="px-5 py-4">
<div className="flex flex-col gap-3 sm:flex-row sm:items-start">
<div className="aspect-[1200/630] w-full shrink-0 overflow-hidden rounded-lg border border-warm-200 bg-warm-100 dark:border-warm-700 dark:bg-warm-900 sm:w-40">
<img
src={link.og_image_url}
alt=""
loading="lazy"
decoding="async"
className="h-full w-full object-cover"
/>
</div>
<div className="flex min-w-0 flex-1 items-start justify-between gap-4">
<div className="min-w-0">
<div className="flex items-center gap-2 min-w-0">
<span
className="text-navy-950 dark:text-warm-200 font-mono text-xs truncate min-w-0"
style={{ direction: 'rtl', textAlign: 'left' }}
>
{link.url}
</span>
<button
onClick={() => handleCopy(link.url, link.code)}
className="shrink-0 text-warm-400 hover:text-warm-700 dark:hover:text-warm-300"
title={t('accountPage.copyShareLink')}
>
{copiedCode === link.code ? (
<CheckIcon className="w-4 h-4 text-teal-600 dark:text-teal-400" />
) : (
<ClipboardIcon className="w-4 h-4" />
)}
</button>
</div>
<p className="mt-1 text-xs text-warm-500 dark:text-warm-400">
{summarizeParams(link.params)}
</p>
<p className="mt-1 text-xs text-warm-400 dark:text-warm-500">
{formatRelativeTime(link.created)}
</p>
</div>
<div className="shrink-0 text-right">
<p className="text-lg font-semibold text-navy-950 dark:text-warm-100">
{formatNumber(link.click_count)}
</p>
<p className="text-xs text-warm-500 dark:text-warm-400">
{t('accountPage.clicksLabel')}
</p>
</div>
</div>
</div>
</div>
))}
</div>
)}
</div>
</section>
);
}
function InviteSection({ user }: { user: AuthUser }) {
const { t } = useTranslation();
const [creatingInvite, setCreatingInvite] = useState<Record<string, boolean>>({});
const [inviteUrl, setInviteUrl] = useState<Record<string, string>>({});
@ -720,15 +847,9 @@ export function InvitesPage({ user }: { user: AuthUser }) {
if (!isLicensed) {
return (
<PageLayout>
<div className="max-w-lg mx-auto">
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 p-6 text-center">
<p className="text-warm-600 dark:text-warm-300">
{t('invitesPage.inviteLinksLicensed')}
</p>
</div>
</div>
</PageLayout>
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 p-6 text-center">
<p className="text-warm-600 dark:text-warm-300">{t('invitesPage.inviteLinksLicensed')}</p>
</div>
);
}
@ -736,89 +857,87 @@ export function InvitesPage({ user }: { user: AuthUser }) {
const referralInvites = inviteHistory.filter((i) => i.invite_type === 'referral');
return (
<PageLayout>
<div className="max-w-lg mx-auto space-y-6">
{/* Generate invite links */}
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 divide-y divide-warm-200 dark:divide-warm-700">
{(user.isAdmin ? ['admin', 'referral'] : ['referral']).map((type) => (
<div key={type} className="px-5 py-4">
<p className="text-sm text-warm-500 dark:text-warm-400 mb-3">
{type === 'admin'
? t('invitesPage.inviteAdminLabel')
: t('invitesPage.inviteReferralLabel')}
</p>
{inviteUrl[type] ? (
<div className="flex items-center gap-2">
<input
type="text"
readOnly
value={inviteUrl[type]}
className="flex-1 px-3 py-2 rounded-lg border border-warm-200 dark:border-warm-700 bg-warm-50 dark:bg-warm-900 text-navy-950 dark:text-warm-200 text-sm"
/>
<button
onClick={() => handleCopyInvite(type)}
className="px-3 py-2 rounded-lg bg-teal-600 hover:bg-teal-700 text-white text-sm font-medium flex items-center gap-1.5"
>
{inviteCopied[type] ? (
<CheckIcon className="w-4 h-4" />
) : (
<ClipboardIcon className="w-4 h-4" />
)}
{inviteCopied[type] ? t('common.copied') : t('common.copy')}
</button>
</div>
) : (
<div className="space-y-6">
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 divide-y divide-warm-200 dark:divide-warm-700">
{(user.isAdmin ? ['admin', 'referral'] : ['referral']).map((type) => (
<div key={type} className="px-5 py-4">
<p className="text-sm text-warm-500 dark:text-warm-400 mb-3">
{type === 'admin'
? t('invitesPage.inviteAdminLabel')
: t('invitesPage.inviteReferralLabel')}
</p>
{inviteUrl[type] ? (
<div className="flex items-center gap-2">
<input
type="text"
readOnly
value={inviteUrl[type]}
className="flex-1 px-3 py-2 rounded-lg border border-warm-200 dark:border-warm-700 bg-warm-50 dark:bg-warm-900 text-navy-950 dark:text-warm-200 text-sm"
/>
<button
onClick={() => handleCreateInvite(type)}
disabled={!!creatingInvite[type]}
className="px-4 py-2 rounded-lg bg-teal-600 hover:bg-teal-700 text-white text-sm font-medium disabled:opacity-50 disabled:cursor-wait flex items-center gap-2"
onClick={() => handleCopyInvite(type)}
className="px-3 py-2 rounded-lg bg-teal-600 hover:bg-teal-700 text-white text-sm font-medium flex items-center gap-1.5"
>
{creatingInvite[type] && <SpinnerIcon className="w-4 h-4 animate-spin" />}
{type === 'admin'
? t('invitesPage.generateFreeInvite')
: t('invitesPage.generateReferralLink')}
{inviteCopied[type] ? (
<CheckIcon className="w-4 h-4" />
) : (
<ClipboardIcon className="w-4 h-4" />
)}
{inviteCopied[type] ? t('common.copied') : t('common.copy')}
</button>
)}
{inviteError[type] && (
<p className="mt-2 text-sm text-red-600 dark:text-red-400">{inviteError[type]}</p>
)}
</div>
))}
</div>
</div>
) : (
<button
onClick={() => handleCreateInvite(type)}
disabled={!!creatingInvite[type]}
className="px-4 py-2 rounded-lg bg-teal-600 hover:bg-teal-700 text-white text-sm font-medium disabled:opacity-50 disabled:cursor-wait flex items-center gap-2"
>
{creatingInvite[type] && <SpinnerIcon className="w-4 h-4 animate-spin" />}
{type === 'admin'
? t('invitesPage.generateFreeInvite')
: t('invitesPage.generateReferralLink')}
</button>
)}
{inviteError[type] && (
<p className="mt-2 text-sm text-red-600 dark:text-red-400">{inviteError[type]}</p>
)}
</div>
))}
</div>
{/* Invite history tables */}
{user.isAdmin && (
<>
<InviteTable
invites={adminInvites}
loading={inviteHistoryLoading}
title={t('invitesPage.adminInvitesTitle')}
/>
<InviteTable
invites={referralInvites}
loading={inviteHistoryLoading}
title={t('invitesPage.referralInvitesTitle')}
/>
</>
)}
{!user.isAdmin && referralInvites.length > 0 && (
{user.isAdmin && (
<>
<InviteTable
invites={adminInvites}
loading={inviteHistoryLoading}
title={t('invitesPage.adminInvitesTitle')}
/>
<InviteTable
invites={referralInvites}
loading={inviteHistoryLoading}
title={t('invitesPage.yourInviteLinks')}
title={t('invitesPage.referralInvitesTitle')}
/>
)}
</div>
</PageLayout>
</>
)}
{!user.isAdmin && referralInvites.length > 0 && (
<InviteTable
invites={referralInvites}
loading={inviteHistoryLoading}
title={t('invitesPage.yourInviteLinks')}
/>
)}
</div>
);
}
export default function AccountPage({
user,
onRefreshAuth,
scrollTarget,
}: {
user: AuthUser;
onRefreshAuth: () => Promise<void>;
scrollTarget?: string;
}) {
const { t } = useTranslation();
const [newsletterSaving, setNewsletterSaving] = useState(false);
@ -831,6 +950,14 @@ export default function AccountPage({
? 'bg-teal-100 text-teal-700 dark:bg-teal-900/30 dark:text-teal-400'
: 'bg-warm-100 text-warm-600 dark:bg-warm-700 dark:text-warm-300';
useEffect(() => {
if (scrollTarget !== 'invites') return;
const frame = window.requestAnimationFrame(() => {
document.getElementById('invites')?.scrollIntoView({ block: 'start', behavior: 'smooth' });
});
return () => window.cancelAnimationFrame(frame);
}, [scrollTarget]);
return (
<PageLayout>
<div className="max-w-lg mx-auto space-y-6">
@ -914,6 +1041,15 @@ export default function AccountPage({
</div>
</div>
<section id="invites" className="scroll-mt-4 space-y-3">
<h2 className="text-base font-semibold text-navy-950 dark:text-warm-100">
{t('header.inviteFriends')}
</h2>
<InviteSection user={user} />
</section>
<ShareLinksSection />
{/* Support */}
<div className="bg-white dark:bg-warm-800 rounded-xl border border-warm-200 dark:border-warm-700 p-6 text-center">
<p className="text-warm-600 dark:text-warm-300 mb-2">{t('accountPage.needHelp')}</p>

View file

@ -0,0 +1,33 @@
import { useEffect } from 'react';
export function usePageMeta(title: string, description: string) {
useEffect(() => {
const previousTitle = document.title;
let descriptionMeta = document.querySelector<HTMLMetaElement>('meta[name="description"]');
const previousDescription = descriptionMeta?.getAttribute('content') ?? null;
const createdDescriptionMeta = !descriptionMeta;
if (!descriptionMeta) {
descriptionMeta = document.createElement('meta');
descriptionMeta.setAttribute('name', 'description');
document.head.appendChild(descriptionMeta);
}
document.title = title;
descriptionMeta.setAttribute('content', description);
return () => {
document.title = previousTitle;
if (!descriptionMeta) return;
if (createdDescriptionMeta) {
descriptionMeta.remove();
return;
}
if (previousDescription === null) {
descriptionMeta.removeAttribute('content');
} else {
descriptionMeta.setAttribute('content', previousDescription);
}
};
}, [description, title]);
}

View file

@ -29,6 +29,7 @@ const descriptions: Record<string, Record<string, string>> = {
'Potential energy rating':
'Classement EPC potentiel si toutes les améliorations recommandées étaient réalisées',
'Interior height (m)': 'Hauteur moyenne détage selon le diagnostic EPC',
'Street tree density percentile': 'Percentile estimé de couverture arborée pour la rue du bien',
'Good+ primary schools within 2km':
'Écoles primaires notées Bien ou Excellent par Ofsted dans un rayon de 2 km',
'Good+ secondary schools within 2km':
@ -121,6 +122,8 @@ const descriptions: Record<string, Record<string, string>> = {
'Current energy rating': 'Aktuelle EPC-Energieeffizienzklasse (A = beste, G = schlechteste)',
'Potential energy rating': 'Potenzielle EPC-Klasse bei Umsetzung aller empfohlenen Maßnahmen',
'Interior height (m)': 'Durchschnittliche Geschosshöhe laut EPC-Gutachten',
'Street tree density percentile':
'Geschätztes Perzentil der Baumkronenbedeckung auf der Straße der Immobilie',
'Good+ primary schools within 2km':
'Von Ofsted mit Gut oder Hervorragend bewertete Grundschulen im Umkreis von 2 km',
'Good+ secondary schools within 2km':
@ -215,6 +218,7 @@ const descriptions: Record<string, Record<string, string>> = {
'Current energy rating': '当前EPC能效评级A = 最佳G = 最差)',
'Potential energy rating': '实施所有建议改进后的潜在EPC评级',
'Interior height (m)': 'EPC评估的平均层高',
'Street tree density percentile': '该房产所在街道的估计树冠覆盖率百分位',
'Good+ primary schools within 2km': 'Ofsted评为良好或优秀的2公里内小学',
'Good+ secondary schools within 2km': 'Ofsted评为良好或优秀的2公里内中学',
'Good+ primary schools within 5km': 'Ofsted评为良好或优秀的5公里内小学',
@ -288,6 +292,7 @@ const descriptions: Record<string, Record<string, string>> = {
'Current energy rating': 'मौजूदा EPC ऊर्जा रेटिंग (A = सबसे अच्छी, G = सबसे खराब)',
'Potential energy rating': 'सभी सुझाए गए सुधार होने पर संभावित EPC रेटिंग',
'Interior height (m)': 'EPC सर्वेक्षण के अनुसार औसत अंदरूनी ऊंचाई',
'Street tree density percentile': 'संपत्ति वाली सड़क का अनुमानित वृक्ष आच्छादन प्रतिशतक',
'Good+ primary schools within 2km':
'2 किमी के भीतर Ofsted से अच्छी या उत्कृष्ट रेटिंग वाले प्राइमरी स्कूल',
'Good+ secondary schools within 2km':
@ -372,6 +377,8 @@ const descriptions: Record<string, Record<string, string>> = {
'Potential energy rating':
'Potenciális EPC besorolás az összes javasolt fejlesztés elvégzése után',
'Interior height (m)': 'Átlagos belmagasság az EPC felmérés alapján',
'Street tree density percentile':
'Az ingatlan utcájának becsült lombkorona-fedettségi percentilise',
'Good+ primary schools within 2km':
'Ofsted által Jó vagy Kiváló minősítésű általános iskolák 2 km-en belül',
'Good+ secondary schools within 2km':

View file

@ -35,6 +35,8 @@ export const details: Record<string, Record<string, string>> = {
"La note d'efficacité énergétique potentielle issue du certificat de performance énergétique (EPC), si toutes les améliorations rentables recommandées dans le rapport EPC étaient réalisées. Va de A (plus efficace) à G (moins efficace).",
'Interior height (m)':
"Hauteur intérieure moyenne (sol au plafond) en mètres telle qu'enregistrée lors de l'évaluation du certificat de performance énergétique (EPC). Calculée en divisant le volume intérieur total par la surface habitable totale.",
'Street tree density percentile':
"Couverture arborée approximative autour du centroïde du code postal, dérivée de la carte Trees Outside Woodland 2025 de Forest Research. Les polygones de couvert arboré des arbres isolés et groupes d'arbres sont comptés dans un rayon de 50 m de chaque centroïde de code postal, puis convertis en percentile parmi les codes postaux anglais. Il s'agit d'un proxy de centroïde de code postal, pas d'une mesure exacte du bien ou du segment de rue.",
'Good+ primary schools within 2km':
"Écoles primaires financées par l'État dans un rayon de 2km ayant une note Ofsted actuelle de Bon ou Exceptionnel. Les écoles n'ayant pas encore été inspectées sont exclues.",
'Good+ secondary schools within 2km':
@ -64,41 +66,41 @@ export const details: Record<string, Record<string, string>> = {
'Air Quality and Road Safety Score':
"Provient du domaine Environnement de vie des Indices de Déprivation anglais, converti en percentile national où 0 % indique les pires conditions et 100 % les meilleures. Mesure l'environnement extérieur via la qualité de l'air et les victimes d'accidents de la route impliquant des piétons et des cyclistes.",
'Serious crime per 1k residents (avg/yr)':
"Violences, braquages, cambriolages et possession d'armes pour 1 000 résidents habituels par an dans le LSOA. Utilise les données de criminalité au niveau de la rue de police.uk (2023-2025) et les décomptes de population du Census 2021. Normalise en fonction de la densité de population afin que les zones soient comparables quelle que soit leur taille.",
"Violences, braquages, cambriolages et possession d'armes pour 1 000 résidents habituels par an dans le LSOA. Utilise les données de criminalité au niveau de la rue de police.uk et les décomptes de population du Census 2021. Normalise en fonction de la densité de population afin que les zones soient comparables quelle que soit leur taille.",
'Minor crime per 1k residents (avg/yr)':
"Comportements antisociaux, vols à l'étalage, vols de vélos et autres crimes de moindre gravité pour 1 000 résidents habituels par an dans le LSOA. Utilise les données de criminalité au niveau de la rue de police.uk (2023-2025) et les décomptes de population du Census 2021. Normalise en fonction de la densité de population afin que les zones soient comparables quelle que soit leur taille.",
"Comportements antisociaux, vols à l'étalage, vols de vélos et autres crimes de moindre gravité pour 1 000 résidents habituels par an dans le LSOA. Utilise les données de criminalité au niveau de la rue de police.uk et les décomptes de population du Census 2021. Normalise en fonction de la densité de population afin que les zones soient comparables quelle que soit leur taille.",
'Serious crime (avg/yr)':
"Somme des violences, braquages, cambriolages et possessions d'armes par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Fournit un indicateur unique de criminalité grave.",
"Somme des violences, braquages, cambriolages et possessions d'armes par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Fournit un indicateur unique de criminalité grave.",
'Minor crime (avg/yr)':
"Somme des comportements antisociaux, vols à l'étalage, vols de vélos et autres crimes de moindre gravité par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Fournit un indicateur unique de criminalité mineure.",
"Somme des comportements antisociaux, vols à l'étalage, vols de vélos et autres crimes de moindre gravité par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Fournit un indicateur unique de criminalité mineure.",
'Violence and sexual offences (avg/yr)':
'Nombre moyen de violences et infractions sexuelles par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les agressions, le harcèlement et les infractions sexuelles.',
'Nombre moyen de violences et infractions sexuelles par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les agressions, le harcèlement et les infractions sexuelles.',
'Burglary (avg/yr)':
'Nombre moyen de cambriolages par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les cambriolages résidentiels et commerciaux.',
'Nombre moyen de cambriolages par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les cambriolages résidentiels et commerciaux.',
'Robbery (avg/yr)':
'Nombre moyen de braquages par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Le braquage implique un vol avec usage ou menace de la force.',
'Nombre moyen de braquages par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Le braquage implique un vol avec usage ou menace de la force.',
'Vehicle crime (avg/yr)':
"Nombre moyen d'incidents de criminalité liés aux véhicules par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut le vol de véhicules et les vols à l'intérieur des véhicules.",
"Nombre moyen d'incidents de criminalité liés aux véhicules par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut le vol de véhicules et les vols à l'intérieur des véhicules.",
'Anti-social behaviour (avg/yr)':
"Nombre moyen d'incidents de comportement antisocial par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les nuisances, les comportements antisociaux environnementaux et personnels.",
"Nombre moyen d'incidents de comportement antisocial par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les nuisances, les comportements antisociaux environnementaux et personnels.",
'Criminal damage and arson (avg/yr)':
"Nombre moyen d'incidents de dommages criminels et d'incendie volontaire par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025).",
"Nombre moyen d'incidents de dommages criminels et d'incendie volontaire par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk.",
'Other theft (avg/yr)':
"Nombre moyen d'infractions de « vol divers » par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les vols ne relevant pas des catégories cambriolage, criminalité liée aux véhicules, vol à l'étalage ou vol de vélos.",
"Nombre moyen d'infractions de « vol divers » par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les vols ne relevant pas des catégories cambriolage, criminalité liée aux véhicules, vol à l'étalage ou vol de vélos.",
'Theft from the person (avg/yr)':
"Nombre moyen d'infractions de vol à la tire par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut le pickpocket et l'arrachage de sac sans violence.",
"Nombre moyen d'infractions de vol à la tire par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut le pickpocket et l'arrachage de sac sans violence.",
'Shoplifting (avg/yr)':
"Nombre moyen d'infractions de vol à l'étalage par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025).",
"Nombre moyen d'infractions de vol à l'étalage par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk.",
'Bicycle theft (avg/yr)':
"Nombre moyen d'infractions de vol de vélos par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025).",
"Nombre moyen d'infractions de vol de vélos par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk.",
'Drugs (avg/yr)':
"Nombre moyen d'infractions liées aux drogues par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les infractions de possession et de trafic.",
"Nombre moyen d'infractions liées aux drogues par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les infractions de possession et de trafic.",
'Possession of weapons (avg/yr)':
"Nombre moyen d'infractions de possession d'armes par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025).",
"Nombre moyen d'infractions de possession d'armes par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk.",
'Public order (avg/yr)':
"Nombre moyen d'infractions à l'ordre public par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Inclut les actes causant de la peur, de l'alarme ou de la détresse.",
"Nombre moyen d'infractions à l'ordre public par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Inclut les actes causant de la peur, de l'alarme ou de la détresse.",
'Other crime (avg/yr)':
"Nombre moyen d'autres infractions criminelles par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk (2023-2025). Catégorie fourre-tout pour les infractions non classées ailleurs.",
"Nombre moyen d'autres infractions criminelles par an dans le LSOA, provenant des données de criminalité au niveau de la rue de police.uk. Catégorie fourre-tout pour les infractions non classées ailleurs.",
'Median age':
"Provient du Census 2021 (TS007A). Âge médian des résidents habituels dans le LSOA, calculé par interpolation linéaire à partir des effectifs par tranche d'âge de cinq ans. Les zones à population plus jeune ont tendance à être urbaines, universitaires ou à accueillir davantage de familles ; les médianes plus élevées sont typiques des zones rurales et côtières.",
'% White':
@ -136,7 +138,7 @@ export const details: Record<string, Record<string, string>> = {
Schools:
"Filtre les écoles primaires ou secondaires financées par l'État à proximité, selon la note Ofsted et la distance choisies. Les seuils disponibles couvrent généralement les écoles Bonnes ou Exceptionnelles, ou uniquement Exceptionnelles, dans un rayon de 2 km ou 5 km.",
'Specific crimes':
"Filtre une catégorie de criminalité de rue à la fois, en utilisant la moyenne annuelle des infractions dans le LSOA. Les valeurs proviennent des données police.uk 2023-2025 et permettent d'isoler des catégories comme cambriolage, véhicules ou comportement antisocial.",
"Filtre une catégorie de criminalité de rue à la fois, en utilisant la moyenne annuelle des infractions dans le LSOA. Les valeurs proviennent des données police.uk et permettent d'isoler des catégories comme cambriolage, véhicules ou comportement antisocial.",
Ethnicities:
"Filtre le pourcentage de population appartenant à un groupe ethnique sélectionné, d'après le Census 2021. Une seule catégorie est appliquée à la fois afin de comparer la composition locale entre les secteurs.",
'Amenity distance':
@ -179,6 +181,8 @@ export const details: Record<string, Record<string, string>> = {
'Die potenzielle Energieeffizienzklasse aus dem Energieausweis-Zertifikat, wenn alle im EPC-Bericht empfohlenen kosteneffizienten Verbesserungen durchgeführt würden. Reicht von A (am effizientesten) bis G (am wenigsten effizient).',
'Interior height (m)':
'Durchschnittliche lichte Raumhöhe in Metern, wie während der Energieausweis-Begutachtung erfasst. Berechnet durch Division des gesamten Innenvolumens durch die Gesamtwohnfläche.',
'Street tree density percentile':
'Ungefähre Baumkronenbedeckung rund um den Postleitzahlen-Zentroiden aus der Forest-Research-Karte Trees Outside Woodland 2025. Baumkronen-Polygone für Einzelbäume und Baumgruppen werden im Umkreis von 50 m um jeden Postleitzahlen-Zentroiden gezählt und dann in ein Perzentil über englische Postleitzahlen umgerechnet. Dies ist ein Postleitzahlen-Zentroid-Proxy, keine exakte Messung für Immobilie oder Straßenabschnitt.',
'Good+ primary schools within 2km':
'Staatlich geförderte Grundschulen innerhalb von 2 km mit einer aktuellen Ofsted-Bewertung von Gut oder Hervorragend. Noch nicht inspizierte Schulen sind ausgeschlossen.',
'Good+ secondary schools within 2km':
@ -208,41 +212,41 @@ export const details: Record<string, Record<string, string>> = {
'Air Quality and Road Safety Score':
'Aus dem Bereich Wohnumgebung der englischen Deprivationsindizes, in ein nationales Perzentil umgerechnet: 0 % steht für die schlechtesten und 100 % für die besten Bedingungen. Misst die Außenwohnumgebung anhand von Luftqualitätsindikatoren und Straßenverkehrsunfällen mit Fußgängern und Radfahrern.',
'Serious crime per 1k residents (avg/yr)':
'Gewalt, Raub, Einbruch und Waffenbesitz pro 1.000 Einwohner pro Jahr im LSOA. Verwendet police.uk-Kriminalitätsdaten auf Straßenebene (20232025) und Census 2021-Bevölkerungszahlen. Normalisiert nach Bevölkerungsdichte, sodass Gebiete unabhängig von ihrer Größe vergleichbar sind.',
'Gewalt, Raub, Einbruch und Waffenbesitz pro 1.000 Einwohner pro Jahr im LSOA. Verwendet police.uk-Kriminalitätsdaten auf Straßenebene und Census 2021-Bevölkerungszahlen. Normalisiert nach Bevölkerungsdichte, sodass Gebiete unabhängig von ihrer Größe vergleichbar sind.',
'Minor crime per 1k residents (avg/yr)':
'Asoziales Verhalten, Ladendiebstahl, Fahrraddiebstahl und andere weniger schwere Straftaten pro 1.000 Einwohner pro Jahr im LSOA. Verwendet police.uk-Kriminalitätsdaten auf Straßenebene (20232025) und Census 2021-Bevölkerungszahlen. Normalisiert nach Bevölkerungsdichte, sodass Gebiete unabhängig von ihrer Größe vergleichbar sind.',
'Asoziales Verhalten, Ladendiebstahl, Fahrraddiebstahl und andere weniger schwere Straftaten pro 1.000 Einwohner pro Jahr im LSOA. Verwendet police.uk-Kriminalitätsdaten auf Straßenebene und Census 2021-Bevölkerungszahlen. Normalisiert nach Bevölkerungsdichte, sodass Gebiete unabhängig von ihrer Größe vergleichbar sind.',
'Serious crime (avg/yr)':
'Summe aus Gewalt, Raub, Einbruch und Waffenbesitz pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Bietet einen einzelnen Indikator für schwere Kriminalität.',
'Summe aus Gewalt, Raub, Einbruch und Waffenbesitz pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Bietet einen einzelnen Indikator für schwere Kriminalität.',
'Minor crime (avg/yr)':
'Summe aus asozialem Verhalten, Ladendiebstahl, Fahrraddiebstahl und anderen weniger schweren Straftaten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Bietet einen einzelnen Indikator für leichte Kriminalität.',
'Summe aus asozialem Verhalten, Ladendiebstahl, Fahrraddiebstahl und anderen weniger schweren Straftaten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Bietet einen einzelnen Indikator für leichte Kriminalität.',
'Violence and sexual offences (avg/yr)':
'Durchschnittliche Anzahl von Gewalt- und Sexualdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Körperverletzung, Belästigung und Sexualdelikte.',
'Durchschnittliche Anzahl von Gewalt- und Sexualdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Körperverletzung, Belästigung und Sexualdelikte.',
'Burglary (avg/yr)':
'Durchschnittliche Anzahl von Einbruchsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Wohnungs- und Gewerbeeinbrüche.',
'Durchschnittliche Anzahl von Einbruchsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Wohnungs- und Gewerbeeinbrüche.',
'Robbery (avg/yr)':
'Durchschnittliche Anzahl von Raubdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Raub umfasst Diebstahl unter Anwendung von Gewalt oder Gewaltandrohung.',
'Durchschnittliche Anzahl von Raubdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Raub umfasst Diebstahl unter Anwendung von Gewalt oder Gewaltandrohung.',
'Vehicle crime (avg/yr)':
'Durchschnittliche Anzahl von Fahrzeugkriminalität pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Diebstahl von und aus Fahrzeugen.',
'Durchschnittliche Anzahl von Fahrzeugkriminalität pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Diebstahl von und aus Fahrzeugen.',
'Anti-social behaviour (avg/yr)':
'Durchschnittliche Anzahl von Vorfällen asozialen Verhaltens pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst störendes, umweltbezogenes und persönlich asoziales Verhalten.',
'Durchschnittliche Anzahl von Vorfällen asozialen Verhaltens pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst störendes, umweltbezogenes und persönlich asoziales Verhalten.',
'Criminal damage and arson (avg/yr)':
'Durchschnittliche Anzahl von Sachbeschädigungs- und Brandstiftungsvorfällen pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025).',
'Durchschnittliche Anzahl von Sachbeschädigungs- und Brandstiftungsvorfällen pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene.',
'Other theft (avg/yr)':
'Durchschnittliche Anzahl von „sonstigen Diebstählen" pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Diebstähle, die nicht unter Einbruch, Fahrzeugkriminalität, Ladendiebstahl oder Fahrraddiebstahl eingestuft sind.',
'Durchschnittliche Anzahl von „sonstigen Diebstählen" pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Diebstähle, die nicht unter Einbruch, Fahrzeugkriminalität, Ladendiebstahl oder Fahrraddiebstahl eingestuft sind.',
'Theft from the person (avg/yr)':
'Durchschnittliche Anzahl von Taschendiebstählen und ähnlichen Delikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Taschendiebstahl und Handtaschenraub ohne Gewaltanwendung.',
'Durchschnittliche Anzahl von Taschendiebstählen und ähnlichen Delikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Taschendiebstahl und Handtaschenraub ohne Gewaltanwendung.',
'Shoplifting (avg/yr)':
'Durchschnittliche Anzahl von Ladendiebstahlsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025).',
'Durchschnittliche Anzahl von Ladendiebstahlsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene.',
'Bicycle theft (avg/yr)':
'Durchschnittliche Anzahl von Fahrraddiebstahlsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025).',
'Durchschnittliche Anzahl von Fahrraddiebstahlsdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene.',
'Drugs (avg/yr)':
'Durchschnittliche Anzahl von Drogendelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst Besitz- und Handelsdelikte.',
'Durchschnittliche Anzahl von Drogendelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst Besitz- und Handelsdelikte.',
'Possession of weapons (avg/yr)':
'Durchschnittliche Anzahl von Waffenbesitzdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025).',
'Durchschnittliche Anzahl von Waffenbesitzdelikten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene.',
'Public order (avg/yr)':
'Durchschnittliche Anzahl von Delikten gegen die öffentliche Ordnung pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Umfasst das Verursachen von Furcht, Alarm oder Bedrängnis.',
'Durchschnittliche Anzahl von Delikten gegen die öffentliche Ordnung pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Umfasst das Verursachen von Furcht, Alarm oder Bedrängnis.',
'Other crime (avg/yr)':
'Durchschnittliche Anzahl sonstiger Straftaten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene (20232025). Eine Sammelkategorie für Straftaten, die nicht anderweitig eingestuft sind.',
'Durchschnittliche Anzahl sonstiger Straftaten pro Jahr im LSOA, aus police.uk-Kriminalitätsdaten auf Straßenebene. Eine Sammelkategorie für Straftaten, die nicht anderweitig eingestuft sind.',
'Median age':
'Aus dem Census 2021 (TS007A). Medianalter der ortsansässigen Bevölkerung im LSOA, berechnet durch lineare Interpolation aus Fünfjahres-Altersband-Zählungen. Gebiete mit jüngerer Bevölkerung sind tendenziell städtisch, Universitätsstädte oder haben mehr Familien; höhere Mediane sind typisch für ländliche und Küstengebiete.',
'% White':
@ -280,7 +284,7 @@ export const details: Record<string, Record<string, string>> = {
Schools:
'Filtert nahegelegene staatlich finanzierte Grundschulen oder weiterführende Schulen nach der gewählten Ofsted-Bewertung und Entfernung. Die verfügbaren Schwellen decken in der Regel Gute oder Hervorragende Schulen oder nur Hervorragende Schulen innerhalb von 2 km oder 5 km ab.',
'Specific crimes':
'Filtert jeweils eine Kategorie der Straßenkriminalität anhand der durchschnittlichen jährlichen Vorfälle im LSOA. Die Werte stammen aus police.uk-Daten 2023-2025 und helfen, Kategorien wie Einbruch, Fahrzeugkriminalität oder asoziales Verhalten getrennt zu betrachten.',
'Filtert jeweils eine Kategorie der Straßenkriminalität anhand der durchschnittlichen jährlichen Vorfälle im LSOA. Die Werte stammen aus police.uk-Daten und helfen, Kategorien wie Einbruch, Fahrzeugkriminalität oder asoziales Verhalten getrennt zu betrachten.',
Ethnicities:
'Filtert den Bevölkerungsanteil einer ausgewählten ethnischen Gruppe auf Basis des Census 2021. Es wird jeweils eine Kategorie angewendet, damit die lokale Zusammensetzung zwischen Gebieten vergleichbar bleibt.',
'Amenity distance':
@ -323,6 +327,8 @@ export const details: Record<string, Record<string, string>> = {
'若实施EPC报告中建议的所有具有成本效益的改进措施后该房产的潜在能源效率等级。从A最高效到G最低效。',
'Interior height (m)':
'EPC评估期间记录的平均室内净高。通过将室内总容积除以总建筑面积计算得出。',
'Street tree density percentile':
'基于 Forest Research 2025 年 Trees Outside Woodland 地图估算的邮编质心周边树冠覆盖率。系统会统计每个邮编质心 50 米范围内的孤立树木和树群树冠多边形,然后转换为英格兰邮编范围内的百分位。这是邮编质心近似指标,不是精确的房产或道路路段测量。',
'Good+ primary schools within 2km':
'2km范围内Ofsted评级为“良好”或“优秀”的公立小学数量。尚未接受评估的学校不计入。',
'Good+ secondary schools within 2km':
@ -352,41 +358,39 @@ export const details: Record<string, Record<string, string>> = {
'Air Quality and Road Safety Score':
'来自英格兰剥夺指数的居住环境领域转换为全国百分位0%表示条件最差100%表示条件最好。通过空气质量指标以及涉及行人和骑行者的道路交通事故伤亡人数衡量室外生活环境质量。',
'Serious crime per 1k residents (avg/yr)':
'LSOA内每1,000名常住居民每年发生的暴力、抢劫、入室盗窃和持有武器犯罪数量。使用police.uk街道级犯罪数据2023-2025年和Census 2021人口数据。按人口密度标准化便于不同规模地区之间的比较。',
'LSOA内每1,000名常住居民每年发生的暴力、抢劫、入室盗窃和持有武器犯罪数量。使用police.uk街道级犯罪数据和Census 2021人口数据。按人口密度标准化便于不同规模地区之间的比较。',
'Minor crime per 1k residents (avg/yr)':
'LSOA内每1,000名常住居民每年发生的反社会行为、商店行窃、自行车盗窃及其他较轻微犯罪数量。使用police.uk街道级犯罪数据2023-2025年和Census 2021人口数据。按人口密度标准化便于不同规模地区之间的比较。',
'LSOA内每1,000名常住居民每年发生的反社会行为、商店行窃、自行车盗窃及其他较轻微犯罪数量。使用police.uk街道级犯罪数据和Census 2021人口数据。按人口密度标准化便于不同规模地区之间的比较。',
'Serious crime (avg/yr)':
'来自police.uk街道级犯罪数据2023-2025年的LSOA内每年暴力、抢劫、入室盗窃和持有武器犯罪总和。提供单一的严重犯罪指标。',
'来自police.uk街道级犯罪数据的LSOA内每年暴力、抢劫、入室盗窃和持有武器犯罪总和。提供单一的严重犯罪指标。',
'Minor crime (avg/yr)':
'来自police.uk街道级犯罪数据2023-2025年的LSOA内每年反社会行为、商店行窃、自行车盗窃及其他较轻微犯罪总和。提供单一的轻微犯罪指标。',
'来自police.uk街道级犯罪数据的LSOA内每年反社会行为、商店行窃、自行车盗窃及其他较轻微犯罪总和。提供单一的轻微犯罪指标。',
'Violence and sexual offences (avg/yr)':
'LSOA内每年暴力和性犯罪的平均数量来自police.uk街道级犯罪数据2023-2025年。包括攻击、骚扰和性犯罪。',
'LSOA内每年暴力和性犯罪的平均数量来自police.uk街道级犯罪数据。包括攻击、骚扰和性犯罪。',
'Burglary (avg/yr)':
'LSOA内每年入室盗窃的平均数量来自police.uk街道级犯罪数据2023-2025年。包括住宅和商业入室盗窃。',
'LSOA内每年入室盗窃的平均数量来自police.uk街道级犯罪数据。包括住宅和商业入室盗窃。',
'Robbery (avg/yr)':
'LSOA内每年抢劫案的平均数量来自police.uk街道级犯罪数据2023-2025年。抢劫涉及以暴力或威胁手段实施的盗窃。',
'LSOA内每年抢劫案的平均数量来自police.uk街道级犯罪数据。抢劫涉及以暴力或威胁手段实施的盗窃。',
'Vehicle crime (avg/yr)':
'LSOA内每年车辆犯罪事件的平均数量来自police.uk街道级犯罪数据2023-2025年。包括盗窃车辆及从车辆内盗窃。',
'LSOA内每年车辆犯罪事件的平均数量来自police.uk街道级犯罪数据。包括盗窃车辆及从车辆内盗窃。',
'Anti-social behaviour (avg/yr)':
'LSOA内每年反社会行为事件的平均数量来自police.uk街道级犯罪数据2023-2025年。包括滋扰、环境和个人反社会行为。',
'LSOA内每年反社会行为事件的平均数量来自police.uk街道级犯罪数据。包括滋扰、环境和个人反社会行为。',
'Criminal damage and arson (avg/yr)':
'LSOA内每年刑事损毁和纵火事件的平均数量来自police.uk街道级犯罪数据2023-2025年。',
'LSOA内每年刑事损毁和纵火事件的平均数量来自police.uk街道级犯罪数据。',
'Other theft (avg/yr)':
'LSOA内每年"其他盗窃"案的平均数量来自police.uk街道级犯罪数据2023-2025年。包括未被归类为入室盗窃、车辆犯罪、商店行窃或自行车盗窃的盗窃行为。',
'LSOA内每年"其他盗窃"案的平均数量来自police.uk街道级犯罪数据。包括未被归类为入室盗窃、车辆犯罪、商店行窃或自行车盗窃的盗窃行为。',
'Theft from the person (avg/yr)':
'LSOA内每年针对人身盗窃案的平均数量来自police.uk街道级犯罪数据2023-2025年。包括扒窃和未使用暴力的抢包行为。',
'Shoplifting (avg/yr)':
'LSOA内每年商店行窃案的平均数量来自police.uk街道级犯罪数据2023-2025年。',
'Bicycle theft (avg/yr)':
'LSOA内每年自行车盗窃案的平均数量来自police.uk街道级犯罪数据2023-2025年。',
'LSOA内每年针对人身盗窃案的平均数量来自police.uk街道级犯罪数据。包括扒窃和未使用暴力的抢包行为。',
'Shoplifting (avg/yr)': 'LSOA内每年商店行窃案的平均数量来自police.uk街道级犯罪数据。',
'Bicycle theft (avg/yr)': 'LSOA内每年自行车盗窃案的平均数量来自police.uk街道级犯罪数据。',
'Drugs (avg/yr)':
'LSOA内每年毒品犯罪的平均数量来自police.uk街道级犯罪数据2023-2025年。包括持有和贩运毒品犯罪。',
'LSOA内每年毒品犯罪的平均数量来自police.uk街道级犯罪数据。包括持有和贩运毒品犯罪。',
'Possession of weapons (avg/yr)':
'LSOA内每年持有武器犯罪的平均数量来自police.uk街道级犯罪数据2023-2025年。',
'LSOA内每年持有武器犯罪的平均数量来自police.uk街道级犯罪数据。',
'Public order (avg/yr)':
'LSOA内每年公共秩序违法行为的平均数量来自police.uk街道级犯罪数据2023-2025年。包括引起他人恐惧、惊扰或困扰的行为。',
'LSOA内每年公共秩序违法行为的平均数量来自police.uk街道级犯罪数据。包括引起他人恐惧、惊扰或困扰的行为。',
'Other crime (avg/yr)':
'LSOA内每年其他犯罪的平均数量来自police.uk街道级犯罪数据2023-2025年。此类别涵盖未在其他分类中列出的犯罪行为。',
'LSOA内每年其他犯罪的平均数量来自police.uk街道级犯罪数据。此类别涵盖未在其他分类中列出的犯罪行为。',
'Median age':
'来自2021年CensusTS007A。通过对五岁年龄段人口数进行线性插值计算得出的LSOA常住居民年龄中位数。年轻人口集中的地区往往是城市、大学城或家庭聚居地年龄中位数较高的地区多见于农村和沿海地区。',
'% White':
@ -418,7 +422,7 @@ export const details: Record<string, Record<string, string>> = {
Schools:
'按所选Ofsted评级和距离筛选附近的公立小学或中学。可用阈值通常包括2公里或5公里内的良好及以上学校或仅优秀学校。',
'Specific crimes':
'一次筛选一种街面犯罪类别使用LSOA内的年均案件数。数值来自2023-2025年的police.uk数据可单独查看入室盗窃、车辆犯罪或反社会行为等类别。',
'一次筛选一种街面犯罪类别使用LSOA内的年均案件数。数值来自police.uk数据可单独查看入室盗窃、车辆犯罪或反社会行为等类别。',
Ethnicities:
'根据2021年人口普查筛选所选族裔群体占人口的百分比。每次应用一个类别便于比较不同地区的本地人口构成。',
'Amenity distance':
@ -461,6 +465,8 @@ export const details: Record<string, Record<string, string>> = {
'EPC से संभावित ऊर्जा दक्षता रेटिंग, यदि EPC रिपोर्ट में सुझाए गए सभी किफायती सुधार कर दिए जाएं. यह A (सबसे दक्ष) से G (सबसे कम दक्ष) तक होती है.',
'Interior height (m)':
'EPC आकलन के दौरान दर्ज औसत अंदरूनी फर्श-से-छत ऊंचाई, मीटर में. कुल आंतरिक आयतन को कुल फर्श क्षेत्र से भाग देकर निकाली जाती है.',
'Street tree density percentile':
'Forest Research के 2025 Trees Outside Woodland नक्शे से निकाला गया पोस्टकोड केंद्र के आसपास का अनुमानित वृक्ष आच्छादन. अकेले पेड़ों और पेड़ों के समूहों के canopy polygons को हर पोस्टकोड केंद्र से 50m के भीतर गिना जाता है, फिर इंग्लैंड के पोस्टकोडों के मुकाबले प्रतिशतक में बदला जाता है. यह पोस्टकोड-केंद्र proxy है, किसी संपत्ति या सड़क-खंड की सटीक माप नहीं.',
'Good+ primary schools within 2km':
'2 km के भीतर सरकारी वित्तपोषित प्राइमरी स्कूल जिनकी मौजूदा Ofsted रेटिंग अच्छी या उत्कृष्ट है. जिन स्कूलों का अभी निरीक्षण नहीं हुआ है, उन्हें शामिल नहीं किया गया है.',
'Good+ secondary schools within 2km':
@ -490,41 +496,41 @@ export const details: Record<string, Record<string, string>> = {
'Air Quality and Road Safety Score':
'English Indices of Deprivation के Living Environment क्षेत्र से लिया गया और राष्ट्रीय प्रतिशतक में बदला गया: 0% सबसे खराब स्थितियों और 100% सबसे अच्छी स्थितियों को दर्शाता है. यह वायु गुणवत्ता संकेतकों और पैदल यात्रियों/साइकिल चालकों से जुड़े सड़क यातायात दुर्घटना हताहतों के जरिए बाहरी रहने के वातावरण की गुणवत्ता मापता है.',
'Serious crime per 1k residents (avg/yr)':
'LSOA में प्रति 1,000 सामान्य निवासियों पर प्रति वर्ष हिंसा, लूट, सेंधमारी और हथियार रखने के अपराध. police.uk के सड़क-स्तर अपराध डेटा (2023-2025) और Census 2021 जनसंख्या गणना का उपयोग करता है. जनसंख्या घनत्व के अनुसार सामान्यीकृत करता है ताकि क्षेत्र आकार की परवाह किए बिना तुलनीय हों.',
'LSOA में प्रति 1,000 सामान्य निवासियों पर प्रति वर्ष हिंसा, लूट, सेंधमारी और हथियार रखने के अपराध. police.uk के सड़क-स्तर अपराध डेटा और Census 2021 जनसंख्या गणना का उपयोग करता है. जनसंख्या घनत्व के अनुसार सामान्यीकृत करता है ताकि क्षेत्र आकार की परवाह किए बिना तुलनीय हों.',
'Minor crime per 1k residents (avg/yr)':
'LSOA में प्रति 1,000 सामान्य निवासियों पर प्रति वर्ष असामाजिक व्यवहार, दुकान से चोरी, साइकिल चोरी और अन्य कम-गंभीर अपराध. police.uk के सड़क-स्तर अपराध डेटा (2023-2025) और Census 2021 जनसंख्या गणना का उपयोग करता है. जनसंख्या घनत्व के अनुसार सामान्यीकृत करता है ताकि क्षेत्र तुलनीय हों.',
'LSOA में प्रति 1,000 सामान्य निवासियों पर प्रति वर्ष असामाजिक व्यवहार, दुकान से चोरी, साइकिल चोरी और अन्य कम-गंभीर अपराध. police.uk के सड़क-स्तर अपराध डेटा और Census 2021 जनसंख्या गणना का उपयोग करता है. जनसंख्या घनत्व के अनुसार सामान्यीकृत करता है ताकि क्षेत्र तुलनीय हों.',
'Serious crime (avg/yr)':
'LSOA में प्रति वर्ष हिंसा, लूट, सेंधमारी और हथियार रखने के अपराधों का योग, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. गंभीर अपराध का एक संयुक्त संकेतक देता है.',
'LSOA में प्रति वर्ष हिंसा, लूट, सेंधमारी और हथियार रखने के अपराधों का योग, police.uk के सड़क-स्तर अपराध डेटा से. गंभीर अपराध का एक संयुक्त संकेतक देता है.',
'Minor crime (avg/yr)':
'LSOA में प्रति वर्ष असामाजिक व्यवहार, दुकान से चोरी, साइकिल चोरी और अन्य कम-गंभीर अपराधों का योग, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. मामूली अपराध का एक संयुक्त संकेतक देता है.',
'LSOA में प्रति वर्ष असामाजिक व्यवहार, दुकान से चोरी, साइकिल चोरी और अन्य कम-गंभीर अपराधों का योग, police.uk के सड़क-स्तर अपराध डेटा से. मामूली अपराध का एक संयुक्त संकेतक देता है.',
'Violence and sexual offences (avg/yr)':
'LSOA में प्रति वर्ष हिंसा और यौन अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें हमले, उत्पीड़न और यौन अपराध शामिल हैं.',
'LSOA में प्रति वर्ष हिंसा और यौन अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें हमले, उत्पीड़न और यौन अपराध शामिल हैं.',
'Burglary (avg/yr)':
'LSOA में प्रति वर्ष सेंधमारी की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें आवासीय और व्यावसायिक सेंधमारी शामिल हैं.',
'LSOA में प्रति वर्ष सेंधमारी की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें आवासीय और व्यावसायिक सेंधमारी शामिल हैं.',
'Robbery (avg/yr)':
'LSOA में प्रति वर्ष लूट की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. लूट में बल प्रयोग या बल प्रयोग की धमकी के साथ चोरी शामिल होती है.',
'LSOA में प्रति वर्ष लूट की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. लूट में बल प्रयोग या बल प्रयोग की धमकी के साथ चोरी शामिल होती है.',
'Vehicle crime (avg/yr)':
'LSOA में प्रति वर्ष वाहन-संबंधी अपराध घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें वाहनों की चोरी और वाहनों के अंदर से चोरी शामिल है.',
'LSOA में प्रति वर्ष वाहन-संबंधी अपराध घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें वाहनों की चोरी और वाहनों के अंदर से चोरी शामिल है.',
'Anti-social behaviour (avg/yr)':
'LSOA में प्रति वर्ष असामाजिक व्यवहार घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें उपद्रव, पर्यावरणीय और व्यक्तिगत असामाजिक व्यवहार शामिल हैं.',
'LSOA में प्रति वर्ष असामाजिक व्यवहार घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें उपद्रव, पर्यावरणीय और व्यक्तिगत असामाजिक व्यवहार शामिल हैं.',
'Criminal damage and arson (avg/yr)':
'LSOA में प्रति वर्ष आपराधिक क्षति और आगजनी घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से.',
'LSOA में प्रति वर्ष आपराधिक क्षति और आगजनी घटनाओं की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से.',
'Other theft (avg/yr)':
'LSOA में प्रति वर्ष अन्य चोरी अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें सेंधमारी, वाहन अपराध, दुकान से चोरी या साइकिल चोरी में न आने वाली चोरी शामिल है.',
'LSOA में प्रति वर्ष अन्य चोरी अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें सेंधमारी, वाहन अपराध, दुकान से चोरी या साइकिल चोरी में न आने वाली चोरी शामिल है.',
'Theft from the person (avg/yr)':
'LSOA में प्रति वर्ष व्यक्ति से चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें जेबकतरी और बिना बल प्रयोग के बैग छीनना शामिल है.',
'LSOA में प्रति वर्ष व्यक्ति से चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें जेबकतरी और बिना बल प्रयोग के बैग छीनना शामिल है.',
'Shoplifting (avg/yr)':
'LSOA में प्रति वर्ष दुकान से चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से.',
'LSOA में प्रति वर्ष दुकान से चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से.',
'Bicycle theft (avg/yr)':
'LSOA में प्रति वर्ष साइकिल चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से.',
'LSOA में प्रति वर्ष साइकिल चोरी के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से.',
'Drugs (avg/yr)':
'LSOA में प्रति वर्ष नशीले पदार्थों से जुड़े अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें कब्जे और तस्करी के अपराध शामिल हैं.',
'LSOA में प्रति वर्ष नशीले पदार्थों से जुड़े अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें कब्जे और तस्करी के अपराध शामिल हैं.',
'Possession of weapons (avg/yr)':
'LSOA में प्रति वर्ष हथियार रखने के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से.',
'LSOA में प्रति वर्ष हथियार रखने के अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से.',
'Public order (avg/yr)':
'LSOA में प्रति वर्ष सार्वजनिक व्यवस्था से जुड़े अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. इसमें भय, घबराहट या परेशानी पैदा करने वाले कृत्य शामिल हैं.',
'LSOA में प्रति वर्ष सार्वजनिक व्यवस्था से जुड़े अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. इसमें भय, घबराहट या परेशानी पैदा करने वाले कृत्य शामिल हैं.',
'Other crime (avg/yr)':
'LSOA में प्रति वर्ष अन्य आपराधिक अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा (2023-2025) से. यह उन अपराधों के लिए सामान्य श्रेणी है जिन्हें कहीं और वर्गीकृत नहीं किया गया है.',
'LSOA में प्रति वर्ष अन्य आपराधिक अपराधों की औसत संख्या, police.uk के सड़क-स्तर अपराध डेटा से. यह उन अपराधों के लिए सामान्य श्रेणी है जिन्हें कहीं और वर्गीकृत नहीं किया गया है.',
'Median age':
'Census 2021 (TS007A) से. LSOA में सामान्य निवासियों की मध्य आयु, पांच-वर्षीय आयु समूहों की गणना से रैखिक इंटरपोलेशन द्वारा निकाली गई. युवा आबादी वाले क्षेत्र आमतौर पर शहरी, विश्वविद्यालय नगर या अधिक परिवारों वाले होते हैं; अधिक मध्य आयु वाले क्षेत्र आमतौर पर ग्रामीण और तटीय इलाकों में मिलते हैं.',
'% White':
@ -562,7 +568,7 @@ export const details: Record<string, Record<string, string>> = {
Schools:
'चुनी गई Ofsted रेटिंग और दूरी के अनुसार पास के सरकारी वित्तपोषित प्राइमरी या सेकेंडरी स्कूल फिल्टर करता है. उपलब्ध सीमाएं आमतौर पर 2 किमी या 5 किमी के भीतर अच्छी या उत्कृष्ट रेटिंग वाले स्कूलों, या सिर्फ उत्कृष्ट स्कूलों को कवर करती हैं.',
'Specific crimes':
'LSOA में सालाना औसत घटनाओं के आधार पर एक समय में एक सड़क-स्तर अपराध श्रेणी फिल्टर करता है. मान 2023-2025 के police.uk डेटा से आते हैं और चोरी, वाहन अपराध या असामाजिक व्यवहार जैसी श्रेणियों को अलग से देखने में मदद करते हैं.',
'LSOA में सालाना औसत घटनाओं के आधार पर एक समय में एक सड़क-स्तर अपराध श्रेणी फिल्टर करता है. मान के police.uk डेटा से आते हैं और चोरी, वाहन अपराध या असामाजिक व्यवहार जैसी श्रेणियों को अलग से देखने में मदद करते हैं.',
Ethnicities:
'Census 2021 के आधार पर चुने गए जातीय समूह की आबादी का प्रतिशत फिल्टर करता है. अलग-अलग क्षेत्रों की स्थानीय संरचना की तुलना के लिए एक समय में एक श्रेणी लागू होती है.',
'Amenity distance':
@ -605,6 +611,8 @@ export const details: Record<string, Record<string, string>> = {
'Az EPC-tanúsítvány potenciális energiahatékonysági besorolása, amennyiben az EPC-jelentésben ajánlott összes költséghatékony fejlesztést elvégeznék. A-tól (leghatékonyabb) G-ig (legkevésbé hatékony) terjed.',
'Interior height (m)':
'Az EPC-tanúsítvány felmérése során rögzített átlagos belső padló-mennyezet magasság méterben. A teljes belső térfogatot osztják a teljes alapterülettel.',
'Street tree density percentile':
'A Forest Research 2025-os Trees Outside Woodland térképéből származó hozzávetőleges lombkorona-fedettség az irányítószám-középpont körül. A magányos fák és facsoportok lombkorona-poligonjait minden irányítószám-középpont 50 méteres körzetében számoljuk, majd az angliai irányítószámok közötti percentilissé alakítjuk. Ez irányítószám-középponti proxy, nem pontos ingatlan- vagy utcaszakasz-mérés.',
'Good+ primary schools within 2km':
'2 km-en belüli állami fenntartású általános iskolák, amelyek aktuális Ofsted besorolása Jó vagy Kiemelkedő. A még nem vizsgált iskolák ki vannak zárva.',
'Good+ secondary schools within 2km':
@ -634,41 +642,41 @@ export const details: Record<string, Record<string, string>> = {
'Air Quality and Road Safety Score':
'Az Angol Nélkülözési Indexek Lakókörnyezet tartományából származik, országos percentilissé alakítva: 0% a legrosszabb, 100% a legjobb körülményeket jelzi. A külső lakókörnyezet minőségét méri a levegőminőségi mutatók és a gyalogosokat, kerékpárosokat érintő közúti közlekedési baleseti áldozatok alapján.',
'Serious crime per 1k residents (avg/yr)':
'Erőszakos bűncselekmények, rablás, betörés és fegyverbirtoklás 1 000 szokásos lakóra vetítve évente az LSOA-ban. A police.uk utcai szintű bűnügyi adatait (20232025) és a Census 2021 népességszámait használja. Normalizálja a népsűrűséget, így a területek mérettől függetlenül összehasonlíthatók.',
'Erőszakos bűncselekmények, rablás, betörés és fegyverbirtoklás 1 000 szokásos lakóra vetítve évente az LSOA-ban. A police.uk utcai szintű bűnügyi adatait és a Census 2021 népességszámait használja. Normalizálja a népsűrűséget, így a területek mérettől függetlenül összehasonlíthatók.',
'Minor crime per 1k residents (avg/yr)':
'Antiszociális magatartás, boltlopás, kerékpárlopás és egyéb kisebb súlyosságú bűncselekmények 1 000 szokásos lakóra vetítve évente az LSOA-ban. A police.uk utcai szintű bűnügyi adatait (20232025) és a Census 2021 népességszámait használja. Normalizálja a népsűrűséget, így a területek mérettől függetlenül összehasonlíthatók.',
'Antiszociális magatartás, boltlopás, kerékpárlopás és egyéb kisebb súlyosságú bűncselekmények 1 000 szokásos lakóra vetítve évente az LSOA-ban. A police.uk utcai szintű bűnügyi adatait és a Census 2021 népességszámait használja. Normalizálja a népsűrűséget, így a területek mérettől függetlenül összehasonlíthatók.',
'Serious crime (avg/yr)':
'Az erőszakos bűncselekmények, rablás, betörés és fegyverbirtoklás éves összege az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Egyetlen súlyos bűnözési mutatót ad.',
'Az erőszakos bűncselekmények, rablás, betörés és fegyverbirtoklás éves összege az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Egyetlen súlyos bűnözési mutatót ad.',
'Minor crime (avg/yr)':
'Az antiszociális magatartás, boltlopás, kerékpárlopás és egyéb kisebb súlyosságú bűncselekmények éves összege az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Egyetlen kisebb bűnözési mutatót ad.',
'Az antiszociális magatartás, boltlopás, kerékpárlopás és egyéb kisebb súlyosságú bűncselekmények éves összege az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Egyetlen kisebb bűnözési mutatót ad.',
'Violence and sexual offences (avg/yr)':
'Az erőszakos és szexuális bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a testi sértést, zaklatást és szexuális bűncselekményeket.',
'Az erőszakos és szexuális bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a testi sértést, zaklatást és szexuális bűncselekményeket.',
'Burglary (avg/yr)':
'A betörések átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a lakó- és kereskedelmi célú betöréseket.',
'A betörések átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a lakó- és kereskedelmi célú betöréseket.',
'Robbery (avg/yr)':
'A rablások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). A rablás erővel vagy erőszakkal fenyegetéssel járó lopást jelent.',
'A rablások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. A rablás erővel vagy erőszakkal fenyegetéssel járó lopást jelent.',
'Vehicle crime (avg/yr)':
'A járművel kapcsolatos bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a járművek ellopását és a járművekből való lopást.',
'A járművel kapcsolatos bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a járművek ellopását és a járművekből való lopást.',
'Anti-social behaviour (avg/yr)':
'Az antiszociális magatartási esetek átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a zavarást, környezeti és személyes antiszociális magatartást.',
'Az antiszociális magatartási esetek átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a zavarást, környezeti és személyes antiszociális magatartást.',
'Criminal damage and arson (avg/yr)':
'A rongálás és gyújtogatás átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025).',
'A rongálás és gyújtogatás átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból.',
'Other theft (avg/yr)':
"Az 'egyéb lopás' kategóriájú bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a betörés, járműves bűncselekmény, boltlopás vagy kerékpárlopás alá nem sorolt lopásokat.",
"Az 'egyéb lopás' kategóriájú bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a betörés, járműves bűncselekmény, boltlopás vagy kerékpárlopás alá nem sorolt lopásokat.",
'Theft from the person (avg/yr)':
'A személytől való lopás átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a zsebtolvajlást és erő nélküli táskavágást.',
'A személytől való lopás átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a zsebtolvajlást és erő nélküli táskavágást.',
'Shoplifting (avg/yr)':
'A boltlopások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025).',
'A boltlopások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból.',
'Bicycle theft (avg/yr)':
'A kerékpárlopások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025).',
'A kerékpárlopások átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból.',
'Drugs (avg/yr)':
'A kábítószer-bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a birtoklási és terjesztési bűncselekményeket.',
'A kábítószer-bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a birtoklási és terjesztési bűncselekményeket.',
'Possession of weapons (avg/yr)':
'A fegyverbirtoklási bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025).',
'A fegyverbirtoklási bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból.',
'Public order (avg/yr)':
'A közrend elleni bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Magában foglalja a félelemkeltést, riasztást vagy szorongást okozó cselekményeket.',
'A közrend elleni bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Magában foglalja a félelemkeltést, riasztást vagy szorongást okozó cselekményeket.',
'Other crime (avg/yr)':
'Az egyéb bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból (20232025). Gyűjtőkategória azoknak a bűncselekményeknek, amelyek máshol nem kerülnek besorolásra.',
'Az egyéb bűncselekmények átlagos éves száma az LSOA-ban, a police.uk utcai szintű bűnügyi adataiból. Gyűjtőkategória azoknak a bűncselekményeknek, amelyek máshol nem kerülnek besorolásra.',
'Median age':
'A 2021-es Census alapján (TS007A). Az LSOA szokásos lakóinak medián életkora, ötéves korcsoport-számlálásokból lineáris interpolációval számítva. A fiatalabb népességű területek jellemzően városiak, egyetemi városok vagy több családot vonzanak; az idősebb medián értékek jellemzően vidéki és tengerparti területekre jellemzők.',
'% White':
@ -706,7 +714,7 @@ export const details: Record<string, Record<string, string>> = {
Schools:
'A közeli állami finanszírozású általános vagy középiskolákat szűri a kiválasztott Ofsted minősítés és távolság alapján. Az elérhető küszöbök általában a 2 km-en vagy 5 km-en belüli Jó vagy Kiemelkedő, illetve csak Kiemelkedő iskolákat fedik le.',
'Specific crimes':
'Egyszerre egy utcai bűncselekmény-kategóriát szűr az LSOA éves átlagos esetszámai alapján. Az értékek a 2023-2025-ös police.uk adatokból származnak, és segítenek külön vizsgálni például a betörést, járműbűnözést vagy antiszociális viselkedést.',
'Egyszerre egy utcai bűncselekmény-kategóriát szűr az LSOA éves átlagos esetszámai alapján. Az értékek a-ös police.uk adatokból származnak, és segítenek külön vizsgálni például a betörést, járműbűnözést vagy antiszociális viselkedést.',
Ethnicities:
'A kiválasztott etnikai csoport népességi arányát szűri a 2021-es népszámlálás alapján. Egyszerre egy kategória alkalmazható, hogy a helyi összetétel összehasonlítható legyen a területek között.',
'Amenity distance':

View file

@ -108,6 +108,482 @@ const de: Translations = {
relatedPages: 'Verwandte Seiten',
relatedPagesDesc:
'Folgen Sie diesen internen Links, um denselben Immobiliensuch-Workflow aus einem anderen Blickwinkel zu vergleichen.',
pages: {
'Property price map': 'Immobilienpreiskarte',
'Compare property prices across every postcode in England':
'Vergleichen Sie Immobilienpreise für alle Postleitzahlen in England',
'Property price map for England - Compare postcodes before viewing':
'Immobilienpreiskarte für England Vergleichen Sie die Postleitzahlen vor der Ansicht',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Vergleichen Sie die Verkaufspreise, den geschätzten aktuellen Wert, den Preis pro Quadratmeter und den lokalen Kontext in allen englischen Postleitzahlen, bevor Sie nach Angeboten suchen.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode bildet die Verkaufspreise, den geschätzten aktuellen Wert, den Preis pro Quadratmeter, den Immobilientyp, die Grundfläche, den Besitz und den lokalen Kontext ab, sodass Käufer realistische Suchbereiche finden können, bevor sie Angebotsportale öffnen.',
'Screen historical sale prices and current-value estimates by postcode.':
'Überprüfen Sie historische Verkaufspreise und aktuelle Wertschätzungen nach Postleitzahl.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Vergleichen Sie den Wert mit Pendelverkehr, Schulen, Breitband, Kriminalität, Lärm und Annehmlichkeiten.',
'Build a shortlist before spending weekends on viewings.':
'Erstellen Sie eine Auswahlliste, bevor Sie die Wochenenden mit Besichtigungen verbringen.',
'Find postcodes that fit the budget before listings appear':
'Finden Sie Postleitzahlen, die zum Budget passen, bevor Einträge erscheinen',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Beginnen Sie mit einem Höchstpreis und einem Immobilientyp und färben Sie die Karte dann nach dem Preis pro Quadratmeter oder dem geschätzten aktuellen Preis ein. Dies hilft dabei, Bereiche aufzudecken, in denen in der Vergangenheit ähnliche Häuser in Reichweite gehandelt wurden, auch wenn es heute keine Live-Einträge gibt.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Filtern Sie nach dem letzten bekannten Verkaufspreis, dem geschätzten aktuellen Wert, der Art der Immobilie, der Nutzungsdauer und der Grundfläche.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Vergleichen Sie nahegelegene Postleitzahlen anhand derselben Kriterien, anstatt sich auf die Reputation der Region zu verlassen.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Verwenden Sie die Ergebnisse als Auswahlliste für die Auflistung von Benachrichtigungen, lokale Recherchen und Besichtigungen.',
'Separate cheap from good value': 'Trennen Sie günstig vom guten Preis-Leistungs-Verhältnis',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Ein niedrigerer Preis kann auf kleinere Häuser, schwächere Transportmöglichkeiten, mehr Lärm oder weniger lokale Dienstleistungen zurückzuführen sein. Die Karte macht diese Kompromisse sichtbar, sodass die günstigste Postleitzahl nicht automatisch als beste Option behandelt wird.',
'Start from area value, not listing availability':
'Beginnen Sie mit dem Flächenwert und geben Sie nicht die Verfügbarkeit an',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'Auf Immobilienportalen werden heute ausschließlich Häuser zum Verkauf angeboten. Mit einer Immobilienpreiskarte auf Postleitzahlenebene können Sie größere Gebiete vergleichen, lokale Preismuster verstehen und vermeiden, Orte zu verpassen, an denen das nächste passende Angebot erscheinen könnte.',
'Use prices alongside real constraints': 'Nutzen Sie Preise neben realen Zwängen',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'Das Budget allein spielt selten eine Rolle. Perfect Postcode kombiniert Preisfilter mit Reisezeit, Schulqualität, Grundstücksgröße, Energieleistung, lokaler Umgebung und Dienstleistungen, sodass Ihre Auswahlliste widerspiegelt, wie Sie tatsächlich leben möchten.',
'What the price data is for': 'Wozu dienen die Preisdaten?',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Nutzen Sie die Karte, um Gebiete zu vergleichen und Suchkandidaten zu erkennen. Es handelt sich nicht um eine Bewertung, eine Hypothekenentscheidung, eine Umfrage, eine rechtliche Suche oder einen Live-Eintrags-Feed.',
'How to validate a promising area': 'So validieren Sie einen vielversprechenden Bereich',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Sobald eine Postleitzahl vielversprechend aussieht, prüfen Sie aktuelle Angebote, Vergleichswerte zu Verkaufspreisen, Maklerdetails, Überschwemmungssuchen, Rechtsbeilagen, Umfragen und Informationen der örtlichen Behörden, bevor Sie eine Entscheidung treffen.',
'Is this a replacement for Rightmove or Zoopla?':
'Ist dies ein Ersatz für Rightmove oder Zoopla?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Nein. Verwenden Sie es vor und neben Immobilienportalen. Perfect Postcode hilft bei der Entscheidung, wo gesucht werden soll. Immobilienportale zeigen, was gerade zum Verkauf steht.',
'Can I compare price with schools or commute time?':
'Kann ich den Preis mit Schulen oder der Pendelzeit vergleichen?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Ja. Preisfilter können mit Reisezeit-, Schul-, Kriminalitäts-, Breitband-, Straßenlärm-, Ausstattungs- und Umgebungsfiltern kombiniert werden.',
'Does the map cover all of the UK?': 'Deckt die Karte ganz Großbritannien ab?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'Das aktuelle Produkt konzentriert sich auf England, da mehrere Kerndatensätze zu Grundstücken und Postleitzahlen spezifisch für England sind.',
'Birmingham property search guide': 'Leitfaden für die Immobiliensuche in Birmingham',
'A worked example for balancing price, commute, and family trade-offs.':
'Ein praktisches Beispiel für den Ausgleich von Preis-, Pendel- und Familienkompromissen.',
'Data sources and coverage': 'Datenquellen und Abdeckung',
'See which datasets sit behind the postcode filters and where they have limits.':
'Sehen Sie, welche Datensätze sich hinter den Postleitzahlenfiltern befinden und wo diese Grenzen haben.',
Methodology: 'Methodik',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Verstehen Sie, dass die Karte die Auswahl von Kandidaten unterstützen und nicht die Due Diligence ersetzen soll.',
'Postcode checker': 'Postleitzahlenprüfer',
'Check one postcode before you spend time on a viewing.':
'Überprüfen Sie eine Postleitzahl, bevor Sie Zeit für eine Besichtigung aufwenden.',
'Explore the property map': 'Entdecken Sie die Immobilienkarte',
'Postcode property search': 'Immobiliensuche nach Postleitzahlen',
'Find postcodes that match your property search criteria':
'Finden Sie Postleitzahlen, die Ihren Immobiliensuchkriterien entsprechen',
'Postcode property search - Find areas that match your criteria':
'Immobiliensuche nach Postleitzahlen Finden Sie Gebiete, die Ihren Kriterien entsprechen',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Durchsuchen Sie jede Postleitzahl nach Budget, Immobilientyp, Grundfläche, Besitz, Pendelverkehr, Schulen, Kriminalität, Breitband, Lärm, Parks und lokalen Annehmlichkeiten.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Durchsuchen Sie jede Postleitzahl nach Budget, Immobilientyp, Größe, Nutzungsdauer, Pendelverkehr, Schulen, Kriminalität, Breitband, Lärm, Parks und lokalen Annehmlichkeiten, anstatt die Gebiete einzeln zu überprüfen.',
'Filter England-wide postcode data from one map.':
'Filtern Sie englandweite Postleitzahlendaten aus einer Karte.',
'Shortlist unfamiliar areas with comparable evidence.':
'Nehmen Sie unbekannte Gebiete mit vergleichbaren Beweisen in die engere Auswahl.',
'Save and share search areas before booking viewings.':
'Speichern und teilen Sie Suchbereiche, bevor Sie Besichtigungen buchen.',
'Turn a broad brief into postcode candidates':
'Verwandeln Sie einen umfassenden Auftrag in Postleitzahlenkandidaten',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Geben Sie zunächst die praktischen Einschränkungen ein: Budget, Grundstücksgröße, Besitzdauer, Reisezeit, Schulbedarf, Breitbandanschluss und Toleranz gegenüber Straßenlärm oder Kriminalität. Die Karte entfernt Orte, die diese Einschränkungen nicht erfüllen, und sorgt dafür, dass die verbleibenden Optionen vergleichbar bleiben.',
'Relax one constraint at a time': 'Lockern Sie eine Einschränkung nach der anderen',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Wenn die Suche zu eng wird, lockern Sie einen einzelnen Filter und beobachten Sie, welche Postleitzahlen wieder auftauchen. Dies macht Kompromisse explizit, anstatt sich auf Vermutungen zu verlassen.',
'Turn vague areas into specific postcodes':
'Verwandeln Sie unklare Gebiete in konkrete Postleitzahlen',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'Bei umfangreichen Stadt- oder Bezirkssuchen verbergen sich große Unterschiede zwischen den Straßen. Perfect Postcode hilft Ihnen, von einem allgemeinen Gebiet zu Postleitzahlen zu gelangen, die Ihren harten Anforderungen entsprechen.',
'Keep trade-offs visible': 'Halten Sie Kompromisse sichtbar',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'Wenn es zu viele oder zu wenige Übereinstimmungen gibt, passen Sie jeweils eine Einschränkung an und sehen Sie genau, welche Postleitzahlen wieder angezeigt werden. Das macht Kompromisse explizit, anstatt sich auf Vermutungen zu verlassen.',
'Why postcode-level comparison matters':
'Warum der Vergleich auf Postleitzahlenebene wichtig ist',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Zwei nahegelegene Postleitzahlen können sich hinsichtlich Schulen, Straßenlärm, Verkehrsanbindung, Immobilienmix und Preis unterscheiden. Ein Vergleich auf Postleitzahlenebene verringert die Wahrscheinlichkeit, dass eine ganze Stadt als ein einheitlicher Markt behandelt wird.',
'How to use the results': 'So nutzen Sie die Ergebnisse',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Behandeln Sie übereinstimmende Postleitzahlen wie eine Recherchewarteschlange: Überprüfen Sie Live-Einträge, besuchen Sie Straßen, bestätigen Sie Schulen und Zulassungen und überprüfen Sie aktuelle offizielle Quellen.',
'Can I save a postcode property search?':
'Kann ich eine Postleitzahlen-Immobiliensuche speichern?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Ja. Lizenzierte Benutzer können Suchanfragen speichern und später darauf zurückgreifen. Gespeicherte Suchen sind für Auswahllisten und Vergleichsnotizen konzipiert.',
'Can I search without knowing the area?': 'Kann ich suchen, ohne die Gegend zu kennen?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Ja. Die Karte ist so konzipiert, dass sie unbekannte Gebiete aufzeigt, die den praktischen Gegebenheiten entsprechen, und nicht nur Orte, die Sie bereits kennen.',
'Are the results live property listings?':
'Handelt es sich bei den Ergebnissen um Live-Immobilienanzeigen?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Nein. Das Tool vergleicht Postleitzahlendaten und historische/kontextbezogene Immobiliensignale. Für die aktuelle Verfügbarkeit benötigen Sie weiterhin Immobilienportale.',
'Manchester property search guide': 'Leitfaden zur Immobiliensuche in Manchester',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Ein regionaler Leitfaden zur Eingrenzung einer umfassenden Suche im Großraum Manchester.',
'Start a postcode search': 'Starten Sie eine Postleitzahlensuche',
'Commute property search': 'Pendler-Immobiliensuche',
'Search for places to live by commute time': 'Suchen Sie nach Wohnorten nach Pendelzeit',
'Commute property search - Find places to live by travel time':
'Pendler-Immobiliensuche Finden Sie Wohnorte nach Reisezeit',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filtern Sie Postleitzahlen nach Pendelzeit und vergleichen Sie dann Preise, Schulen, Sicherheit, Breitband, Straßenlärm, Parks und Grundstücksdaten auf einer Karte.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Filtern Sie Postleitzahlen nach modellierten Fahrzeiten für Autos, Radfahrer, Fußgänger und öffentliche Verkehrsmittel und fügen Sie dann Immobilienpreise, Schulen, Kriminalität, Breitband, Lärm und örtliche Annehmlichkeiten hinzu.',
'Compare reachable postcodes by realistic travel-time bands.':
'Vergleichen Sie erreichbare Postleitzahlen anhand realistischer Reisezeitbereiche.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Suchen Sie zuerst nach Reiseziel und filtern Sie dann nach der passenden Immobilie und Nachbarschaft.',
'Avoid areas that look close on a map but fail the daily journey.':
'Vermeiden Sie Gebiete, die auf einer Karte zwar nah anmutend aussehen, auf der täglichen Reise aber scheitern.',
'Start with the destination that matters': 'Beginnen Sie mit dem Ziel, das zählt',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Wählen Sie ein Pendelziel, ein Transportmittel und einen Zeitraum aus und fügen Sie dann die Eigenschaftsfilter hinzu. Dadurch wird verhindert, dass ein günstig erscheinendes Gebiet in die engere Wahl kommt, wenn die tägliche Anreise nicht klappt.',
'Compare the commute against the rest of daily life':
'Vergleichen Sie den Weg zur Arbeit mit dem Rest des täglichen Lebens',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'Ein schnelles Pendeln reicht nicht aus, wenn die Grundstücksgröße, der Schulkontext, die Sicherheitsschwelle, das Breitbandnetz oder die Straßenlärmbelastung nicht passen. Die Karte hält diese Signale nebeneinander.',
'Commute from postcodes, not just place names':
'Pendeln Sie über Postleitzahlen, nicht nur über Ortsnamen',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Zwei Straßen in derselben Stadt können sehr unterschiedliche Bahnhofszufahrten, Straßenrouten und öffentliche Verkehrsmittel haben. Durch die Reisezeitfilterung auf Postleitzahlenebene bleibt dieser Unterschied sichtbar.',
'Balance journey time with the rest of the move':
'Gleichen Sie die Reisezeit mit dem Rest des Umzugs aus',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'Ein schnelles Pendeln hilft nur, wenn die Gegend auch zu Ihrem Budget, Ihren Wohnbedürfnissen, Ihren Schulpräferenzen, Ihrer Sicherheitsschwelle, Ihrem Breitbandbedarf und Ihrer Toleranz gegenüber Straßenlärm passt.',
'How travel-time filters should be interpreted':
'Wie Reisezeitfilter interpretiert werden sollten',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Die Reisezeitmodellierung ist nützlich, um Gebiete konsistent zu vergleichen. Bevor Sie sich verpflichten, prüfen Sie die aktuellen Fahrpläne, Störungsmuster, Parkmöglichkeiten, Fahrradbedingungen und Wanderrouten.',
'Why commute filters are combined with property data':
'Warum Pendelfilter mit Immobiliendaten kombiniert werden',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Die Pendelsuche ist am nützlichsten, wenn sie unmögliche Bereiche entfernt und gleichzeitig anzeigt, ob die verbleibenden Optionen erschwinglich und lebenswert sind.',
'Can I compare car, cycling, walking, and public transport?':
'Kann ich Auto, Radfahren, Wandern und öffentliche Verkehrsmittel vergleichen?',
'The product supports multiple travel modes where precomputed destination data is available.':
'Das Produkt unterstützt mehrere Reisemodi, bei denen vorberechnete Zieldaten verfügbar sind.',
'Are travel times exact?': 'Sind die Reisezeiten genau?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'Nein. Behandeln Sie sie als konsistentes Vergleichsmodell und überprüfen Sie dann die tatsächliche Route, bevor Sie eine Betrachtungs- oder Kaufentscheidung treffen.',
'Can I combine commute filters with schools and price?':
'Kann ich Pendelfilter mit Schulen und Preis kombinieren?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Ja. Der Pendelfilter kann mit Immobilienpreis, Größe, Schulen, Breitband, Kriminalität, Ausstattung und Umweltsignalen geschichtet werden.',
'Bristol property search guide': 'Leitfaden zur Immobiliensuche in Bristol',
'A worked example for balancing city access, price, and local context.':
'Ein praktisches Beispiel für den Ausgleich von Stadterreichbarkeit, Preis und lokalem Kontext.',
'Search by commute time': 'Suche nach Pendelzeit',
'Schools and property search': 'Suche nach Schulen und Immobilien',
'Find property search areas with schools and family trade-offs in view':
'Finden Sie Immobiliensuchgebiete mit Blick auf Schulen und Familienkonflikte',
'School property search - Compare postcodes for family moves':
'Suche nach Schulgrundstücken Vergleichen Sie Postleitzahlen für Familienumzüge',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Vergleichen Sie Schulen in der Nähe, Grundstücksgröße, Preise, Parks, Sicherheit, Pendelverkehr und örtliche Annehmlichkeiten, bevor Sie eine Besichtigungsliste erstellen.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Vergleichen Sie die Bewertungen von Ofsted in der Nähe, Bildungskontext, Grundstücksgröße, Budget, Sicherheit, Parks, Pendelverkehr und örtliche Annehmlichkeiten, bevor Sie Ihre Auswahlliste eingrenzen.',
'Filter for nearby school quality alongside housing requirements.':
'Filtern Sie neben den Wohnbedürfnissen auch nach der Qualität einer Schule in der Nähe.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Vergleichen Sie familienfreundliche Kompromisse über unbekannte Postleitzahlen hinweg.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Nutzen Sie die Karte als Tool für die Auswahlliste, bevor Sie Zulassungen und Einzugsgebiete prüfen.',
'Use school context without ignoring the home':
'Nutzen Sie den schulischen Kontext, ohne das Zuhause zu vernachlässigen',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Beginnen Sie mit der Grundstücksgröße, dem Budget und den Pendelbeschränkungen und berücksichtigen Sie dann die Qualität der nahegelegenen Schule und den lokalen Kontext. Dadurch wird verhindert, dass schulische Suchvorgänge Erschwinglichkeits- oder Alltagsprobleme verbergen.',
'Verify admissions before deciding':
'Überprüfen Sie die Zulassungen, bevor Sie eine Entscheidung treffen',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Schuldaten können auf vielversprechende Gebiete hinweisen, aber Zulassungsregeln und Einzugsgebiete können sich ändern. Bestätigen Sie aktuelle Vereinbarungen mit Schulen und lokalen Behörden.',
'School quality is one part of the shortlist':
'Die Schulqualität ist ein Teil der engeren Auswahl',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Mit Perfect Postcode können Sie die Daten einer nahegelegenen Schule mit den anderen praktischen Einschränkungen vergleichen, die einen Familienumzug beeinflussen: Platz, Preis, Pendelverkehr, Parks, Sicherheit und örtliche Dienstleistungen.',
'Check catchments before making decisions':
'Überprüfen Sie die Einzugsgebiete, bevor Sie Entscheidungen treffen',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'Zulassungsregeln und Einzugsgebietsgrenzen können sich ändern. Verwenden Sie Schuldaten auf Postleitzahlenebene, um vielversprechende Gebiete zu finden, und überprüfen Sie dann die aktuellen Zulassungsdaten bei der Schule oder der örtlichen Behörde.',
'How to treat school filters': 'Wie man Schulfilter behandelt',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Verwenden Sie Schulfilter, um die Recherche einzugrenzen und nicht, um eine Zulassungsberechtigung anzunehmen. Bewertungen, Entfernung, Zulassungskriterien und Schulkapazität sollten anhand aktueller offizieller Quellen überprüft werden.',
'Family trade-offs to compare': 'Familienkompromisse zum Vergleich',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Kombinieren Sie Schulen mit Parks, Straßenlärm, Kriminalität, Grundstücksgröße, Pendelverkehr, Breitband und Preis, damit die Auswahlliste den gesamten Umzug widerspiegelt.',
'Does this show school catchment guarantees?':
'Zeigt dies die Einzugsgebietsgarantien der Schule?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'Nein. Es hilft dabei, vielversprechende Gebiete zu identifizieren, Einzugsgebiete und Zulassungen müssen jedoch bei der Schule oder der örtlichen Behörde überprüft werden.',
'Can I combine school filters with parks and safety?':
'Kann ich Schulfilter mit Parks und Sicherheit kombinieren?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Ja. Die schulbezogene Suche kann mit Kriminalität, Parks, Pendelverkehr, Preis, Grundstücksgröße und lokalen Dienstleistungen kombiniert werden.',
'Is Ofsted the only school signal?': 'Ist Ofsted das einzige Schulsignal?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'Kein einzelnes Ergebnis sollte über einen Zug entscheiden. Nutzen Sie die Karte als Ausgangspunkt und sehen Sie sich dann die aktuellen Schulinformationen im Detail an.',
'See where education, property, transport, and environment data comes from.':
'Sehen Sie, woher Bildungs-, Immobilien-, Transport- und Umweltdaten stammen.',
'Explore school-aware searches': 'Entdecken Sie schulbezogene Suchanfragen',
'Check postcode data before you book a viewing':
'Überprüfen Sie die Postleitzahlendaten, bevor Sie eine Besichtigung buchen',
'Postcode checker - Property, crime, broadband, noise and schools':
'Postleitzahlenprüfer Eigentum, Kriminalität, Breitband, Lärm und Schulen',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Überprüfen Sie Immobilienpreise auf Postleitzahlenebene, EPC-Daten, Kriminalität, Breitband, Straßenlärm, Schulen, Gemeindesteuer, Annehmlichkeiten und Reisezeitkontext.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Überprüfen Sie Immobilienpreise, EPC-Kontext, Kriminalität, Breitband, Straßenlärm, örtliche Annehmlichkeiten, Schulen, Benachteiligung, Gemeindesteuer und Reisezeitdaten auf einer Postleitzahlenkarte.',
'Check multiple local signals before visiting a street.':
'Überprüfen Sie mehrere örtliche Signale, bevor Sie eine Straße besuchen.',
'Use official and open datasets rather than reputation alone.':
'Nutzen Sie offizielle und offene Datensätze und nicht nur die Reputation.',
'Compare postcodes consistently across England.':
'Vergleichen Sie Postleitzahlen einheitlich in ganz England.',
'Check the street before spending a viewing slot':
'Überprüfen Sie die Straße, bevor Sie einen Besichtigungstermin verbringen',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Nutzen Sie den Postleitzahlen-Checker, um die Preisentwicklung, den lokalen Kontext, die Ausstattung, Schulen und Umgebungssignale zu überprüfen, bevor Sie sich Zeit für einen Besuch nehmen.',
'Compare neighbouring postcodes': 'Vergleichen Sie benachbarte Postleitzahlen',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Wenn eine Postleitzahl vielversprechend aussieht, vergleichen Sie benachbarte Gebiete mit denselben Filtern. Dies zeigt oft, ob ein Problem straßenspezifisch ist oder Teil eines umfassenderen Musters ist.',
'Useful before and alongside listing portals': 'Nützlich vor und neben Immobilienportalen',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Die Auflistungsfotos verraten Ihnen selten genug über die umliegende Straße. Perfect Postcode bietet Ihnen eine evidenzbasierte Postleitzahlenprüfung, bevor Sie sich Zeit für eine Besichtigung nehmen.',
'A screening tool, not professional advice':
'Ein Screening-Tool, keine professionelle Beratung',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'Die Daten dienen der Auswahl und dem Vergleich. Für jeden Kauf sind weiterhin aktuelle Auflistungsprüfungen, rechtliche Due-Diligence-Prüfungen, Hochwasserrecherchen, Kreditgeberanforderungen und Umfrageergebnisse erforderlich.',
'What a postcode check can catch': 'Was ein Postleitzahlen-Check fangen kann',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'Eine Postleitzahlenprüfung kann Preiskontext, Umweltsignale, nahegelegene Annehmlichkeiten und andere lokale Indikatoren aufdecken, die in einem Eintrag leicht übersehen werden.',
'What a postcode check cant prove': 'Was eine Postleitzahlenprüfung nicht beweisen kann',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Es kann nicht den Zustand eines Hauses, die zukünftige Entwicklung, den Rechtstitel, die Anforderungen des Kreditgebers oder die aktuelle Erfahrung auf Straßenniveau bestätigen. Diese benötigen noch direkte Kontrollen.',
'Can I use the checker before a viewing?':
'Kann ich den Checker vor einer Besichtigung nutzen?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Ja. Das ist einer der Hauptanwendungsfälle: Überprüfen Sie zuerst die Postleitzahl und entscheiden Sie dann, ob sich die Besichtigung lohnt.',
'Does the checker include exact property condition?':
'Enthält der Prüfer den genauen Zustand der Immobilie?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Nein. Für den Immobilienzustand sind detaillierte Angaben zur Auflistung, Gutachten und eine direkte Besichtigung erforderlich.',
'Can I compare multiple postcodes?': 'Kann ich mehrere Postleitzahlen vergleichen?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Ja. Die Karte ist für einen konsistenten Vergleich über mehrere Postleitzahlen hinweg konzipiert.',
'Check postcodes on the map': 'Überprüfen Sie die Postleitzahlen auf der Karte',
'Regional guide': 'Regionalführer',
'How to compare Birmingham postcodes before a property search':
'So vergleichen Sie die Postleitzahlen von Birmingham vor einer Immobiliensuche',
'Birmingham property search - Compare postcodes by price and commute':
'Immobiliensuche in Birmingham Vergleichen Sie Postleitzahlen nach Preis und Arbeitsweg',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Nutzen Sie Daten auf Postleitzahlenebene, um Immobilienpreise in Birmingham, Kompromisse beim Pendeln, Schulen, Kriminalität, Breitband und örtliche Annehmlichkeiten vor Besichtigungen zu vergleichen.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'Die Suche in Birmingham kann sich von Straße zu Straße schnell ändern. Nutzen Sie Beweise auf Postleitzahlenebene, um Budget, Pendelverkehr, Schulen, Lärm, Kriminalität und örtliche Dienstleistungen zu vergleichen, bevor Sie entscheiden, wo Sie Einträge ansehen möchten.',
'Start with commute corridors': 'Beginnen Sie mit Pendelkorridoren',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Wählen Sie das gewünschte Ziel aus, z. B. einen Arbeitsplatz, einen Bahnhof, eine Universität oder ein Krankenhaus, und vergleichen Sie dann erreichbare Postleitzahlen nach Verkehrsmittel und Reisezeitspanne.',
'Use commute time as a hard filter before judging price.':
'Nutzen Sie die Pendelzeit als harten Filter, bevor Sie den Preis beurteilen.',
'Compare public transport with car, cycling, or walking where available.':
'Vergleichen Sie öffentliche Verkehrsmittel mit dem Auto, dem Fahrrad oder zu Fuß, sofern verfügbar.',
'Check the route manually before booking viewings.':
'Überprüfen Sie die Route manuell, bevor Sie Besichtigungen buchen.',
'Compare price with property type': 'Vergleichen Sie den Preis mit der Immobilienart',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Allein die Medianpreise können irreführend sein, wenn sich der Immobilienmix vor Ort ändert. Fügen Sie Filter für Immobilienart, Grundstücksfläche, Grundfläche und Preis hinzu, damit ähnliche Flächen fair verglichen werden können.',
'Keep family and environment trade-offs visible':
'Halten Sie die Kompromisse zwischen Familie und Umwelt sichtbar',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Überlagern Sie den Grundstücksfilter mit Schulkontext, Parks, Straßenlärm, Breitband und Kriminalitätssignalen. Das erleichtert die Entscheidung, welche Kompromisse akzeptabel sind.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Kann mir Perfect Postcode die beste Gegend in Birmingham nennen?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Kein Tool kann für jeden Käufer den besten Bereich bestimmen. Es hilft Ihnen, Postleitzahlen mit Ihren eigenen Einschränkungen zu vergleichen, sodass Sie eine bessere Auswahlliste erstellen können.',
'Should I use this instead of local knowledge?':
'Sollte ich dies anstelle von lokalem Wissen verwenden?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Nein. Verwenden Sie es, um Kandidaten zu finden und zu vergleichen und sie dann durch Besuche, Beratung vor Ort, Auflistungen und offizielle Überprüfungen zu validieren.',
'Compare price patterns before looking at live listings.':
'Vergleichen Sie Preismuster, bevor Sie sich Live-Angebote ansehen.',
'Search by travel time and then layer on property requirements.':
'Suchen Sie nach Reisezeit und fügen Sie dann die Immobilienanforderungen hinzu.',
'Understand how to interpret filters and limitations.':
'Verstehen Sie, wie Sie Filter und Einschränkungen interpretieren.',
'Compare Birmingham postcodes': 'Vergleichen Sie die Postleitzahlen von Birmingham',
'How to compare Manchester postcodes for a property search':
'So vergleichen Sie die Postleitzahlen von Manchester für eine Immobiliensuche',
'Manchester property search - Compare postcodes before viewing':
'Immobiliensuche in Manchester Vergleichen Sie die Postleitzahlen vor der Besichtigung',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Vergleichen Sie Postleitzahlen im Raum Manchester nach Budget, Pendlerweg, Immobilientyp, Schulen, Breitband, Kriminalität, Lärm und Ausstattung, bevor Sie Besichtigungen buchen.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'Eine Suche im Raum Manchester kann Optionen im Stadtzentrum, in Vorstädten und für Pendler umfassen. Perfect Postcode trägt dazu bei, dass jede Postleitzahl mit den gleichen Grundstücks- und Alltagsbeschränkungen vergleichbar bleibt.',
'Use travel time to define the real search area':
'Nutzen Sie die Reisezeit, um das tatsächliche Suchgebiet zu definieren',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Beginnen Sie mit den Zielen, die wichtig sind, und vergleichen Sie dann die erreichbaren Postleitzahlen, anstatt davon auszugehen, dass jeder Ort in der Nähe die gleiche praktische Anfahrt hat.',
'Compare housing requirements before lifestyle preferences':
'Vergleichen Sie zunächst die Wohnanforderungen und dann Ihre Lebensstilpräferenzen',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Filtern Sie nach Immobilientyp, Grundfläche, Nutzungsdauer und Preis, bevor Sie die Ausstattung beurteilen. Dadurch bleibt die Auswahlliste auf Häusern beschränkt, die realistisch funktionieren könnten.',
'Check local context consistently': 'Überprüfen Sie den lokalen Kontext konsequent',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Nutzen Sie Breitband, Kriminalität, Straßenlärm, Parks, Schulen und Einrichtungen als vergleichbare Signale. Anschließend validieren Sie die stärksten Kandidaten mit aktuellen lokalen Prüfungen.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Kann ich Vororte von Manchester mit Postleitzahlen im Stadtzentrum vergleichen?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Ja. Verwenden Sie für beide die gleichen Budget-, Immobilien-, Pendler- und lokalen Kontextfilter, damit Kompromisse sichtbar bleiben.',
'Does this include live listings?': 'Umfasst dies Live-Einträge?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Nein. Verwenden Sie es, um zu entscheiden, wo Sie suchen möchten, und nutzen Sie dann die Angebotsportale für aktuelle zum Verkauf stehende Häuser.',
'Move from a broad search brief to specific postcode candidates.':
'Wechseln Sie von einem breiten Suchauftrag zu bestimmten Postleitzahlkandidaten.',
'Data sources': 'Datenquellen',
'Review the datasets used for property and local-context comparison.':
'Überprüfen Sie die Datensätze, die für den Eigenschafts- und lokalen Kontextvergleich verwendet werden.',
'Check a single postcode before arranging a viewing.':
'Überprüfen Sie eine einzelne Postleitzahl, bevor Sie eine Besichtigung vereinbaren.',
'Compare Manchester postcodes': 'Vergleichen Sie die Postleitzahlen von Manchester',
'How to compare Bristol postcodes before a property search':
'So vergleichen Sie die Postleitzahlen von Bristol vor einer Immobiliensuche',
'Bristol property search - Compare postcodes by commute and price':
'Immobiliensuche in Bristol Vergleichen Sie Postleitzahlen nach Pendelweg und Preis',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Vergleichen Sie die Postleitzahlen von Bristol nach Preis, Pendlerweg, Grundstücksgröße, Schulen, Breitband, Kriminalität, Straßenlärm, Parks und Annehmlichkeiten vor der Besichtigung.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Bei Suchanfragen in Bristol müssen oft scharfe Kompromisse zwischen Preis, Reisezeit, Grundstücksgröße und Nachbarschaftskontext eingegangen werden. Ein Postleitzahlenvergleich macht diese Kompromisse sichtbar.',
'Make commute constraints explicit': 'Machen Sie Pendelbeschränkungen explizit',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'Wenn die Erreichbarkeit des Zentrums, eines Bahnhofs, eines Krankenhauses, einer Universität oder eines Gewerbegebiets von Bedeutung ist, verwenden Sie zunächst Reisezeitfilter und vergleichen Sie dann die übrigen Postleitzahlen anhand der Grundstücksdaten.',
'Compare value, not just headline price':
'Vergleichen Sie den Wert, nicht nur den Gesamtpreis',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Nutzen Sie Preis-, Immobilientyp- und Flächenfilter gemeinsam. Dies hilft dabei, kostengünstigere Gebiete von Gebieten zu unterscheiden, in denen sich lediglich kleinere oder andere Häuser befinden.',
'Screen environmental and local-service signals':
'Überprüfen Sie Umgebungs- und lokale Servicesignale',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Straßenlärm, Parks, Breitband, Kriminalität und Annehmlichkeiten können sich darauf auswirken, ob eine Immobilie im Alltag funktioniert. Nutzen Sie sie als Auswahlkriterien, bevor Sie Besichtigungen buchen.',
'Can I use this for commuter villages around Bristol?':
'Kann ich dies für Pendlerdörfer rund um Bristol nutzen?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Ja, sofern die entsprechenden Postleitzahlen- und Reisezeitdaten verfügbar sind. Überprüfen Sie Routen und Dienste immer manuell, bevor Sie eine Entscheidung treffen.',
'Can this tell me whether a listing is good value?':
'Kann mir das sagen, ob ein Eintrag ein gutes Preis-Leistungs-Verhältnis bietet?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'Es kann einen gebietsbezogenen Kontext bieten, aber für ein bestimmtes Angebot sind dennoch vergleichbare Verkäufe, Zustandsprüfungen, Umfrageergebnisse und gegebenenfalls professionelle Beratung erforderlich.',
'Search by reachable postcodes before refining by budget and local context.':
'Suchen Sie nach erreichbaren Postleitzahlen, bevor Sie die Suche nach Budget und lokalem Kontext verfeinern.',
'Understand price patterns before setting listing alerts.':
'Verstehen Sie Preismuster, bevor Sie Angebotsbenachrichtigungen einrichten.',
'Privacy and security': 'Privatsphäre und Sicherheit',
'How account and saved-search data is handled in the product.':
'Wie Konto- und gespeicherte Suchdaten im Produkt verarbeitet werden.',
'Compare Bristol postcodes': 'Vergleichen Sie die Postleitzahlen von Bristol',
'Trust and coverage': 'Vertrauen und Abdeckung',
'Perfect Postcode data sources and coverage':
'Perfekte Postleitzahlen-Datenquellen und -Abdeckung',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfekte Postleitzahlen-Datenquellen Immobilien, Schulen, Pendler und lokaler Kontext',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Überprüfen Sie die von Perfect Postcode verwendeten öffentlichen und offiziellen Datensätze, einschließlich Immobilienpreise, EPC, Schulen, Kriminalität, Breitband, Lärm und Reisezeitkontext.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode kombiniert Immobilien-, Transport-, Bildungs-, Umwelt- und lokale Dienstleistungsdatensätze, sodass Käufer Postleitzahlen konsistent vergleichen können. Auf dieser Seite wird erläutert, wozu die Daten dienen und wo sie überprüft werden sollten.',
'Property and housing context': 'Immobilien- und Wohnkontext',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'Das Produkt nutzt Immobilientransaktions- und Wohnungskontextdatensätze, um Filter wie Verkaufspreis, Immobilientyp, Besitz, Grundfläche, Energieeffizienz und geschätzten aktuellen Wert zu unterstützen.',
'Use these fields to compare areas, not as a formal valuation.':
'Verwenden Sie diese Felder zum Vergleichen von Bereichen, nicht als formale Bewertung.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Überprüfen Sie vor dem Kauf aktuelle Angebote, Titelinformationen, Kreditgeberanforderungen und Umfrageergebnisse.',
'Schools, safety, broadband, and environment': 'Schulen, Sicherheit, Breitband und Umwelt',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Lokale Kontextfilter helfen beim Vergleich von Postleitzahlen anhand von Signalen, die das tägliche Leben beeinflussen. Sie sollten als Screening-Daten behandelt und für Entscheidungen mit aktuellen offiziellen Quellen verglichen werden.',
'Travel-time data': 'Reisezeitdaten',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Reisezeitfilter sind für einen konsistenten Gebietsvergleich konzipiert. Bevor Sie sich für ein Gebiet entscheiden, sollten Sie die Verfügbarkeit der Route, Störungen, Parkmöglichkeiten, Zugang zu Fuß und Fahrplandetails überprüfen.',
'Why does coverage focus on England?':
'Warum konzentriert sich die Berichterstattung auf England?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Mehrere Kerndatensätze zu Eigentum, Bildung und lokalem Kontext sind gebietsspezifisch. Die Berichterstattung über England sorgt für konsistentere Vergleiche.',
'How should I handle stale or missing data?':
'Wie gehe ich mit veralteten oder fehlenden Daten um?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Nutzen Sie die Karte als Shortlist-Tool. Wenn eine Postleitzahl von Bedeutung ist, überprüfen Sie die neuesten Angaben anhand aktueller offizieller Quellen und direkt vor Ort.',
'How filters and comparisons should be interpreted.':
'Wie Filter und Vergleiche interpretiert werden sollten.',
'Review postcode-level context before a viewing.':
'Überprüfen Sie vor einer Besichtigung den Kontext auf Postleitzahlenebene.',
'How saved searches and account data are handled.':
'Wie mit gespeicherten Suchanfragen und Kontodaten umgegangen wird.',
'How to use the map': 'So verwenden Sie die Karte',
'Methodology for postcode property research':
'Methodik für die Immobilienrecherche nach Postleitzahlen',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfekte Postleitzahlen-Methodik So interpretieren Sie Postleitzahlen-Eigenschaftsdaten',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Verstehen Sie, wie Sie Postleitzahlenfilter, Immobilienschätzungen, Reisezeitdaten, Schulkontext und lokale Signale als Tool für die Auswahlliste beim Hauskauf verwenden.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode wurde entwickelt, um die Auswahl von Gebieten evidenzbasierter zu gestalten. Es ersetzt nicht Immobilienmakler, Gutachter, Immobilienmakler, Kreditgeber, Schulzulassungsteams oder örtliche Behördenkontrollen.',
'Start with hard constraints': 'Beginnen Sie mit harten Einschränkungen',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Beginnen Sie mit nicht verhandelbaren Faktoren wie Budget, Immobilientyp, Grundfläche, Pendelzeit und wesentlichen Dienstleistungen. Dadurch werden unmögliche Postleitzahlen entfernt, bevor weichere Präferenzen berücksichtigt werden.',
'Use colour layers for trade-offs': 'Verwenden Sie Farbebenen für Kompromisse',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'Färben Sie die verbleibende Karte nach dem Filtern jeweils nach einem Signal ein: Preis pro Quadratmeter, Straßenlärm, Schulkontext, Pendelzeit, Breitband oder Kriminalität. Dies erleichtert die Diskussion von Kompromissen.',
'Measure whats working': 'Messen Sie, was funktioniert',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Verwenden Sie die Search Console und Analysen, um zu verfolgen, welche öffentlichen Seiten indiziert werden, welche Abfragen Impressionen erzeugen und welche Seiten Besucher in Dashboard-Erkundungen umwandeln. Überprüfen Sie die Core Web Vitals nach jeder wesentlichen Frontend-Änderung.',
'Can the tool choose the right postcode for me?':
'Kann das Tool die richtige Postleitzahl für mich auswählen?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Nein. Es hilft, Beweise zu vergleichen und den Suchbereich zu verkleinern. Die endgültige Entscheidung erfordert direkte Besuche, aktuelle Einträge, rechtliche Prüfungen, Umfragen und ein persönliches Urteil.',
'How should I use estimates?': 'Wie verwende ich Schätzungen?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Nutzen Sie Schätzungen als Vergleichssignale, nicht als professionelle Wertermittlung oder Kaufberatung.',
'Understand where key filters come from.': 'Verstehen Sie, woher Schlüsselfilter kommen.',
'Apply the methodology to price-led area comparison.':
'Wenden Sie die Methodik auf einen preisorientierten Flächenvergleich an.',
'Apply the methodology to destination-led search.':
'Wenden Sie die Methodik auf die zielorientierte Suche an.',
Trust: 'Vertrauen',
'Privacy and security for saved property searches':
'Datenschutz und Sicherheit für gespeicherte Immobiliensuchen',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfekte Privatsphäre und Sicherheit für Postleitzahlen Gespeicherte Suchanfragen und Kontodaten',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Erfahren Sie, wie Perfect Postcode gespeicherte Suchanfragen, Kontodaten und Immobilienrecherche-Workflows unter Berücksichtigung von Datenschutz und Sicherheit behandelt.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Eine Immobilienrecherche kann persönliche Prioritäten, Budgets und Standorte aufdecken. Das Produkt trennt öffentliche SEO-Seiten von reinen Kontobereichen und markiert private Dashboard-/Kontorouten als Noindex.',
'Public pages and private areas are separated':
'Öffentliche Seiten und private Bereiche werden getrennt',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'Marketing-, Methodik-, Leitfaden- und Supportseiten sind indexierbar. Dashboard, Konto, gespeicherte Suchen, Einladungen und Einladungsrouten werden gegebenenfalls als „noindex“ markiert oder für den Crawler-Zugriff blockiert.',
'Saved search data is account-scoped': 'Gespeicherte Suchdaten sind kontobezogen',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Gespeicherte Suchen und Eigenschaften sind für die Verwendung durch angemeldete Benutzer vorgesehen. Sie sind nicht in der öffentlichen Sitemap enthalten und sollten nicht als öffentlicher Inhalt gecrawlt werden können.',
'Search measurement without exposing private data':
'Suchmessung ohne Offenlegung privater Daten',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'Die SEO-Messung sollte auf öffentlichen Seiten mithilfe aggregierter Analysen und Search Console-Daten erfolgen. Private Abfrageparameter und Kontoansichten sollten nicht zu indexierbaren Zielseiten werden.',
'Are saved searches listed in the sitemap?':
'Werden gespeicherte Suchanfragen in der Sitemap aufgeführt?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Nein. Öffentliche SEO-Seiten werden aufgelistet. Konto- und gespeicherte Suchrouten werden absichtlich ausgeschlossen.',
'Can private dashboard URLs appear in search?':
'Können private Dashboard-URLs in der Suche angezeigt werden?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Sie sollten nicht indiziert werden. Der Server markiert private Routen mit Noindex und die Sitemap listet nur öffentliche Seiten auf.',
'How to use public postcode data responsibly.':
'So gehen Sie verantwortungsvoll mit öffentlichen Postleitzahldaten um.',
'What data powers the public comparisons.':
'Welche Daten basieren auf den öffentlichen Vergleichen?',
'Explore public postcode-search workflows.':
'Entdecken Sie öffentliche Workflows zur Postleitzahlensuche.',
},
},
// ── Auth Modal ─────────────────────────────────────
@ -573,11 +1049,14 @@ const de: Translations = {
learnPage: {
faq: 'Häufige Fragen',
dataSources: 'Datenquellen',
articles: 'Artikel',
support: 'Hilfe',
dataSourcesIntro:
'Diese Anwendung kombiniert {{count}} offene Datensätze zu Immobilienpreisen, Energieeffizienz, Verkehr, Demografie, Kriminalität, Umwelt und mehr.',
faqIntro:
'Ob Sie eine Erstkäufersuche eingrenzen, eine unbekannte Postleitzahl prüfen oder eine Besichtigungsliste erstellen: So hilft Perfect Postcode dabei herauszufinden, wo Sie suchen sollten.',
articlesIntro:
'Durchsuchen Sie die öffentlichen Leitfäden zu Immobiliensuche, Pendeln, Schulen, Postleitzahlprüfungen, regionalen Vergleichen, Datenabdeckung, Methodik und Datenschutz.',
supportIntro:
'Haben Sie eine Frage? Schauen Sie in unsere FAQ oder kontaktieren Sie uns direkt.',
source: 'Quelle:',
@ -1136,482 +1615,6 @@ const de: Translations = {
' years': ' Jahre',
' rooms': ' Zimmer',
},
seo: {
'Property price map': 'Immobilienpreiskarte',
'Compare property prices across every postcode in England':
'Vergleichen Sie Immobilienpreise für alle Postleitzahlen in England',
'Property price map for England - Compare postcodes before viewing':
'Immobilienpreiskarte für England Vergleichen Sie die Postleitzahlen vor der Ansicht',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Vergleichen Sie die Verkaufspreise, den geschätzten aktuellen Wert, den Preis pro Quadratmeter und den lokalen Kontext in allen englischen Postleitzahlen, bevor Sie nach Angeboten suchen.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode bildet die Verkaufspreise, den geschätzten aktuellen Wert, den Preis pro Quadratmeter, den Immobilientyp, die Grundfläche, den Besitz und den lokalen Kontext ab, sodass Käufer realistische Suchbereiche finden können, bevor sie Angebotsportale öffnen.',
'Screen historical sale prices and current-value estimates by postcode.':
'Überprüfen Sie historische Verkaufspreise und aktuelle Wertschätzungen nach Postleitzahl.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Vergleichen Sie den Wert mit Pendelverkehr, Schulen, Breitband, Kriminalität, Lärm und Annehmlichkeiten.',
'Build a shortlist before spending weekends on viewings.':
'Erstellen Sie eine Auswahlliste, bevor Sie die Wochenenden mit Besichtigungen verbringen.',
'Find postcodes that fit the budget before listings appear':
'Finden Sie Postleitzahlen, die zum Budget passen, bevor Einträge erscheinen',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Beginnen Sie mit einem Höchstpreis und einem Immobilientyp und färben Sie die Karte dann nach dem Preis pro Quadratmeter oder dem geschätzten aktuellen Preis ein. Dies hilft dabei, Bereiche aufzudecken, in denen in der Vergangenheit ähnliche Häuser in Reichweite gehandelt wurden, auch wenn es heute keine Live-Einträge gibt.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Filtern Sie nach dem letzten bekannten Verkaufspreis, dem geschätzten aktuellen Wert, der Art der Immobilie, der Nutzungsdauer und der Grundfläche.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Vergleichen Sie nahegelegene Postleitzahlen anhand derselben Kriterien, anstatt sich auf die Reputation der Region zu verlassen.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Verwenden Sie die Ergebnisse als Auswahlliste für die Auflistung von Benachrichtigungen, lokale Recherchen und Besichtigungen.',
'Separate cheap from good value': 'Trennen Sie günstig vom guten Preis-Leistungs-Verhältnis',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Ein niedrigerer Preis kann auf kleinere Häuser, schwächere Transportmöglichkeiten, mehr Lärm oder weniger lokale Dienstleistungen zurückzuführen sein. Die Karte macht diese Kompromisse sichtbar, sodass die günstigste Postleitzahl nicht automatisch als beste Option behandelt wird.',
'Start from area value, not listing availability':
'Beginnen Sie mit dem Flächenwert und geben Sie nicht die Verfügbarkeit an',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'Auf Immobilienportalen werden heute ausschließlich Häuser zum Verkauf angeboten. Mit einer Immobilienpreiskarte auf Postleitzahlenebene können Sie größere Gebiete vergleichen, lokale Preismuster verstehen und vermeiden, Orte zu verpassen, an denen das nächste passende Angebot erscheinen könnte.',
'Use prices alongside real constraints': 'Nutzen Sie Preise neben realen Zwängen',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'Das Budget allein spielt selten eine Rolle. Perfect Postcode kombiniert Preisfilter mit Reisezeit, Schulqualität, Grundstücksgröße, Energieleistung, lokaler Umgebung und Dienstleistungen, sodass Ihre Auswahlliste widerspiegelt, wie Sie tatsächlich leben möchten.',
'What the price data is for': 'Wozu dienen die Preisdaten?',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Nutzen Sie die Karte, um Gebiete zu vergleichen und Suchkandidaten zu erkennen. Es handelt sich nicht um eine Bewertung, eine Hypothekenentscheidung, eine Umfrage, eine rechtliche Suche oder einen Live-Eintrags-Feed.',
'How to validate a promising area': 'So validieren Sie einen vielversprechenden Bereich',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Sobald eine Postleitzahl vielversprechend aussieht, prüfen Sie aktuelle Angebote, Vergleichswerte zu Verkaufspreisen, Maklerdetails, Überschwemmungssuchen, Rechtsbeilagen, Umfragen und Informationen der örtlichen Behörden, bevor Sie eine Entscheidung treffen.',
'Is this a replacement for Rightmove or Zoopla?':
'Ist dies ein Ersatz für Rightmove oder Zoopla?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Nein. Verwenden Sie es vor und neben Immobilienportalen. Perfect Postcode hilft bei der Entscheidung, wo gesucht werden soll. Immobilienportale zeigen, was gerade zum Verkauf steht.',
'Can I compare price with schools or commute time?':
'Kann ich den Preis mit Schulen oder der Pendelzeit vergleichen?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Ja. Preisfilter können mit Reisezeit-, Schul-, Kriminalitäts-, Breitband-, Straßenlärm-, Ausstattungs- und Umgebungsfiltern kombiniert werden.',
'Does the map cover all of the UK?': 'Deckt die Karte ganz Großbritannien ab?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'Das aktuelle Produkt konzentriert sich auf England, da mehrere Kerndatensätze zu Grundstücken und Postleitzahlen spezifisch für England sind.',
'Birmingham property search guide': 'Leitfaden für die Immobiliensuche in Birmingham',
'A worked example for balancing price, commute, and family trade-offs.':
'Ein praktisches Beispiel für den Ausgleich von Preis-, Pendel- und Familienkompromissen.',
'Data sources and coverage': 'Datenquellen und Abdeckung',
'See which datasets sit behind the postcode filters and where they have limits.':
'Sehen Sie, welche Datensätze sich hinter den Postleitzahlenfiltern befinden und wo diese Grenzen haben.',
Methodology: 'Methodik',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Verstehen Sie, dass die Karte die Auswahl von Kandidaten unterstützen und nicht die Due Diligence ersetzen soll.',
'Postcode checker': 'Postleitzahlenprüfer',
'Check one postcode before you spend time on a viewing.':
'Überprüfen Sie eine Postleitzahl, bevor Sie Zeit für eine Besichtigung aufwenden.',
'Explore the property map': 'Entdecken Sie die Immobilienkarte',
'Postcode property search': 'Immobiliensuche nach Postleitzahlen',
'Find postcodes that match your property search criteria':
'Finden Sie Postleitzahlen, die Ihren Immobiliensuchkriterien entsprechen',
'Postcode property search - Find areas that match your criteria':
'Immobiliensuche nach Postleitzahlen Finden Sie Gebiete, die Ihren Kriterien entsprechen',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Durchsuchen Sie jede Postleitzahl nach Budget, Immobilientyp, Grundfläche, Besitz, Pendelverkehr, Schulen, Kriminalität, Breitband, Lärm, Parks und lokalen Annehmlichkeiten.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Durchsuchen Sie jede Postleitzahl nach Budget, Immobilientyp, Größe, Nutzungsdauer, Pendelverkehr, Schulen, Kriminalität, Breitband, Lärm, Parks und lokalen Annehmlichkeiten, anstatt die Gebiete einzeln zu überprüfen.',
'Filter England-wide postcode data from one map.':
'Filtern Sie englandweite Postleitzahlendaten aus einer Karte.',
'Shortlist unfamiliar areas with comparable evidence.':
'Nehmen Sie unbekannte Gebiete mit vergleichbaren Beweisen in die engere Auswahl.',
'Save and share search areas before booking viewings.':
'Speichern und teilen Sie Suchbereiche, bevor Sie Besichtigungen buchen.',
'Turn a broad brief into postcode candidates':
'Verwandeln Sie einen umfassenden Auftrag in Postleitzahlenkandidaten',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Geben Sie zunächst die praktischen Einschränkungen ein: Budget, Grundstücksgröße, Besitzdauer, Reisezeit, Schulbedarf, Breitbandanschluss und Toleranz gegenüber Straßenlärm oder Kriminalität. Die Karte entfernt Orte, die diese Einschränkungen nicht erfüllen, und sorgt dafür, dass die verbleibenden Optionen vergleichbar bleiben.',
'Relax one constraint at a time': 'Lockern Sie eine Einschränkung nach der anderen',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Wenn die Suche zu eng wird, lockern Sie einen einzelnen Filter und beobachten Sie, welche Postleitzahlen wieder auftauchen. Dies macht Kompromisse explizit, anstatt sich auf Vermutungen zu verlassen.',
'Turn vague areas into specific postcodes':
'Verwandeln Sie unklare Gebiete in konkrete Postleitzahlen',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'Bei umfangreichen Stadt- oder Bezirkssuchen verbergen sich große Unterschiede zwischen den Straßen. Perfect Postcode hilft Ihnen, von einem allgemeinen Gebiet zu Postleitzahlen zu gelangen, die Ihren harten Anforderungen entsprechen.',
'Keep trade-offs visible': 'Halten Sie Kompromisse sichtbar',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'Wenn es zu viele oder zu wenige Übereinstimmungen gibt, passen Sie jeweils eine Einschränkung an und sehen Sie genau, welche Postleitzahlen wieder angezeigt werden. Das macht Kompromisse explizit, anstatt sich auf Vermutungen zu verlassen.',
'Why postcode-level comparison matters':
'Warum der Vergleich auf Postleitzahlenebene wichtig ist',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Zwei nahegelegene Postleitzahlen können sich hinsichtlich Schulen, Straßenlärm, Verkehrsanbindung, Immobilienmix und Preis unterscheiden. Ein Vergleich auf Postleitzahlenebene verringert die Wahrscheinlichkeit, dass eine ganze Stadt als ein einheitlicher Markt behandelt wird.',
'How to use the results': 'So nutzen Sie die Ergebnisse',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Behandeln Sie übereinstimmende Postleitzahlen wie eine Recherchewarteschlange: Überprüfen Sie Live-Einträge, besuchen Sie Straßen, bestätigen Sie Schulen und Zulassungen und überprüfen Sie aktuelle offizielle Quellen.',
'Can I save a postcode property search?':
'Kann ich eine Postleitzahlen-Immobiliensuche speichern?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Ja. Lizenzierte Benutzer können Suchanfragen speichern und später darauf zurückgreifen. Gespeicherte Suchen sind für Auswahllisten und Vergleichsnotizen konzipiert.',
'Can I search without knowing the area?': 'Kann ich suchen, ohne die Gegend zu kennen?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Ja. Die Karte ist so konzipiert, dass sie unbekannte Gebiete aufzeigt, die den praktischen Gegebenheiten entsprechen, und nicht nur Orte, die Sie bereits kennen.',
'Are the results live property listings?':
'Handelt es sich bei den Ergebnissen um Live-Immobilienanzeigen?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Nein. Das Tool vergleicht Postleitzahlendaten und historische/kontextbezogene Immobiliensignale. Für die aktuelle Verfügbarkeit benötigen Sie weiterhin Immobilienportale.',
'Manchester property search guide': 'Leitfaden zur Immobiliensuche in Manchester',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Ein regionaler Leitfaden zur Eingrenzung einer umfassenden Suche im Großraum Manchester.',
'Start a postcode search': 'Starten Sie eine Postleitzahlensuche',
'Commute property search': 'Pendler-Immobiliensuche',
'Search for places to live by commute time': 'Suchen Sie nach Wohnorten nach Pendelzeit',
'Commute property search - Find places to live by travel time':
'Pendler-Immobiliensuche Finden Sie Wohnorte nach Reisezeit',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filtern Sie Postleitzahlen nach Pendelzeit und vergleichen Sie dann Preise, Schulen, Sicherheit, Breitband, Straßenlärm, Parks und Grundstücksdaten auf einer Karte.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Filtern Sie Postleitzahlen nach modellierten Fahrzeiten für Autos, Radfahrer, Fußgänger und öffentliche Verkehrsmittel und fügen Sie dann Immobilienpreise, Schulen, Kriminalität, Breitband, Lärm und örtliche Annehmlichkeiten hinzu.',
'Compare reachable postcodes by realistic travel-time bands.':
'Vergleichen Sie erreichbare Postleitzahlen anhand realistischer Reisezeitbereiche.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Suchen Sie zuerst nach Reiseziel und filtern Sie dann nach der passenden Immobilie und Nachbarschaft.',
'Avoid areas that look close on a map but fail the daily journey.':
'Vermeiden Sie Gebiete, die auf einer Karte zwar nah anmutend aussehen, auf der täglichen Reise aber scheitern.',
'Start with the destination that matters': 'Beginnen Sie mit dem Ziel, das zählt',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Wählen Sie ein Pendelziel, ein Transportmittel und einen Zeitraum aus und fügen Sie dann die Eigenschaftsfilter hinzu. Dadurch wird verhindert, dass ein günstig erscheinendes Gebiet in die engere Wahl kommt, wenn die tägliche Anreise nicht klappt.',
'Compare the commute against the rest of daily life':
'Vergleichen Sie den Weg zur Arbeit mit dem Rest des täglichen Lebens',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'Ein schnelles Pendeln reicht nicht aus, wenn die Grundstücksgröße, der Schulkontext, die Sicherheitsschwelle, das Breitbandnetz oder die Straßenlärmbelastung nicht passen. Die Karte hält diese Signale nebeneinander.',
'Commute from postcodes, not just place names':
'Pendeln Sie über Postleitzahlen, nicht nur über Ortsnamen',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Zwei Straßen in derselben Stadt können sehr unterschiedliche Bahnhofszufahrten, Straßenrouten und öffentliche Verkehrsmittel haben. Durch die Reisezeitfilterung auf Postleitzahlenebene bleibt dieser Unterschied sichtbar.',
'Balance journey time with the rest of the move':
'Gleichen Sie die Reisezeit mit dem Rest des Umzugs aus',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'Ein schnelles Pendeln hilft nur, wenn die Gegend auch zu Ihrem Budget, Ihren Wohnbedürfnissen, Ihren Schulpräferenzen, Ihrer Sicherheitsschwelle, Ihrem Breitbandbedarf und Ihrer Toleranz gegenüber Straßenlärm passt.',
'How travel-time filters should be interpreted':
'Wie Reisezeitfilter interpretiert werden sollten',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Die Reisezeitmodellierung ist nützlich, um Gebiete konsistent zu vergleichen. Bevor Sie sich verpflichten, prüfen Sie die aktuellen Fahrpläne, Störungsmuster, Parkmöglichkeiten, Fahrradbedingungen und Wanderrouten.',
'Why commute filters are combined with property data':
'Warum Pendelfilter mit Immobiliendaten kombiniert werden',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Die Pendelsuche ist am nützlichsten, wenn sie unmögliche Bereiche entfernt und gleichzeitig anzeigt, ob die verbleibenden Optionen erschwinglich und lebenswert sind.',
'Can I compare car, cycling, walking, and public transport?':
'Kann ich Auto, Radfahren, Wandern und öffentliche Verkehrsmittel vergleichen?',
'The product supports multiple travel modes where precomputed destination data is available.':
'Das Produkt unterstützt mehrere Reisemodi, bei denen vorberechnete Zieldaten verfügbar sind.',
'Are travel times exact?': 'Sind die Reisezeiten genau?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'Nein. Behandeln Sie sie als konsistentes Vergleichsmodell und überprüfen Sie dann die tatsächliche Route, bevor Sie eine Betrachtungs- oder Kaufentscheidung treffen.',
'Can I combine commute filters with schools and price?':
'Kann ich Pendelfilter mit Schulen und Preis kombinieren?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Ja. Der Pendelfilter kann mit Immobilienpreis, Größe, Schulen, Breitband, Kriminalität, Ausstattung und Umweltsignalen geschichtet werden.',
'Bristol property search guide': 'Leitfaden zur Immobiliensuche in Bristol',
'A worked example for balancing city access, price, and local context.':
'Ein praktisches Beispiel für den Ausgleich von Stadterreichbarkeit, Preis und lokalem Kontext.',
'Search by commute time': 'Suche nach Pendelzeit',
'Schools and property search': 'Suche nach Schulen und Immobilien',
'Find property search areas with schools and family trade-offs in view':
'Finden Sie Immobiliensuchgebiete mit Blick auf Schulen und Familienkonflikte',
'School property search - Compare postcodes for family moves':
'Suche nach Schulgrundstücken Vergleichen Sie Postleitzahlen für Familienumzüge',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Vergleichen Sie Schulen in der Nähe, Grundstücksgröße, Preise, Parks, Sicherheit, Pendelverkehr und örtliche Annehmlichkeiten, bevor Sie eine Besichtigungsliste erstellen.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Vergleichen Sie die Bewertungen von Ofsted in der Nähe, Bildungskontext, Grundstücksgröße, Budget, Sicherheit, Parks, Pendelverkehr und örtliche Annehmlichkeiten, bevor Sie Ihre Auswahlliste eingrenzen.',
'Filter for nearby school quality alongside housing requirements.':
'Filtern Sie neben den Wohnbedürfnissen auch nach der Qualität einer Schule in der Nähe.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Vergleichen Sie familienfreundliche Kompromisse über unbekannte Postleitzahlen hinweg.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Nutzen Sie die Karte als Tool für die Auswahlliste, bevor Sie Zulassungen und Einzugsgebiete prüfen.',
'Use school context without ignoring the home':
'Nutzen Sie den schulischen Kontext, ohne das Zuhause zu vernachlässigen',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Beginnen Sie mit der Grundstücksgröße, dem Budget und den Pendelbeschränkungen und berücksichtigen Sie dann die Qualität der nahegelegenen Schule und den lokalen Kontext. Dadurch wird verhindert, dass schulische Suchvorgänge Erschwinglichkeits- oder Alltagsprobleme verbergen.',
'Verify admissions before deciding':
'Überprüfen Sie die Zulassungen, bevor Sie eine Entscheidung treffen',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Schuldaten können auf vielversprechende Gebiete hinweisen, aber Zulassungsregeln und Einzugsgebiete können sich ändern. Bestätigen Sie aktuelle Vereinbarungen mit Schulen und lokalen Behörden.',
'School quality is one part of the shortlist':
'Die Schulqualität ist ein Teil der engeren Auswahl',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Mit Perfect Postcode können Sie die Daten einer nahegelegenen Schule mit den anderen praktischen Einschränkungen vergleichen, die einen Familienumzug beeinflussen: Platz, Preis, Pendelverkehr, Parks, Sicherheit und örtliche Dienstleistungen.',
'Check catchments before making decisions':
'Überprüfen Sie die Einzugsgebiete, bevor Sie Entscheidungen treffen',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'Zulassungsregeln und Einzugsgebietsgrenzen können sich ändern. Verwenden Sie Schuldaten auf Postleitzahlenebene, um vielversprechende Gebiete zu finden, und überprüfen Sie dann die aktuellen Zulassungsdaten bei der Schule oder der örtlichen Behörde.',
'How to treat school filters': 'Wie man Schulfilter behandelt',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Verwenden Sie Schulfilter, um die Recherche einzugrenzen und nicht, um eine Zulassungsberechtigung anzunehmen. Bewertungen, Entfernung, Zulassungskriterien und Schulkapazität sollten anhand aktueller offizieller Quellen überprüft werden.',
'Family trade-offs to compare': 'Familienkompromisse zum Vergleich',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Kombinieren Sie Schulen mit Parks, Straßenlärm, Kriminalität, Grundstücksgröße, Pendelverkehr, Breitband und Preis, damit die Auswahlliste den gesamten Umzug widerspiegelt.',
'Does this show school catchment guarantees?':
'Zeigt dies die Einzugsgebietsgarantien der Schule?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'Nein. Es hilft dabei, vielversprechende Gebiete zu identifizieren, Einzugsgebiete und Zulassungen müssen jedoch bei der Schule oder der örtlichen Behörde überprüft werden.',
'Can I combine school filters with parks and safety?':
'Kann ich Schulfilter mit Parks und Sicherheit kombinieren?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Ja. Die schulbezogene Suche kann mit Kriminalität, Parks, Pendelverkehr, Preis, Grundstücksgröße und lokalen Dienstleistungen kombiniert werden.',
'Is Ofsted the only school signal?': 'Ist Ofsted das einzige Schulsignal?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'Kein einzelnes Ergebnis sollte über einen Zug entscheiden. Nutzen Sie die Karte als Ausgangspunkt und sehen Sie sich dann die aktuellen Schulinformationen im Detail an.',
'See where education, property, transport, and environment data comes from.':
'Sehen Sie, woher Bildungs-, Immobilien-, Transport- und Umweltdaten stammen.',
'Explore school-aware searches': 'Entdecken Sie schulbezogene Suchanfragen',
'Check postcode data before you book a viewing':
'Überprüfen Sie die Postleitzahlendaten, bevor Sie eine Besichtigung buchen',
'Postcode checker - Property, crime, broadband, noise and schools':
'Postleitzahlenprüfer Eigentum, Kriminalität, Breitband, Lärm und Schulen',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Überprüfen Sie Immobilienpreise auf Postleitzahlenebene, EPC-Daten, Kriminalität, Breitband, Straßenlärm, Schulen, Gemeindesteuer, Annehmlichkeiten und Reisezeitkontext.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Überprüfen Sie Immobilienpreise, EPC-Kontext, Kriminalität, Breitband, Straßenlärm, örtliche Annehmlichkeiten, Schulen, Benachteiligung, Gemeindesteuer und Reisezeitdaten auf einer Postleitzahlenkarte.',
'Check multiple local signals before visiting a street.':
'Überprüfen Sie mehrere örtliche Signale, bevor Sie eine Straße besuchen.',
'Use official and open datasets rather than reputation alone.':
'Nutzen Sie offizielle und offene Datensätze und nicht nur die Reputation.',
'Compare postcodes consistently across England.':
'Vergleichen Sie Postleitzahlen einheitlich in ganz England.',
'Check the street before spending a viewing slot':
'Überprüfen Sie die Straße, bevor Sie einen Besichtigungstermin verbringen',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Nutzen Sie den Postleitzahlen-Checker, um die Preisentwicklung, den lokalen Kontext, die Ausstattung, Schulen und Umgebungssignale zu überprüfen, bevor Sie sich Zeit für einen Besuch nehmen.',
'Compare neighbouring postcodes': 'Vergleichen Sie benachbarte Postleitzahlen',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Wenn eine Postleitzahl vielversprechend aussieht, vergleichen Sie benachbarte Gebiete mit denselben Filtern. Dies zeigt oft, ob ein Problem straßenspezifisch ist oder Teil eines umfassenderen Musters ist.',
'Useful before and alongside listing portals': 'Nützlich vor und neben Immobilienportalen',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Die Auflistungsfotos verraten Ihnen selten genug über die umliegende Straße. Perfect Postcode bietet Ihnen eine evidenzbasierte Postleitzahlenprüfung, bevor Sie sich Zeit für eine Besichtigung nehmen.',
'A screening tool, not professional advice':
'Ein Screening-Tool, keine professionelle Beratung',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'Die Daten dienen der Auswahl und dem Vergleich. Für jeden Kauf sind weiterhin aktuelle Auflistungsprüfungen, rechtliche Due-Diligence-Prüfungen, Hochwasserrecherchen, Kreditgeberanforderungen und Umfrageergebnisse erforderlich.',
'What a postcode check can catch': 'Was ein Postleitzahlen-Check fangen kann',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'Eine Postleitzahlenprüfung kann Preiskontext, Umweltsignale, nahegelegene Annehmlichkeiten und andere lokale Indikatoren aufdecken, die in einem Eintrag leicht übersehen werden.',
'What a postcode check cant prove': 'Was eine Postleitzahlenprüfung nicht beweisen kann',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Es kann nicht den Zustand eines Hauses, die zukünftige Entwicklung, den Rechtstitel, die Anforderungen des Kreditgebers oder die aktuelle Erfahrung auf Straßenniveau bestätigen. Diese benötigen noch direkte Kontrollen.',
'Can I use the checker before a viewing?':
'Kann ich den Checker vor einer Besichtigung nutzen?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Ja. Das ist einer der Hauptanwendungsfälle: Überprüfen Sie zuerst die Postleitzahl und entscheiden Sie dann, ob sich die Besichtigung lohnt.',
'Does the checker include exact property condition?':
'Enthält der Prüfer den genauen Zustand der Immobilie?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Nein. Für den Immobilienzustand sind detaillierte Angaben zur Auflistung, Gutachten und eine direkte Besichtigung erforderlich.',
'Can I compare multiple postcodes?': 'Kann ich mehrere Postleitzahlen vergleichen?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Ja. Die Karte ist für einen konsistenten Vergleich über mehrere Postleitzahlen hinweg konzipiert.',
'Check postcodes on the map': 'Überprüfen Sie die Postleitzahlen auf der Karte',
'Regional guide': 'Regionalführer',
'How to compare Birmingham postcodes before a property search':
'So vergleichen Sie die Postleitzahlen von Birmingham vor einer Immobiliensuche',
'Birmingham property search - Compare postcodes by price and commute':
'Immobiliensuche in Birmingham Vergleichen Sie Postleitzahlen nach Preis und Arbeitsweg',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Nutzen Sie Daten auf Postleitzahlenebene, um Immobilienpreise in Birmingham, Kompromisse beim Pendeln, Schulen, Kriminalität, Breitband und örtliche Annehmlichkeiten vor Besichtigungen zu vergleichen.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'Die Suche in Birmingham kann sich von Straße zu Straße schnell ändern. Nutzen Sie Beweise auf Postleitzahlenebene, um Budget, Pendelverkehr, Schulen, Lärm, Kriminalität und örtliche Dienstleistungen zu vergleichen, bevor Sie entscheiden, wo Sie Einträge ansehen möchten.',
'Start with commute corridors': 'Beginnen Sie mit Pendelkorridoren',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Wählen Sie das gewünschte Ziel aus, z. B. einen Arbeitsplatz, einen Bahnhof, eine Universität oder ein Krankenhaus, und vergleichen Sie dann erreichbare Postleitzahlen nach Verkehrsmittel und Reisezeitspanne.',
'Use commute time as a hard filter before judging price.':
'Nutzen Sie die Pendelzeit als harten Filter, bevor Sie den Preis beurteilen.',
'Compare public transport with car, cycling, or walking where available.':
'Vergleichen Sie öffentliche Verkehrsmittel mit dem Auto, dem Fahrrad oder zu Fuß, sofern verfügbar.',
'Check the route manually before booking viewings.':
'Überprüfen Sie die Route manuell, bevor Sie Besichtigungen buchen.',
'Compare price with property type': 'Vergleichen Sie den Preis mit der Immobilienart',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Allein die Medianpreise können irreführend sein, wenn sich der Immobilienmix vor Ort ändert. Fügen Sie Filter für Immobilienart, Grundstücksfläche, Grundfläche und Preis hinzu, damit ähnliche Flächen fair verglichen werden können.',
'Keep family and environment trade-offs visible':
'Halten Sie die Kompromisse zwischen Familie und Umwelt sichtbar',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Überlagern Sie den Grundstücksfilter mit Schulkontext, Parks, Straßenlärm, Breitband und Kriminalitätssignalen. Das erleichtert die Entscheidung, welche Kompromisse akzeptabel sind.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Kann mir Perfect Postcode die beste Gegend in Birmingham nennen?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Kein Tool kann für jeden Käufer den besten Bereich bestimmen. Es hilft Ihnen, Postleitzahlen mit Ihren eigenen Einschränkungen zu vergleichen, sodass Sie eine bessere Auswahlliste erstellen können.',
'Should I use this instead of local knowledge?':
'Sollte ich dies anstelle von lokalem Wissen verwenden?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Nein. Verwenden Sie es, um Kandidaten zu finden und zu vergleichen und sie dann durch Besuche, Beratung vor Ort, Auflistungen und offizielle Überprüfungen zu validieren.',
'Compare price patterns before looking at live listings.':
'Vergleichen Sie Preismuster, bevor Sie sich Live-Angebote ansehen.',
'Search by travel time and then layer on property requirements.':
'Suchen Sie nach Reisezeit und fügen Sie dann die Immobilienanforderungen hinzu.',
'Understand how to interpret filters and limitations.':
'Verstehen Sie, wie Sie Filter und Einschränkungen interpretieren.',
'Compare Birmingham postcodes': 'Vergleichen Sie die Postleitzahlen von Birmingham',
'How to compare Manchester postcodes for a property search':
'So vergleichen Sie die Postleitzahlen von Manchester für eine Immobiliensuche',
'Manchester property search - Compare postcodes before viewing':
'Immobiliensuche in Manchester Vergleichen Sie die Postleitzahlen vor der Besichtigung',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Vergleichen Sie Postleitzahlen im Raum Manchester nach Budget, Pendlerweg, Immobilientyp, Schulen, Breitband, Kriminalität, Lärm und Ausstattung, bevor Sie Besichtigungen buchen.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'Eine Suche im Raum Manchester kann Optionen im Stadtzentrum, in Vorstädten und für Pendler umfassen. Perfect Postcode trägt dazu bei, dass jede Postleitzahl mit den gleichen Grundstücks- und Alltagsbeschränkungen vergleichbar bleibt.',
'Use travel time to define the real search area':
'Nutzen Sie die Reisezeit, um das tatsächliche Suchgebiet zu definieren',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Beginnen Sie mit den Zielen, die wichtig sind, und vergleichen Sie dann die erreichbaren Postleitzahlen, anstatt davon auszugehen, dass jeder Ort in der Nähe die gleiche praktische Anfahrt hat.',
'Compare housing requirements before lifestyle preferences':
'Vergleichen Sie zunächst die Wohnanforderungen und dann Ihre Lebensstilpräferenzen',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Filtern Sie nach Immobilientyp, Grundfläche, Nutzungsdauer und Preis, bevor Sie die Ausstattung beurteilen. Dadurch bleibt die Auswahlliste auf Häusern beschränkt, die realistisch funktionieren könnten.',
'Check local context consistently': 'Überprüfen Sie den lokalen Kontext konsequent',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Nutzen Sie Breitband, Kriminalität, Straßenlärm, Parks, Schulen und Einrichtungen als vergleichbare Signale. Anschließend validieren Sie die stärksten Kandidaten mit aktuellen lokalen Prüfungen.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Kann ich Vororte von Manchester mit Postleitzahlen im Stadtzentrum vergleichen?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Ja. Verwenden Sie für beide die gleichen Budget-, Immobilien-, Pendler- und lokalen Kontextfilter, damit Kompromisse sichtbar bleiben.',
'Does this include live listings?': 'Umfasst dies Live-Einträge?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Nein. Verwenden Sie es, um zu entscheiden, wo Sie suchen möchten, und nutzen Sie dann die Angebotsportale für aktuelle zum Verkauf stehende Häuser.',
'Move from a broad search brief to specific postcode candidates.':
'Wechseln Sie von einem breiten Suchauftrag zu bestimmten Postleitzahlkandidaten.',
'Data sources': 'Datenquellen',
'Review the datasets used for property and local-context comparison.':
'Überprüfen Sie die Datensätze, die für den Eigenschafts- und lokalen Kontextvergleich verwendet werden.',
'Check a single postcode before arranging a viewing.':
'Überprüfen Sie eine einzelne Postleitzahl, bevor Sie eine Besichtigung vereinbaren.',
'Compare Manchester postcodes': 'Vergleichen Sie die Postleitzahlen von Manchester',
'How to compare Bristol postcodes before a property search':
'So vergleichen Sie die Postleitzahlen von Bristol vor einer Immobiliensuche',
'Bristol property search - Compare postcodes by commute and price':
'Immobiliensuche in Bristol Vergleichen Sie Postleitzahlen nach Pendelweg und Preis',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Vergleichen Sie die Postleitzahlen von Bristol nach Preis, Pendlerweg, Grundstücksgröße, Schulen, Breitband, Kriminalität, Straßenlärm, Parks und Annehmlichkeiten vor der Besichtigung.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Bei Suchanfragen in Bristol müssen oft scharfe Kompromisse zwischen Preis, Reisezeit, Grundstücksgröße und Nachbarschaftskontext eingegangen werden. Ein Postleitzahlenvergleich macht diese Kompromisse sichtbar.',
'Make commute constraints explicit': 'Machen Sie Pendelbeschränkungen explizit',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'Wenn die Erreichbarkeit des Zentrums, eines Bahnhofs, eines Krankenhauses, einer Universität oder eines Gewerbegebiets von Bedeutung ist, verwenden Sie zunächst Reisezeitfilter und vergleichen Sie dann die übrigen Postleitzahlen anhand der Grundstücksdaten.',
'Compare value, not just headline price': 'Vergleichen Sie den Wert, nicht nur den Gesamtpreis',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Nutzen Sie Preis-, Immobilientyp- und Flächenfilter gemeinsam. Dies hilft dabei, kostengünstigere Gebiete von Gebieten zu unterscheiden, in denen sich lediglich kleinere oder andere Häuser befinden.',
'Screen environmental and local-service signals':
'Überprüfen Sie Umgebungs- und lokale Servicesignale',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Straßenlärm, Parks, Breitband, Kriminalität und Annehmlichkeiten können sich darauf auswirken, ob eine Immobilie im Alltag funktioniert. Nutzen Sie sie als Auswahlkriterien, bevor Sie Besichtigungen buchen.',
'Can I use this for commuter villages around Bristol?':
'Kann ich dies für Pendlerdörfer rund um Bristol nutzen?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Ja, sofern die entsprechenden Postleitzahlen- und Reisezeitdaten verfügbar sind. Überprüfen Sie Routen und Dienste immer manuell, bevor Sie eine Entscheidung treffen.',
'Can this tell me whether a listing is good value?':
'Kann mir das sagen, ob ein Eintrag ein gutes Preis-Leistungs-Verhältnis bietet?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'Es kann einen gebietsbezogenen Kontext bieten, aber für ein bestimmtes Angebot sind dennoch vergleichbare Verkäufe, Zustandsprüfungen, Umfrageergebnisse und gegebenenfalls professionelle Beratung erforderlich.',
'Search by reachable postcodes before refining by budget and local context.':
'Suchen Sie nach erreichbaren Postleitzahlen, bevor Sie die Suche nach Budget und lokalem Kontext verfeinern.',
'Understand price patterns before setting listing alerts.':
'Verstehen Sie Preismuster, bevor Sie Angebotsbenachrichtigungen einrichten.',
'Privacy and security': 'Privatsphäre und Sicherheit',
'How account and saved-search data is handled in the product.':
'Wie Konto- und gespeicherte Suchdaten im Produkt verarbeitet werden.',
'Compare Bristol postcodes': 'Vergleichen Sie die Postleitzahlen von Bristol',
'Trust and coverage': 'Vertrauen und Abdeckung',
'Perfect Postcode data sources and coverage':
'Perfekte Postleitzahlen-Datenquellen und -Abdeckung',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfekte Postleitzahlen-Datenquellen Immobilien, Schulen, Pendler und lokaler Kontext',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Überprüfen Sie die von Perfect Postcode verwendeten öffentlichen und offiziellen Datensätze, einschließlich Immobilienpreise, EPC, Schulen, Kriminalität, Breitband, Lärm und Reisezeitkontext.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode kombiniert Immobilien-, Transport-, Bildungs-, Umwelt- und lokale Dienstleistungsdatensätze, sodass Käufer Postleitzahlen konsistent vergleichen können. Auf dieser Seite wird erläutert, wozu die Daten dienen und wo sie überprüft werden sollten.',
'Property and housing context': 'Immobilien- und Wohnkontext',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'Das Produkt nutzt Immobilientransaktions- und Wohnungskontextdatensätze, um Filter wie Verkaufspreis, Immobilientyp, Besitz, Grundfläche, Energieeffizienz und geschätzten aktuellen Wert zu unterstützen.',
'Use these fields to compare areas, not as a formal valuation.':
'Verwenden Sie diese Felder zum Vergleichen von Bereichen, nicht als formale Bewertung.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Überprüfen Sie vor dem Kauf aktuelle Angebote, Titelinformationen, Kreditgeberanforderungen und Umfrageergebnisse.',
'Schools, safety, broadband, and environment': 'Schulen, Sicherheit, Breitband und Umwelt',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Lokale Kontextfilter helfen beim Vergleich von Postleitzahlen anhand von Signalen, die das tägliche Leben beeinflussen. Sie sollten als Screening-Daten behandelt und für Entscheidungen mit aktuellen offiziellen Quellen verglichen werden.',
'Travel-time data': 'Reisezeitdaten',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Reisezeitfilter sind für einen konsistenten Gebietsvergleich konzipiert. Bevor Sie sich für ein Gebiet entscheiden, sollten Sie die Verfügbarkeit der Route, Störungen, Parkmöglichkeiten, Zugang zu Fuß und Fahrplandetails überprüfen.',
'Why does coverage focus on England?':
'Warum konzentriert sich die Berichterstattung auf England?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Mehrere Kerndatensätze zu Eigentum, Bildung und lokalem Kontext sind gebietsspezifisch. Die Berichterstattung über England sorgt für konsistentere Vergleiche.',
'How should I handle stale or missing data?':
'Wie gehe ich mit veralteten oder fehlenden Daten um?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Nutzen Sie die Karte als Shortlist-Tool. Wenn eine Postleitzahl von Bedeutung ist, überprüfen Sie die neuesten Angaben anhand aktueller offizieller Quellen und direkt vor Ort.',
'How filters and comparisons should be interpreted.':
'Wie Filter und Vergleiche interpretiert werden sollten.',
'Review postcode-level context before a viewing.':
'Überprüfen Sie vor einer Besichtigung den Kontext auf Postleitzahlenebene.',
'How saved searches and account data are handled.':
'Wie mit gespeicherten Suchanfragen und Kontodaten umgegangen wird.',
'How to use the map': 'So verwenden Sie die Karte',
'Methodology for postcode property research':
'Methodik für die Immobilienrecherche nach Postleitzahlen',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfekte Postleitzahlen-Methodik So interpretieren Sie Postleitzahlen-Eigenschaftsdaten',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Verstehen Sie, wie Sie Postleitzahlenfilter, Immobilienschätzungen, Reisezeitdaten, Schulkontext und lokale Signale als Tool für die Auswahlliste beim Hauskauf verwenden.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode wurde entwickelt, um die Auswahl von Gebieten evidenzbasierter zu gestalten. Es ersetzt nicht Immobilienmakler, Gutachter, Immobilienmakler, Kreditgeber, Schulzulassungsteams oder örtliche Behördenkontrollen.',
'Start with hard constraints': 'Beginnen Sie mit harten Einschränkungen',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Beginnen Sie mit nicht verhandelbaren Faktoren wie Budget, Immobilientyp, Grundfläche, Pendelzeit und wesentlichen Dienstleistungen. Dadurch werden unmögliche Postleitzahlen entfernt, bevor weichere Präferenzen berücksichtigt werden.',
'Use colour layers for trade-offs': 'Verwenden Sie Farbebenen für Kompromisse',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'Färben Sie die verbleibende Karte nach dem Filtern jeweils nach einem Signal ein: Preis pro Quadratmeter, Straßenlärm, Schulkontext, Pendelzeit, Breitband oder Kriminalität. Dies erleichtert die Diskussion von Kompromissen.',
'Measure whats working': 'Messen Sie, was funktioniert',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Verwenden Sie die Search Console und Analysen, um zu verfolgen, welche öffentlichen Seiten indiziert werden, welche Abfragen Impressionen erzeugen und welche Seiten Besucher in Dashboard-Erkundungen umwandeln. Überprüfen Sie die Core Web Vitals nach jeder wesentlichen Frontend-Änderung.',
'Can the tool choose the right postcode for me?':
'Kann das Tool die richtige Postleitzahl für mich auswählen?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Nein. Es hilft, Beweise zu vergleichen und den Suchbereich zu verkleinern. Die endgültige Entscheidung erfordert direkte Besuche, aktuelle Einträge, rechtliche Prüfungen, Umfragen und ein persönliches Urteil.',
'How should I use estimates?': 'Wie verwende ich Schätzungen?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Nutzen Sie Schätzungen als Vergleichssignale, nicht als professionelle Wertermittlung oder Kaufberatung.',
'Understand where key filters come from.': 'Verstehen Sie, woher Schlüsselfilter kommen.',
'Apply the methodology to price-led area comparison.':
'Wenden Sie die Methodik auf einen preisorientierten Flächenvergleich an.',
'Apply the methodology to destination-led search.':
'Wenden Sie die Methodik auf die zielorientierte Suche an.',
Trust: 'Vertrauen',
'Privacy and security for saved property searches':
'Datenschutz und Sicherheit für gespeicherte Immobiliensuchen',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfekte Privatsphäre und Sicherheit für Postleitzahlen Gespeicherte Suchanfragen und Kontodaten',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Erfahren Sie, wie Perfect Postcode gespeicherte Suchanfragen, Kontodaten und Immobilienrecherche-Workflows unter Berücksichtigung von Datenschutz und Sicherheit behandelt.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Eine Immobilienrecherche kann persönliche Prioritäten, Budgets und Standorte aufdecken. Das Produkt trennt öffentliche SEO-Seiten von reinen Kontobereichen und markiert private Dashboard-/Kontorouten als Noindex.',
'Public pages and private areas are separated':
'Öffentliche Seiten und private Bereiche werden getrennt',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'Marketing-, Methodik-, Leitfaden- und Supportseiten sind indexierbar. Dashboard, Konto, gespeicherte Suchen, Einladungen und Einladungsrouten werden gegebenenfalls als „noindex“ markiert oder für den Crawler-Zugriff blockiert.',
'Saved search data is account-scoped': 'Gespeicherte Suchdaten sind kontobezogen',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Gespeicherte Suchen und Eigenschaften sind für die Verwendung durch angemeldete Benutzer vorgesehen. Sie sind nicht in der öffentlichen Sitemap enthalten und sollten nicht als öffentlicher Inhalt gecrawlt werden können.',
'Search measurement without exposing private data':
'Suchmessung ohne Offenlegung privater Daten',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'Die SEO-Messung sollte auf öffentlichen Seiten mithilfe aggregierter Analysen und Search Console-Daten erfolgen. Private Abfrageparameter und Kontoansichten sollten nicht zu indexierbaren Zielseiten werden.',
'Are saved searches listed in the sitemap?':
'Werden gespeicherte Suchanfragen in der Sitemap aufgeführt?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Nein. Öffentliche SEO-Seiten werden aufgelistet. Konto- und gespeicherte Suchrouten werden absichtlich ausgeschlossen.',
'Can private dashboard URLs appear in search?':
'Können private Dashboard-URLs in der Suche angezeigt werden?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Sie sollten nicht indiziert werden. Der Server markiert private Routen mit Noindex und die Sitemap listet nur öffentliche Seiten auf.',
'How to use public postcode data responsibly.':
'So gehen Sie verantwortungsvoll mit öffentlichen Postleitzahldaten um.',
'What data powers the public comparisons.':
'Welche Daten basieren auf den öffentlichen Vergleichen?',
'Explore public postcode-search workflows.':
'Entdecken Sie öffentliche Workflows zur Postleitzahlensuche.',
},
};
export default de;

View file

@ -105,6 +105,463 @@ const en = {
relatedPages: 'Related pages',
relatedPagesDesc:
'Follow these internal links to compare the same property-search workflow from another angle.',
pages: {
'Property price map': 'Property price map',
'Compare property prices across every postcode in England':
'Compare property prices across every postcode in England',
'Property price map for England - Compare postcodes before viewing':
'Property price map for England - Compare postcodes before viewing',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.',
'Screen historical sale prices and current-value estimates by postcode.':
'Screen historical sale prices and current-value estimates by postcode.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Compare value with commute, schools, broadband, crime, noise, and amenities.',
'Build a shortlist before spending weekends on viewings.':
'Build a shortlist before spending weekends on viewings.',
'Find postcodes that fit the budget before listings appear':
'Find postcodes that fit the budget before listings appear',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Compare nearby postcodes using the same criteria instead of relying on area reputation.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Use the results as a shortlist for listing alerts, local research, and viewings.',
'Separate cheap from good value': 'Separate cheap from good value',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.',
'Start from area value, not listing availability':
'Start from area value, not listing availability',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.',
'Use prices alongside real constraints': 'Use prices alongside real constraints',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.',
'What the price data is for': 'What the price data is for',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.',
'How to validate a promising area': 'How to validate a promising area',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.',
'Is this a replacement for Rightmove or Zoopla?':
'Is this a replacement for Rightmove or Zoopla?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.',
'Can I compare price with schools or commute time?':
'Can I compare price with schools or commute time?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.',
'Does the map cover all of the UK?': 'Does the map cover all of the UK?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'The current product focuses on England because several core property and postcode datasets are England-specific.',
'Birmingham property search guide': 'Birmingham property search guide',
'A worked example for balancing price, commute, and family trade-offs.':
'A worked example for balancing price, commute, and family trade-offs.',
'Data sources and coverage': 'Data sources and coverage',
'See which datasets sit behind the postcode filters and where they have limits.':
'See which datasets sit behind the postcode filters and where they have limits.',
Methodology: 'Methodology',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Understand how the map is intended to support shortlisting, not replace due diligence.',
'Postcode checker': 'Postcode checker',
'Check one postcode before you spend time on a viewing.':
'Check one postcode before you spend time on a viewing.',
'Explore the property map': 'Explore the property map',
'Postcode property search': 'Postcode property search',
'Find postcodes that match your property search criteria':
'Find postcodes that match your property search criteria',
'Postcode property search - Find areas that match your criteria':
'Postcode property search - Find areas that match your criteria',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.',
'Filter England-wide postcode data from one map.':
'Filter England-wide postcode data from one map.',
'Shortlist unfamiliar areas with comparable evidence.':
'Shortlist unfamiliar areas with comparable evidence.',
'Save and share search areas before booking viewings.':
'Save and share search areas before booking viewings.',
'Turn a broad brief into postcode candidates': 'Turn a broad brief into postcode candidates',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.',
'Relax one constraint at a time': 'Relax one constraint at a time',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.',
'Turn vague areas into specific postcodes': 'Turn vague areas into specific postcodes',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.',
'Keep trade-offs visible': 'Keep trade-offs visible',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.',
'Why postcode-level comparison matters': 'Why postcode-level comparison matters',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.',
'How to use the results': 'How to use the results',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.',
'Can I save a postcode property search?': 'Can I save a postcode property search?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.',
'Can I search without knowing the area?': 'Can I search without knowing the area?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.',
'Are the results live property listings?': 'Are the results live property listings?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.',
'Manchester property search guide': 'Manchester property search guide',
'A regional guide for narrowing a broad search around Greater Manchester.':
'A regional guide for narrowing a broad search around Greater Manchester.',
'Start a postcode search': 'Start a postcode search',
'Commute property search': 'Commute property search',
'Search for places to live by commute time': 'Search for places to live by commute time',
'Commute property search - Find places to live by travel time':
'Commute property search - Find places to live by travel time',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.',
'Compare reachable postcodes by realistic travel-time bands.':
'Compare reachable postcodes by realistic travel-time bands.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Search by destination first, then filter for property and neighbourhood fit.',
'Avoid areas that look close on a map but fail the daily journey.':
'Avoid areas that look close on a map but fail the daily journey.',
'Start with the destination that matters': 'Start with the destination that matters',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.',
'Compare the commute against the rest of daily life':
'Compare the commute against the rest of daily life',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.',
'Commute from postcodes, not just place names':
'Commute from postcodes, not just place names',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.',
'Balance journey time with the rest of the move':
'Balance journey time with the rest of the move',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.',
'How travel-time filters should be interpreted':
'How travel-time filters should be interpreted',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.',
'Why commute filters are combined with property data':
'Why commute filters are combined with property data',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.',
'Can I compare car, cycling, walking, and public transport?':
'Can I compare car, cycling, walking, and public transport?',
'The product supports multiple travel modes where precomputed destination data is available.':
'The product supports multiple travel modes where precomputed destination data is available.',
'Are travel times exact?': 'Are travel times exact?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.',
'Can I combine commute filters with schools and price?':
'Can I combine commute filters with schools and price?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.',
'Bristol property search guide': 'Bristol property search guide',
'A worked example for balancing city access, price, and local context.':
'A worked example for balancing city access, price, and local context.',
'Search by commute time': 'Search by commute time',
'Schools and property search': 'Schools and property search',
'Find property search areas with schools and family trade-offs in view':
'Find property search areas with schools and family trade-offs in view',
'School property search - Compare postcodes for family moves':
'School property search - Compare postcodes for family moves',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.',
'Filter for nearby school quality alongside housing requirements.':
'Filter for nearby school quality alongside housing requirements.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Compare family-friendly trade-offs across unfamiliar postcodes.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Use the map as a shortlist tool before checking admissions and catchments.',
'Use school context without ignoring the home':
'Use school context without ignoring the home',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.',
'Verify admissions before deciding': 'Verify admissions before deciding',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.',
'School quality is one part of the shortlist': 'School quality is one part of the shortlist',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.',
'Check catchments before making decisions': 'Check catchments before making decisions',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.',
'How to treat school filters': 'How to treat school filters',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.',
'Family trade-offs to compare': 'Family trade-offs to compare',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.',
'Does this show school catchment guarantees?': 'Does this show school catchment guarantees?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.',
'Can I combine school filters with parks and safety?':
'Can I combine school filters with parks and safety?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.',
'Is Ofsted the only school signal?': 'Is Ofsted the only school signal?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.',
'See where education, property, transport, and environment data comes from.':
'See where education, property, transport, and environment data comes from.',
'Explore school-aware searches': 'Explore school-aware searches',
'Check postcode data before you book a viewing':
'Check postcode data before you book a viewing',
'Postcode checker - Property, crime, broadband, noise and schools':
'Postcode checker - Property, crime, broadband, noise and schools',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.',
'Check multiple local signals before visiting a street.':
'Check multiple local signals before visiting a street.',
'Use official and open datasets rather than reputation alone.':
'Use official and open datasets rather than reputation alone.',
'Compare postcodes consistently across England.':
'Compare postcodes consistently across England.',
'Check the street before spending a viewing slot':
'Check the street before spending a viewing slot',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.',
'Compare neighbouring postcodes': 'Compare neighbouring postcodes',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.',
'Useful before and alongside listing portals': 'Useful before and alongside listing portals',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.',
'A screening tool, not professional advice': 'A screening tool, not professional advice',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.',
'What a postcode check can catch': 'What a postcode check can catch',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.',
'What a postcode check cant prove': 'What a postcode check cant prove',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.',
'Can I use the checker before a viewing?': 'Can I use the checker before a viewing?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.',
'Does the checker include exact property condition?':
'Does the checker include exact property condition?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'No. Property condition requires listing details, surveys, and direct inspection.',
'Can I compare multiple postcodes?': 'Can I compare multiple postcodes?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Yes. The map is designed for consistent comparison across postcodes.',
'Check postcodes on the map': 'Check postcodes on the map',
'Regional guide': 'Regional guide',
'How to compare Birmingham postcodes before a property search':
'How to compare Birmingham postcodes before a property search',
'Birmingham property search - Compare postcodes by price and commute':
'Birmingham property search - Compare postcodes by price and commute',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.',
'Start with commute corridors': 'Start with commute corridors',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.',
'Use commute time as a hard filter before judging price.':
'Use commute time as a hard filter before judging price.',
'Compare public transport with car, cycling, or walking where available.':
'Compare public transport with car, cycling, or walking where available.',
'Check the route manually before booking viewings.':
'Check the route manually before booking viewings.',
'Compare price with property type': 'Compare price with property type',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.',
'Keep family and environment trade-offs visible':
'Keep family and environment trade-offs visible',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Can Perfect Postcode tell me the best area in Birmingham?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.',
'Should I use this instead of local knowledge?':
'Should I use this instead of local knowledge?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.',
'Compare price patterns before looking at live listings.':
'Compare price patterns before looking at live listings.',
'Search by travel time and then layer on property requirements.':
'Search by travel time and then layer on property requirements.',
'Understand how to interpret filters and limitations.':
'Understand how to interpret filters and limitations.',
'Compare Birmingham postcodes': 'Compare Birmingham postcodes',
'How to compare Manchester postcodes for a property search':
'How to compare Manchester postcodes for a property search',
'Manchester property search - Compare postcodes before viewing':
'Manchester property search - Compare postcodes before viewing',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.',
'Use travel time to define the real search area':
'Use travel time to define the real search area',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.',
'Compare housing requirements before lifestyle preferences':
'Compare housing requirements before lifestyle preferences',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.',
'Check local context consistently': 'Check local context consistently',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Can I compare Manchester suburbs with city-centre postcodes?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.',
'Does this include live listings?': 'Does this include live listings?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'No. Use it to decide where to search, then use listing portals for current homes for sale.',
'Move from a broad search brief to specific postcode candidates.':
'Move from a broad search brief to specific postcode candidates.',
'Data sources': 'Data sources',
'Review the datasets used for property and local-context comparison.':
'Review the datasets used for property and local-context comparison.',
'Check a single postcode before arranging a viewing.':
'Check a single postcode before arranging a viewing.',
'Compare Manchester postcodes': 'Compare Manchester postcodes',
'How to compare Bristol postcodes before a property search':
'How to compare Bristol postcodes before a property search',
'Bristol property search - Compare postcodes by commute and price':
'Bristol property search - Compare postcodes by commute and price',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.',
'Make commute constraints explicit': 'Make commute constraints explicit',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.',
'Compare value, not just headline price': 'Compare value, not just headline price',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.',
'Screen environmental and local-service signals':
'Screen environmental and local-service signals',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.',
'Can I use this for commuter villages around Bristol?':
'Can I use this for commuter villages around Bristol?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.',
'Can this tell me whether a listing is good value?':
'Can this tell me whether a listing is good value?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.',
'Search by reachable postcodes before refining by budget and local context.':
'Search by reachable postcodes before refining by budget and local context.',
'Understand price patterns before setting listing alerts.':
'Understand price patterns before setting listing alerts.',
'Privacy and security': 'Privacy and security',
'How account and saved-search data is handled in the product.':
'How account and saved-search data is handled in the product.',
'Compare Bristol postcodes': 'Compare Bristol postcodes',
'Trust and coverage': 'Trust and coverage',
'Perfect Postcode data sources and coverage': 'Perfect Postcode data sources and coverage',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode data sources - Property, schools, commute and local context',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.',
'Property and housing context': 'Property and housing context',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.',
'Use these fields to compare areas, not as a formal valuation.':
'Use these fields to compare areas, not as a formal valuation.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Check current listings, title information, lender requirements, and survey results before buying.',
'Schools, safety, broadband, and environment': 'Schools, safety, broadband, and environment',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.',
'Travel-time data': 'Travel-time data',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.',
'Why does coverage focus on England?': 'Why does coverage focus on England?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.',
'How should I handle stale or missing data?': 'How should I handle stale or missing data?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.',
'How filters and comparisons should be interpreted.':
'How filters and comparisons should be interpreted.',
'Review postcode-level context before a viewing.':
'Review postcode-level context before a viewing.',
'How saved searches and account data are handled.':
'How saved searches and account data are handled.',
'How to use the map': 'How to use the map',
'Methodology for postcode property research': 'Methodology for postcode property research',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode methodology - How to interpret postcode property data',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.',
'Start with hard constraints': 'Start with hard constraints',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.',
'Use colour layers for trade-offs': 'Use colour layers for trade-offs',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.',
'Measure whats working': 'Measure whats working',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.',
'Can the tool choose the right postcode for me?':
'Can the tool choose the right postcode for me?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.',
'How should I use estimates?': 'How should I use estimates?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Use estimates as comparison signals, not as professional valuations or purchase advice.',
'Understand where key filters come from.': 'Understand where key filters come from.',
'Apply the methodology to price-led area comparison.':
'Apply the methodology to price-led area comparison.',
'Apply the methodology to destination-led search.':
'Apply the methodology to destination-led search.',
Trust: 'Trust',
'Privacy and security for saved property searches':
'Privacy and security for saved property searches',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode privacy and security - Saved searches and account data',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.',
'Public pages and private areas are separated':
'Public pages and private areas are separated',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.',
'Saved search data is account-scoped': 'Saved search data is account-scoped',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.',
'Search measurement without exposing private data':
'Search measurement without exposing private data',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.',
'Are saved searches listed in the sitemap?': 'Are saved searches listed in the sitemap?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.',
'Can private dashboard URLs appear in search?':
'Can private dashboard URLs appear in search?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.',
'How to use public postcode data responsibly.':
'How to use public postcode data responsibly.',
'What data powers the public comparisons.': 'What data powers the public comparisons.',
'Explore public postcode-search workflows.': 'Explore public postcode-search workflows.',
},
},
// ── Auth Modal ─────────────────────────────────────
@ -561,11 +1018,14 @@ const en = {
learnPage: {
faq: 'FAQ',
dataSources: 'Data Sources',
articles: 'Articles',
support: 'Support',
dataSourcesIntro:
'This application combines {{count}} open datasets covering property prices, energy performance, transport, demographics, crime, environment, and more.',
faqIntro:
'Whether youre narrowing a first-time buyer search, checking an unfamiliar postcode, or building a viewing shortlist, heres how Perfect Postcode helps you work out where to look.',
articlesIntro:
'Browse the public guides for property search, commute, schools, postcode checks, regional comparisons, data coverage, methodology, and privacy.',
supportIntro: 'Have a question? Check our FAQ or reach out to us directly.',
source: 'Source:',
optOut: 'Opt out of public disclosure',
@ -1114,459 +1574,6 @@ const en = {
' years': ' years',
' rooms': ' rooms',
},
seo: {
'Property price map': 'Property price map',
'Compare property prices across every postcode in England':
'Compare property prices across every postcode in England',
'Property price map for England - Compare postcodes before viewing':
'Property price map for England - Compare postcodes before viewing',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.',
'Screen historical sale prices and current-value estimates by postcode.':
'Screen historical sale prices and current-value estimates by postcode.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Compare value with commute, schools, broadband, crime, noise, and amenities.',
'Build a shortlist before spending weekends on viewings.':
'Build a shortlist before spending weekends on viewings.',
'Find postcodes that fit the budget before listings appear':
'Find postcodes that fit the budget before listings appear',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Compare nearby postcodes using the same criteria instead of relying on area reputation.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Use the results as a shortlist for listing alerts, local research, and viewings.',
'Separate cheap from good value': 'Separate cheap from good value',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.',
'Start from area value, not listing availability':
'Start from area value, not listing availability',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.',
'Use prices alongside real constraints': 'Use prices alongside real constraints',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.',
'What the price data is for': 'What the price data is for',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.',
'How to validate a promising area': 'How to validate a promising area',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.',
'Is this a replacement for Rightmove or Zoopla?':
'Is this a replacement for Rightmove or Zoopla?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.',
'Can I compare price with schools or commute time?':
'Can I compare price with schools or commute time?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.',
'Does the map cover all of the UK?': 'Does the map cover all of the UK?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'The current product focuses on England because several core property and postcode datasets are England-specific.',
'Birmingham property search guide': 'Birmingham property search guide',
'A worked example for balancing price, commute, and family trade-offs.':
'A worked example for balancing price, commute, and family trade-offs.',
'Data sources and coverage': 'Data sources and coverage',
'See which datasets sit behind the postcode filters and where they have limits.':
'See which datasets sit behind the postcode filters and where they have limits.',
Methodology: 'Methodology',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Understand how the map is intended to support shortlisting, not replace due diligence.',
'Postcode checker': 'Postcode checker',
'Check one postcode before you spend time on a viewing.':
'Check one postcode before you spend time on a viewing.',
'Explore the property map': 'Explore the property map',
'Postcode property search': 'Postcode property search',
'Find postcodes that match your property search criteria':
'Find postcodes that match your property search criteria',
'Postcode property search - Find areas that match your criteria':
'Postcode property search - Find areas that match your criteria',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.',
'Filter England-wide postcode data from one map.':
'Filter England-wide postcode data from one map.',
'Shortlist unfamiliar areas with comparable evidence.':
'Shortlist unfamiliar areas with comparable evidence.',
'Save and share search areas before booking viewings.':
'Save and share search areas before booking viewings.',
'Turn a broad brief into postcode candidates': 'Turn a broad brief into postcode candidates',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.',
'Relax one constraint at a time': 'Relax one constraint at a time',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.',
'Turn vague areas into specific postcodes': 'Turn vague areas into specific postcodes',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.',
'Keep trade-offs visible': 'Keep trade-offs visible',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.',
'Why postcode-level comparison matters': 'Why postcode-level comparison matters',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.',
'How to use the results': 'How to use the results',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.',
'Can I save a postcode property search?': 'Can I save a postcode property search?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.',
'Can I search without knowing the area?': 'Can I search without knowing the area?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.',
'Are the results live property listings?': 'Are the results live property listings?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.',
'Manchester property search guide': 'Manchester property search guide',
'A regional guide for narrowing a broad search around Greater Manchester.':
'A regional guide for narrowing a broad search around Greater Manchester.',
'Start a postcode search': 'Start a postcode search',
'Commute property search': 'Commute property search',
'Search for places to live by commute time': 'Search for places to live by commute time',
'Commute property search - Find places to live by travel time':
'Commute property search - Find places to live by travel time',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.',
'Compare reachable postcodes by realistic travel-time bands.':
'Compare reachable postcodes by realistic travel-time bands.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Search by destination first, then filter for property and neighbourhood fit.',
'Avoid areas that look close on a map but fail the daily journey.':
'Avoid areas that look close on a map but fail the daily journey.',
'Start with the destination that matters': 'Start with the destination that matters',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.',
'Compare the commute against the rest of daily life':
'Compare the commute against the rest of daily life',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.',
'Commute from postcodes, not just place names': 'Commute from postcodes, not just place names',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.',
'Balance journey time with the rest of the move':
'Balance journey time with the rest of the move',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.',
'How travel-time filters should be interpreted':
'How travel-time filters should be interpreted',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.',
'Why commute filters are combined with property data':
'Why commute filters are combined with property data',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.',
'Can I compare car, cycling, walking, and public transport?':
'Can I compare car, cycling, walking, and public transport?',
'The product supports multiple travel modes where precomputed destination data is available.':
'The product supports multiple travel modes where precomputed destination data is available.',
'Are travel times exact?': 'Are travel times exact?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.',
'Can I combine commute filters with schools and price?':
'Can I combine commute filters with schools and price?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.',
'Bristol property search guide': 'Bristol property search guide',
'A worked example for balancing city access, price, and local context.':
'A worked example for balancing city access, price, and local context.',
'Search by commute time': 'Search by commute time',
'Schools and property search': 'Schools and property search',
'Find property search areas with schools and family trade-offs in view':
'Find property search areas with schools and family trade-offs in view',
'School property search - Compare postcodes for family moves':
'School property search - Compare postcodes for family moves',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.',
'Filter for nearby school quality alongside housing requirements.':
'Filter for nearby school quality alongside housing requirements.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Compare family-friendly trade-offs across unfamiliar postcodes.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Use the map as a shortlist tool before checking admissions and catchments.',
'Use school context without ignoring the home': 'Use school context without ignoring the home',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.',
'Verify admissions before deciding': 'Verify admissions before deciding',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.',
'School quality is one part of the shortlist': 'School quality is one part of the shortlist',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.',
'Check catchments before making decisions': 'Check catchments before making decisions',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.',
'How to treat school filters': 'How to treat school filters',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.',
'Family trade-offs to compare': 'Family trade-offs to compare',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.',
'Does this show school catchment guarantees?': 'Does this show school catchment guarantees?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.',
'Can I combine school filters with parks and safety?':
'Can I combine school filters with parks and safety?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.',
'Is Ofsted the only school signal?': 'Is Ofsted the only school signal?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.',
'See where education, property, transport, and environment data comes from.':
'See where education, property, transport, and environment data comes from.',
'Explore school-aware searches': 'Explore school-aware searches',
'Check postcode data before you book a viewing':
'Check postcode data before you book a viewing',
'Postcode checker - Property, crime, broadband, noise and schools':
'Postcode checker - Property, crime, broadband, noise and schools',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.',
'Check multiple local signals before visiting a street.':
'Check multiple local signals before visiting a street.',
'Use official and open datasets rather than reputation alone.':
'Use official and open datasets rather than reputation alone.',
'Compare postcodes consistently across England.':
'Compare postcodes consistently across England.',
'Check the street before spending a viewing slot':
'Check the street before spending a viewing slot',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.',
'Compare neighbouring postcodes': 'Compare neighbouring postcodes',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.',
'Useful before and alongside listing portals': 'Useful before and alongside listing portals',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.',
'A screening tool, not professional advice': 'A screening tool, not professional advice',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.',
'What a postcode check can catch': 'What a postcode check can catch',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.',
'What a postcode check cant prove': 'What a postcode check cant prove',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.',
'Can I use the checker before a viewing?': 'Can I use the checker before a viewing?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.',
'Does the checker include exact property condition?':
'Does the checker include exact property condition?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'No. Property condition requires listing details, surveys, and direct inspection.',
'Can I compare multiple postcodes?': 'Can I compare multiple postcodes?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Yes. The map is designed for consistent comparison across postcodes.',
'Check postcodes on the map': 'Check postcodes on the map',
'Regional guide': 'Regional guide',
'How to compare Birmingham postcodes before a property search':
'How to compare Birmingham postcodes before a property search',
'Birmingham property search - Compare postcodes by price and commute':
'Birmingham property search - Compare postcodes by price and commute',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.',
'Start with commute corridors': 'Start with commute corridors',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.',
'Use commute time as a hard filter before judging price.':
'Use commute time as a hard filter before judging price.',
'Compare public transport with car, cycling, or walking where available.':
'Compare public transport with car, cycling, or walking where available.',
'Check the route manually before booking viewings.':
'Check the route manually before booking viewings.',
'Compare price with property type': 'Compare price with property type',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.',
'Keep family and environment trade-offs visible':
'Keep family and environment trade-offs visible',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Can Perfect Postcode tell me the best area in Birmingham?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.',
'Should I use this instead of local knowledge?':
'Should I use this instead of local knowledge?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.',
'Compare price patterns before looking at live listings.':
'Compare price patterns before looking at live listings.',
'Search by travel time and then layer on property requirements.':
'Search by travel time and then layer on property requirements.',
'Understand how to interpret filters and limitations.':
'Understand how to interpret filters and limitations.',
'Compare Birmingham postcodes': 'Compare Birmingham postcodes',
'How to compare Manchester postcodes for a property search':
'How to compare Manchester postcodes for a property search',
'Manchester property search - Compare postcodes before viewing':
'Manchester property search - Compare postcodes before viewing',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.',
'Use travel time to define the real search area':
'Use travel time to define the real search area',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.',
'Compare housing requirements before lifestyle preferences':
'Compare housing requirements before lifestyle preferences',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.',
'Check local context consistently': 'Check local context consistently',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Can I compare Manchester suburbs with city-centre postcodes?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.',
'Does this include live listings?': 'Does this include live listings?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'No. Use it to decide where to search, then use listing portals for current homes for sale.',
'Move from a broad search brief to specific postcode candidates.':
'Move from a broad search brief to specific postcode candidates.',
'Data sources': 'Data sources',
'Review the datasets used for property and local-context comparison.':
'Review the datasets used for property and local-context comparison.',
'Check a single postcode before arranging a viewing.':
'Check a single postcode before arranging a viewing.',
'Compare Manchester postcodes': 'Compare Manchester postcodes',
'How to compare Bristol postcodes before a property search':
'How to compare Bristol postcodes before a property search',
'Bristol property search - Compare postcodes by commute and price':
'Bristol property search - Compare postcodes by commute and price',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.',
'Make commute constraints explicit': 'Make commute constraints explicit',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.',
'Compare value, not just headline price': 'Compare value, not just headline price',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.',
'Screen environmental and local-service signals':
'Screen environmental and local-service signals',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.',
'Can I use this for commuter villages around Bristol?':
'Can I use this for commuter villages around Bristol?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.',
'Can this tell me whether a listing is good value?':
'Can this tell me whether a listing is good value?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.',
'Search by reachable postcodes before refining by budget and local context.':
'Search by reachable postcodes before refining by budget and local context.',
'Understand price patterns before setting listing alerts.':
'Understand price patterns before setting listing alerts.',
'Privacy and security': 'Privacy and security',
'How account and saved-search data is handled in the product.':
'How account and saved-search data is handled in the product.',
'Compare Bristol postcodes': 'Compare Bristol postcodes',
'Trust and coverage': 'Trust and coverage',
'Perfect Postcode data sources and coverage': 'Perfect Postcode data sources and coverage',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode data sources - Property, schools, commute and local context',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.',
'Property and housing context': 'Property and housing context',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.',
'Use these fields to compare areas, not as a formal valuation.':
'Use these fields to compare areas, not as a formal valuation.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Check current listings, title information, lender requirements, and survey results before buying.',
'Schools, safety, broadband, and environment': 'Schools, safety, broadband, and environment',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.',
'Travel-time data': 'Travel-time data',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.',
'Why does coverage focus on England?': 'Why does coverage focus on England?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.',
'How should I handle stale or missing data?': 'How should I handle stale or missing data?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.',
'How filters and comparisons should be interpreted.':
'How filters and comparisons should be interpreted.',
'Review postcode-level context before a viewing.':
'Review postcode-level context before a viewing.',
'How saved searches and account data are handled.':
'How saved searches and account data are handled.',
'How to use the map': 'How to use the map',
'Methodology for postcode property research': 'Methodology for postcode property research',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode methodology - How to interpret postcode property data',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.',
'Start with hard constraints': 'Start with hard constraints',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.',
'Use colour layers for trade-offs': 'Use colour layers for trade-offs',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.',
'Measure whats working': 'Measure whats working',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.',
'Can the tool choose the right postcode for me?':
'Can the tool choose the right postcode for me?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.',
'How should I use estimates?': 'How should I use estimates?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Use estimates as comparison signals, not as professional valuations or purchase advice.',
'Understand where key filters come from.': 'Understand where key filters come from.',
'Apply the methodology to price-led area comparison.':
'Apply the methodology to price-led area comparison.',
'Apply the methodology to destination-led search.':
'Apply the methodology to destination-led search.',
Trust: 'Trust',
'Privacy and security for saved property searches':
'Privacy and security for saved property searches',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode privacy and security - Saved searches and account data',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.',
'Public pages and private areas are separated': 'Public pages and private areas are separated',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.',
'Saved search data is account-scoped': 'Saved search data is account-scoped',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.',
'Search measurement without exposing private data':
'Search measurement without exposing private data',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.',
'Are saved searches listed in the sitemap?': 'Are saved searches listed in the sitemap?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.',
'Can private dashboard URLs appear in search?': 'Can private dashboard URLs appear in search?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.',
'How to use public postcode data responsibly.': 'How to use public postcode data responsibly.',
'What data powers the public comparisons.': 'What data powers the public comparisons.',
'Explore public postcode-search workflows.': 'Explore public postcode-search workflows.',
},
} as const;
export default en;

View file

@ -108,6 +108,485 @@ const fr: Translations = {
relatedPages: 'Pages associées',
relatedPagesDesc:
'Suivez ces liens internes pour comparer le même parcours de recherche immobilière sous un autre angle.',
pages: {
'Property price map': "Carte des prix de l'immobilier",
'Compare property prices across every postcode in England':
'Comparez les prix de limmobilier pour chaque code postal en Angleterre',
'Property price map for England - Compare postcodes before viewing':
"Carte des prix de l'immobilier en Angleterre - Comparez les codes postaux avant de consulter",
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Comparez les prix de vente, la valeur actuelle estimée, le prix au mètre carré et le contexte local dans les codes postaux anglais avant de rechercher des annonces.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
"Perfect Postcode cartographie les prix de vente, la valeur actuelle estimée, le prix au mètre carré, le type de propriété, la superficie, le mode d'occupation et le contexte local afin que les acheteurs puissent trouver des zones de recherche réalistes avant d'ouvrir les portails dannonces.",
'Screen historical sale prices and current-value estimates by postcode.':
'Consultez lhistorique des prix de vente et les estimations de la valeur actuelle par code postal.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Comparez la valeur avec les déplacements domicile-travail, les écoles, le haut débit, la criminalité, le bruit et les commodités.',
'Build a shortlist before spending weekends on viewings.':
'Créez une liste restreinte avant de passer vos week-ends en visites.',
'Find postcodes that fit the budget before listings appear':
"Trouvez les codes postaux qui correspondent au budget avant que les annonces n'apparaissent",
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
"Commencez par un prix maximum et un type de propriété, puis coloriez la carte par prix au mètre carré ou prix actuel estimé. Cela permet de révéler les zones où des maisons similaires ont historiquement été négociées à portée de main, même s'il n'y a pas dannonces en cours aujourd'hui.",
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
"Filtrez par dernier prix de vente connu, valeur actuelle estimée, type de propriété, mode d'occupation et superficie.",
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Comparez les codes postaux à proximité en utilisant les mêmes critères au lieu de vous fier à la réputation de la zone.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Utilisez les résultats comme liste restreinte pour répertorier les alertes, les recherches locales et les visites.',
'Separate cheap from good value': 'Séparez le bon marché du bon rapport qualité-prix',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Un prix inférieur peut refléter des logements plus petits, des transports plus faibles, plus de bruit ou moins de services locaux. La carte garde ces compromis visibles, de sorte que le code postal le moins cher nest pas automatiquement traité comme la meilleure option.',
'Start from area value, not listing availability':
'Commencer à partir de la valeur de la zone, sans lister la disponibilité',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
"Les portails dannonces affichent uniquement les maisons à vendre aujourdhui. Une carte des prix immobiliers au niveau du code postal vous permet de comparer des zones plus larges, de comprendre les modèles de prix locaux et d'éviter de manquer des endroits où la prochaine annonce appropriée pourrait apparaître.",
'Use prices alongside real constraints': 'Utiliser les prix avec des contraintes réelles',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
"Le budget compte rarement à lui seul. Perfect Postcode combine des filtres de prix avec le temps de trajet, la qualité de l'école, la taille de la propriété, la performance énergétique, l'environnement local et les services afin que votre liste restreinte reflète la façon dont vous souhaitez réellement vivre.",
'What the price data is for': 'À quoi servent les données de prix',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Utilisez la carte pour comparer les zones et repérer les candidats à la recherche. Il ne sagit pas dune évaluation, dune décision hypothécaire, dune enquête, dune recherche juridique ou dun flux dannonces en direct.',
'How to validate a promising area': 'Comment valider un domaine prometteur',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
"Une fois qu'un code postal semble prometteur, vérifiez les annonces actuelles, les prix de vente comparables, les détails de l'agent, les recherches d'inondations, les dossiers juridiques, les enquêtes et les informations des autorités locales avant de prendre une décision.",
'Is this a replacement for Rightmove or Zoopla?':
'Est-ce un remplacement pour Rightmove ou Zoopla ?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Non. Utilisez-le avant et parallèlement aux portails dannonces. Perfect Postcode aide à décider où chercher ; les portails dannonces affichent ce qui est actuellement en vente.',
'Can I compare price with schools or commute time?':
'Puis-je comparer les prix avec les écoles ou le temps de trajet ?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
"Oui. Les filtres de prix peuvent être combinés avec des filtres sur le temps de trajet, les écoles, la criminalité, le haut débit, le bruit de la route, les commodités et l'environnement.",
'Does the map cover all of the UK?': 'La carte couvre-t-elle tout le Royaume-Uni ?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
"Le produit actuel se concentre sur l'Angleterre, car plusieurs ensembles de données de propriétés et de codes postaux de base sont spécifiques à l'Angleterre.",
'Birmingham property search guide': 'Guide de recherche de propriétés à Birmingham',
'A worked example for balancing price, commute, and family trade-offs.':
'Un exemple concret pour équilibrer les compromis en matière de prix, de déplacement et de famille.',
'Data sources and coverage': 'Sources de données et couverture',
'See which datasets sit behind the postcode filters and where they have limits.':
'Découvrez quels ensembles de données se trouvent derrière les filtres de code postal et où ils ont des limites.',
Methodology: 'Méthodologie',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Comprenez comment la carte est destinée à soutenir la présélection et non à remplacer la diligence raisonnable.',
'Postcode checker': 'Vérificateur de code postal',
'Check one postcode before you spend time on a viewing.':
'Vérifiez un code postal avant de consacrer du temps à une visite.',
'Explore the property map': 'Explorez la carte de la propriété',
'Postcode property search': 'Recherche de propriété par code postal',
'Find postcodes that match your property search criteria':
'Trouvez les codes postaux qui correspondent à vos critères de recherche de propriété',
'Postcode property search - Find areas that match your criteria':
'Recherche de propriété par code postal - Trouvez les zones qui correspondent à vos critères',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
"Recherchez chaque code postal par budget, type de propriété, superficie, mode d'occupation, déplacements domicile-travail, écoles, criminalité, haut débit, bruit, parcs et commodités locales.",
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
"Recherchez chaque code postal par budget, type de propriété, taille, mode d'occupation, déplacements domicile-travail, écoles, criminalité, haut débit, bruit, parcs et commodités locales au lieu de vérifier les zones une par une.",
'Filter England-wide postcode data from one map.':
'Filtrez les données des codes postaux de toute lAngleterre à partir dune seule carte.',
'Shortlist unfamiliar areas with comparable evidence.':
'Présélectionnez les domaines inconnus avec des preuves comparables.',
'Save and share search areas before booking viewings.':
'Enregistrez et partagez les zones de recherche avant de réserver des visites.',
'Turn a broad brief into postcode candidates':
'Transformez un dossier général en candidats au code postal',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
"Saisissez d'abord les contraintes pratiques : budget, taille de la propriété, mode d'occupation, temps de trajet, besoins scolaires, haut débit et tolérance au bruit routier ou aux niveaux de criminalité. La carte supprime les endroits qui ne respectent pas ces contraintes et conserve les options restantes comparables.",
'Relax one constraint at a time': 'Assouplir une contrainte à la fois',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Lorsque la recherche devient trop étroite, supprimez un seul filtre et observez quels codes postaux réapparaissent. Cela rend le compromis explicite au lieu de sappuyer sur des conjectures.',
'Turn vague areas into specific postcodes':
'Transformez des zones vagues en codes postaux spécifiques',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
"Les recherches à grande échelle dans les villes ou les arrondissements cachent de grandes différences entre les rues. Perfect Postcode vous aide à passer d'une zone générale à des codes postaux qui répondent à vos exigences strictes.",
'Keep trade-offs visible': 'Gardez les compromis visibles',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
"Lorsqu'il y a trop ou pas assez de correspondances, ajustez une contrainte à la fois et voyez exactement quels codes postaux réapparaissent. Cela rend les compromis explicites au lieu de sappuyer sur des conjectures.",
'Why postcode-level comparison matters':
'Pourquoi la comparaison au niveau du code postal est importante',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
"Deux codes postaux proches peuvent différer en termes d'écoles, de bruit routier, d'accès aux transports, de composition immobilière et de prix. La comparaison au niveau du code postal réduit la probabilité de traiter une ville entière comme un seul marché uniforme.",
'How to use the results': 'Comment utiliser les résultats',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
"Traitez les codes postaux correspondants comme une file d'attente de recherche : vérifiez les listes en direct, visitez les rues, confirmez les écoles et les admissions et consultez les sources officielles actuelles.",
'Can I save a postcode property search?':
'Puis-je enregistrer une recherche de propriété par code postal ?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Oui. Les utilisateurs sous licence peuvent enregistrer leurs recherches et y revenir plus tard. Les recherches enregistrées sont conçues pour les listes restreintes et les notes de comparaison.',
'Can I search without knowing the area?': 'Puis-je chercher sans connaître la zone ?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Oui. La carte est conçue pour faire apparaître des zones inconnues qui correspondent à des contraintes pratiques, et pas seulement des endroits que vous connaissez déjà.',
'Are the results live property listings?':
'Les résultats sont-ils des annonces immobilières en direct ?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Non. Loutil compare les données de code postal et les signaux de propriété historiques/contextuels. Vous avez toujours besoin de portails dannonces pour connaître la disponibilité actuelle.',
'Manchester property search guide': 'Guide de recherche de propriétés à Manchester',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Un guide régional pour affiner une recherche large autour du Grand Manchester.',
'Start a postcode search': 'Lancer une recherche de code postal',
'Commute property search': 'Recherche de propriété pour les déplacements domicile-travail',
'Search for places to live by commute time':
'Rechercher des lieux de résidence par temps de trajet',
'Commute property search - Find places to live by travel time':
'Recherche de propriété pour les déplacements domicile-travail  Trouver des endroits où vivre en fonction du temps de trajet',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filtrez les codes postaux par temps de trajet, puis comparez les données sur les prix, les écoles, la sécurité, le haut débit, le bruit routier, les parcs et les propriétés sur une seule carte.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
"Filtrez les codes postaux par temps de trajet modélisés en voiture, en vélo, à pied et en transports en commun, puis superposez le prix de l'immobilier, les écoles, la criminalité, le haut débit, le bruit et les commodités locales.",
'Compare reachable postcodes by realistic travel-time bands.':
'Comparez les codes postaux accessibles par tranches de temps de trajet réalistes.',
'Search by destination first, then filter for property and neighbourhood fit.':
"Recherchez d'abord par destination, puis filtrez en fonction de l'adéquation de la propriété et du quartier.",
'Avoid areas that look close on a map but fail the daily journey.':
'Évitez les zones qui semblent proches sur une carte mais qui échouent au trajet quotidien.',
'Start with the destination that matters': 'Commencez par la destination qui compte',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Choisissez une destination de trajet, un mode de transport et une plage horaire, puis ajoutez les filtres de propriétés. Cela évite quune zone dapparence bon marché ne figure sur la liste restreinte si le trajet quotidien ne fonctionne pas.',
'Compare the commute against the rest of daily life':
'Comparez les déplacements avec le reste de la vie quotidienne',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'Un trajet rapide ne suffit pas si la taille de la propriété, le contexte scolaire, le seuil de sécurité, le haut débit ou lexposition au bruit de la route ne conviennent pas. La carte conserve ces signaux côte à côte.',
'Commute from postcodes, not just place names':
'Déplacez-vous à partir des codes postaux, pas seulement des noms de lieux',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Deux rues dune même ville peuvent avoir des accès à la gare, des itinéraires routiers et des options de transports publics très différents. Le filtrage du temps de trajet au niveau du code postal maintient cette différence visible.',
'Balance journey time with the rest of the move':
'Équilibrez le temps de trajet avec le reste du déménagement',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
"Un trajet rapide n'est utile que si la zone correspond également à votre budget, à vos besoins en matière de logement, à vos préférences scolaires, à votre seuil de sécurité, à vos exigences en matière de haut débit et à votre tolérance au bruit de la route.",
'How travel-time filters should be interpreted':
'Comment interpréter les filtres de temps de trajet',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'La modélisation du temps de trajet est utile pour comparer les zones de manière cohérente. Avant de vous engager, vérifiez les horaires actuels, les schémas de perturbations, le stationnement, les conditions cyclables et les itinéraires pédestres.',
'Why commute filters are combined with property data':
'Pourquoi les filtres de trajet domicile-travail sont combinés avec les données de propriété',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
"La recherche de trajet est plus utile lorsqu'elle supprime les zones impossibles tout en indiquant si les options restantes sont abordables et vivable.",
'Can I compare car, cycling, walking, and public transport?':
'Puis-je comparer la voiture, le vélo, la marche et les transports publics ?',
'The product supports multiple travel modes where precomputed destination data is available.':
'Le produit prend en charge plusieurs modes de déplacement pour lesquels des données de destination précalculées sont disponibles.',
'Are travel times exact?': 'Les temps de trajet sont-ils exacts ?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
"Non. Traitez-les comme un modèle de comparaison cohérent, puis vérifiez le véritable itinéraire avant de prendre une décision de visualisation ou d'achat.",
'Can I combine commute filters with schools and price?':
'Puis-je combiner les filtres de trajet domicile-travail avec les écoles et le prix ?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Oui. Le filtre des déplacements domicile-travail peut être superposé au prix de limmobilier, à la taille, aux écoles, au haut débit, à la criminalité, aux commodités et aux signaux environnementaux.',
'Bristol property search guide': 'Guide de recherche de propriétés à Bristol',
'A worked example for balancing city access, price, and local context.':
"Un exemple concret pour équilibrer l'accès à la ville, le prix et le contexte local.",
'Search by commute time': 'Rechercher par temps de trajet',
'Schools and property search': "Recherche d'écoles et de propriétés",
'Find property search areas with schools and family trade-offs in view':
'Trouvez des zones de recherche de propriété avec des compromis scolaires et familiaux en vue',
'School property search - Compare postcodes for family moves':
'Recherche de propriété scolaire - Comparez les codes postaux pour les déménagements familiaux',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Comparez les écoles à proximité, la taille de la propriété, les prix, les parcs, la sécurité, les déplacements et les commodités locales avant de créer une liste restreinte de visites.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Comparez les évaluations Ofsted à proximité, le contexte éducatif, la taille de la propriété, le budget, la sécurité, les parcs, les déplacements domicile-travail et les commodités locales avant de réduire votre liste restreinte de visualisation.',
'Filter for nearby school quality alongside housing requirements.':
'Filtrez la qualité des écoles à proximité ainsi que les exigences en matière de logement.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Comparez les compromis adaptés aux familles entre des codes postaux inconnus.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Utilisez la carte comme outil de présélection avant de vérifier les admissions et les bassins versants.',
'Use school context without ignoring the home':
'Utiliser le contexte scolaire sans ignorer la maison',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
"Commencez par la taille de la propriété, le budget et les contraintes de déplacement, puis ajoutez la qualité des écoles à proximité et le contexte local. Cela empêche les recherches menées par l'école de cacher des problèmes d'abordabilité ou de la vie quotidienne.",
'Verify admissions before deciding': 'Vérifier les admissions avant de décider',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Les données scolaires peuvent indiquer des domaines prometteurs, mais les règles dadmission et les bassins versants peuvent changer. Confirmez les arrangements actuels avec les écoles et les autorités locales.',
'School quality is one part of the shortlist':
"La qualité de l'école fait partie de la liste restreinte",
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode vous aide à comparer les données des écoles à proximité avec les autres contraintes pratiques qui façonnent un déménagement familial : espace, prix, déplacements domicile-travail, parcs, sécurité et services locaux.',
'Check catchments before making decisions':
'Vérifier les bassins versants avant de prendre des décisions',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
"Les règles d'admission et les limites des bassins versants peuvent changer. Utilisez les données scolaires au niveau du code postal pour trouver des zones prometteuses, puis vérifiez les détails actuels des admissions auprès de l'école ou des autorités locales.",
'How to treat school filters': 'Comment traiter les filtres scolaires',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
"Utilisez les filtres scolaires pour affiner la recherche, et non pour supposer léligibilité à ladmission. Les notes, la distance, les critères d'admission et la capacité de l'école doivent tous être vérifiés auprès des sources officielles actuelles.",
'Family trade-offs to compare': 'Les compromis familiaux à comparer',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
"Combinez les écoles avec les parcs, le bruit de la route, la criminalité, la taille de la propriété, les déplacements domicile-travail, le haut débit et le prix afin que la liste restreinte reflète l'ensemble du déménagement.",
'Does this show school catchment guarantees?':
'Cela montre-t-il des garanties de fréquentation scolaire ?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
"Non. Cela permet d'identifier les zones prometteuses, mais les recrutements et les admissions doivent être vérifiés auprès de l'école ou des autorités locales.",
'Can I combine school filters with parks and safety?':
'Puis-je combiner les filtres scolaires avec les parcs et la sécurité ?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
"Oui. La recherche adaptée à l'école peut être combinée avec la criminalité, les parcs, les déplacements domicile-travail, le prix, la taille de la propriété et les services locaux.",
'Is Ofsted the only school signal?': 'Ofsted est-il le seul signal scolaire ?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
"Aucun score ne devrait décider d'un coup. Utilisez la carte comme point de départ, puis examinez en détail les informations actuelles sur lécole.",
'See where education, property, transport, and environment data comes from.':
"Découvrez d'où proviennent les données sur l'éducation, l'immobilier, les transports et l'environnement.",
'Explore school-aware searches': "Explorez les recherches adaptées à l'école",
'Check postcode data before you book a viewing':
'Vérifiez les données du code postal avant de réserver une visite',
'Postcode checker - Property, crime, broadband, noise and schools':
'Vérificateur de code postal - Propriété, criminalité, haut débit, bruit et écoles',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
"Vérifiez les prix de l'immobilier au niveau du code postal, les données EPC, la criminalité, le haut débit, le bruit de la route, les écoles, la taxe d'habitation, les commodités et le contexte du temps de trajet.",
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
"Examinez les prix de l'immobilier, le contexte EPC, la criminalité, le haut débit, le bruit de la route, les commodités locales, les écoles, les privations, la taxe d'habitation et les données sur le temps de trajet à partir d'une seule carte indiquant le code postal.",
'Check multiple local signals before visiting a street.':
'Vérifiez plusieurs signaux locaux avant de visiter une rue.',
'Use official and open datasets rather than reputation alone.':
'Utilisez des ensembles de données officiels et ouverts plutôt que la seule réputation.',
'Compare postcodes consistently across England.':
'Comparez les codes postaux de manière cohérente dans toute lAngleterre.',
'Check the street before spending a viewing slot':
"Vérifiez la rue avant de passer un créneau d'observation",
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
"Utilisez le vérificateur de code postal pour examiner l'historique des prix, le contexte local, les commodités, les écoles et les signaux environnementaux avant de consacrer du temps à votre visite.",
'Compare neighbouring postcodes': 'Comparez les codes postaux voisins',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Si un code postal semble prometteur, comparez les zones adjacentes en utilisant les mêmes filtres. Cela révèle souvent si une préoccupation est spécifique à une rue ou fait partie dun schéma plus large.',
'Useful before and alongside listing portals':
'Utile avant et parallèlement aux portails dannonces',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Les photos de la liste vous en disent rarement assez sur la rue environnante. Perfect Postcode vous offre une vérification du code postal fondée sur des preuves avant de consacrer du temps à une visite.',
'A screening tool, not professional advice':
'Un outil de dépistage, pas un conseil professionnel',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
"Les données sont conçues pour la présélection et la comparaison. Tout achat nécessite toujours des vérifications des annonces actuelles, une diligence raisonnable juridique, des recherches d'inondations, des exigences des prêteurs et des résultats d'enquêtes.",
'What a postcode check can catch': "Ce qu'une vérification du code postal peut détecter",
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
"Une vérification du code postal peut faire apparaître le contexte des prix, les signaux environnementaux, les commodités à proximité et d'autres indicateurs locaux faciles à manquer dans une annonce.",
'What a postcode check cant prove':
"Ce qu'une vérification du code postal ne peut pas prouver",
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Il ne peut pas confirmer létat dune maison, le développement futur, le titre légal, les exigences du prêteur ou lexpérience actuelle au niveau de la rue. Ceux-ci ont encore besoin de contrôles directs.',
'Can I use the checker before a viewing?':
'Puis-je utiliser le vérificateur avant une visite ?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Oui. Cest lun des principaux cas dutilisation : examinez dabord le code postal, puis décidez si le visionnage en vaut la peine.',
'Does the checker include exact property condition?':
'Le vérificateur inclut-il létat exact de la propriété ?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Létat de la propriété nécessite des détails dinscription, des enquêtes et une inspection directe.',
'Can I compare multiple postcodes?': 'Puis-je comparer plusieurs codes postaux ?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Oui. La carte est conçue pour une comparaison cohérente entre les codes postaux.',
'Check postcodes on the map': 'Vérifiez les codes postaux sur la carte',
'Regional guide': 'Guide régional',
'How to compare Birmingham postcodes before a property search':
'Comment comparer les codes postaux de Birmingham avant une recherche de propriété',
'Birmingham property search - Compare postcodes by price and commute':
'Recherche de propriété à Birmingham - Comparez les codes postaux par prix et trajet',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
"Utilisez les données au niveau du code postal pour comparer les prix de l'immobilier à Birmingham, les compromis pour les déplacements domicile-travail, les écoles, la criminalité, le haut débit et les commodités locales avant les visites.",
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
"Les recherches à Birmingham peuvent changer rapidement d'une rue à l'autre. Utilisez des preuves au niveau du code postal pour comparer le budget, les déplacements domicile-travail, les écoles, le bruit, la criminalité et les services locaux avant de décider où regarder les annonces.",
'Start with commute corridors': 'Commencez par les couloirs de déplacement',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Choisissez la destination qui compte, comme un lieu de travail, une gare, une université ou un hôpital, puis comparez les codes postaux accessibles par mode de transport et tranche horaire de trajet.',
'Use commute time as a hard filter before judging price.':
'Utilisez le temps de trajet comme filtre dur avant de juger le prix.',
'Compare public transport with car, cycling, or walking where available.':
"Comparez les transports publics avec la voiture, le vélo ou la marche lorsqu'ils sont disponibles.",
'Check the route manually before booking viewings.':
"Vérifiez l'itinéraire manuellement avant de réserver des visites.",
'Compare price with property type': 'Comparez le prix avec le type de propriété',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Les prix médians à eux seuls peuvent être trompeurs si la composition immobilière locale change. Ajoutez des filtres de type de propriété, doccupation, de superficie et de prix afin que les zones similaires soient comparées équitablement.',
'Keep family and environment trade-offs visible':
'Gardez les compromis familiaux et environnementaux visibles',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Superposez le contexte scolaire, les parcs, le bruit de la route, le haut débit et les signaux de criminalité au-dessus des filtres de propriété. Il est ainsi plus facile de décider quels compromis sont acceptables.',
'Can Perfect Postcode tell me the best area in Birmingham?':
"Perfect Postcode peut-il m'indiquer le meilleur quartier de Birmingham ?",
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Aucun outil ne peut décider du meilleur quartier pour chaque acheteur. Il permet de comparer les codes postaux avec vos propres contraintes afin que vous puissiez créer une meilleure liste restreinte.',
'Should I use this instead of local knowledge?':
'Dois-je utiliser cela à la place des connaissances locales ?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Non. Utilisez-le pour rechercher et comparer des candidats, puis validez-les avec des visites, des conseils locaux, des listings et des contrôles officiels.',
'Compare price patterns before looking at live listings.':
'Comparez les modèles de prix avant de consulter les annonces en direct.',
'Search by travel time and then layer on property requirements.':
'Recherchez par temps de trajet, puis superposez les exigences de propriété.',
'Understand how to interpret filters and limitations.':
'Comprendre comment interpréter les filtres et les limitations.',
'Compare Birmingham postcodes': 'Comparez les codes postaux de Birmingham',
'How to compare Manchester postcodes for a property search':
'Comment comparer les codes postaux de Manchester pour une recherche de propriété',
'Manchester property search - Compare postcodes before viewing':
'Recherche de propriété à Manchester - Comparez les codes postaux avant de visiter',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Comparez les codes postaux de la région de Manchester par budget, trajet domicile-travail, type de propriété, écoles, haut débit, criminalité, bruit et commodités avant de réserver des visites.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'Une recherche dans la région de Manchester peut couvrir les options du centre-ville, de la banlieue et des navetteurs. Perfect Postcode permet de garder chaque code postal comparable par rapport aux mêmes contraintes de propriété et de vie quotidienne.',
'Use travel time to define the real search area':
'Utiliser le temps de trajet pour définir la véritable zone de recherche',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Commencez par les destinations qui comptent, puis comparez les codes postaux accessibles plutôt que de supposer que chaque lieu à proximité propose le même trajet pratique.',
'Compare housing requirements before lifestyle preferences':
'Comparez les exigences en matière de logement avant les préférences de style de vie',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
"Filtrez par type de propriété, superficie, mode d'occupation et prix avant de juger des équipements. Cela maintient la liste restreinte des maisons qui pourraient fonctionner de manière réaliste.",
'Check local context consistently': 'Vérifiez le contexte local de manière cohérente',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Utilisez le haut débit, la criminalité, le bruit de la route, les parcs, les écoles et les commodités comme signaux comparables. Validez ensuite les candidats les plus forts avec les contrôles locaux en cours.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Puis-je comparer la banlieue de Manchester avec les codes postaux du centre-ville ?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Oui. Utilisez les mêmes filtres de budget, de propriété, de trajet domicile-travail et de contexte local dans les deux cas afin que les compromis restent visibles.',
'Does this include live listings?': 'Cela inclut-il les annonces en direct ?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Non. Utilisez-le pour décider où rechercher, puis utilisez les portails dannonces pour les maisons actuellement à vendre.',
'Move from a broad search brief to specific postcode candidates.':
"Passez d'une recherche générale à des candidats de code postal spécifiques.",
'Data sources': 'Sources de données',
'Review the datasets used for property and local-context comparison.':
'Examinez les ensembles de données utilisés pour la comparaison des propriétés et du contexte local.',
'Check a single postcode before arranging a viewing.':
"Vérifiez un seul code postal avant d'organiser une visite.",
'Compare Manchester postcodes': 'Comparez les codes postaux de Manchester',
'How to compare Bristol postcodes before a property search':
'Comment comparer les codes postaux de Bristol avant une recherche de propriété',
'Bristol property search - Compare postcodes by commute and price':
'Recherche de propriété à Bristol - Comparez les codes postaux par trajet et par prix',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Comparez les codes postaux de Bristol par prix, trajet domicile-travail, taille de la propriété, écoles, haut débit, criminalité, bruit de la route, parcs et commodités avant les visites.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Les recherches à Bristol impliquent souvent des compromis pointus entre le prix, la durée du trajet, la taille de la propriété et le contexte du quartier. Une comparaison basée sur le code postal permet de garder ces compromis visibles.',
'Make commute constraints explicit': 'Rendre explicites les contraintes de déplacement',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
"Si l'accès au centre, à une gare, à un hôpital, à une université ou à un parc d'activités est important, utilisez d'abord des filtres de temps de trajet, puis comparez les codes postaux restants en fonction des données de propriété.",
'Compare value, not just headline price': 'Comparez la valeur, pas seulement le prix global',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Utilisez ensemble les filtres de prix, de type de propriété et de superficie. Cela permet de distinguer les zones à moindre coût des zones qui contiennent simplement des maisons plus petites ou différentes.',
'Screen environmental and local-service signals':
'Filtrer les signaux environnementaux et de service local',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
"Le bruit de la route, les parcs, le haut débit, la criminalité et les commodités peuvent affecter le fonctionnement quotidien d'une propriété. Utilisez-les comme critères de sélection avant de réserver des visites.",
'Can I use this for commuter villages around Bristol?':
"Puis-je l'utiliser pour les villages de banlieue autour de Bristol ?",
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Oui, lorsque les données relatives au code postal et à la durée du trajet sont disponibles. Vérifiez toujours les itinéraires et les services manuellement avant de prendre une décision.',
'Can this tell me whether a listing is good value?':
'Cela peut-il me dire si une annonce présente un bon rapport qualité-prix ?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
"Il peut fournir un contexte régional, mais une annonce spécifique nécessite toujours des ventes comparables, des vérifications de l'état, des résultats d'enquête et des conseils professionnels, le cas échéant.",
'Search by reachable postcodes before refining by budget and local context.':
"Recherchez par codes postaux accessibles avant d'affiner par budget et contexte local.",
'Understand price patterns before setting listing alerts.':
'Comprenez les modèles de prix avant de définir des alertes dannonces.',
'Privacy and security': 'Confidentialité et sécurité',
'How account and saved-search data is handled in the product.':
'Comment les données de compte et de recherche enregistrées sont gérées dans le produit.',
'Compare Bristol postcodes': 'Comparez les codes postaux de Bristol',
'Trust and coverage': 'Confiance et couverture',
'Perfect Postcode data sources and coverage':
'Sources de données et couverture parfaites du code postal',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Sources de données Perfect Postcode  Propriété, écoles, déplacements domicile-travail et contexte local',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
"Examinez les ensembles de données publiques et officielles utilisées par Perfect Postcode, notamment les prix de l'immobilier, l'EPC, les écoles, la criminalité, le haut débit, le bruit et le contexte du temps de trajet.",
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
"Perfect Postcode combine des ensembles de données sur la propriété, les transports, l'éducation, l'environnement et les services locaux afin que les acheteurs puissent comparer les codes postaux de manière cohérente. Cette page explique à quoi servent les données et où elles doivent être vérifiées.",
'Property and housing context': 'Contexte immobilier et logement',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
"Le produit utilise des ensembles de données sur les transactions immobilières et le contexte du logement pour prendre en charge des filtres tels que le prix de vente, le type de propriété, le mode d'occupation, la superficie, la performance énergétique et la valeur actuelle estimée.",
'Use these fields to compare areas, not as a formal valuation.':
'Utilisez ces champs pour comparer des zones, et non comme une évaluation formelle.',
'Check current listings, title information, lender requirements, and survey results before buying.':
"Vérifiez les annonces actuelles, les informations sur le titre, les exigences du prêteur et les résultats de l'enquête avant d'acheter.",
'Schools, safety, broadband, and environment':
'Écoles, sécurité, haut débit et environnement',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Les filtres de contexte local permettent de comparer les codes postaux sur des signaux qui affectent la vie quotidienne. Elles doivent être traitées comme des données de sélection et vérifiées par rapport aux sources officielles actuelles pour les décisions.',
'Travel-time data': 'Données sur le temps de trajet',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
"Les filtres de temps de trajet sont conçus pour une comparaison cohérente des zones. La disponibilité des itinéraires, les perturbations, le stationnement, l'accès à pied et les détails des horaires doivent être vérifiés avant de s'engager dans une zone.",
'Why does coverage focus on England?':
'Pourquoi la couverture médiatique se concentre-t-elle sur lAngleterre ?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Plusieurs ensembles de données de base sur la propriété, léducation et le contexte local sont spécifiques à une juridiction. La couverture de lAngleterre rend les comparaisons plus cohérentes.',
'How should I handle stale or missing data?':
'Comment dois-je gérer les données obsolètes ou manquantes ?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Utilisez la carte comme outil de présélection. Si un code postal est important, vérifiez les derniers détails auprès des sources officielles actuelles et dirigez les contrôles locaux.',
'How filters and comparisons should be interpreted.':
'Comment les filtres et les comparaisons doivent être interprétés.',
'Review postcode-level context before a viewing.':
'Examinez le contexte au niveau du code postal avant une visualisation.',
'How saved searches and account data are handled.':
'Comment les recherches enregistrées et les données du compte sont traitées.',
'How to use the map': 'Comment utiliser la carte',
'Methodology for postcode property research':
'Méthodologie de recherche de propriété de code postal',
'Perfect Postcode methodology - How to interpret postcode property data':
'Méthodologie Perfect Postcode - Comment interpréter les données de propriété du code postal',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
"Comprenez comment utiliser les filtres de codes postaux, les estimations de propriété, les données de temps de trajet, le contexte scolaire et les signaux locaux comme outil de liste restreinte pour l'achat d'une maison.",
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode est conçu pour que la présélection de zones soit davantage fondée sur des preuves. Il ne remplace pas les agents immobiliers, les géomètres, les agents de transfert de biens, les prêteurs, les équipes dadmission scolaire ou les contrôles des autorités locales.',
'Start with hard constraints': 'Commencez avec des contraintes strictes',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Commencez par les éléments non négociables tels que le budget, le type de propriété, la superficie, le temps de trajet et les services essentiels. Cela supprime les codes postaux impossibles avant que des préférences plus douces ne soient prises en compte.',
'Use colour layers for trade-offs': 'Utilisez des calques de couleur pour les compromis',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
"Après filtrage, coloriez la carte restante en fonction d'un signal à la fois : prix au mètre carré, bruit de la route, contexte scolaire, temps de trajet, haut débit ou criminalité. Cela rend les compromis plus faciles à discuter.",
'Measure whats working': 'Mesurez ce qui fonctionne',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Utilisez la Search Console et les analyses pour suivre quelles pages publiques sont indexées, quelles requêtes produisent des impressions et quelles pages convertissent les visiteurs en exploration de tableau de bord. Passez en revue Core Web Vitals après chaque modification substantielle du frontend.',
'Can the tool choose the right postcode for me?':
"L'outil peut-il choisir le bon code postal pour moi ?",
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Non. Cela permet de comparer les preuves et de réduire la zone de recherche. La décision finale nécessite des visites directes, des inscriptions à jour, des contrôles juridiques, des enquêtes et un jugement personnel.',
'How should I use estimates?': 'Comment dois-je utiliser les estimations ?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
"Utilisez les estimations comme signaux de comparaison, et non comme évaluations professionnelles ou conseils d'achat.",
'Understand where key filters come from.': "Comprenez d'où viennent les filtres clés.",
'Apply the methodology to price-led area comparison.':
'Appliquez la méthodologie à la comparaison de zones basée sur les prix.',
'Apply the methodology to destination-led search.':
'Appliquez la méthodologie à la recherche basée sur la destination.',
Trust: 'Confiance',
'Privacy and security for saved property searches':
'Confidentialité et sécurité pour les recherches de propriétés enregistrées',
'Perfect Postcode privacy and security - Saved searches and account data':
'Confidentialité et sécurité parfaites du code postal - Recherches enregistrées et données de compte',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
"Découvrez comment Perfect Postcode traite les recherches enregistrées, les données de compte et les flux de recherche de propriété en gardant à l'esprit la confidentialité et la sécurité.",
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'La recherche immobilière peut révéler des priorités personnelles, des budgets et des emplacements. Le produit sépare les pages de référencement publiques des zones réservées aux comptes et marque les itinéraires de tableau de bord/compte privés comme non-index.',
'Public pages and private areas are separated':
'Les pages publiques et les zones privées sont séparées',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
"Les pages marketing, méthodologie, guide et support sont indexables. Le tableau de bord, le compte, les recherches enregistrées, les invitations et les itinéraires d'invitation sont marqués comme non indexés ou bloqués pour l'accès du robot, le cas échéant.",
'Saved search data is account-scoped':
'Les données de recherche enregistrées sont limitées au compte',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Les recherches et propriétés enregistrées sont destinées à une utilisation connectée. Ils ne sont pas inclus dans le plan du site public et ne doivent pas être explorables en tant que contenu public.',
'Search measurement without exposing private data':
'Rechercher des mesures sans exposer de données privées',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
"La mesure du référencement doit avoir lieu sur les pages publiques à l'aide d'analyses agrégées et de données de la Search Console. Les paramètres de requêtes privées et les vues de compte ne doivent pas devenir des pages de destination indexables.",
'Are saved searches listed in the sitemap?':
'Les recherches enregistrées sont-elles répertoriées dans le plan du site ?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Non. Les pages de référencement publiques sont répertoriées ; le compte et les itinéraires de recherche enregistrés sont intentionnellement exclus.',
'Can private dashboard URLs appear in search?':
'Les URL de tableaux de bord privés peuvent-elles apparaître dans la recherche ?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Ils ne devraient pas être indexés. Le serveur marque les routes privées sans index et le plan du site ne répertorie que les pages publiques.',
'How to use public postcode data responsibly.':
'Comment utiliser les données publiques des codes postaux de manière responsable.',
'What data powers the public comparisons.':
'Quelles données alimentent les comparaisons publiques.',
'Explore public postcode-search workflows.':
'Explorez les workflows publics de recherche de codes postaux.',
},
},
// ── Auth Modal ─────────────────────────────────────
@ -573,11 +1052,14 @@ const fr: Translations = {
learnPage: {
faq: 'FAQ',
dataSources: 'Sources de données',
articles: 'Articles',
support: 'Assistance',
dataSourcesIntro:
'Cette application combine {{count}} jeux de données ouverts couvrant les prix immobiliers, la performance énergétique, les transports, la démographie, la criminalité, lenvironnement et plus encore.',
faqIntro:
'Que vous affiniez une recherche de primo-accédant, vérifiiez un code postal inconnu ou construisiez une sélection de visites, voici comment Perfect Postcode vous aide à savoir où chercher.',
articlesIntro:
'Parcourez les guides publics sur la recherche immobilière, les trajets, les écoles, les codes postaux, les comparaisons régionales, la couverture des données, la méthodologie et la confidentialité.',
supportIntro: 'Vous avez une question ? Consultez notre FAQ ou contactez-nous directement.',
source: 'Source :',
optOut: 'Retrait de la divulgation publique',
@ -1133,485 +1615,6 @@ const fr: Translations = {
' years': ' ans',
' rooms': ' pièces',
},
seo: {
'Property price map': "Carte des prix de l'immobilier",
'Compare property prices across every postcode in England':
'Comparez les prix de limmobilier pour chaque code postal en Angleterre',
'Property price map for England - Compare postcodes before viewing':
"Carte des prix de l'immobilier en Angleterre - Comparez les codes postaux avant de consulter",
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Comparez les prix de vente, la valeur actuelle estimée, le prix au mètre carré et le contexte local dans les codes postaux anglais avant de rechercher des annonces.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
"Perfect Postcode cartographie les prix de vente, la valeur actuelle estimée, le prix au mètre carré, le type de propriété, la superficie, le mode d'occupation et le contexte local afin que les acheteurs puissent trouver des zones de recherche réalistes avant d'ouvrir les portails dannonces.",
'Screen historical sale prices and current-value estimates by postcode.':
'Consultez lhistorique des prix de vente et les estimations de la valeur actuelle par code postal.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Comparez la valeur avec les déplacements domicile-travail, les écoles, le haut débit, la criminalité, le bruit et les commodités.',
'Build a shortlist before spending weekends on viewings.':
'Créez une liste restreinte avant de passer vos week-ends en visites.',
'Find postcodes that fit the budget before listings appear':
"Trouvez les codes postaux qui correspondent au budget avant que les annonces n'apparaissent",
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
"Commencez par un prix maximum et un type de propriété, puis coloriez la carte par prix au mètre carré ou prix actuel estimé. Cela permet de révéler les zones où des maisons similaires ont historiquement été négociées à portée de main, même s'il n'y a pas dannonces en cours aujourd'hui.",
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
"Filtrez par dernier prix de vente connu, valeur actuelle estimée, type de propriété, mode d'occupation et superficie.",
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Comparez les codes postaux à proximité en utilisant les mêmes critères au lieu de vous fier à la réputation de la zone.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Utilisez les résultats comme liste restreinte pour répertorier les alertes, les recherches locales et les visites.',
'Separate cheap from good value': 'Séparez le bon marché du bon rapport qualité-prix',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Un prix inférieur peut refléter des logements plus petits, des transports plus faibles, plus de bruit ou moins de services locaux. La carte garde ces compromis visibles, de sorte que le code postal le moins cher nest pas automatiquement traité comme la meilleure option.',
'Start from area value, not listing availability':
'Commencer à partir de la valeur de la zone, sans lister la disponibilité',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
"Les portails dannonces affichent uniquement les maisons à vendre aujourdhui. Une carte des prix immobiliers au niveau du code postal vous permet de comparer des zones plus larges, de comprendre les modèles de prix locaux et d'éviter de manquer des endroits où la prochaine annonce appropriée pourrait apparaître.",
'Use prices alongside real constraints': 'Utiliser les prix avec des contraintes réelles',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
"Le budget compte rarement à lui seul. Perfect Postcode combine des filtres de prix avec le temps de trajet, la qualité de l'école, la taille de la propriété, la performance énergétique, l'environnement local et les services afin que votre liste restreinte reflète la façon dont vous souhaitez réellement vivre.",
'What the price data is for': 'À quoi servent les données de prix',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Utilisez la carte pour comparer les zones et repérer les candidats à la recherche. Il ne sagit pas dune évaluation, dune décision hypothécaire, dune enquête, dune recherche juridique ou dun flux dannonces en direct.',
'How to validate a promising area': 'Comment valider un domaine prometteur',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
"Une fois qu'un code postal semble prometteur, vérifiez les annonces actuelles, les prix de vente comparables, les détails de l'agent, les recherches d'inondations, les dossiers juridiques, les enquêtes et les informations des autorités locales avant de prendre une décision.",
'Is this a replacement for Rightmove or Zoopla?':
'Est-ce un remplacement pour Rightmove ou Zoopla ?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Non. Utilisez-le avant et parallèlement aux portails dannonces. Perfect Postcode aide à décider où chercher ; les portails dannonces affichent ce qui est actuellement en vente.',
'Can I compare price with schools or commute time?':
'Puis-je comparer les prix avec les écoles ou le temps de trajet ?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
"Oui. Les filtres de prix peuvent être combinés avec des filtres sur le temps de trajet, les écoles, la criminalité, le haut débit, le bruit de la route, les commodités et l'environnement.",
'Does the map cover all of the UK?': 'La carte couvre-t-elle tout le Royaume-Uni ?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
"Le produit actuel se concentre sur l'Angleterre, car plusieurs ensembles de données de propriétés et de codes postaux de base sont spécifiques à l'Angleterre.",
'Birmingham property search guide': 'Guide de recherche de propriétés à Birmingham',
'A worked example for balancing price, commute, and family trade-offs.':
'Un exemple concret pour équilibrer les compromis en matière de prix, de déplacement et de famille.',
'Data sources and coverage': 'Sources de données et couverture',
'See which datasets sit behind the postcode filters and where they have limits.':
'Découvrez quels ensembles de données se trouvent derrière les filtres de code postal et où ils ont des limites.',
Methodology: 'Méthodologie',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Comprenez comment la carte est destinée à soutenir la présélection et non à remplacer la diligence raisonnable.',
'Postcode checker': 'Vérificateur de code postal',
'Check one postcode before you spend time on a viewing.':
'Vérifiez un code postal avant de consacrer du temps à une visite.',
'Explore the property map': 'Explorez la carte de la propriété',
'Postcode property search': 'Recherche de propriété par code postal',
'Find postcodes that match your property search criteria':
'Trouvez les codes postaux qui correspondent à vos critères de recherche de propriété',
'Postcode property search - Find areas that match your criteria':
'Recherche de propriété par code postal - Trouvez les zones qui correspondent à vos critères',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
"Recherchez chaque code postal par budget, type de propriété, superficie, mode d'occupation, déplacements domicile-travail, écoles, criminalité, haut débit, bruit, parcs et commodités locales.",
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
"Recherchez chaque code postal par budget, type de propriété, taille, mode d'occupation, déplacements domicile-travail, écoles, criminalité, haut débit, bruit, parcs et commodités locales au lieu de vérifier les zones une par une.",
'Filter England-wide postcode data from one map.':
'Filtrez les données des codes postaux de toute lAngleterre à partir dune seule carte.',
'Shortlist unfamiliar areas with comparable evidence.':
'Présélectionnez les domaines inconnus avec des preuves comparables.',
'Save and share search areas before booking viewings.':
'Enregistrez et partagez les zones de recherche avant de réserver des visites.',
'Turn a broad brief into postcode candidates':
'Transformez un dossier général en candidats au code postal',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
"Saisissez d'abord les contraintes pratiques : budget, taille de la propriété, mode d'occupation, temps de trajet, besoins scolaires, haut débit et tolérance au bruit routier ou aux niveaux de criminalité. La carte supprime les endroits qui ne respectent pas ces contraintes et conserve les options restantes comparables.",
'Relax one constraint at a time': 'Assouplir une contrainte à la fois',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Lorsque la recherche devient trop étroite, supprimez un seul filtre et observez quels codes postaux réapparaissent. Cela rend le compromis explicite au lieu de sappuyer sur des conjectures.',
'Turn vague areas into specific postcodes':
'Transformez des zones vagues en codes postaux spécifiques',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
"Les recherches à grande échelle dans les villes ou les arrondissements cachent de grandes différences entre les rues. Perfect Postcode vous aide à passer d'une zone générale à des codes postaux qui répondent à vos exigences strictes.",
'Keep trade-offs visible': 'Gardez les compromis visibles',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
"Lorsqu'il y a trop ou pas assez de correspondances, ajustez une contrainte à la fois et voyez exactement quels codes postaux réapparaissent. Cela rend les compromis explicites au lieu de sappuyer sur des conjectures.",
'Why postcode-level comparison matters':
'Pourquoi la comparaison au niveau du code postal est importante',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
"Deux codes postaux proches peuvent différer en termes d'écoles, de bruit routier, d'accès aux transports, de composition immobilière et de prix. La comparaison au niveau du code postal réduit la probabilité de traiter une ville entière comme un seul marché uniforme.",
'How to use the results': 'Comment utiliser les résultats',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
"Traitez les codes postaux correspondants comme une file d'attente de recherche : vérifiez les listes en direct, visitez les rues, confirmez les écoles et les admissions et consultez les sources officielles actuelles.",
'Can I save a postcode property search?':
'Puis-je enregistrer une recherche de propriété par code postal ?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Oui. Les utilisateurs sous licence peuvent enregistrer leurs recherches et y revenir plus tard. Les recherches enregistrées sont conçues pour les listes restreintes et les notes de comparaison.',
'Can I search without knowing the area?': 'Puis-je chercher sans connaître la zone ?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Oui. La carte est conçue pour faire apparaître des zones inconnues qui correspondent à des contraintes pratiques, et pas seulement des endroits que vous connaissez déjà.',
'Are the results live property listings?':
'Les résultats sont-ils des annonces immobilières en direct ?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Non. Loutil compare les données de code postal et les signaux de propriété historiques/contextuels. Vous avez toujours besoin de portails dannonces pour connaître la disponibilité actuelle.',
'Manchester property search guide': 'Guide de recherche de propriétés à Manchester',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Un guide régional pour affiner une recherche large autour du Grand Manchester.',
'Start a postcode search': 'Lancer une recherche de code postal',
'Commute property search': 'Recherche de propriété pour les déplacements domicile-travail',
'Search for places to live by commute time':
'Rechercher des lieux de résidence par temps de trajet',
'Commute property search - Find places to live by travel time':
'Recherche de propriété pour les déplacements domicile-travail  Trouver des endroits où vivre en fonction du temps de trajet',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Filtrez les codes postaux par temps de trajet, puis comparez les données sur les prix, les écoles, la sécurité, le haut débit, le bruit routier, les parcs et les propriétés sur une seule carte.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
"Filtrez les codes postaux par temps de trajet modélisés en voiture, en vélo, à pied et en transports en commun, puis superposez le prix de l'immobilier, les écoles, la criminalité, le haut débit, le bruit et les commodités locales.",
'Compare reachable postcodes by realistic travel-time bands.':
'Comparez les codes postaux accessibles par tranches de temps de trajet réalistes.',
'Search by destination first, then filter for property and neighbourhood fit.':
"Recherchez d'abord par destination, puis filtrez en fonction de l'adéquation de la propriété et du quartier.",
'Avoid areas that look close on a map but fail the daily journey.':
'Évitez les zones qui semblent proches sur une carte mais qui échouent au trajet quotidien.',
'Start with the destination that matters': 'Commencez par la destination qui compte',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Choisissez une destination de trajet, un mode de transport et une plage horaire, puis ajoutez les filtres de propriétés. Cela évite quune zone dapparence bon marché ne figure sur la liste restreinte si le trajet quotidien ne fonctionne pas.',
'Compare the commute against the rest of daily life':
'Comparez les déplacements avec le reste de la vie quotidienne',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'Un trajet rapide ne suffit pas si la taille de la propriété, le contexte scolaire, le seuil de sécurité, le haut débit ou lexposition au bruit de la route ne conviennent pas. La carte conserve ces signaux côte à côte.',
'Commute from postcodes, not just place names':
'Déplacez-vous à partir des codes postaux, pas seulement des noms de lieux',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Deux rues dune même ville peuvent avoir des accès à la gare, des itinéraires routiers et des options de transports publics très différents. Le filtrage du temps de trajet au niveau du code postal maintient cette différence visible.',
'Balance journey time with the rest of the move':
'Équilibrez le temps de trajet avec le reste du déménagement',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
"Un trajet rapide n'est utile que si la zone correspond également à votre budget, à vos besoins en matière de logement, à vos préférences scolaires, à votre seuil de sécurité, à vos exigences en matière de haut débit et à votre tolérance au bruit de la route.",
'How travel-time filters should be interpreted':
'Comment interpréter les filtres de temps de trajet',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'La modélisation du temps de trajet est utile pour comparer les zones de manière cohérente. Avant de vous engager, vérifiez les horaires actuels, les schémas de perturbations, le stationnement, les conditions cyclables et les itinéraires pédestres.',
'Why commute filters are combined with property data':
'Pourquoi les filtres de trajet domicile-travail sont combinés avec les données de propriété',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
"La recherche de trajet est plus utile lorsqu'elle supprime les zones impossibles tout en indiquant si les options restantes sont abordables et vivable.",
'Can I compare car, cycling, walking, and public transport?':
'Puis-je comparer la voiture, le vélo, la marche et les transports publics ?',
'The product supports multiple travel modes where precomputed destination data is available.':
'Le produit prend en charge plusieurs modes de déplacement pour lesquels des données de destination précalculées sont disponibles.',
'Are travel times exact?': 'Les temps de trajet sont-ils exacts ?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
"Non. Traitez-les comme un modèle de comparaison cohérent, puis vérifiez le véritable itinéraire avant de prendre une décision de visualisation ou d'achat.",
'Can I combine commute filters with schools and price?':
'Puis-je combiner les filtres de trajet domicile-travail avec les écoles et le prix ?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Oui. Le filtre des déplacements domicile-travail peut être superposé au prix de limmobilier, à la taille, aux écoles, au haut débit, à la criminalité, aux commodités et aux signaux environnementaux.',
'Bristol property search guide': 'Guide de recherche de propriétés à Bristol',
'A worked example for balancing city access, price, and local context.':
"Un exemple concret pour équilibrer l'accès à la ville, le prix et le contexte local.",
'Search by commute time': 'Rechercher par temps de trajet',
'Schools and property search': "Recherche d'écoles et de propriétés",
'Find property search areas with schools and family trade-offs in view':
'Trouvez des zones de recherche de propriété avec des compromis scolaires et familiaux en vue',
'School property search - Compare postcodes for family moves':
'Recherche de propriété scolaire - Comparez les codes postaux pour les déménagements familiaux',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Comparez les écoles à proximité, la taille de la propriété, les prix, les parcs, la sécurité, les déplacements et les commodités locales avant de créer une liste restreinte de visites.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Comparez les évaluations Ofsted à proximité, le contexte éducatif, la taille de la propriété, le budget, la sécurité, les parcs, les déplacements domicile-travail et les commodités locales avant de réduire votre liste restreinte de visualisation.',
'Filter for nearby school quality alongside housing requirements.':
'Filtrez la qualité des écoles à proximité ainsi que les exigences en matière de logement.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Comparez les compromis adaptés aux familles entre des codes postaux inconnus.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Utilisez la carte comme outil de présélection avant de vérifier les admissions et les bassins versants.',
'Use school context without ignoring the home':
'Utiliser le contexte scolaire sans ignorer la maison',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
"Commencez par la taille de la propriété, le budget et les contraintes de déplacement, puis ajoutez la qualité des écoles à proximité et le contexte local. Cela empêche les recherches menées par l'école de cacher des problèmes d'abordabilité ou de la vie quotidienne.",
'Verify admissions before deciding': 'Vérifier les admissions avant de décider',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Les données scolaires peuvent indiquer des domaines prometteurs, mais les règles dadmission et les bassins versants peuvent changer. Confirmez les arrangements actuels avec les écoles et les autorités locales.',
'School quality is one part of the shortlist':
"La qualité de l'école fait partie de la liste restreinte",
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode vous aide à comparer les données des écoles à proximité avec les autres contraintes pratiques qui façonnent un déménagement familial : espace, prix, déplacements domicile-travail, parcs, sécurité et services locaux.',
'Check catchments before making decisions':
'Vérifier les bassins versants avant de prendre des décisions',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
"Les règles d'admission et les limites des bassins versants peuvent changer. Utilisez les données scolaires au niveau du code postal pour trouver des zones prometteuses, puis vérifiez les détails actuels des admissions auprès de l'école ou des autorités locales.",
'How to treat school filters': 'Comment traiter les filtres scolaires',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
"Utilisez les filtres scolaires pour affiner la recherche, et non pour supposer léligibilité à ladmission. Les notes, la distance, les critères d'admission et la capacité de l'école doivent tous être vérifiés auprès des sources officielles actuelles.",
'Family trade-offs to compare': 'Les compromis familiaux à comparer',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
"Combinez les écoles avec les parcs, le bruit de la route, la criminalité, la taille de la propriété, les déplacements domicile-travail, le haut débit et le prix afin que la liste restreinte reflète l'ensemble du déménagement.",
'Does this show school catchment guarantees?':
'Cela montre-t-il des garanties de fréquentation scolaire ?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
"Non. Cela permet d'identifier les zones prometteuses, mais les recrutements et les admissions doivent être vérifiés auprès de l'école ou des autorités locales.",
'Can I combine school filters with parks and safety?':
'Puis-je combiner les filtres scolaires avec les parcs et la sécurité ?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
"Oui. La recherche adaptée à l'école peut être combinée avec la criminalité, les parcs, les déplacements domicile-travail, le prix, la taille de la propriété et les services locaux.",
'Is Ofsted the only school signal?': 'Ofsted est-il le seul signal scolaire ?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
"Aucun score ne devrait décider d'un coup. Utilisez la carte comme point de départ, puis examinez en détail les informations actuelles sur lécole.",
'See where education, property, transport, and environment data comes from.':
"Découvrez d'où proviennent les données sur l'éducation, l'immobilier, les transports et l'environnement.",
'Explore school-aware searches': "Explorez les recherches adaptées à l'école",
'Check postcode data before you book a viewing':
'Vérifiez les données du code postal avant de réserver une visite',
'Postcode checker - Property, crime, broadband, noise and schools':
'Vérificateur de code postal - Propriété, criminalité, haut débit, bruit et écoles',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
"Vérifiez les prix de l'immobilier au niveau du code postal, les données EPC, la criminalité, le haut débit, le bruit de la route, les écoles, la taxe d'habitation, les commodités et le contexte du temps de trajet.",
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
"Examinez les prix de l'immobilier, le contexte EPC, la criminalité, le haut débit, le bruit de la route, les commodités locales, les écoles, les privations, la taxe d'habitation et les données sur le temps de trajet à partir d'une seule carte indiquant le code postal.",
'Check multiple local signals before visiting a street.':
'Vérifiez plusieurs signaux locaux avant de visiter une rue.',
'Use official and open datasets rather than reputation alone.':
'Utilisez des ensembles de données officiels et ouverts plutôt que la seule réputation.',
'Compare postcodes consistently across England.':
'Comparez les codes postaux de manière cohérente dans toute lAngleterre.',
'Check the street before spending a viewing slot':
"Vérifiez la rue avant de passer un créneau d'observation",
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
"Utilisez le vérificateur de code postal pour examiner l'historique des prix, le contexte local, les commodités, les écoles et les signaux environnementaux avant de consacrer du temps à votre visite.",
'Compare neighbouring postcodes': 'Comparez les codes postaux voisins',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Si un code postal semble prometteur, comparez les zones adjacentes en utilisant les mêmes filtres. Cela révèle souvent si une préoccupation est spécifique à une rue ou fait partie dun schéma plus large.',
'Useful before and alongside listing portals':
'Utile avant et parallèlement aux portails dannonces',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'Les photos de la liste vous en disent rarement assez sur la rue environnante. Perfect Postcode vous offre une vérification du code postal fondée sur des preuves avant de consacrer du temps à une visite.',
'A screening tool, not professional advice':
'Un outil de dépistage, pas un conseil professionnel',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
"Les données sont conçues pour la présélection et la comparaison. Tout achat nécessite toujours des vérifications des annonces actuelles, une diligence raisonnable juridique, des recherches d'inondations, des exigences des prêteurs et des résultats d'enquêtes.",
'What a postcode check can catch': "Ce qu'une vérification du code postal peut détecter",
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
"Une vérification du code postal peut faire apparaître le contexte des prix, les signaux environnementaux, les commodités à proximité et d'autres indicateurs locaux faciles à manquer dans une annonce.",
'What a postcode check cant prove':
"Ce qu'une vérification du code postal ne peut pas prouver",
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Il ne peut pas confirmer létat dune maison, le développement futur, le titre légal, les exigences du prêteur ou lexpérience actuelle au niveau de la rue. Ceux-ci ont encore besoin de contrôles directs.',
'Can I use the checker before a viewing?':
'Puis-je utiliser le vérificateur avant une visite ?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Oui. Cest lun des principaux cas dutilisation : examinez dabord le code postal, puis décidez si le visionnage en vaut la peine.',
'Does the checker include exact property condition?':
'Le vérificateur inclut-il létat exact de la propriété ?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Létat de la propriété nécessite des détails dinscription, des enquêtes et une inspection directe.',
'Can I compare multiple postcodes?': 'Puis-je comparer plusieurs codes postaux ?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Oui. La carte est conçue pour une comparaison cohérente entre les codes postaux.',
'Check postcodes on the map': 'Vérifiez les codes postaux sur la carte',
'Regional guide': 'Guide régional',
'How to compare Birmingham postcodes before a property search':
'Comment comparer les codes postaux de Birmingham avant une recherche de propriété',
'Birmingham property search - Compare postcodes by price and commute':
'Recherche de propriété à Birmingham - Comparez les codes postaux par prix et trajet',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
"Utilisez les données au niveau du code postal pour comparer les prix de l'immobilier à Birmingham, les compromis pour les déplacements domicile-travail, les écoles, la criminalité, le haut débit et les commodités locales avant les visites.",
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
"Les recherches à Birmingham peuvent changer rapidement d'une rue à l'autre. Utilisez des preuves au niveau du code postal pour comparer le budget, les déplacements domicile-travail, les écoles, le bruit, la criminalité et les services locaux avant de décider où regarder les annonces.",
'Start with commute corridors': 'Commencez par les couloirs de déplacement',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Choisissez la destination qui compte, comme un lieu de travail, une gare, une université ou un hôpital, puis comparez les codes postaux accessibles par mode de transport et tranche horaire de trajet.',
'Use commute time as a hard filter before judging price.':
'Utilisez le temps de trajet comme filtre dur avant de juger le prix.',
'Compare public transport with car, cycling, or walking where available.':
"Comparez les transports publics avec la voiture, le vélo ou la marche lorsqu'ils sont disponibles.",
'Check the route manually before booking viewings.':
"Vérifiez l'itinéraire manuellement avant de réserver des visites.",
'Compare price with property type': 'Comparez le prix avec le type de propriété',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'Les prix médians à eux seuls peuvent être trompeurs si la composition immobilière locale change. Ajoutez des filtres de type de propriété, doccupation, de superficie et de prix afin que les zones similaires soient comparées équitablement.',
'Keep family and environment trade-offs visible':
'Gardez les compromis familiaux et environnementaux visibles',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Superposez le contexte scolaire, les parcs, le bruit de la route, le haut débit et les signaux de criminalité au-dessus des filtres de propriété. Il est ainsi plus facile de décider quels compromis sont acceptables.',
'Can Perfect Postcode tell me the best area in Birmingham?':
"Perfect Postcode peut-il m'indiquer le meilleur quartier de Birmingham ?",
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Aucun outil ne peut décider du meilleur quartier pour chaque acheteur. Il permet de comparer les codes postaux avec vos propres contraintes afin que vous puissiez créer une meilleure liste restreinte.',
'Should I use this instead of local knowledge?':
'Dois-je utiliser cela à la place des connaissances locales ?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Non. Utilisez-le pour rechercher et comparer des candidats, puis validez-les avec des visites, des conseils locaux, des listings et des contrôles officiels.',
'Compare price patterns before looking at live listings.':
'Comparez les modèles de prix avant de consulter les annonces en direct.',
'Search by travel time and then layer on property requirements.':
'Recherchez par temps de trajet, puis superposez les exigences de propriété.',
'Understand how to interpret filters and limitations.':
'Comprendre comment interpréter les filtres et les limitations.',
'Compare Birmingham postcodes': 'Comparez les codes postaux de Birmingham',
'How to compare Manchester postcodes for a property search':
'Comment comparer les codes postaux de Manchester pour une recherche de propriété',
'Manchester property search - Compare postcodes before viewing':
'Recherche de propriété à Manchester - Comparez les codes postaux avant de visiter',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Comparez les codes postaux de la région de Manchester par budget, trajet domicile-travail, type de propriété, écoles, haut débit, criminalité, bruit et commodités avant de réserver des visites.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'Une recherche dans la région de Manchester peut couvrir les options du centre-ville, de la banlieue et des navetteurs. Perfect Postcode permet de garder chaque code postal comparable par rapport aux mêmes contraintes de propriété et de vie quotidienne.',
'Use travel time to define the real search area':
'Utiliser le temps de trajet pour définir la véritable zone de recherche',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Commencez par les destinations qui comptent, puis comparez les codes postaux accessibles plutôt que de supposer que chaque lieu à proximité propose le même trajet pratique.',
'Compare housing requirements before lifestyle preferences':
'Comparez les exigences en matière de logement avant les préférences de style de vie',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
"Filtrez par type de propriété, superficie, mode d'occupation et prix avant de juger des équipements. Cela maintient la liste restreinte des maisons qui pourraient fonctionner de manière réaliste.",
'Check local context consistently': 'Vérifiez le contexte local de manière cohérente',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Utilisez le haut débit, la criminalité, le bruit de la route, les parcs, les écoles et les commodités comme signaux comparables. Validez ensuite les candidats les plus forts avec les contrôles locaux en cours.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Puis-je comparer la banlieue de Manchester avec les codes postaux du centre-ville ?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Oui. Utilisez les mêmes filtres de budget, de propriété, de trajet domicile-travail et de contexte local dans les deux cas afin que les compromis restent visibles.',
'Does this include live listings?': 'Cela inclut-il les annonces en direct ?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Non. Utilisez-le pour décider où rechercher, puis utilisez les portails dannonces pour les maisons actuellement à vendre.',
'Move from a broad search brief to specific postcode candidates.':
"Passez d'une recherche générale à des candidats de code postal spécifiques.",
'Data sources': 'Sources de données',
'Review the datasets used for property and local-context comparison.':
'Examinez les ensembles de données utilisés pour la comparaison des propriétés et du contexte local.',
'Check a single postcode before arranging a viewing.':
"Vérifiez un seul code postal avant d'organiser une visite.",
'Compare Manchester postcodes': 'Comparez les codes postaux de Manchester',
'How to compare Bristol postcodes before a property search':
'Comment comparer les codes postaux de Bristol avant une recherche de propriété',
'Bristol property search - Compare postcodes by commute and price':
'Recherche de propriété à Bristol - Comparez les codes postaux par trajet et par prix',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Comparez les codes postaux de Bristol par prix, trajet domicile-travail, taille de la propriété, écoles, haut débit, criminalité, bruit de la route, parcs et commodités avant les visites.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'Les recherches à Bristol impliquent souvent des compromis pointus entre le prix, la durée du trajet, la taille de la propriété et le contexte du quartier. Une comparaison basée sur le code postal permet de garder ces compromis visibles.',
'Make commute constraints explicit': 'Rendre explicites les contraintes de déplacement',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
"Si l'accès au centre, à une gare, à un hôpital, à une université ou à un parc d'activités est important, utilisez d'abord des filtres de temps de trajet, puis comparez les codes postaux restants en fonction des données de propriété.",
'Compare value, not just headline price': 'Comparez la valeur, pas seulement le prix global',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Utilisez ensemble les filtres de prix, de type de propriété et de superficie. Cela permet de distinguer les zones à moindre coût des zones qui contiennent simplement des maisons plus petites ou différentes.',
'Screen environmental and local-service signals':
'Filtrer les signaux environnementaux et de service local',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
"Le bruit de la route, les parcs, le haut débit, la criminalité et les commodités peuvent affecter le fonctionnement quotidien d'une propriété. Utilisez-les comme critères de sélection avant de réserver des visites.",
'Can I use this for commuter villages around Bristol?':
"Puis-je l'utiliser pour les villages de banlieue autour de Bristol ?",
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Oui, lorsque les données relatives au code postal et à la durée du trajet sont disponibles. Vérifiez toujours les itinéraires et les services manuellement avant de prendre une décision.',
'Can this tell me whether a listing is good value?':
'Cela peut-il me dire si une annonce présente un bon rapport qualité-prix ?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
"Il peut fournir un contexte régional, mais une annonce spécifique nécessite toujours des ventes comparables, des vérifications de l'état, des résultats d'enquête et des conseils professionnels, le cas échéant.",
'Search by reachable postcodes before refining by budget and local context.':
"Recherchez par codes postaux accessibles avant d'affiner par budget et contexte local.",
'Understand price patterns before setting listing alerts.':
'Comprenez les modèles de prix avant de définir des alertes dannonces.',
'Privacy and security': 'Confidentialité et sécurité',
'How account and saved-search data is handled in the product.':
'Comment les données de compte et de recherche enregistrées sont gérées dans le produit.',
'Compare Bristol postcodes': 'Comparez les codes postaux de Bristol',
'Trust and coverage': 'Confiance et couverture',
'Perfect Postcode data sources and coverage':
'Sources de données et couverture parfaites du code postal',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Sources de données Perfect Postcode  Propriété, écoles, déplacements domicile-travail et contexte local',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
"Examinez les ensembles de données publiques et officielles utilisées par Perfect Postcode, notamment les prix de l'immobilier, l'EPC, les écoles, la criminalité, le haut débit, le bruit et le contexte du temps de trajet.",
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
"Perfect Postcode combine des ensembles de données sur la propriété, les transports, l'éducation, l'environnement et les services locaux afin que les acheteurs puissent comparer les codes postaux de manière cohérente. Cette page explique à quoi servent les données et où elles doivent être vérifiées.",
'Property and housing context': 'Contexte immobilier et logement',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
"Le produit utilise des ensembles de données sur les transactions immobilières et le contexte du logement pour prendre en charge des filtres tels que le prix de vente, le type de propriété, le mode d'occupation, la superficie, la performance énergétique et la valeur actuelle estimée.",
'Use these fields to compare areas, not as a formal valuation.':
'Utilisez ces champs pour comparer des zones, et non comme une évaluation formelle.',
'Check current listings, title information, lender requirements, and survey results before buying.':
"Vérifiez les annonces actuelles, les informations sur le titre, les exigences du prêteur et les résultats de l'enquête avant d'acheter.",
'Schools, safety, broadband, and environment': 'Écoles, sécurité, haut débit et environnement',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'Les filtres de contexte local permettent de comparer les codes postaux sur des signaux qui affectent la vie quotidienne. Elles doivent être traitées comme des données de sélection et vérifiées par rapport aux sources officielles actuelles pour les décisions.',
'Travel-time data': 'Données sur le temps de trajet',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
"Les filtres de temps de trajet sont conçus pour une comparaison cohérente des zones. La disponibilité des itinéraires, les perturbations, le stationnement, l'accès à pied et les détails des horaires doivent être vérifiés avant de s'engager dans une zone.",
'Why does coverage focus on England?':
'Pourquoi la couverture médiatique se concentre-t-elle sur lAngleterre ?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Plusieurs ensembles de données de base sur la propriété, léducation et le contexte local sont spécifiques à une juridiction. La couverture de lAngleterre rend les comparaisons plus cohérentes.',
'How should I handle stale or missing data?':
'Comment dois-je gérer les données obsolètes ou manquantes ?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Utilisez la carte comme outil de présélection. Si un code postal est important, vérifiez les derniers détails auprès des sources officielles actuelles et dirigez les contrôles locaux.',
'How filters and comparisons should be interpreted.':
'Comment les filtres et les comparaisons doivent être interprétés.',
'Review postcode-level context before a viewing.':
'Examinez le contexte au niveau du code postal avant une visualisation.',
'How saved searches and account data are handled.':
'Comment les recherches enregistrées et les données du compte sont traitées.',
'How to use the map': 'Comment utiliser la carte',
'Methodology for postcode property research':
'Méthodologie de recherche de propriété de code postal',
'Perfect Postcode methodology - How to interpret postcode property data':
'Méthodologie Perfect Postcode - Comment interpréter les données de propriété du code postal',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
"Comprenez comment utiliser les filtres de codes postaux, les estimations de propriété, les données de temps de trajet, le contexte scolaire et les signaux locaux comme outil de liste restreinte pour l'achat d'une maison.",
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode est conçu pour que la présélection de zones soit davantage fondée sur des preuves. Il ne remplace pas les agents immobiliers, les géomètres, les agents de transfert de biens, les prêteurs, les équipes dadmission scolaire ou les contrôles des autorités locales.',
'Start with hard constraints': 'Commencez avec des contraintes strictes',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Commencez par les éléments non négociables tels que le budget, le type de propriété, la superficie, le temps de trajet et les services essentiels. Cela supprime les codes postaux impossibles avant que des préférences plus douces ne soient prises en compte.',
'Use colour layers for trade-offs': 'Utilisez des calques de couleur pour les compromis',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
"Après filtrage, coloriez la carte restante en fonction d'un signal à la fois : prix au mètre carré, bruit de la route, contexte scolaire, temps de trajet, haut débit ou criminalité. Cela rend les compromis plus faciles à discuter.",
'Measure whats working': 'Mesurez ce qui fonctionne',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Utilisez la Search Console et les analyses pour suivre quelles pages publiques sont indexées, quelles requêtes produisent des impressions et quelles pages convertissent les visiteurs en exploration de tableau de bord. Passez en revue Core Web Vitals après chaque modification substantielle du frontend.',
'Can the tool choose the right postcode for me?':
"L'outil peut-il choisir le bon code postal pour moi ?",
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Non. Cela permet de comparer les preuves et de réduire la zone de recherche. La décision finale nécessite des visites directes, des inscriptions à jour, des contrôles juridiques, des enquêtes et un jugement personnel.',
'How should I use estimates?': 'Comment dois-je utiliser les estimations ?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
"Utilisez les estimations comme signaux de comparaison, et non comme évaluations professionnelles ou conseils d'achat.",
'Understand where key filters come from.': "Comprenez d'où viennent les filtres clés.",
'Apply the methodology to price-led area comparison.':
'Appliquez la méthodologie à la comparaison de zones basée sur les prix.',
'Apply the methodology to destination-led search.':
'Appliquez la méthodologie à la recherche basée sur la destination.',
Trust: 'Confiance',
'Privacy and security for saved property searches':
'Confidentialité et sécurité pour les recherches de propriétés enregistrées',
'Perfect Postcode privacy and security - Saved searches and account data':
'Confidentialité et sécurité parfaites du code postal - Recherches enregistrées et données de compte',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
"Découvrez comment Perfect Postcode traite les recherches enregistrées, les données de compte et les flux de recherche de propriété en gardant à l'esprit la confidentialité et la sécurité.",
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'La recherche immobilière peut révéler des priorités personnelles, des budgets et des emplacements. Le produit sépare les pages de référencement publiques des zones réservées aux comptes et marque les itinéraires de tableau de bord/compte privés comme non-index.',
'Public pages and private areas are separated':
'Les pages publiques et les zones privées sont séparées',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
"Les pages marketing, méthodologie, guide et support sont indexables. Le tableau de bord, le compte, les recherches enregistrées, les invitations et les itinéraires d'invitation sont marqués comme non indexés ou bloqués pour l'accès du robot, le cas échéant.",
'Saved search data is account-scoped':
'Les données de recherche enregistrées sont limitées au compte',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'Les recherches et propriétés enregistrées sont destinées à une utilisation connectée. Ils ne sont pas inclus dans le plan du site public et ne doivent pas être explorables en tant que contenu public.',
'Search measurement without exposing private data':
'Rechercher des mesures sans exposer de données privées',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
"La mesure du référencement doit avoir lieu sur les pages publiques à l'aide d'analyses agrégées et de données de la Search Console. Les paramètres de requêtes privées et les vues de compte ne doivent pas devenir des pages de destination indexables.",
'Are saved searches listed in the sitemap?':
'Les recherches enregistrées sont-elles répertoriées dans le plan du site ?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Non. Les pages de référencement publiques sont répertoriées ; le compte et les itinéraires de recherche enregistrés sont intentionnellement exclus.',
'Can private dashboard URLs appear in search?':
'Les URL de tableaux de bord privés peuvent-elles apparaître dans la recherche ?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Ils ne devraient pas être indexés. Le serveur marque les routes privées sans index et le plan du site ne répertorie que les pages publiques.',
'How to use public postcode data responsibly.':
'Comment utiliser les données publiques des codes postaux de manière responsable.',
'What data powers the public comparisons.':
'Quelles données alimentent les comparaisons publiques.',
'Explore public postcode-search workflows.':
'Explorez les workflows publics de recherche de codes postaux.',
},
};
export default fr;

View file

@ -100,6 +100,467 @@ const hi: Translations = {
frequentlyAskedQuestions: 'अक्सर पूछे जाने वाले सवाल',
relatedPages: 'संबंधित पेज',
relatedPagesDesc: 'इन्हीं आंतरिक लिंक से उसी संपत्ति-खोज वर्कफ़्लो को दूसरे कोण से तुलना करें.',
pages: {
'Property price map': 'संपत्ति मूल्य मानचित्र',
'Compare property prices across every postcode in England':
'इंग्लैंड में प्रत्येक पोस्टकोड पर संपत्ति की कीमतों की तुलना करें',
'Property price map for England - Compare postcodes before viewing':
'इंग्लैंड के लिए संपत्ति मूल्य मानचित्र - देखने से पहले पोस्टकोड की तुलना करें',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'लिस्टिंग खोजने से पहले बेची गई कीमतों, अनुमानित वर्तमान मूल्य, प्रति वर्ग मीटर कीमत और अंग्रेजी पोस्टकोड में स्थानीय संदर्भ की तुलना करें।',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode में बेची गई कीमतें, अनुमानित वर्तमान मूल्य, प्रति वर्ग मीटर कीमत, संपत्ति का प्रकार, फर्श क्षेत्र, कार्यकाल और स्थानीय संदर्भ शामिल हैं ताकि खरीदार लिस्टिंग पोर्टल खोलने से पहले यथार्थवादी खोज क्षेत्र पा सकें।',
'Screen historical sale prices and current-value estimates by postcode.':
'पोस्टकोड द्वारा ऐतिहासिक बिक्री मूल्य और वर्तमान-मूल्य अनुमान स्क्रीन करें।',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'मूल्य की तुलना आवागमन, स्कूल, ब्रॉडबैंड, अपराध, शोर और सुविधाओं से करें।',
'Build a shortlist before spending weekends on viewings.':
'देखने पर सप्ताहांत बिताने से पहले एक छोटी सूची बनाएं।',
'Find postcodes that fit the budget before listings appear':
'लिस्टिंग प्रदर्शित होने से पहले ऐसे पोस्टकोड खोजें जो बजट के अनुकूल हों',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'अधिकतम कीमत और संपत्ति के प्रकार से शुरू करें, फिर प्रति वर्ग मीटर कीमत या अनुमानित वर्तमान कीमत के आधार पर मानचित्र को रंग दें। इससे उन क्षेत्रों को उजागर करने में मदद मिलती है जहां समान घरों का ऐतिहासिक रूप से पहुंच के भीतर कारोबार होता रहा है, तब भी जब आज कोई लाइव लिस्टिंग नहीं है।',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'अंतिम ज्ञात बिक्री मूल्य, अनुमानित वर्तमान मूल्य, संपत्ति का प्रकार, कार्यकाल और फर्श क्षेत्र के आधार पर फ़िल्टर करें।',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'क्षेत्र की प्रतिष्ठा पर निर्भर रहने के बजाय समान मानदंड का उपयोग करके आस-पास के पोस्टकोड की तुलना करें।',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'अलर्ट, स्थानीय शोध और देखने की सूची के लिए शॉर्टलिस्ट के रूप में परिणामों का उपयोग करें।',
'Separate cheap from good value': 'सस्ते को अच्छे मूल्य से अलग करें',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'कम कीमत छोटे घरों, कमजोर परिवहन, अधिक शोर या कम स्थानीय सेवाओं को प्रतिबिंबित कर सकती है। मानचित्र उन ट्रेड-ऑफ़ को दृश्यमान रखता है इसलिए सबसे सस्ते पोस्टकोड को स्वचालित रूप से सर्वोत्तम विकल्प के रूप में नहीं माना जाता है।',
'Start from area value, not listing availability':
'क्षेत्र मूल्य से प्रारंभ करें, उपलब्धता सूचीबद्ध करने से नहीं',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'लिस्टिंग पोर्टल केवल आज बिक्री के लिए घर दिखाते हैं। एक पोस्टकोड-स्तरीय संपत्ति मूल्य मानचित्र आपको व्यापक क्षेत्रों की तुलना करने, स्थानीय मूल्य पैटर्न को समझने और उन स्थानों को खोने से बचने की सुविधा देता है जहां अगली उपयुक्त सूची दिखाई दे सकती है।',
'Use prices alongside real constraints': 'वास्तविक बाधाओं के साथ-साथ कीमतों का उपयोग करें',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'बजट अपने आप में शायद ही कभी मायने रखता है। Perfect Postcode यात्रा के समय, स्कूल की गुणवत्ता, संपत्ति के आकार, ऊर्जा प्रदर्शन, स्थानीय वातावरण और सेवाओं के साथ मूल्य फ़िल्टर को जोड़ता है ताकि आपकी शॉर्टलिस्ट यह दर्शाए कि आप वास्तव में कैसे रहना चाहते हैं।',
'What the price data is for': 'मूल्य डेटा किस लिए है',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'क्षेत्रों की तुलना करने और उम्मीदवारों की खोज करने के लिए मानचित्र का उपयोग करें। यह कोई मूल्यांकन, बंधक निर्णय, सर्वेक्षण, कानूनी खोज या लाइव लिस्टिंग फ़ीड नहीं है।',
'How to validate a promising area': 'एक आशाजनक क्षेत्र का सत्यापन कैसे करें',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'एक बार जब कोई पोस्टकोड आशाजनक लगे, तो निर्णय लेने से पहले वर्तमान लिस्टिंग, बिक्री-मूल्य तुलनीय, एजेंट विवरण, बाढ़ खोज, कानूनी पैक, सर्वेक्षण और स्थानीय प्राधिकारी जानकारी की जांच करें।',
'Is this a replacement for Rightmove or Zoopla?':
'क्या यह राइटमूव या ज़ूप्ला का प्रतिस्थापन है?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'नहीं, इसे लिस्टिंग पोर्टल से पहले और साथ में उपयोग करें। Perfect Postcode यह तय करने में मदद करता है कि कहां देखना है; लिस्टिंग पोर्टल दिखाते हैं कि वर्तमान में बिक्री के लिए क्या है।',
'Can I compare price with schools or commute time?':
'क्या मैं कीमत की तुलना स्कूलों या आवागमन के समय से कर सकता हूँ?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'हाँ। मूल्य फ़िल्टर को यात्रा-समय, स्कूल, अपराध, ब्रॉडबैंड, सड़क-शोर, सुविधाएं और पर्यावरण फ़िल्टर के साथ जोड़ा जा सकता है।',
'Does the map cover all of the UK?': 'क्या मानचित्र पूरे ब्रिटेन को कवर करता है?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'वर्तमान उत्पाद इंग्लैंड पर केंद्रित है क्योंकि कई मुख्य संपत्ति और पोस्टकोड डेटासेट इंग्लैंड-विशिष्ट हैं।',
'Birmingham property search guide': 'बर्मिंघम संपत्ति खोज गाइड',
'A worked example for balancing price, commute, and family trade-offs.':
'मूल्य, आवागमन और पारिवारिक व्यापार-बंद को संतुलित करने के लिए एक कारगर उदाहरण।',
'Data sources and coverage': 'डेटा स्रोत और कवरेज',
'See which datasets sit behind the postcode filters and where they have limits.':
'देखें कि कौन से डेटासेट पोस्टकोड फ़िल्टर के पीछे बैठते हैं और उनकी सीमाएँ कहाँ हैं।',
Methodology: 'क्रियाविधि',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'समझें कि मानचित्र का उद्देश्य शॉर्टलिस्टिंग का समर्थन करना है, न कि उचित परिश्रम को प्रतिस्थापित करना।',
'Postcode checker': 'पोस्टकोड चेकर',
'Check one postcode before you spend time on a viewing.':
'देखने में समय बर्बाद करने से पहले एक पोस्टकोड जांच लें।',
'Explore the property map': 'संपत्ति मानचित्र का अन्वेषण करें',
'Postcode property search': 'पोस्टकोड संपत्ति खोज',
'Find postcodes that match your property search criteria':
'ऐसे पोस्टकोड ढूंढें जो आपकी संपत्ति खोज मानदंडों से मेल खाते हों',
'Postcode property search - Find areas that match your criteria':
'पोस्टकोड संपत्ति खोज - ऐसे क्षेत्र खोजें जो आपके मानदंडों से मेल खाते हों',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'प्रत्येक पोस्टकोड को बजट, संपत्ति के प्रकार, फर्श क्षेत्र, कार्यकाल, आवागमन, स्कूल, अपराध, ब्रॉडबैंड, शोर, पार्क और स्थानीय सुविधाओं के आधार पर खोजें।',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'एक-एक करके क्षेत्रों की जाँच करने के बजाय प्रत्येक पोस्टकोड को बजट, संपत्ति के प्रकार, आकार, कार्यकाल, आवागमन, स्कूल, अपराध, ब्रॉडबैंड, शोर, पार्क और स्थानीय सुविधाओं के आधार पर खोजें।',
'Filter England-wide postcode data from one map.':
'एक मानचित्र से इंग्लैंड-व्यापी पोस्टकोड डेटा फ़िल्टर करें।',
'Shortlist unfamiliar areas with comparable evidence.':
'तुलनीय साक्ष्यों के साथ अपरिचित क्षेत्रों को संक्षिप्त करें।',
'Save and share search areas before booking viewings.':
'बुकिंग देखने से पहले खोज क्षेत्रों को सहेजें और साझा करें।',
'Turn a broad brief into postcode candidates':
'एक व्यापक संक्षिप्त विवरण को पोस्टकोड उम्मीदवारों में बदलें',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'पहले व्यावहारिक बाधाएँ दर्ज करें: बजट, संपत्ति का आकार, कार्यकाल, यात्रा का समय, स्कूल की ज़रूरतें, ब्रॉडबैंड, और सड़क के शोर या अपराध के स्तर के लिए सहनशीलता। मानचित्र उन स्थानों को हटा देता है जो उन बाधाओं को विफल करते हैं और शेष विकल्पों को तुलनीय बनाए रखते हैं।',
'Relax one constraint at a time': 'एक समय में एक बाधा में ढील दें',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'जब खोज बहुत संकीर्ण हो जाए, तो एक फ़िल्टर ढीला करें और देखें कि कौन से पोस्टकोड फिर से दिखाई देते हैं। यह अनुमान पर भरोसा करने के बजाय समझौते को स्पष्ट करता है।',
'Turn vague areas into specific postcodes': 'अस्पष्ट क्षेत्रों को विशिष्ट पोस्टकोड में बदलें',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'व्यापक शहर या नगर खोजें सड़कों के बीच बड़े अंतर को छिपाती हैं। Perfect Postcode आपको सामान्य क्षेत्र से पोस्टकोड तक जाने में मदद करता है जो आपकी कठिन आवश्यकताओं को पूरा करता है।',
'Keep trade-offs visible': 'ट्रेड-ऑफ़ को दृश्यमान रखें',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'जब बहुत अधिक या बहुत कम मिलान हों, तो एक समय में एक बाधा को समायोजित करें और देखें कि कौन से पोस्टकोड फिर से दिखाई देते हैं। यह अनुमान पर भरोसा करने के बजाय समझौतों को स्पष्ट करता है।',
'Why postcode-level comparison matters': 'पोस्टकोड-स्तरीय तुलना क्यों मायने रखती है',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'पास के दो पोस्टकोड स्कूलों, सड़क के शोर, परिवहन पहुंच, संपत्ति मिश्रण और कीमत पर भिन्न हो सकते हैं। पोस्टकोड स्तर पर तुलना करने से पूरे शहर को एक समान बाज़ार मानने की संभावना कम हो जाती है।',
'How to use the results': 'परिणामों का उपयोग कैसे करें',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'मेल खाते पोस्टकोड को एक शोध कतार के रूप में मानें: लाइव लिस्टिंग की जाँच करें, सड़कों पर जाएँ, स्कूलों और प्रवेशों की पुष्टि करें, और वर्तमान आधिकारिक स्रोतों की समीक्षा करें।',
'Can I save a postcode property search?': 'क्या मैं पोस्टकोड संपत्ति खोज सहेज सकता हूँ?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'हाँ। लाइसेंस प्राप्त उपयोगकर्ता खोजों को सहेज सकते हैं और बाद में उन पर वापस लौट सकते हैं। सहेजी गई खोजें शॉर्टलिस्ट और तुलना नोट्स के लिए डिज़ाइन की गई हैं।',
'Can I search without knowing the area?': 'क्या मैं क्षेत्र जाने बिना खोज कर सकता हूँ?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'हाँ। मानचित्र को उन अपरिचित क्षेत्रों को प्रदर्शित करने के लिए डिज़ाइन किया गया है जो व्यावहारिक बाधाओं से मेल खाते हैं, न कि केवल उन स्थानों के लिए जिन्हें आप पहले से जानते हैं।',
'Are the results live property listings?': 'क्या परिणाम लाइव संपत्ति सूची हैं?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'नहीं, टूल पोस्टकोड डेटा और ऐतिहासिक/प्रासंगिक संपत्ति संकेतों की तुलना करता है। वर्तमान उपलब्धता के लिए आपको अभी भी लिस्टिंग पोर्टल की आवश्यकता है।',
'Manchester property search guide': 'मैनचेस्टर संपत्ति खोज गाइड',
'A regional guide for narrowing a broad search around Greater Manchester.':
'ग्रेटर मैनचेस्टर के आसपास व्यापक खोज को सीमित करने के लिए एक क्षेत्रीय मार्गदर्शिका।',
'Start a postcode search': 'पोस्टकोड खोज प्रारंभ करें',
'Commute property search': 'यात्रा संपत्ति खोज',
'Search for places to live by commute time':
'आवागमन के समय के अनुसार रहने के लिए स्थान खोजें',
'Commute property search - Find places to live by travel time':
'यात्रा संपत्ति की खोज - यात्रा के समय के अनुसार रहने के लिए स्थान खोजें',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'आवागमन के समय के अनुसार पोस्टकोड फ़िल्टर करें, फिर एक मानचित्र पर कीमत, स्कूल, सुरक्षा, ब्रॉडबैंड, सड़क शोर, पार्क और संपत्ति डेटा की तुलना करें।',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'मॉडल की गई कार, साइकिल चलाना, पैदल चलना और सार्वजनिक परिवहन यात्रा के समय के आधार पर पोस्टकोड फ़िल्टर करें, फिर संपत्ति की कीमत, स्कूल, अपराध, ब्रॉडबैंड, शोर और स्थानीय सुविधाओं पर परत लगाएं।',
'Compare reachable postcodes by realistic travel-time bands.':
'यथार्थवादी यात्रा-समय बैंड द्वारा पहुंच योग्य पोस्टकोड की तुलना करें।',
'Search by destination first, then filter for property and neighbourhood fit.':
'पहले गंतव्य के आधार पर खोजें, फिर संपत्ति और पड़ोस के अनुसार फ़िल्टर करें।',
'Avoid areas that look close on a map but fail the daily journey.':
'उन क्षेत्रों से बचें जो मानचित्र पर नज़दीक दिखते हैं लेकिन दैनिक यात्रा में विफल होते हैं।',
'Start with the destination that matters': 'उस गंतव्य से शुरुआत करें जो मायने रखता है',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'आवागमन गंतव्य, परिवहन मोड और समय सीमा चुनें, फिर संपत्ति फ़िल्टर जोड़ें। यदि दैनिक यात्रा काम नहीं करती है तो यह सस्ते दिखने वाले क्षेत्र को शॉर्टलिस्ट तक पहुंचने से रोकता है।',
'Compare the commute against the rest of daily life':
'दैनिक जीवन के बाकी हिस्सों से आवागमन की तुलना करें',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'यदि संपत्ति का आकार, स्कूल का संदर्भ, सुरक्षा सीमा, ब्रॉडबैंड, या सड़क-शोर जोखिम फिट नहीं बैठता है तो तेज़ आवागमन पर्याप्त नहीं है। मानचित्र उन संकेतों को एक साथ रखता है।',
'Commute from postcodes, not just place names':
'केवल स्थान के नाम से नहीं, बल्कि पोस्टकोड से यात्रा करें',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'एक ही शहर की दो सड़कों पर स्टेशन पहुंच, सड़क मार्ग और सार्वजनिक परिवहन विकल्प बहुत भिन्न हो सकते हैं। पोस्टकोड-स्तरीय यात्रा-समय फ़िल्टरिंग उस अंतर को दृश्यमान रखता है।',
'Balance journey time with the rest of the move':
'यात्रा के समय को शेष चाल के साथ संतुलित करें',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'तेज़ आवागमन तभी सहायक होता है जब क्षेत्र आपके बजट, आवास आवश्यकताओं, स्कूल की प्राथमिकताओं, सुरक्षा सीमा, ब्रॉडबैंड आवश्यकता और सड़क शोर के प्रति सहनशीलता के अनुरूप हो।',
'How travel-time filters should be interpreted':
'यात्रा-समय फ़िल्टर की व्याख्या कैसे की जानी चाहिए',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'यात्रा-समय मॉडलिंग लगातार क्षेत्रों की तुलना करने के लिए उपयोगी है। प्रतिबद्ध होने से पहले, वर्तमान समय सारिणी, व्यवधान पैटर्न, पार्किंग, साइकिल चलाने की स्थिति और पैदल चलने के मार्गों की जांच करें।',
'Why commute filters are combined with property data':
'आवागमन फ़िल्टर को संपत्ति डेटा के साथ क्यों जोड़ा जाता है?',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'यात्रा खोज तब सबसे उपयोगी होती है जब यह असंभव क्षेत्रों को हटा देती है और साथ ही यह भी दिखाती है कि क्या शेष विकल्प किफायती और रहने योग्य हैं।',
'Can I compare car, cycling, walking, and public transport?':
'क्या मैं कार, साइकिल चलाना, पैदल चलना और सार्वजनिक परिवहन की तुलना कर सकता हूँ?',
'The product supports multiple travel modes where precomputed destination data is available.':
'उत्पाद कई यात्रा मोड का समर्थन करता है जहां पूर्व-गणना गंतव्य डेटा उपलब्ध है।',
'Are travel times exact?': 'क्या यात्रा का समय सटीक है?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'नहीं, उन्हें एक सुसंगत तुलना मॉडल के रूप में मानें, फिर देखने या खरीदारी का निर्णय लेने से पहले वास्तविक मार्ग को सत्यापित करें।',
'Can I combine commute filters with schools and price?':
'क्या मैं स्कूलों और कीमत के साथ आवागमन फ़िल्टर जोड़ सकता हूँ?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'हाँ। आवागमन फ़िल्टर को संपत्ति की कीमत, आकार, स्कूल, ब्रॉडबैंड, अपराध, सुविधाओं और पर्यावरण संकेतों के साथ स्तरित किया जा सकता है।',
'Bristol property search guide': 'ब्रिस्टल संपत्ति खोज गाइड',
'A worked example for balancing city access, price, and local context.':
'शहर की पहुंच, कीमत और स्थानीय संदर्भ को संतुलित करने के लिए एक कारगर उदाहरण।',
'Search by commute time': 'आवागमन समय के आधार पर खोजें',
'Schools and property search': 'स्कूल और संपत्ति खोज',
'Find property search areas with schools and family trade-offs in view':
'स्कूलों और पारिवारिक लेन-देन को ध्यान में रखते हुए संपत्ति खोज क्षेत्र खोजें',
'School property search - Compare postcodes for family moves':
'स्कूल संपत्ति खोज - पारिवारिक स्थानांतरण के लिए पोस्टकोड की तुलना करें',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'देखने के लिए शॉर्टलिस्ट बनाने से पहले आस-पास के स्कूलों, संपत्ति के आकार, कीमतों, पार्कों, सुरक्षा, आवागमन और स्थानीय सुविधाओं की तुलना करें।',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'अपनी देखने की सूची को सीमित करने से पहले आस-पास की ऑफस्टेड रेटिंग, शिक्षा संदर्भ, संपत्ति का आकार, बजट, सुरक्षा, पार्क, आवागमन और स्थानीय सुविधाओं की तुलना करें।',
'Filter for nearby school quality alongside housing requirements.':
'आवास आवश्यकताओं के साथ-साथ नजदीकी स्कूल की गुणवत्ता के लिए फ़िल्टर करें।',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'अपरिचित पोस्टकोड में परिवार-अनुकूल व्यापार-बंदों की तुलना करें।',
'Use the map as a shortlist tool before checking admissions and catchments.':
'प्रवेश और कैचमेंट की जांच करने से पहले मानचित्र को शॉर्टलिस्ट टूल के रूप में उपयोग करें।',
'Use school context without ignoring the home':
'घर को नज़रअंदाज़ किए बिना स्कूल के संदर्भ का उपयोग करें',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'संपत्ति के आकार, बजट और आवागमन की बाधाओं से शुरुआत करें, फिर पास के स्कूल की गुणवत्ता और स्थानीय संदर्भ पर ध्यान दें। यह स्कूल-आधारित खोजों को सामर्थ्य या दैनिक जीवन की समस्याओं को छिपाने से रोकता है।',
'Verify admissions before deciding': 'निर्णय लेने से पहले प्रवेश सत्यापित करें',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'स्कूल डेटा आशाजनक क्षेत्रों की ओर इशारा कर सकता है, लेकिन प्रवेश नियम और कैचमेंट बदल सकते हैं। स्कूलों और स्थानीय अधिकारियों के साथ वर्तमान व्यवस्था की पुष्टि करें।',
'School quality is one part of the shortlist': 'स्कूल की गुणवत्ता शॉर्टलिस्ट का एक हिस्सा है',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode आपको आस-पास के स्कूल डेटा की तुलना अन्य व्यावहारिक बाधाओं से करने में मदद करता है जो पारिवारिक स्थानांतरण को आकार देते हैं: स्थान, मूल्य, आवागमन, पार्क, सुरक्षा और स्थानीय सेवाएं।',
'Check catchments before making decisions':
'निर्णय लेने से पहले जलग्रहण क्षेत्रों की जाँच करें',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'प्रवेश नियम और जलग्रहण सीमाएँ बदल सकती हैं। आशाजनक क्षेत्रों को खोजने के लिए पोस्टकोड-स्तरीय स्कूल डेटा का उपयोग करें, फिर स्कूल या स्थानीय प्राधिकरण के साथ वर्तमान प्रवेश विवरण सत्यापित करें।',
'How to treat school filters': 'स्कूल फ़िल्टर का इलाज कैसे करें',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'शोध को सीमित करने के लिए स्कूल फ़िल्टर का उपयोग करें, न कि प्रवेश पात्रता मानने के लिए। रेटिंग, दूरी, प्रवेश मानदंड और स्कूल की क्षमता सभी की जाँच वर्तमान आधिकारिक स्रोतों से की जानी चाहिए।',
'Family trade-offs to compare': 'तुलना करने के लिए पारिवारिक व्यापार-बंद',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'स्कूलों को पार्क, सड़क के शोर, अपराध, संपत्ति के आकार, आवागमन, ब्रॉडबैंड और कीमत के साथ मिलाएं ताकि शॉर्टलिस्ट पूरे कदम को प्रतिबिंबित कर सके।',
'Does this show school catchment guarantees?': 'क्या यह स्कूल कैचमेंट गारंटी दिखाता है?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'नहीं, यह आशाजनक क्षेत्रों की पहचान करने में मदद करता है, लेकिन कैचमेंट और प्रवेश को स्कूल या स्थानीय प्राधिकरण से सत्यापित किया जाना चाहिए।',
'Can I combine school filters with parks and safety?':
'क्या मैं स्कूल फ़िल्टर को पार्क और सुरक्षा के साथ जोड़ सकता हूँ?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'हाँ। स्कूल-जागरूक खोज को अपराध, पार्क, आवागमन, कीमत, संपत्ति का आकार और स्थानीय सेवाओं के साथ जोड़ा जा सकता है।',
'Is Ofsted the only school signal?': 'क्या ऑफस्टेड एकमात्र स्कूल सिग्नल है?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'किसी एक अंक से किसी चाल का निर्णय नहीं होना चाहिए। शुरुआती बिंदु के रूप में मानचित्र का उपयोग करें, फिर वर्तमान स्कूल जानकारी की विस्तार से समीक्षा करें।',
'See where education, property, transport, and environment data comes from.':
'देखें कि शिक्षा, संपत्ति, परिवहन और पर्यावरण डेटा कहाँ से आता है।',
'Explore school-aware searches': 'स्कूल-जागरूक खोजों का अन्वेषण करें',
'Check postcode data before you book a viewing':
'देखने की बुकिंग करने से पहले पोस्टकोड डेटा की जाँच करें',
'Postcode checker - Property, crime, broadband, noise and schools':
'पोस्टकोड चेकर - संपत्ति, अपराध, ब्रॉडबैंड, शोर और स्कूल',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'पोस्टकोड-स्तरीय संपत्ति की कीमतें, ईपीसी डेटा, अपराध, ब्रॉडबैंड, सड़क शोर, स्कूल, परिषद कर, सुविधाएं और यात्रा-समय संदर्भ की जांच करें।',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'एक पोस्टकोड-प्रथम मानचित्र से संपत्ति की कीमतें, ईपीसी संदर्भ, अपराध, ब्रॉडबैंड, सड़क शोर, स्थानीय सुविधाएं, स्कूल, अभाव, परिषद कर और यात्रा-समय डेटा की समीक्षा करें।',
'Check multiple local signals before visiting a street.':
'किसी सड़क पर जाने से पहले कई स्थानीय सिग्नलों की जाँच करें।',
'Use official and open datasets rather than reputation alone.':
'केवल प्रतिष्ठा के बजाय आधिकारिक और खुले डेटासेट का उपयोग करें।',
'Compare postcodes consistently across England.':
'पूरे इंग्लैंड में लगातार पोस्टकोड की तुलना करें।',
'Check the street before spending a viewing slot':
'देखने का स्लॉट खर्च करने से पहले सड़क की जाँच करें',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'यात्रा के लिए समय निर्धारित करने से पहले मूल्य इतिहास, स्थानीय संदर्भ, सुविधाओं, स्कूलों और पर्यावरण संकेतों की समीक्षा करने के लिए पोस्टकोड चेकर का उपयोग करें।',
'Compare neighbouring postcodes': 'पड़ोसी पोस्टकोड की तुलना करें',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'यदि एक पोस्टकोड आशाजनक लगता है, तो उसी फ़िल्टर का उपयोग करके आसन्न क्षेत्रों की तुलना करें। इससे अक्सर पता चलता है कि कोई चिंता सड़क-विशिष्ट है या व्यापक पैटर्न का हिस्सा है।',
'Useful before and alongside listing portals': 'लिस्टिंग पोर्टल से पहले और साथ में उपयोगी',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'लिस्टिंग फ़ोटो शायद ही आपको आस-पास की सड़क के बारे में पर्याप्त जानकारी देती हो। देखने के लिए समय देने से पहले Perfect Postcode आपको साक्ष्य-संचालित पोस्टकोड जांच देता है।',
'A screening tool, not professional advice': 'एक स्क्रीनिंग टूल, पेशेवर सलाह नहीं',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'डेटा को शॉर्टलिस्टिंग और तुलना के लिए डिज़ाइन किया गया है। किसी भी खरीदारी के लिए अभी भी वर्तमान लिस्टिंग जांच, कानूनी उचित परिश्रम, बाढ़ खोज, ऋणदाता आवश्यकताओं और सर्वेक्षण निष्कर्षों की आवश्यकता होती है।',
'What a postcode check can catch': 'एक पोस्टकोड जांच क्या पकड़ सकती है',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'एक पोस्टकोड जांच से मूल्य संदर्भ, पर्यावरणीय संकेत, आस-पास की सुविधाएं और अन्य स्थानीय संकेतक सामने आ सकते हैं जिन्हें सूची में शामिल करना आसान है।',
'What a postcode check cant prove': 'पोस्टकोड जांच क्या साबित नहीं कर सकती',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'यह घर की स्थिति, भविष्य के विकास, कानूनी स्वामित्व, ऋणदाता आवश्यकताओं या वर्तमान सड़क-स्तरीय अनुभव की पुष्टि नहीं कर सकता है। उन्हें अभी भी सीधी जांच की जरूरत है।',
'Can I use the checker before a viewing?':
'क्या मैं देखने से पहले चेकर का उपयोग कर सकता हूँ?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'हाँ। यह मुख्य उपयोग मामलों में से एक है: पहले पोस्टकोड को स्क्रीन करें, फिर तय करें कि देखना समय के लायक है या नहीं।',
'Does the checker include exact property condition?':
'क्या चेकर में संपत्ति की सटीक स्थिति शामिल है?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'नहीं, संपत्ति की स्थिति के लिए लिस्टिंग विवरण, सर्वेक्षण और प्रत्यक्ष निरीक्षण की आवश्यकता होती है।',
'Can I compare multiple postcodes?': 'क्या मैं अनेक पोस्टकोड की तुलना कर सकता हूँ?',
'Yes. The map is designed for consistent comparison across postcodes.':
'हाँ। मानचित्र को सभी पोस्टकोडों में लगातार तुलना के लिए डिज़ाइन किया गया है।',
'Check postcodes on the map': 'मानचित्र पर पोस्टकोड जांचें',
'Regional guide': 'क्षेत्रीय मार्गदर्शक',
'How to compare Birmingham postcodes before a property search':
'संपत्ति खोज से पहले बर्मिंघम पोस्टकोड की तुलना कैसे करें',
'Birmingham property search - Compare postcodes by price and commute':
'बर्मिंघम संपत्ति खोज - कीमत और आवागमन के आधार पर पोस्टकोड की तुलना करें',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'देखने से पहले बर्मिंघम संपत्ति की कीमतों, आवागमन व्यापार-बंद, स्कूलों, अपराध, ब्रॉडबैंड और स्थानीय सुविधाओं की तुलना करने के लिए पोस्टकोड-स्तरीय डेटा का उपयोग करें।',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'बर्मिंघम खोजें एक सड़क से दूसरी सड़क पर तेज़ी से बदल सकती हैं। लिस्टिंग कहाँ देखनी है यह तय करने से पहले बजट, आवागमन, स्कूल, शोर, अपराध और स्थानीय सेवाओं की तुलना करने के लिए पोस्टकोड-स्तरीय साक्ष्य का उपयोग करें।',
'Start with commute corridors': 'आवागमन गलियारों से शुरुआत करें',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'वह गंतव्य चुनें जो महत्वपूर्ण हो, जैसे कार्यस्थल, स्टेशन, विश्वविद्यालय, या अस्पताल, फिर परिवहन मोड और यात्रा-समय बैंड द्वारा पहुंच योग्य पोस्टकोड की तुलना करें।',
'Use commute time as a hard filter before judging price.':
'कीमत तय करने से पहले आवागमन के समय को एक कठिन फिल्टर के रूप में उपयोग करें।',
'Compare public transport with car, cycling, or walking where available.':
'जहां उपलब्ध हो वहां सार्वजनिक परिवहन की तुलना कार, साइकिल या पैदल चलने से करें।',
'Check the route manually before booking viewings.':
'बुकिंग देखने से पहले मैन्युअल रूप से मार्ग की जाँच करें।',
'Compare price with property type': 'संपत्ति के प्रकार के साथ कीमत की तुलना करें',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'यदि स्थानीय संपत्ति मिश्रण बदलता है तो औसत कीमतें अकेले भ्रामक हो सकती हैं। संपत्ति का प्रकार, कार्यकाल, फर्श क्षेत्र और मूल्य फ़िल्टर जोड़ें ताकि समान क्षेत्रों की तुलना निष्पक्ष रूप से की जा सके।',
'Keep family and environment trade-offs visible':
'परिवार और पर्यावरण के बीच के संबंधों को स्पष्ट रखें',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'संपत्ति फ़िल्टर के शीर्ष पर स्कूल संदर्भ, पार्क, सड़क शोर, ब्रॉडबैंड और अपराध सिग्नल परत करें। इससे यह तय करना आसान हो जाता है कि कौन से समझौते स्वीकार्य हैं।',
'Can Perfect Postcode tell me the best area in Birmingham?':
'क्या Perfect Postcode मुझे बर्मिंघम में सबसे अच्छा क्षेत्र बता सकता है?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'कोई भी उपकरण प्रत्येक खरीदार के लिए सर्वोत्तम क्षेत्र का निर्णय नहीं कर सकता। यह आपकी अपनी बाधाओं के विरुद्ध पोस्टकोड की तुलना करने में मदद करता है ताकि आप एक बेहतर शॉर्टलिस्ट बना सकें।',
'Should I use this instead of local knowledge?':
'क्या मुझे स्थानीय ज्ञान के स्थान पर इसका उपयोग करना चाहिए?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'नहीं, इसका उपयोग उम्मीदवारों को खोजने और तुलना करने के लिए करें, फिर उन्हें विजिट, स्थानीय सलाह, लिस्टिंग और आधिकारिक जांच के साथ मान्य करें।',
'Compare price patterns before looking at live listings.':
'लाइव लिस्टिंग देखने से पहले मूल्य पैटर्न की तुलना करें।',
'Search by travel time and then layer on property requirements.':
'यात्रा के समय के आधार पर खोजें और फिर संपत्ति की आवश्यकताओं के आधार पर खोजें।',
'Understand how to interpret filters and limitations.':
'समझें कि फ़िल्टर और सीमाओं की व्याख्या कैसे करें।',
'Compare Birmingham postcodes': 'बर्मिंघम पोस्टकोड की तुलना करें',
'How to compare Manchester postcodes for a property search':
'संपत्ति खोज के लिए मैनचेस्टर पोस्टकोड की तुलना कैसे करें',
'Manchester property search - Compare postcodes before viewing':
'मैनचेस्टर संपत्ति खोज - देखने से पहले पोस्टकोड की तुलना करें',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'बुकिंग देखने से पहले बजट, आवागमन, संपत्ति के प्रकार, स्कूल, ब्रॉडबैंड, अपराध, शोर और सुविधाओं के आधार पर मैनचेस्टर-क्षेत्र के पोस्टकोड की तुलना करें।',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'मैनचेस्टर-क्षेत्र की खोज शहर-केंद्र, उपनगरीय और कम्यूटर विकल्पों तक फैली हो सकती है। Perfect Postcode प्रत्येक पोस्टकोड को समान संपत्ति और दैनिक जीवन की बाधाओं के मुकाबले तुलनीय रखने में मदद करता है।',
'Use travel time to define the real search area':
'वास्तविक खोज क्षेत्र को परिभाषित करने के लिए यात्रा समय का उपयोग करें',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'उन गंतव्यों से शुरू करें जो मायने रखते हैं, फिर यह मानने के बजाय कि हर नजदीकी स्थान की व्यावहारिक यात्रा समान है, पहुंच योग्य पोस्टकोड की तुलना करें।',
'Compare housing requirements before lifestyle preferences':
'जीवनशैली प्राथमिकताओं से पहले आवास आवश्यकताओं की तुलना करें',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'सुविधाओं का आकलन करने से पहले संपत्ति के प्रकार, फर्श क्षेत्र, कार्यकाल और कीमत के आधार पर फ़िल्टर करें। यह शॉर्टलिस्ट को उन घरों पर आधारित रखता है जो वास्तविक रूप से काम कर सकते हैं।',
'Check local context consistently': 'स्थानीय संदर्भ की लगातार जाँच करें',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'ब्रॉडबैंड, अपराध, सड़क शोर, पार्क, स्कूल और सुविधाओं को तुलनीय सिग्नल के रूप में उपयोग करें। फिर वर्तमान स्थानीय जांच के साथ सबसे मजबूत उम्मीदवारों को मान्य करें।',
'Can I compare Manchester suburbs with city-centre postcodes?':
'क्या मैं मैनचेस्टर उपनगरों की तुलना सिटी-सेंटर पोस्टकोड से कर सकता हूँ?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'हाँ। दोनों में समान बजट, संपत्ति, आवागमन और स्थानीय-संदर्भ फ़िल्टर का उपयोग करें ताकि ट्रेड-ऑफ़ दिखाई देता रहे।',
'Does this include live listings?': 'क्या इसमें लाइव लिस्टिंग शामिल है?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'नहीं, इसका उपयोग यह तय करने के लिए करें कि कहां खोजना है, फिर बिक्री के लिए वर्तमान घरों के लिए लिस्टिंग पोर्टल का उपयोग करें।',
'Move from a broad search brief to specific postcode candidates.':
'व्यापक खोज संक्षिप्त से विशिष्ट पोस्टकोड उम्मीदवारों की ओर बढ़ें।',
'Data sources': 'डेटा स्रोत',
'Review the datasets used for property and local-context comparison.':
'संपत्ति और स्थानीय-संदर्भ तुलना के लिए उपयोग किए गए डेटासेट की समीक्षा करें।',
'Check a single postcode before arranging a viewing.':
'देखने की व्यवस्था करने से पहले एक पोस्टकोड की जाँच करें।',
'Compare Manchester postcodes': 'मैनचेस्टर पोस्टकोड की तुलना करें',
'How to compare Bristol postcodes before a property search':
'संपत्ति खोज से पहले ब्रिस्टल पोस्टकोड की तुलना कैसे करें',
'Bristol property search - Compare postcodes by commute and price':
'ब्रिस्टल संपत्ति खोज - यात्रा और कीमत के आधार पर पोस्टकोड की तुलना करें',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'देखने से पहले कीमत, आवागमन, संपत्ति के आकार, स्कूल, ब्रॉडबैंड, अपराध, सड़क शोर, पार्क और सुविधाओं के आधार पर ब्रिस्टल पोस्टकोड की तुलना करें।',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'ब्रिस्टल खोजों में अक्सर कीमत, यात्रा के समय, संपत्ति के आकार और पड़ोस के संदर्भ के बीच तीव्र आदान-प्रदान शामिल होता है। पोस्टकोड-पहली तुलना उन ट्रेड-ऑफ़ को दृश्यमान रखती है।',
'Make commute constraints explicit': 'आवागमन संबंधी बाधाओं को स्पष्ट करें',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'यदि केंद्र, स्टेशन, अस्पताल, विश्वविद्यालय या बिजनेस पार्क तक पहुंच मायने रखती है, तो पहले यात्रा-समय फ़िल्टर का उपयोग करें और फिर संपत्ति डेटा द्वारा शेष पोस्टकोड की तुलना करें।',
'Compare value, not just headline price': 'मूल्य की तुलना करें, न कि केवल मुख्य मूल्य की',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'मूल्य, संपत्ति प्रकार और फर्श-क्षेत्र फ़िल्टर का एक साथ उपयोग करें। इससे कम लागत वाले क्षेत्रों को उन क्षेत्रों से अलग करने में मदद मिलती है जिनमें छोटे या अलग-अलग घर होते हैं।',
'Screen environmental and local-service signals':
'पर्यावरण और स्थानीय-सेवा संकेतों को स्क्रीन करें',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'सड़क का शोर, पार्क, ब्रॉडबैंड, अपराध और सुविधाएं प्रभावित कर सकती हैं कि कोई संपत्ति दिन-प्रतिदिन काम करती है या नहीं। बुकिंग देखने से पहले उन्हें स्क्रीनिंग मानदंड के रूप में उपयोग करें।',
'Can I use this for commuter villages around Bristol?':
'क्या मैं इसका उपयोग ब्रिस्टल के आसपास के कम्यूटर गांवों के लिए कर सकता हूं?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'हां, जहां प्रासंगिक पोस्टकोड और यात्रा-समय डेटा उपलब्ध है। निर्णय लेने से पहले हमेशा मार्गों और सेवाओं को मैन्युअल रूप से सत्यापित करें।',
'Can this tell me whether a listing is good value?':
'क्या यह मुझे बता सकता है कि क्या कोई सूची अच्छा मूल्य है?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'यह क्षेत्र का संदर्भ प्रदान कर सकता है, लेकिन एक विशिष्ट सूची को अभी भी तुलनीय बिक्री, स्थिति जांच, सर्वेक्षण निष्कर्ष और जहां उपयुक्त हो, पेशेवर सलाह की आवश्यकता होती है।',
'Search by reachable postcodes before refining by budget and local context.':
'बजट और स्थानीय संदर्भ के अनुसार परिष्कृत करने से पहले पहुंच योग्य पोस्टकोड द्वारा खोजें।',
'Understand price patterns before setting listing alerts.':
'लिस्टिंग अलर्ट सेट करने से पहले मूल्य पैटर्न को समझें।',
'Privacy and security': 'गोपनीयता और सुरक्षा',
'How account and saved-search data is handled in the product.':
'उत्पाद में खाता और सहेजा गया-खोज डेटा कैसे प्रबंधित किया जाता है।',
'Compare Bristol postcodes': 'ब्रिस्टल पोस्टकोड की तुलना करें',
'Trust and coverage': 'भरोसा और कवरेज',
'Perfect Postcode data sources and coverage': 'Perfect Postcode डेटा स्रोत और कवरेज',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode डेटा स्रोत - संपत्ति, स्कूल, आवागमन और स्थानीय संदर्भ',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'प्रॉपर्टी की कीमतें, ईपीसी, स्कूल, अपराध, ब्रॉडबैंड, शोर और यात्रा-समय के संदर्भ सहित, Perfect Postcode द्वारा उपयोग किए गए सार्वजनिक और आधिकारिक डेटासेट की समीक्षा करें।',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode संपत्ति, परिवहन, शिक्षा, पर्यावरण और स्थानीय-सेवा डेटासेट को जोड़ता है ताकि खरीदार लगातार पोस्टकोड की तुलना कर सकें। यह पृष्ठ बताता है कि डेटा किस लिए है और इसे कहां सत्यापित किया जाना चाहिए।',
'Property and housing context': 'संपत्ति और आवास संदर्भ',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'उत्पाद बिक्री मूल्य, संपत्ति प्रकार, कार्यकाल, फर्श क्षेत्र, ऊर्जा प्रदर्शन और अनुमानित वर्तमान मूल्य जैसे फिल्टर का समर्थन करने के लिए संपत्ति लेनदेन और आवास-संदर्भ डेटासेट का उपयोग करता है।',
'Use these fields to compare areas, not as a formal valuation.':
'इन क्षेत्रों का उपयोग क्षेत्रों की तुलना करने के लिए करें, औपचारिक मूल्यांकन के रूप में नहीं।',
'Check current listings, title information, lender requirements, and survey results before buying.':
'खरीदने से पहले वर्तमान लिस्टिंग, शीर्षक जानकारी, ऋणदाता आवश्यकताओं और सर्वेक्षण परिणामों की जांच करें।',
'Schools, safety, broadband, and environment': 'स्कूल, सुरक्षा, ब्रॉडबैंड और पर्यावरण',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'स्थानीय-संदर्भ फ़िल्टर दैनिक जीवन को प्रभावित करने वाले संकेतों पर पोस्टकोड की तुलना करने में मदद करते हैं। उन्हें स्क्रीनिंग डेटा के रूप में माना जाना चाहिए और निर्णयों के लिए वर्तमान आधिकारिक स्रोतों के विरुद्ध जांच की जानी चाहिए।',
'Travel-time data': 'यात्रा-समय डेटा',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'यात्रा-समय फ़िल्टर सुसंगत क्षेत्र तुलना के लिए डिज़ाइन किए गए हैं। किसी क्षेत्र में जाने से पहले मार्ग की उपलब्धता, व्यवधान, पार्किंग, पैदल पहुंच और समय सारिणी विवरण सत्यापित किया जाना चाहिए।',
'Why does coverage focus on England?': 'कवरेज इंग्लैंड पर केंद्रित क्यों है?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'कई मुख्य संपत्ति, शिक्षा और स्थानीय-संदर्भ डेटासेट क्षेत्राधिकार-विशिष्ट हैं। इंग्लैंड का कवरेज तुलनाओं को अधिक सुसंगत रखता है।',
'How should I handle stale or missing data?': 'मुझे बासी या गुम डेटा को कैसे संभालना चाहिए?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'मानचित्र को शॉर्टलिस्ट टूल के रूप में उपयोग करें। यदि कोई पोस्टकोड मायने रखता है, तो वर्तमान आधिकारिक स्रोतों और सीधे स्थानीय जांच से नवीनतम विवरण सत्यापित करें।',
'How filters and comparisons should be interpreted.':
'फ़िल्टर और तुलनाओं की व्याख्या कैसे की जानी चाहिए.',
'Review postcode-level context before a viewing.':
'देखने से पहले पोस्टकोड-स्तरीय संदर्भ की समीक्षा करें।',
'How saved searches and account data are handled.':
'सहेजी गई खोजों और खाता डेटा को कैसे प्रबंधित किया जाता है।',
'How to use the map': 'मानचित्र का उपयोग कैसे करें',
'Methodology for postcode property research': 'पोस्टकोड संपत्ति अनुसंधान के लिए पद्धति',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode पद्धति - पोस्टकोड संपत्ति डेटा की व्याख्या कैसे करें',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'घर-खरीद शॉर्टलिस्ट टूल के रूप में पोस्टकोड फ़िल्टर, संपत्ति अनुमान, यात्रा-समय डेटा, स्कूल संदर्भ और स्थानीय संकेतों का उपयोग करने का तरीका समझें।',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode को क्षेत्र की शॉर्टलिस्टिंग को अधिक साक्ष्य आधारित बनाने के लिए डिज़ाइन किया गया है। यह संपत्ति एजेंटों, सर्वेक्षणकर्ताओं, वाहकों, ऋणदाताओं, स्कूल प्रवेश टीमों या स्थानीय प्राधिकरण जांचों को प्रतिस्थापित नहीं करता है।',
'Start with hard constraints': 'कठिन बाधाओं से शुरुआत करें',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'बजट, संपत्ति का प्रकार, फर्श क्षेत्र, आवागमन का समय और आवश्यक सेवाओं जैसे गैर-परक्राम्य मुद्दों से शुरुआत करें। नरम प्राथमिकताओं पर विचार करने से पहले यह असंभव पोस्टकोड को हटा देता है।',
'Use colour layers for trade-offs': 'ट्रेड-ऑफ़ के लिए रंग परतों का उपयोग करें',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'फ़िल्टर करने के बाद, शेष मानचित्र को एक समय में एक सिग्नल से रंगें: प्रति वर्ग मीटर कीमत, सड़क का शोर, स्कूल का संदर्भ, आवागमन का समय, ब्रॉडबैंड, या अपराध। इससे ट्रेड-ऑफ़ पर चर्चा करना आसान हो जाता है।',
'Measure whats working': 'मापें कि क्या काम कर रहा है',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'यह ट्रैक करने के लिए सर्च कंसोल और एनालिटिक्स का उपयोग करें कि कौन से सार्वजनिक पृष्ठ अनुक्रमित हैं, कौन सी क्वेरीज़ इंप्रेशन उत्पन्न करती हैं, और कौन से पृष्ठ आगंतुकों को डैशबोर्ड अन्वेषण में परिवर्तित करते हैं। प्रत्येक महत्वपूर्ण फ्रंटएंड परिवर्तन के बाद कोर वेब वाइटल्स की समीक्षा करें।',
'Can the tool choose the right postcode for me?':
'क्या टूल मेरे लिए सही पोस्टकोड चुन सकता है?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'नहीं, यह साक्ष्यों की तुलना करने और खोज क्षेत्र को कम करने में मदद करता है। अंतिम निर्णय के लिए प्रत्यक्ष दौरे, वर्तमान लिस्टिंग, कानूनी जांच, सर्वेक्षण और व्यक्तिगत निर्णय की आवश्यकता होती है।',
'How should I use estimates?': 'मुझे अनुमानों का उपयोग कैसे करना चाहिए?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'अनुमानों का उपयोग तुलना संकेतों के रूप में करें, न कि पेशेवर मूल्यांकन या खरीदारी सलाह के रूप में।',
'Understand where key filters come from.': 'समझें कि मुख्य फ़िल्टर कहाँ से आते हैं।',
'Apply the methodology to price-led area comparison.':
'मूल्य-आधारित क्षेत्र तुलना के लिए कार्यप्रणाली लागू करें।',
'Apply the methodology to destination-led search.':
'गंतव्य-आधारित खोज के लिए कार्यप्रणाली लागू करें।',
Trust: 'भरोसा रखें',
'Privacy and security for saved property searches':
'सहेजी गई संपत्ति खोजों के लिए गोपनीयता और सुरक्षा',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode गोपनीयता और सुरक्षा - सहेजी गई खोजें और खाता डेटा',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'जानें कि कैसे Perfect Postcode गोपनीयता और सुरक्षा को ध्यान में रखते हुए सहेजी गई खोजों, खाता डेटा और संपत्ति अनुसंधान वर्कफ़्लो का इलाज करता है।',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'संपत्ति अनुसंधान व्यक्तिगत प्राथमिकताओं, बजट और स्थानों को प्रकट कर सकता है। उत्पाद सार्वजनिक एसईओ पृष्ठों को केवल खाता क्षेत्रों से अलग रखता है और निजी डैशबोर्ड/खाता मार्गों को नोइंडेक्स के रूप में चिह्नित करता है।',
'Public pages and private areas are separated': 'सार्वजनिक पृष्ठ और निजी क्षेत्र अलग-अलग हैं',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'मार्केटिंग, कार्यप्रणाली, मार्गदर्शिका और सहायता पृष्ठ अनुक्रमित किए जा सकते हैं। डैशबोर्ड, खाता, सहेजी गई खोजें, आमंत्रण और आमंत्रण मार्गों को नोइंडेक्स के रूप में चिह्नित किया जाता है या जहां उपयुक्त हो क्रॉलर पहुंच से अवरुद्ध कर दिया जाता है।',
'Saved search data is account-scoped': 'सहेजा गया खोज डेटा खाता-क्षेत्र है',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'सहेजी गई खोजें और संपत्तियां साइन-इन उपयोग के लिए हैं। वे सार्वजनिक साइटमैप में शामिल नहीं हैं और उन्हें सार्वजनिक सामग्री के रूप में क्रॉल नहीं किया जाना चाहिए।',
'Search measurement without exposing private data': 'निजी डेटा को उजागर किए बिना माप खोजें',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'समग्र विश्लेषण और खोज कंसोल डेटा का उपयोग करके सार्वजनिक पृष्ठों पर एसईओ माप होना चाहिए। निजी क्वेरी पैरामीटर और खाता दृश्य अनुक्रमणीय लैंडिंग पृष्ठ नहीं बनने चाहिए।',
'Are saved searches listed in the sitemap?': 'क्या सहेजी गई खोजें साइटमैप में सूचीबद्ध हैं?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'नहीं, सार्वजनिक एसईओ पृष्ठ सूचीबद्ध हैं; खाता और सहेजे गए-खोज मार्गों को जानबूझकर बाहर रखा गया है।',
'Can private dashboard URLs appear in search?':
'क्या निजी डैशबोर्ड URL खोज में दिखाई दे सकते हैं?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'उन्हें अनुक्रमित नहीं किया जाना चाहिए. सर्वर निजी मार्गों को नोइंडेक्स चिह्नित करता है और साइटमैप केवल सार्वजनिक पृष्ठों को सूचीबद्ध करता है।',
'How to use public postcode data responsibly.':
'सार्वजनिक पोस्टकोड डेटा का जिम्मेदारीपूर्वक उपयोग कैसे करें।',
'What data powers the public comparisons.':
'कौन सा डेटा सार्वजनिक तुलनाओं को शक्ति प्रदान करता है।',
'Explore public postcode-search workflows.':
'सार्वजनिक पोस्टकोड-खोज वर्कफ़्लोज़ का अन्वेषण करें।',
},
},
auth: {
@ -536,11 +997,14 @@ const hi: Translations = {
learnPage: {
faq: 'अक्सर पूछे जाने वाले प्रश्न',
dataSources: 'डेटा स्रोत',
articles: 'लेख',
support: 'सहायता',
dataSourcesIntro:
'यह एप्लिकेशन संपत्ति कीमतों, ऊर्जा प्रदर्शन, परिवहन, जनसांख्यिकी, अपराध, पर्यावरण और अधिक को कवर करने वाले {{count}} खुले डेटासेट को जोड़ता है.',
faqIntro:
'चाहे आप पहली बार खरीदारी की खोज संकरी कर रहे हों, किसी अनजान पोस्टकोड की जांच कर रहे हों या देखने के लिए चुने गए विकल्पों की सूची बना रहे हों, यहां बताया गया है कि Perfect Postcode आपको कहां देखना है यह तय करने में कैसे मदद करता है.',
articlesIntro:
'संपत्ति खोज, आवागमन, स्कूल, पोस्टकोड जांच, क्षेत्रीय तुलना, डेटा कवरेज, कार्यप्रणाली और गोपनीयता पर सार्वजनिक गाइड ब्राउज करें.',
supportIntro: 'कोई सवाल है? हमारा FAQ देखें या सीधे संपर्क करें.',
source: 'स्रोत:',
optOut: 'सार्वजनिक प्रकटीकरण से बाहर निकलें',
@ -1040,465 +1504,6 @@ const hi: Translations = {
' years': ' वर्ष',
' rooms': ' कमरे',
},
seo: {
'Property price map': 'संपत्ति मूल्य मानचित्र',
'Compare property prices across every postcode in England':
'इंग्लैंड में प्रत्येक पोस्टकोड पर संपत्ति की कीमतों की तुलना करें',
'Property price map for England - Compare postcodes before viewing':
'इंग्लैंड के लिए संपत्ति मूल्य मानचित्र - देखने से पहले पोस्टकोड की तुलना करें',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'लिस्टिंग खोजने से पहले बेची गई कीमतों, अनुमानित वर्तमान मूल्य, प्रति वर्ग मीटर कीमत और अंग्रेजी पोस्टकोड में स्थानीय संदर्भ की तुलना करें।',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode में बेची गई कीमतें, अनुमानित वर्तमान मूल्य, प्रति वर्ग मीटर कीमत, संपत्ति का प्रकार, फर्श क्षेत्र, कार्यकाल और स्थानीय संदर्भ शामिल हैं ताकि खरीदार लिस्टिंग पोर्टल खोलने से पहले यथार्थवादी खोज क्षेत्र पा सकें।',
'Screen historical sale prices and current-value estimates by postcode.':
'पोस्टकोड द्वारा ऐतिहासिक बिक्री मूल्य और वर्तमान-मूल्य अनुमान स्क्रीन करें।',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'मूल्य की तुलना आवागमन, स्कूल, ब्रॉडबैंड, अपराध, शोर और सुविधाओं से करें।',
'Build a shortlist before spending weekends on viewings.':
'देखने पर सप्ताहांत बिताने से पहले एक छोटी सूची बनाएं।',
'Find postcodes that fit the budget before listings appear':
'लिस्टिंग प्रदर्शित होने से पहले ऐसे पोस्टकोड खोजें जो बजट के अनुकूल हों',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'अधिकतम कीमत और संपत्ति के प्रकार से शुरू करें, फिर प्रति वर्ग मीटर कीमत या अनुमानित वर्तमान कीमत के आधार पर मानचित्र को रंग दें। इससे उन क्षेत्रों को उजागर करने में मदद मिलती है जहां समान घरों का ऐतिहासिक रूप से पहुंच के भीतर कारोबार होता रहा है, तब भी जब आज कोई लाइव लिस्टिंग नहीं है।',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'अंतिम ज्ञात बिक्री मूल्य, अनुमानित वर्तमान मूल्य, संपत्ति का प्रकार, कार्यकाल और फर्श क्षेत्र के आधार पर फ़िल्टर करें।',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'क्षेत्र की प्रतिष्ठा पर निर्भर रहने के बजाय समान मानदंड का उपयोग करके आस-पास के पोस्टकोड की तुलना करें।',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'अलर्ट, स्थानीय शोध और देखने की सूची के लिए शॉर्टलिस्ट के रूप में परिणामों का उपयोग करें।',
'Separate cheap from good value': 'सस्ते को अच्छे मूल्य से अलग करें',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'कम कीमत छोटे घरों, कमजोर परिवहन, अधिक शोर या कम स्थानीय सेवाओं को प्रतिबिंबित कर सकती है। मानचित्र उन ट्रेड-ऑफ़ को दृश्यमान रखता है इसलिए सबसे सस्ते पोस्टकोड को स्वचालित रूप से सर्वोत्तम विकल्प के रूप में नहीं माना जाता है।',
'Start from area value, not listing availability':
'क्षेत्र मूल्य से प्रारंभ करें, उपलब्धता सूचीबद्ध करने से नहीं',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'लिस्टिंग पोर्टल केवल आज बिक्री के लिए घर दिखाते हैं। एक पोस्टकोड-स्तरीय संपत्ति मूल्य मानचित्र आपको व्यापक क्षेत्रों की तुलना करने, स्थानीय मूल्य पैटर्न को समझने और उन स्थानों को खोने से बचने की सुविधा देता है जहां अगली उपयुक्त सूची दिखाई दे सकती है।',
'Use prices alongside real constraints': 'वास्तविक बाधाओं के साथ-साथ कीमतों का उपयोग करें',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'बजट अपने आप में शायद ही कभी मायने रखता है। Perfect Postcode यात्रा के समय, स्कूल की गुणवत्ता, संपत्ति के आकार, ऊर्जा प्रदर्शन, स्थानीय वातावरण और सेवाओं के साथ मूल्य फ़िल्टर को जोड़ता है ताकि आपकी शॉर्टलिस्ट यह दर्शाए कि आप वास्तव में कैसे रहना चाहते हैं।',
'What the price data is for': 'मूल्य डेटा किस लिए है',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'क्षेत्रों की तुलना करने और उम्मीदवारों की खोज करने के लिए मानचित्र का उपयोग करें। यह कोई मूल्यांकन, बंधक निर्णय, सर्वेक्षण, कानूनी खोज या लाइव लिस्टिंग फ़ीड नहीं है।',
'How to validate a promising area': 'एक आशाजनक क्षेत्र का सत्यापन कैसे करें',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'एक बार जब कोई पोस्टकोड आशाजनक लगे, तो निर्णय लेने से पहले वर्तमान लिस्टिंग, बिक्री-मूल्य तुलनीय, एजेंट विवरण, बाढ़ खोज, कानूनी पैक, सर्वेक्षण और स्थानीय प्राधिकारी जानकारी की जांच करें।',
'Is this a replacement for Rightmove or Zoopla?':
'क्या यह राइटमूव या ज़ूप्ला का प्रतिस्थापन है?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'नहीं, इसे लिस्टिंग पोर्टल से पहले और साथ में उपयोग करें। Perfect Postcode यह तय करने में मदद करता है कि कहां देखना है; लिस्टिंग पोर्टल दिखाते हैं कि वर्तमान में बिक्री के लिए क्या है।',
'Can I compare price with schools or commute time?':
'क्या मैं कीमत की तुलना स्कूलों या आवागमन के समय से कर सकता हूँ?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'हाँ। मूल्य फ़िल्टर को यात्रा-समय, स्कूल, अपराध, ब्रॉडबैंड, सड़क-शोर, सुविधाएं और पर्यावरण फ़िल्टर के साथ जोड़ा जा सकता है।',
'Does the map cover all of the UK?': 'क्या मानचित्र पूरे ब्रिटेन को कवर करता है?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'वर्तमान उत्पाद इंग्लैंड पर केंद्रित है क्योंकि कई मुख्य संपत्ति और पोस्टकोड डेटासेट इंग्लैंड-विशिष्ट हैं।',
'Birmingham property search guide': 'बर्मिंघम संपत्ति खोज गाइड',
'A worked example for balancing price, commute, and family trade-offs.':
'मूल्य, आवागमन और पारिवारिक व्यापार-बंद को संतुलित करने के लिए एक कारगर उदाहरण।',
'Data sources and coverage': 'डेटा स्रोत और कवरेज',
'See which datasets sit behind the postcode filters and where they have limits.':
'देखें कि कौन से डेटासेट पोस्टकोड फ़िल्टर के पीछे बैठते हैं और उनकी सीमाएँ कहाँ हैं।',
Methodology: 'क्रियाविधि',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'समझें कि मानचित्र का उद्देश्य शॉर्टलिस्टिंग का समर्थन करना है, न कि उचित परिश्रम को प्रतिस्थापित करना।',
'Postcode checker': 'पोस्टकोड चेकर',
'Check one postcode before you spend time on a viewing.':
'देखने में समय बर्बाद करने से पहले एक पोस्टकोड जांच लें।',
'Explore the property map': 'संपत्ति मानचित्र का अन्वेषण करें',
'Postcode property search': 'पोस्टकोड संपत्ति खोज',
'Find postcodes that match your property search criteria':
'ऐसे पोस्टकोड ढूंढें जो आपकी संपत्ति खोज मानदंडों से मेल खाते हों',
'Postcode property search - Find areas that match your criteria':
'पोस्टकोड संपत्ति खोज - ऐसे क्षेत्र खोजें जो आपके मानदंडों से मेल खाते हों',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'प्रत्येक पोस्टकोड को बजट, संपत्ति के प्रकार, फर्श क्षेत्र, कार्यकाल, आवागमन, स्कूल, अपराध, ब्रॉडबैंड, शोर, पार्क और स्थानीय सुविधाओं के आधार पर खोजें।',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'एक-एक करके क्षेत्रों की जाँच करने के बजाय प्रत्येक पोस्टकोड को बजट, संपत्ति के प्रकार, आकार, कार्यकाल, आवागमन, स्कूल, अपराध, ब्रॉडबैंड, शोर, पार्क और स्थानीय सुविधाओं के आधार पर खोजें।',
'Filter England-wide postcode data from one map.':
'एक मानचित्र से इंग्लैंड-व्यापी पोस्टकोड डेटा फ़िल्टर करें।',
'Shortlist unfamiliar areas with comparable evidence.':
'तुलनीय साक्ष्यों के साथ अपरिचित क्षेत्रों को संक्षिप्त करें।',
'Save and share search areas before booking viewings.':
'बुकिंग देखने से पहले खोज क्षेत्रों को सहेजें और साझा करें।',
'Turn a broad brief into postcode candidates':
'एक व्यापक संक्षिप्त विवरण को पोस्टकोड उम्मीदवारों में बदलें',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'पहले व्यावहारिक बाधाएँ दर्ज करें: बजट, संपत्ति का आकार, कार्यकाल, यात्रा का समय, स्कूल की ज़रूरतें, ब्रॉडबैंड, और सड़क के शोर या अपराध के स्तर के लिए सहनशीलता। मानचित्र उन स्थानों को हटा देता है जो उन बाधाओं को विफल करते हैं और शेष विकल्पों को तुलनीय बनाए रखते हैं।',
'Relax one constraint at a time': 'एक समय में एक बाधा में ढील दें',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'जब खोज बहुत संकीर्ण हो जाए, तो एक फ़िल्टर ढीला करें और देखें कि कौन से पोस्टकोड फिर से दिखाई देते हैं। यह अनुमान पर भरोसा करने के बजाय समझौते को स्पष्ट करता है।',
'Turn vague areas into specific postcodes': 'अस्पष्ट क्षेत्रों को विशिष्ट पोस्टकोड में बदलें',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'व्यापक शहर या नगर खोजें सड़कों के बीच बड़े अंतर को छिपाती हैं। Perfect Postcode आपको सामान्य क्षेत्र से पोस्टकोड तक जाने में मदद करता है जो आपकी कठिन आवश्यकताओं को पूरा करता है।',
'Keep trade-offs visible': 'ट्रेड-ऑफ़ को दृश्यमान रखें',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'जब बहुत अधिक या बहुत कम मिलान हों, तो एक समय में एक बाधा को समायोजित करें और देखें कि कौन से पोस्टकोड फिर से दिखाई देते हैं। यह अनुमान पर भरोसा करने के बजाय समझौतों को स्पष्ट करता है।',
'Why postcode-level comparison matters': 'पोस्टकोड-स्तरीय तुलना क्यों मायने रखती है',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'पास के दो पोस्टकोड स्कूलों, सड़क के शोर, परिवहन पहुंच, संपत्ति मिश्रण और कीमत पर भिन्न हो सकते हैं। पोस्टकोड स्तर पर तुलना करने से पूरे शहर को एक समान बाज़ार मानने की संभावना कम हो जाती है।',
'How to use the results': 'परिणामों का उपयोग कैसे करें',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'मेल खाते पोस्टकोड को एक शोध कतार के रूप में मानें: लाइव लिस्टिंग की जाँच करें, सड़कों पर जाएँ, स्कूलों और प्रवेशों की पुष्टि करें, और वर्तमान आधिकारिक स्रोतों की समीक्षा करें।',
'Can I save a postcode property search?': 'क्या मैं पोस्टकोड संपत्ति खोज सहेज सकता हूँ?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'हाँ। लाइसेंस प्राप्त उपयोगकर्ता खोजों को सहेज सकते हैं और बाद में उन पर वापस लौट सकते हैं। सहेजी गई खोजें शॉर्टलिस्ट और तुलना नोट्स के लिए डिज़ाइन की गई हैं।',
'Can I search without knowing the area?': 'क्या मैं क्षेत्र जाने बिना खोज कर सकता हूँ?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'हाँ। मानचित्र को उन अपरिचित क्षेत्रों को प्रदर्शित करने के लिए डिज़ाइन किया गया है जो व्यावहारिक बाधाओं से मेल खाते हैं, न कि केवल उन स्थानों के लिए जिन्हें आप पहले से जानते हैं।',
'Are the results live property listings?': 'क्या परिणाम लाइव संपत्ति सूची हैं?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'नहीं, टूल पोस्टकोड डेटा और ऐतिहासिक/प्रासंगिक संपत्ति संकेतों की तुलना करता है। वर्तमान उपलब्धता के लिए आपको अभी भी लिस्टिंग पोर्टल की आवश्यकता है।',
'Manchester property search guide': 'मैनचेस्टर संपत्ति खोज गाइड',
'A regional guide for narrowing a broad search around Greater Manchester.':
'ग्रेटर मैनचेस्टर के आसपास व्यापक खोज को सीमित करने के लिए एक क्षेत्रीय मार्गदर्शिका।',
'Start a postcode search': 'पोस्टकोड खोज प्रारंभ करें',
'Commute property search': 'यात्रा संपत्ति खोज',
'Search for places to live by commute time': 'आवागमन के समय के अनुसार रहने के लिए स्थान खोजें',
'Commute property search - Find places to live by travel time':
'यात्रा संपत्ति की खोज - यात्रा के समय के अनुसार रहने के लिए स्थान खोजें',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'आवागमन के समय के अनुसार पोस्टकोड फ़िल्टर करें, फिर एक मानचित्र पर कीमत, स्कूल, सुरक्षा, ब्रॉडबैंड, सड़क शोर, पार्क और संपत्ति डेटा की तुलना करें।',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'मॉडल की गई कार, साइकिल चलाना, पैदल चलना और सार्वजनिक परिवहन यात्रा के समय के आधार पर पोस्टकोड फ़िल्टर करें, फिर संपत्ति की कीमत, स्कूल, अपराध, ब्रॉडबैंड, शोर और स्थानीय सुविधाओं पर परत लगाएं।',
'Compare reachable postcodes by realistic travel-time bands.':
'यथार्थवादी यात्रा-समय बैंड द्वारा पहुंच योग्य पोस्टकोड की तुलना करें।',
'Search by destination first, then filter for property and neighbourhood fit.':
'पहले गंतव्य के आधार पर खोजें, फिर संपत्ति और पड़ोस के अनुसार फ़िल्टर करें।',
'Avoid areas that look close on a map but fail the daily journey.':
'उन क्षेत्रों से बचें जो मानचित्र पर नज़दीक दिखते हैं लेकिन दैनिक यात्रा में विफल होते हैं।',
'Start with the destination that matters': 'उस गंतव्य से शुरुआत करें जो मायने रखता है',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'आवागमन गंतव्य, परिवहन मोड और समय सीमा चुनें, फिर संपत्ति फ़िल्टर जोड़ें। यदि दैनिक यात्रा काम नहीं करती है तो यह सस्ते दिखने वाले क्षेत्र को शॉर्टलिस्ट तक पहुंचने से रोकता है।',
'Compare the commute against the rest of daily life':
'दैनिक जीवन के बाकी हिस्सों से आवागमन की तुलना करें',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'यदि संपत्ति का आकार, स्कूल का संदर्भ, सुरक्षा सीमा, ब्रॉडबैंड, या सड़क-शोर जोखिम फिट नहीं बैठता है तो तेज़ आवागमन पर्याप्त नहीं है। मानचित्र उन संकेतों को एक साथ रखता है।',
'Commute from postcodes, not just place names':
'केवल स्थान के नाम से नहीं, बल्कि पोस्टकोड से यात्रा करें',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'एक ही शहर की दो सड़कों पर स्टेशन पहुंच, सड़क मार्ग और सार्वजनिक परिवहन विकल्प बहुत भिन्न हो सकते हैं। पोस्टकोड-स्तरीय यात्रा-समय फ़िल्टरिंग उस अंतर को दृश्यमान रखता है।',
'Balance journey time with the rest of the move':
'यात्रा के समय को शेष चाल के साथ संतुलित करें',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'तेज़ आवागमन तभी सहायक होता है जब क्षेत्र आपके बजट, आवास आवश्यकताओं, स्कूल की प्राथमिकताओं, सुरक्षा सीमा, ब्रॉडबैंड आवश्यकता और सड़क शोर के प्रति सहनशीलता के अनुरूप हो।',
'How travel-time filters should be interpreted':
'यात्रा-समय फ़िल्टर की व्याख्या कैसे की जानी चाहिए',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'यात्रा-समय मॉडलिंग लगातार क्षेत्रों की तुलना करने के लिए उपयोगी है। प्रतिबद्ध होने से पहले, वर्तमान समय सारिणी, व्यवधान पैटर्न, पार्किंग, साइकिल चलाने की स्थिति और पैदल चलने के मार्गों की जांच करें।',
'Why commute filters are combined with property data':
'आवागमन फ़िल्टर को संपत्ति डेटा के साथ क्यों जोड़ा जाता है?',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'यात्रा खोज तब सबसे उपयोगी होती है जब यह असंभव क्षेत्रों को हटा देती है और साथ ही यह भी दिखाती है कि क्या शेष विकल्प किफायती और रहने योग्य हैं।',
'Can I compare car, cycling, walking, and public transport?':
'क्या मैं कार, साइकिल चलाना, पैदल चलना और सार्वजनिक परिवहन की तुलना कर सकता हूँ?',
'The product supports multiple travel modes where precomputed destination data is available.':
'उत्पाद कई यात्रा मोड का समर्थन करता है जहां पूर्व-गणना गंतव्य डेटा उपलब्ध है।',
'Are travel times exact?': 'क्या यात्रा का समय सटीक है?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'नहीं, उन्हें एक सुसंगत तुलना मॉडल के रूप में मानें, फिर देखने या खरीदारी का निर्णय लेने से पहले वास्तविक मार्ग को सत्यापित करें।',
'Can I combine commute filters with schools and price?':
'क्या मैं स्कूलों और कीमत के साथ आवागमन फ़िल्टर जोड़ सकता हूँ?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'हाँ। आवागमन फ़िल्टर को संपत्ति की कीमत, आकार, स्कूल, ब्रॉडबैंड, अपराध, सुविधाओं और पर्यावरण संकेतों के साथ स्तरित किया जा सकता है।',
'Bristol property search guide': 'ब्रिस्टल संपत्ति खोज गाइड',
'A worked example for balancing city access, price, and local context.':
'शहर की पहुंच, कीमत और स्थानीय संदर्भ को संतुलित करने के लिए एक कारगर उदाहरण।',
'Search by commute time': 'आवागमन समय के आधार पर खोजें',
'Schools and property search': 'स्कूल और संपत्ति खोज',
'Find property search areas with schools and family trade-offs in view':
'स्कूलों और पारिवारिक लेन-देन को ध्यान में रखते हुए संपत्ति खोज क्षेत्र खोजें',
'School property search - Compare postcodes for family moves':
'स्कूल संपत्ति खोज - पारिवारिक स्थानांतरण के लिए पोस्टकोड की तुलना करें',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'देखने के लिए शॉर्टलिस्ट बनाने से पहले आस-पास के स्कूलों, संपत्ति के आकार, कीमतों, पार्कों, सुरक्षा, आवागमन और स्थानीय सुविधाओं की तुलना करें।',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'अपनी देखने की सूची को सीमित करने से पहले आस-पास की ऑफस्टेड रेटिंग, शिक्षा संदर्भ, संपत्ति का आकार, बजट, सुरक्षा, पार्क, आवागमन और स्थानीय सुविधाओं की तुलना करें।',
'Filter for nearby school quality alongside housing requirements.':
'आवास आवश्यकताओं के साथ-साथ नजदीकी स्कूल की गुणवत्ता के लिए फ़िल्टर करें।',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'अपरिचित पोस्टकोड में परिवार-अनुकूल व्यापार-बंदों की तुलना करें।',
'Use the map as a shortlist tool before checking admissions and catchments.':
'प्रवेश और कैचमेंट की जांच करने से पहले मानचित्र को शॉर्टलिस्ट टूल के रूप में उपयोग करें।',
'Use school context without ignoring the home':
'घर को नज़रअंदाज़ किए बिना स्कूल के संदर्भ का उपयोग करें',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'संपत्ति के आकार, बजट और आवागमन की बाधाओं से शुरुआत करें, फिर पास के स्कूल की गुणवत्ता और स्थानीय संदर्भ पर ध्यान दें। यह स्कूल-आधारित खोजों को सामर्थ्य या दैनिक जीवन की समस्याओं को छिपाने से रोकता है।',
'Verify admissions before deciding': 'निर्णय लेने से पहले प्रवेश सत्यापित करें',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'स्कूल डेटा आशाजनक क्षेत्रों की ओर इशारा कर सकता है, लेकिन प्रवेश नियम और कैचमेंट बदल सकते हैं। स्कूलों और स्थानीय अधिकारियों के साथ वर्तमान व्यवस्था की पुष्टि करें।',
'School quality is one part of the shortlist': 'स्कूल की गुणवत्ता शॉर्टलिस्ट का एक हिस्सा है',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode आपको आस-पास के स्कूल डेटा की तुलना अन्य व्यावहारिक बाधाओं से करने में मदद करता है जो पारिवारिक स्थानांतरण को आकार देते हैं: स्थान, मूल्य, आवागमन, पार्क, सुरक्षा और स्थानीय सेवाएं।',
'Check catchments before making decisions':
'निर्णय लेने से पहले जलग्रहण क्षेत्रों की जाँच करें',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'प्रवेश नियम और जलग्रहण सीमाएँ बदल सकती हैं। आशाजनक क्षेत्रों को खोजने के लिए पोस्टकोड-स्तरीय स्कूल डेटा का उपयोग करें, फिर स्कूल या स्थानीय प्राधिकरण के साथ वर्तमान प्रवेश विवरण सत्यापित करें।',
'How to treat school filters': 'स्कूल फ़िल्टर का इलाज कैसे करें',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'शोध को सीमित करने के लिए स्कूल फ़िल्टर का उपयोग करें, न कि प्रवेश पात्रता मानने के लिए। रेटिंग, दूरी, प्रवेश मानदंड और स्कूल की क्षमता सभी की जाँच वर्तमान आधिकारिक स्रोतों से की जानी चाहिए।',
'Family trade-offs to compare': 'तुलना करने के लिए पारिवारिक व्यापार-बंद',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'स्कूलों को पार्क, सड़क के शोर, अपराध, संपत्ति के आकार, आवागमन, ब्रॉडबैंड और कीमत के साथ मिलाएं ताकि शॉर्टलिस्ट पूरे कदम को प्रतिबिंबित कर सके।',
'Does this show school catchment guarantees?': 'क्या यह स्कूल कैचमेंट गारंटी दिखाता है?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'नहीं, यह आशाजनक क्षेत्रों की पहचान करने में मदद करता है, लेकिन कैचमेंट और प्रवेश को स्कूल या स्थानीय प्राधिकरण से सत्यापित किया जाना चाहिए।',
'Can I combine school filters with parks and safety?':
'क्या मैं स्कूल फ़िल्टर को पार्क और सुरक्षा के साथ जोड़ सकता हूँ?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'हाँ। स्कूल-जागरूक खोज को अपराध, पार्क, आवागमन, कीमत, संपत्ति का आकार और स्थानीय सेवाओं के साथ जोड़ा जा सकता है।',
'Is Ofsted the only school signal?': 'क्या ऑफस्टेड एकमात्र स्कूल सिग्नल है?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'किसी एक अंक से किसी चाल का निर्णय नहीं होना चाहिए। शुरुआती बिंदु के रूप में मानचित्र का उपयोग करें, फिर वर्तमान स्कूल जानकारी की विस्तार से समीक्षा करें।',
'See where education, property, transport, and environment data comes from.':
'देखें कि शिक्षा, संपत्ति, परिवहन और पर्यावरण डेटा कहाँ से आता है।',
'Explore school-aware searches': 'स्कूल-जागरूक खोजों का अन्वेषण करें',
'Check postcode data before you book a viewing':
'देखने की बुकिंग करने से पहले पोस्टकोड डेटा की जाँच करें',
'Postcode checker - Property, crime, broadband, noise and schools':
'पोस्टकोड चेकर - संपत्ति, अपराध, ब्रॉडबैंड, शोर और स्कूल',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'पोस्टकोड-स्तरीय संपत्ति की कीमतें, ईपीसी डेटा, अपराध, ब्रॉडबैंड, सड़क शोर, स्कूल, परिषद कर, सुविधाएं और यात्रा-समय संदर्भ की जांच करें।',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'एक पोस्टकोड-प्रथम मानचित्र से संपत्ति की कीमतें, ईपीसी संदर्भ, अपराध, ब्रॉडबैंड, सड़क शोर, स्थानीय सुविधाएं, स्कूल, अभाव, परिषद कर और यात्रा-समय डेटा की समीक्षा करें।',
'Check multiple local signals before visiting a street.':
'किसी सड़क पर जाने से पहले कई स्थानीय सिग्नलों की जाँच करें।',
'Use official and open datasets rather than reputation alone.':
'केवल प्रतिष्ठा के बजाय आधिकारिक और खुले डेटासेट का उपयोग करें।',
'Compare postcodes consistently across England.':
'पूरे इंग्लैंड में लगातार पोस्टकोड की तुलना करें।',
'Check the street before spending a viewing slot':
'देखने का स्लॉट खर्च करने से पहले सड़क की जाँच करें',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'यात्रा के लिए समय निर्धारित करने से पहले मूल्य इतिहास, स्थानीय संदर्भ, सुविधाओं, स्कूलों और पर्यावरण संकेतों की समीक्षा करने के लिए पोस्टकोड चेकर का उपयोग करें।',
'Compare neighbouring postcodes': 'पड़ोसी पोस्टकोड की तुलना करें',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'यदि एक पोस्टकोड आशाजनक लगता है, तो उसी फ़िल्टर का उपयोग करके आसन्न क्षेत्रों की तुलना करें। इससे अक्सर पता चलता है कि कोई चिंता सड़क-विशिष्ट है या व्यापक पैटर्न का हिस्सा है।',
'Useful before and alongside listing portals': 'लिस्टिंग पोर्टल से पहले और साथ में उपयोगी',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'लिस्टिंग फ़ोटो शायद ही आपको आस-पास की सड़क के बारे में पर्याप्त जानकारी देती हो। देखने के लिए समय देने से पहले Perfect Postcode आपको साक्ष्य-संचालित पोस्टकोड जांच देता है।',
'A screening tool, not professional advice': 'एक स्क्रीनिंग टूल, पेशेवर सलाह नहीं',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'डेटा को शॉर्टलिस्टिंग और तुलना के लिए डिज़ाइन किया गया है। किसी भी खरीदारी के लिए अभी भी वर्तमान लिस्टिंग जांच, कानूनी उचित परिश्रम, बाढ़ खोज, ऋणदाता आवश्यकताओं और सर्वेक्षण निष्कर्षों की आवश्यकता होती है।',
'What a postcode check can catch': 'एक पोस्टकोड जांच क्या पकड़ सकती है',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'एक पोस्टकोड जांच से मूल्य संदर्भ, पर्यावरणीय संकेत, आस-पास की सुविधाएं और अन्य स्थानीय संकेतक सामने आ सकते हैं जिन्हें सूची में शामिल करना आसान है।',
'What a postcode check cant prove': 'पोस्टकोड जांच क्या साबित नहीं कर सकती',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'यह घर की स्थिति, भविष्य के विकास, कानूनी स्वामित्व, ऋणदाता आवश्यकताओं या वर्तमान सड़क-स्तरीय अनुभव की पुष्टि नहीं कर सकता है। उन्हें अभी भी सीधी जांच की जरूरत है।',
'Can I use the checker before a viewing?': 'क्या मैं देखने से पहले चेकर का उपयोग कर सकता हूँ?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'हाँ। यह मुख्य उपयोग मामलों में से एक है: पहले पोस्टकोड को स्क्रीन करें, फिर तय करें कि देखना समय के लायक है या नहीं।',
'Does the checker include exact property condition?':
'क्या चेकर में संपत्ति की सटीक स्थिति शामिल है?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'नहीं, संपत्ति की स्थिति के लिए लिस्टिंग विवरण, सर्वेक्षण और प्रत्यक्ष निरीक्षण की आवश्यकता होती है।',
'Can I compare multiple postcodes?': 'क्या मैं अनेक पोस्टकोड की तुलना कर सकता हूँ?',
'Yes. The map is designed for consistent comparison across postcodes.':
'हाँ। मानचित्र को सभी पोस्टकोडों में लगातार तुलना के लिए डिज़ाइन किया गया है।',
'Check postcodes on the map': 'मानचित्र पर पोस्टकोड जांचें',
'Regional guide': 'क्षेत्रीय मार्गदर्शक',
'How to compare Birmingham postcodes before a property search':
'संपत्ति खोज से पहले बर्मिंघम पोस्टकोड की तुलना कैसे करें',
'Birmingham property search - Compare postcodes by price and commute':
'बर्मिंघम संपत्ति खोज - कीमत और आवागमन के आधार पर पोस्टकोड की तुलना करें',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'देखने से पहले बर्मिंघम संपत्ति की कीमतों, आवागमन व्यापार-बंद, स्कूलों, अपराध, ब्रॉडबैंड और स्थानीय सुविधाओं की तुलना करने के लिए पोस्टकोड-स्तरीय डेटा का उपयोग करें।',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'बर्मिंघम खोजें एक सड़क से दूसरी सड़क पर तेज़ी से बदल सकती हैं। लिस्टिंग कहाँ देखनी है यह तय करने से पहले बजट, आवागमन, स्कूल, शोर, अपराध और स्थानीय सेवाओं की तुलना करने के लिए पोस्टकोड-स्तरीय साक्ष्य का उपयोग करें।',
'Start with commute corridors': 'आवागमन गलियारों से शुरुआत करें',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'वह गंतव्य चुनें जो महत्वपूर्ण हो, जैसे कार्यस्थल, स्टेशन, विश्वविद्यालय, या अस्पताल, फिर परिवहन मोड और यात्रा-समय बैंड द्वारा पहुंच योग्य पोस्टकोड की तुलना करें।',
'Use commute time as a hard filter before judging price.':
'कीमत तय करने से पहले आवागमन के समय को एक कठिन फिल्टर के रूप में उपयोग करें।',
'Compare public transport with car, cycling, or walking where available.':
'जहां उपलब्ध हो वहां सार्वजनिक परिवहन की तुलना कार, साइकिल या पैदल चलने से करें।',
'Check the route manually before booking viewings.':
'बुकिंग देखने से पहले मैन्युअल रूप से मार्ग की जाँच करें।',
'Compare price with property type': 'संपत्ति के प्रकार के साथ कीमत की तुलना करें',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'यदि स्थानीय संपत्ति मिश्रण बदलता है तो औसत कीमतें अकेले भ्रामक हो सकती हैं। संपत्ति का प्रकार, कार्यकाल, फर्श क्षेत्र और मूल्य फ़िल्टर जोड़ें ताकि समान क्षेत्रों की तुलना निष्पक्ष रूप से की जा सके।',
'Keep family and environment trade-offs visible':
'परिवार और पर्यावरण के बीच के संबंधों को स्पष्ट रखें',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'संपत्ति फ़िल्टर के शीर्ष पर स्कूल संदर्भ, पार्क, सड़क शोर, ब्रॉडबैंड और अपराध सिग्नल परत करें। इससे यह तय करना आसान हो जाता है कि कौन से समझौते स्वीकार्य हैं।',
'Can Perfect Postcode tell me the best area in Birmingham?':
'क्या Perfect Postcode मुझे बर्मिंघम में सबसे अच्छा क्षेत्र बता सकता है?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'कोई भी उपकरण प्रत्येक खरीदार के लिए सर्वोत्तम क्षेत्र का निर्णय नहीं कर सकता। यह आपकी अपनी बाधाओं के विरुद्ध पोस्टकोड की तुलना करने में मदद करता है ताकि आप एक बेहतर शॉर्टलिस्ट बना सकें।',
'Should I use this instead of local knowledge?':
'क्या मुझे स्थानीय ज्ञान के स्थान पर इसका उपयोग करना चाहिए?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'नहीं, इसका उपयोग उम्मीदवारों को खोजने और तुलना करने के लिए करें, फिर उन्हें विजिट, स्थानीय सलाह, लिस्टिंग और आधिकारिक जांच के साथ मान्य करें।',
'Compare price patterns before looking at live listings.':
'लाइव लिस्टिंग देखने से पहले मूल्य पैटर्न की तुलना करें।',
'Search by travel time and then layer on property requirements.':
'यात्रा के समय के आधार पर खोजें और फिर संपत्ति की आवश्यकताओं के आधार पर खोजें।',
'Understand how to interpret filters and limitations.':
'समझें कि फ़िल्टर और सीमाओं की व्याख्या कैसे करें।',
'Compare Birmingham postcodes': 'बर्मिंघम पोस्टकोड की तुलना करें',
'How to compare Manchester postcodes for a property search':
'संपत्ति खोज के लिए मैनचेस्टर पोस्टकोड की तुलना कैसे करें',
'Manchester property search - Compare postcodes before viewing':
'मैनचेस्टर संपत्ति खोज - देखने से पहले पोस्टकोड की तुलना करें',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'बुकिंग देखने से पहले बजट, आवागमन, संपत्ति के प्रकार, स्कूल, ब्रॉडबैंड, अपराध, शोर और सुविधाओं के आधार पर मैनचेस्टर-क्षेत्र के पोस्टकोड की तुलना करें।',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'मैनचेस्टर-क्षेत्र की खोज शहर-केंद्र, उपनगरीय और कम्यूटर विकल्पों तक फैली हो सकती है। Perfect Postcode प्रत्येक पोस्टकोड को समान संपत्ति और दैनिक जीवन की बाधाओं के मुकाबले तुलनीय रखने में मदद करता है।',
'Use travel time to define the real search area':
'वास्तविक खोज क्षेत्र को परिभाषित करने के लिए यात्रा समय का उपयोग करें',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'उन गंतव्यों से शुरू करें जो मायने रखते हैं, फिर यह मानने के बजाय कि हर नजदीकी स्थान की व्यावहारिक यात्रा समान है, पहुंच योग्य पोस्टकोड की तुलना करें।',
'Compare housing requirements before lifestyle preferences':
'जीवनशैली प्राथमिकताओं से पहले आवास आवश्यकताओं की तुलना करें',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'सुविधाओं का आकलन करने से पहले संपत्ति के प्रकार, फर्श क्षेत्र, कार्यकाल और कीमत के आधार पर फ़िल्टर करें। यह शॉर्टलिस्ट को उन घरों पर आधारित रखता है जो वास्तविक रूप से काम कर सकते हैं।',
'Check local context consistently': 'स्थानीय संदर्भ की लगातार जाँच करें',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'ब्रॉडबैंड, अपराध, सड़क शोर, पार्क, स्कूल और सुविधाओं को तुलनीय सिग्नल के रूप में उपयोग करें। फिर वर्तमान स्थानीय जांच के साथ सबसे मजबूत उम्मीदवारों को मान्य करें।',
'Can I compare Manchester suburbs with city-centre postcodes?':
'क्या मैं मैनचेस्टर उपनगरों की तुलना सिटी-सेंटर पोस्टकोड से कर सकता हूँ?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'हाँ। दोनों में समान बजट, संपत्ति, आवागमन और स्थानीय-संदर्भ फ़िल्टर का उपयोग करें ताकि ट्रेड-ऑफ़ दिखाई देता रहे।',
'Does this include live listings?': 'क्या इसमें लाइव लिस्टिंग शामिल है?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'नहीं, इसका उपयोग यह तय करने के लिए करें कि कहां खोजना है, फिर बिक्री के लिए वर्तमान घरों के लिए लिस्टिंग पोर्टल का उपयोग करें।',
'Move from a broad search brief to specific postcode candidates.':
'व्यापक खोज संक्षिप्त से विशिष्ट पोस्टकोड उम्मीदवारों की ओर बढ़ें।',
'Data sources': 'डेटा स्रोत',
'Review the datasets used for property and local-context comparison.':
'संपत्ति और स्थानीय-संदर्भ तुलना के लिए उपयोग किए गए डेटासेट की समीक्षा करें।',
'Check a single postcode before arranging a viewing.':
'देखने की व्यवस्था करने से पहले एक पोस्टकोड की जाँच करें।',
'Compare Manchester postcodes': 'मैनचेस्टर पोस्टकोड की तुलना करें',
'How to compare Bristol postcodes before a property search':
'संपत्ति खोज से पहले ब्रिस्टल पोस्टकोड की तुलना कैसे करें',
'Bristol property search - Compare postcodes by commute and price':
'ब्रिस्टल संपत्ति खोज - यात्रा और कीमत के आधार पर पोस्टकोड की तुलना करें',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'देखने से पहले कीमत, आवागमन, संपत्ति के आकार, स्कूल, ब्रॉडबैंड, अपराध, सड़क शोर, पार्क और सुविधाओं के आधार पर ब्रिस्टल पोस्टकोड की तुलना करें।',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'ब्रिस्टल खोजों में अक्सर कीमत, यात्रा के समय, संपत्ति के आकार और पड़ोस के संदर्भ के बीच तीव्र आदान-प्रदान शामिल होता है। पोस्टकोड-पहली तुलना उन ट्रेड-ऑफ़ को दृश्यमान रखती है।',
'Make commute constraints explicit': 'आवागमन संबंधी बाधाओं को स्पष्ट करें',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'यदि केंद्र, स्टेशन, अस्पताल, विश्वविद्यालय या बिजनेस पार्क तक पहुंच मायने रखती है, तो पहले यात्रा-समय फ़िल्टर का उपयोग करें और फिर संपत्ति डेटा द्वारा शेष पोस्टकोड की तुलना करें।',
'Compare value, not just headline price': 'मूल्य की तुलना करें, न कि केवल मुख्य मूल्य की',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'मूल्य, संपत्ति प्रकार और फर्श-क्षेत्र फ़िल्टर का एक साथ उपयोग करें। इससे कम लागत वाले क्षेत्रों को उन क्षेत्रों से अलग करने में मदद मिलती है जिनमें छोटे या अलग-अलग घर होते हैं।',
'Screen environmental and local-service signals':
'पर्यावरण और स्थानीय-सेवा संकेतों को स्क्रीन करें',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'सड़क का शोर, पार्क, ब्रॉडबैंड, अपराध और सुविधाएं प्रभावित कर सकती हैं कि कोई संपत्ति दिन-प्रतिदिन काम करती है या नहीं। बुकिंग देखने से पहले उन्हें स्क्रीनिंग मानदंड के रूप में उपयोग करें।',
'Can I use this for commuter villages around Bristol?':
'क्या मैं इसका उपयोग ब्रिस्टल के आसपास के कम्यूटर गांवों के लिए कर सकता हूं?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'हां, जहां प्रासंगिक पोस्टकोड और यात्रा-समय डेटा उपलब्ध है। निर्णय लेने से पहले हमेशा मार्गों और सेवाओं को मैन्युअल रूप से सत्यापित करें।',
'Can this tell me whether a listing is good value?':
'क्या यह मुझे बता सकता है कि क्या कोई सूची अच्छा मूल्य है?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'यह क्षेत्र का संदर्भ प्रदान कर सकता है, लेकिन एक विशिष्ट सूची को अभी भी तुलनीय बिक्री, स्थिति जांच, सर्वेक्षण निष्कर्ष और जहां उपयुक्त हो, पेशेवर सलाह की आवश्यकता होती है।',
'Search by reachable postcodes before refining by budget and local context.':
'बजट और स्थानीय संदर्भ के अनुसार परिष्कृत करने से पहले पहुंच योग्य पोस्टकोड द्वारा खोजें।',
'Understand price patterns before setting listing alerts.':
'लिस्टिंग अलर्ट सेट करने से पहले मूल्य पैटर्न को समझें।',
'Privacy and security': 'गोपनीयता और सुरक्षा',
'How account and saved-search data is handled in the product.':
'उत्पाद में खाता और सहेजा गया-खोज डेटा कैसे प्रबंधित किया जाता है।',
'Compare Bristol postcodes': 'ब्रिस्टल पोस्टकोड की तुलना करें',
'Trust and coverage': 'भरोसा और कवरेज',
'Perfect Postcode data sources and coverage': 'Perfect Postcode डेटा स्रोत और कवरेज',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode डेटा स्रोत - संपत्ति, स्कूल, आवागमन और स्थानीय संदर्भ',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'प्रॉपर्टी की कीमतें, ईपीसी, स्कूल, अपराध, ब्रॉडबैंड, शोर और यात्रा-समय के संदर्भ सहित, Perfect Postcode द्वारा उपयोग किए गए सार्वजनिक और आधिकारिक डेटासेट की समीक्षा करें।',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode संपत्ति, परिवहन, शिक्षा, पर्यावरण और स्थानीय-सेवा डेटासेट को जोड़ता है ताकि खरीदार लगातार पोस्टकोड की तुलना कर सकें। यह पृष्ठ बताता है कि डेटा किस लिए है और इसे कहां सत्यापित किया जाना चाहिए।',
'Property and housing context': 'संपत्ति और आवास संदर्भ',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'उत्पाद बिक्री मूल्य, संपत्ति प्रकार, कार्यकाल, फर्श क्षेत्र, ऊर्जा प्रदर्शन और अनुमानित वर्तमान मूल्य जैसे फिल्टर का समर्थन करने के लिए संपत्ति लेनदेन और आवास-संदर्भ डेटासेट का उपयोग करता है।',
'Use these fields to compare areas, not as a formal valuation.':
'इन क्षेत्रों का उपयोग क्षेत्रों की तुलना करने के लिए करें, औपचारिक मूल्यांकन के रूप में नहीं।',
'Check current listings, title information, lender requirements, and survey results before buying.':
'खरीदने से पहले वर्तमान लिस्टिंग, शीर्षक जानकारी, ऋणदाता आवश्यकताओं और सर्वेक्षण परिणामों की जांच करें।',
'Schools, safety, broadband, and environment': 'स्कूल, सुरक्षा, ब्रॉडबैंड और पर्यावरण',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'स्थानीय-संदर्भ फ़िल्टर दैनिक जीवन को प्रभावित करने वाले संकेतों पर पोस्टकोड की तुलना करने में मदद करते हैं। उन्हें स्क्रीनिंग डेटा के रूप में माना जाना चाहिए और निर्णयों के लिए वर्तमान आधिकारिक स्रोतों के विरुद्ध जांच की जानी चाहिए।',
'Travel-time data': 'यात्रा-समय डेटा',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'यात्रा-समय फ़िल्टर सुसंगत क्षेत्र तुलना के लिए डिज़ाइन किए गए हैं। किसी क्षेत्र में जाने से पहले मार्ग की उपलब्धता, व्यवधान, पार्किंग, पैदल पहुंच और समय सारिणी विवरण सत्यापित किया जाना चाहिए।',
'Why does coverage focus on England?': 'कवरेज इंग्लैंड पर केंद्रित क्यों है?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'कई मुख्य संपत्ति, शिक्षा और स्थानीय-संदर्भ डेटासेट क्षेत्राधिकार-विशिष्ट हैं। इंग्लैंड का कवरेज तुलनाओं को अधिक सुसंगत रखता है।',
'How should I handle stale or missing data?': 'मुझे बासी या गुम डेटा को कैसे संभालना चाहिए?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'मानचित्र को शॉर्टलिस्ट टूल के रूप में उपयोग करें। यदि कोई पोस्टकोड मायने रखता है, तो वर्तमान आधिकारिक स्रोतों और सीधे स्थानीय जांच से नवीनतम विवरण सत्यापित करें।',
'How filters and comparisons should be interpreted.':
'फ़िल्टर और तुलनाओं की व्याख्या कैसे की जानी चाहिए.',
'Review postcode-level context before a viewing.':
'देखने से पहले पोस्टकोड-स्तरीय संदर्भ की समीक्षा करें।',
'How saved searches and account data are handled.':
'सहेजी गई खोजों और खाता डेटा को कैसे प्रबंधित किया जाता है।',
'How to use the map': 'मानचित्र का उपयोग कैसे करें',
'Methodology for postcode property research': 'पोस्टकोड संपत्ति अनुसंधान के लिए पद्धति',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode पद्धति - पोस्टकोड संपत्ति डेटा की व्याख्या कैसे करें',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'घर-खरीद शॉर्टलिस्ट टूल के रूप में पोस्टकोड फ़िल्टर, संपत्ति अनुमान, यात्रा-समय डेटा, स्कूल संदर्भ और स्थानीय संकेतों का उपयोग करने का तरीका समझें।',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode को क्षेत्र की शॉर्टलिस्टिंग को अधिक साक्ष्य आधारित बनाने के लिए डिज़ाइन किया गया है। यह संपत्ति एजेंटों, सर्वेक्षणकर्ताओं, वाहकों, ऋणदाताओं, स्कूल प्रवेश टीमों या स्थानीय प्राधिकरण जांचों को प्रतिस्थापित नहीं करता है।',
'Start with hard constraints': 'कठिन बाधाओं से शुरुआत करें',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'बजट, संपत्ति का प्रकार, फर्श क्षेत्र, आवागमन का समय और आवश्यक सेवाओं जैसे गैर-परक्राम्य मुद्दों से शुरुआत करें। नरम प्राथमिकताओं पर विचार करने से पहले यह असंभव पोस्टकोड को हटा देता है।',
'Use colour layers for trade-offs': 'ट्रेड-ऑफ़ के लिए रंग परतों का उपयोग करें',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'फ़िल्टर करने के बाद, शेष मानचित्र को एक समय में एक सिग्नल से रंगें: प्रति वर्ग मीटर कीमत, सड़क का शोर, स्कूल का संदर्भ, आवागमन का समय, ब्रॉडबैंड, या अपराध। इससे ट्रेड-ऑफ़ पर चर्चा करना आसान हो जाता है।',
'Measure whats working': 'मापें कि क्या काम कर रहा है',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'यह ट्रैक करने के लिए सर्च कंसोल और एनालिटिक्स का उपयोग करें कि कौन से सार्वजनिक पृष्ठ अनुक्रमित हैं, कौन सी क्वेरीज़ इंप्रेशन उत्पन्न करती हैं, और कौन से पृष्ठ आगंतुकों को डैशबोर्ड अन्वेषण में परिवर्तित करते हैं। प्रत्येक महत्वपूर्ण फ्रंटएंड परिवर्तन के बाद कोर वेब वाइटल्स की समीक्षा करें।',
'Can the tool choose the right postcode for me?': 'क्या टूल मेरे लिए सही पोस्टकोड चुन सकता है?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'नहीं, यह साक्ष्यों की तुलना करने और खोज क्षेत्र को कम करने में मदद करता है। अंतिम निर्णय के लिए प्रत्यक्ष दौरे, वर्तमान लिस्टिंग, कानूनी जांच, सर्वेक्षण और व्यक्तिगत निर्णय की आवश्यकता होती है।',
'How should I use estimates?': 'मुझे अनुमानों का उपयोग कैसे करना चाहिए?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'अनुमानों का उपयोग तुलना संकेतों के रूप में करें, न कि पेशेवर मूल्यांकन या खरीदारी सलाह के रूप में।',
'Understand where key filters come from.': 'समझें कि मुख्य फ़िल्टर कहाँ से आते हैं।',
'Apply the methodology to price-led area comparison.':
'मूल्य-आधारित क्षेत्र तुलना के लिए कार्यप्रणाली लागू करें।',
'Apply the methodology to destination-led search.':
'गंतव्य-आधारित खोज के लिए कार्यप्रणाली लागू करें।',
Trust: 'भरोसा रखें',
'Privacy and security for saved property searches':
'सहेजी गई संपत्ति खोजों के लिए गोपनीयता और सुरक्षा',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode गोपनीयता और सुरक्षा - सहेजी गई खोजें और खाता डेटा',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'जानें कि कैसे Perfect Postcode गोपनीयता और सुरक्षा को ध्यान में रखते हुए सहेजी गई खोजों, खाता डेटा और संपत्ति अनुसंधान वर्कफ़्लो का इलाज करता है।',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'संपत्ति अनुसंधान व्यक्तिगत प्राथमिकताओं, बजट और स्थानों को प्रकट कर सकता है। उत्पाद सार्वजनिक एसईओ पृष्ठों को केवल खाता क्षेत्रों से अलग रखता है और निजी डैशबोर्ड/खाता मार्गों को नोइंडेक्स के रूप में चिह्नित करता है।',
'Public pages and private areas are separated': 'सार्वजनिक पृष्ठ और निजी क्षेत्र अलग-अलग हैं',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'मार्केटिंग, कार्यप्रणाली, मार्गदर्शिका और सहायता पृष्ठ अनुक्रमित किए जा सकते हैं। डैशबोर्ड, खाता, सहेजी गई खोजें, आमंत्रण और आमंत्रण मार्गों को नोइंडेक्स के रूप में चिह्नित किया जाता है या जहां उपयुक्त हो क्रॉलर पहुंच से अवरुद्ध कर दिया जाता है।',
'Saved search data is account-scoped': 'सहेजा गया खोज डेटा खाता-क्षेत्र है',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'सहेजी गई खोजें और संपत्तियां साइन-इन उपयोग के लिए हैं। वे सार्वजनिक साइटमैप में शामिल नहीं हैं और उन्हें सार्वजनिक सामग्री के रूप में क्रॉल नहीं किया जाना चाहिए।',
'Search measurement without exposing private data': 'निजी डेटा को उजागर किए बिना माप खोजें',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'समग्र विश्लेषण और खोज कंसोल डेटा का उपयोग करके सार्वजनिक पृष्ठों पर एसईओ माप होना चाहिए। निजी क्वेरी पैरामीटर और खाता दृश्य अनुक्रमणीय लैंडिंग पृष्ठ नहीं बनने चाहिए।',
'Are saved searches listed in the sitemap?': 'क्या सहेजी गई खोजें साइटमैप में सूचीबद्ध हैं?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'नहीं, सार्वजनिक एसईओ पृष्ठ सूचीबद्ध हैं; खाता और सहेजे गए-खोज मार्गों को जानबूझकर बाहर रखा गया है।',
'Can private dashboard URLs appear in search?':
'क्या निजी डैशबोर्ड URL खोज में दिखाई दे सकते हैं?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'उन्हें अनुक्रमित नहीं किया जाना चाहिए. सर्वर निजी मार्गों को नोइंडेक्स चिह्नित करता है और साइटमैप केवल सार्वजनिक पृष्ठों को सूचीबद्ध करता है।',
'How to use public postcode data responsibly.':
'सार्वजनिक पोस्टकोड डेटा का जिम्मेदारीपूर्वक उपयोग कैसे करें।',
'What data powers the public comparisons.':
'कौन सा डेटा सार्वजनिक तुलनाओं को शक्ति प्रदान करता है।',
'Explore public postcode-search workflows.':
'सार्वजनिक पोस्टकोड-खोज वर्कफ़्लोज़ का अन्वेषण करें।',
},
};
export default hi;

View file

@ -107,6 +107,472 @@ const hu: Translations = {
relatedPages: 'Kapcsolódó oldalak',
relatedPagesDesc:
'Ezekkel a belső linkekkel ugyanazt az ingatlankeresési folyamatot más nézőpontból hasonlíthatod össze.',
pages: {
'Property price map': 'Ingatlan ártérkép',
'Compare property prices across every postcode in England':
'Hasonlítsa össze az ingatlanárakat az összes angliai irányítószám között',
'Property price map for England - Compare postcodes before viewing':
'Ingatlan ártérkép Angliában - Hasonlítsa össze az irányítószámokat a megtekintés előtt',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Hasonlítsa össze az eladási árakat, a becsült aktuális értéket, a négyzetméterenkénti árat és a helyi kontextust az angol irányítószámok között, mielőtt keresni kezdene az adatok között.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'A Perfect Postcode feltérképezi az eladási árakat, a becsült jelenlegi értéket, a négyzetméterenkénti árat, az ingatlan típusát, az alapterületet, a tulajdonjogot és a helyi környezetet, így a vásárlók reális keresési területeket találhatnak, mielőtt megnyitnák a listát tartalmazó portálokat.',
'Screen historical sale prices and current-value estimates by postcode.':
'A korábbi eladási árak és a becsült aktuális érték megjelenítése irányítószám szerint.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Hasonlítsa össze az értéket az ingázás, az iskolák, a szélessáv, a bűnözés, a zaj és a szolgáltatások értékével.',
'Build a shortlist before spending weekends on viewings.':
'Állítson össze egy szűkített listát, mielőtt a hétvégét nézegetéssel tölti.',
'Find postcodes that fit the budget before listings appear':
'A listák megjelenése előtt keresse meg a költségvetésnek megfelelő irányítószámokat',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Kezdje a maximális árral és az ingatlantípussal, majd színezze ki a térképet négyzetméterár vagy becsült aktuális ár alapján. Ez segít feltárni azokat a területeket, ahol korábban hasonló otthonokkal kereskedtek elérhető közelségben, még akkor is, ha ma még nincsenek élő listák.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Szűrés az utolsó ismert eladási ár, a becsült jelenlegi érték, az ingatlan típusa, birtoklása és alapterülete alapján.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Hasonlítsa össze a közeli irányítószámokat ugyanazokkal a kritériumokkal ahelyett, hogy a terület hírnevére hagyatkozna.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Az eredményeket rövid listaként használja a riasztások listázásához, a helyi kutatásokhoz és a megtekintésekhez.',
'Separate cheap from good value': 'Különítse el az olcsót a jó értéktől',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Az alacsonyabb ár kisebb lakásokat, gyengébb közlekedést, nagyobb zajt vagy kevesebb helyi szolgáltatást tükrözhet. A térkép láthatóan tartja ezeket a kompromisszumokat, így a legolcsóbb irányítószámot nem kezeli automatikusan a legjobb megoldásként.',
'Start from area value, not listing availability':
'Kezdje a terület értékével, ne a rendelkezésre állás felsorolásával',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'A listás portálokon ma csak az eladó lakások jelennek meg. Az irányítószám-szintű ingatlanártérkép segítségével szélesebb területeket hasonlíthat össze, megértheti a helyi ármintákat, és elkerülheti, hogy a következő helyeken megjelenjen a megfelelő hirdetés.',
'Use prices alongside real constraints': 'Használja az árakat valós korlátok mellett',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'A költségvetés ritkán számít önmagában. A Perfect Postcode az árszűrőket kombinálja az utazási idővel, az iskola minőségével, az ingatlan méretével, az energiahatékonysággal, a helyi környezettel és a szolgáltatásokkal, így a szűkített lista tükrözi, hogyan szeretne ténylegesen élni.',
'What the price data is for': 'Mire szolgálnak az áradatok',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Használja a térképet a területek összehasonlításához és a helyszíni kereséshez. Ez nem értékbecslés, jelzáloghitel-döntés, felmérés, jogi keresés vagy élő lista.',
'How to validate a promising area': 'Hogyan érvényesítsünk egy ígéretes területet',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Ha egy irányítószám ígéretesnek tűnik, a döntés meghozatala előtt ellenőrizze az aktuális listákat, az eladási árak összehasonlító adatait, az ügynökök adatait, az árvízkereséseket, a jogi csomagokat, a felméréseket és a helyi hatóságok adatait.',
'Is this a replacement for Rightmove or Zoopla?':
'Ez helyettesíti a Rightmove-ot vagy a Zoopla-t?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Nem. Használja a hirdetési portálok előtt és mellett. A Perfect Postcode segít eldönteni, hol keressen; a hirdetési portálok megmutatják, mi van jelenleg eladó.',
'Can I compare price with schools or commute time?':
'Összehasonlíthatom az árat az iskolák árával vagy az ingázási idővel?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Igen. Az árszűrők kombinálhatók az utazási idő, az iskolák, a bűnözés, a szélessáv, az útzaj, a szolgáltatások és a környezet szűrőivel.',
'Does the map cover all of the UK?': 'A térkép lefedi az egész Egyesült Királyságot?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'A jelenlegi termék Angliára összpontosít, mivel számos alapvető tulajdon- és irányítószám-adatkészlet Anglia-specifikus.',
'Birmingham property search guide': 'Birmingham ingatlankeresési útmutató',
'A worked example for balancing price, commute, and family trade-offs.':
'Működő példa az ár, az ingázás és a családi kompromisszumok kiegyensúlyozására.',
'Data sources and coverage': 'Adatforrások és lefedettség',
'See which datasets sit behind the postcode filters and where they have limits.':
'Tekintse meg, mely adatkészletek ülnek az irányítószám-szűrők mögött, és hol vannak korlátai.',
Methodology: 'Módszertan',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Értse meg, hogy a térkép hogyan támogatja a szűkített listák felvételét, és nem helyettesíti a kellő gondosságot.',
'Postcode checker': 'Irányítószám-ellenőrző',
'Check one postcode before you spend time on a viewing.':
'Ellenőrizze az egyik irányítószámot, mielőtt a megtekintéssel töltene időt.',
'Explore the property map': 'Fedezze fel az ingatlantérképet',
'Postcode property search': 'Irányítószám ingatlan keresés',
'Find postcodes that match your property search criteria':
'Keresse az ingatlankeresési kritériumoknak megfelelő irányítószámokat',
'Postcode property search - Find areas that match your criteria':
'Irányítószámú ingatlankeresés Keresse meg a kritériumainak megfelelő területeket',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Keressen minden irányítószámot költségvetés, ingatlantípus, alapterület, birtokviszony, ingázás, iskolák, bűnözés, szélessáv, zaj, parkok és helyi szolgáltatások alapján.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Keressen minden irányítószámon költségvetés, ingatlantípus, méret, birtoklás, ingázás, iskolák, bűnözés, szélessáv, zaj, parkok és helyi szolgáltatások szerint, ahelyett, hogy egyenként ellenőrizné a területeket.',
'Filter England-wide postcode data from one map.':
'Szűrje le az angliai irányítószámadatokat egyetlen térképről.',
'Shortlist unfamiliar areas with comparable evidence.':
'Sorolja fel az ismeretlen területeket összehasonlítható bizonyítékokkal.',
'Save and share search areas before booking viewings.':
'Mentse és ossza meg a keresési területeket a megtekintések lefoglalása előtt.',
'Turn a broad brief into postcode candidates':
'Változtassa meg a széles tájékoztatót irányítószám jelöltekké',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Először adja meg a gyakorlati korlátokat: költségvetés, ingatlan mérete, birtoklási ideje, utazási idő, iskolai igények, szélessáv, valamint a közúti zaj- vagy bűnözési szint toleranciája. A térkép eltávolítja azokat a helyeket, amelyek nem felelnek meg ezeknek a korlátozásoknak, és a fennmaradó lehetőségeket összehasonlíthatóvá teszi.',
'Relax one constraint at a time': 'Egyszerre lazítson egy kényszert',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Ha a keresés túl szűk lesz, lazítson meg egyetlen szűrőt, és figyelje, mely irányítószámok jelennek meg újra. Ez egyértelművé teszi a kompromisszumot ahelyett, hogy a találgatásokra hagyatkozna.',
'Turn vague areas into specific postcodes':
'A homályos területeket konkrét irányítószámokká alakíthatja',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'A nagyvárosi vagy kerületi keresések nagy különbségeket rejtenek az utcák között. A Perfect Postcode segítségével az általános területről a szigorú követelményeknek megfelelő irányítószámok felé léphet.',
'Keep trade-offs visible': 'Tartsa láthatóan a kompromisszumokat',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'Ha túl sok vagy túl kevés az egyezés, állítson be egyszerre egy kényszert, és nézze meg, hogy pontosan mely irányítószámok jelennek meg újra. Ez egyértelművé teszi a kompromisszumokat ahelyett, hogy a találgatásokra hagyatkozna.',
'Why postcode-level comparison matters':
'Miért számít az irányítószám-szintű összehasonlítás?',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Két közeli irányítószám különbözhet az iskoláktól, az út zajától, a közlekedési lehetőségektől, az ingatlanösszetételtől és az ártól függően. Az irányítószám szintű összehasonlítás csökkenti annak esélyét, hogy egy egész várost egységes piacként kezeljenek.',
'How to use the results': 'Hogyan használjuk fel az eredményeket',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Kezelje az egyező irányítószámokat kutatási sorként: ellenőrizze az élő listákat, látogasson el az utcákra, erősítse meg az iskolákat és a felvételiket, és tekintse át az aktuális hivatalos forrásokat.',
'Can I save a postcode property search?': 'Elmenthetem az irányítószámú ingatlankeresést?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Igen. Az engedéllyel rendelkező felhasználók elmenthetik a kereséseket, és később visszatérhetnek hozzájuk. A mentett keresések szűkített listákhoz és összehasonlító megjegyzésekhez készültek.',
'Can I search without knowing the area?': 'Kereshetek a környék ismerete nélkül?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Igen. A térképet úgy tervezték, hogy a gyakorlati korlátoknak megfelelő, ismeretlen területeket is felszínre hozzon, nem csak a már ismert helyeket.',
'Are the results live property listings?': 'Az eredmények élő ingatlanhirdetések?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Nem. Az eszköz összehasonlítja az irányítószámadatokat és a történelmi/kontextuális tulajdonságjeleket. Az aktuális elérhetőséghez továbbra is listáznia kell a portálokat.',
'Manchester property search guide': 'Manchester ingatlankeresési útmutató',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Regionális útmutató a Nagy-Manchester környéki keresés szűkítéséhez.',
'Start a postcode search': 'Indítsa el az irányítószám keresést',
'Commute property search': 'Ingatlan keresés',
'Search for places to live by commute time': 'Keressen lakóhelyeket az ingázási idő szerint',
'Commute property search - Find places to live by travel time':
'Ingatlankeresés Keressen lakóhelyeket az utazási idő alapján',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Szűrje az irányítószámokat az ingázási idő szerint, majd hasonlítsa össze az árakat, az iskolákat, a biztonságot, a szélessávot, az útzajokat, a parkokat és az ingatlanadatokat egy térképen.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Szűrje az irányítószámokat a modellezett autók, kerékpározás, gyaloglás és tömegközlekedési eszközök utazási ideje alapján, majd rétegezze az ingatlanárakat, az iskolákat, a bűnözést, a szélessávot, a zajt és a helyi létesítményeket.',
'Compare reachable postcodes by realistic travel-time bands.':
'Hasonlítsa össze az elérhető irányítószámokat valós utazási idősávok szerint.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Először keressen cél szerint, majd szűrjön az ingatlanra és a környékre.',
'Avoid areas that look close on a map but fail the daily journey.':
'Kerülje el azokat a területeket, amelyek a térképen közelinek tűnnek, de nem teszik lehetővé a napi utazást.',
'Start with the destination that matters': 'Kezdje a céllal, ami számít',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Válasszon egy ingázási célt, közlekedési módot és időtartományt, majd adja hozzá a tulajdonságszűrőket. Ez megakadályozza, hogy egy olcsónak tűnő terület kerüljön a szűkített listára, ha a napi utazás nem működik.',
'Compare the commute against the rest of daily life':
'Hasonlítsa össze az ingázást a mindennapi élet többi részével',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'A gyors ingázás nem elég, ha az ingatlan mérete, iskolai környezet, biztonsági küszöb, szélessáv vagy közúti zajnak való kitettség nem felel meg. A térkép egymás mellett tartja ezeket a jeleket.',
'Commute from postcodes, not just place names':
'Ingázzon irányítószámok alapján, nem csak helynevek alapján',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Ugyanabban a városban két utcának nagyon eltérő lehet az állomás megközelítése, útvonala és tömegközlekedési lehetőségei. Az irányítószám-szintű utazási idő szűrés ezt a különbséget láthatóvá teszi.',
'Balance journey time with the rest of the move':
'Egyensúlyozza az utazási időt a mozgás többi részével',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'A gyors ingázás csak akkor segít, ha a terület megfelel az Ön költségvetésének, lakhatási igényeinek, iskolai preferenciáinak, biztonsági küszöbének, szélessávú követelményeinek és az útzaj toleranciájának.',
'How travel-time filters should be interpreted':
'Hogyan kell értelmezni az utazási időszűrőket',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Az utazási idő modellezése hasznos a területek következetes összehasonlításához. Mielőtt elkötelezné magát, ellenőrizze az aktuális menetrendeket, a zavarási mintákat, a parkolást, a kerékpározási feltételeket és a gyalogos útvonalakat.',
'Why commute filters are combined with property data':
'Miért kombinálják az ingázási szűrőket a tulajdonságadatokkal?',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Az ingázási keresés akkor a leghasznosabb, ha eltávolítja a lehetetlen területeket, miközben továbbra is megmutatja, hogy a fennmaradó lehetőségek megfizethetőek és élhetőek-e.',
'Can I compare car, cycling, walking, and public transport?':
'Összehasonlíthatom az autót, a kerékpározást, a gyaloglást és a tömegközlekedést?',
'The product supports multiple travel modes where precomputed destination data is available.':
'A termék többféle utazási módot támogat, ahol előre kiszámított céladatok állnak rendelkezésre.',
'Are travel times exact?': 'Pontosak az utazási idők?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'Nem. Kezelje őket konzisztens összehasonlítási modellként, majd ellenőrizze a valódi útvonalat, mielőtt megtekintési vagy vásárlási döntést hozna.',
'Can I combine commute filters with schools and price?':
'Kombinálhatom az ingázási szűrőket az iskolákkal és az árakkal?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Igen. Az ingázási szűrő rétegezhető az ingatlanárral, a mérettel, az iskolákkal, a szélessávú internettel, a bűnözéssel, a szolgáltatásokkal és a környezeti jelekkel.',
'Bristol property search guide': 'Bristol ingatlankeresési útmutató',
'A worked example for balancing city access, price, and local context.':
'Működő példa a városi hozzáférés, az ár és a helyi környezet egyensúlyának megteremtésére.',
'Search by commute time': 'Keresés ingázási idő szerint',
'Schools and property search': 'Iskolák és ingatlankeresés',
'Find property search areas with schools and family trade-offs in view':
'Keressen ingatlankeresési területeket iskolákkal és családi kompromisszumokkal',
'School property search - Compare postcodes for family moves':
'Iskolai ingatlankeresés Hasonlítsa össze a családi költözés irányítószámait',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Hasonlítsa össze a közeli iskolákat, az ingatlanok méretét, az árakat, a parkokat, a biztonságot, az ingázást és a helyi szolgáltatásokat, mielőtt összeállít egy megtekintési listát.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Hasonlítsa össze a közeli Ofsted értékeléseket, az oktatási környezetet, az ingatlan méretét, a költségvetést, a biztonságot, a parkokat, az ingázást és a helyi szolgáltatásokat, mielőtt szűkítené a megtekintési listát.',
'Filter for nearby school quality alongside housing requirements.':
'Szűrje a közeli iskola minőségét a lakhatási követelmények mellett.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Hasonlítsa össze a családbarát kompromisszumokat az ismeretlen irányítószámok között.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Használja a térképet szűkített lista eszközeként, mielőtt ellenőrizné a befogadásokat és a vízgyűjtőket.',
'Use school context without ignoring the home':
'Használja az iskolai környezetet anélkül, hogy figyelmen kívül hagyná az otthont',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Kezdje az ingatlan méretével, költségvetésével és ingázási korlátaival, majd rétegezzen a közeli iskola minőségét és a helyi környezetet. Ez megakadályozza, hogy az iskola által vezetett keresések elrejtse a megfizethetőséget vagy a mindennapi élet problémáit.',
'Verify admissions before deciding': 'A döntés előtt ellenőrizze a felvételt',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Az iskolai adatok ígéretes területekre utalhatnak, de a felvételi szabályok és a vonzáskörzetek változhatnak. Erősítse meg a jelenlegi megállapodásokat az iskolákkal és a helyi hatóságokkal.',
'School quality is one part of the shortlist':
'Az iskolai minőség a szűkített lista egyik része',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'A Perfect Postcode segítségével összehasonlíthatja a közeli iskola adatait a családi költözést meghatározó egyéb gyakorlati korlátokkal: hely, ár, ingázás, parkok, biztonság és helyi szolgáltatások.',
'Check catchments before making decisions': 'Döntéshozatal előtt ellenőrizze a vízgyűjtőket',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'A felvételi szabályok és a vízgyűjtő határok változhatnak. Használja az irányítószám-szintű iskolai adatokat az ígéretes területek megtalálásához, majd ellenőrizze az aktuális felvételi adatokat az iskolával vagy a helyi hatóságokkal.',
'How to treat school filters': 'Hogyan kezeljük az iskolai szűrőket',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Használja az iskolai szűrőket a kutatás szűkítésére, ne pedig a felvételi jogosultság feltételezésére. A minősítéseket, a távolságot, a felvételi kritériumokat és az iskolai kapacitást ellenőrizni kell az aktuális hivatalos forrásokból.',
'Family trade-offs to compare': 'Összehasonlítandó családi kompromisszumok',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Kombináld az iskolákat a parkokkal, az útzajjal, a bűnözéssel, az ingatlan méretével, az ingázással, a szélessávval és az árakkal, hogy a szűkített lista tükrözze az egész lépést.',
'Does this show school catchment guarantees?':
'Ez mutatja az iskolai vonzáskörzeti garanciákat?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'Nem. Segít azonosítani az ígéretes területeket, de a vonzáskörzeteket és a befogadásokat ellenőrizni kell az iskolával vagy a helyi hatósággal.',
'Can I combine school filters with parks and safety?':
'Kombinálhatom az iskolai szűrőket parkokkal és biztonsággal?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Igen. Az iskolatudatos keresés kombinálható bűnözéssel, parkokkal, ingázással, árral, ingatlanmérettel és helyi szolgáltatásokkal.',
'Is Ofsted the only school signal?': 'Az Ofsted az egyetlen iskolai jelzés?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'Egyetlen pontszám sem dönthet a lépésről. Használja a térképet kiindulási pontként, majd tekintse át részletesen az aktuális iskolai információkat.',
'See where education, property, transport, and environment data comes from.':
'Tekintse meg, honnan származnak az oktatási, ingatlan-, közlekedési és környezeti adatok.',
'Explore school-aware searches': 'Fedezze fel az iskolatudatos kereséseket',
'Check postcode data before you book a viewing':
'A megtekintés lefoglalása előtt ellenőrizze az irányítószám adatait',
'Postcode checker - Property, crime, broadband, noise and schools':
'Irányítószám-ellenőrző Ingatlanok, bűnözés, szélessáv, zaj és iskolák',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Ellenőrizze az irányítószám-szintű ingatlanárakat, az EPC-adatokat, a bűnözést, a szélessávot, az útzajt, az iskolákat, az önkormányzati adót, a kényelmi szolgáltatásokat és az utazási időt.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Tekintse át az ingatlanárakat, az EPC-környezetet, a bűnözést, a szélessávot, az utak zaját, a helyi létesítményeket, az iskolákat, a nélkülözést, az önkormányzati adót és az utazási időre vonatkozó adatokat egyetlen irányítószám-először térképen.',
'Check multiple local signals before visiting a street.':
'Ellenőrizze több helyi jelet, mielőtt felkeres egy utcát.',
'Use official and open datasets rather than reputation alone.':
'Használjon hivatalos és nyílt adatkészleteket, ne csak a hírnevet.',
'Compare postcodes consistently across England.':
'Hasonlítsa össze következetesen az irányítószámokat Angliában.',
'Check the street before spending a viewing slot':
'Nézze meg az utcát, mielőtt megtekintési időt tölt el',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Használja az irányítószám-ellenőrzőt az árelőzmények, a helyi környezet, a szolgáltatások, az iskolák és a környezeti jelek áttekintésére, mielőtt időt szánna a látogatásra.',
'Compare neighbouring postcodes': 'Hasonlítsa össze a szomszédos irányítószámokat',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Ha egy irányítószám ígéretesnek tűnik, hasonlítsa össze a szomszédos területeket ugyanazokkal a szűrőkkel. Ez gyakran felfedi, hogy a probléma utcaspecifikus vagy egy szélesebb minta része.',
'Useful before and alongside listing portals':
'Hasznos a hirdetési portálok előtt és mellett',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'A felsorolt fotók ritkán mondanak eleget a környező utcáról. A Perfect Postcode bizonyítékokkal vezérelt irányítószám-ellenőrzést tesz lehetővé, mielőtt időt szánna a megtekintésre.',
'A screening tool, not professional advice': 'Szűrőeszköz, nem szakmai tanács',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'Az adatok szűkítésre és összehasonlításra készültek. Bármely vásárláshoz továbbra is szükség van az aktuális listázási ellenőrzésekre, a jogi átvilágításra, az árvízkutatásokra, a hitelezői követelményekre és a felmérések eredményeire.',
'What a postcode check can catch': 'Amit egy irányítószám-ellenőrzés elkaphat',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'Az irányítószám-ellenőrzés feltárhatja az árkontextust, a környezeti jelzéseket, a közeli létesítményeket és más olyan helyi mutatókat, amelyeket könnyen el lehet hagyni az adatlapon.',
'What a postcode check cant prove': 'Amit az irányítószám-ellenőrzés nem tud bizonyítani',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Nem tudja megerősíteni az otthon állapotát, a jövőbeni fejlesztést, a jogcímet, a hitelezői követelményeket vagy a jelenlegi utcai szintű tapasztalatot. Még mindig közvetlen ellenőrzésre van szükségük.',
'Can I use the checker before a viewing?': 'Használhatom az ellenőrzőt megtekintés előtt?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Igen. Ez az egyik fő felhasználási eset: először szűrje le az irányítószámot, majd döntse el, hogy megéri-e a megtekintése.',
'Does the checker include exact property condition?':
'Az ellenőrző pontos ingatlanállapotot tartalmaz?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Nem. Az ingatlan állapota megköveteli a részleteket, felméréseket és közvetlen ellenőrzést.',
'Can I compare multiple postcodes?': 'Összehasonlíthatok több irányítószámot?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Igen. A térképet az irányítószámok következetes összehasonlítására tervezték.',
'Check postcodes on the map': 'Ellenőrizze az irányítószámokat a térképen',
'Regional guide': 'Regionális útmutató',
'How to compare Birmingham postcodes before a property search':
'Birmingham irányítószámainak összehasonlítása ingatlankeresés előtt',
'Birmingham property search - Compare postcodes by price and commute':
'Birminghami ingatlankeresés Hasonlítsa össze az irányítószámokat ár és ingázás alapján',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Használja az irányítószám-szintű adatokat a birminghami ingatlanárak, az ingázási kompromisszumok, az iskolák, a bűnözés, a szélessáv és a helyi szolgáltatások összehasonlítására a megtekintés előtt.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'A birminghami keresések gyorsan változhatnak utcáról utcára. Használjon irányítószám-szintű bizonyítékokat a költségvetés, az ingázás, az iskolák, a zaj, a bűnözés és a helyi szolgáltatások összehasonlítására, mielőtt eldönti, hol nézze meg az adatokat.',
'Start with commute corridors': 'Kezdje az ingázási folyosókkal',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Válassza ki a fontos úti célt, például munkahelyet, állomást, egyetemet vagy kórházat, majd hasonlítsa össze az elérhető irányítószámokat közlekedési mód és utazási idősáv szerint.',
'Use commute time as a hard filter before judging price.':
'Használja az ingázási időt kemény szűrőként az ár megítélése előtt.',
'Compare public transport with car, cycling, or walking where available.':
'Hasonlítsa össze a tömegközlekedést autóval, kerékpározással vagy gyalogos közlekedéssel, ahol lehetséges.',
'Check the route manually before booking viewings.':
'A megtekintések lefoglalása előtt ellenőrizze az útvonalat manuálisan.',
'Compare price with property type': 'Hasonlítsa össze az árat az ingatlan típusával',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'A medián árak önmagukban félrevezetőek lehetnek, ha a helyi ingatlanösszetétel megváltozik. Adjon hozzá ingatlantípust, birtoklási időt, alapterületet és árszűrőt, hogy a hasonló területeket tisztességesen hasonlítsa össze.',
'Keep family and environment trade-offs visible':
'A család és a környezet közötti kompromisszumok láthatóak legyenek',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Az iskolai környezetet, a parkokat, az útzajokat, a szélessávot és a bűnjeleket az ingatlanszűrők tetejére helyezze. Ez megkönnyíti annak eldöntését, hogy mely kompromisszumok elfogadhatók.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Meg tudja mondani a Perfect Postcode Birmingham legjobb környékét?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Egyetlen eszköz sem tudja eldönteni a legjobb területet minden vásárló számára. Segít összehasonlítani az irányítószámokat saját korlátaival, így jobb szűkített listát készíthet.',
'Should I use this instead of local knowledge?': 'Ezt használjam a helyismeret helyett?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Nem. Használja a jelöltek megkeresésére és összehasonlítására, majd érvényesítse őket látogatásokkal, helyi tanácsokkal, listákkal és hatósági ellenőrzésekkel.',
'Compare price patterns before looking at live listings.':
'Hasonlítsa össze az ármintákat, mielőtt megnézné az élő listákat.',
'Search by travel time and then layer on property requirements.':
'Keressen utazási idő szerint, majd rétegezzen az ingatlanigényeket.',
'Understand how to interpret filters and limitations.':
'Ismerje meg a szűrők és korlátozások értelmezését.',
'Compare Birmingham postcodes': 'Hasonlítsa össze a birminghami irányítószámokat',
'How to compare Manchester postcodes for a property search':
'Hogyan hasonlítsuk össze a manchesteri irányítószámokat ingatlankereséshez',
'Manchester property search - Compare postcodes before viewing':
'Manchesteri ingatlankeresés - Hasonlítsa össze az irányítószámokat a megtekintés előtt',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Hasonlítsa össze Manchester környéki irányítószámait költségvetés, ingázás, ingatlantípus, iskolák, szélessáv, bűnözés, zaj és szolgáltatások szerint, mielőtt lefoglalná a megtekintéseket.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'A Manchester környéki keresés kiterjedhet a városközpontra, a külvárosra és az ingázási lehetőségekre. A Perfect Postcode segítségével az egyes irányítószámok összehasonlíthatók ugyanazokkal a tulajdonságokkal és a mindennapi élet korlátozásával.',
'Use travel time to define the real search area':
'Használja az utazási időt a valódi keresési terület meghatározásához',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Kezdje a fontos célpontoktól, majd hasonlítsa össze az elérhető irányítószámokat, ahelyett, hogy azt feltételezné, hogy minden közeli hely ugyanazt a gyakorlati utat járja be.',
'Compare housing requirements before lifestyle preferences':
'Hasonlítsa össze a lakhatási igényeket az életmódbeli preferenciák előtt',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Szűrje az ingatlan típusa, alapterülete, birtoklási ideje és ár alapján, mielőtt megítélné a felszereltséget. Ezáltal a szűkített lista olyan otthonokra épül, amelyek reálisan működhetnek.',
'Check local context consistently': 'Következetesen ellenőrizze a helyi környezetet',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Használja a szélessávot, a bűnözést, az útzajt, a parkokat, iskolákat és létesítményeket hasonló jelként. Ezután érvényesítse a legerősebb jelölteket az aktuális helyi ellenőrzésekkel.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Összehasonlíthatom Manchester külvárosait a városközpont irányítószámaival?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Igen. Ugyanazt a költségkeret-, tulajdon-, ingázási és helyi kontextusszűrőt használja mindkettőben, így a kompromisszumok láthatóak maradnak.',
'Does this include live listings?': 'Ez magában foglalja az élő listákat?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Nem. Használja annak eldöntésére, hogy hol keressen, majd használja az aktuális eladó lakások listázási portálját.',
'Move from a broad search brief to specific postcode candidates.':
'Térjen át a széles körű keresési összefoglalóról a konkrét irányítószám jelöltekre.',
'Data sources': 'Adatforrások',
'Review the datasets used for property and local-context comparison.':
'Tekintse át a tulajdonságok és a helyi kontextus összehasonlításához használt adatkészleteket.',
'Check a single postcode before arranging a viewing.':
'A megtekintés megszervezése előtt ellenőrizze az irányítószámot.',
'Compare Manchester postcodes': 'Hasonlítsa össze a Manchester irányítószámait',
'How to compare Bristol postcodes before a property search':
'Hogyan hasonlítsuk össze Bristol irányítószámait ingatlankeresés előtt',
'Bristol property search - Compare postcodes by commute and price':
'Ingatlankeresés Bristolban Hasonlítsa össze az irányítószámokat ingázás és ár alapján',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Hasonlítsa össze Bristol irányítószámait ár, ingázás, ingatlan mérete, iskolák, szélessáv, bűnözés, közúti zaj, parkok és szolgáltatások szerint a megtekintés előtt.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'A bristoli keresések gyakran éles kompromisszumot foglalnak magukban az ár, az utazási idő, az ingatlan mérete és a környék kontextusa között. Az irányítószám-első összehasonlítás láthatóvá teszi ezeket a kompromisszumokat.',
'Make commute constraints explicit': 'Tegye egyértelművé az ingázási korlátozásokat',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'Ha fontos a központ, állomás, kórház, egyetem vagy üzleti park elérése, először használja az utazási idő szűrőit, majd hasonlítsa össze a fennmaradó irányítószámokat ingatlanadatok alapján.',
'Compare value, not just headline price': 'Hasonlítsa össze az értéket, ne csak a főárat',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Használja együtt az ár-, ingatlantípus- és alapterület-szűrőket. Ez segít megkülönböztetni az alacsonyabb költségű területeket azoktól a területektől, amelyek egyszerűen kisebb vagy eltérő otthonokat tartalmaznak.',
'Screen environmental and local-service signals':
'Környezeti és helyi szolgáltatási jelek képernyője',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Az útzaj, a parkok, a szélessáv, a bűnözés és a szolgáltatások befolyásolhatják az ingatlan napi működését. Használja őket szűrési kritériumként a megtekintések lefoglalása előtt.',
'Can I use this for commuter villages around Bristol?':
'Használhatom ezt a Bristol környéki ingázó falvakban?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Igen, ahol a vonatkozó irányítószám és utazási idő rendelkezésre áll. Döntés előtt mindig ellenőrizze manuálisan az útvonalakat és a szolgáltatásokat.',
'Can this tell me whether a listing is good value?':
'Ez meg tudja mondani, hogy egy hirdetés jó érték-e?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'Megadhatja a területi kontextust, de egy adott adatlapnak továbbra is szüksége van összehasonlítható eladásokra, állapotellenőrzésekre, felmérési eredményekre és adott esetben szakmai tanácsra.',
'Search by reachable postcodes before refining by budget and local context.':
'Keressen elérhető irányítószámok alapján, mielőtt finomítaná a költségvetés és a helyi kontextus alapján.',
'Understand price patterns before setting listing alerts.':
'Ismerje meg az ármintákat, mielőtt beállítja a listára vonatkozó figyelmeztetéseket.',
'Privacy and security': 'Adatvédelem és biztonság',
'How account and saved-search data is handled in the product.':
'Hogyan történik a fiók és a mentett keresési adatok kezelése a termékben.',
'Compare Bristol postcodes': 'Hasonlítsa össze a Bristol irányítószámait',
'Trust and coverage': 'Bizalom és fedezet',
'Perfect Postcode data sources and coverage': 'Perfect Postcode adatforrások és lefedettség',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode-adatforrások ingatlanok, iskolák, ingázás és helyi környezet',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Tekintse át a Perfect Postcode által használt nyilvános és hivatalos adatkészleteket, beleértve az ingatlanárakat, az EPC-t, az iskolákat, a bűnözést, a szélessávot, a zajt és az utazási időt.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'A Perfect Postcode egyesíti az ingatlanokat, a közlekedést, az oktatást, a környezetet és a helyi szolgáltatási adatkészleteket, így a vásárlók következetesen összehasonlíthatják az irányítószámokat. Ez az oldal elmagyarázza, hogy mire szolgálnak az adatok, és hol kell azokat ellenőrizni.',
'Property and housing context': 'Ingatlan és lakáskörnyezet',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'A termék ingatlantranzakciókat és lakáskontextusú adatkészleteket használ az olyan szűrők támogatására, mint az eladási ár, az ingatlan típusa, a birtoklás, az alapterület, az energiateljesítmény és a becsült aktuális érték.',
'Use these fields to compare areas, not as a formal valuation.':
'Ezeket a mezőket területek összehasonlítására használja, ne formális értékelésként.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Vásárlás előtt ellenőrizze az aktuális listákat, a címadatokat, a hitelezői követelményeket és a felmérés eredményeit.',
'Schools, safety, broadband, and environment': 'Iskolák, biztonság, szélessáv és környezet',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'A helyi kontextusszűrők segítenek összehasonlítani a mindennapi életet befolyásoló jelek irányítószámait. Ezeket szűrési adatokként kell kezelni, és a döntések meghozatalához össze kell hasonlítani a jelenlegi hivatalos forrásokkal.',
'Travel-time data': 'Utazási idő adatok',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Az utazási idő szűrőit a területek következetes összehasonlítására tervezték. Az útvonal elérhetőségét, a fennakadásokat, a parkolást, a gyalogos hozzáférést és a menetrend részleteit ellenőrizni kell, mielőtt elkötelezné magát egy adott területen.',
'Why does coverage focus on England?': 'Miért fókuszál a tudósítás Angliára?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Számos alapvető tulajdon, oktatás és helyi kontextusú adatkészlet joghatóság-specifikus. Az angol lefedettség következetesebbé teszi az összehasonlításokat.',
'How should I handle stale or missing data?':
'Hogyan kezeljem az elavult vagy hiányzó adatokat?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Használja a térképet szűkített lista eszközeként. Ha az irányítószám számít, ellenőrizze a legfrissebb adatokat aktuális hivatalos forrásokból, és közvetlen helyi ellenőrzéseket végezzen.',
'How filters and comparisons should be interpreted.':
'Hogyan kell értelmezni a szűrőket és az összehasonlításokat.',
'Review postcode-level context before a viewing.':
'Megtekintés előtt tekintse át az irányítószám-szintű kontextust.',
'How saved searches and account data are handled.':
'A mentett keresések és fiókadatok kezelésének módja.',
'How to use the map': 'Hogyan kell használni a térképet',
'Methodology for postcode property research': 'Az irányítószám-tulajdonkutatás módszertana',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode módszertan Hogyan értelmezzük az irányítószám tulajdoni adatokat',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Ismerje meg, hogyan használhatja az irányítószám-szűrőket, az ingatlanbecsléseket, az utazási időre vonatkozó adatokat, az iskolai környezetet és a helyi jelzéseket lakásvásárlási szűkített eszközként.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'A Perfect Postcode célja, hogy a területek szűkített listáját több bizonyítékra irányítsa. Nem helyettesíti az ingatlanügynököket, a földmérőket, a szállítókat, a hitelezőket, az iskolai felvételi csoportokat vagy a helyi hatóságok ellenőrzéseit.',
'Start with hard constraints': 'Kezdje kemény korlátokkal',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Kezdje a nem alku tárgyát képező dolgokkal, mint például a költségvetés, az ingatlan típusa, az alapterület, az ingázási idő és az alapvető szolgáltatások. Ez eltávolítja a lehetetlen irányítószámokat, mielőtt a lágyabb beállításokat figyelembe venné.',
'Use colour layers for trade-offs': 'Használjon színrétegeket a kompromisszumokhoz',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'Szűrés után színezze ki a fennmaradó térképet egy-egy jellel: négyzetméterár, útzaj, iskolai környezet, ingázási idő, szélessáv vagy bűnözés. Ez megkönnyíti a kompromisszumok megvitatását.',
'Measure whats working': 'Mérje meg, mi működik',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Használja a Search Console-t és az Analytics szolgáltatást annak nyomon követésére, hogy mely nyilvános oldalak kerülnek indexelésre, mely lekérdezések eredményeznek megjelenítéseket, és mely oldalak váltják át a látogatókat irányítópult-felfedezéssé. Minden lényeges kezelőfelület-módosítás után tekintse át a Core Web Vitals-t.',
'Can the tool choose the right postcode for me?':
'Ki tudja választani az eszköz a számomra megfelelő irányítószámot?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Nem. Segít összehasonlítani a bizonyítékokat és csökkenteni a keresési területet. A végső döntéshez közvetlen látogatásokra, aktuális listákra, jogi ellenőrzésekre, felmérésekre és személyes ítéletekre van szükség.',
'How should I use estimates?': 'Hogyan használjam a becsléseket?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Használjon becsléseket összehasonlító jelként, ne pedig szakmai értékelésként vagy vásárlási tanácsként.',
'Understand where key filters come from.': 'Ismerje meg, honnan származnak a kulcsszűrők.',
'Apply the methodology to price-led area comparison.':
'Alkalmazza a módszertant az árvezérelt terület-összehasonlításra.',
'Apply the methodology to destination-led search.':
'Alkalmazza a módszertant a célvezérelt keresésre.',
Trust: 'Bizalom',
'Privacy and security for saved property searches':
'Adatvédelem és biztonság a mentett ingatlankereséshez',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode adatvédelem és biztonság Mentett keresések és fiókadatok',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Ismerje meg, hogyan kezeli a Perfect Postcode a mentett kereséseket, a fiókadatokat és a tulajdonkutatási munkafolyamatokat az adatvédelem és a biztonság szem előtt tartásával.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Az ingatlankutatás feltárhatja a személyes prioritásokat, a költségvetést és a helyszíneket. A termék elkülöníti a nyilvános keresőoptimalizálási oldalakat a csak fiókot tartalmazó területektől, és a privát irányítópult/fiókútvonalakat noindexként jelöli meg.',
'Public pages and private areas are separated':
'A nyilvános oldalak és a privát területek el vannak választva',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'A marketing, a módszertan, az útmutató és a támogatási oldalak indexelhetők. Az irányítópult, a fiók, a mentett keresések, a meghívók és a meghívási útvonalak noindex-szel vannak megjelölve, vagy adott esetben blokkolva vannak a feltérképező robot számára.',
'Saved search data is account-scoped': 'A mentett keresési adatok fiókra vonatkoznak',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'A mentett keresések és tulajdonságok bejelentkezett használatra szolgálnak. Nem szerepelnek a nyilvános webhelytérképen, és nyilvános tartalomként nem térképezhetők fel.',
'Search measurement without exposing private data':
'A mérési adatok keresése személyes adatok felfedése nélkül',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'A keresőoptimalizálás mérésének nyilvános oldalakon kell történnie, összesített elemzési és Search Console-adatok felhasználásával. A privát lekérdezési paraméterek és a fióknézetek nem válhatnak indexelhető céloldalakká.',
'Are saved searches listed in the sitemap?':
'A mentett keresések szerepelnek az oldaltérképen?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Nem. A nyilvános SEO oldalak felsorolva vannak; a fiók és a mentett keresési útvonalak szándékosan ki vannak zárva.',
'Can private dashboard URLs appear in search?':
'Megjelenhetnek a privát irányítópult-URL-ek a keresésben?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Nem szabad indexelni őket. A szerver a noindex privát útvonalakat jelöli meg, a webhelytérkép pedig csak a nyilvános oldalakat sorolja fel.',
'How to use public postcode data responsibly.':
'A nyilvános irányítószámadatok felelősségteljes használata.',
'What data powers the public comparisons.':
'Milyen adatok alapozzák meg a nyilvános összehasonlításokat.',
'Explore public postcode-search workflows.':
'Fedezze fel a nyilvános irányítószám-keresési munkafolyamatokat.',
},
},
// ── Auth Modal ─────────────────────────────────────
@ -566,11 +1032,14 @@ const hu: Translations = {
learnPage: {
faq: 'GYIK',
dataSources: 'Adatforrások',
articles: 'Cikkek',
support: 'Támogatás',
dataSourcesIntro:
'Ez az alkalmazás {{count}} nyilvános adatkészletet kombinál, amelyek ingatlanárakat, energetikai teljesítményt, közlekedést, demográfiát, bűnözést, környezetet és még sok mást fednek le.',
faqIntro:
'Akár első vásárlóként szűkíted a keresést, akár ismeretlen irányítószámot ellenőrzöl, akár megtekintési listát építesz, így segít a Perfect Postcode eldönteni, hol érdemes keresni.',
articlesIntro:
'Böngészd a nyilvános útmutatókat ingatlankeresésről, ingázásról, iskolákról, irányítószám-ellenőrzésről, regionális összehasonlításokról, adatlefedettségről, módszertanról és adatvédelemről.',
supportIntro: 'Kérdésed van? Nézd meg a GYIK-et, vagy írj nekünk közvetlenül.',
source: 'Forrás:',
optOut: 'Nyilvános közzététel visszautasítása',
@ -1125,471 +1594,6 @@ const hu: Translations = {
' years': ' év',
' rooms': ' szoba',
},
seo: {
'Property price map': 'Ingatlan ártérkép',
'Compare property prices across every postcode in England':
'Hasonlítsa össze az ingatlanárakat az összes angliai irányítószám között',
'Property price map for England - Compare postcodes before viewing':
'Ingatlan ártérkép Angliában - Hasonlítsa össze az irányítószámokat a megtekintés előtt',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'Hasonlítsa össze az eladási árakat, a becsült aktuális értéket, a négyzetméterenkénti árat és a helyi kontextust az angol irányítószámok között, mielőtt keresni kezdene az adatok között.',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'A Perfect Postcode feltérképezi az eladási árakat, a becsült jelenlegi értéket, a négyzetméterenkénti árat, az ingatlan típusát, az alapterületet, a tulajdonjogot és a helyi környezetet, így a vásárlók reális keresési területeket találhatnak, mielőtt megnyitnák a listát tartalmazó portálokat.',
'Screen historical sale prices and current-value estimates by postcode.':
'A korábbi eladási árak és a becsült aktuális érték megjelenítése irányítószám szerint.',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'Hasonlítsa össze az értéket az ingázás, az iskolák, a szélessáv, a bűnözés, a zaj és a szolgáltatások értékével.',
'Build a shortlist before spending weekends on viewings.':
'Állítson össze egy szűkített listát, mielőtt a hétvégét nézegetéssel tölti.',
'Find postcodes that fit the budget before listings appear':
'A listák megjelenése előtt keresse meg a költségvetésnek megfelelő irányítószámokat',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'Kezdje a maximális árral és az ingatlantípussal, majd színezze ki a térképet négyzetméterár vagy becsült aktuális ár alapján. Ez segít feltárni azokat a területeket, ahol korábban hasonló otthonokkal kereskedtek elérhető közelségben, még akkor is, ha ma még nincsenek élő listák.',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'Szűrés az utolsó ismert eladási ár, a becsült jelenlegi érték, az ingatlan típusa, birtoklása és alapterülete alapján.',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'Hasonlítsa össze a közeli irányítószámokat ugyanazokkal a kritériumokkal ahelyett, hogy a terület hírnevére hagyatkozna.',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'Az eredményeket rövid listaként használja a riasztások listázásához, a helyi kutatásokhoz és a megtekintésekhez.',
'Separate cheap from good value': 'Különítse el az olcsót a jó értéktől',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'Az alacsonyabb ár kisebb lakásokat, gyengébb közlekedést, nagyobb zajt vagy kevesebb helyi szolgáltatást tükrözhet. A térkép láthatóan tartja ezeket a kompromisszumokat, így a legolcsóbb irányítószámot nem kezeli automatikusan a legjobb megoldásként.',
'Start from area value, not listing availability':
'Kezdje a terület értékével, ne a rendelkezésre állás felsorolásával',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'A listás portálokon ma csak az eladó lakások jelennek meg. Az irányítószám-szintű ingatlanártérkép segítségével szélesebb területeket hasonlíthat össze, megértheti a helyi ármintákat, és elkerülheti, hogy a következő helyeken megjelenjen a megfelelő hirdetés.',
'Use prices alongside real constraints': 'Használja az árakat valós korlátok mellett',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'A költségvetés ritkán számít önmagában. A Perfect Postcode az árszűrőket kombinálja az utazási idővel, az iskola minőségével, az ingatlan méretével, az energiahatékonysággal, a helyi környezettel és a szolgáltatásokkal, így a szűkített lista tükrözi, hogyan szeretne ténylegesen élni.',
'What the price data is for': 'Mire szolgálnak az áradatok',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'Használja a térképet a területek összehasonlításához és a helyszíni kereséshez. Ez nem értékbecslés, jelzáloghitel-döntés, felmérés, jogi keresés vagy élő lista.',
'How to validate a promising area': 'Hogyan érvényesítsünk egy ígéretes területet',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'Ha egy irányítószám ígéretesnek tűnik, a döntés meghozatala előtt ellenőrizze az aktuális listákat, az eladási árak összehasonlító adatait, az ügynökök adatait, az árvízkereséseket, a jogi csomagokat, a felméréseket és a helyi hatóságok adatait.',
'Is this a replacement for Rightmove or Zoopla?':
'Ez helyettesíti a Rightmove-ot vagy a Zoopla-t?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'Nem. Használja a hirdetési portálok előtt és mellett. A Perfect Postcode segít eldönteni, hol keressen; a hirdetési portálok megmutatják, mi van jelenleg eladó.',
'Can I compare price with schools or commute time?':
'Összehasonlíthatom az árat az iskolák árával vagy az ingázási idővel?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'Igen. Az árszűrők kombinálhatók az utazási idő, az iskolák, a bűnözés, a szélessáv, az útzaj, a szolgáltatások és a környezet szűrőivel.',
'Does the map cover all of the UK?': 'A térkép lefedi az egész Egyesült Királyságot?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'A jelenlegi termék Angliára összpontosít, mivel számos alapvető tulajdon- és irányítószám-adatkészlet Anglia-specifikus.',
'Birmingham property search guide': 'Birmingham ingatlankeresési útmutató',
'A worked example for balancing price, commute, and family trade-offs.':
'Működő példa az ár, az ingázás és a családi kompromisszumok kiegyensúlyozására.',
'Data sources and coverage': 'Adatforrások és lefedettség',
'See which datasets sit behind the postcode filters and where they have limits.':
'Tekintse meg, mely adatkészletek ülnek az irányítószám-szűrők mögött, és hol vannak korlátai.',
Methodology: 'Módszertan',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'Értse meg, hogy a térkép hogyan támogatja a szűkített listák felvételét, és nem helyettesíti a kellő gondosságot.',
'Postcode checker': 'Irányítószám-ellenőrző',
'Check one postcode before you spend time on a viewing.':
'Ellenőrizze az egyik irányítószámot, mielőtt a megtekintéssel töltene időt.',
'Explore the property map': 'Fedezze fel az ingatlantérképet',
'Postcode property search': 'Irányítószám ingatlan keresés',
'Find postcodes that match your property search criteria':
'Keresse az ingatlankeresési kritériumoknak megfelelő irányítószámokat',
'Postcode property search - Find areas that match your criteria':
'Irányítószámú ingatlankeresés Keresse meg a kritériumainak megfelelő területeket',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'Keressen minden irányítószámot költségvetés, ingatlantípus, alapterület, birtokviszony, ingázás, iskolák, bűnözés, szélessáv, zaj, parkok és helyi szolgáltatások alapján.',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'Keressen minden irányítószámon költségvetés, ingatlantípus, méret, birtoklás, ingázás, iskolák, bűnözés, szélessáv, zaj, parkok és helyi szolgáltatások szerint, ahelyett, hogy egyenként ellenőrizné a területeket.',
'Filter England-wide postcode data from one map.':
'Szűrje le az angliai irányítószámadatokat egyetlen térképről.',
'Shortlist unfamiliar areas with comparable evidence.':
'Sorolja fel az ismeretlen területeket összehasonlítható bizonyítékokkal.',
'Save and share search areas before booking viewings.':
'Mentse és ossza meg a keresési területeket a megtekintések lefoglalása előtt.',
'Turn a broad brief into postcode candidates':
'Változtassa meg a széles tájékoztatót irányítószám jelöltekké',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'Először adja meg a gyakorlati korlátokat: költségvetés, ingatlan mérete, birtoklási ideje, utazási idő, iskolai igények, szélessáv, valamint a közúti zaj- vagy bűnözési szint toleranciája. A térkép eltávolítja azokat a helyeket, amelyek nem felelnek meg ezeknek a korlátozásoknak, és a fennmaradó lehetőségeket összehasonlíthatóvá teszi.',
'Relax one constraint at a time': 'Egyszerre lazítson egy kényszert',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'Ha a keresés túl szűk lesz, lazítson meg egyetlen szűrőt, és figyelje, mely irányítószámok jelennek meg újra. Ez egyértelművé teszi a kompromisszumot ahelyett, hogy a találgatásokra hagyatkozna.',
'Turn vague areas into specific postcodes':
'A homályos területeket konkrét irányítószámokká alakíthatja',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'A nagyvárosi vagy kerületi keresések nagy különbségeket rejtenek az utcák között. A Perfect Postcode segítségével az általános területről a szigorú követelményeknek megfelelő irányítószámok felé léphet.',
'Keep trade-offs visible': 'Tartsa láthatóan a kompromisszumokat',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'Ha túl sok vagy túl kevés az egyezés, állítson be egyszerre egy kényszert, és nézze meg, hogy pontosan mely irányítószámok jelennek meg újra. Ez egyértelművé teszi a kompromisszumokat ahelyett, hogy a találgatásokra hagyatkozna.',
'Why postcode-level comparison matters': 'Miért számít az irányítószám-szintű összehasonlítás?',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'Két közeli irányítószám különbözhet az iskoláktól, az út zajától, a közlekedési lehetőségektől, az ingatlanösszetételtől és az ártól függően. Az irányítószám szintű összehasonlítás csökkenti annak esélyét, hogy egy egész várost egységes piacként kezeljenek.',
'How to use the results': 'Hogyan használjuk fel az eredményeket',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'Kezelje az egyező irányítószámokat kutatási sorként: ellenőrizze az élő listákat, látogasson el az utcákra, erősítse meg az iskolákat és a felvételiket, és tekintse át az aktuális hivatalos forrásokat.',
'Can I save a postcode property search?': 'Elmenthetem az irányítószámú ingatlankeresést?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'Igen. Az engedéllyel rendelkező felhasználók elmenthetik a kereséseket, és később visszatérhetnek hozzájuk. A mentett keresések szűkített listákhoz és összehasonlító megjegyzésekhez készültek.',
'Can I search without knowing the area?': 'Kereshetek a környék ismerete nélkül?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'Igen. A térképet úgy tervezték, hogy a gyakorlati korlátoknak megfelelő, ismeretlen területeket is felszínre hozzon, nem csak a már ismert helyeket.',
'Are the results live property listings?': 'Az eredmények élő ingatlanhirdetések?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'Nem. Az eszköz összehasonlítja az irányítószámadatokat és a történelmi/kontextuális tulajdonságjeleket. Az aktuális elérhetőséghez továbbra is listáznia kell a portálokat.',
'Manchester property search guide': 'Manchester ingatlankeresési útmutató',
'A regional guide for narrowing a broad search around Greater Manchester.':
'Regionális útmutató a Nagy-Manchester környéki keresés szűkítéséhez.',
'Start a postcode search': 'Indítsa el az irányítószám keresést',
'Commute property search': 'Ingatlan keresés',
'Search for places to live by commute time': 'Keressen lakóhelyeket az ingázási idő szerint',
'Commute property search - Find places to live by travel time':
'Ingatlankeresés Keressen lakóhelyeket az utazási idő alapján',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'Szűrje az irányítószámokat az ingázási idő szerint, majd hasonlítsa össze az árakat, az iskolákat, a biztonságot, a szélessávot, az útzajokat, a parkokat és az ingatlanadatokat egy térképen.',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'Szűrje az irányítószámokat a modellezett autók, kerékpározás, gyaloglás és tömegközlekedési eszközök utazási ideje alapján, majd rétegezze az ingatlanárakat, az iskolákat, a bűnözést, a szélessávot, a zajt és a helyi létesítményeket.',
'Compare reachable postcodes by realistic travel-time bands.':
'Hasonlítsa össze az elérhető irányítószámokat valós utazási idősávok szerint.',
'Search by destination first, then filter for property and neighbourhood fit.':
'Először keressen cél szerint, majd szűrjön az ingatlanra és a környékre.',
'Avoid areas that look close on a map but fail the daily journey.':
'Kerülje el azokat a területeket, amelyek a térképen közelinek tűnnek, de nem teszik lehetővé a napi utazást.',
'Start with the destination that matters': 'Kezdje a céllal, ami számít',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'Válasszon egy ingázási célt, közlekedési módot és időtartományt, majd adja hozzá a tulajdonságszűrőket. Ez megakadályozza, hogy egy olcsónak tűnő terület kerüljön a szűkített listára, ha a napi utazás nem működik.',
'Compare the commute against the rest of daily life':
'Hasonlítsa össze az ingázást a mindennapi élet többi részével',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'A gyors ingázás nem elég, ha az ingatlan mérete, iskolai környezet, biztonsági küszöb, szélessáv vagy közúti zajnak való kitettség nem felel meg. A térkép egymás mellett tartja ezeket a jeleket.',
'Commute from postcodes, not just place names':
'Ingázzon irányítószámok alapján, nem csak helynevek alapján',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'Ugyanabban a városban két utcának nagyon eltérő lehet az állomás megközelítése, útvonala és tömegközlekedési lehetőségei. Az irányítószám-szintű utazási idő szűrés ezt a különbséget láthatóvá teszi.',
'Balance journey time with the rest of the move':
'Egyensúlyozza az utazási időt a mozgás többi részével',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'A gyors ingázás csak akkor segít, ha a terület megfelel az Ön költségvetésének, lakhatási igényeinek, iskolai preferenciáinak, biztonsági küszöbének, szélessávú követelményeinek és az útzaj toleranciájának.',
'How travel-time filters should be interpreted':
'Hogyan kell értelmezni az utazási időszűrőket',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'Az utazási idő modellezése hasznos a területek következetes összehasonlításához. Mielőtt elkötelezné magát, ellenőrizze az aktuális menetrendeket, a zavarási mintákat, a parkolást, a kerékpározási feltételeket és a gyalogos útvonalakat.',
'Why commute filters are combined with property data':
'Miért kombinálják az ingázási szűrőket a tulajdonságadatokkal?',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'Az ingázási keresés akkor a leghasznosabb, ha eltávolítja a lehetetlen területeket, miközben továbbra is megmutatja, hogy a fennmaradó lehetőségek megfizethetőek és élhetőek-e.',
'Can I compare car, cycling, walking, and public transport?':
'Összehasonlíthatom az autót, a kerékpározást, a gyaloglást és a tömegközlekedést?',
'The product supports multiple travel modes where precomputed destination data is available.':
'A termék többféle utazási módot támogat, ahol előre kiszámított céladatok állnak rendelkezésre.',
'Are travel times exact?': 'Pontosak az utazási idők?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'Nem. Kezelje őket konzisztens összehasonlítási modellként, majd ellenőrizze a valódi útvonalat, mielőtt megtekintési vagy vásárlási döntést hozna.',
'Can I combine commute filters with schools and price?':
'Kombinálhatom az ingázási szűrőket az iskolákkal és az árakkal?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'Igen. Az ingázási szűrő rétegezhető az ingatlanárral, a mérettel, az iskolákkal, a szélessávú internettel, a bűnözéssel, a szolgáltatásokkal és a környezeti jelekkel.',
'Bristol property search guide': 'Bristol ingatlankeresési útmutató',
'A worked example for balancing city access, price, and local context.':
'Működő példa a városi hozzáférés, az ár és a helyi környezet egyensúlyának megteremtésére.',
'Search by commute time': 'Keresés ingázási idő szerint',
'Schools and property search': 'Iskolák és ingatlankeresés',
'Find property search areas with schools and family trade-offs in view':
'Keressen ingatlankeresési területeket iskolákkal és családi kompromisszumokkal',
'School property search - Compare postcodes for family moves':
'Iskolai ingatlankeresés Hasonlítsa össze a családi költözés irányítószámait',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'Hasonlítsa össze a közeli iskolákat, az ingatlanok méretét, az árakat, a parkokat, a biztonságot, az ingázást és a helyi szolgáltatásokat, mielőtt összeállít egy megtekintési listát.',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'Hasonlítsa össze a közeli Ofsted értékeléseket, az oktatási környezetet, az ingatlan méretét, a költségvetést, a biztonságot, a parkokat, az ingázást és a helyi szolgáltatásokat, mielőtt szűkítené a megtekintési listát.',
'Filter for nearby school quality alongside housing requirements.':
'Szűrje a közeli iskola minőségét a lakhatási követelmények mellett.',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'Hasonlítsa össze a családbarát kompromisszumokat az ismeretlen irányítószámok között.',
'Use the map as a shortlist tool before checking admissions and catchments.':
'Használja a térképet szűkített lista eszközeként, mielőtt ellenőrizné a befogadásokat és a vízgyűjtőket.',
'Use school context without ignoring the home':
'Használja az iskolai környezetet anélkül, hogy figyelmen kívül hagyná az otthont',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'Kezdje az ingatlan méretével, költségvetésével és ingázási korlátaival, majd rétegezzen a közeli iskola minőségét és a helyi környezetet. Ez megakadályozza, hogy az iskola által vezetett keresések elrejtse a megfizethetőséget vagy a mindennapi élet problémáit.',
'Verify admissions before deciding': 'A döntés előtt ellenőrizze a felvételt',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'Az iskolai adatok ígéretes területekre utalhatnak, de a felvételi szabályok és a vonzáskörzetek változhatnak. Erősítse meg a jelenlegi megállapodásokat az iskolákkal és a helyi hatóságokkal.',
'School quality is one part of the shortlist':
'Az iskolai minőség a szűkített lista egyik része',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'A Perfect Postcode segítségével összehasonlíthatja a közeli iskola adatait a családi költözést meghatározó egyéb gyakorlati korlátokkal: hely, ár, ingázás, parkok, biztonság és helyi szolgáltatások.',
'Check catchments before making decisions': 'Döntéshozatal előtt ellenőrizze a vízgyűjtőket',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'A felvételi szabályok és a vízgyűjtő határok változhatnak. Használja az irányítószám-szintű iskolai adatokat az ígéretes területek megtalálásához, majd ellenőrizze az aktuális felvételi adatokat az iskolával vagy a helyi hatóságokkal.',
'How to treat school filters': 'Hogyan kezeljük az iskolai szűrőket',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'Használja az iskolai szűrőket a kutatás szűkítésére, ne pedig a felvételi jogosultság feltételezésére. A minősítéseket, a távolságot, a felvételi kritériumokat és az iskolai kapacitást ellenőrizni kell az aktuális hivatalos forrásokból.',
'Family trade-offs to compare': 'Összehasonlítandó családi kompromisszumok',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'Kombináld az iskolákat a parkokkal, az útzajjal, a bűnözéssel, az ingatlan méretével, az ingázással, a szélessávval és az árakkal, hogy a szűkített lista tükrözze az egész lépést.',
'Does this show school catchment guarantees?':
'Ez mutatja az iskolai vonzáskörzeti garanciákat?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'Nem. Segít azonosítani az ígéretes területeket, de a vonzáskörzeteket és a befogadásokat ellenőrizni kell az iskolával vagy a helyi hatósággal.',
'Can I combine school filters with parks and safety?':
'Kombinálhatom az iskolai szűrőket parkokkal és biztonsággal?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'Igen. Az iskolatudatos keresés kombinálható bűnözéssel, parkokkal, ingázással, árral, ingatlanmérettel és helyi szolgáltatásokkal.',
'Is Ofsted the only school signal?': 'Az Ofsted az egyetlen iskolai jelzés?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'Egyetlen pontszám sem dönthet a lépésről. Használja a térképet kiindulási pontként, majd tekintse át részletesen az aktuális iskolai információkat.',
'See where education, property, transport, and environment data comes from.':
'Tekintse meg, honnan származnak az oktatási, ingatlan-, közlekedési és környezeti adatok.',
'Explore school-aware searches': 'Fedezze fel az iskolatudatos kereséseket',
'Check postcode data before you book a viewing':
'A megtekintés lefoglalása előtt ellenőrizze az irányítószám adatait',
'Postcode checker - Property, crime, broadband, noise and schools':
'Irányítószám-ellenőrző Ingatlanok, bűnözés, szélessáv, zaj és iskolák',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'Ellenőrizze az irányítószám-szintű ingatlanárakat, az EPC-adatokat, a bűnözést, a szélessávot, az útzajt, az iskolákat, az önkormányzati adót, a kényelmi szolgáltatásokat és az utazási időt.',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'Tekintse át az ingatlanárakat, az EPC-környezetet, a bűnözést, a szélessávot, az utak zaját, a helyi létesítményeket, az iskolákat, a nélkülözést, az önkormányzati adót és az utazási időre vonatkozó adatokat egyetlen irányítószám-először térképen.',
'Check multiple local signals before visiting a street.':
'Ellenőrizze több helyi jelet, mielőtt felkeres egy utcát.',
'Use official and open datasets rather than reputation alone.':
'Használjon hivatalos és nyílt adatkészleteket, ne csak a hírnevet.',
'Compare postcodes consistently across England.':
'Hasonlítsa össze következetesen az irányítószámokat Angliában.',
'Check the street before spending a viewing slot':
'Nézze meg az utcát, mielőtt megtekintési időt tölt el',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'Használja az irányítószám-ellenőrzőt az árelőzmények, a helyi környezet, a szolgáltatások, az iskolák és a környezeti jelek áttekintésére, mielőtt időt szánna a látogatásra.',
'Compare neighbouring postcodes': 'Hasonlítsa össze a szomszédos irányítószámokat',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'Ha egy irányítószám ígéretesnek tűnik, hasonlítsa össze a szomszédos területeket ugyanazokkal a szűrőkkel. Ez gyakran felfedi, hogy a probléma utcaspecifikus vagy egy szélesebb minta része.',
'Useful before and alongside listing portals': 'Hasznos a hirdetési portálok előtt és mellett',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'A felsorolt fotók ritkán mondanak eleget a környező utcáról. A Perfect Postcode bizonyítékokkal vezérelt irányítószám-ellenőrzést tesz lehetővé, mielőtt időt szánna a megtekintésre.',
'A screening tool, not professional advice': 'Szűrőeszköz, nem szakmai tanács',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'Az adatok szűkítésre és összehasonlításra készültek. Bármely vásárláshoz továbbra is szükség van az aktuális listázási ellenőrzésekre, a jogi átvilágításra, az árvízkutatásokra, a hitelezői követelményekre és a felmérések eredményeire.',
'What a postcode check can catch': 'Amit egy irányítószám-ellenőrzés elkaphat',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'Az irányítószám-ellenőrzés feltárhatja az árkontextust, a környezeti jelzéseket, a közeli létesítményeket és más olyan helyi mutatókat, amelyeket könnyen el lehet hagyni az adatlapon.',
'What a postcode check cant prove': 'Amit az irányítószám-ellenőrzés nem tud bizonyítani',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'Nem tudja megerősíteni az otthon állapotát, a jövőbeni fejlesztést, a jogcímet, a hitelezői követelményeket vagy a jelenlegi utcai szintű tapasztalatot. Még mindig közvetlen ellenőrzésre van szükségük.',
'Can I use the checker before a viewing?': 'Használhatom az ellenőrzőt megtekintés előtt?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'Igen. Ez az egyik fő felhasználási eset: először szűrje le az irányítószámot, majd döntse el, hogy megéri-e a megtekintése.',
'Does the checker include exact property condition?':
'Az ellenőrző pontos ingatlanállapotot tartalmaz?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'Nem. Az ingatlan állapota megköveteli a részleteket, felméréseket és közvetlen ellenőrzést.',
'Can I compare multiple postcodes?': 'Összehasonlíthatok több irányítószámot?',
'Yes. The map is designed for consistent comparison across postcodes.':
'Igen. A térképet az irányítószámok következetes összehasonlítására tervezték.',
'Check postcodes on the map': 'Ellenőrizze az irányítószámokat a térképen',
'Regional guide': 'Regionális útmutató',
'How to compare Birmingham postcodes before a property search':
'Birmingham irányítószámainak összehasonlítása ingatlankeresés előtt',
'Birmingham property search - Compare postcodes by price and commute':
'Birminghami ingatlankeresés Hasonlítsa össze az irányítószámokat ár és ingázás alapján',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'Használja az irányítószám-szintű adatokat a birminghami ingatlanárak, az ingázási kompromisszumok, az iskolák, a bűnözés, a szélessáv és a helyi szolgáltatások összehasonlítására a megtekintés előtt.',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'A birminghami keresések gyorsan változhatnak utcáról utcára. Használjon irányítószám-szintű bizonyítékokat a költségvetés, az ingázás, az iskolák, a zaj, a bűnözés és a helyi szolgáltatások összehasonlítására, mielőtt eldönti, hol nézze meg az adatokat.',
'Start with commute corridors': 'Kezdje az ingázási folyosókkal',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'Válassza ki a fontos úti célt, például munkahelyet, állomást, egyetemet vagy kórházat, majd hasonlítsa össze az elérhető irányítószámokat közlekedési mód és utazási idősáv szerint.',
'Use commute time as a hard filter before judging price.':
'Használja az ingázási időt kemény szűrőként az ár megítélése előtt.',
'Compare public transport with car, cycling, or walking where available.':
'Hasonlítsa össze a tömegközlekedést autóval, kerékpározással vagy gyalogos közlekedéssel, ahol lehetséges.',
'Check the route manually before booking viewings.':
'A megtekintések lefoglalása előtt ellenőrizze az útvonalat manuálisan.',
'Compare price with property type': 'Hasonlítsa össze az árat az ingatlan típusával',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'A medián árak önmagukban félrevezetőek lehetnek, ha a helyi ingatlanösszetétel megváltozik. Adjon hozzá ingatlantípust, birtoklási időt, alapterületet és árszűrőt, hogy a hasonló területeket tisztességesen hasonlítsa össze.',
'Keep family and environment trade-offs visible':
'A család és a környezet közötti kompromisszumok láthatóak legyenek',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'Az iskolai környezetet, a parkokat, az útzajokat, a szélessávot és a bűnjeleket az ingatlanszűrők tetejére helyezze. Ez megkönnyíti annak eldöntését, hogy mely kompromisszumok elfogadhatók.',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Meg tudja mondani a Perfect Postcode Birmingham legjobb környékét?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'Egyetlen eszköz sem tudja eldönteni a legjobb területet minden vásárló számára. Segít összehasonlítani az irányítószámokat saját korlátaival, így jobb szűkített listát készíthet.',
'Should I use this instead of local knowledge?': 'Ezt használjam a helyismeret helyett?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'Nem. Használja a jelöltek megkeresésére és összehasonlítására, majd érvényesítse őket látogatásokkal, helyi tanácsokkal, listákkal és hatósági ellenőrzésekkel.',
'Compare price patterns before looking at live listings.':
'Hasonlítsa össze az ármintákat, mielőtt megnézné az élő listákat.',
'Search by travel time and then layer on property requirements.':
'Keressen utazási idő szerint, majd rétegezzen az ingatlanigényeket.',
'Understand how to interpret filters and limitations.':
'Ismerje meg a szűrők és korlátozások értelmezését.',
'Compare Birmingham postcodes': 'Hasonlítsa össze a birminghami irányítószámokat',
'How to compare Manchester postcodes for a property search':
'Hogyan hasonlítsuk össze a manchesteri irányítószámokat ingatlankereséshez',
'Manchester property search - Compare postcodes before viewing':
'Manchesteri ingatlankeresés - Hasonlítsa össze az irányítószámokat a megtekintés előtt',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'Hasonlítsa össze Manchester környéki irányítószámait költségvetés, ingázás, ingatlantípus, iskolák, szélessáv, bűnözés, zaj és szolgáltatások szerint, mielőtt lefoglalná a megtekintéseket.',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'A Manchester környéki keresés kiterjedhet a városközpontra, a külvárosra és az ingázási lehetőségekre. A Perfect Postcode segítségével az egyes irányítószámok összehasonlíthatók ugyanazokkal a tulajdonságokkal és a mindennapi élet korlátozásával.',
'Use travel time to define the real search area':
'Használja az utazási időt a valódi keresési terület meghatározásához',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'Kezdje a fontos célpontoktól, majd hasonlítsa össze az elérhető irányítószámokat, ahelyett, hogy azt feltételezné, hogy minden közeli hely ugyanazt a gyakorlati utat járja be.',
'Compare housing requirements before lifestyle preferences':
'Hasonlítsa össze a lakhatási igényeket az életmódbeli preferenciák előtt',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'Szűrje az ingatlan típusa, alapterülete, birtoklási ideje és ár alapján, mielőtt megítélné a felszereltséget. Ezáltal a szűkített lista olyan otthonokra épül, amelyek reálisan működhetnek.',
'Check local context consistently': 'Következetesen ellenőrizze a helyi környezetet',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'Használja a szélessávot, a bűnözést, az útzajt, a parkokat, iskolákat és létesítményeket hasonló jelként. Ezután érvényesítse a legerősebb jelölteket az aktuális helyi ellenőrzésekkel.',
'Can I compare Manchester suburbs with city-centre postcodes?':
'Összehasonlíthatom Manchester külvárosait a városközpont irányítószámaival?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'Igen. Ugyanazt a költségkeret-, tulajdon-, ingázási és helyi kontextusszűrőt használja mindkettőben, így a kompromisszumok láthatóak maradnak.',
'Does this include live listings?': 'Ez magában foglalja az élő listákat?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'Nem. Használja annak eldöntésére, hogy hol keressen, majd használja az aktuális eladó lakások listázási portálját.',
'Move from a broad search brief to specific postcode candidates.':
'Térjen át a széles körű keresési összefoglalóról a konkrét irányítószám jelöltekre.',
'Data sources': 'Adatforrások',
'Review the datasets used for property and local-context comparison.':
'Tekintse át a tulajdonságok és a helyi kontextus összehasonlításához használt adatkészleteket.',
'Check a single postcode before arranging a viewing.':
'A megtekintés megszervezése előtt ellenőrizze az irányítószámot.',
'Compare Manchester postcodes': 'Hasonlítsa össze a Manchester irányítószámait',
'How to compare Bristol postcodes before a property search':
'Hogyan hasonlítsuk össze Bristol irányítószámait ingatlankeresés előtt',
'Bristol property search - Compare postcodes by commute and price':
'Ingatlankeresés Bristolban Hasonlítsa össze az irányítószámokat ingázás és ár alapján',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'Hasonlítsa össze Bristol irányítószámait ár, ingázás, ingatlan mérete, iskolák, szélessáv, bűnözés, közúti zaj, parkok és szolgáltatások szerint a megtekintés előtt.',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'A bristoli keresések gyakran éles kompromisszumot foglalnak magukban az ár, az utazási idő, az ingatlan mérete és a környék kontextusa között. Az irányítószám-első összehasonlítás láthatóvá teszi ezeket a kompromisszumokat.',
'Make commute constraints explicit': 'Tegye egyértelművé az ingázási korlátozásokat',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'Ha fontos a központ, állomás, kórház, egyetem vagy üzleti park elérése, először használja az utazási idő szűrőit, majd hasonlítsa össze a fennmaradó irányítószámokat ingatlanadatok alapján.',
'Compare value, not just headline price': 'Hasonlítsa össze az értéket, ne csak a főárat',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'Használja együtt az ár-, ingatlantípus- és alapterület-szűrőket. Ez segít megkülönböztetni az alacsonyabb költségű területeket azoktól a területektől, amelyek egyszerűen kisebb vagy eltérő otthonokat tartalmaznak.',
'Screen environmental and local-service signals':
'Környezeti és helyi szolgáltatási jelek képernyője',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'Az útzaj, a parkok, a szélessáv, a bűnözés és a szolgáltatások befolyásolhatják az ingatlan napi működését. Használja őket szűrési kritériumként a megtekintések lefoglalása előtt.',
'Can I use this for commuter villages around Bristol?':
'Használhatom ezt a Bristol környéki ingázó falvakban?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'Igen, ahol a vonatkozó irányítószám és utazási idő rendelkezésre áll. Döntés előtt mindig ellenőrizze manuálisan az útvonalakat és a szolgáltatásokat.',
'Can this tell me whether a listing is good value?':
'Ez meg tudja mondani, hogy egy hirdetés jó érték-e?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'Megadhatja a területi kontextust, de egy adott adatlapnak továbbra is szüksége van összehasonlítható eladásokra, állapotellenőrzésekre, felmérési eredményekre és adott esetben szakmai tanácsra.',
'Search by reachable postcodes before refining by budget and local context.':
'Keressen elérhető irányítószámok alapján, mielőtt finomítaná a költségvetés és a helyi kontextus alapján.',
'Understand price patterns before setting listing alerts.':
'Ismerje meg az ármintákat, mielőtt beállítja a listára vonatkozó figyelmeztetéseket.',
'Privacy and security': 'Adatvédelem és biztonság',
'How account and saved-search data is handled in the product.':
'Hogyan történik a fiók és a mentett keresési adatok kezelése a termékben.',
'Compare Bristol postcodes': 'Hasonlítsa össze a Bristol irányítószámait',
'Trust and coverage': 'Bizalom és fedezet',
'Perfect Postcode data sources and coverage': 'Perfect Postcode adatforrások és lefedettség',
'Perfect Postcode data sources - Property, schools, commute and local context':
'Perfect Postcode-adatforrások ingatlanok, iskolák, ingázás és helyi környezet',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'Tekintse át a Perfect Postcode által használt nyilvános és hivatalos adatkészleteket, beleértve az ingatlanárakat, az EPC-t, az iskolákat, a bűnözést, a szélessávot, a zajt és az utazási időt.',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'A Perfect Postcode egyesíti az ingatlanokat, a közlekedést, az oktatást, a környezetet és a helyi szolgáltatási adatkészleteket, így a vásárlók következetesen összehasonlíthatják az irányítószámokat. Ez az oldal elmagyarázza, hogy mire szolgálnak az adatok, és hol kell azokat ellenőrizni.',
'Property and housing context': 'Ingatlan és lakáskörnyezet',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'A termék ingatlantranzakciókat és lakáskontextusú adatkészleteket használ az olyan szűrők támogatására, mint az eladási ár, az ingatlan típusa, a birtoklás, az alapterület, az energiateljesítmény és a becsült aktuális érték.',
'Use these fields to compare areas, not as a formal valuation.':
'Ezeket a mezőket területek összehasonlítására használja, ne formális értékelésként.',
'Check current listings, title information, lender requirements, and survey results before buying.':
'Vásárlás előtt ellenőrizze az aktuális listákat, a címadatokat, a hitelezői követelményeket és a felmérés eredményeit.',
'Schools, safety, broadband, and environment': 'Iskolák, biztonság, szélessáv és környezet',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'A helyi kontextusszűrők segítenek összehasonlítani a mindennapi életet befolyásoló jelek irányítószámait. Ezeket szűrési adatokként kell kezelni, és a döntések meghozatalához össze kell hasonlítani a jelenlegi hivatalos forrásokkal.',
'Travel-time data': 'Utazási idő adatok',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'Az utazási idő szűrőit a területek következetes összehasonlítására tervezték. Az útvonal elérhetőségét, a fennakadásokat, a parkolást, a gyalogos hozzáférést és a menetrend részleteit ellenőrizni kell, mielőtt elkötelezné magát egy adott területen.',
'Why does coverage focus on England?': 'Miért fókuszál a tudósítás Angliára?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'Számos alapvető tulajdon, oktatás és helyi kontextusú adatkészlet joghatóság-specifikus. Az angol lefedettség következetesebbé teszi az összehasonlításokat.',
'How should I handle stale or missing data?':
'Hogyan kezeljem az elavult vagy hiányzó adatokat?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'Használja a térképet szűkített lista eszközeként. Ha az irányítószám számít, ellenőrizze a legfrissebb adatokat aktuális hivatalos forrásokból, és közvetlen helyi ellenőrzéseket végezzen.',
'How filters and comparisons should be interpreted.':
'Hogyan kell értelmezni a szűrőket és az összehasonlításokat.',
'Review postcode-level context before a viewing.':
'Megtekintés előtt tekintse át az irányítószám-szintű kontextust.',
'How saved searches and account data are handled.':
'A mentett keresések és fiókadatok kezelésének módja.',
'How to use the map': 'Hogyan kell használni a térképet',
'Methodology for postcode property research': 'Az irányítószám-tulajdonkutatás módszertana',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode módszertan Hogyan értelmezzük az irányítószám tulajdoni adatokat',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'Ismerje meg, hogyan használhatja az irányítószám-szűrőket, az ingatlanbecsléseket, az utazási időre vonatkozó adatokat, az iskolai környezetet és a helyi jelzéseket lakásvásárlási szűkített eszközként.',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'A Perfect Postcode célja, hogy a területek szűkített listáját több bizonyítékra irányítsa. Nem helyettesíti az ingatlanügynököket, a földmérőket, a szállítókat, a hitelezőket, az iskolai felvételi csoportokat vagy a helyi hatóságok ellenőrzéseit.',
'Start with hard constraints': 'Kezdje kemény korlátokkal',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'Kezdje a nem alku tárgyát képező dolgokkal, mint például a költségvetés, az ingatlan típusa, az alapterület, az ingázási idő és az alapvető szolgáltatások. Ez eltávolítja a lehetetlen irányítószámokat, mielőtt a lágyabb beállításokat figyelembe venné.',
'Use colour layers for trade-offs': 'Használjon színrétegeket a kompromisszumokhoz',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'Szűrés után színezze ki a fennmaradó térképet egy-egy jellel: négyzetméterár, útzaj, iskolai környezet, ingázási idő, szélessáv vagy bűnözés. Ez megkönnyíti a kompromisszumok megvitatását.',
'Measure whats working': 'Mérje meg, mi működik',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'Használja a Search Console-t és az Analytics szolgáltatást annak nyomon követésére, hogy mely nyilvános oldalak kerülnek indexelésre, mely lekérdezések eredményeznek megjelenítéseket, és mely oldalak váltják át a látogatókat irányítópult-felfedezéssé. Minden lényeges kezelőfelület-módosítás után tekintse át a Core Web Vitals-t.',
'Can the tool choose the right postcode for me?':
'Ki tudja választani az eszköz a számomra megfelelő irányítószámot?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'Nem. Segít összehasonlítani a bizonyítékokat és csökkenteni a keresési területet. A végső döntéshez közvetlen látogatásokra, aktuális listákra, jogi ellenőrzésekre, felmérésekre és személyes ítéletekre van szükség.',
'How should I use estimates?': 'Hogyan használjam a becsléseket?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'Használjon becsléseket összehasonlító jelként, ne pedig szakmai értékelésként vagy vásárlási tanácsként.',
'Understand where key filters come from.': 'Ismerje meg, honnan származnak a kulcsszűrők.',
'Apply the methodology to price-led area comparison.':
'Alkalmazza a módszertant az árvezérelt terület-összehasonlításra.',
'Apply the methodology to destination-led search.':
'Alkalmazza a módszertant a célvezérelt keresésre.',
Trust: 'Bizalom',
'Privacy and security for saved property searches':
'Adatvédelem és biztonság a mentett ingatlankereséshez',
'Perfect Postcode privacy and security - Saved searches and account data':
'Perfect Postcode adatvédelem és biztonság Mentett keresések és fiókadatok',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'Ismerje meg, hogyan kezeli a Perfect Postcode a mentett kereséseket, a fiókadatokat és a tulajdonkutatási munkafolyamatokat az adatvédelem és a biztonság szem előtt tartásával.',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'Az ingatlankutatás feltárhatja a személyes prioritásokat, a költségvetést és a helyszíneket. A termék elkülöníti a nyilvános keresőoptimalizálási oldalakat a csak fiókot tartalmazó területektől, és a privát irányítópult/fiókútvonalakat noindexként jelöli meg.',
'Public pages and private areas are separated':
'A nyilvános oldalak és a privát területek el vannak választva',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'A marketing, a módszertan, az útmutató és a támogatási oldalak indexelhetők. Az irányítópult, a fiók, a mentett keresések, a meghívók és a meghívási útvonalak noindex-szel vannak megjelölve, vagy adott esetben blokkolva vannak a feltérképező robot számára.',
'Saved search data is account-scoped': 'A mentett keresési adatok fiókra vonatkoznak',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'A mentett keresések és tulajdonságok bejelentkezett használatra szolgálnak. Nem szerepelnek a nyilvános webhelytérképen, és nyilvános tartalomként nem térképezhetők fel.',
'Search measurement without exposing private data':
'A mérési adatok keresése személyes adatok felfedése nélkül',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'A keresőoptimalizálás mérésének nyilvános oldalakon kell történnie, összesített elemzési és Search Console-adatok felhasználásával. A privát lekérdezési paraméterek és a fióknézetek nem válhatnak indexelhető céloldalakká.',
'Are saved searches listed in the sitemap?':
'A mentett keresések szerepelnek az oldaltérképen?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'Nem. A nyilvános SEO oldalak felsorolva vannak; a fiók és a mentett keresési útvonalak szándékosan ki vannak zárva.',
'Can private dashboard URLs appear in search?':
'Megjelenhetnek a privát irányítópult-URL-ek a keresésben?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'Nem szabad indexelni őket. A szerver a noindex privát útvonalakat jelöli meg, a webhelytérkép pedig csak a nyilvános oldalakat sorolja fel.',
'How to use public postcode data responsibly.':
'A nyilvános irányítószámadatok felelősségteljes használata.',
'What data powers the public comparisons.':
'Milyen adatok alapozzák meg a nyilvános összehasonlításokat.',
'Explore public postcode-search workflows.':
'Fedezze fel a nyilvános irányítószám-keresési munkafolyamatokat.',
},
};
export default hu;

View file

@ -104,6 +104,428 @@ const zh: Translations = {
frequentlyAskedQuestions: '常见问题',
relatedPages: '相关页面',
relatedPagesDesc: '通过这些内部链接,从另一个角度比较同一套房产搜索流程。',
pages: {
'Property price map': '房产价格地图',
'Compare property prices across every postcode in England': '比较英格兰每个邮政编码的房价',
'Property price map for England - Compare postcodes before viewing':
'英格兰房地产价格地图 - 查看前比较邮政编码',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'在搜索房源之前,比较各个英格兰邮政编码的售价、估计当前价值、每平方米价格和当地情况。',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode映射售价、估计当前价值、每平方米价格、房产类型、建筑面积、保有权和当地背景以便买家在打开房源平台之前找到实际的搜索区域。',
'Screen historical sale prices and current-value estimates by postcode.':
'按邮政编码筛选历史销售价格和当前价值估计。',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'将价值与通勤、学校、宽带、犯罪、噪音和便利设施进行比较。',
'Build a shortlist before spending weekends on viewings.':
'在周末观看之前先建立一个候选名单。',
'Find postcodes that fit the budget before listings appear':
'在列表出现之前查找符合预算的邮政编码',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'从最高价格和房产类型开始,然后按每平方米的价格或估计的当前价格为地图着色。这有助于揭示历史上类似房屋交易过的区域,即使现在没有实时挂牌房源。',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'按最后已知的销售价格、估计当前价值、房产类型、保有权和建筑面积进行筛选。',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'使用相同的标准比较附近的邮政编码,而不是依赖区域声誉。',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'使用结果作为列出警报、本地研究和查看的候选列表。',
'Separate cheap from good value': '区分便宜和物有所值',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'较低的价格可能反映出房屋较小、交通较弱、噪音较大或本地服务较少。地图使这些权衡显而易见,因此最便宜的邮政编码不会自动被视为最佳选择。',
'Start from area value, not listing availability': '从面积价值开始,而不是列出可用性',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'房源平台仅显示今天待售的房屋。邮政编码级别的房产价格地图可让您比较更广泛的区域,了解当地的价格模式,并避免遗漏下一个合适的列表可能出现的位置。',
'Use prices alongside real constraints': '使用价格和实际限制',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'预算本身很少很重要。 Perfect Postcode 将价格过滤器与旅行时间、学校质量、房产规模、能源性能、当地环境和服务结合起来,因此您的候选名单反映了您真正想要的生活方式。',
'What the price data is for': '价格数据的用途',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'使用地图比较区域并找到搜索候选者。它不是评估、抵押贷款决策、调查、法律搜索或实时列表源。',
'How to validate a promising area': '如何验证有前景的领域',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'一旦邮政编码看起来很有前途,请在做出决定之前检查当前列表、可比售价、代理商详细信息、洪水搜索、法律包、调查和地方当局信息。',
'Is this a replacement for Rightmove or Zoopla?': '这是 Rightmove 或 Zoopla 的替代品吗?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'不可以。在房源平台之前和旁边使用它。Perfect Postcode有助于决定去哪里查找房源平台显示当前正在出售的商品。',
'Can I compare price with schools or commute time?':
'我可以将价格与学校或通勤时间进行比较吗?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'是的。价格过滤器可以与旅行时间、学校、犯罪、宽带、道路噪音、便利设施和环境过滤器结合起来。',
'Does the map cover all of the UK?': '地图涵盖了整个英国吗?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'当前产品主要针对英格兰,因为一些核心财产和邮政编码数据集是英格兰特定的。',
'Birmingham property search guide': '伯明翰房产搜索指南',
'A worked example for balancing price, commute, and family trade-offs.':
'平衡价格、通勤和家庭权衡的有效示例。',
'Data sources and coverage': '数据来源及覆盖范围',
'See which datasets sit behind the postcode filters and where they have limits.':
'查看邮政编码过滤器后面的数据集以及它们的限制。',
Methodology: '方法论',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'了解地图如何支持入围,而不是取代尽职调查。',
'Postcode checker': '邮政编码检查器',
'Check one postcode before you spend time on a viewing.':
'在您花时间查看之前,请检查一个邮政编码。',
'Explore the property map': '探索房产地图',
'Postcode property search': '邮政编码属性搜索',
'Find postcodes that match your property search criteria':
'查找符合您的房产搜索条件的邮政编码',
'Postcode property search - Find areas that match your criteria':
'邮政编码属性搜索 - 查找符合您条件的区域',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'按预算、房产类型、建筑面积、保有权、通勤、学校、犯罪、宽带、噪音、公园和当地设施搜索每个邮政编码。',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'按预算、房产类型、面积、保有权、通勤、学校、犯罪、宽带、噪音、公园和当地设施搜索每个邮政编码,而不是一次检查一个区域。',
'Filter England-wide postcode data from one map.':
'从一张地图中过滤英格兰范围内的邮政编码数据。',
'Shortlist unfamiliar areas with comparable evidence.':
'将具有可比证据的不熟悉领域列入候选名单。',
'Save and share search areas before booking viewings.': '在预订观看之前保存并共享搜索区域。',
'Turn a broad brief into postcode candidates': '将广泛的简介转变为候选邮政编码',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'首先输入实际限制:预算、房产规模、保有权、旅行时间、学校需求、宽带以及对道路噪音或犯罪水平的容忍度。该地图删除了不符合这些限制的地点,并保持其余选项的可比性。',
'Relax one constraint at a time': '一次放松一项限制',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'当搜索范围变得太窄时,松开单个过滤器并观察哪些邮政编码重新出现。这使得妥协变得明确,而不是依赖猜测。',
'Turn vague areas into specific postcodes': '将模糊区域变成特定的邮政编码',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'广泛的城镇或行政区搜索隐藏了街道之间的巨大差异。Perfect Postcode可帮助您从一般区域转移到满足您硬要求的邮政编码。',
'Keep trade-offs visible': '保持权衡可见',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'当匹配项太多或太少时,一次调整一个约束并准确查看哪些邮政编码重新出现。这使得妥协变得明确,而不是依赖猜测。',
'Why postcode-level comparison matters': '为什么邮政编码级别的比较很重要',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'附近的两个邮政编码在学校、道路噪音、交通便利、房产组合和价格方面可能有所不同。在邮政编码级别进行比较减少了将整个城镇视为一个统一市场的机会。',
'How to use the results': '如何使用结果',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'将匹配的邮政编码视为研究队列:检查实时列表、访问街道、确认学校和招生以及查看当前的官方来源。',
'Can I save a postcode property search?': '我可以保存邮政编码属性搜索吗?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'是的。许可用户可以保存搜索并稍后返回。保存的搜索专为候选列表和比较注释而设计。',
'Can I search without knowing the area?': '我可以在不知道区域的情况下进行搜索吗?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'是的。该地图旨在显示符合实际限制的不熟悉的区域,而不仅仅是您已经知道的地方。',
'Are the results live property listings?': '结果是实时房产列表吗?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'不会。该工具会比较邮政编码数据和历史/上下文属性信号。您仍然需要列出当前可用性的门户。',
'Manchester property search guide': '曼彻斯特房产搜索指南',
'A regional guide for narrowing a broad search around Greater Manchester.':
'用于缩小大曼彻斯特广泛搜索范围的区域指南。',
'Start a postcode search': '开始邮政编码搜索',
'Commute property search': '通勤房产搜索',
'Search for places to live by commute time': '按通勤时间搜索居住地',
'Commute property search - Find places to live by travel time':
'通勤房产搜索 - 按旅行时间查找居住地',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'按通勤时间过滤邮政编码,然后在一张地图上比较价格、学校、安全、宽带、道路噪音、公园和房产数据。',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'按模型汽车、自行车、步行和公共交通出行时间过滤邮政编码,然后按房价、学校、犯罪、宽带、噪音和当地便利设施进行分层。',
'Compare reachable postcodes by realistic travel-time bands.':
'按实际旅行时间范围比较可到达的邮政编码。',
'Search by destination first, then filter for property and neighbourhood fit.':
'首先按目的地搜索,然后筛选适合的房产和社区。',
'Avoid areas that look close on a map but fail the daily journey.':
'避开那些在地图上看起来很接近但日常行程却失败的区域。',
'Start with the destination that matters': '从重要的目的地开始',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'选择通勤目的地、交通方式和时间范围,然后添加属性过滤器。如果日常行程不起作用,这可以防止看似廉价的地区进入候选名单。',
'Compare the commute against the rest of daily life': '将通勤与日常生活的其他部分进行比较',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'如果房产规模、学校环境、安全阈值、宽带或道路噪音暴露不合适,快速通勤是不够的。地图将这些信号并排保存。',
'Commute from postcodes, not just place names': '从邮政编码通勤,而不仅仅是地名',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'同一城镇的两条街道可能有截然不同的车站通道、道路路线和公共交通选择。邮政编码级别的旅行时间过滤使这种差异可见。',
'Balance journey time with the rest of the move': '平衡旅途时间与其余的搬家时间',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'只有当该地区也符合您的预算、住房需求、学校偏好、安全阈值、宽带要求和道路噪音容忍度时,快速通勤才有帮助。',
'How travel-time filters should be interpreted': '应如何解释旅行时间过滤器',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'行程时间建模对于一致地比较区域很有用。在做出决定之前,请检查当前的时间表、中断模式、停车、骑行条件和步行路线。',
'Why commute filters are combined with property data': '为什么通勤过滤器与房产数据相结合',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'当通勤搜索删除不可能的区域,同时仍显示剩余选项是否负担得起且宜居时,它是最有用的。',
'Can I compare car, cycling, walking, and public transport?':
'我可以比较汽车、自行车、步行和公共交通吗?',
'The product supports multiple travel modes where precomputed destination data is available.':
'该产品支持多种出行模式,其中预先计算的目的地数据可用。',
'Are travel times exact?': '出行时间准确吗?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'不会。将它们视为一致的比较模型,然后在做出观看或购买决定之前验证真实路线。',
'Can I combine commute filters with schools and price?':
'我可以将通勤过滤器与学校和价格结合起来吗?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'是的。通勤过滤器可以根据房价、面积、学校、宽带、犯罪、便利设施和环境信号进行分层。',
'Bristol property search guide': '布里斯托尔房产搜索指南',
'A worked example for balancing city access, price, and local context.':
'平衡城市交通、价格和当地环境的有效示例。',
'Search by commute time': '按通勤时间搜索',
'Schools and property search': '学校和房产搜索',
'Find property search areas with schools and family trade-offs in view':
'寻找考虑学校和家庭权衡的房产搜索区域',
'School property search - Compare postcodes for family moves':
'学校财产搜索 - 比较家庭搬迁的邮政编码',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'在建立观看候选名单之前,比较附近的学校、房产规模、价格、公园、安全、通勤和当地便利设施。',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'比较附近的 Ofsted 评级、教育背景、房产规模、预算、安全、公园、通勤和当地设施,然后再缩小您的观看候选名单。',
'Filter for nearby school quality alongside housing requirements.':
'筛选附近学校的质量以及住房要求。',
'Compare family-friendly trade-offs across unfamiliar postcodes.':
'比较不熟悉的邮政编码中适合家庭的权衡。',
'Use the map as a shortlist tool before checking admissions and catchments.':
'在检查招生和流域之前,请使用地图作为候选名单工具。',
'Use school context without ignoring the home': '利用学校环境而不忽视家庭',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'从房产规模、预算和通勤限制开始,然后分层考虑附近的学校质量和当地环境。这可以防止学校主导的搜索隐藏负担能力或日常生活问题。',
'Verify admissions before deciding': '决定前核实录取情况',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'学校数据可能会指出有前途的领域,但招生规则和学区可能会发生变化。与学校和地方当局确认当前的安排。',
'School quality is one part of the shortlist': '学校质量是入围名单之一',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode 可帮助您将附近的学校数据与影响家庭搬家的其他实际限制因素进行比较:空间、价格、通勤、公园、安全和当地服务。',
'Check catchments before making decisions': '做出决定前检查流域',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'招生规则和学区边界可能会发生变化。使用邮政编码级别的学校数据来寻找有前途的地区,然后与学校或地方当局核实当前的招生详细信息。',
'How to treat school filters': '如何处理学校过滤器',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'使用学校过滤器来缩小研究范围,而不是假设入学资格。评级、距离、录取标准和学校容量都应通过当前的官方来源进行检查。',
'Family trade-offs to compare': '家庭权衡比较',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'将学校与公园、道路噪音、犯罪、房产规模、通勤、宽带和价格结合起来,这样入围名单就能反映整个搬迁情况。',
'Does this show school catchment guarantees?': '这是否表明学校学区有保证?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'不会。它有助于确定有前途的地区,但学区和招生必须经过学校或地方当局的核实。',
'Can I combine school filters with parks and safety?':
'我可以将学校过滤器与公园和安全结合起来吗?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'是的。学校感知搜索可以与犯罪、公园、通勤、价格、房产规模和本地服务相结合。',
'Is Ofsted the only school signal?': 'Ofsted 是唯一的学校信号吗?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'任何一个分数都不能决定行动。使用地图作为起点,然后详细查看当前学校信息。',
'See where education, property, transport, and environment data comes from.':
'查看教育、房地产、交通和环境数据的来源。',
'Explore school-aware searches': '探索学校相关的搜索',
'Check postcode data before you book a viewing': '在预订观看之前检查邮政编码数据',
'Postcode checker - Property, crime, broadband, noise and schools':
'邮政编码检查器 - 财产、犯罪、宽带、噪音和学校',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'检查邮政编码级别的房地产价格、EPC 数据、犯罪、宽带、道路噪音、学校、市政税、便利设施和旅行时间背景。',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'从一张邮政编码优先的地图中查看房地产价格、EPC 背景、犯罪、宽带、道路噪音、当地便利设施、学校、贫困、市政税和旅行时间数据。',
'Check multiple local signals before visiting a street.': '在访问街道之前检查多个当地信号。',
'Use official and open datasets rather than reputation alone.':
'使用官方和开放的数据集,而不仅仅是声誉。',
'Compare postcodes consistently across England.': '一致比较英格兰各地的邮政编码。',
'Check the street before spending a viewing slot': '在花费观看时间之前检查一下街道',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'在您花时间参观之前,使用邮政编码检查器查看价格历史记录、当地背景、便利设施、学校和环境信号。',
'Compare neighbouring postcodes': '比较邻近的邮政编码',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'如果一个邮政编码看起来很有希望,请使用相同的过滤器比较相邻区域。这通常可以揭示问题是特定于街道的还是更广泛模式的一部分。',
'Useful before and alongside listing portals': '在房源平台之前和旁边有用',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'房源照片很少能告诉您有关周围街道的足够信息。Perfect Postcode在您投入时间观看之前为您提供以证据为主导的邮政编码检查。',
'A screening tool, not professional advice': '筛查工具,而非专业建议',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'该数据旨在用于筛选和比较。任何购买仍需要当前的清单检查、法律尽职调查、大量搜索、贷方要求和调查结果。',
'What a postcode check can catch': '邮政编码检查可以发现什么',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'邮政编码检查可以显示价格背景、环境信号、附近的便利设施以及列表中容易错过的其他本地指标。',
'What a postcode check cant prove': '邮政编码检查无法证明什么',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'它无法确认房屋的状况、未来的开发、法定所有权、贷款人要求或当前的街道经验。这些仍然需要直接检查。',
'Can I use the checker before a viewing?': '我可以在观看前使用检查器吗?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'是的。这是主要用例之一:首先筛选邮政编码,然后决定是否值得花时间查看。',
'Does the checker include exact property condition?': '检查器是否包括准确的财产状况?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'不可以。房产状况需要列出详细信息、调查和直接检查。',
'Can I compare multiple postcodes?': '我可以比较多个邮政编码吗?',
'Yes. The map is designed for consistent comparison across postcodes.':
'是的。该地图旨在实现跨邮政编码的一致比较。',
'Check postcodes on the map': '检查地图上的邮政编码',
'Regional guide': '区域指南',
'How to compare Birmingham postcodes before a property search':
'如何在房产搜索前比较伯明翰邮政编码',
'Birmingham property search - Compare postcodes by price and commute':
'伯明翰房产搜索 - 按价格和通勤比较邮政编码',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'在查看之前,使用邮政编码级别的数据来比较伯明翰的房价、通勤权衡、学校、犯罪、宽带和当地设施。',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'伯明翰的搜索可能因街道而异。在决定在哪里观看列表之前,使用邮政编码级别的证据来比较预算、通勤、学校、噪音、犯罪和当地服务。',
'Start with commute corridors': '从通勤走廊开始',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'选择重要的目的地,例如工作场所、车站、大学或医院,然后按交通方式和旅行时间范围比较可到达的邮政编码。',
'Use commute time as a hard filter before judging price.':
'在判断价格之前,使用通勤时间作为硬过滤器。',
'Compare public transport with car, cycling, or walking where available.':
'将公共交通与汽车、骑自行车或步行(如果有)进行比较。',
'Check the route manually before booking viewings.': '在预订观看之前手动检查路线。',
'Compare price with property type': '将价格与房产类型进行比较',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'如果当地房地产结构发生变化,中位价格可能会产生误导。添加房产类型、保有权、建筑面积和价格过滤器,以便公平比较相似的区域。',
'Keep family and environment trade-offs visible': '让家庭和环境之间的权衡显而易见',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'将学校环境、公园、道路噪音、宽带和犯罪信号叠加在属性过滤器之上。这使得更容易决定哪些妥协是可以接受的。',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Perfect Postcode可以告诉我 伯明翰 最好的区域吗?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'没有任何工具可以为每个买家决定最佳区域。它有助于将邮政编码与您自己的限制进行比较,以便您可以构建更好的候选名单。',
'Should I use this instead of local knowledge?': '我应该使用这个而不是本地知识吗?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'不会。用它来查找和比较候选人,然后通过访问、当地建议、列表和官方检查来验证他们。',
'Compare price patterns before looking at live listings.':
'在查看实时列表之前先比较价格模式。',
'Search by travel time and then layer on property requirements.':
'按旅行时间搜索,然后按财产要求分层。',
'Understand how to interpret filters and limitations.': '了解如何解释过滤器和限制。',
'Compare Birmingham postcodes': '比较伯明翰 邮政编码',
'How to compare Manchester postcodes for a property search':
'如何比较曼彻斯特邮政编码以进行房产搜索',
'Manchester property search - Compare postcodes before viewing':
'曼彻斯特房产搜索 - 查看前比较邮政编码',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'在预订观看之前,请按预算、通勤、房产类型、学校、宽带、犯罪、噪音和便利设施比较曼彻斯特地区的邮政编码。',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'曼彻斯特地区的搜索可以涵盖市中心、郊区和通勤选项。Perfect Postcode有助于使每个邮政编码在相同的财产和日常生活限制下具有可比性。',
'Use travel time to define the real search area': '使用行程时间来定义真正的搜索区域',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'从重要的目的地开始,然后比较可到达的邮政编码,而不是假设附近的每个地方都有相同的实际旅程。',
'Compare housing requirements before lifestyle preferences': '在生活方式偏好之前比较住房要求',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'在判断便利设施之前,请按房产类型、建筑面积、使用期限和价格进行筛选。这使得入围名单以能够实际使用的房屋为基础。',
'Check local context consistently': '一致地检查本地上下文',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'使用宽带、犯罪、道路噪音、公园、学校和便利设施作为可比信号。然后通过当前的本地检查来验证最强的候选人。',
'Can I compare Manchester suburbs with city-centre postcodes?':
'我可以将曼彻斯特郊区与市中心的邮政编码进行比较吗?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'是的。在两者中使用相同的预算、财产、通勤和当地环境过滤器,以便权衡仍然可见。',
'Does this include live listings?': '这包括实时列表吗?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'不会。用它来决定在哪里搜索,然后使用当前待售房屋的房源平台。',
'Move from a broad search brief to specific postcode candidates.':
'从广泛的搜索概要转向特定的邮政编码候选人。',
'Data sources': '数据来源',
'Review the datasets used for property and local-context comparison.':
'查看用于属性和本地上下文比较的数据集。',
'Check a single postcode before arranging a viewing.': '在安排观看之前检查单个邮政编码。',
'Compare Manchester postcodes': '比较曼彻斯特邮政编码',
'How to compare Bristol postcodes before a property search':
'如何在房产搜索前比较布里斯托尔邮政编码',
'Bristol property search - Compare postcodes by commute and price':
'布里斯托尔房产搜索 - 按通勤和价格比较邮政编码',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'在查看之前,按价格、通勤、房产规模、学校、宽带、犯罪、道路噪音、公园和便利设施比较布里斯托尔邮政编码。',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'布里斯托尔的搜索通常涉及价格、行程时间、房产规模和社区环境之间的尖锐权衡。邮政编码优先的比较使这些权衡显而易见。',
'Make commute constraints explicit': '明确通勤限制',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'如果前往中心、车站、医院、大学或商业园区很重要,请首先使用出行时间过滤器,然后通过属性数据比较剩余的邮政编码。',
'Compare value, not just headline price': '比较价值,而不仅仅是标题价格',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'将价格、房产类型和建筑面积过滤器结合使用。这有助于将低成本区域与仅包含较小或不同房屋的区域区分开来。',
'Screen environmental and local-service signals': '筛选环境和本地服务信号',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'道路噪音、公园、宽带、犯罪和便利设施都会影响房产的日常运作。在预订观看之前将它们用作筛选标准。',
'Can I use this for commuter villages around Bristol?':
'我可以将其用于布里斯托尔周围的通勤村庄吗?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'是的,只要有相关邮政编码和旅行时间数据即可。在做出决定之前,请务必手动验证路线和服务。',
'Can this tell me whether a listing is good value?': '这可以告诉我列表是否物有所值吗?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'它可以提供区域背景,但特定列表仍然需要可比较的销售、状况检查、调查结果和适当的专业建议。',
'Search by reachable postcodes before refining by budget and local context.':
'先按可达的邮政编码进行搜索,然后再按预算和当地情况进行细化。',
'Understand price patterns before setting listing alerts.':
'在设置列表提醒之前了解价格模式。',
'Privacy and security': '隐私和安全',
'How account and saved-search data is handled in the product.':
'产品中如何处理帐户和已保存的搜索数据。',
'Compare Bristol postcodes': '比较布里斯托尔邮政编码',
'Trust and coverage': '信任和覆盖',
'Perfect Postcode data sources and coverage': 'Perfect Postcode数据源和覆盖范围',
'Perfect Postcode data sources - Property, schools, commute and local context':
'完美的邮政编码数据源 - 房产、学校、通勤和当地情况',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'查看 Perfect Postcode 使用的公共和官方数据集包括房价、EPC、学校、犯罪、宽带、噪音和旅行时间背景。',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode 结合了房地产、交通、教育、环境和本地服务数据集,因此买家可以一致地比较邮政编码。此页面解释了数据的用途以及应在何处验证数据。',
'Property and housing context': '财产和住房环境',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'该产品使用房产交易和住房背景数据集来支持销售价格、房产类型、保有权、建筑面积、能源绩效和估计当前价值等过滤器。',
'Use these fields to compare areas, not as a formal valuation.':
'使用这些字段来比较面积,而不是作为正式评估。',
'Check current listings, title information, lender requirements, and survey results before buying.':
'购买前检查当前列表、产权信息、贷方要求和调查结果。',
'Schools, safety, broadband, and environment': '学校、安全、宽带和环境',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'本地上下文过滤器有助于比较影响日常生活的信号的邮政编码。它们应被视为筛选数据,并根据当前的官方来源进行检查以做出决定。',
'Travel-time data': '行程时间数据',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'传播时间过滤器旨在实现一致的面积比较。在前往某个区域之前,应验证路线可用性、中断情况、停车位、步行通道和时间表详细信息。',
'Why does coverage focus on England?': '为什么报道聚焦英格兰?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'一些核心财产、教育和当地背景数据集是特定于管辖区的。英格兰的报道使比较更加一致。',
'How should I handle stale or missing data?': '我应该如何处理陈旧或丢失的数据?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'使用地图作为候选名单工具。如果邮政编码很重要,请通过当前的官方来源验证最新详细信息并直接进行本地检查。',
'How filters and comparisons should be interpreted.': '应如何解释过滤器和比较。',
'Review postcode-level context before a viewing.': '在查看之前查看邮政编码级别的上下文。',
'How saved searches and account data are handled.': '如何处理保存的搜索和帐户数据。',
'How to use the map': '如何使用地图',
'Methodology for postcode property research': '邮政编码财产研究方法',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode方法 - 如何解释邮政编码属性数据',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'了解如何使用邮政编码过滤器、房产估算、旅行时间数据、学校背景和当地信号作为购房候选名单工具。',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode 旨在使区域入围更加以证据为主导。它不能取代房地产经纪人、测量师、产权转让师、贷款人、学校招生团队或地方当局的检查。',
'Start with hard constraints': '从硬性约束开始',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'从预算、房产类型、建筑面积、通勤时间和基本服务等不可协商的事项开始。这会在考虑较软的偏好之前删除不可能的邮政编码。',
'Use colour layers for trade-offs': '使用颜色层进行权衡',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'过滤后,一次按一个信号对剩余地图进行着色:每平方米价格、道路噪音、学校环境、通勤时间、宽带或犯罪情况。这使得权衡更容易讨论。',
'Measure whats working': '衡量哪些内容有效',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'使用 Search Console 和分析来跟踪哪些公共页面被索引、哪些查询产生展示次数以及哪些页面将访问者转化为仪表板探索。在每次重大前端更改后查看 Core Web Vitals。',
'Can the tool choose the right postcode for me?': '该工具可以为我选择正确的邮政编码吗?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'不会。它有助于比较证据并缩小搜索范围。最终决定需要直接访问、当前列表、法律检查、调查和个人判断。',
'How should I use estimates?': '我应该如何使用估算值?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'使用估算作为比较信号,而不是作为专业估价或购买建议。',
'Understand where key filters come from.': '了解关键过滤器的来源。',
'Apply the methodology to price-led area comparison.': '将该方法应用于价格主导的区域比较。',
'Apply the methodology to destination-led search.': '将该方法应用于以目的地为主导的搜索。',
Trust: '信任',
'Privacy and security for saved property searches': '保存的财产搜索的隐私和安全',
'Perfect Postcode privacy and security - Saved searches and account data':
'完美的邮政编码隐私和安全 - 保存的搜索和帐户数据',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'了解 Perfect Postcode 如何在考虑隐私和安全的情况下处理已保存的搜索、帐户数据和财产研究工作流程。',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'房地产研究可以揭示个人优先事项、预算和地点。该产品将公共 SEO 页面与仅帐户区域分开,并将私人仪表板/帐户路线标记为 noindex。',
'Public pages and private areas are separated': '公共页面和私人区域分开',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'营销、方法、指南和支持页面都是可索引的。仪表板、帐户、已保存的搜索、邀请和邀请路线被标记为 noindex 或在适当的情况下阻止爬网程序访问。',
'Saved search data is account-scoped': '保存的搜索数据是帐户范围内的',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'保存的搜索和属性仅供登录使用。它们不包含在公共站点地图中,也不应作为公共内容进行抓取。',
'Search measurement without exposing private data': '搜索测量而不暴露私人数据',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'SEO 测量应该使用聚合分析和 Search Console 数据在公共页面上进行。私有查询参数和帐户视图不应成为可索引的登陆页面。',
'Are saved searches listed in the sitemap?': '站点地图中是否列出了已保存的搜索?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'否。列出了公共 SEO 页面;帐户和保存的搜索路线被有意排除。',
'Can private dashboard URLs appear in search?': '私有仪表板 URL 可以出现在搜索中吗?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'它们不应该被索引。服务器将私有路由标记为noindex站点地图仅列出公共页面。',
'How to use public postcode data responsibly.': '如何负责任地使用公共邮政编码数据。',
'What data powers the public comparisons.': '哪些数据支持公众比较。',
'Explore public postcode-search workflows.': '探索公共邮政编码搜索工作流程。',
},
},
// ── Auth Modal ─────────────────────────────────────
@ -548,11 +970,14 @@ const zh: Translations = {
learnPage: {
faq: '常见问题',
dataSources: '数据来源',
articles: '文章',
support: '支持',
dataSourcesIntro:
'本应用整合了 {{count}} 个开放数据集,涵盖房产价格、能源性能、交通、人口统计、犯罪、环境等领域。',
faqIntro:
'无论您是在缩小首次购房搜索范围、核查陌生邮编,还是建立看房候选名单,以下是 Perfect Postcode 如何帮您弄清该看哪里。',
articlesIntro:
'浏览关于房产搜索、通勤、学校、邮编检查、区域对比、数据覆盖、方法论和隐私的公开指南。',
supportIntro: '有问题?请查看我们的常见问题或直接联系我们。',
source: '来源:',
optOut: '退出公开披露',
@ -1090,390 +1515,6 @@ const zh: Translations = {
' years': ' 年',
' rooms': ' 间',
},
seo: {
'Property price map': '房产价格地图',
'Compare property prices across every postcode in England': '比较英格兰每个邮政编码的房价',
'Property price map for England - Compare postcodes before viewing': '英格兰房地产价格地图 - 查看前比较邮政编码',
'Compare sold prices, estimated current value, price per square metre and local context across English postcodes before searching listings.':
'在搜索房源之前,比较各个英格兰邮政编码的售价、估计当前价值、每平方米价格和当地情况。',
'Perfect Postcode maps sold prices, estimated current value, price per square metre, property type, floor area, tenure, and local context so buyers can find realistic search areas before opening listing portals.':
'Perfect Postcode映射售价、估计当前价值、每平方米价格、房产类型、建筑面积、保有权和当地背景以便买家在打开房源平台之前找到实际的搜索区域。',
'Screen historical sale prices and current-value estimates by postcode.':
'按邮政编码筛选历史销售价格和当前价值估计。',
'Compare value with commute, schools, broadband, crime, noise, and amenities.':
'将价值与通勤、学校、宽带、犯罪、噪音和便利设施进行比较。',
'Build a shortlist before spending weekends on viewings.': '在周末观看之前先建立一个候选名单。',
'Find postcodes that fit the budget before listings appear': '在列表出现之前查找符合预算的邮政编码',
'Start with a maximum price and property type, then colour the map by price per square metre or estimated current price. This helps reveal areas where similar homes have historically traded within reach, even when there are no live listings today.':
'从最高价格和房产类型开始,然后按每平方米的价格或估计的当前价格为地图着色。这有助于揭示历史上类似房屋交易过的区域,即使现在没有实时挂牌房源。',
'Filter by last known sale price, estimated current value, property type, tenure, and floor area.':
'按最后已知的销售价格、估计当前价值、房产类型、保有权和建筑面积进行筛选。',
'Compare nearby postcodes using the same criteria instead of relying on area reputation.':
'使用相同的标准比较附近的邮政编码,而不是依赖区域声誉。',
'Use the results as a shortlist for listing alerts, local research, and viewings.':
'使用结果作为列出警报、本地研究和查看的候选列表。',
'Separate cheap from good value': '区分便宜和物有所值',
'A lower price can reflect smaller homes, weaker transport, more noise, or fewer local services. The map keeps those trade-offs visible so the cheapest postcode isnt automatically treated as the best option.':
'较低的价格可能反映出房屋较小、交通较弱、噪音较大或本地服务较少。地图使这些权衡显而易见,因此最便宜的邮政编码不会自动被视为最佳选择。',
'Start from area value, not listing availability': '从面积价值开始,而不是列出可用性',
'Listing portals only show homes for sale today. A postcode-level property price map lets you compare wider areas, understand local price patterns, and avoid missing places where the next suitable listing might appear.':
'房源平台仅显示今天待售的房屋。邮政编码级别的房产价格地图可让您比较更广泛的区域,了解当地的价格模式,并避免遗漏下一个合适的列表可能出现的位置。',
'Use prices alongside real constraints': '使用价格和实际限制',
'Budget rarely matters on its own. Perfect Postcode combines price filters with travel time, school quality, property size, energy performance, local environment, and services so your shortlist reflects how you actually want to live.':
'预算本身很少很重要。 Perfect Postcode 将价格过滤器与旅行时间、学校质量、房产规模、能源性能、当地环境和服务结合起来,因此您的候选名单反映了您真正想要的生活方式。',
'What the price data is for': '价格数据的用途',
'Use the map to compare areas and spot search candidates. It isnt a valuation, mortgage decision, survey, legal search, or live listing feed.':
'使用地图比较区域并找到搜索候选者。它不是评估、抵押贷款决策、调查、法律搜索或实时列表源。',
'How to validate a promising area': '如何验证有前景的领域',
'Once a postcode looks promising, check current listings, sold-price comparables, agent details, flood searches, legal packs, surveys, and local authority information before making a decision.':
'一旦邮政编码看起来很有前途,请在做出决定之前检查当前列表、可比售价、代理商详细信息、洪水搜索、法律包、调查和地方当局信息。',
'Is this a replacement for Rightmove or Zoopla?': '这是 Rightmove 或 Zoopla 的替代品吗?',
'No. Use it before and alongside listing portals. Perfect Postcode helps decide where to look; listing portals show whats currently for sale.':
'不可以。在房源平台之前和旁边使用它。Perfect Postcode有助于决定去哪里查找房源平台显示当前正在出售的商品。',
'Can I compare price with schools or commute time?': '我可以将价格与学校或通勤时间进行比较吗?',
'Yes. Price filters can be combined with travel-time, schools, crime, broadband, road-noise, amenities, and environment filters.':
'是的。价格过滤器可以与旅行时间、学校、犯罪、宽带、道路噪音、便利设施和环境过滤器结合起来。',
'Does the map cover all of the UK?': '地图涵盖了整个英国吗?',
'The current product focuses on England because several core property and postcode datasets are England-specific.':
'当前产品主要针对英格兰,因为一些核心财产和邮政编码数据集是英格兰特定的。',
'Birmingham property search guide': '伯明翰房产搜索指南',
'A worked example for balancing price, commute, and family trade-offs.': '平衡价格、通勤和家庭权衡的有效示例。',
'Data sources and coverage': '数据来源及覆盖范围',
'See which datasets sit behind the postcode filters and where they have limits.':
'查看邮政编码过滤器后面的数据集以及它们的限制。',
Methodology: '方法论',
'Understand how the map is intended to support shortlisting, not replace due diligence.':
'了解地图如何支持入围,而不是取代尽职调查。',
'Postcode checker': '邮政编码检查器',
'Check one postcode before you spend time on a viewing.': '在您花时间查看之前,请检查一个邮政编码。',
'Explore the property map': '探索房产地图',
'Postcode property search': '邮政编码属性搜索',
'Find postcodes that match your property search criteria': '查找符合您的房产搜索条件的邮政编码',
'Postcode property search - Find areas that match your criteria': '邮政编码属性搜索 - 查找符合您条件的区域',
'Search every postcode by budget, property type, floor area, tenure, commute, schools, crime, broadband, noise, parks and local amenities.':
'按预算、房产类型、建筑面积、保有权、通勤、学校、犯罪、宽带、噪音、公园和当地设施搜索每个邮政编码。',
'Search every postcode by budget, property type, size, tenure, commute, schools, crime, broadband, noise, parks, and local amenities instead of checking areas one at a time.':
'按预算、房产类型、面积、保有权、通勤、学校、犯罪、宽带、噪音、公园和当地设施搜索每个邮政编码,而不是一次检查一个区域。',
'Filter England-wide postcode data from one map.': '从一张地图中过滤英格兰范围内的邮政编码数据。',
'Shortlist unfamiliar areas with comparable evidence.': '将具有可比证据的不熟悉领域列入候选名单。',
'Save and share search areas before booking viewings.': '在预订观看之前保存并共享搜索区域。',
'Turn a broad brief into postcode candidates': '将广泛的简介转变为候选邮政编码',
'Enter the practical constraints first: budget, property size, tenure, travel time, school needs, broadband, and tolerance for road noise or crime levels. The map removes places that fail those constraints and keeps the remaining options comparable.':
'首先输入实际限制:预算、房产规模、保有权、旅行时间、学校需求、宽带以及对道路噪音或犯罪水平的容忍度。该地图删除了不符合这些限制的地点,并保持其余选项的可比性。',
'Relax one constraint at a time': '一次放松一项限制',
'When the search becomes too narrow, loosen a single filter and watch which postcodes reappear. This makes compromise explicit instead of relying on guesswork.':
'当搜索范围变得太窄时,松开单个过滤器并观察哪些邮政编码重新出现。这使得妥协变得明确,而不是依赖猜测。',
'Turn vague areas into specific postcodes': '将模糊区域变成特定的邮政编码',
'Broad town or borough searches hide large differences between streets. Perfect Postcode helps you move from a general area to postcodes that satisfy your hard requirements.':
'广泛的城镇或行政区搜索隐藏了街道之间的巨大差异。Perfect Postcode可帮助您从一般区域转移到满足您硬要求的邮政编码。',
'Keep trade-offs visible': '保持权衡可见',
'When there are too many or too few matches, adjust one constraint at a time and see exactly which postcodes reappear. That makes compromises explicit instead of relying on guesswork.':
'当匹配项太多或太少时,一次调整一个约束并准确查看哪些邮政编码重新出现。这使得妥协变得明确,而不是依赖猜测。',
'Why postcode-level comparison matters': '为什么邮政编码级别的比较很重要',
'Two nearby postcodes can differ on schools, road noise, transport access, property mix, and price. Comparing at postcode level reduces the chance of treating a whole town as one uniform market.':
'附近的两个邮政编码在学校、道路噪音、交通便利、房产组合和价格方面可能有所不同。在邮政编码级别进行比较减少了将整个城镇视为一个统一市场的机会。',
'How to use the results': '如何使用结果',
'Treat matching postcodes as a research queue: check live listings, visit streets, confirm schools and admissions, and review current official sources.':
'将匹配的邮政编码视为研究队列:检查实时列表、访问街道、确认学校和招生以及查看当前的官方来源。',
'Can I save a postcode property search?': '我可以保存邮政编码属性搜索吗?',
'Yes. Licensed users can save searches and return to them later. Saved searches are designed for shortlists and comparison notes.':
'是的。许可用户可以保存搜索并稍后返回。保存的搜索专为候选列表和比较注释而设计。',
'Can I search without knowing the area?': '我可以在不知道区域的情况下进行搜索吗?',
'Yes. The map is designed to surface unfamiliar areas that match practical constraints, not just places you already know.':
'是的。该地图旨在显示符合实际限制的不熟悉的区域,而不仅仅是您已经知道的地方。',
'Are the results live property listings?': '结果是实时房产列表吗?',
'No. The tool compares postcode data and historical/contextual property signals. You still need listing portals for current availability.':
'不会。该工具会比较邮政编码数据和历史/上下文属性信号。您仍然需要列出当前可用性的门户。',
'Manchester property search guide': '曼彻斯特房产搜索指南',
'A regional guide for narrowing a broad search around Greater Manchester.':
'用于缩小大曼彻斯特广泛搜索范围的区域指南。',
'Start a postcode search': '开始邮政编码搜索',
'Commute property search': '通勤房产搜索',
'Search for places to live by commute time': '按通勤时间搜索居住地',
'Commute property search - Find places to live by travel time': '通勤房产搜索 - 按旅行时间查找居住地',
'Filter postcodes by commute time, then compare price, schools, safety, broadband, road noise, parks and property data on one map.':
'按通勤时间过滤邮政编码,然后在一张地图上比较价格、学校、安全、宽带、道路噪音、公园和房产数据。',
'Filter postcodes by modelled car, cycling, walking, and public transport travel times, then layer on property price, schools, crime, broadband, noise, and local amenities.':
'按模型汽车、自行车、步行和公共交通出行时间过滤邮政编码,然后按房价、学校、犯罪、宽带、噪音和当地便利设施进行分层。',
'Compare reachable postcodes by realistic travel-time bands.': '按实际旅行时间范围比较可到达的邮政编码。',
'Search by destination first, then filter for property and neighbourhood fit.':
'首先按目的地搜索,然后筛选适合的房产和社区。',
'Avoid areas that look close on a map but fail the daily journey.':
'避开那些在地图上看起来很接近但日常行程却失败的区域。',
'Start with the destination that matters': '从重要的目的地开始',
'Choose a commute destination, transport mode, and time range, then add the property filters. This prevents a cheap-looking area from reaching the shortlist if the daily journey doesnt work.':
'选择通勤目的地、交通方式和时间范围,然后添加属性过滤器。如果日常行程不起作用,这可以防止看似廉价的地区进入候选名单。',
'Compare the commute against the rest of daily life': '将通勤与日常生活的其他部分进行比较',
'A fast commute isnt enough if the property size, school context, safety threshold, broadband, or road-noise exposure dont fit. The map keeps those signals side by side.':
'如果房产规模、学校环境、安全阈值、宽带或道路噪音暴露不合适,快速通勤是不够的。地图将这些信号并排保存。',
'Commute from postcodes, not just place names': '从邮政编码通勤,而不仅仅是地名',
'Two streets in the same town can have very different station access, road routes, and public transport options. Postcode-level travel-time filtering keeps that difference visible.':
'同一城镇的两条街道可能有截然不同的车站通道、道路路线和公共交通选择。邮政编码级别的旅行时间过滤使这种差异可见。',
'Balance journey time with the rest of the move': '平衡旅途时间与其余的搬家时间',
'A fast commute only helps if the area also fits your budget, housing needs, school preferences, safety threshold, broadband requirement, and tolerance for road noise.':
'只有当该地区也符合您的预算、住房需求、学校偏好、安全阈值、宽带要求和道路噪音容忍度时,快速通勤才有帮助。',
'How travel-time filters should be interpreted': '应如何解释旅行时间过滤器',
'Travel-time modelling is useful for comparing areas consistently. Before committing, check current timetables, disruption patterns, parking, cycling conditions, and walking routes.':
'行程时间建模对于一致地比较区域很有用。在做出决定之前,请检查当前的时间表、中断模式、停车、骑行条件和步行路线。',
'Why commute filters are combined with property data': '为什么通勤过滤器与房产数据相结合',
'Commute search is most useful when it removes impossible areas while still showing whether the remaining options are affordable and liveable.':
'当通勤搜索删除不可能的区域,同时仍显示剩余选项是否负担得起且宜居时,它是最有用的。',
'Can I compare car, cycling, walking, and public transport?': '我可以比较汽车、自行车、步行和公共交通吗?',
'The product supports multiple travel modes where precomputed destination data is available.':
'该产品支持多种出行模式,其中预先计算的目的地数据可用。',
'Are travel times exact?': '出行时间准确吗?',
'No. Treat them as a consistent comparison model, then verify the real route before making viewing or purchase decisions.':
'不会。将它们视为一致的比较模型,然后在做出观看或购买决定之前验证真实路线。',
'Can I combine commute filters with schools and price?': '我可以将通勤过滤器与学校和价格结合起来吗?',
'Yes. The commute filter can be layered with property price, size, schools, broadband, crime, amenities, and environmental signals.':
'是的。通勤过滤器可以根据房价、面积、学校、宽带、犯罪、便利设施和环境信号进行分层。',
'Bristol property search guide': '布里斯托尔房产搜索指南',
'A worked example for balancing city access, price, and local context.': '平衡城市交通、价格和当地环境的有效示例。',
'Search by commute time': '按通勤时间搜索',
'Schools and property search': '学校和房产搜索',
'Find property search areas with schools and family trade-offs in view': '寻找考虑学校和家庭权衡的房产搜索区域',
'School property search - Compare postcodes for family moves': '学校财产搜索 - 比较家庭搬迁的邮政编码',
'Compare nearby schools, property size, prices, parks, safety, commute and local amenities before building a viewing shortlist.':
'在建立观看候选名单之前,比较附近的学校、房产规模、价格、公园、安全、通勤和当地便利设施。',
'Compare nearby Ofsted ratings, education context, property size, budget, safety, parks, commute, and local amenities before narrowing your viewing shortlist.':
'比较附近的 Ofsted 评级、教育背景、房产规模、预算、安全、公园、通勤和当地设施,然后再缩小您的观看候选名单。',
'Filter for nearby school quality alongside housing requirements.': '筛选附近学校的质量以及住房要求。',
'Compare family-friendly trade-offs across unfamiliar postcodes.': '比较不熟悉的邮政编码中适合家庭的权衡。',
'Use the map as a shortlist tool before checking admissions and catchments.':
'在检查招生和流域之前,请使用地图作为候选名单工具。',
'Use school context without ignoring the home': '利用学校环境而不忽视家庭',
'Start with property size, budget, and commute constraints, then layer in nearby school quality and local context. This prevents school-led searches from hiding affordability or daily-life problems.':
'从房产规模、预算和通勤限制开始,然后分层考虑附近的学校质量和当地环境。这可以防止学校主导的搜索隐藏负担能力或日常生活问题。',
'Verify admissions before deciding': '决定前核实录取情况',
'School data can point to promising areas, but admissions rules and catchments can change. Confirm current arrangements with schools and local authorities.':
'学校数据可能会指出有前途的领域,但招生规则和学区可能会发生变化。与学校和地方当局确认当前的安排。',
'School quality is one part of the shortlist': '学校质量是入围名单之一',
'Perfect Postcode helps you compare nearby school data with the other practical constraints that shape a family move: space, price, commute, parks, safety, and local services.':
'Perfect Postcode 可帮助您将附近的学校数据与影响家庭搬家的其他实际限制因素进行比较:空间、价格、通勤、公园、安全和当地服务。',
'Check catchments before making decisions': '做出决定前检查流域',
'Admissions rules and catchment boundaries can change. Use postcode-level school data to find promising areas, then verify current admissions details with the school or local authority.':
'招生规则和学区边界可能会发生变化。使用邮政编码级别的学校数据来寻找有前途的地区,然后与学校或地方当局核实当前的招生详细信息。',
'How to treat school filters': '如何处理学校过滤器',
'Use school filters to narrow research, not to assume admission eligibility. Ratings, distance, admissions criteria, and school capacity should all be checked with current official sources.':
'使用学校过滤器来缩小研究范围,而不是假设入学资格。评级、距离、录取标准和学校容量都应通过当前的官方来源进行检查。',
'Family trade-offs to compare': '家庭权衡比较',
'Combine schools with parks, road noise, crime, property size, commute, broadband, and price so the shortlist reflects the whole move.':
'将学校与公园、道路噪音、犯罪、房产规模、通勤、宽带和价格结合起来,这样入围名单就能反映整个搬迁情况。',
'Does this show school catchment guarantees?': '这是否表明学校学区有保证?',
'No. It helps identify promising areas, but catchments and admissions must be verified with the school or local authority.':
'不会。它有助于确定有前途的地区,但学区和招生必须经过学校或地方当局的核实。',
'Can I combine school filters with parks and safety?': '我可以将学校过滤器与公园和安全结合起来吗?',
'Yes. School-aware search can be combined with crime, parks, commute, price, property size, and local services.':
'是的。学校感知搜索可以与犯罪、公园、通勤、价格、房产规模和本地服务相结合。',
'Is Ofsted the only school signal?': 'Ofsted 是唯一的学校信号吗?',
'No single score should decide a move. Use the map as a starting point, then review current school information in detail.':
'任何一个分数都不能决定行动。使用地图作为起点,然后详细查看当前学校信息。',
'See where education, property, transport, and environment data comes from.':
'查看教育、房地产、交通和环境数据的来源。',
'Explore school-aware searches': '探索学校相关的搜索',
'Check postcode data before you book a viewing': '在预订观看之前检查邮政编码数据',
'Postcode checker - Property, crime, broadband, noise and schools': '邮政编码检查器 - 财产、犯罪、宽带、噪音和学校',
'Check postcode-level property prices, EPC data, crime, broadband, road noise, schools, council tax, amenities and travel-time context.':
'检查邮政编码级别的房地产价格、EPC 数据、犯罪、宽带、道路噪音、学校、市政税、便利设施和旅行时间背景。',
'Review property prices, EPC context, crime, broadband, road noise, local amenities, schools, deprivation, council tax, and travel-time data from one postcode-first map.':
'从一张邮政编码优先的地图中查看房地产价格、EPC 背景、犯罪、宽带、道路噪音、当地便利设施、学校、贫困、市政税和旅行时间数据。',
'Check multiple local signals before visiting a street.': '在访问街道之前检查多个当地信号。',
'Use official and open datasets rather than reputation alone.': '使用官方和开放的数据集,而不仅仅是声誉。',
'Compare postcodes consistently across England.': '一致比较英格兰各地的邮政编码。',
'Check the street before spending a viewing slot': '在花费观看时间之前检查一下街道',
'Use the postcode checker to review price history, local context, amenities, schools, and environment signals before you commit time to visiting.':
'在您花时间参观之前,使用邮政编码检查器查看价格历史记录、当地背景、便利设施、学校和环境信号。',
'Compare neighbouring postcodes': '比较邻近的邮政编码',
'If one postcode looks promising, compare adjacent areas using the same filters. This often reveals whether a concern is street-specific or part of a wider pattern.':
'如果一个邮政编码看起来很有希望,请使用相同的过滤器比较相邻区域。这通常可以揭示问题是特定于街道的还是更广泛模式的一部分。',
'Useful before and alongside listing portals': '在房源平台之前和旁边有用',
'Listing photos rarely tell you enough about the surrounding street. Perfect Postcode gives you an evidence-led postcode check before you commit time to a viewing.':
'房源照片很少能告诉您有关周围街道的足够信息。Perfect Postcode在您投入时间观看之前为您提供以证据为主导的邮政编码检查。',
'A screening tool, not professional advice': '筛查工具,而非专业建议',
'The data is designed for shortlisting and comparison. Any purchase still needs current listing checks, legal due diligence, flood searches, lender requirements, and survey findings.':
'该数据旨在用于筛选和比较。任何购买仍需要当前的清单检查、法律尽职调查、大量搜索、贷方要求和调查结果。',
'What a postcode check can catch': '邮政编码检查可以发现什么',
'A postcode check can surface price context, environmental signals, nearby amenities, and other local indicators that are easy to miss in a listing.':
'邮政编码检查可以显示价格背景、环境信号、附近的便利设施以及列表中容易错过的其他本地指标。',
'What a postcode check cant prove': '邮政编码检查无法证明什么',
'It cant confirm the condition of a home, future development, legal title, lender requirements, or current street-level experience. Those still need direct checks.':
'它无法确认房屋的状况、未来的开发、法定所有权、贷款人要求或当前的街道经验。这些仍然需要直接检查。',
'Can I use the checker before a viewing?': '我可以在观看前使用检查器吗?',
'Yes. Thats one of the main use cases: screen the postcode first, then decide whether the viewing is worth the time.':
'是的。这是主要用例之一:首先筛选邮政编码,然后决定是否值得花时间查看。',
'Does the checker include exact property condition?': '检查器是否包括准确的财产状况?',
'No. Property condition requires listing details, surveys, and direct inspection.':
'不可以。房产状况需要列出详细信息、调查和直接检查。',
'Can I compare multiple postcodes?': '我可以比较多个邮政编码吗?',
'Yes. The map is designed for consistent comparison across postcodes.': '是的。该地图旨在实现跨邮政编码的一致比较。',
'Check postcodes on the map': '检查地图上的邮政编码',
'Regional guide': '区域指南',
'How to compare Birmingham postcodes before a property search': '如何在房产搜索前比较伯明翰邮政编码',
'Birmingham property search - Compare postcodes by price and commute': '伯明翰房产搜索 - 按价格和通勤比较邮政编码',
'Use postcode-level data to compare Birmingham property prices, commute trade-offs, schools, crime, broadband and local amenities before viewings.':
'在查看之前,使用邮政编码级别的数据来比较伯明翰的房价、通勤权衡、学校、犯罪、宽带和当地设施。',
'Birmingham searches can change quickly from street to street. Use postcode-level evidence to compare budget, commute, schools, noise, crime, and local services before deciding where to watch listings.':
'伯明翰的搜索可能因街道而异。在决定在哪里观看列表之前,使用邮政编码级别的证据来比较预算、通勤、学校、噪音、犯罪和当地服务。',
'Start with commute corridors': '从通勤走廊开始',
'Choose the destination that matters, such as a workplace, station, university, or hospital, then compare reachable postcodes by transport mode and travel-time band.':
'选择重要的目的地,例如工作场所、车站、大学或医院,然后按交通方式和旅行时间范围比较可到达的邮政编码。',
'Use commute time as a hard filter before judging price.': '在判断价格之前,使用通勤时间作为硬过滤器。',
'Compare public transport with car, cycling, or walking where available.':
'将公共交通与汽车、骑自行车或步行(如果有)进行比较。',
'Check the route manually before booking viewings.': '在预订观看之前手动检查路线。',
'Compare price with property type': '将价格与房产类型进行比较',
'Median prices alone can be misleading if the local property mix changes. Add property type, tenure, floor area, and price filters so similar areas are compared fairly.':
'如果当地房地产结构发生变化,中位价格可能会产生误导。添加房产类型、保有权、建筑面积和价格过滤器,以便公平比较相似的区域。',
'Keep family and environment trade-offs visible': '让家庭和环境之间的权衡显而易见',
'Layer school context, parks, road noise, broadband, and crime signals on top of the property filters. That makes it easier to decide which compromises are acceptable.':
'将学校环境、公园、道路噪音、宽带和犯罪信号叠加在属性过滤器之上。这使得更容易决定哪些妥协是可以接受的。',
'Can Perfect Postcode tell me the best area in Birmingham?':
'Perfect Postcode可以告诉我 伯明翰 最好的区域吗?',
'No tool can decide the best area for every buyer. It helps compare postcodes against your own constraints so you can build a better shortlist.':
'没有任何工具可以为每个买家决定最佳区域。它有助于将邮政编码与您自己的限制进行比较,以便您可以构建更好的候选名单。',
'Should I use this instead of local knowledge?': '我应该使用这个而不是本地知识吗?',
'No. Use it to find and compare candidates, then validate them with visits, local advice, listings, and official checks.':
'不会。用它来查找和比较候选人,然后通过访问、当地建议、列表和官方检查来验证他们。',
'Compare price patterns before looking at live listings.': '在查看实时列表之前先比较价格模式。',
'Search by travel time and then layer on property requirements.': '按旅行时间搜索,然后按财产要求分层。',
'Understand how to interpret filters and limitations.': '了解如何解释过滤器和限制。',
'Compare Birmingham postcodes': '比较伯明翰 邮政编码',
'How to compare Manchester postcodes for a property search': '如何比较曼彻斯特邮政编码以进行房产搜索',
'Manchester property search - Compare postcodes before viewing': '曼彻斯特房产搜索 - 查看前比较邮政编码',
'Compare Manchester-area postcodes by budget, commute, property type, schools, broadband, crime, noise and amenities before booking viewings.':
'在预订观看之前,请按预算、通勤、房产类型、学校、宽带、犯罪、噪音和便利设施比较曼彻斯特地区的邮政编码。',
'A Manchester-area search can span city-centre, suburban, and commuter options. Perfect Postcode helps keep each postcode comparable against the same property and daily-life constraints.':
'曼彻斯特地区的搜索可以涵盖市中心、郊区和通勤选项。Perfect Postcode有助于使每个邮政编码在相同的财产和日常生活限制下具有可比性。',
'Use travel time to define the real search area': '使用行程时间来定义真正的搜索区域',
'Start from the destinations that matter, then compare reachable postcodes rather than assuming every nearby place has the same practical journey.':
'从重要的目的地开始,然后比较可到达的邮政编码,而不是假设附近的每个地方都有相同的实际旅程。',
'Compare housing requirements before lifestyle preferences': '在生活方式偏好之前比较住房要求',
'Filter by property type, floor area, tenure, and price before judging amenities. That keeps the shortlist grounded in homes that could realistically work.':
'在判断便利设施之前,请按房产类型、建筑面积、使用期限和价格进行筛选。这使得入围名单以能够实际使用的房屋为基础。',
'Check local context consistently': '一致地检查本地上下文',
'Use broadband, crime, road noise, parks, schools, and amenities as comparable signals. Then validate the strongest candidates with current local checks.':
'使用宽带、犯罪、道路噪音、公园、学校和便利设施作为可比信号。然后通过当前的本地检查来验证最强的候选人。',
'Can I compare Manchester suburbs with city-centre postcodes?': '我可以将曼彻斯特郊区与市中心的邮政编码进行比较吗?',
'Yes. Use the same budget, property, commute, and local-context filters across both so trade-offs remain visible.':
'是的。在两者中使用相同的预算、财产、通勤和当地环境过滤器,以便权衡仍然可见。',
'Does this include live listings?': '这包括实时列表吗?',
'No. Use it to decide where to search, then use listing portals for current homes for sale.':
'不会。用它来决定在哪里搜索,然后使用当前待售房屋的房源平台。',
'Move from a broad search brief to specific postcode candidates.': '从广泛的搜索概要转向特定的邮政编码候选人。',
'Data sources': '数据来源',
'Review the datasets used for property and local-context comparison.': '查看用于属性和本地上下文比较的数据集。',
'Check a single postcode before arranging a viewing.': '在安排观看之前检查单个邮政编码。',
'Compare Manchester postcodes': '比较曼彻斯特邮政编码',
'How to compare Bristol postcodes before a property search': '如何在房产搜索前比较布里斯托尔邮政编码',
'Bristol property search - Compare postcodes by commute and price': '布里斯托尔房产搜索 - 按通勤和价格比较邮政编码',
'Compare Bristol postcodes by price, commute, property size, schools, broadband, crime, road noise, parks and amenities before viewings.':
'在查看之前,按价格、通勤、房产规模、学校、宽带、犯罪、道路噪音、公园和便利设施比较布里斯托尔邮政编码。',
'Bristol searches often involve sharp trade-offs between price, journey time, property size, and neighbourhood context. A postcode-first comparison keeps those trade-offs visible.':
'布里斯托尔的搜索通常涉及价格、行程时间、房产规模和社区环境之间的尖锐权衡。邮政编码优先的比较使这些权衡显而易见。',
'Make commute constraints explicit': '明确通勤限制',
'If access to the centre, a station, hospital, university, or business park matters, use travel-time filters first and then compare the remaining postcodes by property data.':
'如果前往中心、车站、医院、大学或商业园区很重要,请首先使用出行时间过滤器,然后通过属性数据比较剩余的邮政编码。',
'Compare value, not just headline price': '比较价值,而不仅仅是标题价格',
'Use price, property type, and floor-area filters together. This helps distinguish lower-cost areas from areas that simply contain smaller or different homes.':
'将价格、房产类型和建筑面积过滤器结合使用。这有助于将低成本区域与仅包含较小或不同房屋的区域区分开来。',
'Screen environmental and local-service signals': '筛选环境和本地服务信号',
'Road noise, parks, broadband, crime, and amenities can affect whether a property works day to day. Use them as screening criteria before booking viewings.':
'道路噪音、公园、宽带、犯罪和便利设施都会影响房产的日常运作。在预订观看之前将它们用作筛选标准。',
'Can I use this for commuter villages around Bristol?': '我可以将其用于布里斯托尔周围的通勤村庄吗?',
'Yes, where the relevant postcode and travel-time data is available. Always verify routes and services manually before deciding.':
'是的,只要有相关邮政编码和旅行时间数据即可。在做出决定之前,请务必手动验证路线和服务。',
'Can this tell me whether a listing is good value?': '这可以告诉我列表是否物有所值吗?',
'It can provide area context, but a specific listing still needs comparable sales, condition checks, survey findings, and professional advice where appropriate.':
'它可以提供区域背景,但特定列表仍然需要可比较的销售、状况检查、调查结果和适当的专业建议。',
'Search by reachable postcodes before refining by budget and local context.':
'先按可达的邮政编码进行搜索,然后再按预算和当地情况进行细化。',
'Understand price patterns before setting listing alerts.': '在设置列表提醒之前了解价格模式。',
'Privacy and security': '隐私和安全',
'How account and saved-search data is handled in the product.': '产品中如何处理帐户和已保存的搜索数据。',
'Compare Bristol postcodes': '比较布里斯托尔邮政编码',
'Trust and coverage': '信任和覆盖',
'Perfect Postcode data sources and coverage': 'Perfect Postcode数据源和覆盖范围',
'Perfect Postcode data sources - Property, schools, commute and local context':
'完美的邮政编码数据源 - 房产、学校、通勤和当地情况',
'Review the public and official datasets used by Perfect Postcode, including property prices, EPC, schools, crime, broadband, noise and travel-time context.':
'查看 Perfect Postcode 使用的公共和官方数据集包括房价、EPC、学校、犯罪、宽带、噪音和旅行时间背景。',
'Perfect Postcode combines property, transport, education, environment, and local-service datasets so buyers can compare postcodes consistently. This page explains what the data is for and where it should be verified.':
'Perfect Postcode 结合了房地产、交通、教育、环境和本地服务数据集,因此买家可以一致地比较邮政编码。此页面解释了数据的用途以及应在何处验证数据。',
'Property and housing context': '财产和住房环境',
'The product uses property transaction and housing-context datasets to support filters such as sale price, property type, tenure, floor area, energy performance, and estimated current value.':
'该产品使用房产交易和住房背景数据集来支持销售价格、房产类型、保有权、建筑面积、能源绩效和估计当前价值等过滤器。',
'Use these fields to compare areas, not as a formal valuation.': '使用这些字段来比较面积,而不是作为正式评估。',
'Check current listings, title information, lender requirements, and survey results before buying.':
'购买前检查当前列表、产权信息、贷方要求和调查结果。',
'Schools, safety, broadband, and environment': '学校、安全、宽带和环境',
'Local-context filters help compare postcodes on signals that affect daily life. They should be treated as screening data and checked against current official sources for decisions.':
'本地上下文过滤器有助于比较影响日常生活的信号的邮政编码。它们应被视为筛选数据,并根据当前的官方来源进行检查以做出决定。',
'Travel-time data': '行程时间数据',
'Travel-time filters are designed for consistent area comparison. Route availability, disruption, parking, walking access, and timetable details should be verified before committing to an area.':
'传播时间过滤器旨在实现一致的面积比较。在前往某个区域之前,应验证路线可用性、中断情况、停车位、步行通道和时间表详细信息。',
'Why does coverage focus on England?': '为什么报道聚焦英格兰?',
'Several core property, education, and local-context datasets are jurisdiction-specific. England coverage keeps comparisons more consistent.':
'一些核心财产、教育和当地背景数据集是特定于管辖区的。英格兰的报道使比较更加一致。',
'How should I handle stale or missing data?': '我应该如何处理陈旧或丢失的数据?',
'Use the map as a shortlist tool. If a postcode matters, verify the latest details with current official sources and direct local checks.':
'使用地图作为候选名单工具。如果邮政编码很重要,请通过当前的官方来源验证最新详细信息并直接进行本地检查。',
'How filters and comparisons should be interpreted.': '应如何解释过滤器和比较。',
'Review postcode-level context before a viewing.': '在查看之前查看邮政编码级别的上下文。',
'How saved searches and account data are handled.': '如何处理保存的搜索和帐户数据。',
'How to use the map': '如何使用地图',
'Methodology for postcode property research': '邮政编码财产研究方法',
'Perfect Postcode methodology - How to interpret postcode property data':
'Perfect Postcode方法 - 如何解释邮政编码属性数据',
'Understand how to use postcode filters, property estimates, travel-time data, school context and local signals as a home-buying shortlist tool.':
'了解如何使用邮政编码过滤器、房产估算、旅行时间数据、学校背景和当地信号作为购房候选名单工具。',
'Perfect Postcode is designed to make area shortlisting more evidence-led. It doesnt replace estate agents, surveyors, conveyancers, lenders, school admissions teams, or local authority checks.':
'Perfect Postcode 旨在使区域入围更加以证据为主导。它不能取代房地产经纪人、测量师、产权转让师、贷款人、学校招生团队或地方当局的检查。',
'Start with hard constraints': '从硬性约束开始',
'Begin with non-negotiables such as budget, property type, floor area, commute time, and essential services. This removes impossible postcodes before softer preferences are considered.':
'从预算、房产类型、建筑面积、通勤时间和基本服务等不可协商的事项开始。这会在考虑较软的偏好之前删除不可能的邮政编码。',
'Use colour layers for trade-offs': '使用颜色层进行权衡',
'After filtering, colour the remaining map by one signal at a time: price per square metre, road noise, school context, commute time, broadband, or crime. This makes trade-offs easier to discuss.':
'过滤后,一次按一个信号对剩余地图进行着色:每平方米价格、道路噪音、学校环境、通勤时间、宽带或犯罪情况。这使得权衡更容易讨论。',
'Measure whats working': '衡量哪些内容有效',
'Use Search Console and analytics to track which public pages are indexed, which queries produce impressions, and which pages convert visitors into dashboard exploration. Review Core Web Vitals after every substantial frontend change.':
'使用 Search Console 和分析来跟踪哪些公共页面被索引、哪些查询产生展示次数以及哪些页面将访问者转化为仪表板探索。在每次重大前端更改后查看 Core Web Vitals。',
'Can the tool choose the right postcode for me?': '该工具可以为我选择正确的邮政编码吗?',
'No. It helps compare evidence and reduce the search area. The final decision needs direct visits, current listings, legal checks, surveys, and personal judgement.':
'不会。它有助于比较证据并缩小搜索范围。最终决定需要直接访问、当前列表、法律检查、调查和个人判断。',
'How should I use estimates?': '我应该如何使用估算值?',
'Use estimates as comparison signals, not as professional valuations or purchase advice.':
'使用估算作为比较信号,而不是作为专业估价或购买建议。',
'Understand where key filters come from.': '了解关键过滤器的来源。',
'Apply the methodology to price-led area comparison.': '将该方法应用于价格主导的区域比较。',
'Apply the methodology to destination-led search.': '将该方法应用于以目的地为主导的搜索。',
Trust: '信任',
'Privacy and security for saved property searches': '保存的财产搜索的隐私和安全',
'Perfect Postcode privacy and security - Saved searches and account data':
'完美的邮政编码隐私和安全 - 保存的搜索和帐户数据',
'Learn how Perfect Postcode treats saved searches, account data and property research workflows with privacy and security in mind.':
'了解 Perfect Postcode 如何在考虑隐私和安全的情况下处理已保存的搜索、帐户数据和财产研究工作流程。',
'Property research can reveal personal priorities, budgets, and locations. The product keeps public SEO pages separate from account-only areas and marks private dashboard/account routes as noindex.':
'房地产研究可以揭示个人优先事项、预算和地点。该产品将公共 SEO 页面与仅帐户区域分开,并将私人仪表板/帐户路线标记为 noindex。',
'Public pages and private areas are separated': '公共页面和私人区域分开',
'Marketing, methodology, guide, and support pages are indexable. Dashboard, account, saved searches, invites, and invitation routes are marked noindex or blocked from crawler access where appropriate.':
'营销、方法、指南和支持页面都是可索引的。仪表板、帐户、已保存的搜索、邀请和邀请路线被标记为 noindex 或在适当的情况下阻止爬网程序访问。',
'Saved search data is account-scoped': '保存的搜索数据是帐户范围内的',
'Saved searches and properties are intended for signed-in use. They arent included in the public sitemap and shouldnt be crawlable as public content.':
'保存的搜索和属性仅供登录使用。它们不包含在公共站点地图中,也不应作为公共内容进行抓取。',
'Search measurement without exposing private data': '搜索测量而不暴露私人数据',
'SEO measurement should happen on public pages using aggregated analytics and Search Console data. Private query parameters and account views shouldnt become indexable landing pages.':
'SEO 测量应该使用聚合分析和 Search Console 数据在公共页面上进行。私有查询参数和帐户视图不应成为可索引的登陆页面。',
'Are saved searches listed in the sitemap?': '站点地图中是否列出了已保存的搜索?',
'No. Public SEO pages are listed; account and saved-search routes are intentionally excluded.':
'否。列出了公共 SEO 页面;帐户和保存的搜索路线被有意排除。',
'Can private dashboard URLs appear in search?': '私有仪表板 URL 可以出现在搜索中吗?',
'They shouldnt be indexed. The server marks private routes noindex and the sitemap only lists public pages.':
'它们不应该被索引。服务器将私有路由标记为noindex站点地图仅列出公共页面。',
'How to use public postcode data responsibly.': '如何负责任地使用公共邮政编码数据。',
'What data powers the public comparisons.': '哪些数据支持公众比较。',
'Explore public postcode-search workflows.': '探索公共邮政编码搜索工作流程。',
},
};
export default zh;

View file

@ -1,5 +1,5 @@
import i18n from 'i18next';
import type { SeoContentKey, SeoLandingKey } from './seoRoutes';
import { SEO_TRANSLATIONS, type SeoTranslationLanguage } from './seoTranslations';
export type { SeoContentKey, SeoLandingKey, SeoPageKey } from './seoRoutes';
@ -49,7 +49,7 @@ export interface SeoContentPage {
cta?: string;
}
type SeoLanguage = 'en' | SeoTranslationLanguage;
type SeoLanguage = string;
const COMMON_RELATED_LINKS: SeoLink[] = [
{
@ -758,29 +758,31 @@ export const SEO_CONTENT_PAGES: Record<SeoContentKey, SeoContentPage> = {
};
function toSeoLanguage(language: string | undefined): SeoLanguage {
const code = language?.toLowerCase().split('-')[0];
if (code && Object.prototype.hasOwnProperty.call(SEO_TRANSLATIONS, code)) {
return code as SeoTranslationLanguage;
return language?.toLowerCase().split('-')[0] ?? 'en';
}
function getSeoMap(language: SeoLanguage): Record<string, string> | null {
if (language === 'en') return null;
const bundle = i18n.getResourceBundle(language, 'translation') as
| { seo?: { pages?: Record<string, string> } }
| undefined;
return bundle?.seo?.pages ?? null;
}
function localizeSeoValue<T>(value: T, map: Record<string, string> | null): T {
if (typeof value === 'string') {
if (!map || value.startsWith('/')) return value;
return (map[value] ?? value) as T;
}
return 'en';
}
function translateSeoString(value: string, language: SeoLanguage): string {
if (language === 'en' || value.startsWith('/')) return value;
return SEO_TRANSLATIONS[language][value] ?? value;
}
function localizeSeoValue<T>(value: T, language: SeoLanguage): T {
if (typeof value === 'string') return translateSeoString(value, language) as T;
if (Array.isArray(value)) {
return value.map((item) => localizeSeoValue(item, language)) as T;
return value.map((item) => localizeSeoValue(item, map)) as T;
}
if (!value || typeof value !== 'object') return value;
return Object.fromEntries(
Object.entries(value as Record<string, unknown>).map(([key, item]) => [
key,
localizeSeoValue(item, language),
localizeSeoValue(item, map),
])
) as T;
}
@ -788,13 +790,13 @@ function localizeSeoValue<T>(value: T, language: SeoLanguage): T {
export function getLocalizedSeoLandingPages(
language: string | undefined
): Record<SeoLandingKey, SeoLandingContent> {
return localizeSeoValue(SEO_LANDING_PAGES, toSeoLanguage(language));
return localizeSeoValue(SEO_LANDING_PAGES, getSeoMap(toSeoLanguage(language)));
}
export function getLocalizedSeoContentPages(
language: string | undefined
): Record<SeoContentKey, SeoContentPage> {
return localizeSeoValue(SEO_CONTENT_PAGES, toSeoLanguage(language));
return localizeSeoValue(SEO_CONTENT_PAGES, getSeoMap(toSeoLanguage(language)));
}
export function getLocalizedSeoLandingPage(