[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[RFR] man://manpages-de/po/man3/string.3



Hallo,

anbei die gründlich überarbeitete Manpage String.3 mit der Bitte um konstruktive Kritik.

Gruß,
Chris
# German translation of manpages
# This file is distributed under the same license as the manpages-de package.
# Copyright © of this file:
# Patrick Rother <krd@gulu.net>
# Chris Leick <c.leick@vollbio.de>, 2011-2014.
#
msgid ""
msgstr ""
"Project-Id-Version: manpages-de 1.4-1\n"
"POT-Creation-Date: 2014-01-20 11:39+0100\n"
"PO-Revision-Date: 2014-01-22 19:19+0100\n"
"Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. type: TH
#, no-wrap
msgid "STRING"
msgstr "STRING"

#. type: TH
#, no-wrap
msgid "2014-01-04"
msgstr "4. Januar 2014"

#. type: TH
#, no-wrap
msgid "Linux Programmer's Manual"
msgstr "Linux-Programmierhandbuch"

#. type: SH
#, no-wrap
msgid "NAME"
msgstr "BEZEICHNUNG"

#. type: Plain text
msgid ""
"stpcpy, strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, "
"strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, "
"strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex - string "
"operations"
msgstr ""
"stpcpy, strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, "
"strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, "
"strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex - "
"Zeichenkettenoperationen"

#. type: SH
#, no-wrap
msgid "SYNOPSIS"
msgstr "Ã?BERSICHT"

#. type: Plain text
msgid "B<#include E<lt>strings.hE<gt>>"
msgstr "B<#include E<lt>strings.hE<gt>>"

#. type: TP
#, no-wrap
msgid "B<int strcasecmp(const char *>I<s1>B<, const char *>I<s2>B<);>"
msgstr "B<int strcasecmp(const char *>I<s1>B<, const char *>I<s2>B<);>"

#. type: Plain text
msgid "Compare the strings I<s1> and I<s2> ignoring case."
msgstr ""
"vergleicht die Zeichenketten I<s1> und I<s2> ohne Berücksichtigung der Gro�- "
"und Kleinschreibung."

#. type: TP
#, no-wrap
msgid "B<int strncasecmp(const char *>I<s1>B<, const char *>I<s2>B<, size_t >I<n>B<);>"
msgstr ""
"B<int strncasecmp(const char *>I<s1>B<, const char *>I<s2>B<, size_t "
">I<n>B<);>"

#. type: Plain text
msgid ""
"Compare the first I<n> characters of the strings I<s1> and I<s2> ignoring "
"case."
msgstr ""
"vergleicht die ersten I<n> Zeichen der Zeichenketten I<s1> und I<s2> ohne "
"Berücksichtigung der Gro�- und Kleinschreibung."

#. type: TP
#, no-wrap
msgid "B<char *index(const char *>I<s>B<, int >I<c>B<);>"
msgstr "B<char *index(const char *>I<s>B<, int >I<c>B<);>"

#. type: Plain text
msgid ""
"Return a pointer to the first occurrence of the character I<c> in the string "
"I<s>."
msgstr ""
"gibt einen Zeiger auf das erste Vorkommen des Zeichens I<c> in der "
"Zeichenkette I<s> zurück."

#. type: TP
#, no-wrap
msgid "B<char *rindex(const char *>I<s>B<, int >I<c>B<);>"
msgstr "B<char *rindex(const char *>I<s>B<, int >I<c>B<);>"

#. type: Plain text
msgid ""
"Return a pointer to the last occurrence of the character I<c> in the string "
"I<s>."
msgstr ""
"gibt einen Zeiger auf das letzte Vorkommen des Zeichens I<c> in der "
"Zeichenkette I<s> zurück."

#. type: TP
#, no-wrap
msgid "B<#include E<lt>string.hE<gt>>"
msgstr "B<#include E<lt>string.hE<gt>>"

#. type: TP
#, no-wrap
msgid "B<char *stpcpy(char *>I<dest>B<, const char *>I<src>B<);>"
msgstr "B<char *stpcpy(char *>I<ziel>B<, const char *>I<quelle>B<);>"

#. type: Plain text
msgid ""
"Copy a string from I<src> to I<dest>, returning a pointer to the end of the "
"resulting string at I<dest>."
msgstr ""
"kopiert eine Zeichenkette I<quelle> nach I<ziel> und gibt einen Zeiger auf "
"das Ende der resultierenden Zeichenkette in I<ziel> zurück."

#. type: TP
#, no-wrap
msgid "B<char *strcat(char *>I<dest>B<, const char *>I<src>B<);>"
msgstr "B<char *strcat(char *>I<ziel>B<, const char *>I<quelle>B<);>"

#. type: Plain text
msgid ""
"Append the string I<src> to the string I<dest>, returning a pointer I<dest>."
msgstr ""
"hängt die Zeichenkette I<quelle> an die Zeichenkette I<ziel> an und gibt "
"einen Zeiger auf I<ziel> zurück."

#. type: TP
#, no-wrap
msgid "B<char *strchr(const char *>I<s>B<, int >I<c>B<);>"
msgstr "B<char *strchr(const char *>I<s>B<, int >I<c>B<);>"

#. type: TP
#, no-wrap
msgid "B<int strcmp(const char *>I<s1>B<, const char *>I<s2>B<);>"
msgstr "B<int strcmp(const char *>I<s1>B<, const char *>I<s2>B<);>"

#. type: Plain text
msgid "Compare the strings I<s1> with I<s2>."
msgstr "vergleicht die Zeichenketten I<s1> und I<s2>."

#. type: TP
#, no-wrap
msgid "B<int strcoll(const char *>I<s1>B<, const char *>I<s2>B<);>"
msgstr "B<int strcoll(const char *>I<s1>B<, const char *>I<s2>B<);>"

#. type: Plain text
msgid "Compare the strings I<s1> with I<s2> using the current locale."
msgstr ""
"vergleicht die Zeichenketten I<s1> und I<s2> unter Verwendung der aktuellen "
"Locale miteinander."

#. type: TP
#, no-wrap
msgid "B<char *strcpy(char *>I<dest>B<, const char *>I<src>B<);>"
msgstr "B<char *strcpy(char *>I<ziel>B<, const char *>I<quelle>B<);>"

#. type: Plain text
msgid ""
"Copy the string I<src> to I<dest>, returning a pointer to the start of "
"I<dest>."
msgstr ""
"kopiert die Zeichenkette I<quelle> nach I<ziel> und gibt einen Zeiger auf den "
"Anfang von I<ziel> zurück."

#. type: TP
#, no-wrap
msgid "B<size_t strcspn(const char *>I<s>B<, const char *>I<reject>B<);>"
msgstr "B<size_t strcspn(const char *>I<s>B<, const char *>I<ablehnen>B<);>"

#. type: Plain text
msgid ""
"Calculate the length of the initial segment of the string I<s> which does "
"not contain any of bytes in the string I<reject>,"
msgstr ""
"berechnet die Länge des Anfangssegments der Zeichenkette I<s>, die keine Byte "
"der Zeichenkette I<ablehnen> enthält."

#. type: TP
#, no-wrap
msgid "B<char *strdup(const char *>I<s>B<);>"
msgstr "B<char *strdup(const char *>I<s>B<);>"

#. type: Plain text
msgid ""
"Return a duplicate of the string I<s> in memory allocated using I<malloc>(3)."
msgstr ""
"gibt ein Duplikat der Zeichenkette I<s> im Speicher zurück, der mittels "
"I<malloc>(3) reserviert wurde."

#. type: TP
#, no-wrap
msgid "B<char *strfry(char *>I<string>B<);>"
msgstr "B<char *strfry(char *>I<zeichenkette>B<);>"

#. type: Plain text
msgid "Randomly swap the characters in I<string>."
msgstr "lagert wahllos die Zeichen in I<zeichenkette> aus."

#. type: TP
#, no-wrap
msgid "B<size_t strlen(const char *>I<s>B<);>"
msgstr "B<size_t strlen(const char *>I<s>B<);>"

#. type: Plain text
msgid "Return the length of the string I<s>."
msgstr "gibt die Länge der Zeichenkette I<s> zurück."

#. type: TP
#, no-wrap
msgid "B<char *strncat(char *>I<dest>B<, const char *>I<src>B<, size_t >I<n>B<);>"
msgstr ""
"B<char *strncat(char *>I<ziel>B<, const char *>I<quelle>B<,>\n"
"B<              size_t >I<n>B<);>"

#. type: Plain text
msgid ""
"Append at most I<n> characters from the string I<src> to the string I<dest>, "
"returning a pointer to I<dest>."
msgstr ""
"hängt höchstens I<n> Zeichen von der Zeichenkette I<quelle> an die "
"Zeichenkette I<ziel> an und gibt einen Zeiger auf I<ziel> zurück."

#. type: TP
#, no-wrap
msgid "B<int strncmp(const char *>I<s1>B<, const char *>I<s2>B<, size_t >I<n>B<);>"
msgstr ""
"B<int strncmp(const char *>I<s1>B<, const char *>I<s2>B<, size_t >I<n>B<);>"

#. type: Plain text
msgid "Compare at most I<n> bytes of the strings I<s1> and I<s2.>"
msgstr "vergleicht höchstens I<n> Byte der Zeichenketten I<s1> und I<s2.>"

#. type: TP
#, no-wrap
msgid "B<char *strncpy(char *>I<dest>B<, const char *>I<src>B<, size_t >I<n>B<);>"
msgstr ""
"B<char *strncpy(char *>I<ziel>B<, const char *>I<quelle>B<, size_t >I<n>B<);>"

#. type: Plain text
msgid ""
"Copy at most I<n> bytes from string I<src> to I<dest>, returning a pointer "
"to the start of I<dest>."
msgstr ""
"kopiert höchstens I<n> Byte von der Zeichenkette I<quelle> nach I<ziel> und "
"gibt einen Zeiger auf den Anfang von I<ziel> zurück."

#. type: TP
#, no-wrap
msgid "B<char *strpbrk(const char *>I<s>B<, const char *>I<accept>B<);>"
msgstr "B<char *strpbrk(const char *>I<s>B<, const char *>I<akzeptieren>B<);>"

#. type: Plain text
msgid ""
"Return a pointer to the first occurrence in the string I<s> of one of the "
"bytes in the string I<accept>."
msgstr ""
"gibt einen Zeiger auf das erste Vorkommen von einem der Byte in der "
"Zeichenkette I<akzeptieren> in der Zeichenkette I<s> zurück."

#. type: TP
#, no-wrap
msgid "B<char *strrchr(const char *>I<s>B<, int >I<c>B<);>"
msgstr "B<char *strrchr(const char *>I<s>B<, int >I<c>B<);>"

#. type: TP
#, no-wrap
msgid "B<char *strsep(char **>I<stringp>B<, const char *>I<delim>B<);>"
msgstr "B<char *strsep(char **>I<stringp>B<, const char *>I<trenner>B<);>"

#. type: Plain text
msgid ""
"Extract the initial token in I<stringp> that is delimited by one of the "
"bytes in I<delim>."
msgstr ""
"extrahiert das Anfangs-Token in I<stringp>, das durch eines der Byte in "
"I<trenner> unterteilt ist."

#. type: TP
#, no-wrap
msgid "B<size_t strspn(const char *>I<s>B<, const char *>I<accept>B<);>"
msgstr "B<size_t strspn(const char *>I<s>B<, const char *>I<akzeptieren>B<);>"

#. type: Plain text
msgid ""
"Calculate the length of the starting segment in the string I<s> that "
"consists entirely of bytes in I<accept>."
msgstr ""
"berechnet die Länge des Anfangssegments in der Zeichenkette I<s>, die "
"vollständig aus Byte in I<akzeptieren> besteht."

#. type: TP
#, no-wrap
msgid "B<char *strstr(const char *>I<haystack>B<, const char *>I<needle>B<);>"
msgstr "B<char *strstr(const char *>I<heuhaufen>B<, const char *>I<nadel>B<);>"

#. type: Plain text
msgid ""
"Find the first occurrence of the substring I<needle> in the string "
"I<haystack>, returning a pointer to the found substring."
msgstr ""
"sucht das erste Vorkommen der Teilzeichenkette I<nadel> in der Zeichenkette "
"I<heuhaufen> und gibt einen Zeiger auf die gefundene Teilzeichenkette zurück."

#. type: TP
#, no-wrap
msgid "B<char *strtok(char *>I<s>B<, const char *>I<delim>B<);>"
msgstr "B<char *strtok(char *>I<s>B<, const char *>I<trenner>B<);>"

#. type: Plain text
msgid ""
"Extract tokens from the string I<s> that are delimited by one of the bytes "
"in I<delim>."
msgstr ""
"extrahiert Token aus der Zeichenkette I<s>, die durch eines der Byte in "
"I<trenner> unterteilt werden."

#. type: TP
#, no-wrap
msgid "B<size_t strxfrm(char *>I<dest>B<, const char *>I<src>B<, size_t >I<n>B<);>"
msgstr ""
"B<size_t strxfrm(char *>I<ziel>B<, const char *>I<quelle>B<, size_t >I<n>B<);>"

#. type: Plain text
msgid ""
"Transforms I<src> to the current locale and copies the first I<n> characters "
"to I<dest>."
msgstr ""
"wandelt I<quelle> in die aktuelle Locale um und kopiert die ersten I<n> "
"Zeichen nach I<ziel>."

#. type: SH
#, no-wrap
msgid "DESCRIPTION"
msgstr "BESCHREIBUNG"

#. type: Plain text
msgid ""
"The string functions perform string operations on null-terminated strings.  "
"See the individual man pages for descriptions of each function."
msgstr ""
"Die Zeichenkettenfunktionen führen Operationen an Null-terminierten "
"Zeichenketten durch. Siehe dazu die einzelnen Handbuchseiten, um "
"Beschreibungen der einzelnen Funktionen zu erhalten."

#. type: SH
#, no-wrap
msgid "SEE ALSO"
msgstr "SIEHE AUCH"

#. type: Plain text
msgid ""
"B<index>(3), B<rindex>(3), B<stpcpy>(3), B<strcasecmp>(3), B<strcat>(3), "
"B<strchr>(3), B<strcmp>(3), B<strcoll>(3), B<strcpy>(3), B<strcspn>(3), "
"B<strdup>(3), B<strfry>(3), B<strlen>(3), B<strncasecmp>(3), B<strncat>(3), "
"B<strncmp>(3), B<strncpy>(3), B<strpbrk>(3), B<strrchr>(3), B<strsep>(3), "
"B<strspn>(3), B<strstr>(3), B<strtok>(3), B<strxfrm>(3)"
msgstr ""
"B<index>(3), B<rindex>(3), B<stpcpy>(3), B<strcasecmp>(3), B<strcat>(3), "
"B<strchr>(3), B<strcmp>(3), B<strcoll>(3), B<strcpy>(3), B<strcspn>(3), "
"B<strdup>(3), B<strfry>(3), B<strlen>(3), B<strncasecmp>(3), B<strncat>(3), "
"B<strncmp>(3), B<strncpy>(3), B<strpbrk>(3), B<strrchr>(3), B<strsep>(3), "
"B<strspn>(3), B<strstr>(3), B<strtok>(3), B<strxfrm>(3)"

#. type: SH
#, no-wrap
msgid "COLOPHON"
msgstr "KOLOPHON"

#. type: Plain text
msgid ""
"This page is part of release 3.56 of the Linux I<man-pages> project.  A "
"description of the project, and information about reporting bugs, can be "
"found at \\%http://www.kernel.org/doc/man-pages/.";
msgstr ""
"Diese Seite ist Teil der Veröffentlichung 3.56 des Projekts Linux-I<man-"
"pages>. Eine Beschreibung des Projekts und Informationen, wie Fehler "
"gemeldet werden können, finden sich unter \\%http://www.kernel.org/doc/man-";
"pages/."

Reply to: