# Dutch translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Jos Boersema , 2001. # Mario Blättermann , 2019. # Luc Castermans , 2021, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: manpages-l10n 2.15\n" "POT-Creation-Date: 2024-06-01 06:14+0200\n" "PO-Revision-Date: 2024-05-20 21:07+0200\n" "Last-Translator: Luc Castermans \n" "Language-Team: Dutch <>\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 22.12.3\n" #. type: TH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "read" msgstr "read" #. type: TH #: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "2024-05-02" msgstr "2 mei 2024" #. type: TH #: archlinux debian-unstable #, fuzzy, no-wrap #| msgid "Linux man-pages 6.7" msgid "Linux man-pages 6.8" msgstr "Linux man-pages 6.7" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NAME" msgstr "NAAM" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "read - read from a file descriptor" msgstr "read - lees van een bestandbeschrijving" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIBRARY" msgstr "BIBLIOTHEEK" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Standard C library (I, I<-lc>)" msgstr "Standard C bibliotheek (I, I<-lc>)" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SYNOPSIS" msgstr "SAMENVATTING" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<#include Eunistd.hE>\n" msgstr "B<#include Eunistd.hE>\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "BIB<, void >IB<[.>IB<], size_t >IB<);>\n" msgstr "BIB<, void >IB<[.>IB<], size_t >IB<);>\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "DESCRIPTION" msgstr "BESCHRIJVING" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "B() attempts to read up to I bytes from file descriptor I " "into the buffer starting at I." msgstr "" "B() probeert tot aan I bytes van bestandsbeschrijving I " "in te lezen naar de buffer I." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On files that support seeking, the read operation commences at the file " "offset, and the file offset is incremented by the number of bytes read. If " "the file offset is at or past the end of file, no bytes are read, and " "B() returns zero." msgstr "" "In bestanden die zoeken ondersteunen begint de lees-operatie bij de " "bestandspositie, en wordt de bestandspositie verhoogd met het aantal gelezen " "bytes. Als de bestandspositie op of voorbij het einde van het bestand staat, " "dan worden geen bytes gelezen en geeft B() nul terug." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "If I is zero, B() I detect the errors described below. " "In the absence of any errors, or if B() does not check for errors, a " "B() with a I of 0 returns zero and has no other effects." msgstr "" "Als I nul is, I B() fouten zoals hieronder beschreven " "detecteren. In afwezigheid van enige fout, of als B() niet op fouten " "controleert, zal een B() met een I gelijk 0 een 0 teruggeven en " "heeft verder geen andere effecten. " #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "According to POSIX.1, if I is greater than B, the result " "is implementation-defined; see NOTES for the upper limit on Linux." msgstr "" "Volgens POSIX.1 als I groter is dan B dan is het resultaat " "implementatie afhankelijk; zie OPMERKINGEN voor de boven grens op Linux." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "RETURN VALUE" msgstr "EIND WAARDE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On success, the number of bytes read is returned (zero indicates end of " "file), and the file position is advanced by this number. It is not an error " "if this number is smaller than the number of bytes requested; this may " "happen for example because fewer bytes are actually available right now " "(maybe because we were close to end-of-file, or because we are reading from " "a pipe, or from a terminal), or because B() was interrupted by a " "signal. See also NOTES." msgstr "" "Bij success wordt het aantal gelezen bytes teruggegeven (nul betekend einde " "van het bestand); de positie in het bestand wordt met dit aantal " "vooruitgezet. Het is niet fout als dat aantal kleiner is dan het gevraagde " "aantal bytes, dat kan bijvoorbeeld gebeuren als er minder bytes voorhanden " "zijn op dat ogenblik (wellicht omdat we dicht bij eind-van-bestand zijn, " "omdat we van een pijp lezen, of van een terminal, of omdat B() " "onderbroken werd door een signaal). Zie ook OPMERKINGEN." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On error, -1 is returned, and I is set to indicate the error. In " "this case, it is left unspecified whether the file position (if any) changes." msgstr "" "Bij falen wordt -1 teruggegeven, en I wordt overeenkomstig gezet. In " "dit geval is niet bepaald of de plaats in het bestand (als die bestaat) " "veranderd." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ERRORS" msgstr "FOUTEN" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The file descriptor I refers to a file other than a socket and has been " "marked nonblocking (B), and the read would block. See " "B(2) for further details on the B flag." msgstr "" "De bestandsbeschrijving I refereert naar een ander bestand dan de " "socket en is gemarkeerd als niet-blokkerend (B, en de B " "zou blokkeren. Zie B(2) voor meer details over de B vlag." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B or B" msgstr "B of B" #. Actually EAGAIN on Linux #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The file descriptor I refers to a socket and has been marked nonblocking " "(B), and the read would block. POSIX.1-2001 allows either error " "to be returned for this case, and does not require these constants to have " "the same value, so a portable application should check for both " "possibilities." msgstr "" "De bestandsbeschrijving I refereert naar een socket en werd " "gemarkeerd als niet-blokkerend (B, en de B() zou " "blokkeren. POSIX.1-2001 staat toe in dit geval een fout te retourneren en " "vereist niet dat deze constanten dezelfde waarde hebben, waardoor een " "overdraagbare applicatie op beide mogelijkheden zou moeten controleren." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I is not a valid file descriptor or is not open for reading." msgstr "" "I is geen geldige bestandsbeschrijving, of is niet open voor lezen." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I is outside your accessible address space." msgstr "I ligt buiten de door u toegankelijke adres ruimte." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The call was interrupted by a signal before any data was read; see " "B(7)." msgstr "" "De aanroep werd onderbroken door een signaal voordat enige data werd " "gelezen; zie B(7)." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "I is attached to an object which is unsuitable for reading; or the file " "was opened with the B flag, and either the address specified in " "I, the value specified in I, or the file offset is not suitably " "aligned." msgstr "" "I is gekoppeld aan een object dat ongeschikt is om van te lezen; of " "het bestand werd geopend met de B vlag en ofwel het adres " "opgegeven in I, de waarde opgegeven I of de bestandsplaats is niet " "goed uitgelijnd." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "I was created via a call to B(2) and the wrong size " "buffer was given to B(); see B(2) for further " "information." msgstr "" "I werd aangemaakt door een aanroep van B(2) en de " "verkeerde buffer grootte werd meegegeven aan B(); zie " "B(2) voor meer informatie." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "I/O error. This will happen for example when the process is in a background " "process group, tries to read from its controlling terminal, and either it is " "ignoring or blocking B or its process group is orphaned. It may " "also occur when there is a low-level I/O error while reading from a disk or " "tape. A further possible cause of B on networked filesystems is when " "an advisory lock had been taken out on the file descriptor and this lock has " "been lost. See the I section of B(2) for further " "details." msgstr "" "Invoer/Uitvoer fout. Dit gebeurd bijvoorbeeld als een proces uit een " "achtergrond-proces-groep probeert van zijn controlerende terminal te lezen " "en, ofwel het negeert/blokkeert B, ofwel zijn proces-groep is " "verweesd. Het kan ook optreden als er een laag-niveau Invoer/Uitvoer fout is " "terwijl er van schijf of tape gelezen wordt. Een andere mogelijke oorzaak " "van B op netwerk bestandssystemen is wanneer een geadviseerd lock werd " "verwijderd van de bestandsbeschrijving en dat die lock verloren raakte. Zie " "de I sectie van B(2) voor meer details." #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I refers to a directory." msgstr "I wijst naar een map." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Other errors may occur, depending on the object connected to I." msgstr "" "Andere fouten kunnen optreden afhankelijk van dat wat verbonden is met I." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "STANDARDS" msgstr "VOLDOET AAN" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "POSIX.1-2008." msgstr "POSIX.1-2008." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "HISTORY" msgstr "GESCHIEDENIS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "SVr4, 4.3BSD, POSIX.1-2001." msgstr "SVr4, 4.3BSD, POSIX.1-2001." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NOTES" msgstr "OPMERKINGEN" #. commit e28cc71572da38a5a12c1cfe4d7032017adccf69 #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On Linux, B() (and similar system calls) will transfer at most " "0x7ffff000 (2,147,479,552) bytes, returning the number of bytes actually " "transferred. (This is true on both 32-bit and 64-bit systems.)" msgstr "" "Op Linux zal B() (en vergelijkbare systeem aanroepen) op zijn hoogst " "0x7ffff000 (2,147,479,552) bytes overdragen, en het daadwerkelijk aantal " "overgedragen bytes retourneren. (Dit is waar op beide 32-bit en 64-bit " "systemen.)" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On NFS filesystems, reading small amounts of data will update the timestamp " "only the first time, subsequent calls may not do so. This is caused by " "client side attribute caching, because most if not all NFS clients leave " "I (last file access time) updates to the server, and client side " "reads satisfied from the client's cache will not cause I updates " "on the server as there are no server-side reads. UNIX semantics can be " "obtained by disabling client-side attribute caching, but in most situations " "this will substantially increase server load and decrease performance." msgstr "" "Bij NFS bestandssystemen zal het lezen van kleine hoeveelheden gegevens de " "tijdstempel alleen de eerste keer veranderen, volgende aanroepen laten de " "tijdstempel onveranderd. Dit wordt veroorzaakt door bufferen van " "bestandskenmerken aan de zijde van de cliënt: de meeste -zo niet alle- NFS " "cliënten laten het bijwerken van de `atime' aan de server over; als een lees-" "opdracht dan genoeg heeft aan de cliënt-kant buffer vind er geen lees-" "opdracht plaats naar de server en blijft de atime dus onveranderd. UNIX " "gedrag kan verkregen worden door het bufferen aan de zijde van de cliënt uit " "te schakelen, maar dat zal in de meeste situaties de last op de server flink " "vergroten, en zijn prestaties nadelig beïnvloeden." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "BUGS" msgstr "BUGS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "According to POSIX.1-2008/SUSv4 Section XSI 2.9.7 (\"Thread Interactions " "with Regular File Operations\"):" msgstr "" "Volgens POSIX.1-2008/SUSv4 Sectie XSI 2.9.7 (\"Thread interacties met " "Reguliere Bestand Operaties\"):" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "All of the following functions shall be atomic with respect to each other in " "the effects specified in POSIX.1-2008 when they operate on regular files or " "symbolic links: ..." msgstr "" "Alle volgende functie zullen onderling atomair zijn voor wat betreft de " "effecten die in POSIX.1-2008 gespecificeerd zijn indien ze werken op " "reguliere bestanden of symbolische koppelingen: ..." #. http://thread.gmane.org/gmane.linux.kernel/1649458 #. From: Michael Kerrisk (man-pages gmail.com> #. Subject: Update of file offset on write() etc. is non-atomic with I/O #. Date: 2014-02-17 15:41:37 GMT #. Newsgroups: gmane.linux.kernel, gmane.linux.file-systems #. commit 9c225f2655e36a470c4f58dbbc99244c5fc7f2d4 #. Author: Linus Torvalds #. Date: Mon Mar 3 09:36:58 2014 -0800 #. vfs: atomic f_pos accesses as per POSIX #. type: Plain text #: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed msgid "" "Among the APIs subsequently listed are B() and B(2). And " "among the effects that should be atomic across threads (and processes) are " "updates of the file offset. However, before Linux 3.14, this was not the " "case: if two processes that share an open file description (see B(2)) " "perform a B() (or B(2)) at the same time, then the I/O " "operations were not atomic with respect to updating the file offset, with " "the result that the reads in the two processes might (incorrectly) overlap " "in the blocks of data that they obtained. This problem was fixed in Linux " "3.14." msgstr "" "Tussen de achtereenvolgens vermelde API´s staan B() en B(2). En " "tussen de effecten die atomair zouden moeten zijn voor alle threads (en " "processen) zijn aanpassingen aan de bestandspositie. Echter vóór Linux " "versie 3.14 was dit niet het geval: als twee processen die een open " "bestandsindicator delen (zie B(2)) een B() (of B(2)) op " "hetzelfde tijdstip uitvoeren, dan zijn de Invoer/Uitvoer operaties niet " "atomair met betrekking tot aanpassen van de bestandspositie, hetgeen erin " "resulteert dat de lees acties in beide processen (foutief) zou kunnen " "overlappen in de datablokken die ze zouden verkrijgen. Dit probleem werd " "opgelost in Linux 3.14." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" msgstr "ZIE OOK" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "B(2), B(2), B(2), B(2), B(2), B(2), " "B(2), B(2), B(2), B(2), B(2), " "B(3)" #. type: TH #: debian-bookworm #, no-wrap msgid "2022-12-04" msgstr "4 december 2022" #. type: TH #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" msgstr "Linux man-pagina's 6.03" #. type: Plain text #: debian-bookworm msgid "" "The types I and I are, respectively, unsigned and signed " "integer data types specified by POSIX.1." msgstr "" "De typen I en I zijn, respectively, gehele getal typen met " "of zonder teken zoals gespecificeerd door POSIX.1." #. http://thread.gmane.org/gmane.linux.kernel/1649458 #. From: Michael Kerrisk (man-pages gmail.com> #. Subject: Update of file offset on write() etc. is non-atomic with I/O #. Date: 2014-02-17 15:41:37 GMT #. Newsgroups: gmane.linux.kernel, gmane.linux.file-systems #. commit 9c225f2655e36a470c4f58dbbc99244c5fc7f2d4 #. Author: Linus Torvalds #. Date: Mon Mar 3 09:36:58 2014 -0800 #. vfs: atomic f_pos accesses as per POSIX #. type: Plain text #: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6 msgid "" "Among the APIs subsequently listed are B() and B(2). And " "among the effects that should be atomic across threads (and processes) are " "updates of the file offset. However, before Linux 3.14, this was not the " "case: if two processes that share an open file description (see B(2)) " "perform a B() (or B(2)) at the same time, then the I/O " "operations were not atomic with respect updating the file offset, with the " "result that the reads in the two processes might (incorrectly) overlap in " "the blocks of data that they obtained. This problem was fixed in Linux 3.14." msgstr "" "Tussen de achtereenvolgens vermelde API´s staan B() en B(2). En " "tussen de effecten die atomair zouden moeten zijn voor alle threads (en " "processen) zijn aanpassingen aan de bestandspositie. Echter vóór Linux " "versie 3.14 was dit niet het geval: als twee processen die een open " "bestandsindicator delen (zie B(2)) een B() (of B(2)) op " "hetzelfde tijdstip uitvoeren, dan zijn de Invoer/Uitvoer operaties niet " "atomair met betrekking tot aanpassen van de bestandspositie, hetgeen erin " "resulteert dat de lees acties in beide processen (foutief) zou kunnen " "overlappen in de datablokken die ze zouden verkrijgen. Dit probleem werd " "opgelost in Linux 3.14." #. type: TH #: fedora-40 mageia-cauldron #, no-wrap msgid "2023-10-31" msgstr "31 oktober 2023" #. type: TH #: fedora-40 mageia-cauldron #, no-wrap msgid "Linux man-pages 6.06" msgstr "Linux man-pages 6.06" #. type: TH #: fedora-rawhide #, no-wrap msgid "2024-03-12" msgstr "12 maart 2024" #. type: TH #: fedora-rawhide #, no-wrap msgid "Linux man-pages 6.7" msgstr "Linux man-pages 6.7" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "2023-04-03" msgstr "3 april 2023" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux man-pages 6.04" #. type: TH #: opensuse-tumbleweed #, fuzzy, no-wrap #| msgid "Linux man-pages 6.7" msgid "Linux man-pages (unreleased)" msgstr "Linux man-pages 6.7"