Vertaal tien Engelse aria-labels
Deze worden voorgelezen aan gebruikers die met een schermlezer werken. In een verder Nederlandse werkbank hoorden zij "Export artifact actions" en "Map selection QA shortcut". Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -270,7 +270,7 @@ export function DatasetPanel({
|
|||||||
</form>
|
</form>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<div className="dataset-role-summary-grid" aria-label="Dataset role summary">
|
<div className="dataset-role-summary-grid" aria-label="Overzicht van bronrollen">
|
||||||
{roleSummaries.map((summary) => (
|
{roleSummaries.map((summary) => (
|
||||||
<div className={`dataset-role-summary ${summary.className}`} key={summary.key}>
|
<div className={`dataset-role-summary ${summary.className}`} key={summary.key}>
|
||||||
<strong>{summary.count}</strong>
|
<strong>{summary.count}</strong>
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ export function ExportCenter({
|
|||||||
<span className="count-pill">{exports.length} bestanden</span>
|
<span className="count-pill">{exports.length} bestanden</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="export-summary-surface" aria-label="Export summary">
|
<div className="export-summary-surface" aria-label="Samenvatting van de downloads">
|
||||||
<div className="quality-summary-grid">
|
<div className="quality-summary-grid">
|
||||||
<div>
|
<div>
|
||||||
<span>GeoJSON</span>
|
<span>GeoJSON</span>
|
||||||
@@ -210,7 +210,7 @@ export function ExportCenter({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="export-handoff-surface" aria-label="Export handoff readiness">
|
<div className="export-handoff-surface" aria-label="Gereedheid voor overdracht">
|
||||||
<div className="handoff-summary-card">
|
<div className="handoff-summary-card">
|
||||||
<div className="panel-title-row">
|
<div className="panel-title-row">
|
||||||
<div>
|
<div>
|
||||||
@@ -282,7 +282,7 @@ export function ExportCenter({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="export-actions-surface" aria-label="Export artifact actions">
|
<div className="export-actions-surface" aria-label="Acties om resultaten te bewaren">
|
||||||
<div className="panel-title-row">
|
<div className="panel-title-row">
|
||||||
<div>
|
<div>
|
||||||
<h3>Wat wil je bewaren?</h3>
|
<h3>Wat wil je bewaren?</h3>
|
||||||
@@ -383,7 +383,7 @@ export function ExportCenter({
|
|||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<details className="export-history-surface export-history-disclosure" aria-label="Export history">
|
<details className="export-history-surface export-history-disclosure" aria-label="Downloadgeschiedenis">
|
||||||
<summary>
|
<summary>
|
||||||
<span>Downloadgeschiedenis</span>
|
<span>Downloadgeschiedenis</span>
|
||||||
<strong>{exports.length} bestanden</strong>
|
<strong>{exports.length} bestanden</strong>
|
||||||
@@ -394,7 +394,7 @@ export function ExportCenter({
|
|||||||
<p className="muted">Bekijk persistente bestanden en open beschikbare JSON-voorbeelden.</p>
|
<p className="muted">Bekijk persistente bestanden en open beschikbare JSON-voorbeelden.</p>
|
||||||
</div>
|
</div>
|
||||||
{exports.length > 0 ? (
|
{exports.length > 0 ? (
|
||||||
<div className="export-history-controls" aria-label="Export history filters">
|
<div className="export-history-controls" aria-label="Filters op de downloadgeschiedenis">
|
||||||
<label>
|
<label>
|
||||||
Downloads zoeken
|
Downloads zoeken
|
||||||
<input
|
<input
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export function ExportPreview({ content }: ExportPreviewProps): JSX.Element {
|
|||||||
</div>
|
</div>
|
||||||
{content ? (
|
{content ? (
|
||||||
<>
|
<>
|
||||||
<div className="export-preview-summary" aria-label="Export preview summary">
|
<div className="export-preview-summary" aria-label="Samenvatting van het voorbeeld">
|
||||||
<div className="export-preview-summary-card">
|
<div className="export-preview-summary-card">
|
||||||
<span>Type inhoud</span>
|
<span>Type inhoud</span>
|
||||||
<strong>{previewStats?.rootType}</strong>
|
<strong>{previewStats?.rootType}</strong>
|
||||||
|
|||||||
@@ -887,7 +887,7 @@ export function MapAdvancedWorkbench({ props, view }: MapAdvancedWorkbenchProps)
|
|||||||
<p className="muted">Bewaarde afgeleide laag: {latestSelectionDatasetName}</p>
|
<p className="muted">Bewaarde afgeleide laag: {latestSelectionDatasetName}</p>
|
||||||
) : null}
|
) : null}
|
||||||
{latestSelectionDatasetName ? (
|
{latestSelectionDatasetName ? (
|
||||||
<div className="map-selection-qa-surface" aria-label="Map selection QA shortcut">
|
<div className="map-selection-qa-surface" aria-label="Snelkoppeling naar de kwaliteitscontrole van de selectie">
|
||||||
<label>
|
<label>
|
||||||
Referentielaag
|
Referentielaag
|
||||||
<select
|
<select
|
||||||
@@ -913,7 +913,7 @@ export function MapAdvancedWorkbench({ props, view }: MapAdvancedWorkbenchProps)
|
|||||||
</button>
|
</button>
|
||||||
{mapSelectionQaError ? <p className="error">{mapSelectionQaError}</p> : null}
|
{mapSelectionQaError ? <p className="error">{mapSelectionQaError}</p> : null}
|
||||||
{mapSelectionQaResult ? (
|
{mapSelectionQaResult ? (
|
||||||
<div className="map-selection-qa-evidence" aria-label="Map selection QA result">
|
<div className="map-selection-qa-evidence" aria-label="Kwaliteitsresultaat van de kaartselectie">
|
||||||
<div className="panel-title-row">
|
<div className="panel-title-row">
|
||||||
<div>
|
<div>
|
||||||
<p className="eyebrow">Kaartbewijs</p>
|
<p className="eyebrow">Kaartbewijs</p>
|
||||||
@@ -977,7 +977,7 @@ export function MapAdvancedWorkbench({ props, view }: MapAdvancedWorkbenchProps)
|
|||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
{areaSelectionPreviewFeatures.length > 0 ? (
|
{areaSelectionPreviewFeatures.length > 0 ? (
|
||||||
<div className="table-scroll feature-property-table" aria-label="Area selection feature table">
|
<div className="table-scroll feature-property-table" aria-label="Tabel met objecten in de gebiedsselectie">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user