1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<?php
# dvdisaster: German homepage translation
# Copyright (C) 2004-2012 Carsten Gnörlich
#
# UTF-8 trigger: äöüß
#
# Include our PHP sub routines, then call begin_page()
# to start the HTML page, insert the header,
# navigation and news if appropriate.
require("../include/dvdisaster.php");
require("../include/footnote.php");
begin_page();
howto_headline("Informationen zu Abbildern/Fehlerkorrektur-Daten anzeigen", "Übersicht", "images/compare-icon.png");
?>
<!-- Insert actual page content below -->
<table width="100%" cellspacing="5">
<tr valign="top">
<td class="w20p"><b>Aufgabe</b></td>
<td>
Zeigt Informationen über die Art und den Zustand von Abbildern
und Fehlerkorrektur-Dateien.
</td>
</tr>
<tr><td> <pre> </pre> </td></tr>
<tr>
<td colspan="2"><b>Benötigt werden:</b><p></td>
</tr>
<tr>
<td class="w150x" align="right">
<img src="../images/good-image.png" alt="Symbol: vollständiges Abbild" class="valignt">
<img src="../images/ecc.png" alt="Symbo: Eigenständige Fehlerkorrektur-Datei">
</td>
<td>
Ein Datenträger-Abbild und gegebenenfalls die zugehörige
Fehlerkorrektur-Datei.
</td>
<tr><td> <pre> </pre> </td></tr>
<tr>
<td colspan="2"><b>Dies ist zu tun:</b><p></td>
</tr>
<tr>
<td></td>
<td>
1. <a href="howtos51.php">Informationen anzeigen</a><p>
2. <a href="howtos51.php#examine">Ergebnisse auswerten</a>
</td>
</tr>
</table><p>
<pre>
</pre>
<a href="howtos51.php">Informationen anzeigen...</a>
<!-- do not change below -->
<?php
# end_page() adds the footer line and closes the HTML properly.
end_page();
?>
|