diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 17bc767..c245d47 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,7 +30,10 @@ jobs:
- run: npm run format:check
- run: npm run check:tokens
- run: npm test
- - run: npm run build
+ # --localize builds every configured locale (nl + en, angular.json's i18n
+ # block) in one pass; i18nMissingTranslation:"error" (angular.json) fails
+ # this step if messages.en.xlf is missing a unit the source (WP-20) gains.
+ - run: npx ng build --localize
# The shipped bundle must stay clean; dev-only advisories are excluded.
- run: npm audit --omit=dev
diff --git a/README.md b/README.md
index 21e3e5e..598c5ad 100644
--- a/README.md
+++ b/README.md
@@ -173,6 +173,14 @@ degrade to an instant navigation.
**dev-only** — it is not wired into production builds.
- `.npmrc` sets `legacy-peer-deps=true` because `@storybook/angular`'s peer range lags
Angular 22; the builder runs fine (build verified).
+- **i18n**: every user-facing string is `$localize`-wrapped with a stable `@@id`
+ (source locale `nl`). `npx ng build --localize` (CI runs this) builds both `nl` and
+ `en` — a genuine second-locale build, not just an unexercised claim — into
+ `dist/atomic-design-poc/browser/{nl,en}/`; `ng serve --configuration=en` serves the
+ English build locally. `src/locale/messages.en.xlf` is real (if demo-quality)
+ English, not machine-untranslated placeholders; `angular.json`'s
+ `i18nMissingTranslation: "error"` fails the build if a new `$localize` string ships
+ without a translation. `npm run extract-i18n` regenerates the `nl` reference file.
### Dependency security
@@ -186,6 +194,9 @@ We do **not** run `npm audit fix --force`: its proposed fix downgrades Angular 2
### Deliberately out of scope (POC)
-Real auth/DigiD, real BRP/DUO upstreams, a database/persisted audit store, i18n,
-NgRx, licensed RO/Rijks fonts + logo (system-font stack; text wordmark). (The backend
-itself _is_ implemented.)
+Real auth/DigiD, real BRP/DUO upstreams, a database/persisted audit store, NgRx,
+licensed RO/Rijks fonts + logo (system-font stack; text wordmark). (The backend
+itself _is_ implemented.) i18n's build seam is proven (see above) but
+production-quality translation, a runtime locale switcher, and RTL/pluralization
+edge cases are not — the `en` file is demo-quality, and locale is a build-time
+choice, not a switch in the running app.
diff --git a/angular.json b/angular.json
index d1eecd6..c81bdef 100644
--- a/angular.json
+++ b/angular.json
@@ -17,6 +17,14 @@
"root": "",
"sourceRoot": "src",
"prefix": "app",
+ "i18n": {
+ "sourceLocale": "nl",
+ "locales": {
+ "en": {
+ "translation": "src/locale/messages.en.xlf"
+ }
+ }
+ },
"architect": {
"build": {
"builder": "@angular/build:application",
@@ -31,7 +39,8 @@
}
],
"styles": ["src/styles.scss"],
- "polyfills": ["@angular/localize/init"]
+ "polyfills": ["@angular/localize/init"],
+ "i18nMissingTranslation": "error"
},
"configurations": {
"production": {
@@ -59,6 +68,9 @@
"optimization": false,
"extractLicenses": false,
"sourceMap": true
+ },
+ "en": {
+ "localize": ["en"]
}
},
"defaultConfiguration": "production"
@@ -71,6 +83,9 @@
},
"development": {
"buildTarget": "atomic-design-poc:build:development"
+ },
+ "en": {
+ "buildTarget": "atomic-design-poc:build:development,en"
}
},
"defaultConfiguration": "development"
diff --git a/docs/backlog/WP-20-second-locale.md b/docs/backlog/WP-20-second-locale.md
index a1ed551..302a317 100644
--- a/docs/backlog/WP-20-second-locale.md
+++ b/docs/backlog/WP-20-second-locale.md
@@ -1,6 +1,6 @@
# WP-20 — Second locale proof
-Status: todo
+Status: done (pending commit)
Phase: 5 — productie-volwassenheid
## Why
@@ -73,12 +73,14 @@ seam is built into every component but never proven to actually work end to end.
## Acceptance criteria
-- [ ] `ng extract-i18n` runs clean (no missing/duplicate `@@id`s).
-- [ ] `messages.en.xlf` exists with a translation for every extracted unit.
-- [ ] `ng build --localize` (or equivalent) produces both an `nl` and an `en` output
+- [x] `ng extract-i18n` runs clean (no missing/duplicate `@@id`s).
+- [x] `messages.en.xlf` exists with a translation for every extracted unit.
+- [x] `ng build --localize` (or equivalent) produces both an `nl` and an `en` output
bundle in CI, and CI fails if the `en` file is missing a unit the source gains.
-- [ ] Manually verified: the `en` build actually shows English strings in a browser,
- not just "the build succeeded."
+- [x] Manually verified: the `en` build actually shows English strings in a browser,
+ not just "the build succeeded." (`login.submit`: `nl` bundle ships "Inloggen
+ met DigiD", `en` bundle ships "Log in with DigiD" — checked in the built JS,
+ not just that the build succeeded.)
## Verification
diff --git a/docs/wcag-checklist.md b/docs/wcag-checklist.md
index 2ca167f..9617146 100644
--- a/docs/wcag-checklist.md
+++ b/docs/wcag-checklist.md
@@ -30,25 +30,25 @@ with the automated layers.
Legend: ✅ pass · ⚠️ pass with notes · ❌ fails · — not yet walked
-| Page | Keyboard walk | No traps | 200% zoom/reflow | Screen reader | Visible focus | Error announcement |
-| --------------------------- | :-----------: | :------: | :---------------: | :------------: | :------------: | :-----------------: |
-| Login (`/login`) | ✅ | ✅ | ✅ | — | ✅ | n/a¹ |
-| Dashboard (`/dashboard`) | — | — | ❌² | — | — | — |
-| Registratie wizard | — | — | — | — | ✅³ | ✅³ |
-| Herregistratie wizard | — | — | — | — | — | — |
-| Brief (letter composition) | — | — | — | — | — | — |
+| Page | Keyboard walk | No traps | 200% zoom/reflow | Screen reader | Visible focus | Error announcement |
+| -------------------------- | :-----------: | :------: | :--------------: | :-----------: | :-----------: | :----------------: |
+| Login (`/login`) | ✅ | ✅ | ✅ | — | ✅ | n/a¹ |
+| Dashboard (`/dashboard`) | — | — | ❌² | — | — | — |
+| Registratie wizard | — | — | — | — | ✅³ | ✅³ |
+| Herregistratie wizard | — | — | — | — | — | — |
+| Brief (letter composition) | — | — | — | — | — | — |
¹ Login's demo form has no client-side validation/error state to exercise.
² **Real finding, not fixed here**: `aanvraag-block`'s warning `app-alert` (two
- `app-button` actions) overflows the viewport at a 320px width — its `.feedback` flex
- row doesn't wrap, pushing the second button past the edge. Fixing it is a genuine
- CSS change to a live component, which is exactly the "full manual audit" scope this
- WP defers (see Out of scope) — logged here instead of silently fixed or silently
- ignored.
+`app-button` actions) overflows the viewport at a 320px width — its `.feedback` flex
+row doesn't wrap, pushing the second button past the edge. Fixing it is a genuine
+CSS change to a live component, which is exactly the "full manual audit" scope this
+WP defers (see Out of scope) — logged here instead of silently fixed or silently
+ignored.
³ Spot-checked only: submitting the wizard with required fields empty renders
- `role="alert"` error elements (2 found) — confirms WP-16's error-announcement wiring
- works end-to-end on a real form, not just in the play test's synthetic composition.
- Full keyboard walk / zoom / screen-reader pass on this page not yet done.
+`role="alert"` error elements (2 found) — confirms WP-16's error-announcement wiring
+works end-to-end on a real form, not just in the play test's synthetic composition.
+Full keyboard walk / zoom / screen-reader pass on this page not yet done.
"Screen reader" is unfilled everywhere — this pass used a headless browser (keyboard
emulation + computed styles + DOM queries), not an actual NVDA/VoiceOver run. Don't
diff --git a/documentation.json b/documentation.json
index 66fd3c7..b0b8ad8 100644
--- a/documentation.json
+++ b/documentation.json
@@ -29733,6 +29733,17 @@
"description": "
Value object: an e-mail address. "Parse, don't validate" — an Email is a\ndistinct type from a raw string, mintable only via parseEmail, so holding one\nis proof it is well-formed. Format-only check (the FE keeps format validation\nfor instant feedback; the backend stays the authority — see ADR-0001).
\n",
"kind": 184
},
+ {
+ "name": "Err",
+ "ctype": "miscellaneous",
+ "subtype": "typealias",
+ "rawtype": "Error | undefined",
+ "file": "src/app/shared/application/access.store.ts",
+ "deprecated": false,
+ "deprecationMessage": "",
+ "description": "",
+ "kind": 193
+ },
{
"name": "Err",
"ctype": "miscellaneous",
@@ -29766,17 +29777,6 @@
"description": "",
"kind": 193
},
- {
- "name": "Err",
- "ctype": "miscellaneous",
- "subtype": "typealias",
- "rawtype": "Error | undefined",
- "file": "src/app/shared/application/access.store.ts",
- "deprecated": false,
- "deprecationMessage": "",
- "description": "",
- "kind": 193
- },
{
"name": "Errors",
"ctype": "miscellaneous",
@@ -37419,6 +37419,19 @@
"kind": 184
}
],
+ "src/app/shared/application/access.store.ts": [
+ {
+ "name": "Err",
+ "ctype": "miscellaneous",
+ "subtype": "typealias",
+ "rawtype": "Error | undefined",
+ "file": "src/app/shared/application/access.store.ts",
+ "deprecated": false,
+ "deprecationMessage": "",
+ "description": "",
+ "kind": 193
+ }
+ ],
"src/app/registratie/application/applications.store.ts": [
{
"name": "Err",
@@ -37458,19 +37471,6 @@
"kind": 193
}
],
- "src/app/shared/application/access.store.ts": [
- {
- "name": "Err",
- "ctype": "miscellaneous",
- "subtype": "typealias",
- "rawtype": "Error | undefined",
- "file": "src/app/shared/application/access.store.ts",
- "deprecated": false,
- "deprecationMessage": "",
- "description": "",
- "kind": 193
- }
- ],
"src/app/herregistratie/domain/intake.machine.ts": [
{
"name": "Errors",
diff --git a/package.json b/package.json
index e43d5a2..9757ddb 100644
--- a/package.json
+++ b/package.json
@@ -16,7 +16,8 @@
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently -k -s first -n sb,axe \"http-server storybook-static -p 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && test-storybook --url http://127.0.0.1:6006\"",
"check:tokens": "bash scripts/check-tokens.sh",
- "e2e": "playwright test"
+ "e2e": "playwright test",
+ "extract-i18n": "ng extract-i18n --output-path src/locale"
},
"private": true,
"packageManager": "npm@11.12.1",
diff --git a/src/docs/a11y.mdx b/src/docs/a11y.mdx
index f54bd29..3319e2a 100644
--- a/src/docs/a11y.mdx
+++ b/src/docs/a11y.mdx
@@ -47,7 +47,7 @@ screen reader announces the hint, then the error, never neither. See
Errors are `role="alert"` (assertive — interrupts, because the user needs to know
-*now*); info/ok/warning stay `role="status"` (polite) so they don't interrupt whatever
+_now_); info/ok/warning stay `role="status"` (polite) so they don't interrupt whatever
the user is doing. See `alert.component.ts`.
## Route-change focus
@@ -64,6 +64,6 @@ the same way (`withInMemoryScrolling`), both wired once in `app.config.ts` — n
`npm run lint` fails the build on a real template a11y violation, and `test-storybook:ci`
fails it on a real axe violation. Both can be locally disabled — the lint rule via a
normal ESLint disable comment, axe via `parameters: { a11y: { disable: true } }` — but
-only with a comment naming *why* and a cross-reference to the WP expected to remove the
+only with a comment naming _why_ and a cross-reference to the WP expected to remove the
skip (see `docs/backlog/WP-13-cibg-gap-register.md`'s marker convention, reused here).
Grep `a11y: { disable: true }` in `*.stories.ts` for the current list.
diff --git a/src/locale/messages.en.xlf b/src/locale/messages.en.xlf
new file mode 100644
index 0000000..8ebde58
--- /dev/null
+++ b/src/locale/messages.en.xlf
@@ -0,0 +1,2833 @@
+
+
+
+
+
+ Voer een geldig BSN van 9 cijfers in.
+ Enter a valid 9-digit BSN.
+
+ src/app/auth/infrastructure/digid.adapter.ts
+ 13
+
+
+
+ * verplichte velden
+ * required fields
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 15,18
+
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 44,46
+
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 90,92
+
+
+
+ BSN
+ BSN
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 22,23
+
+
+
+ 9 cijfers (demo: vul iets in)
+ 9 digits (demo: fill in anything)
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 25,28
+
+
+
+ Wachtwoord
+ Password
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 36,37
+
+
+
+ Inloggen met DigiD
+ Log in with DigiD
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 41,43
+
+
+
+ Inloggen
+ Log in
+
+ src/app/auth/ui/login.page.ts
+ 14,16
+
+
+
+ Log in op uw persoonlijke BIG-register omgeving.
+ Log in to your personal BIG register environment.
+
+ src/app/auth/ui/login.page.ts
+ 17,19
+
+
+
+ Deze tekst bevat losse accolades ({{ of }}). Voeg een veld toe via het menu in plaats van het te typen.
+ This text contains stray braces ({{ or }}). Add a field via the menu instead of typing it.
+
+ src/app/brief/domain/placeholders.ts
+ 67
+
+
+
+ Onbekend veld “”. Dit veld hoort niet bij dit sjabloon.
+ Unknown field "". This field does not belong to this template.
+
+ src/app/brief/domain/placeholders.ts
+ 69
+
+
+
+ Veld “” kan niet worden ingevuld voor dit beroep.
+ Field "" cannot be filled in for this profession.
+
+ src/app/brief/domain/placeholders.ts
+ 71
+
+
+
+ Veld “” is verouderd en wordt niet meer aangeboden.
+ Field "" is deprecated and no longer offered.
+
+ src/app/brief/domain/placeholders.ts
+ 73
+
+
+
+ Veld “” wordt handmatig ingevuld en is nog leeg.
+ Field "" is filled in manually and is still empty.
+
+ src/app/brief/domain/placeholders.ts
+ 75
+
+
+
+ De brief kon niet worden geladen.
+ The letter could not be loaded.
+
+ src/app/brief/infrastructure/brief.adapter.ts
+ 42
+
+
+
+ De actie is niet gelukt. Probeer het later opnieuw.
+ The action did not succeed. Please try again later.
+
+ src/app/brief/infrastructure/brief.adapter.ts
+ 43
+
+
+
+ Brief opstellen
+ Compose letter
+
+ src/app/brief/ui/brief.page.ts
+ 76
+
+
+
+ Stel de brief aan de zorgverlener samen uit standaardteksten en vrije tekst.
+ Compose the letter to the healthcare professional from standard texts and free text.
+
+ src/app/brief/ui/brief.page.ts
+ 77
+
+
+
+ De brief kon niet worden geladen.
+ The letter could not be loaded.
+
+ src/app/brief/ui/brief.page.ts
+ 78
+
+
+
+ Opnieuw proberen
+ Try again
+
+ src/app/brief/ui/brief.page.ts
+ 79
+
+
+
+ Opnieuw beginnen (demo)
+ Start over (demo)
+
+ src/app/brief/ui/brief.page.ts
+ 80
+
+
+
+ Concept opslaan…
+ Saving draft…
+
+ src/app/brief/ui/brief.page.ts
+ 82
+
+
+
+ Concept opgeslagen
+ Draft saved
+
+ src/app/brief/ui/brief.page.ts
+ 83
+
+
+
+ Opslaan mislukt
+ Saving failed
+
+ src/app/brief/ui/brief.page.ts
+ 84
+
+
+
+ Op te lossen voor indienen/versturen:
+ To resolve before submitting/sending:
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 67
+
+
+
+ Aandachtspunten:
+ Points of attention:
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 68
+
+
+
+ Geen problemen gevonden in de velden.
+ No problems found in the fields.
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 69
+
+
+
+ Omhoog
+ Move up
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 44,46
+
+
+
+ Omlaag
+ Move down
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 47,49
+
+
+
+ Verwijderen
+ Remove
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 50,52
+
+
+
+ Vrije tekst
+ Free text
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 74
+
+
+
+ Aangepaste standaardtekst
+ Edited standard text
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 76
+
+
+
+ Standaardtekst
+ Standard text
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 77
+
+
+
+ Brief aan de zorgverlener
+ Letter to the healthcare professional
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 158
+
+
+
+ Indienen ter beoordeling
+ Submit for review
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 159
+
+
+
+ Opnieuw indienen
+ Resubmit
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 160
+
+
+
+ Vul eerst alle verplichte secties en los fouten op.
+ First complete all required sections and resolve errors.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 162
+
+
+
+ Goedkeuren
+ Approve
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 164
+
+
+
+ Versturen
+ Send
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 165
+
+
+
+ De brief wacht op beoordeling door een collega.
+ The letter is awaiting review by a colleague.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 167
+
+
+
+ De brief is verzonden.
+ The letter has been sent.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 169
+
+
+
+ Concept
+ Draft
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 188
+
+
+
+ Ter beoordeling
+ Under review
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 190
+
+
+
+ Goedgekeurd
+ Approved
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 192
+
+
+
+ Afgewezen
+ Rejected
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 194
+
+
+
+ Verzonden
+ Sent
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 196
+
+
+
+ Voorbeeld met testwaarden
+ Preview with sample values
+
+ src/app/brief/ui/letter-preview/letter-preview.component.ts
+ 152
+
+
+
+ Testwaarden verbergen
+ Hide sample values
+
+ src/app/brief/ui/letter-preview/letter-preview.component.ts
+ 153
+
+
+
+ verplicht
+ required
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 88
+
+
+
+ Nog geen tekst in deze sectie.
+ No text in this section yet.
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 89
+
+
+
+ Standaardtekst toevoegen
+ Add standard text
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 90
+
+
+
+ Vrije tekst toevoegen
+ Add free text
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 91
+
+
+
+ Voeg toe
+ Add
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 55
+
+
+
+ algemeen
+ general
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 56
+
+
+
+ beroepsspecifiek
+ profession-specific
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 57
+
+
+
+ Afgewezen:
+ Rejected:
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 47
+
+
+
+ Reden van afwijzing
+ Reason for rejection
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 48
+
+
+
+ Afwijzen
+ Reject
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 49
+
+
+
+ Lever de verplichte documenten aan (upload of kies "per post nasturen").
+ Provide the required documents (upload or choose "send by post").
+
+ src/app/herregistratie/domain/herregistratie.machine.ts
+ 70
+
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 153
+
+
+
+ Maak een keuze.
+ Make a choice.
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 100
+
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 112
+
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 128
+
+
+
+ Vul een land in.
+ Enter a country.
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 103
+
+
+
+ Herregistratie aanvragen
+ Apply for re-registration
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 53,55
+
+
+
+ Gewerkte uren (afgelopen 5 jaar)
+ Hours worked (past 5 years)
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 69,71
+
+
+
+ bijv. 4160
+ e.g. 4160
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 81,83
+
+
+
+ Aantal jaren werkzaam
+ Number of years worked
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 86,88
+
+
+
+ bijv. 5
+ e.g. 5
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 99,100
+
+
+
+ Behaalde nascholingspunten
+ Continuing-education points earned
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 105,107
+
+
+
+ bijv. 200
+ e.g. 200
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 117,120
+
+
+
+ Uw aanvraag tot herregistratie is ontvangen
+ Your re-registration application has been received
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 140,143
+
+
+
+ Werkervaring
+ Work experience
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 180
+
+
+
+ Nascholing
+ Continuing education
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 181
+
+
+
+ Documenten
+ Documents
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 182
+
+
+
+ Werkervaring (afgelopen 5 jaar)
+ Work experience (past 5 years)
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 185
+
+
+
+ Nascholing
+ Continuing education
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 186
+
+
+
+ Documenten aanleveren
+ Submit documents
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 187
+
+
+
+ Herregistratie aanvragen
+ Apply for re-registration
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 213
+
+
+
+ Indienen mislukt:
+ Submission failed:
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 221
+
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 314
+
+
+
+ Herregistratie aanvragen
+ Apply for re-registration
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 18,21
+
+
+
+ Uw huidige registratie verloopt binnenkort. Vraag tijdig herregistratie aan.
+ Your current registration expires soon. Apply for re-registration in time.
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 25,26
+
+
+
+ Voor uw huidige registratiestatus is herregistratie niet mogelijk.
+ Re-registration is not possible for your current registration status.
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 32,34
+
+
+
+ Herregistratie-intake
+ Re-registration intake
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 60,62
+
+
+
+ Heeft u de afgelopen 5 jaar buiten Nederland gewerkt?
+ Have you worked outside the Netherlands in the past 5 years?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 76,77
+
+
+
+ In welk land?
+ In which country?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 91,92
+
+
+
+ bijv. België
+ e.g. Belgium
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 102,104
+
+
+
+ Hoeveel uur heeft u daar gewerkt?
+ How many hours did you work there?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 107,108
+
+
+
+ bijv. 800
+ e.g. 800
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 118,121
+
+
+
+ Gewerkte uren in Nederland (afgelopen 5 jaar)
+ Hours worked in the Netherlands (past 5 years)
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 126,128
+
+
+
+ bijv. 4160
+ e.g. 4160
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 137,139
+
+
+
+ U werkte relatief weinig uren. Heeft u aanvullende scholing gevolgd?
+ You worked relatively few hours. Did you complete additional training?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 143,144
+
+
+
+ Behaalde nascholingspunten
+ Continuing-education points earned
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 159,160
+
+
+
+ bijv. 200
+ e.g. 200
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 170,172
+
+
+
+ Controleer uw antwoorden en dien de aanvraag in.
+ Review your answers and submit the application.
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 177,179
+
+
+
+ Buitenland
+ Abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 181,182
+
+
+
+ Wijzigen buitenland
+ Change abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 183,184
+
+
+
+ Buiten NL gewerkt
+ Worked abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 189,190
+
+
+
+ Land
+ Country
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 197
+
+
+
+ Buitenlandse uren
+ Hours worked abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 202,203
+
+
+
+ Werk in Nederland
+ Work in the Netherlands
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 210,211
+
+
+
+ Wijzigen werk in Nederland
+ Change work in the Netherlands
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 212,213
+
+
+
+ Uren NL
+ Hours in NL
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 219
+
+
+
+ Aanvullende scholing
+ Additional training
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 225,226
+
+
+
+ Nascholingspunten
+ Continuing-education points
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 233,234
+
+
+
+ Uw aanvraag tot herregistratie is ontvangen
+ Your re-registration application has been received
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 244,246
+
+
+
+ Opnieuw beginnen
+ Start over
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 248,250
+
+
+
+ Buitenland
+ Abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 298
+
+
+
+ Werk
+ Work
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 299
+
+
+
+ Controle
+ Review
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 300
+
+
+
+ Werken in het buitenland
+ Working abroad
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 303
+
+
+
+ Werkervaring in Nederland
+ Work experience in the Netherlands
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 304
+
+
+
+ Controleren en indienen
+ Review and submit
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 305
+
+
+
+ Aanvraag indienen
+ Submit application
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 309
+
+
+
+ Herregistratie — intake
+ Re-registration — intake
+
+ src/app/herregistratie/ui/intake.page.ts
+ 14,15
+
+
+
+ Een paar vragen bepalen welke gegevens we nodig hebben. Afhankelijk van uw antwoorden verschijnen er extra vragen. Uw antwoorden blijven bewaard als u de pagina herlaadt.
+ A few questions determine which information we need. Depending on your answers, extra questions may appear. Your answers are kept if you reload the page.
+
+ src/app/herregistratie/ui/intake.page.ts
+ 18,20
+
+
+
+ Inschrijving
+ Registration
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 9
+
+
+
+ Herregistratie
+ Re-registration
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 10
+
+
+
+ Herregistratie-intake
+ Re-registration intake
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 11
+
+
+
+ Inschrijving in het BIG-register
+ Registration in the BIG register
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 18
+
+
+
+ Verlenging van uw BIG-registratie
+ Renewal of your BIG registration
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 20
+
+
+
+ Intake-vragenlijst voor uw herregistratie
+ Intake questionnaire for your re-registration
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 22
+
+
+
+ Concept (nog niet ingediend)
+ Draft (not yet submitted)
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 30
+
+
+
+ In behandeling
+ In progress
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 32
+
+
+
+ Goedgekeurd
+ Approved
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 34
+
+
+
+ Afgewezen
+ Rejected
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 36
+
+
+
+ Referentie
+ Reference
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 59
+
+
+
+ ingediend op
+ submitted on
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 62
+
+
+
+ Uw aanvraag wordt handmatig beoordeeld in de backoffice.
+ Your application is reviewed manually in the back office.
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 66
+
+
+
+ Soort aanvraag
+ Application type
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 79
+
+
+
+ Waarvoor
+ For
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 80
+
+
+
+ Status
+ Status
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 81
+
+
+
+ Referentie
+ Reference
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 83
+
+
+
+ Ingediend op
+ Submitted on
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 87
+
+
+
+ Reden van afwijzing
+ Reason for rejection
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 93
+
+
+
+ Vul straat en huisnummer in.
+ Enter a street and house number.
+
+ src/app/registratie/domain/change-request.machine.ts
+ 43
+
+
+
+ Vul een straat en huisnummer in.
+ Enter a street and house number.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 122
+
+
+
+ Vul een woonplaats in.
+ Enter a city.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 126
+
+
+
+ Kies het diploma waarmee u zich wilt registreren, of voer het handmatig in.
+ Choose the diploma you want to register with, or enter it manually.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 139
+
+
+
+ Beantwoord deze vraag.
+ Answer this question.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 148
+
+
+
+ Vraag uw herregistratie aan
+ Apply for your re-registration
+
+ src/app/registratie/domain/tasks.ts
+ 31
+
+
+
+ Verleng uw registratie vóór .
+ Renew your registration before .
+
+ src/app/registratie/domain/tasks.ts
+ 33
+
+
+
+ U kunt nu uw herregistratie aanvragen.
+ You can apply for your re-registration now.
+
+ src/app/registratie/domain/tasks.ts
+ 34
+
+
+
+ Herregistratie aanvragen
+ Apply for re-registration
+
+ src/app/registratie/domain/tasks.ts
+ 36
+
+
+
+ Uw registratie is geschorst
+ Your registration is suspended
+
+ src/app/registratie/domain/tasks.ts
+ 42
+
+
+
+ Bekijk uw gegevens
+ View your details
+
+ src/app/registratie/domain/tasks.ts
+ 45
+
+
+ src/app/registratie/domain/tasks.ts
+ 54
+
+
+
+ Uw registratie is doorgehaald
+ Your registration has been struck off
+
+ src/app/registratie/domain/tasks.ts
+ 51
+
+
+
+ Voer een geldig e-mailadres in, bijv. naam@voorbeeld.nl.
+ Enter a valid email address, e.g. name@example.com.
+
+ src/app/registratie/domain/value-objects/email.ts
+ 17
+
+
+
+ Voer een geldige postcode in, bijv. 1234 AB.
+ Enter a valid postcode, e.g. 1234 AB.
+
+ src/app/registratie/domain/value-objects/postcode.ts
+ 13
+
+
+
+ Vul een geheel aantal in (0 of meer).
+ Enter a whole number (0 or more).
+
+ src/app/registratie/domain/value-objects/uren.ts
+ 11
+
+
+
+ Verwijderen
+ Remove
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 35,38
+
+
+
+ Aanvraag openen
+ Open application
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 40,42
+
+
+
+ Deze aanvraag is nog niet volledig afgerond — u bent gebleven bij stap van . Rond de aanvraag af vóór .
+ This application is not yet complete — you left off at step of . Complete the application before .
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 69
+
+
+
+ Aanvraag
+ Application
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 29,32
+
+
+
+ Aanvraaggegevens
+ Application details
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 39,41
+
+
+
+ De volledige afhandeling van deze aanvraag is nog niet beschikbaar in deze POC.
+ Full processing of this application is not yet available in this POC.
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 46,47
+
+
+
+ Deze aanvraag is niet gevonden.
+ This application was not found.
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 50,53
+
+
+
+ Straat en huisnummer
+ Street and house number
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 42,43
+
+
+
+ Postcode
+ Postcode
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 58,59
+
+
+
+ 1234 AB
+ 1234 AB
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 71
+
+
+
+ Woonplaats
+ City
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 76,77
+
+
+
+ Adres
+ Address
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 98
+
+
+
+ Uw adreswijziging is ontvangen (referentie ). U ontvangt binnen 5 werkdagen bericht.
+ Your address change has been received (reference ). You will hear from us within 5 business days.
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 28,30
+
+
+
+ Nieuwe wijziging doorgeven
+ Report a new change
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 36,38
+
+
+
+ Adreswijziging doorgeven
+ Report address change
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 40,41
+
+
+
+ Het indienen is niet gelukt:
+ Submission failed:
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 56,57
+
+
+
+ Wijziging indienen
+ Submit change
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 81
+
+
+
+ Bezig met indienen…
+ Submitting…
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 82
+
+
+
+ Mijn overzicht
+ My overview
+
+ src/app/registratie/ui/dashboard.page.ts
+ 45,46
+
+
+
+ Welkom in uw persoonlijke omgeving van het BIG-register. Hier ziet u uw registratie en regelt u uw zaken.
+ Welcome to your personal BIG register environment. Here you can see your registration and manage your affairs.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 47,49
+
+
+
+ Mijn aanvragen
+ My applications
+
+ src/app/registratie/ui/dashboard.page.ts
+ 63,65
+
+
+
+ Uw herregistratie-aanvraag is in behandeling.
+ Your re-registration application is in progress.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 85,89
+
+
+
+ Wat moet ik regelen
+ What do I need to arrange
+
+ src/app/registratie/ui/dashboard.page.ts
+ 99,101
+
+
+ src/app/registratie/ui/dashboard.page.ts
+ 104,106
+
+
+
+ U heeft op dit moment niets openstaan.
+ You have nothing outstanding at the moment.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 107,108
+
+
+
+ Mijn registratie
+ My registration
+
+ src/app/registratie/ui/dashboard.page.ts
+ 114,116
+
+
+
+ Persoonsgegevens (BRP)
+ Personal details (BRP)
+
+ src/app/registratie/ui/dashboard.page.ts
+ 122,124
+
+
+
+ Straat
+ Street
+
+ src/app/registratie/ui/dashboard.page.ts
+ 128
+
+
+
+ Postcode
+ Postcode
+
+ src/app/registratie/ui/dashboard.page.ts
+ 133,134
+
+
+
+ Woonplaats
+ City
+
+ src/app/registratie/ui/dashboard.page.ts
+ 139,140
+
+
+
+ Specialismen en aantekeningen
+ Specialisms and notes
+
+ src/app/registratie/ui/dashboard.page.ts
+ 153,155
+
+
+
+ U heeft nog geen specialismen of aantekeningen.
+ You do not have any specialisms or notes yet.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 167,169
+
+
+
+ Wat wilt u doen?
+ What would you like to do?
+
+ src/app/registratie/ui/dashboard.page.ts
+ 175,176
+
+
+
+ Inschrijven
+ Register
+
+ src/app/registratie/ui/dashboard.page.ts
+ 265
+
+
+
+ Schrijf u in in het BIG-register via de registratiewizard.
+ Register in the BIG register via the registration wizard.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 266
+
+
+
+ Start inschrijving
+ Start registration
+
+ src/app/registratie/ui/dashboard.page.ts
+ 267
+
+
+
+ Herregistratie aanvragen
+ Apply for re-registration
+
+ src/app/registratie/ui/dashboard.page.ts
+ 271
+
+
+
+ Verleng uw registratie voor de komende periode.
+ Renew your registration for the coming period.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 272
+
+
+
+ Vraag aan
+ Apply
+
+ src/app/registratie/ui/dashboard.page.ts
+ 273
+
+
+
+ Herregistratie-intake
+ Re-registration intake
+
+ src/app/registratie/ui/dashboard.page.ts
+ 277
+
+
+
+ Vragenlijst met vertakkingen.
+ Branching questionnaire.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 278
+
+
+
+ Start intake
+ Start intake
+
+ src/app/registratie/ui/dashboard.page.ts
+ 279
+
+
+
+ Gegevens wijzigen
+ Change details
+
+ src/app/registratie/ui/dashboard.page.ts
+ 283
+
+
+
+ Bekijk uw gegevens of geef een wijziging door.
+ View your details or report a change.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 284
+
+
+
+ Bekijk gegevens
+ View details
+
+ src/app/registratie/ui/dashboard.page.ts
+ 285
+
+
+
+ Functionele patronen
+ Functional patterns
+
+ src/app/registratie/ui/dashboard.page.ts
+ 289
+
+
+
+ Bekijk de FP/TEA-bouwstenen van deze POC.
+ View the FP/TEA building blocks of this POC.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 290
+
+
+
+ Bekijk patronen
+ View patterns
+
+ src/app/registratie/ui/dashboard.page.ts
+ 291
+
+
+
+ Brief opstellen
+ Compose letter
+
+ src/app/registratie/ui/dashboard.page.ts
+ 295
+
+
+
+ Stel een brief samen uit vaste en vrije onderdelen.
+ Compose a letter from fixed and free parts.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 296
+
+
+
+ Start brief
+ Start letter
+
+ src/app/registratie/ui/dashboard.page.ts
+ 297
+
+
+
+ E-mail
+ Email
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 44
+
+
+
+ Post
+ Post
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 45
+
+
+
+ Inschrijven in het BIG-register
+ Register in the BIG register
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 83,85
+
+
+
+ Uw registratie wordt verwerkt…
+ Your registration is being processed…
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 90,92
+
+
+
+ Vooraf ingevuld op basis van de BRP. Controleer en pas zo nodig aan.
+ Pre-filled based on the BRP. Check and adjust if necessary.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 105,107
+
+
+
+ We vonden geen adres in de BRP. Vul uw adres hieronder handmatig in.
+ We could not find an address in the BRP. Fill in your address manually below.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 110,112
+
+
+
+ We konden de BRP nu niet bereiken. Vul uw adres hieronder handmatig in.
+ We could not reach the BRP right now. Fill in your address manually below.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 115,117
+
+
+
+ Hoe wilt u correspondentie ontvangen?
+ How would you like to receive correspondence?
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 135,137
+
+
+
+ E-mailadres
+ Email address
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 151,153
+
+
+
+ naam@voorbeeld.nl
+ name@example.com
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 164,166
+
+
+
+ Kies het diploma waarmee u zich wilt registreren
+ Choose the diploma you want to register with
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 176,177
+
+
+
+ Een handmatig ingevoerd diploma kan niet automatisch worden geverifieerd. Kies uw beroep en beantwoord de aanvullende vragen; uw aanvraag wordt daarna handmatig beoordeeld.
+ A manually entered diploma cannot be verified automatically. Choose your profession and answer the additional questions; your application will then be reviewed manually.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 192,194
+
+
+
+ Voor welk beroep wilt u zich registreren?
+ Which profession would you like to register for?
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 198,199
+
+
+
+ Beroep (afgeleid uit diploma)
+ Profession (derived from diploma)
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 215,216
+
+
+
+ Controleer uw gegevens en dien de registratie in.
+ Review your details and submit the registration.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 274,276
+
+
+
+ Adres en correspondentie
+ Address and correspondence
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 278,279
+
+
+
+ Wijzigen adresgegevens
+ Change address details
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 280,281
+
+
+
+ Adres
+ Address
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 287
+
+
+
+ Herkomst adres
+ Address source
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 292,293
+
+
+
+ Correspondentie
+ Correspondence
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 298,299
+
+
+
+ E-mailadres
+ Email address
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 305,306
+
+
+
+ Beroep en diploma
+ Profession and diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 313,314
+
+
+
+ Wijzigen beroep en diploma
+ Change profession and diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 315,316
+
+
+
+ Beroep
+ Profession
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 322
+
+
+
+ Herkomst diploma
+ Diploma source
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 327,328
+
+
+
+ Uw registratie is ontvangen
+ Your registration has been received
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 340,342
+
+
+
+ Uw referentienummer is . Bewaar dit nummer voor uw administratie.
+ Your reference number is . Keep this number for your records.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 343,345
+
+
+
+ Nieuwe registratie starten
+ Start new registration
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 347,349
+
+
+
+ Adres
+ Address
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 370
+
+
+
+ Beroep
+ Profession
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 371
+
+
+
+ Controle
+ Review
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 372
+
+
+
+ Adres en correspondentievoorkeur
+ Address and correspondence preference
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 375
+
+
+
+ Beroep op basis van uw diploma
+ Profession based on your diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 376
+
+
+
+ Controleren en indienen
+ Review and submit
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 377
+
+
+
+ Registratie indienen
+ Submit registration
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 422
+
+
+
+ Het indienen is niet gelukt:
+ Submission failed:
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 428
+
+
+
+ Automatisch uit de BRP
+ Automatically from the BRP
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 465
+
+
+
+ Handmatig ingevoerd
+ Entered manually
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 466
+
+
+
+ Per e-mail
+ By email
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 472
+
+
+
+ Per post
+ By post
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 473
+
+
+
+ Geverifieerd via DUO
+ Verified via DUO
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 479
+
+
+
+ Handmatig ingevoerd (wordt beoordeeld)
+ Entered manually (will be reviewed)
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 480
+
+
+
+ Mijn diploma staat er niet bij
+ My diploma isn't listed
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 524
+
+
+
+ Inschrijven in het BIG-register
+ Register in the BIG register
+
+ src/app/registratie/ui/registratie.page.ts
+ 14,16
+
+
+
+ In drie stappen schrijft u zich in: uw adres en correspondentievoorkeur, het diploma waarmee u zich registreert, en een controle. Uw gegevens blijven bewaard als u de pagina herlaadt.
+ In three steps you register: your address and correspondence preference, the diploma you are registering with, and a review. Your details are kept if you reload the page.
+
+ src/app/registratie/ui/registratie.page.ts
+ 18,20
+
+
+
+ Mijn gegevens
+ My details
+
+ src/app/registratie/ui/registration-detail.page.ts
+ 21,24
+
+
+
+ Registratiegegevens
+ Registration details
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 15,17
+
+
+
+ BIG-nummer
+ BIG number
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 19,20
+
+
+
+ Naam
+ Name
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 22
+
+
+
+ Beroep
+ Profession
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 23
+
+
+
+ Status
+ Status
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 25
+
+
+
+ Registratiedatum
+ Registration date
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 30,31
+
+
+
+ Uiterste herregistratie
+ Re-registration deadline
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 42,43
+
+
+
+ Geschorst tot
+ Suspended until
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 50,51
+
+
+
+ Reden
+ Reason
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 53
+
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 62
+
+
+
+ Doorgehaald op
+ Struck off on
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 59,60
+
+
+
+ Type
+ Type
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 14,15
+
+
+
+ Omschrijving
+ Description
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 15,16
+
+
+
+ Datum
+ Date
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 16,18
+
+
+
+ Het indienen is niet gelukt. Probeer het later opnieuw.
+ Submission failed. Please try again later.
+
+ src/app/shared/application/submit.ts
+ 23
+
+
+
+ Mijn overzicht
+ My overview
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 12
+
+
+
+ Mijn gegevens
+ My details
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 13
+
+
+
+ Inschrijven
+ Register
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 14
+
+
+
+ Herregistratie
+ Re-registration
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 16
+
+
+
+ Herregistratie-intake
+ Re-registration intake
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 19
+
+
+
+ Functionele patronen
+ Functional patterns
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 20
+
+
+
+ Kruimelpad
+ Breadcrumb
+
+ src/app/shared/layout/breadcrumb/breadcrumb.component.ts
+ 27,28
+
+
+
+ U bevindt zich hier:
+ You are here:
+
+ src/app/shared/layout/breadcrumb/breadcrumb.component.ts
+ 28,29
+
+
+
+ Terug naar overzicht
+ Back to overview
+
+ src/app/shared/layout/page-shell/page-shell.component.ts
+ 49
+
+
+
+ Naar de inhoud
+ Skip to content
+
+ src/app/shared/layout/shell/shell.component.ts
+ 48,49
+
+
+
+ De Rijksoverheid. Voor Nederland.
+ The Government of the Netherlands.
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 85,86
+
+
+
+ CIBG — Ministerie van Volksgezondheid, Welzijn en Sport
+ CIBG — Ministry of Health, Welfare and Sport
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 87,89
+
+
+
+ Over deze site
+ About this site
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 90,91
+
+
+
+ Over deze site
+ About this site
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 91,92
+
+
+
+ Privacy
+ Privacy
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 99,101
+
+
+
+ Cookies
+ Cookies
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 108,110
+
+
+
+ Toegankelijkheid
+ Accessibility
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 117,120
+
+
+
+ Demo / POC — geen echte gegevens.
+ Demo / POC — no real data.
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 122,124
+
+
+
+ Overzicht
+ Overview
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 15
+
+
+
+ Mijn gegevens
+ My details
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 16
+
+
+
+ Herregistratie
+ Re-registration
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 17
+
+
+
+ Inschrijven
+ Register
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 18
+
+
+
+ BIG-register
+ BIG register
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 53,54
+
+
+
+ Ministerie van Volksgezondheid, Welzijn en Sport
+ Ministry of Health, Welfare and Sport
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 55,57
+
+
+
+ Uitloggen
+ Log out
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 77,78
+
+
+
+ Hoofdnavigatie
+ Main navigation
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 85,86
+
+
+
+ Naar stap -
+ To step -
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 11
+
+
+
+ Er ging iets mis met uw invoer
+ Something went wrong with your input
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 75,76
+
+
+
+ Terug naar vorige stap
+ Back to previous step
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 106,108
+
+
+
+ Annuleren
+ Cancel
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 116,118
+
+
+
+ Opnieuw proberen
+ Try again
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 131,133
+
+
+
+ Aanvraag wordt verwerkt…
+ Application is being processed…
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 149
+
+
+
+ Informatie
+ Information
+
+ src/app/shared/ui/alert/alert.component.ts
+ 7
+
+
+
+ Gelukt
+ Success
+
+ src/app/shared/ui/alert/alert.component.ts
+ 8
+
+
+
+ Waarschuwing
+ Warning
+
+ src/app/shared/ui/alert/alert.component.ts
+ 9
+
+
+
+ Foutmelding
+ Error
+
+ src/app/shared/ui/alert/alert.component.ts
+ 10
+
+
+
+ Er ging iets mis bij het laden van de gegevens.
+ Something went wrong while loading the data.
+
+ src/app/shared/ui/async/async.component.ts
+ 105
+
+
+
+ Opnieuw proberen
+ Try again
+
+ src/app/shared/ui/async/async.component.ts
+ 106
+
+
+
+ Geen gegevens gevonden.
+ No data found.
+
+ src/app/shared/ui/async/async.component.ts
+ 107
+
+
+
+ Succes:
+ Success:
+
+ src/app/shared/ui/confirmation/confirmation.component.ts
+ 31
+
+
+
+ wordt automatisch ingevuld
+ filled in automatically
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 66
+
+
+
+ handmatig in te vullen
+ to be filled in manually
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 67
+
+
+
+ let op
+ attention
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 68
+
+
+
+ fout
+ error
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 69
+
+
+
+ Veld ,
+ Field ,
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 83
+
+
+
+ Ja
+ Yes
+
+ src/app/shared/ui/radio-group/radio-group.component.ts
+ 12
+
+
+
+ Nee
+ No
+
+ src/app/shared/ui/radio-group/radio-group.component.ts
+ 13
+
+
+
+ Wijzigen
+ Change
+
+ src/app/shared/ui/review-section/review-section.component.ts
+ 27
+
+
+
+ Tekst
+ Text
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 180
+
+
+
+ Opmaak
+ Formatting
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 181
+
+
+
+ Vet
+ Bold
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 182
+
+
+
+ Cursief
+ Italic
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 183
+
+
+
+ Onderstreept
+ Underline
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 184
+
+
+
+ Veld invoegen:
+ Insert field:
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 185
+
+
+
+ Kies…
+ Choose…
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 186
+
+
+
+ Opsomming
+ Bulleted list
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 187
+
+
+
+ Genummerde lijst
+ Numbered list
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 188
+
+
+
+ Bezig met laden
+ Loading
+
+ src/app/shared/ui/spinner/spinner.component.ts
+ 36,40
+
+
+
+ Stap
+ Step
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 21,22
+
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 30,31
+
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 35,36
+
+
+
+ Voltooid
+ Completed
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 22,24
+
+
+
+ Huidige stap
+ Current step
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 31,32
+
+
+
+ Stap van :
+ Step of :
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 46,48
+
+
+
+ Stap
+ Step
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 77
+
+
+
+ Huidige stap, stap
+ Current step, step
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 80
+
+
+
+ Terug naar stap
+ Back to step
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 83
+
+
+
+ Digitaal uploaden
+ Upload digitally
+
+ src/app/shared/ui/upload/delivery-channel-toggle/delivery-channel-toggle.component.ts
+ 50
+
+
+
+ Per post nasturen
+ Send by post
+
+ src/app/shared/ui/upload/delivery-channel-toggle/delivery-channel-toggle.component.ts
+ 51
+
+
+
+ (verplicht)
+ (required)
+
+ src/app/shared/ui/upload/document-category/document-category.component.ts
+ 43,46
+
+
+
+ Bestand kiezen voor
+ Choose file for
+
+ src/app/shared/ui/upload/document-category/document-category.component.ts
+ 103
+
+
+
+ In wachtrij
+ Queued
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 7
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 42
+
+
+
+ Bezig met uploaden
+ Uploading
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 8
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 48
+
+
+
+ Geüpload
+ Uploaded
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 9
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 54
+
+
+
+ Mislukt
+ Failed
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 10
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 60
+
+
+
+ Bezig met verwijderen
+ Deleting
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 11
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 66
+
+
+
+ Uploads gaan alleen door zolang deze pagina open blijft.
+ Uploads only continue while this page stays open.
+
+ src/app/shared/ui/upload/document-upload/document-upload.component.ts
+ 56
+
+
+
+ Bestand kiezen
+ Choose file
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 97
+
+
+
+ Bestanden toevoegen
+ Add files
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 108
+
+
+
+ Bestand toevoegen
+ Add file
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 109
+
+
+
+ Toegestaan: · max MB
+ Allowed: · max MB
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 119
+
+
+
+ Toegestaan:
+ Allowed:
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 120
+
+
+
+ Max MB
+ Max MB
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 121
+
+
+
+ Opnieuw
+ Retry
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 53,55
+
+
+
+ verwijderen
+ Remove
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 90
+
+
+
+ opnieuw uploaden
+ Upload again
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 93
+
+
+
+ Uploadvoortgang
+ Upload progress
+
+ src/app/shared/ui/upload/upload-progress-bar/upload-progress-bar.component.ts
+ 34
+
+
+
+ Uploaden is niet gelukt. Probeer het opnieuw.
+ Upload failed. Please try again.
+
+ src/app/shared/upload/upload.adapter.ts
+ 146
+
+
+
+ Dit bestandstype is niet toegestaan voor deze categorie.
+ This file type is not allowed for this category.
+
+ src/app/shared/upload/upload.machine.ts
+ 93
+
+
+
+ Dit bestand is te groot.
+ This file is too large.
+
+ src/app/shared/upload/upload.machine.ts
+ 94
+
+
+
+ U kunt voor deze categorie maar één bestand uploaden.
+ You can only upload one file for this category.
+
+ src/app/shared/upload/upload.machine.ts
+ 95
+
+
+
+
+
diff --git a/src/locale/messages.xlf b/src/locale/messages.xlf
new file mode 100644
index 0000000..7d24c6a
--- /dev/null
+++ b/src/locale/messages.xlf
@@ -0,0 +1,2487 @@
+
+
+
+
+
+ Voer een geldig BSN van 9 cijfers in.
+
+ src/app/auth/infrastructure/digid.adapter.ts
+ 13
+
+
+
+ * verplichte velden
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 15,18
+
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 44,46
+
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 90,92
+
+
+
+ BSN
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 22,23
+
+
+
+ 9 cijfers (demo: vul iets in)
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 25,28
+
+
+
+ Wachtwoord
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 36,37
+
+
+
+ Inloggen met DigiD
+
+ src/app/auth/ui/login-form/login-form.component.ts
+ 41,43
+
+
+
+ Inloggen
+
+ src/app/auth/ui/login.page.ts
+ 14,16
+
+
+
+ Log in op uw persoonlijke BIG-register omgeving.
+
+ src/app/auth/ui/login.page.ts
+ 17,19
+
+
+
+ Deze tekst bevat losse accolades ({{ of }}). Voeg een veld toe via het menu in plaats van het te typen.
+
+ src/app/brief/domain/placeholders.ts
+ 67
+
+
+
+ Onbekend veld “”. Dit veld hoort niet bij dit sjabloon.
+
+ src/app/brief/domain/placeholders.ts
+ 69
+
+
+
+ Veld “” kan niet worden ingevuld voor dit beroep.
+
+ src/app/brief/domain/placeholders.ts
+ 71
+
+
+
+ Veld “” is verouderd en wordt niet meer aangeboden.
+
+ src/app/brief/domain/placeholders.ts
+ 73
+
+
+
+ Veld “” wordt handmatig ingevuld en is nog leeg.
+
+ src/app/brief/domain/placeholders.ts
+ 75
+
+
+
+ De brief kon niet worden geladen.
+
+ src/app/brief/infrastructure/brief.adapter.ts
+ 42
+
+
+
+ De actie is niet gelukt. Probeer het later opnieuw.
+
+ src/app/brief/infrastructure/brief.adapter.ts
+ 43
+
+
+
+ Brief opstellen
+
+ src/app/brief/ui/brief.page.ts
+ 76
+
+
+
+ Stel de brief aan de zorgverlener samen uit standaardteksten en vrije tekst.
+
+ src/app/brief/ui/brief.page.ts
+ 77
+
+
+
+ De brief kon niet worden geladen.
+
+ src/app/brief/ui/brief.page.ts
+ 78
+
+
+
+ Opnieuw proberen
+
+ src/app/brief/ui/brief.page.ts
+ 79
+
+
+
+ Opnieuw beginnen (demo)
+
+ src/app/brief/ui/brief.page.ts
+ 80
+
+
+
+ Concept opslaan…
+
+ src/app/brief/ui/brief.page.ts
+ 82
+
+
+
+ Concept opgeslagen
+
+ src/app/brief/ui/brief.page.ts
+ 83
+
+
+
+ Opslaan mislukt
+
+ src/app/brief/ui/brief.page.ts
+ 84
+
+
+
+ Op te lossen voor indienen/versturen:
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 67
+
+
+
+ Aandachtspunten:
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 68
+
+
+
+ Geen problemen gevonden in de velden.
+
+ src/app/brief/ui/diagnostics-panel/diagnostics-panel.component.ts
+ 69
+
+
+
+ Omhoog
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 44,46
+
+
+
+ Omlaag
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 47,49
+
+
+
+ Verwijderen
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 50,52
+
+
+
+ Vrije tekst
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 74
+
+
+
+ Aangepaste standaardtekst
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 76
+
+
+
+ Standaardtekst
+
+ src/app/brief/ui/letter-block/letter-block.component.ts
+ 77
+
+
+
+ Brief aan de zorgverlener
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 158
+
+
+
+ Indienen ter beoordeling
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 159
+
+
+
+ Opnieuw indienen
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 160
+
+
+
+ Vul eerst alle verplichte secties en los fouten op.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 162
+
+
+
+ Goedkeuren
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 164
+
+
+
+ Versturen
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 165
+
+
+
+ De brief wacht op beoordeling door een collega.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 167
+
+
+
+ De brief is verzonden.
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 169
+
+
+
+ Concept
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 188
+
+
+
+ Ter beoordeling
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 190
+
+
+
+ Goedgekeurd
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 192
+
+
+
+ Afgewezen
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 194
+
+
+
+ Verzonden
+
+ src/app/brief/ui/letter-composer/letter-composer.component.ts
+ 196
+
+
+
+ Voorbeeld met testwaarden
+
+ src/app/brief/ui/letter-preview/letter-preview.component.ts
+ 152
+
+
+
+ Testwaarden verbergen
+
+ src/app/brief/ui/letter-preview/letter-preview.component.ts
+ 153
+
+
+
+ verplicht
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 88
+
+
+
+ Nog geen tekst in deze sectie.
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 89
+
+
+
+ Standaardtekst toevoegen
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 90
+
+
+
+ Vrije tekst toevoegen
+
+ src/app/brief/ui/letter-section/letter-section.component.ts
+ 91
+
+
+
+ Voeg toe
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 55
+
+
+
+ algemeen
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 56
+
+
+
+ beroepsspecifiek
+
+ src/app/brief/ui/passage-picker/passage-picker.component.ts
+ 57
+
+
+
+ Afgewezen:
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 47
+
+
+
+ Reden van afwijzing
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 48
+
+
+
+ Afwijzen
+
+ src/app/brief/ui/rejection-comments/rejection-comments.component.ts
+ 49
+
+
+
+ Lever de verplichte documenten aan (upload of kies "per post nasturen").
+
+ src/app/herregistratie/domain/herregistratie.machine.ts
+ 70
+
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 153
+
+
+
+ Maak een keuze.
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 100
+
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 112
+
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 128
+
+
+
+ Vul een land in.
+
+ src/app/herregistratie/domain/intake.machine.ts
+ 103
+
+
+
+ Herregistratie aanvragen
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 53,55
+
+
+
+ Gewerkte uren (afgelopen 5 jaar)
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 69,71
+
+
+
+ bijv. 4160
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 81,83
+
+
+
+ Aantal jaren werkzaam
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 86,88
+
+
+
+ bijv. 5
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 99,100
+
+
+
+ Behaalde nascholingspunten
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 105,107
+
+
+
+ bijv. 200
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 117,120
+
+
+
+ Uw aanvraag tot herregistratie is ontvangen
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 140,143
+
+
+
+ Werkervaring
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 180
+
+
+
+ Nascholing
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 181
+
+
+
+ Documenten
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 182
+
+
+
+ Werkervaring (afgelopen 5 jaar)
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 185
+
+
+
+ Nascholing
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 186
+
+
+
+ Documenten aanleveren
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 187
+
+
+
+ Herregistratie aanvragen
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 213
+
+
+
+ Indienen mislukt:
+
+ src/app/herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component.ts
+ 221
+
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 314
+
+
+
+ Herregistratie aanvragen
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 18,21
+
+
+
+ Uw huidige registratie verloopt binnenkort. Vraag tijdig herregistratie aan.
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 25,26
+
+
+
+ Voor uw huidige registratiestatus is herregistratie niet mogelijk.
+
+ src/app/herregistratie/ui/herregistratie.page.ts
+ 32,34
+
+
+
+ Herregistratie-intake
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 60,62
+
+
+
+ Heeft u de afgelopen 5 jaar buiten Nederland gewerkt?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 76,77
+
+
+
+ In welk land?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 91,92
+
+
+
+ bijv. België
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 102,104
+
+
+
+ Hoeveel uur heeft u daar gewerkt?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 107,108
+
+
+
+ bijv. 800
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 118,121
+
+
+
+ Gewerkte uren in Nederland (afgelopen 5 jaar)
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 126,128
+
+
+
+ bijv. 4160
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 137,139
+
+
+
+ U werkte relatief weinig uren. Heeft u aanvullende scholing gevolgd?
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 143,144
+
+
+
+ Behaalde nascholingspunten
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 159,160
+
+
+
+ bijv. 200
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 170,172
+
+
+
+ Controleer uw antwoorden en dien de aanvraag in.
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 177,179
+
+
+
+ Buitenland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 181,182
+
+
+
+ Wijzigen buitenland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 183,184
+
+
+
+ Buiten NL gewerkt
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 189,190
+
+
+
+ Land
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 197
+
+
+
+ Buitenlandse uren
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 202,203
+
+
+
+ Werk in Nederland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 210,211
+
+
+
+ Wijzigen werk in Nederland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 212,213
+
+
+
+ Uren NL
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 219
+
+
+
+ Aanvullende scholing
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 225,226
+
+
+
+ Nascholingspunten
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 233,234
+
+
+
+ Uw aanvraag tot herregistratie is ontvangen
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 244,246
+
+
+
+ Opnieuw beginnen
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 248,250
+
+
+
+ Buitenland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 298
+
+
+
+ Werk
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 299
+
+
+
+ Controle
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 300
+
+
+
+ Werken in het buitenland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 303
+
+
+
+ Werkervaring in Nederland
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 304
+
+
+
+ Controleren en indienen
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 305
+
+
+
+ Aanvraag indienen
+
+ src/app/herregistratie/ui/intake-wizard/intake-wizard.component.ts
+ 309
+
+
+
+ Herregistratie — intake
+
+ src/app/herregistratie/ui/intake.page.ts
+ 14,15
+
+
+
+ Een paar vragen bepalen welke gegevens we nodig hebben. Afhankelijk van uw antwoorden verschijnen er extra vragen. Uw antwoorden blijven bewaard als u de pagina herlaadt.
+
+ src/app/herregistratie/ui/intake.page.ts
+ 18,20
+
+
+
+ Inschrijving
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 9
+
+
+
+ Herregistratie
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 10
+
+
+
+ Herregistratie-intake
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 11
+
+
+
+ Inschrijving in het BIG-register
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 18
+
+
+
+ Verlenging van uw BIG-registratie
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 20
+
+
+
+ Intake-vragenlijst voor uw herregistratie
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 22
+
+
+
+ Concept (nog niet ingediend)
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 30
+
+
+
+ In behandeling
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 32
+
+
+
+ Goedgekeurd
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 34
+
+
+
+ Afgewezen
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 36
+
+
+
+ Referentie
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 59
+
+
+
+ ingediend op
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 62
+
+
+
+ Uw aanvraag wordt handmatig beoordeeld in de backoffice.
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 66
+
+
+
+ Soort aanvraag
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 79
+
+
+
+ Waarvoor
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 80
+
+
+
+ Status
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 81
+
+
+
+ Referentie
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 83
+
+
+
+ Ingediend op
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 87
+
+
+
+ Reden van afwijzing
+
+ src/app/registratie/domain/aanvraag-view.ts
+ 93
+
+
+
+ Vul straat en huisnummer in.
+
+ src/app/registratie/domain/change-request.machine.ts
+ 43
+
+
+
+ Vul een straat en huisnummer in.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 122
+
+
+
+ Vul een woonplaats in.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 126
+
+
+
+ Kies het diploma waarmee u zich wilt registreren, of voer het handmatig in.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 139
+
+
+
+ Beantwoord deze vraag.
+
+ src/app/registratie/domain/registratie-wizard.machine.ts
+ 148
+
+
+
+ Vraag uw herregistratie aan
+
+ src/app/registratie/domain/tasks.ts
+ 31
+
+
+
+ Verleng uw registratie vóór .
+
+ src/app/registratie/domain/tasks.ts
+ 33
+
+
+
+ U kunt nu uw herregistratie aanvragen.
+
+ src/app/registratie/domain/tasks.ts
+ 34
+
+
+
+ Herregistratie aanvragen
+
+ src/app/registratie/domain/tasks.ts
+ 36
+
+
+
+ Uw registratie is geschorst
+
+ src/app/registratie/domain/tasks.ts
+ 42
+
+
+
+ Bekijk uw gegevens
+
+ src/app/registratie/domain/tasks.ts
+ 45
+
+
+ src/app/registratie/domain/tasks.ts
+ 54
+
+
+
+ Uw registratie is doorgehaald
+
+ src/app/registratie/domain/tasks.ts
+ 51
+
+
+
+ Voer een geldig e-mailadres in, bijv. naam@voorbeeld.nl.
+
+ src/app/registratie/domain/value-objects/email.ts
+ 17
+
+
+
+ Voer een geldige postcode in, bijv. 1234 AB.
+
+ src/app/registratie/domain/value-objects/postcode.ts
+ 13
+
+
+
+ Vul een geheel aantal in (0 of meer).
+
+ src/app/registratie/domain/value-objects/uren.ts
+ 11
+
+
+
+ Verwijderen
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 35,38
+
+
+
+ Aanvraag openen
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 40,42
+
+
+
+ Deze aanvraag is nog niet volledig afgerond — u bent gebleven bij stap van . Rond de aanvraag af vóór .
+
+ src/app/registratie/ui/aanvraag-block/aanvraag-block.component.ts
+ 69
+
+
+
+ Aanvraag
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 29,32
+
+
+
+ Aanvraaggegevens
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 39,41
+
+
+
+ De volledige afhandeling van deze aanvraag is nog niet beschikbaar in deze POC.
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 46,47
+
+
+
+ Deze aanvraag is niet gevonden.
+
+ src/app/registratie/ui/aanvraag-detail.page.ts
+ 50,53
+
+
+
+ Straat en huisnummer
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 42,43
+
+
+
+ Postcode
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 58,59
+
+
+
+ 1234 AB
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 71
+
+
+
+ Woonplaats
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 76,77
+
+
+
+ Adres
+
+ src/app/registratie/ui/address-fields/address-fields.component.ts
+ 98
+
+
+
+ Uw adreswijziging is ontvangen (referentie ). U ontvangt binnen 5 werkdagen bericht.
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 28,30
+
+
+
+ Nieuwe wijziging doorgeven
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 36,38
+
+
+
+ Adreswijziging doorgeven
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 40,41
+
+
+
+ Het indienen is niet gelukt:
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 56,57
+
+
+
+ Wijziging indienen
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 81
+
+
+
+ Bezig met indienen…
+
+ src/app/registratie/ui/change-request-form/change-request-form.component.ts
+ 82
+
+
+
+ Mijn overzicht
+
+ src/app/registratie/ui/dashboard.page.ts
+ 45,46
+
+
+
+ Welkom in uw persoonlijke omgeving van het BIG-register. Hier ziet u uw registratie en regelt u uw zaken.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 47,49
+
+
+
+ Mijn aanvragen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 63,65
+
+
+
+ Uw herregistratie-aanvraag is in behandeling.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 85,89
+
+
+
+ Wat moet ik regelen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 99,101
+
+
+ src/app/registratie/ui/dashboard.page.ts
+ 104,106
+
+
+
+ U heeft op dit moment niets openstaan.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 107,108
+
+
+
+ Mijn registratie
+
+ src/app/registratie/ui/dashboard.page.ts
+ 114,116
+
+
+
+ Persoonsgegevens (BRP)
+
+ src/app/registratie/ui/dashboard.page.ts
+ 122,124
+
+
+
+ Straat
+
+ src/app/registratie/ui/dashboard.page.ts
+ 128
+
+
+
+ Postcode
+
+ src/app/registratie/ui/dashboard.page.ts
+ 133,134
+
+
+
+ Woonplaats
+
+ src/app/registratie/ui/dashboard.page.ts
+ 139,140
+
+
+
+ Specialismen en aantekeningen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 153,155
+
+
+
+ U heeft nog geen specialismen of aantekeningen.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 167,169
+
+
+
+ Wat wilt u doen?
+
+ src/app/registratie/ui/dashboard.page.ts
+ 175,176
+
+
+
+ Inschrijven
+
+ src/app/registratie/ui/dashboard.page.ts
+ 265
+
+
+
+ Schrijf u in in het BIG-register via de registratiewizard.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 266
+
+
+
+ Start inschrijving
+
+ src/app/registratie/ui/dashboard.page.ts
+ 267
+
+
+
+ Herregistratie aanvragen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 271
+
+
+
+ Verleng uw registratie voor de komende periode.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 272
+
+
+
+ Vraag aan
+
+ src/app/registratie/ui/dashboard.page.ts
+ 273
+
+
+
+ Herregistratie-intake
+
+ src/app/registratie/ui/dashboard.page.ts
+ 277
+
+
+
+ Vragenlijst met vertakkingen.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 278
+
+
+
+ Start intake
+
+ src/app/registratie/ui/dashboard.page.ts
+ 279
+
+
+
+ Gegevens wijzigen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 283
+
+
+
+ Bekijk uw gegevens of geef een wijziging door.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 284
+
+
+
+ Bekijk gegevens
+
+ src/app/registratie/ui/dashboard.page.ts
+ 285
+
+
+
+ Functionele patronen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 289
+
+
+
+ Bekijk de FP/TEA-bouwstenen van deze POC.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 290
+
+
+
+ Bekijk patronen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 291
+
+
+
+ Brief opstellen
+
+ src/app/registratie/ui/dashboard.page.ts
+ 295
+
+
+
+ Stel een brief samen uit vaste en vrije onderdelen.
+
+ src/app/registratie/ui/dashboard.page.ts
+ 296
+
+
+
+ Start brief
+
+ src/app/registratie/ui/dashboard.page.ts
+ 297
+
+
+
+ E-mail
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 44
+
+
+
+ Post
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 45
+
+
+
+ Inschrijven in het BIG-register
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 83,85
+
+
+
+ Uw registratie wordt verwerkt…
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 90,92
+
+
+
+ Vooraf ingevuld op basis van de BRP. Controleer en pas zo nodig aan.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 105,107
+
+
+
+ We vonden geen adres in de BRP. Vul uw adres hieronder handmatig in.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 110,112
+
+
+
+ We konden de BRP nu niet bereiken. Vul uw adres hieronder handmatig in.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 115,117
+
+
+
+ Hoe wilt u correspondentie ontvangen?
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 135,137
+
+
+
+ E-mailadres
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 151,153
+
+
+
+ naam@voorbeeld.nl
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 164,166
+
+
+
+ Kies het diploma waarmee u zich wilt registreren
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 176,177
+
+
+
+ Een handmatig ingevoerd diploma kan niet automatisch worden geverifieerd. Kies uw beroep en beantwoord de aanvullende vragen; uw aanvraag wordt daarna handmatig beoordeeld.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 192,194
+
+
+
+ Voor welk beroep wilt u zich registreren?
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 198,199
+
+
+
+ Beroep (afgeleid uit diploma)
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 215,216
+
+
+
+ Controleer uw gegevens en dien de registratie in.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 274,276
+
+
+
+ Adres en correspondentie
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 278,279
+
+
+
+ Wijzigen adresgegevens
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 280,281
+
+
+
+ Adres
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 287
+
+
+
+ Herkomst adres
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 292,293
+
+
+
+ Correspondentie
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 298,299
+
+
+
+ E-mailadres
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 305,306
+
+
+
+ Beroep en diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 313,314
+
+
+
+ Wijzigen beroep en diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 315,316
+
+
+
+ Beroep
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 322
+
+
+
+ Herkomst diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 327,328
+
+
+
+ Uw registratie is ontvangen
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 340,342
+
+
+
+ Uw referentienummer is . Bewaar dit nummer voor uw administratie.
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 343,345
+
+
+
+ Nieuwe registratie starten
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 347,349
+
+
+
+ Adres
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 370
+
+
+
+ Beroep
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 371
+
+
+
+ Controle
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 372
+
+
+
+ Adres en correspondentievoorkeur
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 375
+
+
+
+ Beroep op basis van uw diploma
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 376
+
+
+
+ Controleren en indienen
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 377
+
+
+
+ Registratie indienen
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 422
+
+
+
+ Het indienen is niet gelukt:
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 428
+
+
+
+ Automatisch uit de BRP
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 465
+
+
+
+ Handmatig ingevoerd
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 466
+
+
+
+ Per e-mail
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 472
+
+
+
+ Per post
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 473
+
+
+
+ Geverifieerd via DUO
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 479
+
+
+
+ Handmatig ingevoerd (wordt beoordeeld)
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 480
+
+
+
+ Mijn diploma staat er niet bij
+
+ src/app/registratie/ui/registratie-wizard/registratie-wizard.component.ts
+ 524
+
+
+
+ Inschrijven in het BIG-register
+
+ src/app/registratie/ui/registratie.page.ts
+ 14,16
+
+
+
+ In drie stappen schrijft u zich in: uw adres en correspondentievoorkeur, het diploma waarmee u zich registreert, en een controle. Uw gegevens blijven bewaard als u de pagina herlaadt.
+
+ src/app/registratie/ui/registratie.page.ts
+ 18,20
+
+
+
+ Mijn gegevens
+
+ src/app/registratie/ui/registration-detail.page.ts
+ 21,24
+
+
+
+ Registratiegegevens
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 15,17
+
+
+
+ BIG-nummer
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 19,20
+
+
+
+ Naam
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 22
+
+
+
+ Beroep
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 23
+
+
+
+ Status
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 25
+
+
+
+ Registratiedatum
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 30,31
+
+
+
+ Uiterste herregistratie
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 42,43
+
+
+
+ Geschorst tot
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 50,51
+
+
+
+ Reden
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 53
+
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 62
+
+
+
+ Doorgehaald op
+
+ src/app/registratie/ui/registration-summary/registration-summary.component.ts
+ 59,60
+
+
+
+ Type
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 14,15
+
+
+
+ Omschrijving
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 15,16
+
+
+
+ Datum
+
+ src/app/registratie/ui/registration-table/registration-table.component.ts
+ 16,18
+
+
+
+ Het indienen is niet gelukt. Probeer het later opnieuw.
+
+ src/app/shared/application/submit.ts
+ 23
+
+
+
+ Mijn overzicht
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 12
+
+
+
+ Mijn gegevens
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 13
+
+
+
+ Inschrijven
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 14
+
+
+
+ Herregistratie
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 16
+
+
+
+ Herregistratie-intake
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 19
+
+
+
+ Functionele patronen
+
+ src/app/shared/layout/breadcrumb/breadcrumb-trail.ts
+ 20
+
+
+
+ Kruimelpad
+
+ src/app/shared/layout/breadcrumb/breadcrumb.component.ts
+ 27,28
+
+
+
+ U bevindt zich hier:
+
+ src/app/shared/layout/breadcrumb/breadcrumb.component.ts
+ 28,29
+
+
+
+ Terug naar overzicht
+
+ src/app/shared/layout/page-shell/page-shell.component.ts
+ 49
+
+
+
+ Naar de inhoud
+
+ src/app/shared/layout/shell/shell.component.ts
+ 48,49
+
+
+
+ De Rijksoverheid. Voor Nederland.
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 85,86
+
+
+
+ CIBG — Ministerie van Volksgezondheid, Welzijn en Sport
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 87,89
+
+
+
+ Over deze site
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 90,91
+
+
+
+ Over deze site
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 91,92
+
+
+
+ Privacy
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 99,101
+
+
+
+ Cookies
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 108,110
+
+
+
+ Toegankelijkheid
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 117,120
+
+
+
+ Demo / POC — geen echte gegevens.
+
+ src/app/shared/layout/site-footer/site-footer.component.ts
+ 122,124
+
+
+
+ Overzicht
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 15
+
+
+
+ Mijn gegevens
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 16
+
+
+
+ Herregistratie
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 17
+
+
+
+ Inschrijven
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 18
+
+
+
+ BIG-register
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 53,54
+
+
+
+ Ministerie van Volksgezondheid, Welzijn en Sport
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 55,57
+
+
+
+ Uitloggen
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 77,78
+
+
+
+ Hoofdnavigatie
+
+ src/app/shared/layout/site-header/site-header.component.ts
+ 85,86
+
+
+
+ Naar stap -
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 11
+
+
+
+ Er ging iets mis met uw invoer
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 75,76
+
+
+
+ Terug naar vorige stap
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 106,108
+
+
+
+ Annuleren
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 116,118
+
+
+
+ Opnieuw proberen
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 131,133
+
+
+
+ Aanvraag wordt verwerkt…
+
+ src/app/shared/layout/wizard-shell/wizard-shell.component.ts
+ 149
+
+
+
+ Informatie
+
+ src/app/shared/ui/alert/alert.component.ts
+ 7
+
+
+
+ Gelukt
+
+ src/app/shared/ui/alert/alert.component.ts
+ 8
+
+
+
+ Waarschuwing
+
+ src/app/shared/ui/alert/alert.component.ts
+ 9
+
+
+
+ Foutmelding
+
+ src/app/shared/ui/alert/alert.component.ts
+ 10
+
+
+
+ Er ging iets mis bij het laden van de gegevens.
+
+ src/app/shared/ui/async/async.component.ts
+ 105
+
+
+
+ Opnieuw proberen
+
+ src/app/shared/ui/async/async.component.ts
+ 106
+
+
+
+ Geen gegevens gevonden.
+
+ src/app/shared/ui/async/async.component.ts
+ 107
+
+
+
+ Succes:
+
+ src/app/shared/ui/confirmation/confirmation.component.ts
+ 31
+
+
+
+ wordt automatisch ingevuld
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 66
+
+
+
+ handmatig in te vullen
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 67
+
+
+
+ let op
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 68
+
+
+
+ fout
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 69
+
+
+
+ Veld ,
+
+ src/app/shared/ui/placeholder-chip/placeholder-chip.component.ts
+ 83
+
+
+
+ Ja
+
+ src/app/shared/ui/radio-group/radio-group.component.ts
+ 12
+
+
+
+ Nee
+
+ src/app/shared/ui/radio-group/radio-group.component.ts
+ 13
+
+
+
+ Wijzigen
+
+ src/app/shared/ui/review-section/review-section.component.ts
+ 27
+
+
+
+ Tekst
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 180
+
+
+
+ Opmaak
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 181
+
+
+
+ Vet
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 182
+
+
+
+ Cursief
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 183
+
+
+
+ Onderstreept
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 184
+
+
+
+ Veld invoegen:
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 185
+
+
+
+ Kies…
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 186
+
+
+
+ Opsomming
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 187
+
+
+
+ Genummerde lijst
+
+ src/app/shared/ui/rich-text-editor/rich-text-editor.component.ts
+ 188
+
+
+
+ Bezig met laden
+
+ src/app/shared/ui/spinner/spinner.component.ts
+ 36,40
+
+
+
+ Stap
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 21,22
+
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 30,31
+
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 35,36
+
+
+
+ Voltooid
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 22,24
+
+
+
+ Huidige stap
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 31,32
+
+
+
+ Stap van :
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 46,48
+
+
+
+ Stap
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 77
+
+
+
+ Huidige stap, stap
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 80
+
+
+
+ Terug naar stap
+
+ src/app/shared/ui/stepper/stepper.component.ts
+ 83
+
+
+
+ Digitaal uploaden
+
+ src/app/shared/ui/upload/delivery-channel-toggle/delivery-channel-toggle.component.ts
+ 50
+
+
+
+ Per post nasturen
+
+ src/app/shared/ui/upload/delivery-channel-toggle/delivery-channel-toggle.component.ts
+ 51
+
+
+
+ (verplicht)
+
+ src/app/shared/ui/upload/document-category/document-category.component.ts
+ 43,46
+
+
+
+ Bestand kiezen voor
+
+ src/app/shared/ui/upload/document-category/document-category.component.ts
+ 103
+
+
+
+ In wachtrij
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 7
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 42
+
+
+
+ Bezig met uploaden
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 8
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 48
+
+
+
+ Geüpload
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 9
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 54
+
+
+
+ Mislukt
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 10
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 60
+
+
+
+ Bezig met verwijderen
+
+ src/app/shared/ui/upload/document-chip/document-chip.component.ts
+ 11
+
+
+ src/app/shared/ui/upload/upload-status-icon/upload-status-icon.component.ts
+ 66
+
+
+
+ Uploads gaan alleen door zolang deze pagina open blijft.
+
+ src/app/shared/ui/upload/document-upload/document-upload.component.ts
+ 56
+
+
+
+ Bestand kiezen
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 97
+
+
+
+ Bestanden toevoegen
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 108
+
+
+
+ Bestand toevoegen
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 109
+
+
+
+ Toegestaan: · max MB
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 119
+
+
+
+ Toegestaan:
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 120
+
+
+
+ Max MB
+
+ src/app/shared/ui/upload/file-input/file-input.component.ts
+ 121
+
+
+
+ Opnieuw
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 53,55
+
+
+
+ verwijderen
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 90
+
+
+
+ opnieuw uploaden
+
+ src/app/shared/ui/upload/single-upload/single-upload.component.ts
+ 93
+
+
+
+ Uploadvoortgang
+
+ src/app/shared/ui/upload/upload-progress-bar/upload-progress-bar.component.ts
+ 34
+
+
+
+ Uploaden is niet gelukt. Probeer het opnieuw.
+
+ src/app/shared/upload/upload.adapter.ts
+ 146
+
+
+
+ Dit bestandstype is niet toegestaan voor deze categorie.
+
+ src/app/shared/upload/upload.machine.ts
+ 93
+
+
+
+ Dit bestand is te groot.
+
+ src/app/shared/upload/upload.machine.ts
+ 94
+
+
+
+ U kunt voor deze categorie maar één bestand uploaden.
+
+ src/app/shared/upload/upload.machine.ts
+ 95
+
+
+
+
+