pages.nl/*: update Dutch translation (#11649)

pull/23/head
Sebastiaan Speck 2023-12-04 11:58:55 +01:00 committed by GitHub
parent c628002157
commit 6c524b5579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 9 deletions

View File

@ -23,3 +23,7 @@
- Compileer broncode naar LLVM Intermediate Representation (IR):
`clang++ -S -emit-llvm {{pad/naar/bron.cpp}} -o {{pad/naar/output.ll}}`
- Optimaliseer het gecompileerde programma voor prestaties:
`clang++ {{pad/naar/bron.cpp}} -O{{1|2|3|fast}} -o {{pad/naar/uitvoerbaar_bestand}}`

View File

@ -22,3 +22,7 @@
- Compileer broncode naar een objectbestand zonder te koppelen:
`gcc -c {{pad/naar/bron.c}}`
- Optimaliseer het gecompileerde programma voor prestaties:
`gcc {{pad/naar/bron.c}} -O{{1|2|3|fast}} -o {{pad/naar/uitvoerbaar_bestand}}`

View File

@ -6,32 +6,32 @@
- Toon de huidige Windows [l]icentie [i]nformatie:
`slmgr /dli`
`slmgr.vbs /dli`
- Toon de installatie [i]D voor het huidige apparaat. Nuttig voor offline licentie activatie:
`slmgr /dti`
`slmgr.vbs /dti`
- Toon de verloopdatum en -tijd van de huidige licentie:
`slmgr /xpr`
`slmgr.vbs /xpr`
- [i]nstalleer een nieuwe Windows licentie [p]roduct sleutel. Vereist beheerdersrechten en zal de bestaande licentie overschrijven:
`slmgr /ipk {{product_sleutel}}`
`slmgr.vbs /ipk {{product_sleutel}}`
- [a]c[t]iveer de Windows product licentie [o]nline. Vereist beheerdersrechten:
`slmgr /ato`
`slmgr.vbs /ato`
- [a]c[t]iveer de Windows [p]roduct licentie offline. Vereist beheerdersrechten een bevestigings ID verstrekt door Microsoft Product Activation Center:
`slmgr /atp {{bevestigings_id}}`
`slmgr.vbs /atp {{bevestigings_id}}`
- Wis de huidige licentie [p]roduct sleutel van het Windows register. Dit zal de huidige licentie niet deactiveren of verwijderen, maar voorkomt dat de sleutel in de toekomst wordt gestolen door kwaadaardige programma's:
`slmgr /cpky`
`slmgr.vbs /cpky`
- Deinstalleer de huidigie licentie (door zijn [p]roduct sleutel):
`slmgr /upk`
`slmgr.vbs /upk`

View File

@ -25,4 +25,4 @@
- Optimize the compiled program for performance:
`gcc {{path/to/source.c}} -O{{1|2|3|fast}}`
`gcc {{path/to/source.c}} -O{{1|2|3|fast}} -o {{path/to/output_executable}}`