Initial revision of a German Handbook with currently one chapter: Backups
Obtained from: FreeBSD German Documentation Project
This commit is contained in:
parent
36dd85295c
commit
c60eb2fceb
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=7355
10 changed files with 304 additions and 8 deletions
de_DE.ISO8859-1/books/handbook
de_DE.ISO_8859-1/books/handbook
31
de_DE.ISO8859-1/books/handbook/Makefile
Normal file
31
de_DE.ISO8859-1/books/handbook/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Build the FreeBSD Handbook in its German translation.
|
||||
#
|
||||
|
||||
MAINTAINER=alex@FreeBSD.org
|
||||
|
||||
DOC?= book
|
||||
|
||||
FORMATS?= html-split
|
||||
|
||||
INSTALL_COMPRESSED?= gz
|
||||
INSTALL_ONLY_COMPRESSED?=
|
||||
|
||||
#
|
||||
# SRCS lists the individual SGML files that make up the document. Changes
|
||||
# to any of these files will force a rebuild
|
||||
#
|
||||
|
||||
# SGML content
|
||||
SRCS= book.sgml
|
||||
SRCS+= backups/chapter.sgml
|
||||
|
||||
# Entities
|
||||
SRCS+= authors.ent
|
||||
SRCS+= chapters.ent
|
||||
SRCS+= newsgroups.ent
|
||||
|
||||
DOC_PREFIX?= ${.CURDIR}/../../..
|
||||
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|
100
de_DE.ISO8859-1/books/handbook/book.sgml
Normal file
100
de_DE.ISO8859-1/books/handbook/book.sgml
Normal file
|
@ -0,0 +1,100 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
The FreeBSD German Documentation Project
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V3.1-Based Extension//EN" [
|
||||
<!ENTITY % man PUBLIC "-//FreeBSD//ENTITIES DocBook Manual Page Entities//EN">
|
||||
%man;
|
||||
|
||||
<!ENTITY % bookinfo PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//EN">
|
||||
%bookinfo;
|
||||
|
||||
<!ENTITY % chapters SYSTEM "chapters.ent"> %chapters;
|
||||
<!ENTITY % authors SYSTEM "authors.ent"> %authors;
|
||||
<!ENTITY % mailing-lists SYSTEM "mailing-lists.ent"> %mailing-lists;
|
||||
<!ENTITY % newsgroups SYSTEM "newsgroups.ent"> %newsgroups;
|
||||
<!ENTITY % not.published "INCLUDE">
|
||||
|
||||
<!-- Die aktuelle FreeBSD-RELEASE version. Wird für verschiedene Dinge benutzt,
|
||||
z.B. Links auf Webseiten usw. Solange NICHT ändern wie es nicht wirklich
|
||||
Release-Zeit ist. -->
|
||||
<!ENTITY rel.current CDATA "4.0">
|
||||
]>
|
||||
|
||||
<book>
|
||||
<bookinfo>
|
||||
<title>FreeBSD Handbuch</title>
|
||||
|
||||
<authorgroup>
|
||||
<author>
|
||||
<surname>The FreeBSD German Documentation Project</surname>
|
||||
<affiliation>
|
||||
<address>
|
||||
<email>de-bsd-translators@de.FreeBSD.org</email>
|
||||
</address>
|
||||
</affiliation>
|
||||
</author>
|
||||
</authorgroup>
|
||||
|
||||
<pubdate>February 1999</pubdate>
|
||||
|
||||
<copyright>
|
||||
<year>1995</year>
|
||||
<year>1996</year>
|
||||
<year>1997</year>
|
||||
<year>1998</year>
|
||||
<year>1999</year>
|
||||
<year>2000</year>
|
||||
<holder>The FreeBSD German Documentation Project</holder>
|
||||
</copyright>
|
||||
|
||||
&bookinfo.legalnotice;
|
||||
|
||||
<abstract>
|
||||
<para>Willkommen bei FreeBSD! Dieses Handbuch beschreibt die
|
||||
Installation und den täglichen Umgang mit <emphasis>FreeBSD
|
||||
Release &rel.current;</emphasis>.
|
||||
Das Handbuch ist <emphasis>jederzeit unter Bearbeitung</emphasis>
|
||||
und die Arbeit vieler Einzelpersonen. Manche Kapitel existieren noch
|
||||
nicht und andere Kapitel müssen auf den neusten Stand
|
||||
gebracht werden.
|
||||
Wenn Sie an diesem Projekt mithelfen möchten, senden Sie bitte
|
||||
eine E-Mail an die &a.de.translators;. Die letzte Version des
|
||||
Handbuchs ist immer auf dem
|
||||
<ulink URL="http://www.FreeBSD.ORG/de/handbook/">FreeBSD Web
|
||||
Server</ulink> verfügbar.
|
||||
Es kann außerdem in verschiedenen Formaten und in komprimierter
|
||||
Form vom <ulink url="ftp://ftp.FreeBSD.org/pub/FreeBSD/doc">FreeBSD
|
||||
FTP Server</ulink> oder einer der vielen
|
||||
|
||||
<!--
|
||||
<link linkend="mirrors-ftp">Mirror Seiten</link>
|
||||
-->
|
||||
|
||||
<ulink URL="http://www.FreeBSD.org/handbook/mirrors-ftp.html">Mirror
|
||||
Seiten</ulink> herunter geladen werden.
|
||||
Vielleicht möchten Sie das Handbuch auch
|
||||
<ulink URL="http://www.FreeBSD.org/search.html">durchsuchen</ulink>.</para>
|
||||
</abstract>
|
||||
</bookinfo>
|
||||
|
||||
<part>
|
||||
<title>System Administration</title>
|
||||
|
||||
&chap.backups;
|
||||
</part>
|
||||
|
||||
</book>
|
||||
|
||||
<!--
|
||||
Local Variables:
|
||||
mode: sgml
|
||||
sgml-indent-data: t
|
||||
sgml-omittag: nil
|
||||
sgml-always-quote-attributes: t
|
||||
End:
|
||||
-->
|
||||
|
|
@ -7,8 +7,8 @@
|
|||
Kapitel sollten in der Reihenfolge aufgelistet sein, in der auf sie
|
||||
referenziert wird.
|
||||
|
||||
$FreeBSD$
|
||||
$FreeBSD: doc/de_DE.ISO_8859-1/books/handbook/chapters.ent,v 1.1 2000/06/11 18:50:56 alex Exp $
|
||||
-->
|
||||
|
||||
<!-- Part foo -->
|
||||
<!-- <!ENTITY chap.introduction SYSTEM "introduction/chapter.sgml"> -->
|
||||
<!-- Teil 1 -->
|
||||
<!ENTITY chap.backups SYSTEM "backups/chapter.sgml">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
Namen der FreeBSD Mailinglisten und verwandter Software
|
||||
|
||||
$FreeBSD$
|
||||
$FreeBSD: doc/de_DE.ISO_8859-1/books/handbook/mailing-lists.ent,v 1.1 2000/06/11 18:50:56 alex Exp $
|
||||
-->
|
||||
|
||||
<!ENTITY a.advocacy "FreeBSD Befürworter Mailingliste
|
||||
|
@ -105,3 +105,10 @@
|
|||
|
||||
<!ENTITY a.majordomo "<email>majordomo@FreeBSD.org</email>">
|
||||
|
||||
<!-- Deutsche Mailinglisten -->
|
||||
|
||||
<!ENTITY a.de.translators "FreeBSD German Documentation Project Mailingliste
|
||||
<email>de-bsd-translators@de.FreeBSD.org</email>">
|
||||
|
||||
<!ENTITY a.de.questions "deutsche FreeBSD Fragen Mailingliste
|
||||
<email>de-bsd-questions@de.FreeBSD.org</email>">
|
||||
|
|
10
de_DE.ISO8859-1/books/handbook/newsgroups.ent
Normal file
10
de_DE.ISO8859-1/books/handbook/newsgroups.ent
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!--
|
||||
Namen der FreeBSD Newsgroups
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<!ENTITY ng.misc "die
|
||||
<ulink url='news:comp.unix.bsd.freebsd.misc'>comp.unix.bsd.freebsd.misc</ulink>
|
||||
Newsgroup">
|
||||
|
31
de_DE.ISO_8859-1/books/handbook/Makefile
Normal file
31
de_DE.ISO_8859-1/books/handbook/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Build the FreeBSD Handbook in its German translation.
|
||||
#
|
||||
|
||||
MAINTAINER=alex@FreeBSD.org
|
||||
|
||||
DOC?= book
|
||||
|
||||
FORMATS?= html-split
|
||||
|
||||
INSTALL_COMPRESSED?= gz
|
||||
INSTALL_ONLY_COMPRESSED?=
|
||||
|
||||
#
|
||||
# SRCS lists the individual SGML files that make up the document. Changes
|
||||
# to any of these files will force a rebuild
|
||||
#
|
||||
|
||||
# SGML content
|
||||
SRCS= book.sgml
|
||||
SRCS+= backups/chapter.sgml
|
||||
|
||||
# Entities
|
||||
SRCS+= authors.ent
|
||||
SRCS+= chapters.ent
|
||||
SRCS+= newsgroups.ent
|
||||
|
||||
DOC_PREFIX?= ${.CURDIR}/../../..
|
||||
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|
100
de_DE.ISO_8859-1/books/handbook/book.sgml
Normal file
100
de_DE.ISO_8859-1/books/handbook/book.sgml
Normal file
|
@ -0,0 +1,100 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
The FreeBSD German Documentation Project
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V3.1-Based Extension//EN" [
|
||||
<!ENTITY % man PUBLIC "-//FreeBSD//ENTITIES DocBook Manual Page Entities//EN">
|
||||
%man;
|
||||
|
||||
<!ENTITY % bookinfo PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//EN">
|
||||
%bookinfo;
|
||||
|
||||
<!ENTITY % chapters SYSTEM "chapters.ent"> %chapters;
|
||||
<!ENTITY % authors SYSTEM "authors.ent"> %authors;
|
||||
<!ENTITY % mailing-lists SYSTEM "mailing-lists.ent"> %mailing-lists;
|
||||
<!ENTITY % newsgroups SYSTEM "newsgroups.ent"> %newsgroups;
|
||||
<!ENTITY % not.published "INCLUDE">
|
||||
|
||||
<!-- Die aktuelle FreeBSD-RELEASE version. Wird für verschiedene Dinge benutzt,
|
||||
z.B. Links auf Webseiten usw. Solange NICHT ändern wie es nicht wirklich
|
||||
Release-Zeit ist. -->
|
||||
<!ENTITY rel.current CDATA "4.0">
|
||||
]>
|
||||
|
||||
<book>
|
||||
<bookinfo>
|
||||
<title>FreeBSD Handbuch</title>
|
||||
|
||||
<authorgroup>
|
||||
<author>
|
||||
<surname>The FreeBSD German Documentation Project</surname>
|
||||
<affiliation>
|
||||
<address>
|
||||
<email>de-bsd-translators@de.FreeBSD.org</email>
|
||||
</address>
|
||||
</affiliation>
|
||||
</author>
|
||||
</authorgroup>
|
||||
|
||||
<pubdate>February 1999</pubdate>
|
||||
|
||||
<copyright>
|
||||
<year>1995</year>
|
||||
<year>1996</year>
|
||||
<year>1997</year>
|
||||
<year>1998</year>
|
||||
<year>1999</year>
|
||||
<year>2000</year>
|
||||
<holder>The FreeBSD German Documentation Project</holder>
|
||||
</copyright>
|
||||
|
||||
&bookinfo.legalnotice;
|
||||
|
||||
<abstract>
|
||||
<para>Willkommen bei FreeBSD! Dieses Handbuch beschreibt die
|
||||
Installation und den täglichen Umgang mit <emphasis>FreeBSD
|
||||
Release &rel.current;</emphasis>.
|
||||
Das Handbuch ist <emphasis>jederzeit unter Bearbeitung</emphasis>
|
||||
und die Arbeit vieler Einzelpersonen. Manche Kapitel existieren noch
|
||||
nicht und andere Kapitel müssen auf den neusten Stand
|
||||
gebracht werden.
|
||||
Wenn Sie an diesem Projekt mithelfen möchten, senden Sie bitte
|
||||
eine E-Mail an die &a.de.translators;. Die letzte Version des
|
||||
Handbuchs ist immer auf dem
|
||||
<ulink URL="http://www.FreeBSD.ORG/de/handbook/">FreeBSD Web
|
||||
Server</ulink> verfügbar.
|
||||
Es kann außerdem in verschiedenen Formaten und in komprimierter
|
||||
Form vom <ulink url="ftp://ftp.FreeBSD.org/pub/FreeBSD/doc">FreeBSD
|
||||
FTP Server</ulink> oder einer der vielen
|
||||
|
||||
<!--
|
||||
<link linkend="mirrors-ftp">Mirror Seiten</link>
|
||||
-->
|
||||
|
||||
<ulink URL="http://www.FreeBSD.org/handbook/mirrors-ftp.html">Mirror
|
||||
Seiten</ulink> herunter geladen werden.
|
||||
Vielleicht möchten Sie das Handbuch auch
|
||||
<ulink URL="http://www.FreeBSD.org/search.html">durchsuchen</ulink>.</para>
|
||||
</abstract>
|
||||
</bookinfo>
|
||||
|
||||
<part>
|
||||
<title>System Administration</title>
|
||||
|
||||
&chap.backups;
|
||||
</part>
|
||||
|
||||
</book>
|
||||
|
||||
<!--
|
||||
Local Variables:
|
||||
mode: sgml
|
||||
sgml-indent-data: t
|
||||
sgml-omittag: nil
|
||||
sgml-always-quote-attributes: t
|
||||
End:
|
||||
-->
|
||||
|
|
@ -7,8 +7,8 @@
|
|||
Kapitel sollten in der Reihenfolge aufgelistet sein, in der auf sie
|
||||
referenziert wird.
|
||||
|
||||
$FreeBSD$
|
||||
$FreeBSD: doc/de_DE.ISO_8859-1/books/handbook/chapters.ent,v 1.1 2000/06/11 18:50:56 alex Exp $
|
||||
-->
|
||||
|
||||
<!-- Part foo -->
|
||||
<!-- <!ENTITY chap.introduction SYSTEM "introduction/chapter.sgml"> -->
|
||||
<!-- Teil 1 -->
|
||||
<!ENTITY chap.backups SYSTEM "backups/chapter.sgml">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
Namen der FreeBSD Mailinglisten und verwandter Software
|
||||
|
||||
$FreeBSD$
|
||||
$FreeBSD: doc/de_DE.ISO_8859-1/books/handbook/mailing-lists.ent,v 1.1 2000/06/11 18:50:56 alex Exp $
|
||||
-->
|
||||
|
||||
<!ENTITY a.advocacy "FreeBSD Befürworter Mailingliste
|
||||
|
@ -105,3 +105,10 @@
|
|||
|
||||
<!ENTITY a.majordomo "<email>majordomo@FreeBSD.org</email>">
|
||||
|
||||
<!-- Deutsche Mailinglisten -->
|
||||
|
||||
<!ENTITY a.de.translators "FreeBSD German Documentation Project Mailingliste
|
||||
<email>de-bsd-translators@de.FreeBSD.org</email>">
|
||||
|
||||
<!ENTITY a.de.questions "deutsche FreeBSD Fragen Mailingliste
|
||||
<email>de-bsd-questions@de.FreeBSD.org</email>">
|
||||
|
|
10
de_DE.ISO_8859-1/books/handbook/newsgroups.ent
Normal file
10
de_DE.ISO_8859-1/books/handbook/newsgroups.ent
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!--
|
||||
Namen der FreeBSD Newsgroups
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<!ENTITY ng.misc "die
|
||||
<ulink url='news:comp.unix.bsd.freebsd.misc'>comp.unix.bsd.freebsd.misc</ulink>
|
||||
Newsgroup">
|
||||
|
Loading…
Reference in a new issue