diff --git a/CHANGELOG b/CHANGELOG index fa38c37..4bea7bc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,27 @@ +0.72 (pl3) 03-10-2011 + - Volodymyr Bychkoviak found a problem when verifying + RS01 files which are larger than 2GB and provided a bugfix. + - Backported improved Windows locale detection from 0.79 branch. + - made package compile under OS X 10.6; updated OS X toolchain + to Gtk 2.24. + +0.72 (pl-2) 31-10-2010 + - fixed and documented -n command line options for RS02. + Thanks to Jack Giles for noting this. + - changed sources for clean compile on gcc 4.4.3 + - Using the CDROM_SEND_PACKET ioctl() will hang parallel + SCSI adapters. Added tests to determine the SCSI bus type, + and switch to the SG_IO ioctl() when in doubt. + Thanks to S. Seidl and R. Manfredi for the respective bug reports.< + - backported MIN_TRANSFER_LEN and length sanity check from 0.79.1 + as a workaround for buggy drive chipsets (thanks to R.G. + for reporting this and helping with debugging output) + - backported "typical uses" link fix in welcome screen + (Thanks to C. Steigies) + - fixed recognition of dvdisaster 0.79 RS03-augmented image + - minor cosmetic changes for regression test compatibility + with 0.79 + 0.72 (pl-1) 08-08-2009 - Pablo Almeida provided a Portuguese translation for the screen text. diff --git a/GNUmakefile.template b/GNUmakefile.template index dd9f66c..ad8ce76 100644 --- a/GNUmakefile.template +++ b/GNUmakefile.template @@ -429,11 +429,11 @@ arch: archclean time-stamp # TAG: online-docs www: version.php @cd documentation ; \ - tar cjf ../../www.tar.bz2 pubkey.asc index.html include/dvdisaster.css include/*.php de/*.php en/*.php ru/*.php + tar cjf ../../www.tar.bz2 pubkey.asc index.html include/dvdisaster.css de/*.html en/*.html ru/*.html www-images: thumbnails version.php @cd documentation ; \ - tar cjf ../../www.tar.bz2 pubkey.asc index.html include/dvdisaster.css include/*.php de/*.php en/*.php ru/*.php images/*.png de/images/*.png de/thumbnails/*.png en/images/*.png en/thumbnails/*.png ru/images/*.png ru/thumbnails/*.png + tar cjf ../../www.tar.bz2 pubkey.asc index.html include/dvdisaster.css de/*.html en/*.html ru/*.html images/*.png de/images/*.png de/thumbnails/*.png en/images/*.png en/thumbnails/*.png ru/images/*.png ru/thumbnails/*.png INSTALL: documentation/install.template @sed "s/@@PKGNAME/$(PKGNAME)/" INSTALL @@ -462,16 +462,23 @@ prepare-dist: @cp tools/pngpack.exe win-build-dir/documentation @mv documentation/images-*.pngpack win-build-dir/documentation @cp $(GTK_BINDIR)/libglib*.dll win-build-dir - @cp $(GTK_BINDIR)/iconv.dll win-build-dir + #@cp $(GTK_BINDIR)/iconv.dll win-build-dir @cp $(GTK_BINDIR)/intl.dll win-build-dir @cp $(GTK_BINDIR)/libatk*.dll win-build-dir + @cp $(GTK_BINDIR)/libcairo*.dll win-build-dir + @cp $(GTK_BINDIR)/libexpat*.dll win-build-dir + @cp $(GTK_BINDIR)/libfontconfig*.dll win-build-dir + @cp $(GTK_BINDIR)/freetype6*.dll win-build-dir @cp $(GTK_BINDIR)/libpango*.dll win-build-dir + @cp $(GTK_BINDIR)/libpng12*.dll win-build-dir @cp $(GTK_BINDIR)/libgmodule*.dll win-build-dir @cp $(GTK_BINDIR)/libgobject*.dll win-build-dir @cp $(GTK_BINDIR)/libgthread*.dll win-build-dir @cp $(GTK_BINDIR)/libgdk_pixbuf*.dll win-build-dir + @cp $(GTK_BINDIR)/libgio*.dll win-build-dir @cp $(GTK_BINDIR)/libgdk-win*.dll win-build-dir @cp $(GTK_BINDIR)/libgtk-win*.dll win-build-dir + @cp $(GTK_BINDIR)/zlib1*.dll win-build-dir @mkdir win-build-dir/locale @cp -r locale/?? win-build-dir/locale @cp -r locale/??_?? win-build-dir/locale @@ -479,19 +486,19 @@ prepare-dist: @mkdir -p win-build-dir/etc/gtk-2.0 @echo "# GdkPixbuf Image Loader Modules file" > win-build-dir/etc/gtk-2.0/gdk-pixbuf.loaders - @mkdir -p win-build-dir/etc/pango - @cp $(GTK_BINDIR)/../etc/pango/pango.aliases win-build-dir/etc/pango - @echo "# Pango Modules file" > win-build-dir/etc/pango/pango.modules - @echo "#" >> win-build-dir/etc/pango/pango.modules - @echo "pango-basic-win32.dll BasicScriptEngineWin32 PangoEngineShape PangoRenderWin32 common:" >> win-build-dir/etc/pango/pango.modules - @cp $(GTK_BINDIR)/../lib/pango/1.?.?/modules/pango-basic-win32.dll win-build-dir + #@mkdir -p win-build-dir/etc/pango + #@cp $(GTK_BINDIR)/../etc/pango/pango.aliases win-build-dir/etc/pango + #@echo "# Pango Modules file" > win-build-dir/etc/pango/pango.modules + #@echo "#" >> win-build-dir/etc/pango/pango.modules + #@echo "pango-basic-win32.dll BasicScriptEngineWin32 PangoEngineShape PangoRenderWin32 common:" >> win-build-dir/etc/pango/pango.modules + #@cp $(GTK_BINDIR)/../lib/pango/1.?.?/modules/pango-basic-win32.dll win-build-dir - @mkdir -p win-build-dir/lib/locale + @mkdir -p win-build-dir/share/locale @for i in $(PO_LOCALES); do \ - mkdir -p win-build-dir/lib/locale/$$i/LC_MESSAGES; \ - cp $(GTK_BINDIR)/../lib/locale/$$i/LC_MESSAGES/atk*.mo win-build-dir/lib/locale/$$i/LC_MESSAGES; \ - cp $(GTK_BINDIR)/../lib/locale/$$i/LC_MESSAGES/glib*.mo win-build-dir/lib/locale/$$i/LC_MESSAGES; \ - cp $(GTK_BINDIR)/../lib/locale/$$i/LC_MESSAGES/gtk*.mo win-build-dir/lib/locale/$$i/LC_MESSAGES; \ + mkdir -p win-build-dir/share/locale/$$i/LC_MESSAGES; \ + cp $(GTK_BINDIR)/../share/locale/$$i/LC_MESSAGES/atk*.mo win-build-dir/share/locale/$$i/LC_MESSAGES; \ + cp $(GTK_BINDIR)/../share/locale/$$i/LC_MESSAGES/glib*.mo win-build-dir/share/locale/$$i/LC_MESSAGES; \ + cp $(GTK_BINDIR)/../share/locale/$$i/LC_MESSAGES/gtk*.mo win-build-dir/share/locale/$$i/LC_MESSAGES; \ done windist: dvdisaster pack-images prepare-dist diff --git a/bitmap.c b/bitmap.c index ad025a1..75208de 100644 --- a/bitmap.c +++ b/bitmap.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/build.c b/build.c index 70ceab3..a8d482d 100644 --- a/build.c +++ b/build.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/build.h b/build.h index 66a38b2..e3b166a 100644 --- a/build.h +++ b/build.h @@ -1,2 +1,2 @@ -#define BUILD 20 -#define BDATE "08.08.09 (Samstag, 20:46)" +#define BUILD 4 +#define BDATE "27.09.11 (Dienstag, 19:37)" diff --git a/closure.c b/closure.c index 7388e72..a34bb5d 100644 --- a/closure.c +++ b/closure.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -431,12 +431,12 @@ void ReadDotfile() while(TRUE) { int n; char symbol[41]; - char *value; + char *value, *ignore; /* Get first MAX_LINE_LEN bytes of line, discard the rest */ line[MAX_LINE_LEN-1] = 1; - fgets(line, MAX_LINE_LEN, dotfile); + ignore = fgets(line, MAX_LINE_LEN, dotfile); if(!line[MAX_LINE_LEN-1]) /* line longer than buffer */ while(!feof(dotfile) && fgetc(dotfile) != '\n') ; @@ -707,6 +707,7 @@ void InitClosure() Closure->querySize = 2; Closure->fillUnreadable = -1; Closure->welcomeMessage = 1; + Closure->useSCSIDriver = DRIVER_CDROM_DEFAULT; /* default sizes for typical CD and DVD media */ diff --git a/configure b/configure index 945ff9a..5f54f4a 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ fi PACKAGE dvdisaster 0.72 -REL_MICRO=1 +REL_MICRO=3 REL_STATUS=patch #REL_STATUS=devel #REL_STATUS=rc diff --git a/crc32.c b/crc32.c index 86e773c..f472f93 100644 --- a/crc32.c +++ b/crc32.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/crcbuf.c b/crcbuf.c index 8503417..21adf48 100644 --- a/crcbuf.c +++ b/crcbuf.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/curve.c b/curve.c index 9c18af4..9e05b5e 100644 --- a/curve.c +++ b/curve.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/debug.c b/debug.c index 492b1e4..707c498 100644 --- a/debug.c +++ b/debug.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/documentation/de/download.html b/documentation/de/download.html index 0186047..de50888 100644 --- a/documentation/de/download.html +++ b/documentation/de/download.html @@ -1,7 +1,8 @@ - dvdisaster + + Herunterladen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -104,7 +105,7 @@ rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog. Sie sind eingeladen, die nächste dvdisaster-Version auszuprobieren, aber beachten Sie bitte, daß diese Version noch Fehler und Kompatibilitätsprobleme enthalten kann. Die neueste experimentelle Version -ist 0.72 (pl1). +ist 0.72 (pl3). --->
 
@@ -112,22 +113,24 @@ ist 0.72 (pl1). Stabile Version - zum Einstieg empfohlen

- + @@ -149,6 +152,16 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl3 In der "Vergleichen"-Funktion wurde ein Fehler +behoben, der bei der Verarbeitung von RS01-Fehlerkorrektur-Dateien +auftrat, die größer als 2GB waren. Danke an Volodymyr Bychkoviak +für die Problembeschreibung und die Korrektur. (05-Okt-2011)

+ +0.72 pl2 Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. Die Kompatibilität mit dem +neuen Versionszweig 0.79.x wurde verbessert. (31-Okt-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde ein Workaround eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)

@@ -269,7 +282,7 @@ betrachtet werden. Einige interessante Dateien darin sind:

- +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7205-Okt-2011
- + - + - + - + - + - + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.3.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.3.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.72.3.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.3.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.3-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.3-setup.exe.gpg
Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
- Copyright 2004-2009 Carsten Gnörlich.
+ Copyright 2004-2011 Carsten Gnörlich.
Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
diff --git a/documentation/de/download.php b/documentation/de/download.php index f3404d2..132bd9e 100644 --- a/documentation/de/download.php +++ b/documentation/de/download.php @@ -1,6 +1,6 @@ @@ -52,22 +53,76 @@ ist . Stabile Version - zum Einstieg empfohlen

- + @@ -89,6 +144,16 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl3 In der "Vergleichen"-Funktion wurde ein Fehler +behoben, der bei der Verarbeitung von RS01-Fehlerkorrektur-Dateien +auftrat, die größer als 2GB waren. Danke an Volodymyr Bychkoviak +für die Problembeschreibung und die Korrektur. (05-Okt-2011)

+ +0.72 pl2 Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. Die Kompatibilität mit dem +neuen Versionszweig 0.79.x wurde verbessert. (31-Okt-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde ein Workaround eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)

diff --git a/documentation/de/download10.html b/documentation/de/download10.html index 1038d5d..1d3e859 100644 --- a/documentation/de/download10.html +++ b/documentation/de/download10.html @@ -1,7 +1,8 @@ - dvdisaster + + Systemvoraussetzungen @@ -11,7 +12,7 @@

- +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7205-Okt-2011
- + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.3.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.3.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.72.3.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.3.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.3-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.3-setup.exe.gpg
Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.2.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.2.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.2-setup.exe.gpg
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72-setup.exe
Digitale Unterschrift: dvdisaster-0.72-setup.exe.gpg
dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -92,7 +93,7 @@
  • GNU/Linux ab Kernel 2.6.7

  • -
  • Mac OS X ab Version 10.4 (Tiger),
    +
  • Mac OS X ab Version 10.6,
    auf x86 und PowerPC-Hardware.

  • NetBSD ab Version 3.1.

  • @@ -126,7 +127,7 @@
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/download10.php b/documentation/de/download10.php index 49796b3..1b6a733 100644 --- a/documentation/de/download10.php +++ b/documentation/de/download10.php @@ -1,6 +1,6 @@
  • GNU/Linux ab Kernel 2.6.7

  • -
  • Mac OS X ab Version 10.4 (Tiger),
    +
  • Mac OS X ab Version 10.6,
    auf x86 und PowerPC-Hardware.

  • NetBSD ab Version 3.1.

  • diff --git a/documentation/de/download20.html b/documentation/de/download20.html index bf2bda9..a95ec6c 100644 --- a/documentation/de/download20.html +++ b/documentation/de/download20.html @@ -1,7 +1,8 @@ - dvdisaster + + Digitale Unterschrift @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -123,7 +124,7 @@ den Betreff "GPG finger print".
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/download20.php b/documentation/de/download20.php index f55fd60..34ac93b 100644 --- a/documentation/de/download20.php +++ b/documentation/de/download20.php @@ -1,6 +1,6 @@ - dvdisaster + + Installation @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -117,7 +118,7 @@ Für die Windows-Version gilt übrigens sinngemäß das Gleiche ;-)

    Installieren der Binärversion für Windows

    Zum Installieren der Windows-Version führen Sie bitte das -Installations-Programm (z.B. dvdisaster-0.72.1-setup.exe) +Installations-Programm (z.B. dvdisaster-0.72.3-setup.exe) aus. Es enthält einen Dialog zum Einrichten von dvdisaster.

    Warnung: Sie können dvdisaster nicht installieren, indem Sie @@ -153,7 +154,7 @@ zusammenhängen.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/download30.php b/documentation/de/download30.php index 86e22ee..cc69c0a 100644 --- a/documentation/de/download30.php +++ b/documentation/de/download30.php @@ -1,6 +1,6 @@ Verwenden Sie im Zweifelsfall die stabile Version 0.72 -und warten Sie auf die Veröffentlichung von Version 0.74. +und warten Sie auf die Veröffentlichung von Version 0.80.

    Herunterladen

    -Die Alpha-Versionen verwenden das gleiche Paketformat wie die normalen -Versionen.

    - - - - - - -
    dvdisaster-0.73 (devel1)xx-XXX-2009
    - - - - - - - - - - -
      Quellkode für alle Betriebssysteme: dvdisaster-0.73.1.tar.bz2
    Digitale Unterschrift: dvdisaster-0.73.1.tar.bz2.gpg
    Binärversion für Windows: dvdisaster-0.73.1-setup.exe
    Digitale Unterschrift: dvdisaster-0.73.1-setup.exe.gpg
    -
    -Not yet released. -

    +Einen aktuellen Überblick über verfügbare Alpha-Versionen finden +Sie in der Online-Version dieser Seiten. diff --git a/documentation/de/download_showall=0.html b/documentation/de/download_showall=0.html new file mode 100644 index 0000000..691c0b5 --- /dev/null +++ b/documentation/de/download_showall=0.html @@ -0,0 +1,295 @@ + + + + + Herunterladen + + + + + + + + + + +
    + dvdisaster + Version 0.72 (pl3) + +  Zur Internet-Version + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Inhalt + + + + +

    + + + + + + + + + + + + + + + + + +
    Neuigkeiten
    Überblick
    Typische Anwendungen
    Herunterladen
    ·Systemvoraussetzungen
    ·Digitale Unterschrift
    ·Installation
    Fragen und Antworten
    Fehler berichten
    +

    +
    + + + +

    dvdisaster herunterladen

    + +dvdisaster unterstützt die Betriebssysteme Darwin/Mac OS X, FreeBSD, GNU/Linux, NetBSD und Windows in den aktuellen Versionen. +Es wird Ihnen +als freie Software +unter der GNU General Public License v2*) zur +Verfügung gestellt.

    + +Laden Sie sich bitte entweder den Quellkode oder eine Binärversion +aus der folgenden Liste herunter. Die Pakete können mit +einer digitalen Unterschrift auf +ihren Ursprungszustand überprüft werden.

    + +

      +
    • Die Quellkode-Version enthält eine Datei INSTALL mit weiteren +Informationen zum Übersetzen des Programmes.
    • +
    • Für Mac OS X laden Sie bitte das ZIP-Archiv herunter und packen es an einer +beliebigen Stelle aus. Bitte beachten Sie die +speziellen Hinweise für Mac OS X.
    • +
    • Um die Binärversion für Windows zu installieren, +rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog.
    • +
    + + + +
     
    + +Stabile Version - zum Einstieg empfohlen

    + + + + + + +
    dvdisaster-0.7205-Okt-2011
    + + + + + + + + + + + + + + + +
      Quellkode für alle Betriebssysteme: dvdisaster-0.72.3.tar.bz2
    Digitale Unterschrift: dvdisaster-0.72.3.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.72.3.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.72.3-setup.exe
    Digitale Unterschrift: dvdisaster-0.72.3-setup.exe.gpg
    Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
    +
    +Grundlegende Neuerungen in dieser Version:

    +

      +
    • Unterstützung für Blu-Ray-Datenträger
    • +
    • "Raw"-Lesen und C2-Überprüfungen für CD-Datenträger
    • +
    • Einstellbare Anzahl der Leseversuche
    • +
    • Erstes "natives" Mac OS X-Paket
    • +
    • NetBSD-Port von Sergey Svishchev
    • +
    • Verbesserte Typerkennung für eingelegte Datenträger
    • +
    • Informationsfenster für eingelegten Datenträger
    • +
    • Überarbeiteter und erweiterter Dialog für Programmeinstellungen
    • +
    • Neu gestaltete und erweiterte Dokumentation
    • +
    • Russische Übersetzungen von Igor Gorbounov
    • +
    • ... und unzählige weitere kleine Sachen.
    • +
    + +Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

    + +0.72 pl3 In der "Vergleichen"-Funktion wurde ein Fehler +behoben, der bei der Verarbeitung von RS01-Fehlerkorrektur-Dateien +auftrat, die größer als 2GB waren. Danke an Volodymyr Bychkoviak +für die Problembeschreibung und die Korrektur. (05-Okt-2011)

    + +0.72 pl2 Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. Die Kompatibilität mit dem +neuen Versionszweig 0.79.x wurde verbessert. (31-Okt-2010)

    + +0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. +Es wurde ein Workaround eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen +von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)

    + +0.72 Dies ist die erste stabile Version des 0.72er-Zweiges. +Igor Gorbounov hat die russische online-Dokumentation vervollständigt +und es wurden noch einige kleine Fehler aus dem ersten +Veröffentlichungskandidaten behoben.

    +Unter neueren Windows-Versionen wird bei bestimmten Spracheinstellungen +nicht die gewünschte Bildschirmsprache dargestellt. Die Behebung +dieses Problems ist ziemlich komplex und wird erst mit Version 0.73 +erfolgen. (04-Jul-2009)

    + +0.72-rc1 Erster Kandidat für die stabile Version. (11-Apr-2009) +

    + +Vorangegangene Version - eine Aktualisierung auf Version 0.72 wird empfohlen.

    + + + + + + +
    dvdisaster-0.7004-Mär-2008
    + + + + + + + + + +
      Quellkode für alle Betriebssysteme: dvdisaster-0.70.6.tar.bz2
    Digitale Unterschrift: dvdisaster-0.70.6.tar.bz2.gpg
    Binärversion für Windows: dvdisaster-0.70.6-setup.exe
    Digitale Unterschrift: dvdisaster-0.70.6-setup.exe.gpg
    +
    +Das RS02-Fehlerkorrektur-Verfahren +wird in der graphischen Benutzeroberfläche vollständig unterstützt. +Damit erzeugte Abbilder können nun auch +mit dem angepaßten Leseverfahren verarbeitet werden.

    + +Julian Einwag hat damit begonnen, dvdisaster +für Mac OS X / Darwin anzupassen.

    + +Daniel Nylander hat die Bildschirmtexte ins Schwedische übersetzt.

    + +Patches (kleine Änderungen nach Version 0.70; die obigen Dateien wurden erneuert):

    + +pl6 Die Unterstützung von Umlauten in Dateinamen wurde +wieder rückgängig gemacht, +da sie zur fehlerhaften Bearbeitung von Dateien > 2GB unter Windows führte. +Eine korrekte Behandlung von Dateinamen mit Sonderzeichen + wird jetzt erst in der +experimentellen Version 0.71.25 erprobt. (04-Mär-2008)

    + +pl5 Behebt ein Problem mit neueren Linux-Kernen, das unter bestimmten Bedingungen zum +Einfrieren des Systems führen kann. Die Behandlung von Umlauten in Dateinamen wurde +verbessert. +Zurückportierung einiger weiterer +Verbesserungen aus 0.71.24. (24-Feb-2008).

    + +pl4 ist besser kompatibel zu zweischichtigen DVDs +(DVD-R DL und DVD+R DL).
    +Einige kleinere Fehler wurden behoben. (20-Jan-2007).

    + +pl3 behebt einen Fehler bei der Erkennung von nicht unterstützten CDs, +der unter Umständen einen blauen Bildschirm unter Windows erzeugte. +Abbruchmöglichkeit während der RS02-Erkennung für DVD RW hinzugefügt. +(10-Dez-2006).

    + +pl2 behebt eine fehlerhafte Speicherfreigabe beim Schließen des Programms. +Das Auspacken der Bildschirmfotos für die Dokumentation auf PPC-Plattformen wurde +korrigiert. Nur die Quellkode-Archive wurden erneuert. +(03-Okt-2006).

    + +pl1 behebt einen Fehler im angepaßten Lesen für RS02, durch den unter bestimmten +Bedingungen nicht genügend Daten für eine erfolgreiche Wiederherstellung gelesen wurden. +Ein paar kleine Verbesserungen an der Dokumentation und der Benutzbarkeit sind auch dabei. +(30-Jul-2006) +

    + +Der Quellkode von dvdisaster kann auch direkt im +CVS-Archiv +betrachtet werden. Einige interessante Dateien darin sind: +

      +
    • CHANGELOG- was hat sich in den letzten Versionen geändert (in Englisch);
    • +
    • CREDITS.de- wer bei dem Projekt bisher mitgemacht hat;
    • +
    • INSTALL - Installationshinweise (in Englisch);
    • +
    • README - eine Übersicht zum Quellkodearchiv (in Englisch).
    • +
    + +
     
    + +
    +*)dvdisaster wird zu einem späteren Zeitpunkt zur GNU General Public License Version 3 wechseln. + + + +
    +
    Alte Dokumentation (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2004-2011 Carsten Gnörlich.
    + Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt. +
    +
    +
    + + diff --git a/documentation/de/download_showall=1.html b/documentation/de/download_showall=1.html new file mode 100644 index 0000000..2725f4e --- /dev/null +++ b/documentation/de/download_showall=1.html @@ -0,0 +1,337 @@ + + + + + Herunterladen + + + + + + + + + + +
    + dvdisaster + Version 0.72 (pl3) + +  Zur Internet-Version + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Inhalt + + + + +

    + + + + + + + + + + + + + + + + + +
    Neuigkeiten
    Überblick
    Typische Anwendungen
    Herunterladen
    ·Systemvoraussetzungen
    ·Digitale Unterschrift
    ·Installation
    Fragen und Antworten
    Fehler berichten
    +

    +
    + + + +

    dvdisaster herunterladen

    + +dvdisaster unterstützt die Betriebssysteme Darwin/Mac OS X, FreeBSD, GNU/Linux, NetBSD und Windows in den aktuellen Versionen. +Es wird Ihnen +als freie Software +unter der GNU General Public License v2*) zur +Verfügung gestellt.

    + +Laden Sie sich bitte entweder den Quellkode oder eine Binärversion +aus der folgenden Liste herunter. Die Pakete können mit +einer digitalen Unterschrift auf +ihren Ursprungszustand überprüft werden.

    + +

      +
    • Die Quellkode-Version enthält eine Datei INSTALL mit weiteren +Informationen zum Übersetzen des Programmes.
    • +
    • Für Mac OS X laden Sie bitte das ZIP-Archiv herunter und packen es an einer +beliebigen Stelle aus. Bitte beachten Sie die +speziellen Hinweise für Mac OS X.
    • +
    • Um die Binärversion für Windows zu installieren, +rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog.
    • +
    + + + +
     
    + +Stabile Version - zum Einstieg empfohlen

    + + + + + + +
    dvdisaster-0.7205-Okt-2011
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Quellkode für alle Betriebssysteme: dvdisaster-0.72.3.tar.bz2
    Digitale Unterschrift: dvdisaster-0.72.3.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.72.3.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.72.3-setup.exe
    Digitale Unterschrift: dvdisaster-0.72.3-setup.exe.gpg
    Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
      Quellkode für alle Betriebssysteme: dvdisaster-0.72.2.tar.bz2
    Digitale Unterschrift: dvdisaster-0.72.2.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.72.2.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.72.2-setup.exe
    Digitale Unterschrift: dvdisaster-0.72.2-setup.exe.gpg
      Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
    Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.72.1-setup.exe
    Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
      Quellkode für alle Betriebssysteme: dvdisaster-0.72.tar.bz2
    Digitale Unterschrift: dvdisaster-0.72.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.72.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.72-setup.exe
    Digitale Unterschrift: dvdisaster-0.72-setup.exe.gpg
    +
    +Grundlegende Neuerungen in dieser Version:

    +

      +
    • Unterstützung für Blu-Ray-Datenträger
    • +
    • "Raw"-Lesen und C2-Überprüfungen für CD-Datenträger
    • +
    • Einstellbare Anzahl der Leseversuche
    • +
    • Erstes "natives" Mac OS X-Paket
    • +
    • NetBSD-Port von Sergey Svishchev
    • +
    • Verbesserte Typerkennung für eingelegte Datenträger
    • +
    • Informationsfenster für eingelegten Datenträger
    • +
    • Überarbeiteter und erweiterter Dialog für Programmeinstellungen
    • +
    • Neu gestaltete und erweiterte Dokumentation
    • +
    • Russische Übersetzungen von Igor Gorbounov
    • +
    • ... und unzählige weitere kleine Sachen.
    • +
    + +Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

    + +0.72 pl3 In der "Vergleichen"-Funktion wurde ein Fehler +behoben, der bei der Verarbeitung von RS01-Fehlerkorrektur-Dateien +auftrat, die größer als 2GB waren. Danke an Volodymyr Bychkoviak +für die Problembeschreibung und die Korrektur. (05-Okt-2011)

    + +0.72 pl2 Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. Die Kompatibilität mit dem +neuen Versionszweig 0.79.x wurde verbessert. (31-Okt-2010)

    + +0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. +Es wurde ein Workaround eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen +von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)

    + +0.72 Dies ist die erste stabile Version des 0.72er-Zweiges. +Igor Gorbounov hat die russische online-Dokumentation vervollständigt +und es wurden noch einige kleine Fehler aus dem ersten +Veröffentlichungskandidaten behoben.

    +Unter neueren Windows-Versionen wird bei bestimmten Spracheinstellungen +nicht die gewünschte Bildschirmsprache dargestellt. Die Behebung +dieses Problems ist ziemlich komplex und wird erst mit Version 0.73 +erfolgen. (04-Jul-2009)

    + +0.72-rc1 Erster Kandidat für die stabile Version. (11-Apr-2009) +

    + +Vorangegangene Version - eine Aktualisierung auf Version 0.72 wird empfohlen.

    + + + + + + +
    dvdisaster-0.7004-Mär-2008
    + + + + + + + + + +
      Quellkode für alle Betriebssysteme: dvdisaster-0.70.6.tar.bz2
    Digitale Unterschrift: dvdisaster-0.70.6.tar.bz2.gpg
    Binärversion für Windows: dvdisaster-0.70.6-setup.exe
    Digitale Unterschrift: dvdisaster-0.70.6-setup.exe.gpg
    +
    +Das RS02-Fehlerkorrektur-Verfahren +wird in der graphischen Benutzeroberfläche vollständig unterstützt. +Damit erzeugte Abbilder können nun auch +mit dem angepaßten Leseverfahren verarbeitet werden.

    + +Julian Einwag hat damit begonnen, dvdisaster +für Mac OS X / Darwin anzupassen.

    + +Daniel Nylander hat die Bildschirmtexte ins Schwedische übersetzt.

    + +Patches (kleine Änderungen nach Version 0.70; die obigen Dateien wurden erneuert):

    + +pl6 Die Unterstützung von Umlauten in Dateinamen wurde +wieder rückgängig gemacht, +da sie zur fehlerhaften Bearbeitung von Dateien > 2GB unter Windows führte. +Eine korrekte Behandlung von Dateinamen mit Sonderzeichen + wird jetzt erst in der +experimentellen Version 0.71.25 erprobt. (04-Mär-2008)

    + +pl5 Behebt ein Problem mit neueren Linux-Kernen, das unter bestimmten Bedingungen zum +Einfrieren des Systems führen kann. Die Behandlung von Umlauten in Dateinamen wurde +verbessert. +Zurückportierung einiger weiterer +Verbesserungen aus 0.71.24. (24-Feb-2008).

    + +pl4 ist besser kompatibel zu zweischichtigen DVDs +(DVD-R DL und DVD+R DL).
    +Einige kleinere Fehler wurden behoben. (20-Jan-2007).

    + +pl3 behebt einen Fehler bei der Erkennung von nicht unterstützten CDs, +der unter Umständen einen blauen Bildschirm unter Windows erzeugte. +Abbruchmöglichkeit während der RS02-Erkennung für DVD RW hinzugefügt. +(10-Dez-2006).

    + +pl2 behebt eine fehlerhafte Speicherfreigabe beim Schließen des Programms. +Das Auspacken der Bildschirmfotos für die Dokumentation auf PPC-Plattformen wurde +korrigiert. Nur die Quellkode-Archive wurden erneuert. +(03-Okt-2006).

    + +pl1 behebt einen Fehler im angepaßten Lesen für RS02, durch den unter bestimmten +Bedingungen nicht genügend Daten für eine erfolgreiche Wiederherstellung gelesen wurden. +Ein paar kleine Verbesserungen an der Dokumentation und der Benutzbarkeit sind auch dabei. +(30-Jul-2006) +

    + +Der Quellkode von dvdisaster kann auch direkt im +CVS-Archiv +betrachtet werden. Einige interessante Dateien darin sind: +

      +
    • CHANGELOG- was hat sich in den letzten Versionen geändert (in Englisch);
    • +
    • CREDITS.de- wer bei dem Projekt bisher mitgemacht hat;
    • +
    • INSTALL - Installationshinweise (in Englisch);
    • +
    • README - eine Übersicht zum Quellkodearchiv (in Englisch).
    • +
    + +
     
    + +
    +*)dvdisaster wird zu einem späteren Zeitpunkt zur GNU General Public License Version 3 wechseln. + + + +
    +
    Alte Dokumentation (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2004-2011 Carsten Gnörlich.
    + Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt. +
    +
    +
    + + diff --git a/documentation/de/empty.php b/documentation/de/empty.php index ff328ea..97efbc4 100644 --- a/documentation/de/empty.php +++ b/documentation/de/empty.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehler berichten @@ -11,7 +12,7 @@

    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -175,7 +176,7 @@ Vielen Dank für Ihre Mithilfe!
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/feedback.php b/documentation/de/feedback.php index 30f5a95..f575967 100644 --- a/documentation/de/feedback.php +++ b/documentation/de/feedback.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehler berichten @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -173,7 +174,7 @@ Vielen Dank für Ihre Mithilfe!
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos.html b/documentation/de/howtos.html index 4e4d9e2..0c3a74b 100644 --- a/documentation/de/howtos.html +++ b/documentation/de/howtos.html @@ -1,7 +1,8 @@ - dvdisaster + + Typische Anwendungen @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -175,7 +176,7 @@ Fehlerkorrektur-Daten benötigt werden.
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos.php b/documentation/de/howtos.php index 17761ad..afb6467 100644 --- a/documentation/de/howtos.php +++ b/documentation/de/howtos.php @@ -1,6 +1,6 @@ - dvdisaster + + Datenträger auf Lesefehler prüfen @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -131,8 +132,8 @@
    Verwandte Funktionen:

    Einlesen von beschädigten Datenträgern und - Wiederherstellen von Abbildern.Einlesen von beschädigten Datenträgern und + Wiederherstellen von Abbildern.

    @@ -165,7 +166,7 @@

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos10.php b/documentation/de/howtos10.php index 83fb022..ae363d9 100644 --- a/documentation/de/howtos10.php +++ b/documentation/de/howtos10.php @@ -1,6 +1,6 @@
    Verwandte Funktionen:

    Einlesen von beschädigten Datenträgern und - Wiederherstellen von Abbildern.Einlesen von beschädigten Datenträgern und + Wiederherstellen von Abbildern.

    diff --git a/documentation/de/howtos11.html b/documentation/de/howtos11.html index 6564fd6..b758d05 100644 --- a/documentation/de/howtos11.html +++ b/documentation/de/howtos11.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -253,7 +254,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos11.php b/documentation/de/howtos11.php index 77a43a6..cebf19f 100644 --- a/documentation/de/howtos11.php +++ b/documentation/de/howtos11.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -251,7 +252,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos11_expand=2.html b/documentation/de/howtos11_expand=2.html index 2835a6d..bc868b6 100644 --- a/documentation/de/howtos11_expand=2.html +++ b/documentation/de/howtos11_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -251,7 +252,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos11_expand=3.html b/documentation/de/howtos11_expand=3.html index 75f83e7..01b3c8a 100644 --- a/documentation/de/howtos11_expand=3.html +++ b/documentation/de/howtos11_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -251,7 +252,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos11_expand=4.html b/documentation/de/howtos11_expand=4.html index 6367e79..9af086d 100644 --- a/documentation/de/howtos11_expand=4.html +++ b/documentation/de/howtos11_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -251,7 +252,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos11_expand=5.html b/documentation/de/howtos11_expand=5.html index bace5d3..863873e 100644 --- a/documentation/de/howtos11_expand=5.html +++ b/documentation/de/howtos11_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -251,7 +252,7 @@ keine Auswirkungen auf die Überprüfung von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos12.html b/documentation/de/howtos12.html index b479e8b..28d21f1 100644 --- a/documentation/de/howtos12.html +++ b/documentation/de/howtos12.html @@ -1,7 +1,8 @@ - dvdisaster + + Prüfung durchführen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -204,7 +205,7 @@ Verschieben von Fenstern kann die Überprüfung beeinflussen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos12.php b/documentation/de/howtos12.php index 399b7e4..6363c96 100644 --- a/documentation/de/howtos12.php +++ b/documentation/de/howtos12.php @@ -1,6 +1,6 @@ - dvdisaster + + Prüfung durchführen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -204,7 +205,7 @@ Verschieben von Fenstern kann die Überprüfung beeinflussen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos12_expand=1.html b/documentation/de/howtos12_expand=1.html index 8284c68..77723d8 100644 --- a/documentation/de/howtos12_expand=1.html +++ b/documentation/de/howtos12_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Prüfung durchführen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -203,7 +204,7 @@ Verschieben von Fenstern kann die Überprüfung beeinflussen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13.html b/documentation/de/howtos13.html index 34de9b2..e2c072f 100644 --- a/documentation/de/howtos13.html +++ b/documentation/de/howtos13.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -296,7 +297,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13.php b/documentation/de/howtos13.php index 698fdba..f9f2190 100644 --- a/documentation/de/howtos13.php +++ b/documentation/de/howtos13.php @@ -1,6 +1,6 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -296,7 +297,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=1.html b/documentation/de/howtos13_expand=1.html index 841fefd..23e2bcd 100644 --- a/documentation/de/howtos13_expand=1.html +++ b/documentation/de/howtos13_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=2.html b/documentation/de/howtos13_expand=2.html index a253820..60a2cda 100644 --- a/documentation/de/howtos13_expand=2.html +++ b/documentation/de/howtos13_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=3.html b/documentation/de/howtos13_expand=3.html index 6bb843e..a0c595c 100644 --- a/documentation/de/howtos13_expand=3.html +++ b/documentation/de/howtos13_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=4.html b/documentation/de/howtos13_expand=4.html index cd2909e..c7846ad 100644 --- a/documentation/de/howtos13_expand=4.html +++ b/documentation/de/howtos13_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=5.html b/documentation/de/howtos13_expand=5.html index 7e5932c..2b88752 100644 --- a/documentation/de/howtos13_expand=5.html +++ b/documentation/de/howtos13_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos13_expand=6.html b/documentation/de/howtos13_expand=6.html index 4fe76d7..60101d8 100644 --- a/documentation/de/howtos13_expand=6.html +++ b/documentation/de/howtos13_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Ergebnisse bewerten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -294,7 +295,7 @@ oder falsch eingestellte Taktfrequenzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos14.html b/documentation/de/howtos14.html index 5cfb23c..bdf11a8 100644 --- a/documentation/de/howtos14.html +++ b/documentation/de/howtos14.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -172,7 +173,7 @@ die Anzahl der gemeldeten Fehler wird höher und ungenauer. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos14.php b/documentation/de/howtos14.php index b32316a..58a4ad8 100644 --- a/documentation/de/howtos14.php +++ b/documentation/de/howtos14.php @@ -1,6 +1,6 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -170,7 +171,7 @@ die Anzahl der gemeldeten Fehler wird höher und ungenauer. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos14_expand=2.html b/documentation/de/howtos14_expand=2.html index 64aaac8..b6d961f 100644 --- a/documentation/de/howtos14_expand=2.html +++ b/documentation/de/howtos14_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -170,7 +171,7 @@ die Anzahl der gemeldeten Fehler wird höher und ungenauer. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos20.html b/documentation/de/howtos20.html index 589eefa..9b5d1ef 100644 --- a/documentation/de/howtos20.html +++ b/documentation/de/howtos20.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Daten als Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -178,7 +179,7 @@ mehr erstellt werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos20.php b/documentation/de/howtos20.php index 73460eb..2ede581 100644 --- a/documentation/de/howtos20.php +++ b/documentation/de/howtos20.php @@ -1,6 +1,6 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -156,7 +157,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos21.php b/documentation/de/howtos21.php index 549a972..7ac539d 100644 --- a/documentation/de/howtos21.php +++ b/documentation/de/howtos21.php @@ -1,6 +1,6 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -159,7 +160,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos21_answer=2.html b/documentation/de/howtos21_answer=2.html index 2600ab9..49becdf 100644 --- a/documentation/de/howtos21_answer=2.html +++ b/documentation/de/howtos21_answer=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -161,7 +162,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos21_answer=3.html b/documentation/de/howtos21_answer=3.html index e4c3400..1eff192 100644 --- a/documentation/de/howtos21_answer=3.html +++ b/documentation/de/howtos21_answer=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -164,7 +165,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos21_answer=4.html b/documentation/de/howtos21_answer=4.html index 473ae9c..e98f4d9 100644 --- a/documentation/de/howtos21_answer=4.html +++ b/documentation/de/howtos21_answer=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -163,7 +164,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22.html b/documentation/de/howtos22.html index a04866f..5a83391 100644 --- a/documentation/de/howtos22.html +++ b/documentation/de/howtos22.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -292,7 +293,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22.php b/documentation/de/howtos22.php index 5dac6ff..f278041 100644 --- a/documentation/de/howtos22.php +++ b/documentation/de/howtos22.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22_expand=2.html b/documentation/de/howtos22_expand=2.html index ecd9a71..a4ebc30 100644 --- a/documentation/de/howtos22_expand=2.html +++ b/documentation/de/howtos22_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22_expand=3.html b/documentation/de/howtos22_expand=3.html index 95e7c22..c8eec7c 100644 --- a/documentation/de/howtos22_expand=3.html +++ b/documentation/de/howtos22_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22_expand=4.html b/documentation/de/howtos22_expand=4.html index b71b26e..b68b1b7 100644 --- a/documentation/de/howtos22_expand=4.html +++ b/documentation/de/howtos22_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22_expand=5.html b/documentation/de/howtos22_expand=5.html index 7440544..d92f272 100644 --- a/documentation/de/howtos22_expand=5.html +++ b/documentation/de/howtos22_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos22_expand=6.html b/documentation/de/howtos22_expand=6.html index 9833e93..3c6c421 100644 --- a/documentation/de/howtos22_expand=6.html +++ b/documentation/de/howtos22_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -290,7 +291,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Dateien. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23.html b/documentation/de/howtos23.html index f313c87..c457bcf 100644 --- a/documentation/de/howtos23.html +++ b/documentation/de/howtos23.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -135,7 +136,7 @@ erzeugen möchten. Klicken Sie auf eine der beiden Möglichkeiten:

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23.php b/documentation/de/howtos23.php index feb09d2..a5cf5a3 100644 --- a/documentation/de/howtos23.php +++ b/documentation/de/howtos23.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -274,7 +275,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=1&expand=1.html b/documentation/de/howtos23_way=1&expand=1.html index 54375d6..a652a53 100644 --- a/documentation/de/howtos23_way=1&expand=1.html +++ b/documentation/de/howtos23_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -279,7 +280,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=1&expand=2.html b/documentation/de/howtos23_way=1&expand=2.html index b64acb2..4615b5f 100644 --- a/documentation/de/howtos23_way=1&expand=2.html +++ b/documentation/de/howtos23_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -279,7 +280,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=1.html b/documentation/de/howtos23_way=1.html index 3a63f36..de0c292 100644 --- a/documentation/de/howtos23_way=1.html +++ b/documentation/de/howtos23_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -274,7 +275,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=2&expand=0.html b/documentation/de/howtos23_way=2&expand=0.html index aa552be..b762a28 100644 --- a/documentation/de/howtos23_way=2&expand=0.html +++ b/documentation/de/howtos23_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -213,7 +214,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=2&expand=1.html b/documentation/de/howtos23_way=2&expand=1.html index 87622fa..479aebc 100644 --- a/documentation/de/howtos23_way=2&expand=1.html +++ b/documentation/de/howtos23_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -218,7 +219,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=2&expand=2.html b/documentation/de/howtos23_way=2&expand=2.html index 00a5f34..226ce15 100644 --- a/documentation/de/howtos23_way=2&expand=2.html +++ b/documentation/de/howtos23_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -213,7 +214,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos23_way=2.html b/documentation/de/howtos23_way=2.html index aa552be..b762a28 100644 --- a/documentation/de/howtos23_way=2.html +++ b/documentation/de/howtos23_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -213,7 +214,7 @@ es ein paar Vorschläge, wie Sie die Fehlerkorrektur-Dat - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos24.html b/documentation/de/howtos24.html index 46b3ffd..5d80934 100644 --- a/documentation/de/howtos24.html +++ b/documentation/de/howtos24.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei archivieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -161,7 +162,7 @@ rekonstruieren, um an die Daten des ersten wieder heranzukommen ;-) - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos24.php b/documentation/de/howtos24.php index cbe34ac..c47cbf3 100644 --- a/documentation/de/howtos24.php +++ b/documentation/de/howtos24.php @@ -1,6 +1,6 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -157,7 +158,7 @@ Namen für die Fehlerkorrektur-Datei anzugeben, da sonst die vorherige Datei üb - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos25.php b/documentation/de/howtos25.php index 1740dae..b470353 100644 --- a/documentation/de/howtos25.php +++ b/documentation/de/howtos25.php @@ -1,6 +1,6 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -155,7 +156,7 @@ Namen für die Fehlerkorrektur-Datei anzugeben, da sonst die vorherige Datei üb - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos25_expand=2.html b/documentation/de/howtos25_expand=2.html index 38cb2af..c1d844d 100644 --- a/documentation/de/howtos25_expand=2.html +++ b/documentation/de/howtos25_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -155,7 +156,7 @@ Namen für die Fehlerkorrektur-Datei anzugeben, da sonst die vorherige Datei üb - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos30.html b/documentation/de/howtos30.html index 5e923ce..be1c50d 100644 --- a/documentation/de/howtos30.html +++ b/documentation/de/howtos30.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Daten auf dem Datenträger ablegen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -176,7 +177,7 @@ Fehlerkorrektur-Daten erweitert werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos30.php b/documentation/de/howtos30.php index bc6f752..280e2b1 100644 --- a/documentation/de/howtos30.php +++ b/documentation/de/howtos30.php @@ -1,6 +1,6 @@ - dvdisaster + + Entscheidungshilfe @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -156,7 +157,7 @@ finden Sie weitere Informationen zu den Vor- und Nachteilen der beiden Methoden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos32.html b/documentation/de/howtos32.html index b58e240..b63032d 100644 --- a/documentation/de/howtos32.html +++ b/documentation/de/howtos32.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -174,7 +175,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Daten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos32.php b/documentation/de/howtos32.php index 8b3a29f..3c1403d 100644 --- a/documentation/de/howtos32.php +++ b/documentation/de/howtos32.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -172,7 +173,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Daten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos32_expand=2.html b/documentation/de/howtos32_expand=2.html index 4809e24..0895f67 100644 --- a/documentation/de/howtos32_expand=2.html +++ b/documentation/de/howtos32_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -172,7 +173,7 @@ keine Auswirkungen auf die erstellten Fehlerkorrektur-Daten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33.html b/documentation/de/howtos33.html index 6cc25fa..c7930ca 100644 --- a/documentation/de/howtos33.html +++ b/documentation/de/howtos33.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -267,7 +268,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33.php b/documentation/de/howtos33.php index 3846fc1..f80a419 100644 --- a/documentation/de/howtos33.php +++ b/documentation/de/howtos33.php @@ -1,6 +1,6 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -267,7 +268,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_expand=1.html b/documentation/de/howtos33_expand=1.html index 8112d49..dd711b0 100644 --- a/documentation/de/howtos33_expand=1.html +++ b/documentation/de/howtos33_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -272,7 +273,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_expand=2.html b/documentation/de/howtos33_expand=2.html index bbadf76..a066fcd 100644 --- a/documentation/de/howtos33_expand=2.html +++ b/documentation/de/howtos33_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -272,7 +273,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=0&expand=0.html b/documentation/de/howtos33_way=0&expand=0.html index c2d16c9..1798d6d 100644 --- a/documentation/de/howtos33_way=0&expand=0.html +++ b/documentation/de/howtos33_way=0&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -267,7 +268,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=0&expand=1.html b/documentation/de/howtos33_way=0&expand=1.html index a43ef96..b00414c 100644 --- a/documentation/de/howtos33_way=0&expand=1.html +++ b/documentation/de/howtos33_way=0&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -272,7 +273,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=0&expand=2.html b/documentation/de/howtos33_way=0&expand=2.html index 6b2360d..c25b859 100644 --- a/documentation/de/howtos33_way=0&expand=2.html +++ b/documentation/de/howtos33_way=0&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -272,7 +273,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=0.html b/documentation/de/howtos33_way=0.html index c2d16c9..1798d6d 100644 --- a/documentation/de/howtos33_way=0.html +++ b/documentation/de/howtos33_way=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -267,7 +268,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&.html b/documentation/de/howtos33_way=1&.html index 91e8238..a29d922 100644 --- a/documentation/de/howtos33_way=1&.html +++ b/documentation/de/howtos33_way=1&.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -423,7 +424,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=0.html b/documentation/de/howtos33_way=1&expand=0.html index 91e8238..a29d922 100644 --- a/documentation/de/howtos33_way=1&expand=0.html +++ b/documentation/de/howtos33_way=1&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -423,7 +424,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=1.html b/documentation/de/howtos33_way=1&expand=1.html index 2d9856c..ed91334 100644 --- a/documentation/de/howtos33_way=1&expand=1.html +++ b/documentation/de/howtos33_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -421,7 +422,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=2.html b/documentation/de/howtos33_way=1&expand=2.html index 7fab5be..1183c77 100644 --- a/documentation/de/howtos33_way=1&expand=2.html +++ b/documentation/de/howtos33_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -421,7 +422,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=3.html b/documentation/de/howtos33_way=1&expand=3.html index f422d15..8c592d4 100644 --- a/documentation/de/howtos33_way=1&expand=3.html +++ b/documentation/de/howtos33_way=1&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -421,7 +422,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=4.html b/documentation/de/howtos33_way=1&expand=4.html index 5ab9e36..07c9aab 100644 --- a/documentation/de/howtos33_way=1&expand=4.html +++ b/documentation/de/howtos33_way=1&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -421,7 +422,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=5.html b/documentation/de/howtos33_way=1&expand=5.html index f0bd195..2a7f9d2 100644 --- a/documentation/de/howtos33_way=1&expand=5.html +++ b/documentation/de/howtos33_way=1&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -421,7 +422,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=6.html b/documentation/de/howtos33_way=1&expand=6.html index a278f1f..2cee4f9 100644 --- a/documentation/de/howtos33_way=1&expand=6.html +++ b/documentation/de/howtos33_way=1&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -428,7 +429,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1&expand=7.html b/documentation/de/howtos33_way=1&expand=7.html index 6e49778..718a051 100644 --- a/documentation/de/howtos33_way=1&expand=7.html +++ b/documentation/de/howtos33_way=1&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -428,7 +429,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=1.html b/documentation/de/howtos33_way=1.html index 91e8238..a29d922 100644 --- a/documentation/de/howtos33_way=1.html +++ b/documentation/de/howtos33_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -423,7 +424,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&.html b/documentation/de/howtos33_way=2&.html index b948b60..e82b4c7 100644 --- a/documentation/de/howtos33_way=2&.html +++ b/documentation/de/howtos33_way=2&.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -376,7 +377,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=0.html b/documentation/de/howtos33_way=2&expand=0.html index b948b60..e82b4c7 100644 --- a/documentation/de/howtos33_way=2&expand=0.html +++ b/documentation/de/howtos33_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -376,7 +377,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=1.html b/documentation/de/howtos33_way=2&expand=1.html index e437c9a..7899c6c 100644 --- a/documentation/de/howtos33_way=2&expand=1.html +++ b/documentation/de/howtos33_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -381,7 +382,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=2.html b/documentation/de/howtos33_way=2&expand=2.html index 4c4031f..19d9ad3 100644 --- a/documentation/de/howtos33_way=2&expand=2.html +++ b/documentation/de/howtos33_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -381,7 +382,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=3.html b/documentation/de/howtos33_way=2&expand=3.html index f357b03..3edc3d1 100644 --- a/documentation/de/howtos33_way=2&expand=3.html +++ b/documentation/de/howtos33_way=2&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -374,7 +375,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=4.html b/documentation/de/howtos33_way=2&expand=4.html index 8c0e06d..a79fc1f 100644 --- a/documentation/de/howtos33_way=2&expand=4.html +++ b/documentation/de/howtos33_way=2&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -374,7 +375,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=5.html b/documentation/de/howtos33_way=2&expand=5.html index 89b8f5a..c2e6b60 100644 --- a/documentation/de/howtos33_way=2&expand=5.html +++ b/documentation/de/howtos33_way=2&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -374,7 +375,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2&expand=6.html b/documentation/de/howtos33_way=2&expand=6.html index efbfc01..13a2e77 100644 --- a/documentation/de/howtos33_way=2&expand=6.html +++ b/documentation/de/howtos33_way=2&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -374,7 +375,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=2.html b/documentation/de/howtos33_way=2.html index b948b60..e82b4c7 100644 --- a/documentation/de/howtos33_way=2.html +++ b/documentation/de/howtos33_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -376,7 +377,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&.html b/documentation/de/howtos33_way=3&.html index bbffb3d..2fd0551 100644 --- a/documentation/de/howtos33_way=3&.html +++ b/documentation/de/howtos33_way=3&.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -532,7 +533,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=0.html b/documentation/de/howtos33_way=3&expand=0.html index bbffb3d..2fd0551 100644 --- a/documentation/de/howtos33_way=3&expand=0.html +++ b/documentation/de/howtos33_way=3&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -532,7 +533,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=1.html b/documentation/de/howtos33_way=3&expand=1.html index 24eda8d..33092c9 100644 --- a/documentation/de/howtos33_way=3&expand=1.html +++ b/documentation/de/howtos33_way=3&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=10.html b/documentation/de/howtos33_way=3&expand=10.html index 3a67465..cbf3dce 100644 --- a/documentation/de/howtos33_way=3&expand=10.html +++ b/documentation/de/howtos33_way=3&expand=10.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=11.html b/documentation/de/howtos33_way=3&expand=11.html index 12d19ec..00f6136 100644 --- a/documentation/de/howtos33_way=3&expand=11.html +++ b/documentation/de/howtos33_way=3&expand=11.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=2.html b/documentation/de/howtos33_way=3&expand=2.html index 6d1f430..5cb354f 100644 --- a/documentation/de/howtos33_way=3&expand=2.html +++ b/documentation/de/howtos33_way=3&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=3.html b/documentation/de/howtos33_way=3&expand=3.html index 908a326..fe15c95 100644 --- a/documentation/de/howtos33_way=3&expand=3.html +++ b/documentation/de/howtos33_way=3&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=4.html b/documentation/de/howtos33_way=3&expand=4.html index 45d2b50..09f164f 100644 --- a/documentation/de/howtos33_way=3&expand=4.html +++ b/documentation/de/howtos33_way=3&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=5.html b/documentation/de/howtos33_way=3&expand=5.html index 2e50ad8..fdfa9b7 100644 --- a/documentation/de/howtos33_way=3&expand=5.html +++ b/documentation/de/howtos33_way=3&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=6.html b/documentation/de/howtos33_way=3&expand=6.html index 0a3a64b..acf7710 100644 --- a/documentation/de/howtos33_way=3&expand=6.html +++ b/documentation/de/howtos33_way=3&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -537,7 +538,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=7.html b/documentation/de/howtos33_way=3&expand=7.html index 9478217..cc133c2 100644 --- a/documentation/de/howtos33_way=3&expand=7.html +++ b/documentation/de/howtos33_way=3&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -537,7 +538,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=8.html b/documentation/de/howtos33_way=3&expand=8.html index 9f4b047..a917db6 100644 --- a/documentation/de/howtos33_way=3&expand=8.html +++ b/documentation/de/howtos33_way=3&expand=8.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3&expand=9.html b/documentation/de/howtos33_way=3&expand=9.html index dfe7ed8..061618d 100644 --- a/documentation/de/howtos33_way=3&expand=9.html +++ b/documentation/de/howtos33_way=3&expand=9.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -530,7 +531,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos33_way=3.html b/documentation/de/howtos33_way=3.html index bbffb3d..2fd0551 100644 --- a/documentation/de/howtos33_way=3.html +++ b/documentation/de/howtos33_way=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger erzeugen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -532,7 +533,7 @@ Dies ist empfohlen, wenn Sie zum ersten Mal mit Ihrer Brennsoftware ein erweiter - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos34.html b/documentation/de/howtos34.html index 8396559..e29d79a 100644 --- a/documentation/de/howtos34.html +++ b/documentation/de/howtos34.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -143,7 +144,7 @@ Aktivieren Sie in diesem Fall die gelb markierte Funktion "Verwende höchstens . - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos34.php b/documentation/de/howtos34.php index ff3d4ad..f1e069a 100644 --- a/documentation/de/howtos34.php +++ b/documentation/de/howtos34.php @@ -1,6 +1,6 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -141,7 +142,7 @@ Aktivieren Sie in diesem Fall die gelb markierte Funktion "Verwende höchstens . - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos40.html b/documentation/de/howtos40.html index 7741fba..696ed42 100644 --- a/documentation/de/howtos40.html +++ b/documentation/de/howtos40.html @@ -1,7 +1,8 @@ - dvdisaster + + Datenträger-Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -169,7 +170,7 @@ ein defekter Datenträger und eine zugehörige Fehlerkor - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos40.php b/documentation/de/howtos40.php index 029ea1f..bd75052 100644 --- a/documentation/de/howtos40.php +++ b/documentation/de/howtos40.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    Zur Internet-Version @@ -245,7 +246,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos41.php b/documentation/de/howtos41.php index 58a6752..bd8a4a5 100644 --- a/documentation/de/howtos41.php +++ b/documentation/de/howtos41.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -243,7 +244,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos41_expand=2.html b/documentation/de/howtos41_expand=2.html index 9741355..d2c5cab 100644 --- a/documentation/de/howtos41_expand=2.html +++ b/documentation/de/howtos41_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -243,7 +244,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos41_expand=3.html b/documentation/de/howtos41_expand=3.html index 71aae2d..52e7aec 100644 --- a/documentation/de/howtos41_expand=3.html +++ b/documentation/de/howtos41_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -243,7 +244,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos41_expand=4.html b/documentation/de/howtos41_expand=4.html index b7ae777..0e64318 100644 --- a/documentation/de/howtos41_expand=4.html +++ b/documentation/de/howtos41_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -243,7 +244,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos41_expand=5.html b/documentation/de/howtos41_expand=5.html index 20a4cb0..993896d 100644 --- a/documentation/de/howtos41_expand=5.html +++ b/documentation/de/howtos41_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -243,7 +244,7 @@ keine Auswirkungen auf das Einlesen von Datenträgern. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42.html b/documentation/de/howtos42.html index ec15aad..cb30196 100644 --- a/documentation/de/howtos42.html +++ b/documentation/de/howtos42.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -356,7 +357,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42.php b/documentation/de/howtos42.php index a891ea6..6e87522 100644 --- a/documentation/de/howtos42.php +++ b/documentation/de/howtos42.php @@ -1,6 +1,6 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -356,7 +357,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42_expand=1.html b/documentation/de/howtos42_expand=1.html index 6ba7979..2c61f3f 100644 --- a/documentation/de/howtos42_expand=1.html +++ b/documentation/de/howtos42_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -355,7 +356,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42_expand=2.html b/documentation/de/howtos42_expand=2.html index 5af3c77..58f57f1 100644 --- a/documentation/de/howtos42_expand=2.html +++ b/documentation/de/howtos42_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -355,7 +356,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42_expand=3.html b/documentation/de/howtos42_expand=3.html index ad08253..41d3312 100644 --- a/documentation/de/howtos42_expand=3.html +++ b/documentation/de/howtos42_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -355,7 +356,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos42_expand=4.html b/documentation/de/howtos42_expand=4.html index 78271fd..731817b 100644 --- a/documentation/de/howtos42_expand=4.html +++ b/documentation/de/howtos42_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild rekonstruieren @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -355,7 +356,7 @@ Fehlerkorrektur-Datei können Sie mit dem neuen Datenträger weiter verwenden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43.html b/documentation/de/howtos43.html index 7d73213..26106c6 100644 --- a/documentation/de/howtos43.html +++ b/documentation/de/howtos43.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -286,7 +287,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43.php b/documentation/de/howtos43.php index 59483bf..5a19d2e 100644 --- a/documentation/de/howtos43.php +++ b/documentation/de/howtos43.php @@ -1,6 +1,6 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -284,7 +285,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43_expand=2.html b/documentation/de/howtos43_expand=2.html index 9f90b64..ebcafb5 100644 --- a/documentation/de/howtos43_expand=2.html +++ b/documentation/de/howtos43_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -284,7 +285,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43_expand=3.html b/documentation/de/howtos43_expand=3.html index 8ff4ebd..a7b2c9b 100644 --- a/documentation/de/howtos43_expand=3.html +++ b/documentation/de/howtos43_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -284,7 +285,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43_expand=4.html b/documentation/de/howtos43_expand=4.html index aa66efb..3603939 100644 --- a/documentation/de/howtos43_expand=4.html +++ b/documentation/de/howtos43_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -284,7 +285,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos43_expand=5.html b/documentation/de/howtos43_expand=5.html index e94e232..5f20d05 100644 --- a/documentation/de/howtos43_expand=5.html +++ b/documentation/de/howtos43_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Fortgeschrittene Einstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -284,7 +285,7 @@ Bildschirmfoto) und schauen Sie erneut nach, ob Raw-Dateien entstehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos50.html b/documentation/de/howtos50.html index 966772c..71cf7e0 100644 --- a/documentation/de/howtos50.html +++ b/documentation/de/howtos50.html @@ -1,7 +1,8 @@ - dvdisaster + + Informationen über Abbilder und Fehlerkorrektur-Daten anzeigen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -157,7 +158,7 @@ Fehlerkorrektur-Datei. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos50.php b/documentation/de/howtos50.php index 2f89fff..2dc2734 100644 --- a/documentation/de/howtos50.php +++ b/documentation/de/howtos50.php @@ -1,6 +1,6 @@ - dvdisaster + + Informationen anzeigen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -190,7 +191,7 @@ Fehlerkorrektur-Datei vollständig gelesen werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos51.php b/documentation/de/howtos51.php index 187ca93..893af0e 100644 --- a/documentation/de/howtos51.php +++ b/documentation/de/howtos51.php @@ -1,6 +1,6 @@ - dvdisaster + + Informationen anzeigen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -190,7 +191,7 @@ Fehlerkorrektur-Datei vollständig gelesen werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos51_expand=1.html b/documentation/de/howtos51_expand=1.html index 6fbf04a..3e99456 100644 --- a/documentation/de/howtos51_expand=1.html +++ b/documentation/de/howtos51_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Informationen anzeigen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -189,7 +190,7 @@ Fehlerkorrektur-Datei vollständig gelesen werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos52.html b/documentation/de/howtos52.html index b217330..40d48ed 100644 --- a/documentation/de/howtos52.html +++ b/documentation/de/howtos52.html @@ -1,7 +1,8 @@ - dvdisaster + + Ausgaben für Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -241,7 +242,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos52.php b/documentation/de/howtos52.php index e9e4eb4..5ed1331 100644 --- a/documentation/de/howtos52.php +++ b/documentation/de/howtos52.php @@ -1,6 +1,6 @@ - dvdisaster + + Ausgaben für Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -241,7 +242,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos52_expand=1.html b/documentation/de/howtos52_expand=1.html index bd0dcec..cb665c3 100644 --- a/documentation/de/howtos52_expand=1.html +++ b/documentation/de/howtos52_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Ausgaben für Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -240,7 +241,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos53.html b/documentation/de/howtos53.html index 09388ae..55eb3d4 100644 --- a/documentation/de/howtos53.html +++ b/documentation/de/howtos53.html @@ -1,7 +1,8 @@ - dvdisaster + + Ausgaben für erweiterte Abbilder @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -233,7 +234,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos53.php b/documentation/de/howtos53.php index 0e25c58..aec005c 100644 --- a/documentation/de/howtos53.php +++ b/documentation/de/howtos53.php @@ -1,6 +1,6 @@ - dvdisaster + + Ausgaben für erweiterte Abbilder @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -233,7 +234,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos53_expand=1.html b/documentation/de/howtos53_expand=1.html index 1e1d81f..ff15cc9 100644 --- a/documentation/de/howtos53_expand=1.html +++ b/documentation/de/howtos53_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Ausgaben für erweiterte Abbilder @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -232,7 +233,7 @@ Anderenfalls wird dort der wichtigste aufgetretene Fehler näher erklärt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59.html b/documentation/de/howtos59.html index 68bad40..4626ddc 100644 --- a/documentation/de/howtos59.html +++ b/documentation/de/howtos59.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -237,7 +238,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59.php b/documentation/de/howtos59.php index befcc06..321dcb2 100644 --- a/documentation/de/howtos59.php +++ b/documentation/de/howtos59.php @@ -1,6 +1,6 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -235,7 +236,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59_expand=2.html b/documentation/de/howtos59_expand=2.html index 4d30da7..c917b96 100644 --- a/documentation/de/howtos59_expand=2.html +++ b/documentation/de/howtos59_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -235,7 +236,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59_expand=3.html b/documentation/de/howtos59_expand=3.html index 202e5c6..748c328 100644 --- a/documentation/de/howtos59_expand=3.html +++ b/documentation/de/howtos59_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -235,7 +236,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59_expand=4.html b/documentation/de/howtos59_expand=4.html index 26ce3ee..61b5d91 100644 --- a/documentation/de/howtos59_expand=4.html +++ b/documentation/de/howtos59_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -235,7 +236,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos59_expand=5.html b/documentation/de/howtos59_expand=5.html index a578313..7953a37 100644 --- a/documentation/de/howtos59_expand=5.html +++ b/documentation/de/howtos59_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -235,7 +236,7 @@ Daran sieht man daß die Fehlerkorrektur-Datei nicht zu dem Abbild gehört. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos60.html b/documentation/de/howtos60.html index 0ce0ea0..f3404f0 100644 --- a/documentation/de/howtos60.html +++ b/documentation/de/howtos60.html @@ -1,7 +1,8 @@ - dvdisaster + + Das große Bild @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -277,7 +278,7 @@ Personen oder Situationen sind rein zufällig. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos60.php b/documentation/de/howtos60.php index ee914f8..9f1ad50 100644 --- a/documentation/de/howtos60.php +++ b/documentation/de/howtos60.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehlerkorrektur @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -218,7 +219,7 @@ Kodierungstheorie hinzuziehen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos61.php b/documentation/de/howtos61.php index e529f4d..e922034 100644 --- a/documentation/de/howtos61.php +++ b/documentation/de/howtos61.php @@ -1,6 +1,6 @@ - dvdisaster + + richtige Anwendung @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -190,7 +191,7 @@ kaputt geht. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos62.php b/documentation/de/howtos62.php index 295c8ff..4e34397 100644 --- a/documentation/de/howtos62.php +++ b/documentation/de/howtos62.php @@ -1,6 +1,6 @@ - dvdisaster + + falsche Anwendung @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -211,7 +212,7 @@ Datenträger-Typen erstellen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos63.php b/documentation/de/howtos63.php index b929237..8ede5a6 100644 --- a/documentation/de/howtos63.php +++ b/documentation/de/howtos63.php @@ -1,6 +1,6 @@ - dvdisaster + + Abbild-Kompatibilität überprüfen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -153,7 +154,7 @@ zum ersten Mal zusammen mit dvdisaster einsetzen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos90.php b/documentation/de/howtos90.php index 1ef3188..51dea78 100644 --- a/documentation/de/howtos90.php +++ b/documentation/de/howtos90.php @@ -1,6 +1,6 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -360,7 +361,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos91.php b/documentation/de/howtos91.php index 8d88b04..87c80ee 100644 --- a/documentation/de/howtos91.php +++ b/documentation/de/howtos91.php @@ -1,6 +1,6 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -360,7 +361,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos91_expand=1.html b/documentation/de/howtos91_expand=1.html index 8fa05ba..8a6c0d1 100644 --- a/documentation/de/howtos91_expand=1.html +++ b/documentation/de/howtos91_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -359,7 +360,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos91_expand=2.html b/documentation/de/howtos91_expand=2.html index 1d5b42d..5dff7c5 100644 --- a/documentation/de/howtos91_expand=2.html +++ b/documentation/de/howtos91_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -365,7 +366,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos91_expand=3.html b/documentation/de/howtos91_expand=3.html index d2e5953..f16d964 100644 --- a/documentation/de/howtos91_expand=3.html +++ b/documentation/de/howtos91_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -365,7 +366,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos91_expand=4.html b/documentation/de/howtos91_expand=4.html index 89ceecb..a634445 100644 --- a/documentation/de/howtos91_expand=4.html +++ b/documentation/de/howtos91_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + bei Fehlerkorrektur-Dateien @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -359,7 +360,7 @@ auch den Vorteil daß der gebrannte Datenträger einmal komplett auf Lesbarkeit - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92.html b/documentation/de/howtos92.html index a198b14..84e99b7 100644 --- a/documentation/de/howtos92.html +++ b/documentation/de/howtos92.html @@ -1,7 +1,8 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -312,7 +313,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92.php b/documentation/de/howtos92.php index 882a637..04982b9 100644 --- a/documentation/de/howtos92.php +++ b/documentation/de/howtos92.php @@ -1,6 +1,6 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -312,7 +313,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92_expand=1.html b/documentation/de/howtos92_expand=1.html index 91eead6..42172eb 100644 --- a/documentation/de/howtos92_expand=1.html +++ b/documentation/de/howtos92_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -311,7 +312,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92_expand=2.html b/documentation/de/howtos92_expand=2.html index e0ef1e5..21e2289 100644 --- a/documentation/de/howtos92_expand=2.html +++ b/documentation/de/howtos92_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -317,7 +318,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92_expand=3.html b/documentation/de/howtos92_expand=3.html index cc0a8e2..3e870c0 100644 --- a/documentation/de/howtos92_expand=3.html +++ b/documentation/de/howtos92_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -317,7 +318,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos92_expand=4.html b/documentation/de/howtos92_expand=4.html index 91c78c8..f18661c 100644 --- a/documentation/de/howtos92_expand=4.html +++ b/documentation/de/howtos92_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + beim Ablegen von Fehlerkorrektur-Daten auf dem Datenträger @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -311,7 +312,7 @@ Führen Sie den Test erneut mit der Software eines anderen Herstellers aus. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtos_winfile.php b/documentation/de/howtos_winfile.php index 2eb2b92..709e1aa 100644 --- a/documentation/de/howtos_winfile.php +++ b/documentation/de/howtos_winfile.php @@ -1,6 +1,6 @@ diff --git a/documentation/de/howtosa0.html b/documentation/de/howtosa0.html index f87064d..8f073ec 100644 --- a/documentation/de/howtosa0.html +++ b/documentation/de/howtosa0.html @@ -1,7 +1,8 @@ - dvdisaster + + Bedienelemente @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -146,7 +147,7 @@ Dieses Kapitel erklärt einige der häufig verwendeten Bedienelemente: - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa0.php b/documentation/de/howtosa0.php index e9d12ce..b30450f 100644 --- a/documentation/de/howtosa0.php +++ b/documentation/de/howtosa0.php @@ -1,6 +1,6 @@ - dvdisaster + + Laufwerk auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -154,7 +155,7 @@ Ausgeklappte Auswahl unter Windows - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa1.php b/documentation/de/howtosa1.php index 81fe857..6edb6f4 100644 --- a/documentation/de/howtosa1.php +++ b/documentation/de/howtosa1.php @@ -1,6 +1,6 @@ - dvdisaster + + Laufwerk auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -152,7 +153,7 @@ Ausgeklappte Auswahl unter Windows - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa2.html b/documentation/de/howtosa2.html index 2c41cf8..6e13adf 100644 --- a/documentation/de/howtosa2.html +++ b/documentation/de/howtosa2.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -198,7 +199,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa2.php b/documentation/de/howtosa2.php index 7ba4edd..5b9b08b 100644 --- a/documentation/de/howtosa2.php +++ b/documentation/de/howtosa2.php @@ -1,6 +1,6 @@ - dvdisaster + + Abbild-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -196,7 +197,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa2_expand=2.html b/documentation/de/howtosa2_expand=2.html index 63e3840..b960b41 100644 --- a/documentation/de/howtosa2_expand=2.html +++ b/documentation/de/howtosa2_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Abbild-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -196,7 +197,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa3.html b/documentation/de/howtosa3.html index 09bf659..b49a961 100644 --- a/documentation/de/howtosa3.html +++ b/documentation/de/howtosa3.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -194,7 +195,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa3.php b/documentation/de/howtosa3.php index 5d6e18e..ffa202a 100644 --- a/documentation/de/howtosa3.php +++ b/documentation/de/howtosa3.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehlerkorrektur-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -192,7 +193,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa3_expand=2.html b/documentation/de/howtosa3_expand=2.html index c89409d..4343c1a 100644 --- a/documentation/de/howtosa3_expand=2.html +++ b/documentation/de/howtosa3_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Fehlerkorrektur-Datei auswählen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -192,7 +193,7 @@ dazu muß der gelb hervorgehobene Bereich (s.o.) verwendet werden. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa4.html b/documentation/de/howtosa4.html index 27ba34a..204ee83 100644 --- a/documentation/de/howtosa4.html +++ b/documentation/de/howtosa4.html @@ -2,7 +2,8 @@ - dvdisaster + + Aktionen beginnen @@ -12,7 +13,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -190,7 +191,7 @@ wenn dvdisaster gerade mit dem Lesen eines beschädigten Sektors beschäftigt is - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/howtosa4.php b/documentation/de/howtosa4.php index ad52a77..74d5a60 100644 --- a/documentation/de/howtosa4.php +++ b/documentation/de/howtosa4.php @@ -1,7 +1,7 @@ - dvdisaster + + Aktionen beginnen @@ -12,7 +13,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -188,7 +189,7 @@ wenn dvdisaster gerade mit dem Lesen eines beschädigten Sektors beschäftigt is - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/imprint.php b/documentation/de/imprint.php index d41495c..5d25411 100644 --- a/documentation/de/imprint.php +++ b/documentation/de/imprint.php @@ -1,6 +1,6 @@ - dvdisaster + + Überblick @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -123,29 +124,41 @@ Solche Funktionen sind mit den Zielen und dem inneren Aufbau von dvdisaster nich

    + 05.10.2011
    + + dvdisaster 0.72.3 veröffentlicht +

    + 31.10.2010
    + + dvdisaster 0.72.2 veröffentlicht +

    + 10.08.2009
    + + Projektseiten auf SourceForge nicht aktuell +

    08.08.2009
    - dvdisaster 0.72.1 veröffentlicht + dvdisaster 0.72.1 veröffentlicht

    04.07.2009
    - dvdisaster 0.72 veröffentlicht + dvdisaster 0.72 veröffentlicht

    14.04.2009
    - Nachgelegt: dvdisaster 0.72.rc1 für Mac OS X + Nachgelegt: dvdisaster 0.72.rc1 für Mac OS X

    11.04.2009
    - dvdisaster 0.72.rc1 veröffentlicht + dvdisaster 0.72.rc1 veröffentlicht

    08.03.2009
    - dvdisaster 0.71.28 veröffentlicht + dvdisaster 0.71.28 veröffentlicht

    18.01.2009
    - dvdisaster 0.71.27 veröffentlicht + dvdisaster 0.71.27 veröffentlicht

    @@ -173,7 +186,7 @@ Solche Funktionen sind mit den Zielen und dem inneren Aufbau von dvdisaster nich - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index.php b/documentation/de/index.php index 887a95b..5add5d2 100644 --- a/documentation/de/index.php +++ b/documentation/de/index.php @@ -1,6 +1,6 @@ - dvdisaster + + Beispiele für die Fehlerkorrektur @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -163,7 +164,7 @@ verloren.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index10.php b/documentation/de/index10.php index 51b7571..6641f39 100644 --- a/documentation/de/index10.php +++ b/documentation/de/index10.php @@ -1,6 +1,6 @@ - dvdisaster + + Beispiele für die Fehlerkorrektur @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -161,7 +162,7 @@ verloren.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index10_expand=2.html b/documentation/de/index10_expand=2.html index a5f3b46..40eaf60 100644 --- a/documentation/de/index10_expand=2.html +++ b/documentation/de/index10_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Beispiele für die Fehlerkorrektur @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -161,7 +162,7 @@ verloren.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index20.html b/documentation/de/index20.html index 5893d74..1ff2b43 100644 --- a/documentation/de/index20.html +++ b/documentation/de/index20.html @@ -1,7 +1,8 @@ - dvdisaster + + dvdisaster ergänzt Qualitäts-Analysen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -132,7 +133,7 @@ neuer Datenträger erstellt. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index20.php b/documentation/de/index20.php index 2bc3845..de4a486 100644 --- a/documentation/de/index20.php +++ b/documentation/de/index20.php @@ -1,6 +1,6 @@ - dvdisaster + + Vor- und Nachteile von dvdisaster @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -130,7 +131,7 @@ Arbeitsweise von dvdisaster zu erfahren. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/index30.php b/documentation/de/index30.php index b89e6e9..53804e2 100644 --- a/documentation/de/index30.php +++ b/documentation/de/index30.php @@ -1,6 +1,6 @@ - dvdisaster + + Neuigkeiten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -74,7 +75,86 @@

    Neues über dvdisaster

    - + + + +
    dvdisaster 0.72.1 veröffentlichtdvdisaster 0.72.3 veröffentlicht05.10.2011
    + + + + +
    + + + + +
    + + +
    + +Die "Vergleichen"-Funktion hing bei der Verarbeitung von +RS01-Fehlerkorrektur-Dateien, die größer als 2GB sind (die +Fehlerkorrektur-Dateien selbst werden korrekt erzeugt). +Volodymyr Bychkoviak fand das Problem und schickte eine +Korrektur. +
    +
     
    + + + + + +
    dvdisaster 0.72.2 veröffentlicht31.10.2010
    + + + + +
    + + + + +
    + + +
    + +Diese Version führt einen Workaround ein um zu verhindern +daß parallele SCSI-Kontroller unter Linux nicht +mehr reagieren. Mit Version 0.79.x erzeugte RS03-Abbilder +führen nicht mehr zu überflüssigen Fehlermeldungen. +
    +
     
    + + + + + +
    Projektseiten auf SourceForge nicht aktuell10.08.2009
    + + + + +
    + + + + +
    + + +
    + +Aufgrund von Änderungen in der Funktionalität von SourceForge +können die Inhalte der News, Downloads und des CVS nicht zeitnah +hochgeladen werden. Bitte nutzen Sie stattdessen die entsprechenden +Rubriken auf diesen Seiten (http://dvdisaster.net). +
    +
     
    + + +
    dvdisaster 0.72.1 veröffentlicht 08.08.2009
    @@ -100,7 +180,7 @@ bei bestimmten CD-RW/Laufwerks-Kominationen abzuhalten.

     
    - +
    dvdisaster 0.72 veröffentlichtdvdisaster 0.72 veröffentlicht 04.07.2009
    @@ -127,7 +207,7 @@ Veröffentlichungskandidaten behoben.

     
    - +
    Nachgelegt: dvdisaster 0.72.rc1 für Mac OS XNachgelegt: dvdisaster 0.72.rc1 für Mac OS X 14.04.2009
    @@ -154,7 +234,7 @@ Doch mit der heute aktualisierten dvdisaster-Version läßt sich schon auf dem M
     
    - +
    dvdisaster 0.72.rc1 veröffentlichtdvdisaster 0.72.rc1 veröffentlicht 11.04.2009
    @@ -182,7 +262,7 @@ finden Sie mehr Informationen.
     
    - +
    dvdisaster 0.71.28 veröffentlichtdvdisaster 0.71.28 veröffentlicht 08.03.2009
    @@ -209,7 +289,7 @@ Veröffentlichungskandidaten für den stabilen Zweig.
     
    - +
    dvdisaster 0.71.27 veröffentlichtdvdisaster 0.71.27 veröffentlicht 18.01.2009
    @@ -258,7 +338,7 @@ Veröffentlichungskandidat für den stabilen Zweig (0.72). - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/news.php b/documentation/de/news.php index 0f96a26..d16e379 100644 --- a/documentation/de/news.php +++ b/documentation/de/news.php @@ -1,6 +1,6 @@ - dvdisaster + + 2007 @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -122,7 +123,7 @@ - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/news2007.php b/documentation/de/news2007.php index b570064..618bb3f 100644 --- a/documentation/de/news2007.php +++ b/documentation/de/news2007.php @@ -1,6 +1,6 @@ - dvdisaster + + 2008 @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -210,7 +211,7 @@ eine Rückmeldung geben. Die Unterstützung von BD-Datenträgern wurde verbesser - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/news2008.php b/documentation/de/news2008.php index 975c6c9..3755d45 100644 --- a/documentation/de/news2008.php +++ b/documentation/de/news2008.php @@ -1,6 +1,6 @@ - dvdisaster + + Fragen und Antworten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -141,7 +142,7 @@ diese nicht neu zu erzeugen.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/qa.php b/documentation/de/qa.php index 46a156a..ad6f848 100644 --- a/documentation/de/qa.php +++ b/documentation/de/qa.php @@ -1,6 +1,6 @@ - dvdisaster + + Technische Fragen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -260,7 +261,7 @@ der --list -Funktion. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/qa10.php b/documentation/de/qa10.php index 82393a7..737ed0e 100644 --- a/documentation/de/qa10.php +++ b/documentation/de/qa10.php @@ -1,6 +1,6 @@ - dvdisaster + + Fehlermeldungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -238,7 +239,7 @@ nur zusammen mit dvdisaster 0.66 oder neueren Versionen. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/de/qa20.php b/documentation/de/qa20.php index cb83a94..7b3fc81 100644 --- a/documentation/de/qa20.php +++ b/documentation/de/qa20.php @@ -1,6 +1,6 @@ - dvdisaster + + Fragen und Antworten @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  Zur Internet-Version @@ -141,7 +142,7 @@ diese nicht neu zu erzeugen.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt.
    diff --git a/documentation/dvdisaster.de.1 b/documentation/dvdisaster.de.1 index 37d954b..9dac67f 100644 --- a/documentation/dvdisaster.de.1 +++ b/documentation/dvdisaster.de.1 @@ -1,4 +1,4 @@ -.TH DVDISASTER 1 "2009-07-04" "0.72" "Schutz f\[:u]r CD/DVD Medien" +.TH DVDISASTER 1 "2010-10-31" "0.72" "Schutz f\[:u]r CD/DVD Medien" .SH NAME DVDISASTER \- Schutz f\[:u]r CD/DVD Medien gegen Datenverlust durch Alterung @@ -28,6 +28,8 @@ oder Kratzer .RB [\| \-\-cache-size .IR n \|] .RB [\| \-\-dao \|] +.RB [\| \-\-driver +.IR d \|] .RB [\| \-\-eject \|] .RB [\| \-\-fill-unreadable .IR n \|] @@ -152,8 +154,56 @@ Feineinstellung (Beachten Sie die Hinweise in der Dokumentation!): .B \-j, \-\-jump n \[:u]berspringe n Sektoren nach einem Lesefehler (Standard: 16). .TP -.B \-n, \-\-redundancy n% -Redundanz der Fehlerkorrektur (Standard: 14.3%). +.B \-n, \-\-redundancy n[unit] +Redundanz der Fehlerkorrektur-Daten. Die zulässigen Werte sind vom +verwendeten Kodierer abhängig: + +.RS +RS01-Fehlerkorrektur-Dateien: +.RS +\-n x\ \ erzeugt Fehlerkorrektur-Datei mit x Nullstellen. +.RE +.RS +\-n x% erzeugt Fehlerkorrektur-Datei mit x Prozent Redundanz. +.RE +.RS +\-n xm erzeugt Fehlerkorrektur-Datei mit ca. x MB Größe. +.RE +.RS +\-n normal - optimierter Kodierer für 14.3% Redundanz/32 Nullstellen. +.RE +.RS +\-n high\ \ \ - optimierter Kodierer für 33.5% Redundanz/64 Nullstellen. +.RE +.RE + +.RS +RS02-Abbilder: +.RS +\-n CD\ \ \ erweitert Abbild auf CD-Größe. +.RE +.RS +\-n DVD\ \ erweitert Abbild auf DVD-Größe. +.RE +.RS +\-n DVD9 erweitert Abbild auf DVD9-Größe. +.RE +.RS +\-n BD\ \ \ erweitert Abbild auf BD-Größe. +.RE +.RS +\-n BD2\ erweitert Abbild auf zweilagige BD-Größe. +.RE +.RS +\-n x\ \ \ \ erweitert Abbild auf ca. x Sektoren Länge. +.RE +.RS +\-n x%\ \ \ erweitert Abbild mit ca. x% Redundanz. +.RE +.RS +\-n xr\ \ \ erweitert Abbild mit x Nullstellen Fehlerkorrektur-Daten. +.RE +.RE .TP .B \-m, \-\-method n Fehlerkorrektur-Methoden anzeigen/ausw\[:a]hlen (Standard: RS01). @@ -176,6 +226,13 @@ Zwischenspeicher in MB bei .ecc-Datei-Erzeugung - (Standard: 32MB). .B \-\-dao unterstelle DAO; Abbild am Ende nicht k\[:u]rzen. .TP +.B \-\-driver d (nur Linux) +W\[:a]hlt zwischen dem cdrom (CDROM_SEND_PACKET)-Treiber und dem +sg (SG_IO)-Treiber für die Laufwerke aus. Zur Zeit wird noch +der \[:a]ltere cdrom-Treiber als Voreinstellung verwendet; ab +dvdisaster 0.80 wird der neuere sg-Treiber die Standardauswahl. +Beide Treiber sollten gleich gut funktionieren. +.TP .B \-\-eject Datentr\[:a]ger nach erfolgreichem Lesen auswerfen. .TP diff --git a/documentation/dvdisaster.en.1 b/documentation/dvdisaster.en.1 index 0909131..064c9c5 100644 --- a/documentation/dvdisaster.en.1 +++ b/documentation/dvdisaster.en.1 @@ -1,4 +1,4 @@ -.TH DVDISASTER 1 "2009-07-04" "0.72" "protection for CD/DVD media" +.TH DVDISASTER 1 "2010-10-30" "0.72" "protection for CD/DVD media" .SH NAME DVDISASTER \- data loss/scratch/aging protection for CD/DVD media @@ -27,6 +27,8 @@ DVDISASTER \- data loss/scratch/aging protection for CD/DVD media .RB [\| \-\-cache-size .IR n \|] .RB [\| \-\-dao \|] +.RB [\| --driver +.IR d \|] .RB [\| \-\-eject \|] .RB [\| \-\-fill-unreadable .IR n \|] @@ -144,8 +146,56 @@ Tweaking options (see manual before using!): .B \-j, \-\-jump n jump n sectors forward after a read error (default: 16). .TP -.B \-n, \-\-redundancy n% -sets redundancy for error correction (default: 14.3%). +.B \-n, \-\-redundancy n[unit] +Error correction data redundancy. Allowed values depend +on the codec: + +.RS +RS01 error correction files +.RS +\-n x\ \ creates error correction file with x roots. +.RE +.RS +\-n x% creates error correction file with x percent redundancy. +.RE +.RS +\-n xm creates error correction file of approx. x MB size. +.RE +.RS +\-n normal - optimized codec for 14.3% redundancy/32 roots. +.RE +.RS +\-n high\ \ \ - optimized codec for 33.5% redundancy/64 roots. +.RE +.RE + +.RS +RS02 images: +.RS +\-n CD\ \ \ augments image suitable for CD media. +.RE +.RS +\-n DVD\ \ augments image suitable for DVD media. +.RE +.RS +\-n DVD9 augments image suitable for DVD9 media. +.RE +.RS +\-n BD\ \ \ augments image suitable for BD media. +.RE +.RS +\-n BD2\ augments image suitable for two layered BD media. +.RE +.RS +\-n x\ \ \ \ augments image using approx. x sectors in total. +.RE +.RS +\-n x%\ \ \ augments image with approx. x% redundancy. +.RE +.RS +\-n xr\ \ \ augments image with x roots error correction data. +.RE +.RE .TP .B \-m, \-\-method n lists/selects error correction methods (default: RS01). @@ -168,6 +218,13 @@ image cache size in MB during -c mode (default: 32MB). .B \-\-dao assume DAO disc; do not trim image end. .TP +.B \-\-driver d (Linux only) +Chooses between the cdrom (CDROM_SEND_PACKET) driver and the +sg (SG_IO) driver for optical drives. Currently the older cdrom +driver is pre-selected; starting with dvdisaster V0.80 the newer +sg driver will be the default. Both drivers should work equally +well, anyways. +.TP .B \-\-eject eject medium after successful read. .TP diff --git a/documentation/en/download.html b/documentation/en/download.html index 1cb1ab6..c8cee16 100644 --- a/documentation/en/download.html +++ b/documentation/en/download.html @@ -1,7 +1,8 @@ - dvdisaster + + Download @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -102,7 +103,7 @@ please execute the downloaded program and follow the dialog. Testers are welcome for the upcoming dvdisaster release, but should be aware of remaining bugs and incompatibilities. The current unstable release is -0.72 (pl1). +0.72 (pl3). -->

     
    @@ -110,22 +111,24 @@ The current unstable release is Stable version - recommended for getting started.

    - + @@ -147,6 +150,16 @@ Most important changes in this version:

    Patches (small changes after version 0.72; files above have been updated):

    +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    @@ -258,7 +271,7 @@ Some file of particular interest are:

    - +
    dvdisaster-0.7208-Aug-2009
    dvdisaster-0.7205-Oct-2011
    - + - + - + - + - + - + + +
      Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
    dvdisaster-0.72.3.tar.bz2
    Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
    dvdisaster-0.72.3.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
    dvdisaster-0.72.3.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.1.app.zip.gpg
    dvdisaster-0.72.3.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.1-setup.exe
    dvdisaster-0.72.3-setup.exe
    Digital signature: dvdisaster-0.72.1-setup.exe.gpg
    dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/download.php b/documentation/en/download.php index aadea9a..00dc9b4 100644 --- a/documentation/en/download.php +++ b/documentation/en/download.php @@ -1,6 +1,6 @@ @@ -50,22 +51,74 @@ The current unstable release is Stable version - recommended for getting started.

    - + @@ -87,6 +140,16 @@ Most important changes in this version:

    Patches (small changes after version 0.72; files above have been updated):

    +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    diff --git a/documentation/en/download10.html b/documentation/en/download10.html index a76109b..cff9329 100644 --- a/documentation/en/download10.html +++ b/documentation/en/download10.html @@ -1,7 +1,8 @@ - dvdisaster + + System requirements @@ -11,7 +12,7 @@

    - +
    dvdisaster-0.7208-Aug-2009
    dvdisaster-0.7205-Oct-2011
    - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
    dvdisaster-0.72.3.tar.bz2
    Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
    dvdisaster-0.72.3.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
    dvdisaster-0.72.3.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.1.app.zip.gpg
    dvdisaster-0.72.3.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.1-setup.exe
    dvdisaster-0.72.3-setup.exe
    Digital signature: dvdisaster-0.72.1-setup.exe.gpg
    dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    Hide older releases in the 0.72 version branch
      Source code for all operating systems: dvdisaster-0.72.2.tar.bz2
    Digital signature: dvdisaster-0.72.2.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.2.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.2-setup.exe
    Digital signature: dvdisaster-0.72.2-setup.exe.gpg
      Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
    Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.1.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.1-setup.exe
    Digital signature: dvdisaster-0.72.1-setup.exe.gpg
      Source code for all operating systems: dvdisaster-0.72.tar.bz2
    Digital signature: dvdisaster-0.72.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.app.zip.gpg
    Binary for Windows: dvdisaster-0.72-setup.exe
    Digital signature: dvdisaster-0.72-setup.exe.gpg
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -91,7 +92,7 @@
  • GNU/Linux with kernel 2.6.7 or later.

  • -
  • Mac OS X version 10.4 (Tiger) or later,
    +
  • Mac OS X version 10.6 or later,
    on x86 and PowerPC hardware.

  • NetBSD version 3.1 or later.

  • Windows 2000, Windows XP oder Windows Vista (R).
  • @@ -122,7 +123,7 @@
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/download10.php b/documentation/en/download10.php index 37ef871..d08a87d 100644 --- a/documentation/en/download10.php +++ b/documentation/en/download10.php @@ -1,6 +1,6 @@
  • GNU/Linux with kernel 2.6.7 or later.

  • -
  • Mac OS X version 10.4 (Tiger) or later,
    +
  • Mac OS X version 10.6 or later,
    on x86 and PowerPC hardware.

  • NetBSD version 3.1 or later.

  • Windows 2000, Windows XP oder Windows Vista (R).
  • diff --git a/documentation/en/download20.html b/documentation/en/download20.html index ca44c19..3558e64 100644 --- a/documentation/en/download20.html +++ b/documentation/en/download20.html @@ -1,7 +1,8 @@ - dvdisaster + + Digital signature @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -121,7 +122,7 @@ Please include "GPG finger print" in the subject line.
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/download20.php b/documentation/en/download20.php index 158bd90..0d7f3b2 100644 --- a/documentation/en/download20.php +++ b/documentation/en/download20.php @@ -1,6 +1,6 @@ - dvdisaster + + Installation @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -112,7 +113,7 @@ Similar reasons hold for the Windows version btw ;-)

    Installation of the binary for Windows

    Please install the Windows version by executing the setup binary -(e.g. dvdisaster-0.72.1-setup.exe) and follow the +(e.g. dvdisaster-0.72.3-setup.exe) and follow the installation dialog.

    Caution: dvdisaster can NOT be installed from @@ -145,7 +146,7 @@ errors which seem to be totally unrelated to an improper installation.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/download30.php b/documentation/en/download30.php index dde449e..97f939d 100644 --- a/documentation/en/download30.php +++ b/documentation/en/download30.php @@ -1,6 +1,6 @@ Downloads -The alpha versions use the same package format as the regular releases.

    - - - - - - -
    dvdisaster-0.73 (devel1)xx-XXX-2009
    - - - - - - - - - -
      Source code for all operating systems: dvdisaster-0.73.1.tar.bz2
    Digital signature: dvdisaster-0.73.1.tar.bz2.gpg
    Binary for Windows: dvdisaster-0.73.1-setup.exe
    Digital signature: dvdisaster-0.73.1-setup.exe.gpg
    -
    -Not yet released. -

    - +Please visit the online version of these pages for currently available alpha versions. diff --git a/documentation/en/download_showall=0.html b/documentation/en/download_showall=0.html new file mode 100644 index 0000000..1b5bcc8 --- /dev/null +++ b/documentation/en/download_showall=0.html @@ -0,0 +1,284 @@ + + + + + Download + + + + + + + + + + +
    + dvdisaster + Version 0.72 (pl3) + +  To the Internet version + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Contents + + + + +

    + + + + + + + + + + + + + + + + + +
    News
    Overview
    Howtos
    Download
    ·System requirements
    ·Digital signature
    ·Installation
    Questions and Answers
    Bug reporting
    +

    +
    + + + +

    Download dvdisaster

    + +dvdisaster is available for recent versions +of the FreeBSD, GNU/Linux, Mac OS X(Darwin), NetBSD +and Windows operating systems. It is provided +as free Software +under the GNU General Public License v2*).

    + +Please download either the source code or a binary version from the list below. +A digital signature is provided for verification that the +packets are in their original state.

    + +

      +
    • The source code version contains a file INSTALL with further instructions for compiling it.
    • +
    • For Mac OS X a ZIP archive is provided which is installed by unpacking it +into an arbitrary place. Please note the +special hints for Mac OS X.
    • +
    • To install the binary version for Windows +please execute the downloaded program and follow the dialog.
    • +
    + + + +
     
    + +Stable version - recommended for getting started.

    + + + + + + +
    dvdisaster-0.7205-Oct-2011
    + + + + + + + + + + + + + + + +
      Source code for all operating systems: dvdisaster-0.72.3.tar.bz2
    Digital signature: dvdisaster-0.72.3.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.3.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.3-setup.exe
    Digital signature: dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    +
    +Most important changes in this version:

    +

      +
    • Support for Blu-Ray media
    • +
    • "Raw" reading and C2 scans for CD media
    • +
    • Selectable number of reading attempts
    • +
    • First native Mac OS X application bundle
    • +
    • NetBSD-Port by Sergey Svishchev
    • +
    • Improved media type recognition
    • +
    • Info window describing inserted medium
    • +
    • Improved and enhanced preferences dialog
    • +
    • Reworked and enhanced documentation
    • +
    • Russian translations by Igor Gorbounov
    • +
    • ... and many more small changes and fixes.
    • +
    + +Patches (small changes after version 0.72; files above have been updated):

    + +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + +0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. +Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    + +0.72 This is the first stable version of the 0.72 branch. +Igor Gorbounov has completed the russian online documentation. +Some minor bugs from the first release candidate have been removed.

    +Newer Windows versions may not display the proper screen language +under certain language settings. This problem is rather complex +and will be addressed in the upcoming 0.73.x releases. (04-Jul-2009) +

    + +0.72-rc1 First release candidate. (11-Apr-2009) +

    + +Previous release - upgrading to version 0.72 is recommended.

    + + + + + + +
    dvdisaster-0.7004-Mar-2008
    + + + + + + + + + +
      Source code for all operating systems: dvdisaster-0.70.6.tar.bz2
    Digital signature: dvdisaster-0.70.6.tar.bz2.gpg
    Binary for Windows: dvdisaster-0.70.6-setup.exe
    Digital signature: dvdisaster-0.70.6-setup.exe.gpg
    +
    +The RS02 error correction method +is fully supported in the graphical user interface. Images created +with RS02 can be used +with the adaptive reading strategy.

    + +Julian Einwag started porting dvdisaster +to Mac OS X / Darwin.

    + +Daniel Nylander provided Swedish translations of the screen texts.

    + +Patches (small changes after version 0.70; files above have been updated):

    + +pl6 Rolled back support for localized file names +as it broke large file support under Windows. A new handler +for localized file names will first be tested in the experimental version +0.71.25. (04-Mar-2008)

    + +pl5 +Fixes a problem with newer Linux kernels which may lead to a frozen system under +some circumstances. Treatment of file names containing localized characters has +been improved. +Contains backports of major bug fixes from 0.71.24. (24-Feb-2008).

    + +pl4 provides better compatibility with two layered DVDs +(DVD-R DL and DVD+R DL).
    +Some minor bugs have been fixed. (20-Jan-2007).

    + +pl3 fixes incorrect recognization of unsupported CD formats which +produced a Windows blue screen under rare circumstances. Added cancel option +during RS02 initialization on DVD RW media. +(10-Dec-2006).

    + +pl2 fixes incorrect memory freeing when the program window is closed. +Unpacking of documentation screen shots is fixed for PPC platforms. +Only the source code archives have been updated. +(03-Oct-2006).

    + +pl1 fixes a bug in adaptive reading for RS02 which would sometimes result in +reading insufficient data for a successful recovery. Adds some small +improvements of documentation and usability. (30-Jul-2006) +

    + + +The dvdisaster source code is also +available via CVS. +Some file of particular interest are: +

      +
    • CHANGELOG- changes from the previous versions;
    • +
    • CREDITS.en- people involved in the project;
    • +
    • INSTALL - additional hints for installation;
    • +
    • README - a road map of the source code archive.
    • +
    + + + +
    +
    Old documentation (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2004-2011 Carsten Gnörlich.
    + Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved. +
    +
    +
    + + diff --git a/documentation/en/download_showall=1.html b/documentation/en/download_showall=1.html new file mode 100644 index 0000000..e10e44b --- /dev/null +++ b/documentation/en/download_showall=1.html @@ -0,0 +1,324 @@ + + + + + Download + + + + + + + + + + +
    + dvdisaster + Version 0.72 (pl3) + +  To the Internet version + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Contents + + + + +

    + + + + + + + + + + + + + + + + + +
    News
    Overview
    Howtos
    Download
    ·System requirements
    ·Digital signature
    ·Installation
    Questions and Answers
    Bug reporting
    +

    +
    + + + +

    Download dvdisaster

    + +dvdisaster is available for recent versions +of the FreeBSD, GNU/Linux, Mac OS X(Darwin), NetBSD +and Windows operating systems. It is provided +as free Software +under the GNU General Public License v2*).

    + +Please download either the source code or a binary version from the list below. +A digital signature is provided for verification that the +packets are in their original state.

    + +

      +
    • The source code version contains a file INSTALL with further instructions for compiling it.
    • +
    • For Mac OS X a ZIP archive is provided which is installed by unpacking it +into an arbitrary place. Please note the +special hints for Mac OS X.
    • +
    • To install the binary version for Windows +please execute the downloaded program and follow the dialog.
    • +
    + + + +
     
    + +Stable version - recommended for getting started.

    + + + + + + +
    dvdisaster-0.7205-Oct-2011
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Source code for all operating systems: dvdisaster-0.72.3.tar.bz2
    Digital signature: dvdisaster-0.72.3.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.3.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.3-setup.exe
    Digital signature: dvdisaster-0.72.3-setup.exe.gpg
    Hide older releases in the 0.72 version branch
      Source code for all operating systems: dvdisaster-0.72.2.tar.bz2
    Digital signature: dvdisaster-0.72.2.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.2.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.2-setup.exe
    Digital signature: dvdisaster-0.72.2-setup.exe.gpg
      Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
    Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.1.app.zip.gpg
    Binary for Windows: dvdisaster-0.72.1-setup.exe
    Digital signature: dvdisaster-0.72.1-setup.exe.gpg
      Source code for all operating systems: dvdisaster-0.72.tar.bz2
    Digital signature: dvdisaster-0.72.tar.bz2.gpg
    Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- please read these hints first
    Digital signature: dvdisaster-0.72.app.zip.gpg
    Binary for Windows: dvdisaster-0.72-setup.exe
    Digital signature: dvdisaster-0.72-setup.exe.gpg
    +
    +Most important changes in this version:

    +

      +
    • Support for Blu-Ray media
    • +
    • "Raw" reading and C2 scans for CD media
    • +
    • Selectable number of reading attempts
    • +
    • First native Mac OS X application bundle
    • +
    • NetBSD-Port by Sergey Svishchev
    • +
    • Improved media type recognition
    • +
    • Info window describing inserted medium
    • +
    • Improved and enhanced preferences dialog
    • +
    • Reworked and enhanced documentation
    • +
    • Russian translations by Igor Gorbounov
    • +
    • ... and many more small changes and fixes.
    • +
    + +Patches (small changes after version 0.72; files above have been updated):

    + +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + +0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. +Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    + +0.72 This is the first stable version of the 0.72 branch. +Igor Gorbounov has completed the russian online documentation. +Some minor bugs from the first release candidate have been removed.

    +Newer Windows versions may not display the proper screen language +under certain language settings. This problem is rather complex +and will be addressed in the upcoming 0.73.x releases. (04-Jul-2009) +

    + +0.72-rc1 First release candidate. (11-Apr-2009) +

    + +Previous release - upgrading to version 0.72 is recommended.

    + + + + + + +
    dvdisaster-0.7004-Mar-2008
    + + + + + + + + + +
      Source code for all operating systems: dvdisaster-0.70.6.tar.bz2
    Digital signature: dvdisaster-0.70.6.tar.bz2.gpg
    Binary for Windows: dvdisaster-0.70.6-setup.exe
    Digital signature: dvdisaster-0.70.6-setup.exe.gpg
    +
    +The RS02 error correction method +is fully supported in the graphical user interface. Images created +with RS02 can be used +with the adaptive reading strategy.

    + +Julian Einwag started porting dvdisaster +to Mac OS X / Darwin.

    + +Daniel Nylander provided Swedish translations of the screen texts.

    + +Patches (small changes after version 0.70; files above have been updated):

    + +pl6 Rolled back support for localized file names +as it broke large file support under Windows. A new handler +for localized file names will first be tested in the experimental version +0.71.25. (04-Mar-2008)

    + +pl5 +Fixes a problem with newer Linux kernels which may lead to a frozen system under +some circumstances. Treatment of file names containing localized characters has +been improved. +Contains backports of major bug fixes from 0.71.24. (24-Feb-2008).

    + +pl4 provides better compatibility with two layered DVDs +(DVD-R DL and DVD+R DL).
    +Some minor bugs have been fixed. (20-Jan-2007).

    + +pl3 fixes incorrect recognization of unsupported CD formats which +produced a Windows blue screen under rare circumstances. Added cancel option +during RS02 initialization on DVD RW media. +(10-Dec-2006).

    + +pl2 fixes incorrect memory freeing when the program window is closed. +Unpacking of documentation screen shots is fixed for PPC platforms. +Only the source code archives have been updated. +(03-Oct-2006).

    + +pl1 fixes a bug in adaptive reading for RS02 which would sometimes result in +reading insufficient data for a successful recovery. Adds some small +improvements of documentation and usability. (30-Jul-2006) +

    + + +The dvdisaster source code is also +available via CVS. +Some file of particular interest are: +

      +
    • CHANGELOG- changes from the previous versions;
    • +
    • CREDITS.en- people involved in the project;
    • +
    • INSTALL - additional hints for installation;
    • +
    • README - a road map of the source code archive.
    • +
    + + + +
    +
    Old documentation (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2004-2011 Carsten Gnörlich.
    + Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved. +
    +
    +
    + + diff --git a/documentation/en/empty.php b/documentation/en/empty.php index 946e8ec..ac54d5f 100644 --- a/documentation/en/empty.php +++ b/documentation/en/empty.php @@ -1,6 +1,6 @@ - dvdisaster + + Bug reporting @@ -11,7 +12,7 @@

    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -169,7 +170,7 @@ Thanks for your feedback!
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/feedback.php b/documentation/en/feedback.php index 3b02b4e..fec6948 100644 --- a/documentation/en/feedback.php +++ b/documentation/en/feedback.php @@ -1,6 +1,6 @@ - dvdisaster + + Bug reporting @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -167,7 +168,7 @@ Thanks for your feedback!
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos.html b/documentation/en/howtos.html index a394d07..bc32221 100644 --- a/documentation/en/howtos.html +++ b/documentation/en/howtos.html @@ -1,7 +1,8 @@ - dvdisaster + + Howtos @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -175,7 +176,7 @@ data is required.
    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos.php b/documentation/en/howtos.php index d85c93e..18b9e69 100644 --- a/documentation/en/howtos.php +++ b/documentation/en/howtos.php @@ -1,6 +1,6 @@ - dvdisaster + + Scanning media for errors @@ -11,7 +12,7 @@
    dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -130,8 +131,8 @@ However scanning will also work without error correction data.
    Related functions:

    Reading of damaged media and
    - Recovering images.
    Reading of damaged media and
    + Recovering images.

    @@ -164,7 +165,7 @@ However scanning will also work without error correction data.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos10.php b/documentation/en/howtos10.php index a252f23..6fc06c7 100644 --- a/documentation/en/howtos10.php +++ b/documentation/en/howtos10.php @@ -1,6 +1,6 @@
    Related functions:

    Reading of damaged media and
    - Recovering images.
    Reading of damaged media and
    + Recovering images.

    diff --git a/documentation/en/howtos11.html b/documentation/en/howtos11.html index dbc5f87..7317158 100644 --- a/documentation/en/howtos11.html +++ b/documentation/en/howtos11.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos11.php b/documentation/en/howtos11.php index ce6d1f5..f673fa2 100644 --- a/documentation/en/howtos11.php +++ b/documentation/en/howtos11.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -245,7 +246,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos11_expand=2.html b/documentation/en/howtos11_expand=2.html index 134da4a..f2aa8b2 100644 --- a/documentation/en/howtos11_expand=2.html +++ b/documentation/en/howtos11_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -245,7 +246,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos11_expand=3.html b/documentation/en/howtos11_expand=3.html index be00dde..b1c5a55 100644 --- a/documentation/en/howtos11_expand=3.html +++ b/documentation/en/howtos11_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -245,7 +246,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos11_expand=4.html b/documentation/en/howtos11_expand=4.html index 76b5c02..227b665 100644 --- a/documentation/en/howtos11_expand=4.html +++ b/documentation/en/howtos11_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -245,7 +246,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos11_expand=5.html b/documentation/en/howtos11_expand=5.html index ce50540..84e1f36 100644 --- a/documentation/en/howtos11_expand=5.html +++ b/documentation/en/howtos11_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -245,7 +246,7 @@ but these have no further effects on the scanning process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos12.html b/documentation/en/howtos12.html index f1db5b2..6164f51 100644 --- a/documentation/en/howtos12.html +++ b/documentation/en/howtos12.html @@ -1,7 +1,8 @@ - dvdisaster + + Performing the test @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -205,7 +206,7 @@ might affect the scanning results. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos12.php b/documentation/en/howtos12.php index 51492b6..41a876b 100644 --- a/documentation/en/howtos12.php +++ b/documentation/en/howtos12.php @@ -1,6 +1,6 @@ - dvdisaster + + Performing the test @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -205,7 +206,7 @@ might affect the scanning results. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos12_expand=1.html b/documentation/en/howtos12_expand=1.html index f429c88..0d6c2fe 100644 --- a/documentation/en/howtos12_expand=1.html +++ b/documentation/en/howtos12_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Performing the test @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -204,7 +205,7 @@ might affect the scanning results. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13.html b/documentation/en/howtos13.html index f528985..0e6b55d 100644 --- a/documentation/en/howtos13.html +++ b/documentation/en/howtos13.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -300,7 +301,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13.php b/documentation/en/howtos13.php index 4d4c250..4ba38da 100644 --- a/documentation/en/howtos13.php +++ b/documentation/en/howtos13.php @@ -1,6 +1,6 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13_expand=2.html b/documentation/en/howtos13_expand=2.html index 33e8ea1..c4973ae 100644 --- a/documentation/en/howtos13_expand=2.html +++ b/documentation/en/howtos13_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13_expand=3.html b/documentation/en/howtos13_expand=3.html index 4485a03..cd47ce5 100644 --- a/documentation/en/howtos13_expand=3.html +++ b/documentation/en/howtos13_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13_expand=4.html b/documentation/en/howtos13_expand=4.html index 34400dd..ff2a147 100644 --- a/documentation/en/howtos13_expand=4.html +++ b/documentation/en/howtos13_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13_expand=5.html b/documentation/en/howtos13_expand=5.html index 683252e..bad6349 100644 --- a/documentation/en/howtos13_expand=5.html +++ b/documentation/en/howtos13_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos13_expand=6.html b/documentation/en/howtos13_expand=6.html index 6450cae..f893b72 100644 --- a/documentation/en/howtos13_expand=6.html +++ b/documentation/en/howtos13_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Interpreting the results @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -298,7 +299,7 @@ speeds. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos14.html b/documentation/en/howtos14.html index 8405f38..247e3fc 100644 --- a/documentation/en/howtos14.html +++ b/documentation/en/howtos14.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -170,7 +171,7 @@ accurate.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos14.php b/documentation/en/howtos14.php index 8557dff..20e2d78 100644 --- a/documentation/en/howtos14.php +++ b/documentation/en/howtos14.php @@ -1,6 +1,6 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -168,7 +169,7 @@ accurate.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos14_expand=2.html b/documentation/en/howtos14_expand=2.html index 45bb952..d24d389 100644 --- a/documentation/en/howtos14_expand=2.html +++ b/documentation/en/howtos14_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -168,7 +169,7 @@ accurate.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos20.html b/documentation/en/howtos20.html index 6248cde..ace6fd1 100644 --- a/documentation/en/howtos20.html +++ b/documentation/en/howtos20.html @@ -1,7 +1,8 @@ - dvdisaster + + Putting error correction data on a separate file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -181,7 +182,7 @@ from an already defective medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos20.php b/documentation/en/howtos20.php index bb3f42a..b32a887 100644 --- a/documentation/en/howtos20.php +++ b/documentation/en/howtos20.php @@ -1,6 +1,6 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -156,7 +157,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos21.php b/documentation/en/howtos21.php index 4f958e5..c3d2d0f 100644 --- a/documentation/en/howtos21.php +++ b/documentation/en/howtos21.php @@ -1,6 +1,6 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -158,7 +159,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos21_answer=2.html b/documentation/en/howtos21_answer=2.html index b0744e3..7b168f1 100644 --- a/documentation/en/howtos21_answer=2.html +++ b/documentation/en/howtos21_answer=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -161,7 +162,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos21_answer=3.html b/documentation/en/howtos21_answer=3.html index ce5f9c8..58844b6 100644 --- a/documentation/en/howtos21_answer=3.html +++ b/documentation/en/howtos21_answer=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -164,7 +165,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos21_answer=4.html b/documentation/en/howtos21_answer=4.html index a3f8610..6fe08a8 100644 --- a/documentation/en/howtos21_answer=4.html +++ b/documentation/en/howtos21_answer=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -163,7 +164,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22.html b/documentation/en/howtos22.html index a6f5221..1d5c8bd 100644 --- a/documentation/en/howtos22.html +++ b/documentation/en/howtos22.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -299,7 +300,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22.php b/documentation/en/howtos22.php index 6d52ef6..0238f11 100644 --- a/documentation/en/howtos22.php +++ b/documentation/en/howtos22.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22_expand=2.html b/documentation/en/howtos22_expand=2.html index 7953252..3fb60af 100644 --- a/documentation/en/howtos22_expand=2.html +++ b/documentation/en/howtos22_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22_expand=3.html b/documentation/en/howtos22_expand=3.html index 4d153ad..0b41925 100644 --- a/documentation/en/howtos22_expand=3.html +++ b/documentation/en/howtos22_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22_expand=4.html b/documentation/en/howtos22_expand=4.html index 2b0cd84..4556eec 100644 --- a/documentation/en/howtos22_expand=4.html +++ b/documentation/en/howtos22_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22_expand=5.html b/documentation/en/howtos22_expand=5.html index dc84271..202f3fb 100644 --- a/documentation/en/howtos22_expand=5.html +++ b/documentation/en/howtos22_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos22_expand=6.html b/documentation/en/howtos22_expand=6.html index 435219e..d2cb3d6 100644 --- a/documentation/en/howtos22_expand=6.html +++ b/documentation/en/howtos22_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings for reading @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -297,7 +298,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23.html b/documentation/en/howtos23.html index 966b6b1..1c00228 100644 --- a/documentation/en/howtos23.html +++ b/documentation/en/howtos23.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -134,7 +135,7 @@ these two ways:

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23.php b/documentation/en/howtos23.php index 138fbf9..3041fcc 100644 --- a/documentation/en/howtos23.php +++ b/documentation/en/howtos23.php @@ -1,6 +1,6 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -272,7 +273,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=1&expand=1.html b/documentation/en/howtos23_way=1&expand=1.html index a0ec8d4..a598580 100644 --- a/documentation/en/howtos23_way=1&expand=1.html +++ b/documentation/en/howtos23_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -277,7 +278,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=1&expand=2.html b/documentation/en/howtos23_way=1&expand=2.html index ef5a725..6348f40 100644 --- a/documentation/en/howtos23_way=1&expand=2.html +++ b/documentation/en/howtos23_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -277,7 +278,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=1.html b/documentation/en/howtos23_way=1.html index d5ced0a..ae46ac2 100644 --- a/documentation/en/howtos23_way=1.html +++ b/documentation/en/howtos23_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -272,7 +273,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=2&expand=0.html b/documentation/en/howtos23_way=2&expand=0.html index 3f9d830..b33900f 100644 --- a/documentation/en/howtos23_way=2&expand=0.html +++ b/documentation/en/howtos23_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -209,7 +210,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=2&expand=1.html b/documentation/en/howtos23_way=2&expand=1.html index e79e711..afda275 100644 --- a/documentation/en/howtos23_way=2&expand=1.html +++ b/documentation/en/howtos23_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -214,7 +215,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=2&expand=2.html b/documentation/en/howtos23_way=2&expand=2.html index a77afdd..b1d1201 100644 --- a/documentation/en/howtos23_way=2&expand=2.html +++ b/documentation/en/howtos23_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -209,7 +210,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos23_way=2.html b/documentation/en/howtos23_way=2.html index 3f9d830..b33900f 100644 --- a/documentation/en/howtos23_way=2.html +++ b/documentation/en/howtos23_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the error correction file @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -209,7 +210,7 @@ damaged. Refer to the next page for some suggestions about - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos24.html b/documentation/en/howtos24.html index 109a99e..ec5559c 100644 --- a/documentation/en/howtos24.html +++ b/documentation/en/howtos24.html @@ -1,7 +1,8 @@ - dvdisaster + + Archiving error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -169,7 +170,7 @@ with the most recent one ;-) - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos24.php b/documentation/en/howtos24.php index f45221c..b123118 100644 --- a/documentation/en/howtos24.php +++ b/documentation/en/howtos24.php @@ -1,6 +1,6 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -163,7 +164,7 @@ the previous error correction file will be overwritten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos25.php b/documentation/en/howtos25.php index 8e76209..595e3ca 100644 --- a/documentation/en/howtos25.php +++ b/documentation/en/howtos25.php @@ -1,6 +1,6 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -161,7 +162,7 @@ the previous error correction file will be overwritten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos25_expand=2.html b/documentation/en/howtos25_expand=2.html index 4a5c087..91fd35f 100644 --- a/documentation/en/howtos25_expand=2.html +++ b/documentation/en/howtos25_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -161,7 +162,7 @@ the previous error correction file will be overwritten. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos30.html b/documentation/en/howtos30.html index ed19045..910bc5d 100644 --- a/documentation/en/howtos30.html +++ b/documentation/en/howtos30.html @@ -1,7 +1,8 @@ - dvdisaster + + Putting error correction data on the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -174,7 +175,7 @@ a separate file. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos30.php b/documentation/en/howtos30.php index 07e6cc0..abcffea 100644 --- a/documentation/en/howtos30.php +++ b/documentation/en/howtos30.php @@ -1,6 +1,6 @@ - dvdisaster + + Decision help @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -156,7 +157,7 @@ can be found in the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos32.html b/documentation/en/howtos32.html index 603db14..b61ee27 100644 --- a/documentation/en/howtos32.html +++ b/documentation/en/howtos32.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -176,7 +177,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos32.php b/documentation/en/howtos32.php index 929f0e7..27935ba 100644 --- a/documentation/en/howtos32.php +++ b/documentation/en/howtos32.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -174,7 +175,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos32_expand=2.html b/documentation/en/howtos32_expand=2.html index b74d69a..f13ff85 100644 --- a/documentation/en/howtos32_expand=2.html +++ b/documentation/en/howtos32_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -174,7 +175,7 @@ but these have no further effects on the error correction data creation. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33.html b/documentation/en/howtos33.html index 4c110a0..dc8394c 100644 --- a/documentation/en/howtos33.html +++ b/documentation/en/howtos33.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -268,7 +269,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33.php b/documentation/en/howtos33.php index 5d8f3df..5837b9d 100644 --- a/documentation/en/howtos33.php +++ b/documentation/en/howtos33.php @@ -1,6 +1,6 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -268,7 +269,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_expand=1.html b/documentation/en/howtos33_expand=1.html index 89e29f2..e2c98c2 100644 --- a/documentation/en/howtos33_expand=1.html +++ b/documentation/en/howtos33_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -273,7 +274,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_expand=2.html b/documentation/en/howtos33_expand=2.html index 5894429..b9d92b9 100644 --- a/documentation/en/howtos33_expand=2.html +++ b/documentation/en/howtos33_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -273,7 +274,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=0&expand=0.html b/documentation/en/howtos33_way=0&expand=0.html index 57365c5..bd52412 100644 --- a/documentation/en/howtos33_way=0&expand=0.html +++ b/documentation/en/howtos33_way=0&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -268,7 +269,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=0&expand=1.html b/documentation/en/howtos33_way=0&expand=1.html index 1dc5958..eb32a82 100644 --- a/documentation/en/howtos33_way=0&expand=1.html +++ b/documentation/en/howtos33_way=0&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -273,7 +274,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=0&expand=2.html b/documentation/en/howtos33_way=0&expand=2.html index 9459b30..dc7f8b9 100644 --- a/documentation/en/howtos33_way=0&expand=2.html +++ b/documentation/en/howtos33_way=0&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -273,7 +274,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=0.html b/documentation/en/howtos33_way=0.html index 57365c5..bd52412 100644 --- a/documentation/en/howtos33_way=0.html +++ b/documentation/en/howtos33_way=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -268,7 +269,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&.html b/documentation/en/howtos33_way=1&.html index 236e0de..8a85efb 100644 --- a/documentation/en/howtos33_way=1&.html +++ b/documentation/en/howtos33_way=1&.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -425,7 +426,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=0.html b/documentation/en/howtos33_way=1&expand=0.html index 236e0de..8a85efb 100644 --- a/documentation/en/howtos33_way=1&expand=0.html +++ b/documentation/en/howtos33_way=1&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -425,7 +426,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=1.html b/documentation/en/howtos33_way=1&expand=1.html index 9e07c5a..d8bffa4 100644 --- a/documentation/en/howtos33_way=1&expand=1.html +++ b/documentation/en/howtos33_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -423,7 +424,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=2.html b/documentation/en/howtos33_way=1&expand=2.html index ad6624f..d067618 100644 --- a/documentation/en/howtos33_way=1&expand=2.html +++ b/documentation/en/howtos33_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -423,7 +424,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=3.html b/documentation/en/howtos33_way=1&expand=3.html index ec72699..0ad6d80 100644 --- a/documentation/en/howtos33_way=1&expand=3.html +++ b/documentation/en/howtos33_way=1&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -423,7 +424,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=4.html b/documentation/en/howtos33_way=1&expand=4.html index abdd4c2..2430e00 100644 --- a/documentation/en/howtos33_way=1&expand=4.html +++ b/documentation/en/howtos33_way=1&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -423,7 +424,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=5.html b/documentation/en/howtos33_way=1&expand=5.html index dc32111..b2737cb 100644 --- a/documentation/en/howtos33_way=1&expand=5.html +++ b/documentation/en/howtos33_way=1&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -423,7 +424,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=6.html b/documentation/en/howtos33_way=1&expand=6.html index a3b6301..95548d9 100644 --- a/documentation/en/howtos33_way=1&expand=6.html +++ b/documentation/en/howtos33_way=1&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -430,7 +431,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1&expand=7.html b/documentation/en/howtos33_way=1&expand=7.html index 03cb9ab..41ca5f5 100644 --- a/documentation/en/howtos33_way=1&expand=7.html +++ b/documentation/en/howtos33_way=1&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -430,7 +431,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=1.html b/documentation/en/howtos33_way=1.html index 236e0de..8a85efb 100644 --- a/documentation/en/howtos33_way=1.html +++ b/documentation/en/howtos33_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -425,7 +426,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&.html b/documentation/en/howtos33_way=2&.html index 49d9d80..0770339 100644 --- a/documentation/en/howtos33_way=2&.html +++ b/documentation/en/howtos33_way=2&.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -375,7 +376,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=0.html b/documentation/en/howtos33_way=2&expand=0.html index 49d9d80..0770339 100644 --- a/documentation/en/howtos33_way=2&expand=0.html +++ b/documentation/en/howtos33_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -375,7 +376,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=1.html b/documentation/en/howtos33_way=2&expand=1.html index b6099f5..b13a182 100644 --- a/documentation/en/howtos33_way=2&expand=1.html +++ b/documentation/en/howtos33_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -380,7 +381,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=2.html b/documentation/en/howtos33_way=2&expand=2.html index f42851c..8d544d2 100644 --- a/documentation/en/howtos33_way=2&expand=2.html +++ b/documentation/en/howtos33_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -380,7 +381,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=3.html b/documentation/en/howtos33_way=2&expand=3.html index 40a049f..203d804 100644 --- a/documentation/en/howtos33_way=2&expand=3.html +++ b/documentation/en/howtos33_way=2&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -373,7 +374,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=4.html b/documentation/en/howtos33_way=2&expand=4.html index 5d7cf19..88f08d2 100644 --- a/documentation/en/howtos33_way=2&expand=4.html +++ b/documentation/en/howtos33_way=2&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -373,7 +374,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=5.html b/documentation/en/howtos33_way=2&expand=5.html index 14e19f9..805d21f 100644 --- a/documentation/en/howtos33_way=2&expand=5.html +++ b/documentation/en/howtos33_way=2&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -373,7 +374,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2&expand=6.html b/documentation/en/howtos33_way=2&expand=6.html index ea5fdb1..ed22052 100644 --- a/documentation/en/howtos33_way=2&expand=6.html +++ b/documentation/en/howtos33_way=2&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -373,7 +374,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=2.html b/documentation/en/howtos33_way=2.html index 49d9d80..0770339 100644 --- a/documentation/en/howtos33_way=2.html +++ b/documentation/en/howtos33_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -375,7 +376,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&.html b/documentation/en/howtos33_way=3&.html index b201ee5..2d9d9de 100644 --- a/documentation/en/howtos33_way=3&.html +++ b/documentation/en/howtos33_way=3&.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -532,7 +533,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=0.html b/documentation/en/howtos33_way=3&expand=0.html index b201ee5..2d9d9de 100644 --- a/documentation/en/howtos33_way=3&expand=0.html +++ b/documentation/en/howtos33_way=3&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -532,7 +533,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=1.html b/documentation/en/howtos33_way=3&expand=1.html index 92b36a0..38f25eb 100644 --- a/documentation/en/howtos33_way=3&expand=1.html +++ b/documentation/en/howtos33_way=3&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=10.html b/documentation/en/howtos33_way=3&expand=10.html index 7f8f4ab..fce702a 100644 --- a/documentation/en/howtos33_way=3&expand=10.html +++ b/documentation/en/howtos33_way=3&expand=10.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=11.html b/documentation/en/howtos33_way=3&expand=11.html index 0a6d686..2c21e9c 100644 --- a/documentation/en/howtos33_way=3&expand=11.html +++ b/documentation/en/howtos33_way=3&expand=11.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=2.html b/documentation/en/howtos33_way=3&expand=2.html index fc4219e..709bad4 100644 --- a/documentation/en/howtos33_way=3&expand=2.html +++ b/documentation/en/howtos33_way=3&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=3.html b/documentation/en/howtos33_way=3&expand=3.html index 87d4f41..32b0e72 100644 --- a/documentation/en/howtos33_way=3&expand=3.html +++ b/documentation/en/howtos33_way=3&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=4.html b/documentation/en/howtos33_way=3&expand=4.html index 101f18b..4225048 100644 --- a/documentation/en/howtos33_way=3&expand=4.html +++ b/documentation/en/howtos33_way=3&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=5.html b/documentation/en/howtos33_way=3&expand=5.html index a4b65ec..4d75e97 100644 --- a/documentation/en/howtos33_way=3&expand=5.html +++ b/documentation/en/howtos33_way=3&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=6.html b/documentation/en/howtos33_way=3&expand=6.html index 6157462..7009fac 100644 --- a/documentation/en/howtos33_way=3&expand=6.html +++ b/documentation/en/howtos33_way=3&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -537,7 +538,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=7.html b/documentation/en/howtos33_way=3&expand=7.html index 992c8b6..f87a938 100644 --- a/documentation/en/howtos33_way=3&expand=7.html +++ b/documentation/en/howtos33_way=3&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -537,7 +538,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=8.html b/documentation/en/howtos33_way=3&expand=8.html index babf13d..557a76a 100644 --- a/documentation/en/howtos33_way=3&expand=8.html +++ b/documentation/en/howtos33_way=3&expand=8.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3&expand=9.html b/documentation/en/howtos33_way=3&expand=9.html index c725722..9e151b3 100644 --- a/documentation/en/howtos33_way=3&expand=9.html +++ b/documentation/en/howtos33_way=3&expand=9.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -530,7 +531,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos33_way=3.html b/documentation/en/howtos33_way=3.html index b201ee5..2d9d9de 100644 --- a/documentation/en/howtos33_way=3.html +++ b/documentation/en/howtos33_way=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Creating the medium @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -532,7 +533,7 @@ interoperates well with dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos34.html b/documentation/en/howtos34.html index b0290b4..8f05170 100644 --- a/documentation/en/howtos34.html +++ b/documentation/en/howtos34.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -141,7 +142,7 @@ the maximum image size in units of sectors (1 sector = 2KB). - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos34.php b/documentation/en/howtos34.php index 6aa7c98..3adbb95 100644 --- a/documentation/en/howtos34.php +++ b/documentation/en/howtos34.php @@ -1,6 +1,6 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -139,7 +140,7 @@ the maximum image size in units of sectors (1 sector = 2KB). - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos40.html b/documentation/en/howtos40.html index 0a245eb..2022373 100644 --- a/documentation/en/howtos40.html +++ b/documentation/en/howtos40.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering media images @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -164,7 +165,7 @@ a defective medium with an appropriate error correction - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos40.php b/documentation/en/howtos40.php index 474f938..87c7f78 100644 --- a/documentation/en/howtos40.php +++ b/documentation/en/howtos40.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -249,7 +250,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos41.php b/documentation/en/howtos41.php index 2549a05..6ce9a51 100644 --- a/documentation/en/howtos41.php +++ b/documentation/en/howtos41.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos41_expand=2.html b/documentation/en/howtos41_expand=2.html index b81fe10..4020089 100644 --- a/documentation/en/howtos41_expand=2.html +++ b/documentation/en/howtos41_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos41_expand=3.html b/documentation/en/howtos41_expand=3.html index 83c967b..02eb086 100644 --- a/documentation/en/howtos41_expand=3.html +++ b/documentation/en/howtos41_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos41_expand=4.html b/documentation/en/howtos41_expand=4.html index f50e069..a241cbd 100644 --- a/documentation/en/howtos41_expand=4.html +++ b/documentation/en/howtos41_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos41_expand=5.html b/documentation/en/howtos41_expand=5.html index 494ecfa..b519195 100644 --- a/documentation/en/howtos41_expand=5.html +++ b/documentation/en/howtos41_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -247,7 +248,7 @@ but these have no further effects on the reading process. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42.html b/documentation/en/howtos42.html index 6c53926..7c499dd 100644 --- a/documentation/en/howtos42.html +++ b/documentation/en/howtos42.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -349,7 +350,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42.php b/documentation/en/howtos42.php index 643b2aa..b8dfc6d 100644 --- a/documentation/en/howtos42.php +++ b/documentation/en/howtos42.php @@ -1,6 +1,6 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -349,7 +350,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42_expand=1.html b/documentation/en/howtos42_expand=1.html index 22d87c5..a40c77b 100644 --- a/documentation/en/howtos42_expand=1.html +++ b/documentation/en/howtos42_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -348,7 +349,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42_expand=2.html b/documentation/en/howtos42_expand=2.html index fbda0cb..29d7e0f 100644 --- a/documentation/en/howtos42_expand=2.html +++ b/documentation/en/howtos42_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -348,7 +349,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42_expand=3.html b/documentation/en/howtos42_expand=3.html index d0a88f9..371f19d 100644 --- a/documentation/en/howtos42_expand=3.html +++ b/documentation/en/howtos42_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -348,7 +349,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos42_expand=4.html b/documentation/en/howtos42_expand=4.html index 988b1a7..1404df9 100644 --- a/documentation/en/howtos42_expand=4.html +++ b/documentation/en/howtos42_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Recovering the image @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -348,7 +349,7 @@ created medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43.html b/documentation/en/howtos43.html index fa34aad..990a5a1 100644 --- a/documentation/en/howtos43.html +++ b/documentation/en/howtos43.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -284,7 +285,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43.php b/documentation/en/howtos43.php index a2c7aff..27ed14e 100644 --- a/documentation/en/howtos43.php +++ b/documentation/en/howtos43.php @@ -1,6 +1,6 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -282,7 +283,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43_expand=2.html b/documentation/en/howtos43_expand=2.html index 30d0221..43e285b 100644 --- a/documentation/en/howtos43_expand=2.html +++ b/documentation/en/howtos43_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -282,7 +283,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43_expand=3.html b/documentation/en/howtos43_expand=3.html index b845654..42d295b 100644 --- a/documentation/en/howtos43_expand=3.html +++ b/documentation/en/howtos43_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -282,7 +283,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43_expand=4.html b/documentation/en/howtos43_expand=4.html index 0a7bb70..3a32322 100644 --- a/documentation/en/howtos43_expand=4.html +++ b/documentation/en/howtos43_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -282,7 +283,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos43_expand=5.html b/documentation/en/howtos43_expand=5.html index e7da7d5..e27382c 100644 --- a/documentation/en/howtos43_expand=5.html +++ b/documentation/en/howtos43_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Advanced settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -282,7 +283,7 @@ Check again whether some raw files have been created. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos50.html b/documentation/en/howtos50.html index efa8f53..8c42a8d 100644 --- a/documentation/en/howtos50.html +++ b/documentation/en/howtos50.html @@ -1,7 +1,8 @@ - dvdisaster + + Getting information about images and error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -155,7 +156,7 @@ An image file and optionally the error correction file for it. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos50.php b/documentation/en/howtos50.php index 257f4fe..1e6ae07 100644 --- a/documentation/en/howtos50.php +++ b/documentation/en/howtos50.php @@ -1,6 +1,6 @@ - dvdisaster + + Show information @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -190,7 +191,7 @@ must be fully read. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos51.php b/documentation/en/howtos51.php index bf40e2a..6b68fb8 100644 --- a/documentation/en/howtos51.php +++ b/documentation/en/howtos51.php @@ -1,6 +1,6 @@ - dvdisaster + + Show information @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -190,7 +191,7 @@ must be fully read. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos51_expand=1.html b/documentation/en/howtos51_expand=1.html index 727cf39..0ec2f1d 100644 --- a/documentation/en/howtos51_expand=1.html +++ b/documentation/en/howtos51_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Show information @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -189,7 +190,7 @@ must be fully read. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos52.html b/documentation/en/howtos52.html index a0c0492..9fab370 100644 --- a/documentation/en/howtos52.html +++ b/documentation/en/howtos52.html @@ -1,7 +1,8 @@ - dvdisaster + + Results for error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -238,7 +239,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos52.php b/documentation/en/howtos52.php index 0254d0a..ad02da8 100644 --- a/documentation/en/howtos52.php +++ b/documentation/en/howtos52.php @@ -1,6 +1,6 @@ - dvdisaster + + Results for error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -238,7 +239,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos52_expand=1.html b/documentation/en/howtos52_expand=1.html index 890b390..84be157 100644 --- a/documentation/en/howtos52_expand=1.html +++ b/documentation/en/howtos52_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Results for error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -237,7 +238,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos53.html b/documentation/en/howtos53.html index 2f5063d..febc42b 100644 --- a/documentation/en/howtos53.html +++ b/documentation/en/howtos53.html @@ -1,7 +1,8 @@ - dvdisaster + + Results für augmented images @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -230,7 +231,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos53.php b/documentation/en/howtos53.php index dff8d24..7696765 100644 --- a/documentation/en/howtos53.php +++ b/documentation/en/howtos53.php @@ -1,6 +1,6 @@ - dvdisaster + + Results für augmented images @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -230,7 +231,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos53_expand=1.html b/documentation/en/howtos53_expand=1.html index b4eb39a..3b7989a 100644 --- a/documentation/en/howtos53_expand=1.html +++ b/documentation/en/howtos53_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Results für augmented images @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -229,7 +230,7 @@ Otherwise the most important error will be explained there. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59.html b/documentation/en/howtos59.html index e6b2c1f..5d5597b 100644 --- a/documentation/en/howtos59.html +++ b/documentation/en/howtos59.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -234,7 +235,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59.php b/documentation/en/howtos59.php index c286b47..79afb9c 100644 --- a/documentation/en/howtos59.php +++ b/documentation/en/howtos59.php @@ -1,6 +1,6 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -232,7 +233,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59_expand=2.html b/documentation/en/howtos59_expand=2.html index 9eed6ea..2227c1b 100644 --- a/documentation/en/howtos59_expand=2.html +++ b/documentation/en/howtos59_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -232,7 +233,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59_expand=3.html b/documentation/en/howtos59_expand=3.html index 8a47f6f..94be87d 100644 --- a/documentation/en/howtos59_expand=3.html +++ b/documentation/en/howtos59_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -232,7 +233,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59_expand=4.html b/documentation/en/howtos59_expand=4.html index e48e1f1..1c5a6b6 100644 --- a/documentation/en/howtos59_expand=4.html +++ b/documentation/en/howtos59_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -232,7 +233,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos59_expand=5.html b/documentation/en/howtos59_expand=5.html index d6df4f7..f2b8a5d 100644 --- a/documentation/en/howtos59_expand=5.html +++ b/documentation/en/howtos59_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -232,7 +233,7 @@ This tells you that the error correction file does not belong to the image. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos60.html b/documentation/en/howtos60.html index 7a8ff89..fc678c9 100644 --- a/documentation/en/howtos60.html +++ b/documentation/en/howtos60.html @@ -1,7 +1,8 @@ - dvdisaster + + The big picture @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -271,7 +272,7 @@ persons or situations are purely conincidental. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos60.php b/documentation/en/howtos60.php index d27f8b6..925871f 100644 --- a/documentation/en/howtos60.php +++ b/documentation/en/howtos60.php @@ -1,6 +1,6 @@ - dvdisaster + + error correction @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -216,7 +217,7 @@ books in coding theory. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos61.php b/documentation/en/howtos61.php index b171407..fc45dab 100644 --- a/documentation/en/howtos61.php +++ b/documentation/en/howtos61.php @@ -1,6 +1,6 @@ - dvdisaster + + correct usage @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -188,7 +189,7 @@ in the future. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos62.php b/documentation/en/howtos62.php index 17c3023..04a036d 100644 --- a/documentation/en/howtos62.php +++ b/documentation/en/howtos62.php @@ -1,6 +1,6 @@ - dvdisaster + + incorrect usage @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -210,7 +211,7 @@ additional copies on different types of media. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos63.php b/documentation/en/howtos63.php index 426b57a..241644b 100644 --- a/documentation/en/howtos63.php +++ b/documentation/en/howtos63.php @@ -1,6 +1,6 @@ - dvdisaster + + Testing image compatibility @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -147,7 +148,7 @@ software does correctly transfer the error correction da - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos90.php b/documentation/en/howtos90.php index 0ca6fbb..ede40f8 100644 --- a/documentation/en/howtos90.php +++ b/documentation/en/howtos90.php @@ -1,6 +1,6 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  
    To the Internet version @@ -363,7 +364,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos91.php b/documentation/en/howtos91.php index ed64b17..96c5691 100644 --- a/documentation/en/howtos91.php +++ b/documentation/en/howtos91.php @@ -1,6 +1,6 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -363,7 +364,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos91_expand=1.html b/documentation/en/howtos91_expand=1.html index 1a5c056..0d79131 100644 --- a/documentation/en/howtos91_expand=1.html +++ b/documentation/en/howtos91_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -362,7 +363,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos91_expand=2.html b/documentation/en/howtos91_expand=2.html index fdf95fd..f20fecf 100644 --- a/documentation/en/howtos91_expand=2.html +++ b/documentation/en/howtos91_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -368,7 +369,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos91_expand=3.html b/documentation/en/howtos91_expand=3.html index 651ea2f..cbef6c1 100644 --- a/documentation/en/howtos91_expand=3.html +++ b/documentation/en/howtos91_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -368,7 +369,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos91_expand=4.html b/documentation/en/howtos91_expand=4.html index 46b289a..9c5764c 100644 --- a/documentation/en/howtos91_expand=4.html +++ b/documentation/en/howtos91_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + with error correction files @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -362,7 +363,7 @@ medium for readability. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92.html b/documentation/en/howtos92.html index a22b922..46f6f33 100644 --- a/documentation/en/howtos92.html +++ b/documentation/en/howtos92.html @@ -1,7 +1,8 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -309,7 +310,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92.php b/documentation/en/howtos92.php index 077bc45..3cba5d9 100644 --- a/documentation/en/howtos92.php +++ b/documentation/en/howtos92.php @@ -1,6 +1,6 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -309,7 +310,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92_expand=1.html b/documentation/en/howtos92_expand=1.html index 385fa70..97ae0a8 100644 --- a/documentation/en/howtos92_expand=1.html +++ b/documentation/en/howtos92_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -308,7 +309,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92_expand=2.html b/documentation/en/howtos92_expand=2.html index 77e2565..22119d8 100644 --- a/documentation/en/howtos92_expand=2.html +++ b/documentation/en/howtos92_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -314,7 +315,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92_expand=3.html b/documentation/en/howtos92_expand=3.html index 9d0ca0d..30ec519 100644 --- a/documentation/en/howtos92_expand=3.html +++ b/documentation/en/howtos92_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -314,7 +315,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos92_expand=4.html b/documentation/en/howtos92_expand=4.html index 61fd85d..6338da5 100644 --- a/documentation/en/howtos92_expand=4.html +++ b/documentation/en/howtos92_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + when augmenting images with error correction data @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -308,7 +309,7 @@ Perform the test again using a software from a different vendor. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtos_winfile.php b/documentation/en/howtos_winfile.php index d7e9bd6..e07699a 100644 --- a/documentation/en/howtos_winfile.php +++ b/documentation/en/howtos_winfile.php @@ -1,6 +1,6 @@ diff --git a/documentation/en/howtosa0.html b/documentation/en/howtosa0.html index 98882e7..9d349af 100644 --- a/documentation/en/howtosa0.html +++ b/documentation/en/howtosa0.html @@ -1,7 +1,8 @@ - dvdisaster + + Dialogs and buttons @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -146,7 +147,7 @@ This section explains commonly used dialogs and buttons: - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa0.php b/documentation/en/howtosa0.php index a044249..14d1999 100644 --- a/documentation/en/howtosa0.php +++ b/documentation/en/howtosa0.php @@ -1,6 +1,6 @@ - dvdisaster + + Drive selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -155,7 +156,7 @@ Unfolded selection using Windows - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa1.php b/documentation/en/howtosa1.php index 856a447..e519517 100644 --- a/documentation/en/howtosa1.php +++ b/documentation/en/howtosa1.php @@ -1,6 +1,6 @@ - dvdisaster + + Drive selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -153,7 +154,7 @@ Unfolded selection using Windows - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa2.html b/documentation/en/howtosa2.html index cd59104..20a4197 100644 --- a/documentation/en/howtosa2.html +++ b/documentation/en/howtosa2.html @@ -1,7 +1,8 @@ - dvdisaster + + Image file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -201,7 +202,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa2.php b/documentation/en/howtosa2.php index 32b5b3d..4e487fc 100644 --- a/documentation/en/howtosa2.php +++ b/documentation/en/howtosa2.php @@ -1,6 +1,6 @@ - dvdisaster + + Image file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -199,7 +200,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa2_expand=2.html b/documentation/en/howtosa2_expand=2.html index 3b8779b..3fb4a84 100644 --- a/documentation/en/howtosa2_expand=2.html +++ b/documentation/en/howtosa2_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Image file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -199,7 +200,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa3.html b/documentation/en/howtosa3.html index beda15f..3a79df7 100644 --- a/documentation/en/howtosa3.html +++ b/documentation/en/howtosa3.html @@ -1,7 +1,8 @@ - dvdisaster + + Error correction file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -197,7 +198,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa3.php b/documentation/en/howtosa3.php index f7bea79..247b71b 100644 --- a/documentation/en/howtosa3.php +++ b/documentation/en/howtosa3.php @@ -1,6 +1,6 @@ - dvdisaster + + Error correction file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -195,7 +196,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa3_expand=2.html b/documentation/en/howtosa3_expand=2.html index bc1b5c5..f2775a8 100644 --- a/documentation/en/howtosa3_expand=2.html +++ b/documentation/en/howtosa3_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Error correction file selection @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -195,7 +196,7 @@ please use the yellow part of the selection for tha - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa4.html b/documentation/en/howtosa4.html index c4f0a05..40c9b06 100644 --- a/documentation/en/howtosa4.html +++ b/documentation/en/howtosa4.html @@ -1,7 +1,8 @@ - dvdisaster + + Starting actions @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -186,7 +187,7 @@ is hit while reading a defective sector. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/howtosa4.php b/documentation/en/howtosa4.php index 2734b20..20b3c88 100644 --- a/documentation/en/howtosa4.php +++ b/documentation/en/howtosa4.php @@ -1,6 +1,6 @@ - dvdisaster + + Starting actions @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -184,7 +185,7 @@ is hit while reading a defective sector. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/imprint.php b/documentation/en/imprint.php index 01ccbf1..31e52f6 100644 --- a/documentation/en/imprint.php +++ b/documentation/en/imprint.php @@ -1,6 +1,6 @@ - dvdisaster + + Overview @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -122,29 +123,41 @@ Such functions are outside the scope of dvdisaster's internal design and goals.<

    + 03.10.2011
    + + dvdisaster 0.72.3 released +

    + 31.10.2010
    + + dvdisaster 0.72.2 released +

    + 10.08.2009
    + + Project represention on SourceForge may be outdated +

    08.08.2009
    - dvdisaster 0.72.1 released + dvdisaster 0.72.1 released

    04.07.2009
    - dvdisaster 0.72 released + dvdisaster 0.72 released

    14.04.2009
    - Added: dvdisaster 0.72.rc1 for Mac OS X + Added: dvdisaster 0.72.rc1 for Mac OS X

    11.04.2009
    - dvdisaster 0.72.rc1 released + dvdisaster 0.72.rc1 released

    08.03.2009
    - dvdisaster 0.71.28 released + dvdisaster 0.71.28 released

    18.01.2009
    - dvdisaster 0.71.27 released + dvdisaster 0.71.27 released

    @@ -172,7 +185,7 @@ Such functions are outside the scope of dvdisaster's internal design and goals.< - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index.php b/documentation/en/index.php index 8873582..9825ee3 100644 --- a/documentation/en/index.php +++ b/documentation/en/index.php @@ -1,6 +1,6 @@ - dvdisaster + + Examples of the error correction @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -159,7 +160,7 @@ your data is probably lost.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index10.php b/documentation/en/index10.php index d6cbe00..65339b3 100644 --- a/documentation/en/index10.php +++ b/documentation/en/index10.php @@ -1,6 +1,6 @@ - dvdisaster + + Examples of the error correction @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -157,7 +158,7 @@ your data is probably lost.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index10_expand=2.html b/documentation/en/index10_expand=2.html index 42bc537..e549e5f 100644 --- a/documentation/en/index10_expand=2.html +++ b/documentation/en/index10_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Examples of the error correction @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -157,7 +158,7 @@ your data is probably lost.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index20.html b/documentation/en/index20.html index 92bf31f..11ca031 100644 --- a/documentation/en/index20.html +++ b/documentation/en/index20.html @@ -1,7 +1,8 @@ - dvdisaster + + dvdisaster complements quality scans @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -131,7 +132,7 @@ Write the recovered image to a new medium. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index20.php b/documentation/en/index20.php index 4669acd..be29319 100644 --- a/documentation/en/index20.php +++ b/documentation/en/index20.php @@ -1,6 +1,6 @@ - dvdisaster + + Pro and con of dvdisaster @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -129,7 +130,7 @@ to learn more about the functioning of dvdisaster. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/index30.php b/documentation/en/index30.php index aa5acae..35acd99 100644 --- a/documentation/en/index30.php +++ b/documentation/en/index30.php @@ -1,6 +1,6 @@ - dvdisaster + + News @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -74,7 +75,85 @@

    dvdisaster News

    - + + + +
    dvdisaster 0.72.1 releaseddvdisaster 0.72.3 released03.10.2011
    + + + + +
    + + + + +
    + + +
    + +The "Verify" function hangs when working on RS01 error +correction files which are larger than 2GB (the error correction +files are correctly generated though). +Volodymyr Bychkoviak discovered the problem and sent in +a bug fix. +
    +
     
    + + + + + +
    dvdisaster 0.72.2 released31.10.2010
    + + + + +
    + + + + +
    + + +
    + +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. RS03 images from 0.79.x +versions will no longer cause spurious error messages. +
    +
     
    + + + + + +
    Project represention on SourceForge may be outdated10.08.2009
    + + + + +
    + + + + +
    + + +
    + +Due to the recent functionality changes on SourceForge we are unable +to upload the News, Downloads and CVS contents in time. Please refer +to the respective sections on this site (http://dvdisaster.net) instead. + +
    +
     
    + + +
    dvdisaster 0.72.1 released 08.08.2009
    @@ -99,7 +178,7 @@ Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.

     
    - +
    dvdisaster 0.72 releaseddvdisaster 0.72 released 04.07.2009
    @@ -125,7 +204,7 @@ Some minor bugs from the first release candidate have been removed.

     
    - +
    Added: dvdisaster 0.72.rc1 for Mac OS XAdded: dvdisaster 0.72.rc1 for Mac OS X 14.04.2009
    @@ -151,7 +230,7 @@ Some minor bugs from the first release candidate have been removed.

     
    - +
    dvdisaster 0.72.rc1 releaseddvdisaster 0.72.rc1 released 11.04.2009
    @@ -178,7 +257,7 @@ Some minor bugs from the first release candidate have been removed.

     
    - +
    dvdisaster 0.71.28 releaseddvdisaster 0.71.28 released 08.03.2009
    @@ -204,7 +283,7 @@ Some minor bugs from the first release candidate have been removed.

     
    - +
    dvdisaster 0.71.27 releaseddvdisaster 0.71.27 released 18.01.2009
    @@ -252,7 +331,7 @@ Some minor bugs from the first release candidate have been removed.

    - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/news.php b/documentation/en/news.php index 8708739..2bee4aa 100644 --- a/documentation/en/news.php +++ b/documentation/en/news.php @@ -1,6 +1,6 @@ diff --git a/documentation/en/news2007.html b/documentation/en/news2007.html index 7a2b9bb..d870c89 100644 --- a/documentation/en/news2007.html +++ b/documentation/en/news2007.html @@ -1,7 +1,8 @@ - dvdisaster + + 2007 @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -121,7 +122,7 @@ - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/news2007.php b/documentation/en/news2007.php index 882e5ec..d0f86da 100644 --- a/documentation/en/news2007.php +++ b/documentation/en/news2007.php @@ -1,6 +1,6 @@ - dvdisaster + + 2008 @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -210,7 +211,7 @@ - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/news2008.php b/documentation/en/news2008.php index ec6b063..e0d1bd5 100644 --- a/documentation/en/news2008.php +++ b/documentation/en/news2008.php @@ -1,6 +1,6 @@ - dvdisaster + + Questions and Answers @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -142,7 +143,7 @@ There is no need to recreate them again. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/qa.php b/documentation/en/qa.php index d0e3706..c26bafc 100644 --- a/documentation/en/qa.php +++ b/documentation/en/qa.php @@ -1,6 +1,6 @@ - dvdisaster + + Technical Questions @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -250,7 +251,7 @@ Usage of ASPI can be forced; see the description of the - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/qa10.php b/documentation/en/qa10.php index f5574f1..4fc527f 100644 --- a/documentation/en/qa10.php +++ b/documentation/en/qa10.php @@ -1,6 +1,6 @@ - dvdisaster + + Error messages @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -248,7 +249,7 @@ CVS versions only together with dvdisaster 0.66 or newer versions. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/en/qa20.php b/documentation/en/qa20.php index 4d2d5da..e881a8b 100644 --- a/documentation/en/qa20.php +++ b/documentation/en/qa20.php @@ -1,6 +1,6 @@ - dvdisaster + + Questions and Answers @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl3)  To the Internet version @@ -142,7 +143,7 @@ There is no need to recreate them again. - Copyright 2004-2009 Carsten Gnörlich.
    + Copyright 2004-2011 Carsten Gnörlich.
    Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.
    diff --git a/documentation/include/dict_de.php b/documentation/include/dict_de.php index 962966b..36bd358 100644 --- a/documentation/include/dict_de.php +++ b/documentation/include/dict_de.php @@ -1,6 +1,6 @@ \n"; +{ global $toc_title_mode; + global $toc_title_content; + + echo "\n"; echo "\n"; echo " \n"; - echo " dvdisaster\n"; + $toc_title_mode = 1; + $toc_title_content = "dvdisaster"; + require("toc.php"); + echo " $toc_title_content\n"; + $toc_title_mode = 0; echo " \n"; echo "\n"; @@ -161,6 +196,27 @@ function subsubsection($subsubsection_name) $toc_mode = "subsubsection"; } +function toc_title($msg, $lang) +{ global $script_lang; + global $script_name; + global $toc_mode; + global $toc_section; + global $toc_subsection; + global $toc_subsubsection; + global $toc_title_content; + + if(strcmp($lang, $script_lang)) return; # wrong locale + + if(!strcmp($toc_mode, "section") && !strcmp($toc_section, $script_name)) + $toc_title_content = $msg; + + if(!strcmp($toc_mode, "subsection") && !strcmp($toc_subsection, $script_name)) + $toc_title_content = $msg; + + if(!strcmp($toc_mode, "subsubsection") && !strcmp($toc_subsubsection, $script_name)) + $toc_title_content = $msg; +} + function toc_link($msg, $lang) { static $separator=0; global $script_lang; @@ -211,10 +267,6 @@ function toc_link($msg, $lang) } -function de($msg) {toc_link($msg, "de"); }; -function en($msg) {toc_link($msg, "en"); }; -function ru($msg) {toc_link($msg, "ru"); }; - # # Helper functions for creating the news pages and -flash # diff --git a/documentation/include/footnote.php b/documentation/include/footnote.php index 1746bb4..8c242ed 100644 --- a/documentation/include/footnote.php +++ b/documentation/include/footnote.php @@ -1,7 +1,7 @@ - dvdisaster + + Скачать @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -102,7 +103,7 @@ dvdisaster имеется для последних в Приглашаем тестеров для предстоящих версий dvdisaster, но следует иметь в виду, что остались еще ошибки и несоответствия. Текущая нестабильная версия - -0.72 (pl1). +0.72 (pl3). -->

     
    @@ -110,22 +111,24 @@ dvdisaster имеется для последних в Стабильная версия - рекомендуется для начала.

    - + @@ -147,6 +150,16 @@ dvdisaster имеется для последних в Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

    +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    diff --git a/documentation/ru/download.php b/documentation/ru/download.php index aa91a5a..af22b5f 100644 --- a/documentation/ru/download.php +++ b/documentation/ru/download.php @@ -1,6 +1,6 @@ @@ -50,22 +51,73 @@ dvdisaster имеется для последних в Стабильная версия - рекомендуется для начала.

    dvdisaster-0.724 июля 2009
    dvdisaster-0.7205-Oct-2011
    - + - + - + - + - + - + + +
      Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
    dvdisaster-0.72.3.tar.bz2
    Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
    dvdisaster-0.72.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
    dvdisaster-0.72.3.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
    dvdisaster-0.72.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
    dvdisaster-0.72.3-setup.exe
    Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
    dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    - + @@ -87,6 +139,16 @@ dvdisaster имеется для последних в Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

    +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    diff --git a/documentation/ru/download10.html b/documentation/ru/download10.html index 9774445..d0848d7 100644 --- a/documentation/ru/download10.html +++ b/documentation/ru/download10.html @@ -1,7 +1,8 @@ - dvdisaster + + Системные требования @@ -11,7 +12,7 @@

    - +
    dvdisaster-0.724 июля 2009
    dvdisaster-0.7205-Oct-2011
    - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
    dvdisaster-0.72.3.tar.bz2
    Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
    dvdisaster-0.72.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
    dvdisaster-0.72.3.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
    dvdisaster-0.72.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
    dvdisaster-0.72.3-setup.exe
    Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
    dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    Hide older releases in the 0.72 version branch
      Исходные тексты для всех операционных систем: 
      Исходные тексты для всех операционных систем: dvdisaster-0.72.2.tar.bz2
    Цифровая подпись: dvdisaster-0.72.2.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.2.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.2-setup.exe
    Цифровая подпись: dvdisaster-0.72.2-setup.exe.gpg
    dvdisaster-0.72.1.tar.bz2
    Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
    Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
      Исходные тексты для всех операционных систем: dvdisaster-0.72.tar.bz2
    Цифровая подпись: dvdisaster-0.72.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72-setup.exe
    Цифровая подпись: dvdisaster-0.72-setup.exe.gpg
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -91,7 +92,7 @@
  • Linux с ядром 2.6.7 или новее.

  • -
  • Mac OS X версия 10.4 (Tiger) или новее,
    +
  • Mac OS X версия 10.6 или новее,
    на платформах x86 и PowerPC.

  • NetBSD версия 3.1 или новее.

  • Windows 2000, Windows XP, Windows Vista (R).
  • diff --git a/documentation/ru/download10.php b/documentation/ru/download10.php index 9b508fc..b903dcd 100644 --- a/documentation/ru/download10.php +++ b/documentation/ru/download10.php @@ -1,6 +1,6 @@
  • Linux с ядром 2.6.7 или новее.

  • -
  • Mac OS X версия 10.4 (Tiger) или новее,
    +
  • Mac OS X версия 10.6 или новее,
    на платформах x86 и PowerPC.

  • NetBSD версия 3.1 или новее.

  • Windows 2000, Windows XP, Windows Vista (R).
  • diff --git a/documentation/ru/download20.html b/documentation/ru/download20.html index 8190d7b..198fbb2 100644 --- a/documentation/ru/download20.html +++ b/documentation/ru/download20.html @@ -1,7 +1,8 @@ - dvdisaster + + Цифровая подпись @@ -11,7 +12,7 @@
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/download20.php b/documentation/ru/download20.php index be56faf..3a9e050 100644 --- a/documentation/ru/download20.php +++ b/documentation/ru/download20.php @@ -1,6 +1,6 @@ - dvdisaster + + Установка @@ -11,7 +12,7 @@
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -112,7 +113,7 @@ GTK+.

    Установка двоичных версий для Windows

    Для установки Windows-версии, запускайте на выполнение двоичный файл -(например, dvdisaster-0.72.1-setup.exe) и следуйте диалогу в процессе установки.

    +(например, dvdisaster-0.72.3-setup.exe) и следуйте диалогу в процессе установки.

    Предупреждение: dvdisaster НЕ устанавливается путем ручной распаковки программы setup.exe или путем копирования его из уже diff --git a/documentation/ru/download30.php b/documentation/ru/download30.php index daa478f..85b3a15 100644 --- a/documentation/ru/download30.php +++ b/documentation/ru/download30.php @@ -1,6 +1,6 @@ Загрузки -Для альфа-версий используется такой же формат пакетов, как и для нормальных версий.

    - - - - - - -
    dvdisaster-0.73 (devel1)xx-XXX-2009
    - - - - - - - - - -
      Исходные тексты для всех операционных систем: dvdisaster-0.73.1.tar.bz2
    Цифровая подпись: dvdisaster-0.73.1.tar.bz2.gpg
    Двоичная версия для Windows: dvdisaster-0.73.1-setup.exe
    Цифровая подпись: dvdisaster-0.73.1-setup.exe.gpg
    -
    -Еще не выпущена. -

    +Please visit the online version of these pages for currently available alpha versions. diff --git a/documentation/ru/download_showall=0.html b/documentation/ru/download_showall=0.html new file mode 100644 index 0000000..978c66c --- /dev/null +++ b/documentation/ru/download_showall=0.html @@ -0,0 +1,284 @@ + + + + + Скачать + + + + + + + + + + +
    + dvdisaster + Версия 0.72 (pl3) + +  К интернет-версии + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Содержание + + + + +

    + + + + + + + + + + + + + + + + + +
    Новости
    Обзор
    Howto's
    Скачать
    ·Системные требования
    ·Цифровая подпись
    ·Установка
    Вопросы и ответы
    Сообщения об ошибках
    +

    +
    + + + +

    Скачать dvdisaster

    + +dvdisaster имеется для последних версий +операционных систем FreeBSD, GNU/Linux, Mac OS X(Darwin), NetBSD +и Windows. Он предоставляется как +свободное программное обеспечение +под лицензией GNU General Public License v2*).

    + +Скачивать исходные тексты или двоичную версию можно из приведенного ниже списка. +Цифровая подпись предоставляется для подтверждения того, что +пакеты находятся в своем первоначальном состоянии.

    + +

      +
    • В пакете с исходными текстами имеется файл INSTALL, содержащий дальнейшие инструкции для сборки.
    • +
    • Для Mac OS X предоставлен ZIP-архив, который устанавливается путем его распаковывания +в любое место. Обратите внимание на +специальные советы для Mac OS X.
    • +
    • Для установки двоичной версии для Windows +запустите загруженную программу на выполнение и действуйте в соответствии с диалогом.
    • +
    + + + +
     
    + +Стабильная версия - рекомендуется для начала.

    + + + + + + +
    dvdisaster-0.7205-Oct-2011
    + + + + + + + + + + + + + + + +
      Исходные тексты для всех операционных систем: dvdisaster-0.72.3.tar.bz2
    Цифровая подпись: dvdisaster-0.72.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.3-setup.exe
    Цифровая подпись: dvdisaster-0.72.3-setup.exe.gpg
    Show older releases in the 0.72 version branch
    +
    +Наиболее важные изменения в этой версии:

    +

      +
    • Поддержка носителей Blu-Ray
    • +
    • Низкоуровневое чтение и проверки на C2 для CD-носителей
    • +
    • Выбираемое число попыток чтения
    • +
    • Первый "родной" пакет приложения для Mac OS X
    • +
    • Порт на NetBSD Сергея Свищева
    • +
    • Улучшенное распознавание типа носителей
    • +
    • Информационное окно с описанием вставленного носителя
    • +
    • Улучшенный и дополненный диалог настроек
    • +
    • Переработанная и дополненная документация
    • +
    • Русский перевод Игоря Горбунова
    • +
    • ... и еще много небольших изменений и исправлений.
    • +
    + +Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

    + +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + +0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. +Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    + +0.72 Это первая стабильная версия ветки 0.72. +Игорь Горбунов завершил перевод онлайн-документации на русский язык. +Устранены некоторые незначительные ошибки в первом кандидате на выпуск.

    +В более новых версиях Windows при некоторых языковых настройках может быть неправильный вывод +на экран. Это довольно сложная проблема и она будет решаться +в предстоящих версиях 0.73.x. (04-Jul-2009) +

    + +0.72-rc1 Первый кандидат на выпуск. (11 апреля 2009) +

    + +Предыдущая версия - рекомендуется обновить до версии 0.72.

    + + + + + + +
    dvdisaster-0.7004 марта 2008
    + + + + + + + + + +
      Исходный текст для всех операционных систем: dvdisaster-0.70.6.tar.bz2
    Цифровая подпись: dvdisaster-0.70.6.tar.bz2.gpg
    Двоичный пакет для Windows: dvdisaster-0.70.6-setup.exe
    Цифровая подпись: dvdisaster-0.70.6-setup.exe.gpg
    +
    +Метод коррекции ошибок RS02 +полностью поддерживается в графическом интерфейсе. Образы, созданные +с использованием RS02, могут использоваться +со стратегией адаптивного чтения.

    + +Джулиан Айнваг (Julian Einwag) начал перенос dvdisaster +на Mac OS X / Darwin.

    + +Дэниэл Найландер (Daniel Nylander) дал шведский перевод экранных текстов.

    + +Исправления (небольшие изменения после версии 0.70; вышеприведенные файлы были обновлены):

    + +pl6 Сделан откат назад поддержки локализованных имен файлов, +поскольку она нарушила поддержку больших файлов под Windows. Новый обработчик +для локализованных имен файлов будет сначала протестирован в экспериментальной версии +0.71.25. (04-мар-2008)

    + +pl5 +Исправляет проблему с новыми ядрами Linux, которая может привести к зависанию системы в +некоторых случаях. Улучшена обработка имен файлов, содержащих локализованные +символы. +Содержит обратный перенос основных исправлений ошибок с 0.71.24. (24-фев-2008).

    + +pl4 обеспечивает лучшую совместимость с двухслойными DVD +(DVD-R DL и DVD+R DL).
    +Были исправлены некоторые незначительные ошибки. (20-янв-2007).

    + +pl3 исправляет неправильное распознавание неподдерживаемых форматов CD, которые +приводили к синему экрану Windows при редком стечении обстоятельств. Добавлена возможность отмены +во время инициализации RS02 на носителях DVD RW. +(10-дек-2006).

    + +pl2 исправляет неправильное освобождение памяти, когда закрывается окно программы. +Исправлена распаковка снимков экрана в документации для платформ PPC. +Обновлены только архивы исходных текстов. +(03-окт-2006).

    + +pl1 исправляет ошибку в адаптивном чтении для RS02, которая иногда приводит к +чтению недосточного количества данных при сообщении об успешном восстановлении. Добавляет несколько +небольших улучшений в документации и функциональности. (30-июл-2006) +

    + + +Исходные тексты dvdisaster доступны также +через CVS. +Файлы, представляющие интерес: +

      +
    • CHANGELOG- изменения от предыдущих версий;
    • +
    • CREDITS.en- люди, занятые в проекте;
    • +
    • INSTALL - дополнительные советы для установки;
    • +
    • README - план развития из архива исходных текстов.
    • +
    + + + +
    +
    Старая документация (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2007-2009 Igor Gorbounov.
    + Дословное копирование и распространение всей этой статьи разрешается на любом носителе, при условии, что это уведомление сохраняется. +
    +
    +
    + + diff --git a/documentation/ru/download_showall=1.html b/documentation/ru/download_showall=1.html new file mode 100644 index 0000000..beec2ab --- /dev/null +++ b/documentation/ru/download_showall=1.html @@ -0,0 +1,323 @@ + + + + + Скачать + + + + + + + + + + +
    + dvdisaster + Версия 0.72 (pl3) + +  К интернет-версии + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + + + + +
    + Содержание + + + + +

    + + + + + + + + + + + + + + + + + +
    Новости
    Обзор
    Howto's
    Скачать
    ·Системные требования
    ·Цифровая подпись
    ·Установка
    Вопросы и ответы
    Сообщения об ошибках
    +

    +
    + + + +

    Скачать dvdisaster

    + +dvdisaster имеется для последних версий +операционных систем FreeBSD, GNU/Linux, Mac OS X(Darwin), NetBSD +и Windows. Он предоставляется как +свободное программное обеспечение +под лицензией GNU General Public License v2*).

    + +Скачивать исходные тексты или двоичную версию можно из приведенного ниже списка. +Цифровая подпись предоставляется для подтверждения того, что +пакеты находятся в своем первоначальном состоянии.

    + +

      +
    • В пакете с исходными текстами имеется файл INSTALL, содержащий дальнейшие инструкции для сборки.
    • +
    • Для Mac OS X предоставлен ZIP-архив, который устанавливается путем его распаковывания +в любое место. Обратите внимание на +специальные советы для Mac OS X.
    • +
    • Для установки двоичной версии для Windows +запустите загруженную программу на выполнение и действуйте в соответствии с диалогом.
    • +
    + + + +
     
    + +Стабильная версия - рекомендуется для начала.

    + + + + + + +
    dvdisaster-0.7205-Oct-2011
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Исходные тексты для всех операционных систем: dvdisaster-0.72.3.tar.bz2
    Цифровая подпись: dvdisaster-0.72.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.3.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.3-setup.exe
    Цифровая подпись: dvdisaster-0.72.3-setup.exe.gpg
    Hide older releases in the 0.72 version branch
      Исходные тексты для всех операционных систем: 
      Исходные тексты для всех операционных систем: dvdisaster-0.72.2.tar.bz2
    Цифровая подпись: dvdisaster-0.72.2.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.2.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.2-setup.exe
    Цифровая подпись: dvdisaster-0.72.2-setup.exe.gpg
    dvdisaster-0.72.1.tar.bz2
    Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
    Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
      Исходные тексты для всех операционных систем: dvdisaster-0.72.tar.bz2
    Цифровая подпись: dvdisaster-0.72.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.72.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.72-setup.exe
    Цифровая подпись: dvdisaster-0.72-setup.exe.gpg
    +
    +Наиболее важные изменения в этой версии:

    +

      +
    • Поддержка носителей Blu-Ray
    • +
    • Низкоуровневое чтение и проверки на C2 для CD-носителей
    • +
    • Выбираемое число попыток чтения
    • +
    • Первый "родной" пакет приложения для Mac OS X
    • +
    • Порт на NetBSD Сергея Свищева
    • +
    • Улучшенное распознавание типа носителей
    • +
    • Информационное окно с описанием вставленного носителя
    • +
    • Улучшенный и дополненный диалог настроек
    • +
    • Переработанная и дополненная документация
    • +
    • Русский перевод Игоря Горбунова
    • +
    • ... и еще много небольших изменений и исправлений.
    • +
    + +Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

    + +0.72 pl3 Fixed a problem with the "Verify" function when + working with RS01 error correction files larger than 2GB. +Thanks to Volodymyr Bychkoviak for reporting the problem and +sending a fix. (05-Oct-2011)

    + +0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved compatibility with the new version branch 0.79.x. (31-Oct-2010)

    + +0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. +Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

    + +0.72 Это первая стабильная версия ветки 0.72. +Игорь Горбунов завершил перевод онлайн-документации на русский язык. +Устранены некоторые незначительные ошибки в первом кандидате на выпуск.

    +В более новых версиях Windows при некоторых языковых настройках может быть неправильный вывод +на экран. Это довольно сложная проблема и она будет решаться +в предстоящих версиях 0.73.x. (04-Jul-2009) +

    + +0.72-rc1 Первый кандидат на выпуск. (11 апреля 2009) +

    + +Предыдущая версия - рекомендуется обновить до версии 0.72.

    + + + + + + +
    dvdisaster-0.7004 марта 2008
    + + + + + + + + + +
      Исходный текст для всех операционных систем: dvdisaster-0.70.6.tar.bz2
    Цифровая подпись: dvdisaster-0.70.6.tar.bz2.gpg
    Двоичный пакет для Windows: dvdisaster-0.70.6-setup.exe
    Цифровая подпись: dvdisaster-0.70.6-setup.exe.gpg
    +
    +Метод коррекции ошибок RS02 +полностью поддерживается в графическом интерфейсе. Образы, созданные +с использованием RS02, могут использоваться +со стратегией адаптивного чтения.

    + +Джулиан Айнваг (Julian Einwag) начал перенос dvdisaster +на Mac OS X / Darwin.

    + +Дэниэл Найландер (Daniel Nylander) дал шведский перевод экранных текстов.

    + +Исправления (небольшие изменения после версии 0.70; вышеприведенные файлы были обновлены):

    + +pl6 Сделан откат назад поддержки локализованных имен файлов, +поскольку она нарушила поддержку больших файлов под Windows. Новый обработчик +для локализованных имен файлов будет сначала протестирован в экспериментальной версии +0.71.25. (04-мар-2008)

    + +pl5 +Исправляет проблему с новыми ядрами Linux, которая может привести к зависанию системы в +некоторых случаях. Улучшена обработка имен файлов, содержащих локализованные +символы. +Содержит обратный перенос основных исправлений ошибок с 0.71.24. (24-фев-2008).

    + +pl4 обеспечивает лучшую совместимость с двухслойными DVD +(DVD-R DL и DVD+R DL).
    +Были исправлены некоторые незначительные ошибки. (20-янв-2007).

    + +pl3 исправляет неправильное распознавание неподдерживаемых форматов CD, которые +приводили к синему экрану Windows при редком стечении обстоятельств. Добавлена возможность отмены +во время инициализации RS02 на носителях DVD RW. +(10-дек-2006).

    + +pl2 исправляет неправильное освобождение памяти, когда закрывается окно программы. +Исправлена распаковка снимков экрана в документации для платформ PPC. +Обновлены только архивы исходных текстов. +(03-окт-2006).

    + +pl1 исправляет ошибку в адаптивном чтении для RS02, которая иногда приводит к +чтению недосточного количества данных при сообщении об успешном восстановлении. Добавляет несколько +небольших улучшений в документации и функциональности. (30-июл-2006) +

    + + +Исходные тексты dvdisaster доступны также +через CVS. +Файлы, представляющие интерес: +

      +
    • CHANGELOG- изменения от предыдущих версий;
    • +
    • CREDITS.en- люди, занятые в проекте;
    • +
    • INSTALL - дополнительные советы для установки;
    • +
    • README - план развития из архива исходных текстов.
    • +
    + + + +
    +
    Старая документация (V0.70)
    +
    + + + + + + + + + + + + + +
    + + Copyright 2007-2009 Igor Gorbounov.
    + Дословное копирование и распространение всей этой статьи разрешается на любом носителе, при условии, что это уведомление сохраняется. +
    +
    +
    + + diff --git a/documentation/ru/empty.php b/documentation/ru/empty.php index 1c5ca4c..c13a020 100644 --- a/documentation/ru/empty.php +++ b/documentation/ru/empty.php @@ -1,6 +1,6 @@ - dvdisaster + + Сообщения об ошибках @@ -11,7 +12,7 @@

    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/feedback.php b/documentation/ru/feedback.php index 46b846a..5276a98 100644 --- a/documentation/ru/feedback.php +++ b/documentation/ru/feedback.php @@ -1,6 +1,6 @@ - dvdisaster + + Сообщения об ошибках @@ -11,7 +12,7 @@
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos.html b/documentation/ru/howtos.html index f3b417b..bc03849 100644 --- a/documentation/ru/howtos.html +++ b/documentation/ru/howtos.html @@ -1,7 +1,8 @@ - dvdisaster + + Howto's @@ -11,7 +12,7 @@
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos.php b/documentation/ru/howtos.php index 940384d..5ec6a7f 100644 --- a/documentation/ru/howtos.php +++ b/documentation/ru/howtos.php @@ -1,6 +1,6 @@ - dvdisaster + + Поиск ошибок на носителях @@ -11,7 +12,7 @@
    dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -130,8 +131,8 @@
    Соответствующие функции:

    Чтение поврежденных носителей и
    - Восстановление образов.
    Чтение поврежденных носителей и
    + Восстановление образов.

    diff --git a/documentation/ru/howtos10.php b/documentation/ru/howtos10.php index 4feb98d..4cfc163 100644 --- a/documentation/ru/howtos10.php +++ b/documentation/ru/howtos10.php @@ -1,6 +1,6 @@ Соответствующие функции:

    - Чтение поврежденных носителей и
    - Восстановление образов. + Чтение поврежденных носителей и
    + Восстановление образов.

    diff --git a/documentation/ru/howtos11.html b/documentation/ru/howtos11.html index 107c120..51b1bd3 100644 --- a/documentation/ru/howtos11.html +++ b/documentation/ru/howtos11.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos11.php b/documentation/ru/howtos11.php index 4ab71a3..4ee3f6b 100644 --- a/documentation/ru/howtos11.php +++ b/documentation/ru/howtos11.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=2.html b/documentation/ru/howtos11_expand=2.html index a6c4923..7b57855 100644 --- a/documentation/ru/howtos11_expand=2.html +++ b/documentation/ru/howtos11_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=3.html b/documentation/ru/howtos11_expand=3.html index 236b24b..9ab6667 100644 --- a/documentation/ru/howtos11_expand=3.html +++ b/documentation/ru/howtos11_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=4.html b/documentation/ru/howtos11_expand=4.html index 9da3a68..68ddfcc 100644 --- a/documentation/ru/howtos11_expand=4.html +++ b/documentation/ru/howtos11_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=5.html b/documentation/ru/howtos11_expand=5.html index 0036e7c..c403ce0 100644 --- a/documentation/ru/howtos11_expand=5.html +++ b/documentation/ru/howtos11_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos12.html b/documentation/ru/howtos12.html index 316d3b0..b096d1f 100644 --- a/documentation/ru/howtos12.html +++ b/documentation/ru/howtos12.html @@ -1,7 +1,8 @@ - dvdisaster + + Выполнение проверки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos12.php b/documentation/ru/howtos12.php index 0b032d5..70fc81f 100644 --- a/documentation/ru/howtos12.php +++ b/documentation/ru/howtos12.php @@ -1,6 +1,6 @@ - dvdisaster + + Выполнение проверки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos12_expand=1.html b/documentation/ru/howtos12_expand=1.html index 9eb17a6..1afd793 100644 --- a/documentation/ru/howtos12_expand=1.html +++ b/documentation/ru/howtos12_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Выполнение проверки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13.html b/documentation/ru/howtos13.html index 4f3c08c..b06dcc0 100644 --- a/documentation/ru/howtos13.html +++ b/documentation/ru/howtos13.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13.php b/documentation/ru/howtos13.php index d70fc6a..e58e871 100644 --- a/documentation/ru/howtos13.php +++ b/documentation/ru/howtos13.php @@ -1,6 +1,6 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=2.html b/documentation/ru/howtos13_expand=2.html index e068821..cb3cb88 100644 --- a/documentation/ru/howtos13_expand=2.html +++ b/documentation/ru/howtos13_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=3.html b/documentation/ru/howtos13_expand=3.html index 2883c7a..e8a02c3 100644 --- a/documentation/ru/howtos13_expand=3.html +++ b/documentation/ru/howtos13_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=4.html b/documentation/ru/howtos13_expand=4.html index 69aaf15..faf5014 100644 --- a/documentation/ru/howtos13_expand=4.html +++ b/documentation/ru/howtos13_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=5.html b/documentation/ru/howtos13_expand=5.html index 9b36e69..0072085 100644 --- a/documentation/ru/howtos13_expand=5.html +++ b/documentation/ru/howtos13_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=6.html b/documentation/ru/howtos13_expand=6.html index 874b04f..e4f473c 100644 --- a/documentation/ru/howtos13_expand=6.html +++ b/documentation/ru/howtos13_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Объяснение результатов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos14.html b/documentation/ru/howtos14.html index d6c3ac5..487a0bd 100644 --- a/documentation/ru/howtos14.html +++ b/documentation/ru/howtos14.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos14.php b/documentation/ru/howtos14.php index 6c240b6..d296f3f 100644 --- a/documentation/ru/howtos14.php +++ b/documentation/ru/howtos14.php @@ -1,6 +1,6 @@ - dvdisaster + + Дополнительные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos14_expand=2.html b/documentation/ru/howtos14_expand=2.html index ab2093e..d0d5abe 100644 --- a/documentation/ru/howtos14_expand=2.html +++ b/documentation/ru/howtos14_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos20.html b/documentation/ru/howtos20.html index 6993428..5b53c99 100644 --- a/documentation/ru/howtos20.html +++ b/documentation/ru/howtos20.html @@ -1,7 +1,8 @@ - dvdisaster + + Размещение данных для исправления ошибок в отдельном файле @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos20.php b/documentation/ru/howtos20.php index 00c7762..865cc88 100644 --- a/documentation/ru/howtos20.php +++ b/documentation/ru/howtos20.php @@ -1,6 +1,6 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos21.php b/documentation/ru/howtos21.php index c1f1203..66b3807 100644 --- a/documentation/ru/howtos21.php +++ b/documentation/ru/howtos21.php @@ -1,6 +1,6 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=2.html b/documentation/ru/howtos21_answer=2.html index 895d06b..3f2a749 100644 --- a/documentation/ru/howtos21_answer=2.html +++ b/documentation/ru/howtos21_answer=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=3.html b/documentation/ru/howtos21_answer=3.html index d506d3c..d70a0c0 100644 --- a/documentation/ru/howtos21_answer=3.html +++ b/documentation/ru/howtos21_answer=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=4.html b/documentation/ru/howtos21_answer=4.html index 6f987b0..a61c1a1 100644 --- a/documentation/ru/howtos21_answer=4.html +++ b/documentation/ru/howtos21_answer=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22.html b/documentation/ru/howtos22.html index 768a6bb..f7e60a8 100644 --- a/documentation/ru/howtos22.html +++ b/documentation/ru/howtos22.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22.php b/documentation/ru/howtos22.php index 92657b7..c6060d0 100644 --- a/documentation/ru/howtos22.php +++ b/documentation/ru/howtos22.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=2.html b/documentation/ru/howtos22_expand=2.html index f69542c..6a5356a 100644 --- a/documentation/ru/howtos22_expand=2.html +++ b/documentation/ru/howtos22_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=3.html b/documentation/ru/howtos22_expand=3.html index fb5dcc7..04b4f1a 100644 --- a/documentation/ru/howtos22_expand=3.html +++ b/documentation/ru/howtos22_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=4.html b/documentation/ru/howtos22_expand=4.html index 117b1c6..98ef84b 100644 --- a/documentation/ru/howtos22_expand=4.html +++ b/documentation/ru/howtos22_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=5.html b/documentation/ru/howtos22_expand=5.html index 3287f8e..37231ea 100644 --- a/documentation/ru/howtos22_expand=5.html +++ b/documentation/ru/howtos22_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=6.html b/documentation/ru/howtos22_expand=6.html index 0e8cfae..733ce61 100644 --- a/documentation/ru/howtos22_expand=6.html +++ b/documentation/ru/howtos22_expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные настройки для чтения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23.html b/documentation/ru/howtos23.html index ae54949..ec3b9d4 100644 --- a/documentation/ru/howtos23.html +++ b/documentation/ru/howtos23.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23.php b/documentation/ru/howtos23.php index f17b421..23c112a 100644 --- a/documentation/ru/howtos23.php +++ b/documentation/ru/howtos23.php @@ -1,6 +1,6 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=1.html b/documentation/ru/howtos23_way=1&expand=1.html index d0718ce..df46d04 100644 --- a/documentation/ru/howtos23_way=1&expand=1.html +++ b/documentation/ru/howtos23_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=2.html b/documentation/ru/howtos23_way=1&expand=2.html index beaf6eb..5dac399 100644 --- a/documentation/ru/howtos23_way=1&expand=2.html +++ b/documentation/ru/howtos23_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1.html b/documentation/ru/howtos23_way=1.html index d729e05..19f2b16 100644 --- a/documentation/ru/howtos23_way=1.html +++ b/documentation/ru/howtos23_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=0.html b/documentation/ru/howtos23_way=2&expand=0.html index a6cf8eb..21b3366 100644 --- a/documentation/ru/howtos23_way=2&expand=0.html +++ b/documentation/ru/howtos23_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=1.html b/documentation/ru/howtos23_way=2&expand=1.html index 04e4a3d..97c4799 100644 --- a/documentation/ru/howtos23_way=2&expand=1.html +++ b/documentation/ru/howtos23_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=2.html b/documentation/ru/howtos23_way=2&expand=2.html index f4e2ef2..73cc6a7 100644 --- a/documentation/ru/howtos23_way=2&expand=2.html +++ b/documentation/ru/howtos23_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2.html b/documentation/ru/howtos23_way=2.html index a6cf8eb..21b3366 100644 --- a/documentation/ru/howtos23_way=2.html +++ b/documentation/ru/howtos23_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos24.html b/documentation/ru/howtos24.html index 4293141..db5e54f 100644 --- a/documentation/ru/howtos24.html +++ b/documentation/ru/howtos24.html @@ -1,7 +1,8 @@ - dvdisaster + + Архивация файлов для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos24.php b/documentation/ru/howtos24.php index 2ba92c3..e895dc1 100644 --- a/documentation/ru/howtos24.php +++ b/documentation/ru/howtos24.php @@ -1,6 +1,6 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos25.php b/documentation/ru/howtos25.php index 77b2b36..1b0b083 100644 --- a/documentation/ru/howtos25.php +++ b/documentation/ru/howtos25.php @@ -1,6 +1,6 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos25_expand=2.html b/documentation/ru/howtos25_expand=2.html index 6cbaaba..2767df0 100644 --- a/documentation/ru/howtos25_expand=2.html +++ b/documentation/ru/howtos25_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos30.html b/documentation/ru/howtos30.html index ab7d6b3..3bd54d1 100644 --- a/documentation/ru/howtos30.html +++ b/documentation/ru/howtos30.html @@ -1,7 +1,8 @@ - dvdisaster + + Размещение данных для исправления ошибок на носителе @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos30.php b/documentation/ru/howtos30.php index 11d5883..a66d1e8 100644 --- a/documentation/ru/howtos30.php +++ b/documentation/ru/howtos30.php @@ -1,6 +1,6 @@ - dvdisaster + + Помощь в принятии решения @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos31.php b/documentation/ru/howtos31.php index da07837..cdd1f09 100644 --- a/documentation/ru/howtos31.php +++ b/documentation/ru/howtos31.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos32.php b/documentation/ru/howtos32.php index e6ec6a6..40cb0ae 100644 --- a/documentation/ru/howtos32.php +++ b/documentation/ru/howtos32.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos32_expand=2.html b/documentation/ru/howtos32_expand=2.html index c0f54b8..e4203f5 100644 --- a/documentation/ru/howtos32_expand=2.html +++ b/documentation/ru/howtos32_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33.html b/documentation/ru/howtos33.html index 5b57ba9..ee86604 100644 --- a/documentation/ru/howtos33.html +++ b/documentation/ru/howtos33.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33.php b/documentation/ru/howtos33.php index 9248c69..6c3f57a 100644 --- a/documentation/ru/howtos33.php +++ b/documentation/ru/howtos33.php @@ -1,6 +1,6 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=1.html b/documentation/ru/howtos33_expand=1.html index 5f8afb6..fbcd060 100644 --- a/documentation/ru/howtos33_expand=1.html +++ b/documentation/ru/howtos33_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=2.html b/documentation/ru/howtos33_expand=2.html index fceb81d..a20506b 100644 --- a/documentation/ru/howtos33_expand=2.html +++ b/documentation/ru/howtos33_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=0.html b/documentation/ru/howtos33_way=0&expand=0.html index 7933b06..9ed332b 100644 --- a/documentation/ru/howtos33_way=0&expand=0.html +++ b/documentation/ru/howtos33_way=0&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=1.html b/documentation/ru/howtos33_way=0&expand=1.html index 8632693..cba35af 100644 --- a/documentation/ru/howtos33_way=0&expand=1.html +++ b/documentation/ru/howtos33_way=0&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=2.html b/documentation/ru/howtos33_way=0&expand=2.html index 456e65e..55ab3d1 100644 --- a/documentation/ru/howtos33_way=0&expand=2.html +++ b/documentation/ru/howtos33_way=0&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0.html b/documentation/ru/howtos33_way=0.html index 7933b06..9ed332b 100644 --- a/documentation/ru/howtos33_way=0.html +++ b/documentation/ru/howtos33_way=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&.html b/documentation/ru/howtos33_way=1&.html index f5a6f0c..40524e9 100644 --- a/documentation/ru/howtos33_way=1&.html +++ b/documentation/ru/howtos33_way=1&.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=0.html b/documentation/ru/howtos33_way=1&expand=0.html index f5a6f0c..40524e9 100644 --- a/documentation/ru/howtos33_way=1&expand=0.html +++ b/documentation/ru/howtos33_way=1&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=1.html b/documentation/ru/howtos33_way=1&expand=1.html index bf79488..23c4766 100644 --- a/documentation/ru/howtos33_way=1&expand=1.html +++ b/documentation/ru/howtos33_way=1&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=2.html b/documentation/ru/howtos33_way=1&expand=2.html index 0e03711..4bd20aa 100644 --- a/documentation/ru/howtos33_way=1&expand=2.html +++ b/documentation/ru/howtos33_way=1&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=3.html b/documentation/ru/howtos33_way=1&expand=3.html index a04319f..049f5af 100644 --- a/documentation/ru/howtos33_way=1&expand=3.html +++ b/documentation/ru/howtos33_way=1&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=4.html b/documentation/ru/howtos33_way=1&expand=4.html index cb42914..b1bd3fe 100644 --- a/documentation/ru/howtos33_way=1&expand=4.html +++ b/documentation/ru/howtos33_way=1&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=5.html b/documentation/ru/howtos33_way=1&expand=5.html index 1f7d6cd..6188c4d 100644 --- a/documentation/ru/howtos33_way=1&expand=5.html +++ b/documentation/ru/howtos33_way=1&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=6.html b/documentation/ru/howtos33_way=1&expand=6.html index 27e7fa4..857560b 100644 --- a/documentation/ru/howtos33_way=1&expand=6.html +++ b/documentation/ru/howtos33_way=1&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=7.html b/documentation/ru/howtos33_way=1&expand=7.html index 2d41a71..916c902 100644 --- a/documentation/ru/howtos33_way=1&expand=7.html +++ b/documentation/ru/howtos33_way=1&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1.html b/documentation/ru/howtos33_way=1.html index f5a6f0c..40524e9 100644 --- a/documentation/ru/howtos33_way=1.html +++ b/documentation/ru/howtos33_way=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&.html b/documentation/ru/howtos33_way=2&.html index fb61022..2acc60e 100644 --- a/documentation/ru/howtos33_way=2&.html +++ b/documentation/ru/howtos33_way=2&.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=0.html b/documentation/ru/howtos33_way=2&expand=0.html index fb61022..2acc60e 100644 --- a/documentation/ru/howtos33_way=2&expand=0.html +++ b/documentation/ru/howtos33_way=2&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=1.html b/documentation/ru/howtos33_way=2&expand=1.html index 998318d..fc55e23 100644 --- a/documentation/ru/howtos33_way=2&expand=1.html +++ b/documentation/ru/howtos33_way=2&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=2.html b/documentation/ru/howtos33_way=2&expand=2.html index 02f6d4a..54b1ed6 100644 --- a/documentation/ru/howtos33_way=2&expand=2.html +++ b/documentation/ru/howtos33_way=2&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=3.html b/documentation/ru/howtos33_way=2&expand=3.html index 3e4a1c3..b32064a 100644 --- a/documentation/ru/howtos33_way=2&expand=3.html +++ b/documentation/ru/howtos33_way=2&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=4.html b/documentation/ru/howtos33_way=2&expand=4.html index e4c388b..3d6adcb 100644 --- a/documentation/ru/howtos33_way=2&expand=4.html +++ b/documentation/ru/howtos33_way=2&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=5.html b/documentation/ru/howtos33_way=2&expand=5.html index ab8eb08..c28e104 100644 --- a/documentation/ru/howtos33_way=2&expand=5.html +++ b/documentation/ru/howtos33_way=2&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=6.html b/documentation/ru/howtos33_way=2&expand=6.html index 4dce1ad..4446637 100644 --- a/documentation/ru/howtos33_way=2&expand=6.html +++ b/documentation/ru/howtos33_way=2&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2.html b/documentation/ru/howtos33_way=2.html index fb61022..2acc60e 100644 --- a/documentation/ru/howtos33_way=2.html +++ b/documentation/ru/howtos33_way=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&.html b/documentation/ru/howtos33_way=3&.html index dba57a1..6665b6a 100644 --- a/documentation/ru/howtos33_way=3&.html +++ b/documentation/ru/howtos33_way=3&.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=0.html b/documentation/ru/howtos33_way=3&expand=0.html index dba57a1..6665b6a 100644 --- a/documentation/ru/howtos33_way=3&expand=0.html +++ b/documentation/ru/howtos33_way=3&expand=0.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=1.html b/documentation/ru/howtos33_way=3&expand=1.html index 966cb32..947276f 100644 --- a/documentation/ru/howtos33_way=3&expand=1.html +++ b/documentation/ru/howtos33_way=3&expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=10.html b/documentation/ru/howtos33_way=3&expand=10.html index f94526c..1c128ac 100644 --- a/documentation/ru/howtos33_way=3&expand=10.html +++ b/documentation/ru/howtos33_way=3&expand=10.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=11.html b/documentation/ru/howtos33_way=3&expand=11.html index 8f0ea01..aadc49d 100644 --- a/documentation/ru/howtos33_way=3&expand=11.html +++ b/documentation/ru/howtos33_way=3&expand=11.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=2.html b/documentation/ru/howtos33_way=3&expand=2.html index e490458..2d3914d 100644 --- a/documentation/ru/howtos33_way=3&expand=2.html +++ b/documentation/ru/howtos33_way=3&expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=3.html b/documentation/ru/howtos33_way=3&expand=3.html index 7bf55c4..756275e 100644 --- a/documentation/ru/howtos33_way=3&expand=3.html +++ b/documentation/ru/howtos33_way=3&expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=4.html b/documentation/ru/howtos33_way=3&expand=4.html index 56834db..107e2de 100644 --- a/documentation/ru/howtos33_way=3&expand=4.html +++ b/documentation/ru/howtos33_way=3&expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=5.html b/documentation/ru/howtos33_way=3&expand=5.html index d76bab2..d879797 100644 --- a/documentation/ru/howtos33_way=3&expand=5.html +++ b/documentation/ru/howtos33_way=3&expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=6.html b/documentation/ru/howtos33_way=3&expand=6.html index 526e005..91fc372 100644 --- a/documentation/ru/howtos33_way=3&expand=6.html +++ b/documentation/ru/howtos33_way=3&expand=6.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=7.html b/documentation/ru/howtos33_way=3&expand=7.html index 2571462..e503d9a 100644 --- a/documentation/ru/howtos33_way=3&expand=7.html +++ b/documentation/ru/howtos33_way=3&expand=7.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=8.html b/documentation/ru/howtos33_way=3&expand=8.html index 42a6b26..3d9a045 100644 --- a/documentation/ru/howtos33_way=3&expand=8.html +++ b/documentation/ru/howtos33_way=3&expand=8.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=9.html b/documentation/ru/howtos33_way=3&expand=9.html index 87d50c5..31a1b4e 100644 --- a/documentation/ru/howtos33_way=3&expand=9.html +++ b/documentation/ru/howtos33_way=3&expand=9.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3.html b/documentation/ru/howtos33_way=3.html index dba57a1..6665b6a 100644 --- a/documentation/ru/howtos33_way=3.html +++ b/documentation/ru/howtos33_way=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Создание носителя @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos34.html b/documentation/ru/howtos34.html index 576719e..141f456 100644 --- a/documentation/ru/howtos34.html +++ b/documentation/ru/howtos34.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos34.php b/documentation/ru/howtos34.php index 371ccdd..e5f4ef7 100644 --- a/documentation/ru/howtos34.php +++ b/documentation/ru/howtos34.php @@ -1,6 +1,6 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos40.html b/documentation/ru/howtos40.html index e98bd38..fb7fc8c 100644 --- a/documentation/ru/howtos40.html +++ b/documentation/ru/howtos40.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образов носителей @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos40.php b/documentation/ru/howtos40.php index 1e3ea73..07bbd73 100644 --- a/documentation/ru/howtos40.php +++ b/documentation/ru/howtos40.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos41.php b/documentation/ru/howtos41.php index 2af45db..68a0f12 100644 --- a/documentation/ru/howtos41.php +++ b/documentation/ru/howtos41.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=2.html b/documentation/ru/howtos41_expand=2.html index 8d55384..7d194bc 100644 --- a/documentation/ru/howtos41_expand=2.html +++ b/documentation/ru/howtos41_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=3.html b/documentation/ru/howtos41_expand=3.html index d8e5513..1e9f73b 100644 --- a/documentation/ru/howtos41_expand=3.html +++ b/documentation/ru/howtos41_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=4.html b/documentation/ru/howtos41_expand=4.html index b09499b..307a394 100644 --- a/documentation/ru/howtos41_expand=4.html +++ b/documentation/ru/howtos41_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=5.html b/documentation/ru/howtos41_expand=5.html index 25b588a..418e6f3 100644 --- a/documentation/ru/howtos41_expand=5.html +++ b/documentation/ru/howtos41_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Основные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42.html b/documentation/ru/howtos42.html index 8fc0fe1..72b9dae 100644 --- a/documentation/ru/howtos42.html +++ b/documentation/ru/howtos42.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42.php b/documentation/ru/howtos42.php index d0e479f..fe58170 100644 --- a/documentation/ru/howtos42.php +++ b/documentation/ru/howtos42.php @@ -1,6 +1,6 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=1.html b/documentation/ru/howtos42_expand=1.html index 54066a5..e573d59 100644 --- a/documentation/ru/howtos42_expand=1.html +++ b/documentation/ru/howtos42_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=2.html b/documentation/ru/howtos42_expand=2.html index a2e42bc..5ffb337 100644 --- a/documentation/ru/howtos42_expand=2.html +++ b/documentation/ru/howtos42_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=3.html b/documentation/ru/howtos42_expand=3.html index bf8ef32..75dd2f6 100644 --- a/documentation/ru/howtos42_expand=3.html +++ b/documentation/ru/howtos42_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=4.html b/documentation/ru/howtos42_expand=4.html index c3f33c4..902a8d0 100644 --- a/documentation/ru/howtos42_expand=4.html +++ b/documentation/ru/howtos42_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Восстановление образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43.html b/documentation/ru/howtos43.html index 4153f1f..41ccf3b 100644 --- a/documentation/ru/howtos43.html +++ b/documentation/ru/howtos43.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43.php b/documentation/ru/howtos43.php index 9302d46..26f5f23 100644 --- a/documentation/ru/howtos43.php +++ b/documentation/ru/howtos43.php @@ -1,6 +1,6 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=2.html b/documentation/ru/howtos43_expand=2.html index 8eb24ae..36a94bd 100644 --- a/documentation/ru/howtos43_expand=2.html +++ b/documentation/ru/howtos43_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=3.html b/documentation/ru/howtos43_expand=3.html index 3aff67d..23b0a29 100644 --- a/documentation/ru/howtos43_expand=3.html +++ b/documentation/ru/howtos43_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=4.html b/documentation/ru/howtos43_expand=4.html index c2b7bb9..282efde 100644 --- a/documentation/ru/howtos43_expand=4.html +++ b/documentation/ru/howtos43_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=5.html b/documentation/ru/howtos43_expand=5.html index 7dabb20..d6dd002 100644 --- a/documentation/ru/howtos43_expand=5.html +++ b/documentation/ru/howtos43_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Дополнительные параметры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos50.html b/documentation/ru/howtos50.html index 0f4d90a..edb283d 100644 --- a/documentation/ru/howtos50.html +++ b/documentation/ru/howtos50.html @@ -1,7 +1,8 @@ - dvdisaster + + Получение информации об образах и данных для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos50.php b/documentation/ru/howtos50.php index 29cd765..813eb58 100644 --- a/documentation/ru/howtos50.php +++ b/documentation/ru/howtos50.php @@ -1,6 +1,6 @@ - dvdisaster + + Показать информацию @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos51.php b/documentation/ru/howtos51.php index 9e598bc..78671d5 100644 --- a/documentation/ru/howtos51.php +++ b/documentation/ru/howtos51.php @@ -1,6 +1,6 @@ - dvdisaster + + Показать информацию @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos51_expand=1.html b/documentation/ru/howtos51_expand=1.html index b817481..cdf67a8 100644 --- a/documentation/ru/howtos51_expand=1.html +++ b/documentation/ru/howtos51_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Показать информацию @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos52.html b/documentation/ru/howtos52.html index f69b8cf..f7d36e7 100644 --- a/documentation/ru/howtos52.html +++ b/documentation/ru/howtos52.html @@ -1,7 +1,8 @@ - dvdisaster + + Результаты для файлов с данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos52.php b/documentation/ru/howtos52.php index 7b8d5f3..d378f15 100644 --- a/documentation/ru/howtos52.php +++ b/documentation/ru/howtos52.php @@ -1,6 +1,6 @@ - dvdisaster + + Результаты для файлов с данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos52_expand=1.html b/documentation/ru/howtos52_expand=1.html index 2e7e3d8..35801ef 100644 --- a/documentation/ru/howtos52_expand=1.html +++ b/documentation/ru/howtos52_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Результаты для файлов с данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos53.html b/documentation/ru/howtos53.html index bb3ba42..02f7cef 100644 --- a/documentation/ru/howtos53.html +++ b/documentation/ru/howtos53.html @@ -1,7 +1,8 @@ - dvdisaster + + Результаты для дополненных образов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos53.php b/documentation/ru/howtos53.php index 587669a..40e77b7 100644 --- a/documentation/ru/howtos53.php +++ b/documentation/ru/howtos53.php @@ -1,6 +1,6 @@ - dvdisaster + + Результаты для дополненных образов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos53_expand=1.html b/documentation/ru/howtos53_expand=1.html index 4c52a0f..8866024 100644 --- a/documentation/ru/howtos53_expand=1.html +++ b/documentation/ru/howtos53_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + Результаты для дополненных образов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59.html b/documentation/ru/howtos59.html index b225d0e..19acc4d 100644 --- a/documentation/ru/howtos59.html +++ b/documentation/ru/howtos59.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59.php b/documentation/ru/howtos59.php index e870e5d..7bdc31f 100644 --- a/documentation/ru/howtos59.php +++ b/documentation/ru/howtos59.php @@ -1,6 +1,6 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=2.html b/documentation/ru/howtos59_expand=2.html index e4d9921..c10c4cd 100644 --- a/documentation/ru/howtos59_expand=2.html +++ b/documentation/ru/howtos59_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=3.html b/documentation/ru/howtos59_expand=3.html index aa4884d..1229999 100644 --- a/documentation/ru/howtos59_expand=3.html +++ b/documentation/ru/howtos59_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=4.html b/documentation/ru/howtos59_expand=4.html index 7c3e421..ceff431 100644 --- a/documentation/ru/howtos59_expand=4.html +++ b/documentation/ru/howtos59_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=5.html b/documentation/ru/howtos59_expand=5.html index 911738e..883a05f 100644 --- a/documentation/ru/howtos59_expand=5.html +++ b/documentation/ru/howtos59_expand=5.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos60.html b/documentation/ru/howtos60.html index 339e1dc..125a406 100644 --- a/documentation/ru/howtos60.html +++ b/documentation/ru/howtos60.html @@ -1,7 +1,8 @@ - dvdisaster + + Общая картина @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos60.php b/documentation/ru/howtos60.php index d948869..115534c 100644 --- a/documentation/ru/howtos60.php +++ b/documentation/ru/howtos60.php @@ -1,6 +1,6 @@ - dvdisaster + + исправление ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos61.php b/documentation/ru/howtos61.php index 5cff96a..be80dd2 100644 --- a/documentation/ru/howtos61.php +++ b/documentation/ru/howtos61.php @@ -1,6 +1,6 @@ - dvdisaster + + правильное использование @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos62.php b/documentation/ru/howtos62.php index 7e984d5..cd11f65 100644 --- a/documentation/ru/howtos62.php +++ b/documentation/ru/howtos62.php @@ -1,6 +1,6 @@ - dvdisaster + + неправильное использование @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos63.php b/documentation/ru/howtos63.php index 11229e6..7f3b8f9 100644 --- a/documentation/ru/howtos63.php +++ b/documentation/ru/howtos63.php @@ -1,6 +1,6 @@ - dvdisaster + + Проверка совместимости образов @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos90.php b/documentation/ru/howtos90.php index 120e107..9926b0c 100644 --- a/documentation/ru/howtos90.php +++ b/documentation/ru/howtos90.php @@ -1,6 +1,6 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos91.php b/documentation/ru/howtos91.php index 241fe34..6f47c67 100644 --- a/documentation/ru/howtos91.php +++ b/documentation/ru/howtos91.php @@ -1,6 +1,6 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=1.html b/documentation/ru/howtos91_expand=1.html index d258406..73ec2b7 100644 --- a/documentation/ru/howtos91_expand=1.html +++ b/documentation/ru/howtos91_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=2.html b/documentation/ru/howtos91_expand=2.html index fc3a006..69248b2 100644 --- a/documentation/ru/howtos91_expand=2.html +++ b/documentation/ru/howtos91_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=3.html b/documentation/ru/howtos91_expand=3.html index b13ba53..a10ce7c 100644 --- a/documentation/ru/howtos91_expand=3.html +++ b/documentation/ru/howtos91_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=4.html b/documentation/ru/howtos91_expand=4.html index 03ef5cb..87c0769 100644 --- a/documentation/ru/howtos91_expand=4.html +++ b/documentation/ru/howtos91_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + с файлами для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92.html b/documentation/ru/howtos92.html index 8cf780c..ea4790c 100644 --- a/documentation/ru/howtos92.html +++ b/documentation/ru/howtos92.html @@ -1,7 +1,8 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92.php b/documentation/ru/howtos92.php index 505bc71..e2b12cf 100644 --- a/documentation/ru/howtos92.php +++ b/documentation/ru/howtos92.php @@ -1,6 +1,6 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=1.html b/documentation/ru/howtos92_expand=1.html index 4b78ac4..a7f0c54 100644 --- a/documentation/ru/howtos92_expand=1.html +++ b/documentation/ru/howtos92_expand=1.html @@ -1,7 +1,8 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=2.html b/documentation/ru/howtos92_expand=2.html index 609ff11..ca4021d 100644 --- a/documentation/ru/howtos92_expand=2.html +++ b/documentation/ru/howtos92_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=3.html b/documentation/ru/howtos92_expand=3.html index 40ea575..4520659 100644 --- a/documentation/ru/howtos92_expand=3.html +++ b/documentation/ru/howtos92_expand=3.html @@ -1,7 +1,8 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=4.html b/documentation/ru/howtos92_expand=4.html index 0a192d9..189ae7f 100644 --- a/documentation/ru/howtos92_expand=4.html +++ b/documentation/ru/howtos92_expand=4.html @@ -1,7 +1,8 @@ - dvdisaster + + при дополнении образов данными для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtos_winfile.php b/documentation/ru/howtos_winfile.php index 9c4156c..9dfb69e 100644 --- a/documentation/ru/howtos_winfile.php +++ b/documentation/ru/howtos_winfile.php @@ -1,6 +1,6 @@ - dvdisaster + + Диалоги и кнопки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa0.php b/documentation/ru/howtosa0.php index 5c348bf..3483ed9 100644 --- a/documentation/ru/howtosa0.php +++ b/documentation/ru/howtosa0.php @@ -1,6 +1,6 @@ - dvdisaster + + Выбор привода @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa1.php b/documentation/ru/howtosa1.php index f20ab8a..8001c25 100644 --- a/documentation/ru/howtosa1.php +++ b/documentation/ru/howtosa1.php @@ -1,6 +1,6 @@ - dvdisaster + + Выбор привода @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa2.html b/documentation/ru/howtosa2.html index c91c0e3..2584510 100644 --- a/documentation/ru/howtosa2.html +++ b/documentation/ru/howtosa2.html @@ -1,7 +1,8 @@ - dvdisaster + + Выбор файла образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa2.php b/documentation/ru/howtosa2.php index 09be69a..7212fb1 100644 --- a/documentation/ru/howtosa2.php +++ b/documentation/ru/howtosa2.php @@ -1,6 +1,6 @@ - dvdisaster + + Выбор файла образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa2_expand=2.html b/documentation/ru/howtosa2_expand=2.html index 82f7ef6..e3dff5c 100644 --- a/documentation/ru/howtosa2_expand=2.html +++ b/documentation/ru/howtosa2_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Выбор файла образа @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa3.html b/documentation/ru/howtosa3.html index b36ae57..12afcf3 100644 --- a/documentation/ru/howtosa3.html +++ b/documentation/ru/howtosa3.html @@ -1,7 +1,8 @@ - dvdisaster + + Выбор файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa3.php b/documentation/ru/howtosa3.php index d5547b0..fd95098 100644 --- a/documentation/ru/howtosa3.php +++ b/documentation/ru/howtosa3.php @@ -1,6 +1,6 @@ - dvdisaster + + Выбор файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa3_expand=2.html b/documentation/ru/howtosa3_expand=2.html index 6e9e75a..04a75fb 100644 --- a/documentation/ru/howtosa3_expand=2.html +++ b/documentation/ru/howtosa3_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Выбор файла для исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa4.html b/documentation/ru/howtosa4.html index efc1df7..5f027d3 100644 --- a/documentation/ru/howtosa4.html +++ b/documentation/ru/howtosa4.html @@ -1,7 +1,8 @@ - dvdisaster + + Начало действий @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/howtosa4.php b/documentation/ru/howtosa4.php index ad5372f..95e8e3a 100644 --- a/documentation/ru/howtosa4.php +++ b/documentation/ru/howtosa4.php @@ -1,6 +1,6 @@ - dvdisaster + + Начало действий @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/imprint.php b/documentation/ru/imprint.php index 7f713ae..0df64a9 100644 --- a/documentation/ru/imprint.php +++ b/documentation/ru/imprint.php @@ -1,6 +1,6 @@ - dvdisaster + + Обзор @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -121,25 +122,37 @@ dvdisaster хранит данные на CD/DVD (по

    + 03.10.2011
    + + dvdisaster 0.72.3 released +

    + 31.10.2010
    + + dvdisaster 0.72.2 released +

    + 10.08.2009
    + + Project represention on SourceForge may be outdated +

    08.08.2009
    - dvdisaster 0.72.1 released + dvdisaster 0.72.1 released

    04.07.2009
    - выпущен dvdisaster 0.72 + выпущен dvdisaster 0.72

    11.04.2009
    - выпущен dvdisaster 0.72.rc1 + выпущен dvdisaster 0.72.rc1

    08.03.2009
    - выпущен dvdisaster 0.71.28 + выпущен dvdisaster 0.71.28

    18.01.2009
    - выпущен dvdisaster 0.71.27 + выпущен dvdisaster 0.71.27

    diff --git a/documentation/ru/index.php b/documentation/ru/index.php index 33dc658..004638a 100644 --- a/documentation/ru/index.php +++ b/documentation/ru/index.php @@ -1,6 +1,6 @@ - dvdisaster + + Примеры исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  
    К интернет-версии diff --git a/documentation/ru/index10.php b/documentation/ru/index10.php index c1bda6d..f834f9c 100644 --- a/documentation/ru/index10.php +++ b/documentation/ru/index10.php @@ -1,6 +1,6 @@ - dvdisaster + + Примеры исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/index10_expand=2.html b/documentation/ru/index10_expand=2.html index d68b59b..345d708 100644 --- a/documentation/ru/index10_expand=2.html +++ b/documentation/ru/index10_expand=2.html @@ -1,7 +1,8 @@ - dvdisaster + + Примеры исправления ошибок @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/index20.html b/documentation/ru/index20.html index 2ae2973..5618e6a 100644 --- a/documentation/ru/index20.html +++ b/documentation/ru/index20.html @@ -1,7 +1,8 @@ - dvdisaster + + dvdisaster дополняет проверки качества @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/index20.php b/documentation/ru/index20.php index 694b5aa..dc2ddb9 100644 --- a/documentation/ru/index20.php +++ b/documentation/ru/index20.php @@ -1,6 +1,6 @@ - dvdisaster + + dvdisaster: за и против @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/index30.php b/documentation/ru/index30.php index d68ee59..831dd7a 100644 --- a/documentation/ru/index30.php +++ b/documentation/ru/index30.php @@ -1,6 +1,6 @@ - dvdisaster + + Новости @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии @@ -74,7 +75,85 @@

    Новости dvdisaster

    - + + + +
    dvdisaster 0.72.1 releaseddvdisaster 0.72.3 released03.10.2011
    + + + + +
    + + + + +
    + + +
    + +The "Verify" function hangs when working on RS01 error +correction files which are larger than 2GB (the error correction +files are correctly generated though). +Volodymyr Bychkoviak discovered the problem and sent in +a bug fix. +
    +
     
    + + + + + +
    dvdisaster 0.72.2 released31.10.2010
    + + + + +
    + + + + +
    + + +
    + +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. RS03 images from 0.79.x +versions will no longer cause spurious error messages. +
    +
     
    + + + + + +
    Project represention on SourceForge may be outdated10.08.2009
    + + + + +
    + + + + +
    + + +
    + +Due to the recent functionality changes on SourceForge we are unable +to upload the News, Downloads and CVS contents in time. Please refer +to the respective sections on this site (http://dvdisaster.net) instead. + +
    +
     
    + + +
    dvdisaster 0.72.1 released 08.08.2009
    @@ -99,7 +178,7 @@ Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.

     
    - +
    выпущен dvdisaster 0.72выпущен dvdisaster 0.72 04.07.2009
    @@ -125,7 +204,7 @@ Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.

     
    - +
    выпущен dvdisaster 0.72.rc1выпущен dvdisaster 0.72.rc1 11.04.2009
    @@ -152,7 +231,7 @@ Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.

     
    - +
    выпущен dvdisaster 0.71.28выпущен dvdisaster 0.71.28 08.03.2009
    @@ -178,7 +257,7 @@ Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.

     
    - +
    выпущен dvdisaster 0.71.27выпущен dvdisaster 0.71.27 18.01.2009
    diff --git a/documentation/ru/news.php b/documentation/ru/news.php index a5a88b6..36343e5 100644 --- a/documentation/ru/news.php +++ b/documentation/ru/news.php @@ -1,6 +1,6 @@ diff --git a/documentation/ru/news2007.html b/documentation/ru/news2007.html index e0834ba..f31cc3b 100644 --- a/documentation/ru/news2007.html +++ b/documentation/ru/news2007.html @@ -1,7 +1,8 @@ - dvdisaster + + 2007 @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/news2007.php b/documentation/ru/news2007.php index 03153ab..eaf92d5 100644 --- a/documentation/ru/news2007.php +++ b/documentation/ru/news2007.php @@ -1,6 +1,6 @@ - dvdisaster + + 2008 @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/news2008.php b/documentation/ru/news2008.php index fac4979..52dba07 100644 --- a/documentation/ru/news2008.php +++ b/documentation/ru/news2008.php @@ -1,6 +1,6 @@ - dvdisaster + + Вопросы и ответы @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/qa.php b/documentation/ru/qa.php index d21b3e7..fa70ee4 100644 --- a/documentation/ru/qa.php +++ b/documentation/ru/qa.php @@ -1,6 +1,6 @@ - dvdisaster + + Технические вопросы @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/qa10.php b/documentation/ru/qa10.php index f55ef7d..0951ad5 100644 --- a/documentation/ru/qa10.php +++ b/documentation/ru/qa10.php @@ -1,6 +1,6 @@ - dvdisaster + + Сообщения об ошибках @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/documentation/ru/qa20.php b/documentation/ru/qa20.php index 1188023..18f3bdb 100644 --- a/documentation/ru/qa20.php +++ b/documentation/ru/qa20.php @@ -1,6 +1,6 @@ - dvdisaster + + Вопросы и ответы @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl3)  К интернет-версии diff --git a/ds-marker.c b/ds-marker.c index 0485760..81be14a 100644 --- a/ds-marker.c +++ b/ds-marker.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/dvdisaster.c b/dvdisaster.c index 44b7a99..ea59177 100644 --- a/dvdisaster.c +++ b/dvdisaster.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -60,7 +60,7 @@ void FixEcc(void) } /* - * Verfiy the image against ecc data + * Verify the image against ecc data */ void Verify(void) @@ -194,72 +194,30 @@ int main(int argc, char *argv[]) #ifdef WITH_NLS_YES #ifdef SYS_MINGW if(!g_getenv("LANG")) /* Unix style setting has precedence */ - { LANGID lang_id; + { OSVERSIONINFO os_version_info; + gchar *unix_locale = g_win32_getlocale(); + int os_major = 0; + int codepage = 0; + char codepage_name[32]; - /* Try to get locale from Windows - and set the respective environment variables. */ + memset(&os_version_info, 0, sizeof(OSVERSIONINFO)); + os_version_info.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); - lang_id = GetUserDefaultLangID(); - PrintLog("GetUserDefaultLangID = %x; Primary: %d, Sub: %d\n", - lang_id, PRIMARYLANGID(lang_id), SUBLANGID(lang_id)); + if(!GetVersionEx(&os_version_info)) + os_major = 0; - switch(PRIMARYLANGID(lang_id)) - { case LANG_CZECH: - g_setenv("LANG", "cs_CZ", 1); + os_major = os_version_info.dwMajorVersion; #ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP852", 1); + if(os_major >= 6) /* Vista or newer */ + codepage = GetACP(); + else codepage = GetOEMCP(); #else - g_setenv("OUTPUT_CHARSET", "CP1250", 1); + codepage = GetACP(); #endif - break; - - case LANG_GERMAN: - g_setenv("LANG", "de_DE", 1); -#ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP850", 1); -#else - g_setenv("OUTPUT_CHARSET", "CP1252", 1); -#endif - break; - - case LANG_ITALIAN: - g_setenv("LANG", "it_IT", 1); -#ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP850", 1); -#else - g_setenv("OUTPUT_CHARSET", "CP1252", 1); -#endif - break; - - case LANG_PORTUGUESE: - if(SUBLANGID(lang_id) == SUBLANG_PORTUGUESE_BRAZILIAN) - { g_setenv("LANG", "pt_BR", 1); -#ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP860", 1); -#else - g_setenv("OUTPUT_CHARSET", "CP1251", 1); -#endif - } - break; - - case LANG_RUSSIAN: - g_setenv("LANG", "ru_RU", 1); -#ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP855", 1); -#else - g_setenv("OUTPUT_CHARSET", "CP1251", 1); -#endif - break; - - case LANG_SWEDISH: - g_setenv("LANG", "sv_SV", 1); -#ifdef WIN_CONSOLE - g_setenv("OUTPUT_CHARSET", "CP850", 1); -#else - g_setenv("OUTPUT_CHARSET", "CP1252", 1); -#endif - break; - } + snprintf(codepage_name, 32, "CP%d", codepage); + g_setenv("OUTPUT_CHARSET", codepage_name, 1); + g_setenv("LANG", unix_locale, 1); + PrintLog("WinOSmajor %d, codepage %s, unix_locale %s\n", os_major, codepage_name, unix_locale); } #endif /* SYS_MINGW */ @@ -442,7 +400,15 @@ int main(int argc, char *argv[]) Closure->mediumSize = DVD_SL_SIZE; else if(!strcmp(optarg, "DVD9") || !strcmp(optarg, "dvd9")) Closure->mediumSize = DVD_DL_SIZE; - else Closure->mediumSize = (gint64)atoll(optarg); + else if(!strcmp(optarg, "BD") || !strcmp(optarg, "bd")) + Closure->mediumSize = BD_SL_SIZE; + else if(!strcmp(optarg, "BD2") || !strcmp(optarg, "bd2")) + Closure->mediumSize = BD_DL_SIZE; + else + { int len = strlen(optarg); + if(strchr("0123456789", optarg[len-1])) + Closure->mediumSize = (gint64)atoll(optarg); + } break; } case 'e': if(optarg) @@ -499,9 +465,12 @@ int main(int argc, char *argv[]) case MODIFIER_DRIVER: /* currently undocumented feature */ #if defined(SYS_LINUX) if(optarg && !strcmp(optarg,"sg")) - Closure->useSGioctl = TRUE; + Closure->useSCSIDriver = DRIVER_SG; + else + if(optarg && !strcmp(optarg,"cdrom")) + Closure->useSCSIDriver = DRIVER_CDROM_FORCED; else - Stop(_("Valid args for --driver: sg")); + Stop(_("Valid args for --driver: sg,cdrom")); #else Stop(_("--driver is only supported on GNU/Linux")); #endif @@ -744,10 +713,16 @@ int main(int argc, char *argv[]) Closure->imageName = ApplyAutoSuffix(Closure->imageName, "iso"); } - /*** Determine the default device (OS dependent!) if none - has been specified on the command line. */ + /*** Determine the default device (OS dependent!) if + - none has been specified on the command line + - and one if actually required in command line mode. - if(!Closure->device) + GUI mode will unconditionally query devices later anyways + in order to build the menu so we don't have to care about + that now. */ + + if(!Closure->device && mode == MODE_SEQUENCE + && (sequence & (1<device = DefaultDevice(); devices_queried = TRUE; } @@ -898,16 +873,19 @@ int main(int argc, char *argv[]) PrintCLI(_("Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" - " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" - " maximum error correction image size (in sectors)\n" + " -n,--redundancy n%% - error correction data redundancy\n" + " allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" // " -x, --threads n - use n threads for en-/decoding (if supported by codec)\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" - " --defective-dump d - directory for saving incomplete raw sectors\n" - " --eject - eject medium after successful read\n" + " --defective-dump d - directory for saving incomplete raw sectors\n")); +#ifdef SYS_LINUX + PrintCLI(_(" --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n")); +#endif + PrintCLI(_(" --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" " --internal-rereads n - drive may attempt n rereads before reporting an error\n" diff --git a/dvdisaster.h b/dvdisaster.h index 3449948..40914af 100644 --- a/dvdisaster.h +++ b/dvdisaster.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -110,6 +110,13 @@ #define MAX_CODEC_THREADS 32 /* not including IO and GUI */ +/* SCSI driver selection on Linux */ + +#define DRIVER_NONE 0 +#define DRIVER_CDROM_DEFAULT 1 +#define DRIVER_CDROM_FORCED 2 +#define DRIVER_SG 3 + /*** *** Our global closure (encapsulation of global variables) ***/ @@ -179,7 +186,7 @@ typedef struct _GlobalClosure int pauseEject; /* Eject medium during pause */ int ignoreFatalSense;/* Continue reading after potential fatal sense errors */ int useSSE2; /* TRUE means to use SSE2 version of the codec. */ - int useSGioctl; /* Use the generic SCSI ioctl instead of CDROM one on Liux */ + int useSCSIDriver; /* Whether to use generic or sg driver on Linux */ char *homeDir; /* path to users home dir */ char *dotFile; /* path to .dvdisaster file */ diff --git a/ecc-rs01.c b/ecc-rs01.c index d68d253..a507bbf 100644 --- a/ecc-rs01.c +++ b/ecc-rs01.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/ecc-rs02.c b/ecc-rs02.c index 249f96e..eb56152 100644 --- a/ecc-rs02.c +++ b/ecc-rs02.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/endian.c b/endian.c index 3a8f872..2e23753 100644 --- a/endian.c +++ b/endian.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/file.c b/file.c index ff6159f..819408d 100644 --- a/file.c +++ b/file.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -44,21 +44,23 @@ ImageInfo* OpenImageFile(EccHeader *eh, int mode) return NULL; } - PrintLog(_(": not present.\n")); + PrintLog(": %s.\n", strerror(errno)); g_free(ii); - Stop(_("Image file %s not present."),Closure->imageName); + Stop(_("Image file %s: %s."), Closure->imageName, strerror(errno)); return NULL; } file_flags = mode & WRITEABLE_IMAGE ? O_RDWR : O_RDONLY; if(!(ii->file = LargeOpen(Closure->imageName, file_flags, IMG_PERMS))) - { if(Closure->guiMode) + { if(!(mode & PRINT_MODE)) + PrintLog(": %s.\n", strerror(errno)); + + if(Closure->guiMode) { g_free(ii); - PrintLog(": %s", strerror(errno)); Stop(_("Can't open %s:\n%s"),Closure->imageName,strerror(errno)); } - else Stop(": %s", strerror(errno)); + else Stop(_("Image file %s: %s."), Closure->imageName, strerror(errno)); return NULL; } diff --git a/fingerprints.md5 b/fingerprints.md5 index bef75d8..57332e7 100644 --- a/fingerprints.md5 +++ b/fingerprints.md5 @@ -1,72 +1,72 @@ -528d88538b60d7d2468c900fad000b10 *dvdisaster.h -41207624d815a1a858915240dc18bbd9 *galois-inlines.h +b7e9bad3c00a1d70a580475b9ed957fa *dvdisaster.h +787048c361964de1d05f43480fcfcc89 *galois-inlines.h df9d88776eb3f77a93ef596b148193be *md5.h -f6e318c36cdec1a4edc71104de58daa3 *read-linear.h -8d64a25e6adedaafc5b3a2be715c83cd *rs01-includes.h -d1a7481bda654fc2dc05a03a96f09b64 *rs02-includes.h -34fe07915ecd139b05a01fa6a605888f *scsi-layer.h -c7370760e0537e79e95732a2c28c51b3 *udf.h -d08cd46c44e605e747a495e51b905815 *bitmap.c -02433e6d8a7ba811233ae55bd402144e *build.c -0ef931c162dfa424bacdd9f8bc203391 *closure.c -d31cd30dbaaf4803414d159425caff7f *crc32.c -f7142797e03aae72c789f07fb6cd6296 *crcbuf.c -3dd4fd1fd22354f4af218a326a7bbb4f *curve.c -ad57f7aec0d5a0314034e1d8e26527dc *debug.c -389356b6352841edeb3b8e86e0eb3ce7 *ds-marker.c -58d41d5abcb234ef7a9ba768bb9ffd30 *dvdisaster.c -414c4bcd1056c52794ac5baf8ed0df57 *ecc-rs01.c -a361c1485ab823d2983f51397e2bdf06 *ecc-rs02.c -b6b80b74d756872cd18d7625520c1b12 *endian.c -e05de4fd39f9e8af14806556c95d9a7a *file.c -9e60a9ee4c66366543afd641487956f4 *galois.c -c57febe500b709c6920cb9314d69f882 *help-dialogs.c -c74ea6938eadb8707106d0d5ac2c41ba *heuristic-lec.c -84841175e708cce754b316996d56e9de *icon-factory.c -8ff5665969a686785c32b750c4f2bae7 *large-io.c -3b917b470a6a95f959038b76b643f19e *l-ec.c -952e642347493dd5413cbdcdf9c85345 *logfile.c -b78a619ee84e994b39a5a89045011cd6 *maintenance.c -515e5cc87ec5176fbeb92245e603ab5c *main-window.c +5b0a4cfeb2b022ff870de91e0e3e271c *read-linear.h +dc27ad636922b5377db489a7bc7af33d *rs01-includes.h +55bc5f5c630e74f493b6adecd1f2cef9 *rs02-includes.h +8868c86aeebaa4552632237fa0fdb112 *scsi-layer.h +404f154a1817b522ae571a89e3bd0224 *udf.h +4f1b9b1b4208257d4f63405ba7eaf579 *bitmap.c +9756988d2d5871b9f6ee537183dcc759 *build.c +def4b4e13dac8d7c1a385b20ff8aae2d *closure.c +a71062cb0910810646a524dc2528060e *crc32.c +da786bf6351f1168c751163e569f3736 *crcbuf.c +723e4cb51239df51e4d6e5e606dfcb42 *curve.c +b25166857057a59252e9baa92d33dd9e *debug.c +22e9182d6ce8c965961db6dc4e7c8d43 *ds-marker.c +fea613d450a74e519d92aca7e4677eef *dvdisaster.c +561c525b65e28f10455ccf60ea99d3fe *ecc-rs01.c +47c4dc618b1f43c6f65710803578ee57 *ecc-rs02.c +4f6ffc87217d39410c19e35dd9009bb2 *endian.c +6b17e8bc93740d22c0742a38a1a9685a *file.c +af1bf9f1527f74206048c4c19f33cb3f *galois.c +c4de35f0f3c6ebb71bd1b0f7533ac5e4 *help-dialogs.c +963cb11186fc566fcb20375edba201cb *heuristic-lec.c +6dd5136e2684b9eda741c123141a3f30 *icon-factory.c +84710ca62d150eac096978439bcf82f7 *large-io.c +d1ce2750952197bcd856ba9518b1fb07 *l-ec.c +4bff0f52e476ca2f7f60cd97b6198bc0 *logfile.c +a5a2b12e1892c600f434f3b3bd9cbcd2 *maintenance.c +8dd8b3743fe894b6ab258c0cef21010b *main-window.c 9f8e7da67068ae5229eef9bab8fa18a2 *md5.c -61dd02ebd3a633dabad1022dc3da5c77 *medium-info.c -d9536c5fb18adf38e04b0d9852daca29 *memtrack.c -44c1d3da53df9cf0e3ec333cb4356636 *menubar.c -7f512f7bd753fb642a593c5a3f67a25d *method.c +f3b31d2502e77af2af08b37580f51590 *medium-info.c +073d52376df666035e7c8a11954f70c2 *memtrack.c +747b751f66e306233f1493ded9b79246 *menubar.c +b539c7b761b39cf015198f7ed1fba241 *method.c eecfd7e236c89cc36e1de2062754ac2e *method-link.c -e0d0f9eef7888e3ee39a2eaba43df55a *misc.c -23efd00e8952b3d6d8d223d60ed281fd *preferences.c -2d6acb30cac5dee16a208f49c13706b8 *print-sense.c +86d80569d82d32a635b1b21935941cd6 *misc.c +baf70d740c606c9a57f6aa4d5ec71cf5 *preferences.c +f49bfeeac8f1fa09aa36eb4053f267bc *print-sense.c cdde449dd2a8f64b560ff18a36f86234 *random.c -eafadf5a714d0203626c43654f1fe16c *raw-editor.c -02103c5a502b8a301fda329f8aa6a2f0 *raw-sector-cache.c -ee940cee17d2fc61cb3d461347251eae *read-adaptive.c -f3569b3479d0ef4473da83457f06992d *read-adaptive-window.c -b655bd4bec1e748721c9bf89d5f0b453 *read-linear.c -6ee78d0f63a7eea367d195b4f3fe7689 *read-linear-window.c -789a55ddd4080e187bcade7f602de14e *recover-raw.c -0c340317b804edd5a3476f5b89972da3 *rs01-common.c -a50445bf47ee4129987eb5c6998064de *rs01-create.c -f221714ec3fe61bf8063710dfc33c4bc *rs01-fix.c -06dca7381899c1478b137635a007fb5a *rs01-verify.c -6dec8b0b9e40f18c89eb452bbd7bdc06 *rs01-window.c -cd55d1406e3f2119581c03db75bed54d *rs02-common.c -17c52b0772dc403a887e237ddae517a8 *rs02-create.c -17f6ac68bf6dfc115fe725651004fe53 *rs02-fix.c -479b3e74610ba254dbac557f5114f34a *rs02-verify.c -88a2565289d2b7f520185eaf19b1abee *rs02-window.c -2f2444641113f1baf96a9fbeeba53773 *rs-encoder.c -4f60db5b21f4cbcd16dbd1b83e0b5492 *rs-encoder-sse2.c -4ccd9f251e9b6b52bf9a79c65ec2b762 *scsi-darwin.c -45d8b52ab8c03d661baf4c404c94115a *scsi-freebsd.c -2da068586abb78b2f4409c86805e257e *scsi-layer.c -d873aa8fa7936bc22e2e94c015c27979 *scsi-linux.c -a86f62372f2dea89f208ceafefaa1f97 *scsi-netbsd.c -38d4cab513130a40e22b956df0c588a7 *scsi-solaris.c -12f31844b6b5663865d8e290437c64e1 *scsi-unknown.c -8ed15376c6eff222cd75540307934fac *scsi-win32.c -8b9730b85071fbdc7a89be5b7156f6b4 *show-manual.c -b5dfb8fdbc3d7b4f1253cea5a795edec *smart-lec.c -bdcd6ac7c49c11d5426c696a40e8d919 *spiral.c -5aa3fd582de228bce5c241b047d0ca6c *udf.c -419901414caf8fe59fc97e473a87f291 *welcome-window.c +5b21329b7c6a7c533cb98b9af40e695f *raw-editor.c +0fb327ee25ba6baada3111f2e395b3e9 *raw-sector-cache.c +94979903b4cc67cd472f27253b7ff5a2 *read-adaptive.c +aa6318a920cc2553edfcb37ad4ea0e27 *read-adaptive-window.c +96440e26c15317d08e76a1885ee3b1b7 *read-linear.c +7e8096daeba118a9eeb3260ae528f2b8 *read-linear-window.c +259199177ba70289c7048e67cedb6474 *recover-raw.c +af432ff7fa20bdf154d8700352de5a58 *rs01-common.c +9fb4f3a95468861662630f20ff7dee8a *rs01-create.c +a08e6ffe8edc0857b46fa703335c15ff *rs01-fix.c +243ecca234c3a9c0513203d77d2d441b *rs01-verify.c +44226b4e4c9050d49fcef8912f006441 *rs01-window.c +598f33a3f5a8fc8b1f7d54be95c77e41 *rs02-common.c +24e1e1fb36da727f6233b6887f1273ef *rs02-create.c +1ace96021f8bdf3a9cb3de927c5cef45 *rs02-fix.c +c54b0aac42c408951e9fa653cce829d4 *rs02-verify.c +c6641c118472b93ea5e8ba3a2d99c616 *rs02-window.c +f7371df22528a3d82300fdaf3321e87c *rs-encoder.c +a526cd1ddb56b4313bcb77d3e6edad45 *rs-encoder-sse2.c +50fea4eea37d03f199e80a3554afe87e *scsi-darwin.c +01d5a87517882011f536e63e2b59ef56 *scsi-freebsd.c +3d8cccdcffb81b08afeb6d37b8024db8 *scsi-layer.c +3494a1f18b03f96a67fbe686d3aee05d *scsi-linux.c +73094258ef67570055aa796b66a92d5f *scsi-netbsd.c +b8330b3c73e700c1ce3164ff34ca4921 *scsi-solaris.c +cdeb6a9f19c3ab2cc677c670dc80f9cb *scsi-unknown.c +586b382471bf44ed05211bc977d5bde7 *scsi-win32.c +47fe8889a682ee192b9dfa9f0451e557 *show-manual.c +5cef301bd0ef3d22e9d596c36887283f *smart-lec.c +07f6662150116dac60fd75c4e7d5ec0a *spiral.c +1adf49e60a3cbd33fcdd272835cd51dc *udf.c +4c150cd8c5bf625d64927cfe04152887 *welcome-window.c diff --git a/galois-inlines.h b/galois-inlines.h index eddf33d..2e8127c 100644 --- a/galois-inlines.h +++ b/galois-inlines.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/galois.c b/galois.c index 0eeb720..b105606 100644 --- a/galois.c +++ b/galois.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/help-dialogs.c b/help-dialogs.c index 0bd0b91..a4399c9 100644 --- a/help-dialogs.c +++ b/help-dialogs.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -478,12 +478,29 @@ GtkWidget* ShowTextfile(char *title, char *explanation, char *file, size = strlen(buf); } else - { FILE *file = portable_fopen(path, "rb"); + { FILE *fptr = portable_fopen(path, "rb"); + size_t bytes_read; - buf = g_malloc(size); - fread(buf, size, 1, file); - fclose(file); - g_free(path); + if(!fptr) + { char *trans = _utf("File\n%s\nnot accessible"); + + buf = g_strdup_printf(trans, file); + size = strlen(buf); + } + else + { buf = g_malloc(size); + bytes_read = fread(buf, 1, size, fptr); + fclose(fptr); + g_free(path); + + if(bytes_read < size) + { char *trans = _utf("\n<- Error: Text file truncated here"); + + size = bytes_read + strlen(trans); + buf = realloc(buf, size+1); + strcpy(&buf[bytes_read], trans); + } + } } } else @@ -706,11 +723,11 @@ void AboutDialog() #ifdef MODIFIED_SOURCE AboutTextWithLink(vbox, - _("Modified version Copyright 2009 (please fill in - [directions])\n" - "Copyright 2004-2009 Carsten Gnoerlich"), + _("Modified version Copyright 2011 (please fill in - [directions])\n" + "Copyright 2004-2011 Carsten Gnoerlich"), "MODIFYING"); #else - AboutText(vbox, _("Copyright 2004-2009 Carsten Gnoerlich")); + AboutText(vbox, _("Copyright 2004-2011 Carsten Gnoerlich")); #endif sep = gtk_hseparator_new(); diff --git a/heuristic-lec.c b/heuristic-lec.c index fa57de2..13e5281 100644 --- a/heuristic-lec.c +++ b/heuristic-lec.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Copyright (C) 2006 Andrei Grecu * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org diff --git a/icon-factory.c b/icon-factory.c index 2a78ed9..f8de571 100644 --- a/icon-factory.c +++ b/icon-factory.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/l-ec.c b/l-ec.c index 30f6908..1cc2f9d 100644 --- a/l-ec.c +++ b/l-ec.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/large-io.c b/large-io.c index d04c45b..9b2e6ed 100644 --- a/large-io.c +++ b/large-io.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -334,7 +334,7 @@ int LargeSeek(LargeFile *lf, gint64 pos) */ int LargeEOF(LargeFile *lf) -{ int filepos; +{ gint64 filepos; if(!Closure->splitFiles) filepos = lf->offset; diff --git a/locale/cs.po b/locale/cs.po index e984071..257c39e 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -1,6 +1,6 @@ # translation of cs.po to čeština # Czech translations for dvdisaster package -# Copyright (C) 2004-2009 THE dvdisaster'S COPYRIGHT HOLDER +# Copyright (C) 2004-2010 THE dvdisaster'S COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. # # Luboš Staněk , 2006. @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" "PO-Revision-Date: 2006-03-16 20:40+0100\n" "Last-Translator: Luboš Staněk \n" "Language-Team: čeština \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,15 +32,15 @@ msgstr "" "# takže jej program dvdisaster při každém spuštění přepíše.\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "" @@ -84,9 +85,9 @@ msgstr "Selhalo vystavení na sektor %lld v obrazu: %s" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Selhal zápis do sektoru %lld v obrazu: %s" @@ -170,8 +171,8 @@ msgstr "Zkrácení obrazu na %lld sektorů.\n" msgid "Could not truncate %s: %s\n" msgstr "Nelze zkrátit %s: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -201,7 +202,7 @@ msgstr "" "dvdisaster --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -360,28 +361,28 @@ msgstr "Metoda RS01 není dostupná pro porovnání souborů." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -389,12 +390,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? neplatná návratová hodnota getopt %d\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -403,7 +404,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -427,7 +428,7 @@ msgstr "" " dvdisaster -u,--unlink # Smaže soubor .iso (když se dokončí další akce)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -442,7 +443,7 @@ msgstr "" " -i,--image imagefile - název souboru obrazu (výchozí: medium.iso)\n" " -e,--ecc eccfile - název souboru ecc (výchozí: medium.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -450,20 +451,28 @@ msgstr "" " -l,--list - vypíše seznam mechanik dostupných pod ASPI\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr "" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -479,7 +488,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -506,7 +515,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -514,7 +523,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -543,26 +552,22 @@ msgstr "" "\n" "Otevírání %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": nepřítomno.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "Soubor obrazu %s není přítomen." +msgid "Image file %s: %s." +msgstr "" -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld sektorů média.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr "" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -571,11 +576,11 @@ msgstr "" "nelze načíst sektor obrazu %lld (pouze %d bajtů):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "Neplatný nebo poškozený soubor ecc" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -584,7 +589,7 @@ msgstr "" "Nelze načíst hlavičku ecc:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -593,14 +598,14 @@ msgstr "" "Chyba při zavírání souboru oprav chyb:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" "Please visit http://www.dvdisaster.com for an upgrade." msgstr "" -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -609,7 +614,7 @@ msgstr "" "\n" "Soubor obrazu %s byl smazán.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Soubor obrazu %s nebyl smazán: %s\n" @@ -649,33 +654,47 @@ msgstr "" "%s\n" "není přítomen" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." msgstr "" -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "O aplikaci dvdisaster" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -"Copyright 2004-2009 Carsten Gnörlich\n" +"Copyright 2004-2011 Carsten Gnörlich\n" "Česká lokalizace 2006 Luboš Staněk" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -687,7 +706,7 @@ msgstr "" "Vytváří data oprav chyb, která se použijí k obnovení\n" "nečitelných sektorů, pokud se disk později poškodí.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -697,7 +716,7 @@ msgstr "" "Jedná se o svobodný software a můžete jej šířit\n" "za podmínek [Všeobecné veřejné licence GNU].\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -707,19 +726,19 @@ msgid "" "([www.dvdisaster.org]) about issues with this version.\n" msgstr "" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" msgstr "" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" msgstr "" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -853,7 +872,7 @@ msgstr "" msgid "finalized" msgstr "" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "neznámý" @@ -918,7 +937,7 @@ msgstr "" msgid "Drive:" msgstr "" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Žádné mechaniky nenalezeny" @@ -942,7 +961,7 @@ msgstr "" msgid "Book type:" msgstr "" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "" @@ -1094,71 +1113,71 @@ msgstr "Výběr souboru obrazu" msgid "windowtitle|Error correction file selection" msgstr "Výběr souboru oprav chyb" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Výběr jednotky" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Použijte vedlejší rozbalovací seznam k volbě vstupní mechaniky." -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Vyberte vstupní mechaniku pro čtení obrazů." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Výběr souboru obrazu" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Vybere nový soubor obrazu." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "Aktuální soubor obrazu" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Zobrazuje název aktuálního souboru obrazu." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Výběr souboru oprav chyb" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Vybere nový soubor oprav chyb." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "Aktuální soubor oprav chyb" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Zobrazuje název aktuálního souboru oprav chyb." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Nastavení" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Přizpůsobení nastavení pro vytváření obrazů, souborů oprav chyb a dalších věcí." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Uživatelská příručka" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Zobrazí uživatelskou příručku (vyžaduje externí prohlížeč HTML)." -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Konec" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Ukončí dvdisaster" @@ -1196,14 +1215,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnörlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnörlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1215,11 +1230,11 @@ msgstr "" "podle podmínek VŠEOBECNÉ VEŘEJNÉ LICENCE GNU. Celá,\n" "právně závazná licence je uvedena v souboru \"COPYING\".\n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Varování" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2249,7 +2264,7 @@ msgid "button|Smart L-EC" msgstr "" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2496,12 +2511,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "Chyba CRC v sektoru %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Sektory %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Sektor %lld: %s\n" @@ -2554,7 +2569,7 @@ msgstr "Adaptivní čtení:" msgid "Sectors processed" msgstr "Sektorů zpracováno" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "čitelný" @@ -2647,7 +2662,7 @@ msgstr "" msgid "done.\n" msgstr "hotovo.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Čekám %d sekund na roztočení disku...\n" @@ -3685,12 +3700,12 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Skok na hlavičku ecc selhal na %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Selhal zápis hlavičky ecc na %lld: %s\n" @@ -4225,7 +4240,7 @@ msgstr "" "V /dev nebyly nalezeny žádné CD/DVD mechaniky.\n" "Nebudou předvybrány žádné mechaniky.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4238,27 +4253,27 @@ msgstr "" "a pokoušíte se k ni přistupovat prostřednictvím /dev/cdrom nebo /dev/hd?.\n" "Místo toho buď použijte /dev/scd? nebo /dev/sr? nebo zakažte emulaci ide-scsi.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "INQUIRY selhal. Něco není v pořádku s mechanikou %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "Zařízení %s (%s) není mechanika CDROM." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "Zařízení %s (%s) je pevný disk." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4267,16 +4282,16 @@ msgstr "" "%s\n" "Nelze zjistit délku TOC.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "TOC informace je příliš dlouhá (%d), pravděpodobně jde o multisession.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4285,7 +4300,7 @@ msgstr "" "%s\n" "Nelze načíst TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4294,12 +4309,12 @@ msgstr "" "%s\n" "Nelze zjistit celou délku TOC.\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "TOC informace příliš krátká, délka %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4308,7 +4323,7 @@ msgstr "" "%s\n" "Nelze načíst celou oblast TOC.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4317,11 +4332,11 @@ msgstr "" "\n" "Neočekávaný formát TOC (délka %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Zvažte odeslání hlášení o chybě.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4330,12 +4345,12 @@ msgstr "" "%s\n" "Nelze se dotázat na délku dvd struktury.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "Nelze se dotázat na fyzickou strukturu - nepřijatelná délka paketu %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4344,26 +4359,26 @@ msgstr "" "%s\n" "Nelze se dotázat na fyzickou strukturu dvd.\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "" -#: scsi-layer.c:947 -#, c-format -msgid "" -"%s\n" -"Could not query BD disc structure length.\n" -msgstr "" - #: scsi-layer.c:970 #, c-format msgid "" "%s\n" +"Could not query BD disc structure length.\n" +msgstr "" + +#: scsi-layer.c:995 +#, c-format +msgid "" +"%s\n" "Could not query BD disc structure.\n" msgstr "" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4372,12 +4387,12 @@ msgstr "" "%s\n" "Nelze se dotázat na délku dvd struktury pro kód formátu 1.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "Nelze se dotázat na dvd copyright info - nepřijatelná délka paketu %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4386,23 +4401,23 @@ msgstr "" "%s\n" "Nelze se dotázat na copyright info.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "není rozhodnuto kvůli chybě čtení" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "vypadá DOBŘE" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "dává neformátovanou velikost (NEPOUŽITELNÉ)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "je POUŽITELNÉ" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4411,12 +4426,12 @@ msgstr "" "%s\n" "Nelze se dotázat na velikost média.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4425,7 +4440,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4433,15 +4448,15 @@ msgstr "" "Vyhodnocení vrácených velikostí médií:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Používám hodnotu z READ CAPACITY" -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Používám hodnotu z READ DVD STRUCTURE" -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4452,7 +4467,7 @@ msgstr "" "Používám menší hodnotu, protože je to správně pro >90%% všech mechanik,\n" "ale POKRAČUJTE NA VLASTNÍ NEBEZPEČÍ (obraz může být neúplný/nepoužitelný)" -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4461,7 +4476,7 @@ msgstr "" "Konečné rozhodnutí: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4469,51 +4484,51 @@ msgstr "" "Selhalo určení velikosti obrazu.\n" "Zkuste použít jinou mechaniku." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" "Could not load/unload the medium.\n" msgstr "" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" "Could not unlock the medium.\n" msgstr "" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4521,7 +4536,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4530,7 +4545,7 @@ msgstr "" "\n" "Zařízení: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4539,52 +4554,52 @@ msgstr "" "\n" "Zařízení: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "" -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "" -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "" -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr "" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr "" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr "" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Médium: %s, %lld sektorů%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Médium \"%s\": %s, %lld sektorů%s vytvořeno %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "" @@ -4637,7 +4652,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "Ovladač ASPI není dostupný nebo nainstalován.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -4646,7 +4661,7 @@ msgstr "" "\n" "Neplatné jméno zařízení \"%s\" (použijte zařízení \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -4704,19 +4719,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Vydržte prosím, až se spustí prohlížeč!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -4725,7 +4740,7 @@ msgid "" "not augmented with RS02 error correction data." msgstr "" -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -4734,11 +4749,11 @@ msgid "" "--query-size=udf\n" msgstr "" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Nepojmenovaný" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "" @@ -4776,6 +4791,12 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid ": not present.\n" +#~ msgstr ": nepřítomno.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "Soubor obrazu %s není přítomen." + #~ msgid "" #~ "\n" #~ "dvdisaster version %s\n" diff --git a/locale/de.po b/locale/de.po index 4b57693..54896cc 100644 --- a/locale/de.po +++ b/locale/de.po @@ -1,17 +1,18 @@ # German translations for dvdisaster package # German messages for dvdisaster. -# Copyright (C) 2004-2009 THE dvdisaster'S COPYRIGHT HOLDER +# Copyright (C) 2004-2010 THE dvdisaster'S COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. -# Carsten Gnörlich , 2009. +# Carsten Gnörlich , 2010. # msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.52.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" "PO-Revision-Date: 2004-11-30 19:48+0100\n" "Last-Translator: Carsten Gnörlich \n" "Language-Team: German \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,15 +31,15 @@ msgstr "" "# Sie wird bei jedem Aufruf von dvdisaster neu überschrieben.\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "abbild.iso" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "abbild.ecc" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "sektor_" @@ -83,9 +84,9 @@ msgstr "Ansteuern von Sektor %lld im Abbild fehlgeschlagen: %s" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Schreiben von Sektor %lld im Abbild fehlgeschlagen: %s" @@ -170,8 +171,8 @@ msgstr "Verkürze das Abbild auf %lld Sektoren.\n" msgid "Could not truncate %s: %s\n" msgstr "Konnte %s nicht abschneiden: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -201,7 +202,7 @@ msgstr "" "dvdisaster --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -401,28 +402,28 @@ msgstr "RS01-Methode zum Überprüfen der Dateien nicht verfügbar." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "--threads muß zwischen 1..%d liegen\n" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size muß mindestens 8MB sein; 16MB oder mehr werden empfohlen." -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size darf höchsten 8192MB sein." -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" -msgstr "Gültige Argumente für --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" +msgstr "Gültige Argumente für --driver: sg,cdrom" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "--driver wird nur unter GNU/Linux unterstützt" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -432,12 +433,12 @@ msgstr "" "\n" "dvdisaster version %s build %d\n" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? ungültiger Rückgabewert von getopt: %d\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -449,7 +450,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -473,7 +474,7 @@ msgstr "" " dvdisaster -u,--unlink # Löscht .iso - Dateien nach Beenden der vorherigen Aktionen.\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -488,7 +489,7 @@ msgstr "" " -i,--image Name - Name der Abbild - Datei (Standard: medium.iso)\n" " -e,--ecc Name - Name der Fehlerkorrektur-Datei (Standard: medium.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -496,20 +497,39 @@ msgstr "" " -l,--list - zeigt unter ASPI verfügbare Laufwerke\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" +"Feineinstellung (Beachten Sie die Hinweise in der Dokumentation!):\n" +" -j,--jump n - überspringe n Sektoren nach einem Lesefehler (Standard: 16)\n" +" -m n - Fehlerkorrektur-Methoden anzeigen/auswählen (Standard: RS01)\n" +" -n,--redundancy n%% - Redundanz der Fehlerkorrektur-Daten\n" +" zulässige Werte hängen vom Kodierer ab (siehe Dokumentation)\n" +" -v,--verbose - mehr erläuternde Ausgaben\n" +" --adaptive-read - verwende optimiertes Leseverfahren für defekte Datenträger\n" +" --auto-suffix - automatisches Anfügen der .iso- und .ecc-Dateiendungen\n" +" --cache-size n - Zwischenspeicher in MB bei .ecc-Datei-Erzeugung (Standard: 32MB)\n" +" --dao - unterstelle DAO; Abbild am Ende nicht kürzen\n" +" --defective-dump d - Verzeichnis zum Speichern unvollständiger Roh-Sektoren\n" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr " --driver=sg|cdrom - verwende cdrom- (Standard) oder sg-Treiber für Laufwerke\n" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -524,17 +544,6 @@ msgid "" " --split-files - split image into files <= 2GB\n" "\n" msgstr "" -"Feineinstellung (Beachten Sie die Hinweise in der Dokumentation!):\n" -" -j,--jump n - überspringe n Sektoren nach einem Lesefehler (Standard: 16)\n" -" -m n - Fehlerkorrektur-Methoden anzeigen/auswählen (Standard: RS01)\n" -" -n,--redundancy n%% - Redundanz der Fehlerkorrektur-Dateien (in Prozent), oder\n" -" höchstmögliche Größe für Fehlerkorrektur-Abbilder (in Sektoren)\n" -" -v,--verbose - mehr erläuternde Ausgaben\n" -" --adaptive-read - verwende optimiertes Leseverfahren für defekte Datenträger\n" -" --auto-suffix - automatisches Anfügen der .iso- und .ecc-Dateiendungen\n" -" --cache-size n - Zwischenspeicher in MB bei .ecc-Datei-Erzeugung (Standard: 32MB)\n" -" --dao - unterstelle DAO; Abbild am Ende nicht kürzen\n" -" --defective-dump d - Verzeichnis zum Speichern unvollständiger Roh-Sektoren\n" " --eject - Datenträger nach erfolgreichem Lesen auswerfen\n" " --fill-unreadable n - fülle unlesbare Sektoren mit Byte n\n" " --ignore-fatal-sense - Lesen nach möglicherweise schwerwiegenden Fehlern fortsetzen\n" @@ -549,7 +558,7 @@ msgstr "" " --split-files - Abbild in mehrere Dateien <= 2GB aufteilen\n" "\n" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -598,7 +607,7 @@ msgstr "" " --zero-unreadable - Ersetzt die \"unlesbare Sektoren\"-Markierungen durch Nullen\n" "\n" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -610,7 +619,7 @@ msgstr "" "dvdisaster-win.exe bereitgestellt (ebenfalls in dieser Installation enthalten).\n" "\n" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "Optisches LW 52X FW 1.02" @@ -639,26 +648,22 @@ msgstr "" "\n" "Öffne %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": nicht vorhanden.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "Abbild-Datei %s ist nicht vorhanden." +msgid "Image file %s: %s." +msgstr "Abbild-Datei %s: %s." -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld Datenträger-Sektoren.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr ": %lld Datenträger-Sektoren und %d Bytes.\n" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -667,11 +672,11 @@ msgstr "" "Konnte den Abbild-Sektor %lld nicht lesen (nur %d Bytes):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "Ungültige oder beschädigte Fehlerkorrektur-Datei" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -680,7 +685,7 @@ msgstr "" "Kann den Ecc-Vorspann nicht lesen:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -689,7 +694,7 @@ msgstr "" "Fehler beim Schließen der Fehlerkorrekturdatei:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" @@ -698,7 +703,7 @@ msgstr "" "Diese .ecc-Datei benötigt mindestens Version %d.%d.%d von dvdisaster.\n" "Bitte holen Sie sich von http://www.dvdisaster.de eine neuere Version." -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -707,7 +712,7 @@ msgstr "" "\n" "Abbild-Datei %s gelöscht.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Abbild-Datei %s nicht gelöscht: %s\n" @@ -747,11 +752,30 @@ msgstr "" "%s\n" "nicht vorhanden" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" +"Zugriff auf Datei\n" +"%s\n" +"nicht möglich" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" +"\n" +"<- Fehler: Textdatei ist hier abgeschnitten" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "dvdisaster verändern" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." @@ -759,23 +783,23 @@ msgstr "" "dvdisaster verändern\n" "Ihre Änderungen sind nicht unsere." -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "Kurzinformation" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -"Veränderte Version Copyright 2009 (bitte eintragen - [Hinweise])\n" -"Original-Programm Copyright 2004-2009 Carsten Gnörlich" +"Veränderte Version Copyright 2011 (bitte eintragen - [Hinweise])\n" +"Original-Programm Copyright 2004-2011 Carsten Gnörlich" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" -msgstr "Copyright 2004-2009 Carsten Gnörlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" +msgstr "Copyright 2004-2011 Carsten Gnörlich" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -787,7 +811,7 @@ msgstr "" "Es erzeugt Fehlerkorrekturdaten, um bei nachfolgenden Datenträger-\n" "Problemen unlesbare Sektoren zu rekonstruieren.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -796,7 +820,7 @@ msgstr "" "dvdisaster ist freie Software; es gelten die Bedingungen\n" "der [GNU General Public License] .\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -812,7 +836,7 @@ msgstr "" "Bitte behelligen Sie die ursprünglichen Autoren von dvdisaster\n" "([www.dvdisaster.org]) nicht wegen Problemen mit dieser Version.\n" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" @@ -820,7 +844,7 @@ msgstr "" "\n" "e-mail: carsten@dvdisaster.org -oder- cgnoerlich@fsfe.org" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" @@ -828,7 +852,7 @@ msgstr "" "\n" "Anpassungen für Darwin (Mac OS X): Julian Einwag <julian@einwag.de>" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -969,7 +993,7 @@ msgstr "erweiterbar" msgid "finalized" msgstr "abgeschlossen" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "unbekannt" @@ -1036,7 +1060,7 @@ msgstr "Laufwerks-Auswahl" msgid "Drive:" msgstr "Laufwerk:" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Keine Laufwerke gefunden" @@ -1060,7 +1084,7 @@ msgstr "Datenträger-Typ:" msgid "Book type:" msgstr "\"Book type\":" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "Herst.-ID:" @@ -1212,71 +1236,71 @@ msgstr "Abbild-Datei auswählen" msgid "windowtitle|Error correction file selection" msgstr "Fehlerkorrektur-Datei auswählen" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Laufwerk auswählen" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Klappen Sie die nebenstehende Liste aus um ein Laufwerk zu wählen." -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Auswahl des Laufwerks zum Einlesen von Abbildern." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Abbild-Datei auswählen" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Wählt eine neue Abbild-Datei aus." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "Momentane Abbild-Datei" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Zeigt den Namen der momentan verwendeten Abbild-Datei an." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Fehlerkorrektur-Datei auswählen" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Wählt eine neue Fehlerkorrektur-Datei aus." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "Momentane Fehlerkorrektur-Datei" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Zeigt den Namen der momentan verwendeten Fehlerkorrektur-Datei an." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Einstellungen" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Einstellungen zum Erzeugen von Abbildern, für die Fehlerkorrektur und anderes." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Benutzerhandbuch" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Ruft das Benutzerhandbuch auf (externer HTML-Betrachter wird benötigt)." -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Beenden" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Beendet dvdisaster." @@ -1314,14 +1338,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnörlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnörlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1331,11 +1351,11 @@ msgstr "" "Dies ist freie Software; es gelten die Bedingungen der\n" "GNU GENERAL PUBLIC LICENSE aus dem Quelltext.\n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Warnung" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2547,7 +2567,7 @@ msgid "button|Smart L-EC" msgstr "Smart L-EC" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2805,12 +2825,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "Prüfsummen-Fehler in Sektor %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Sektoren %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Sektor %lld: %s\n" @@ -2863,7 +2883,7 @@ msgstr "Angepaßtes Leseverfahren:" msgid "Sectors processed" msgstr "Bearbeitete Sektoren" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "lesbar" @@ -2956,7 +2976,7 @@ msgstr "Lese Prüfsummen aus Fehlerkorrektur-Daten" msgid "done.\n" msgstr "fertig.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Warte %d Sekunden auf das Hochdrehen des Laufwerks...\n" @@ -4033,12 +4053,12 @@ msgstr "" "\n" "dvdisaster optimiert Zugriffe auf die Abbild- und Fehlerkorrektur-Datei durch einen eigenen Zwischenspeicher. Die Voreinstellung von 32MB ist für die meisten Systeme passend." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Ansteuern des Ecc-Vorspanns bei Pos. %lld fehlgeschlagen: %s\n" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Schreiben des Ecc-Vorspanns bei Pos. %lld fehlgeschlagen: %s\n" @@ -4648,7 +4668,7 @@ msgstr "" "Keine CD/DVD in /dev gefunden.\n" "Es werden keine Laufwerke voreingestellt.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4662,27 +4682,27 @@ msgstr "" "Verwenden Sie entweder /dev/scd? oder /dev/sr?,\n" "oder schalten Sie die ide-scsi-Emulation ab.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "INQUIRY fehlgeschlagen. Irgendetwas stimmt nicht mit Laufwerk %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "Gerät %s (%s) ist kein CDROM." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "Laufwerk %s (%s) ist eine Festplatte." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "Unvollständige %s" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4691,16 +4711,16 @@ msgstr "" "%s\n" "Konnte Länge des Inhaltsverzeichnisses nicht ermitteln.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "leer" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "Inhaltsverzeichnis zu lang (%d), wahrscheinlich Mehrfach-Sitzung.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4709,7 +4729,7 @@ msgstr "" "%s\n" "Konnte Inhaltsverzeichnis nicht lesen.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4718,12 +4738,12 @@ msgstr "" "%s\n" "Konnte Länge des erweiterten Inhaltsverzeichnisses nicht ermitteln.\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "Inhaltsverzeichnis zu kurz, Länge %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4732,7 +4752,7 @@ msgstr "" "%s\n" "Konnte erweitertes Inhaltsverzeichnis nicht lesen.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4741,11 +4761,11 @@ msgstr "" "\n" "Unerwartetes Inhaltsverzeichnis-Format (Länge %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Erwägen Sie eine Fehlerbeschreibung einzusenden.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4754,14 +4774,14 @@ msgstr "" "%s\n" "Konnte Länge der DVD-Strukturbeschreibung nicht ermitteln.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "" "Konnte technische DVD-Strukturbeschreibung nicht ermitteln\n" "- ungültige Datenpaket-Größe %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4770,12 +4790,12 @@ msgstr "" "%s\n" "Konnte technische DVD-Strukturbeschreibung nicht ermitteln.\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "READ DVD STRUCTURE: ungültige Datenträger-Größe, %lld-%lld=%lld Sektoren\n" -#: scsi-layer.c:947 +#: scsi-layer.c:970 #, c-format msgid "" "%s\n" @@ -4784,7 +4804,7 @@ msgstr "" "%s\n" "Konnte Länge der BD-Strukturbeschreibung nicht ermitteln.\n" -#: scsi-layer.c:970 +#: scsi-layer.c:995 #, c-format msgid "" "%s\n" @@ -4793,7 +4813,7 @@ msgstr "" "%s\n" "Konnte technische DVD-Strukturbeschreibung nicht ermitteln.\n" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4803,14 +4823,14 @@ msgstr "" "Konnte Länge der DVD-Strukturbeschreibung f�r Formatkode 1\n" "nicht ermitteln.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "" "Konnte DVD-Copyright-Information nicht ermitteln\n" "- ungültige Datenpaket-Größe %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4819,23 +4839,23 @@ msgstr "" "%s\n" "Konnte DVD-Copyright-Information nicht ermitteln.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "ist aufgrund von Lesefehlern unbestimmbar" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "erscheint KORREKT" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "ist die unformatierte Größe (UNBRAUCHBAR)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "ist UNBRAUCHBAR" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4844,12 +4864,12 @@ msgstr "" "%s\n" "Konnte Datenträger-Größe nicht ermitteln.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "READ CAPACITY: ungültige Datenträger-Größe, %lld Sektoren\n" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4862,7 +4882,7 @@ msgstr "" "READ DVD STRUCTURE: %lld Sektoren\n" "\n" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4870,15 +4890,15 @@ msgstr "" "Untersuchung der beiden Angaben:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Verwende den Wert von READ CAPACITY." -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Verwende den Wert von READ DVD STRUCTURE." -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4889,7 +4909,7 @@ msgstr "" "Verwende den kleineren Wert (funktioniert bei 90%% aller Laufwerke).\n" "Weitermachen auf EIGENE GEFAHR: das Abbild kann unvollständig/unbrauchbar sein." -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4898,7 +4918,7 @@ msgstr "" "Abschließende Entscheidung: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4906,7 +4926,7 @@ msgstr "" "Größe des Datenträger-Inhaltes ist unbestimmbar.\n" "Probieren Sie ein anderes Laufwerk." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" @@ -4915,7 +4935,7 @@ msgstr "" "%s\n" "Der Datenträger konnte nicht geladen/ausgeworfen werden.\n" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" @@ -4924,37 +4944,37 @@ msgstr "" "%s\n" "Der Datenträger konnte nicht freigegeben werden.\n" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "Warte 10 Sekunden auf das Laufwerk: %d\n" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "Sektoren %lld - %lld: %s\n" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "Sektor %lld, Versuch %d: %s Zurückgegebener Sektor: %d.\n" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "Sektor %lld, Versuch %d: %s\n" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "Sektor %lld, Versuch %d: erfolgreich\n" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "Laufwerk %s: kein Datenträger eingelegt\n" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4965,7 +4985,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4974,7 +4994,7 @@ msgstr "" "\n" "Laufwerk: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4983,54 +5003,54 @@ msgstr "" "\n" "Laufwerk: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "Laufwerk erkennt den Datenträger-Typ nicht." -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "Dieses Programm unterstützt keine Datenträger vom Typ \"%s\"." -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "" "Dieses Programm unterstützt keine Mehrfach-Sitzungen (%d Sitzungen).\n" "(für Anglophile: Multisession-CDs sind gemeint ;-)" -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "Verwende READ CD" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr ", \"RAW\"-Lesen" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr ", Mode page 1 ERP = %02xh" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr ", C2-Überprüfung" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "Verwende READ(10).\n" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Datenträger: %s, %lld Sektoren%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Datenträger \"%s\": %s, %lld Sektoren%s erzeugt %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "Dieses Programm unterstützt keine verschlüsselten Datenträger.\n" @@ -5086,7 +5106,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "ASPI-Manager nicht verfügbar oder nicht installiert.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -5095,7 +5115,7 @@ msgstr "" "\n" "Unzulässiger Laufwerksname \"%s\" (verwenden Sie die Laufwerke \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -5154,19 +5174,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Bitte warten Sie bis der HTML-Betrachter erscheint!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "Überspringe RS02-Test" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "Weitersuchen" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "RS02-Test in den Einstellungen dauerhaft abschalten" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -5180,7 +5200,7 @@ msgstr "" "Informationen zu suchen. Wählen Sie \"Überspringe RS02-Test\" wenn Sie sicher sind,\n" "daß dieser Datenträger nicht mit RS02-Fehlerkorrektur-Informationen erweitert wurde." -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -5195,11 +5215,11 @@ msgstr "" "sollten Sie diesen Aufruf abbrechen und das Programm erneut mit der Option\n" "--query-size=udf starten.\n" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Unbenannt" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "Beispiel-CD" @@ -5246,5 +5266,65 @@ msgstr "" msgid "New in this Version:" msgstr "Neu in dieser Version:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Gültige Argumente für --driver: sg" + +#~ msgid "" +#~ "Tweaking options (see manual before using!)\n" +#~ " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" +#~ " -m n - list/select error correction methods (default: RS01)\n" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ " -v,--verbose - more diagnostic messages\n" +#~ " --adaptive-read - use optimized strategy for reading damaged media\n" +#~ " --auto-suffix - automatically add .iso and .ecc file suffixes\n" +#~ " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" +#~ " --dao - assume DAO disc; do not trim image end\n" +#~ " --defective-dump d - directory for saving incomplete raw sectors\n" +#~ " --eject - eject medium after successful read\n" +#~ " --fill-unreadable n - fill unreadable sectors with byte n\n" +#~ " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" +#~ " --internal-rereads n - drive may attempt n rereads before reporting an error\n" +#~ " --query-size n - query drive/udf/ecc for image size (default: ecc)\n" +#~ " --raw-mode n - mode for raw reading CD media (20 or 21)\n" +#~ " --read-attempts n-m - attempts n upto m reads of a defective sector\n" +#~ " --read-medium n - read the whole medium up to n times\n" +#~ " --read-raw - performs read in raw mode if possible\n" +#~ " --speed-warning n - print warning if speed changes by more than n percent\n" +#~ " --spinup-delay n - wait n seconds for drive to spin up\n" +#~ " --split-files - split image into files <= 2GB\n" +#~ "\n" +#~ msgstr "" +#~ "Feineinstellung (Beachten Sie die Hinweise in der Dokumentation!):\n" +#~ " -j,--jump n - überspringe n Sektoren nach einem Lesefehler (Standard: 16)\n" +#~ " -m n - Fehlerkorrektur-Methoden anzeigen/auswählen (Standard: RS01)\n" +#~ " -n,--redundancy n%% - Redundanz der Fehlerkorrektur-Dateien (in Prozent), oder\n" +#~ " höchstmögliche Größe für Fehlerkorrektur-Abbilder (in Sektoren)\n" +#~ " -v,--verbose - mehr erläuternde Ausgaben\n" +#~ " --adaptive-read - verwende optimiertes Leseverfahren für defekte Datenträger\n" +#~ " --auto-suffix - automatisches Anfügen der .iso- und .ecc-Dateiendungen\n" +#~ " --cache-size n - Zwischenspeicher in MB bei .ecc-Datei-Erzeugung (Standard: 32MB)\n" +#~ " --dao - unterstelle DAO; Abbild am Ende nicht kürzen\n" +#~ " --defective-dump d - Verzeichnis zum Speichern unvollständiger Roh-Sektoren\n" +#~ " --eject - Datenträger nach erfolgreichem Lesen auswerfen\n" +#~ " --fill-unreadable n - fülle unlesbare Sektoren mit Byte n\n" +#~ " --ignore-fatal-sense - Lesen nach möglicherweise schwerwiegenden Fehlern fortsetzen\n" +#~ " --internal-rereads n - Laufwerk unternimmt n Leseversuche bevor es einen Fehler zurückmeldet\n" +#~ " --query-size n - Abbildgröße ermitteln durch: drive/udf/ecc (Standard: ecc)\n" +#~ " --raw-mode n - \"raw-modus\" zum Lesen von CD (20 or 21)\n" +#~ " --read-attempts n-m - versucht beschädigten Sektor n bis m-mal zu lesen\n" +#~ " --read-medium n - liest den gesamten Datenträger bis zu n-mal\n" +#~ " --read-raw - liest in der \"raw\"-Betriebsart sofern möglich\n" +#~ " --speed-warning n - warnt bei Geschwindigkeitsänderung um mehr als n Prozent\n" +#~ " --spinup-delay n - gibt dem Laufwerk n Sekunden Zeit zum Hochlaufen\n" +#~ " --split-files - Abbild in mehrere Dateien <= 2GB aufteilen\n" +#~ "\n" + +#~ msgid ": not present.\n" +#~ msgstr ": nicht vorhanden.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "Abbild-Datei %s ist nicht vorhanden." + #~ msgid "DVD 2 layers" #~ msgstr "Zweilagige DVD" diff --git a/locale/it.po b/locale/it.po index 1c2210c..9f38640 100644 --- a/locale/it.po +++ b/locale/it.po @@ -1,17 +1,18 @@ # Italian translations for dvdisaster package by Andrea Polverini (polve@polve.com) # Italian messages for dvdisaster. -# Copyright (C) 2004-2009 THE dvdisaster'S COPYRIGHT HOLDER +# Copyright (C) 2004-2010 THE dvdisaster'S COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. -# Carsten Gnörlich , 2009. +# Carsten Gnörlich , 2010. # msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.52.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" "PO-Revision-Date: 2005-01-01 14:24+0100\n" "Last-Translator: Andrea Polverini \n" "Language-Team: Italian <>\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,15 +31,15 @@ msgstr "" "# e sarà sovrascritto ogni volta che verrà eseguito dvdisaster\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "" @@ -81,9 +82,9 @@ msgstr "" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "" @@ -168,8 +169,8 @@ msgstr "" msgid "Could not truncate %s: %s\n" msgstr "Non posso troncare %s: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -199,7 +200,7 @@ msgstr "" "dvdisaster --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -356,28 +357,28 @@ msgstr "" msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -385,12 +386,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? getopt ha restituito un valore illegale: %d\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -399,7 +400,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -423,7 +424,7 @@ msgstr "" " dvdisaster -u,--unlink # Cancella i file .iso (Quando le altre azioni sono concluse)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -438,7 +439,7 @@ msgstr "" " -i,--image Nome - Nome del file immagine (Standard: medium.iso)\n" " -e,--ecc Nome - Nome del file di Parità (Standard: medium.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -446,20 +447,28 @@ msgstr "" " -l,--list - Elenca i drive disponibili con ASPI manager\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr "" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -475,7 +484,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -502,7 +511,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -510,7 +519,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -539,26 +548,22 @@ msgstr "" "\n" "Sto aprendo %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": non presente.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "File immagine %s non presente." +msgid "Image file %s: %s." +msgstr "" -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld settori del supporto.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr ": %lld settori del supporto e %d bytes.\n" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -567,11 +572,11 @@ msgstr "" "Impossibile leggere il settore %lld dell'immagine (solo %d Bytes):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -580,7 +585,7 @@ msgstr "" "Impossibile leggere lo header Ecc:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -589,7 +594,7 @@ msgstr "" "Errore durante la chiusura del file di correzione di errore:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" @@ -598,7 +603,7 @@ msgstr "" "Questo file .ecc necessita di dvdisaster V%d.%d.%d o superiore.\n" "Visitate il sito http://www.dvdisaster.com per l'upgrade." -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -607,7 +612,7 @@ msgstr "" "\n" "File immagine %s rimosso.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Il file immagine %s non è stato rimosso: %s\n" @@ -647,31 +652,45 @@ msgstr "" "%s\n" "non presente" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." msgstr "" -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "Info su dvdisaster" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" -msgstr "Copyright 2004-2009 Carsten Gnörlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" +msgstr "Copyright 2004-2011 Carsten Gnörlich" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -683,7 +702,7 @@ msgstr "" "Crea dei dati di correzione degli errori che saranno poi utilizzati per recuperare\n" "i settori illeggibili se il supporto dovesse danneggiarsi col tempo.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -695,7 +714,7 @@ msgstr "" "\n" "Traduzione italiana di Andrea Polverini (info@polve.com).\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -705,19 +724,19 @@ msgid "" "([www.dvdisaster.org]) about issues with this version.\n" msgstr "" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" msgstr "" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" msgstr "" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -846,7 +865,7 @@ msgstr "" msgid "finalized" msgstr "" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "sconosciuto" @@ -911,7 +930,7 @@ msgstr "" msgid "Drive:" msgstr "" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Nessun drive trovato" @@ -935,7 +954,7 @@ msgstr "" msgid "Book type:" msgstr "" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "" @@ -1087,71 +1106,71 @@ msgstr "Selezione dei file immagine" msgid "windowtitle|Error correction file selection" msgstr "Selezione del file di correzione degli errori" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Seleziona Drive" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Usa il menu a tendina qui vicino per selezionare il drive di input." -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Seleziona il drive di input per leggere le immagini." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Selezione dei file immagine" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Seleziona un nuovo file immagine." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "File immagine corrente" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Mostra il nome del file immagine corrente." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Selezione del file di correzione degli errori" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Seleziona un nuovo file di correzione errori." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "File di correzione errori corrente" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Mostra il nome del file di correzione errori corrente." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Preferenze" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Personalizza i settaggi della creazione di immagini, file di correzione degli errori ad altra roba." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Manuale utente" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Mostra il manuale utente (è richiesto un Browser HTML esterno)" -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Esci" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Chiudi dvdisaster" @@ -1189,14 +1208,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnörlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnörlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1208,11 +1223,11 @@ msgstr "" "Per informazioni, leggete il file \"COPYING\".\n" "Traduzione italiana di Andrea Polverini (info@polve.com).\n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Attenzione" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2242,7 +2257,7 @@ msgid "button|Smart L-EC" msgstr "" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2491,12 +2506,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "Errore CRC nel settore %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Settori %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Settore %lld: %s\n" @@ -2549,7 +2564,7 @@ msgstr "Modo di lettura adattivo:" msgid "Sectors processed" msgstr "Settori processati" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "Leggibile" @@ -2642,7 +2657,7 @@ msgstr "" msgid "done.\n" msgstr "compiuto.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Attendere %d secondi per far avviare il drive...\n" @@ -3688,12 +3703,12 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "" @@ -4213,7 +4228,7 @@ msgstr "" "Nessun CD/DVD drive trovato in /dev.\n" "Nessun drive sarà preselezionato.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4227,27 +4242,27 @@ msgstr "" "Oppure prova ad usare /dev/scd? o /dev/sr?,\n" "oppure disabilita l'emulazione ide-scsi.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "INQUIRY fallita. Qualcosa non va con il drive %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "La periferica %s (%s) non è un CDROM." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "La periferica %s (%s) è un disco rigido." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4256,16 +4271,16 @@ msgstr "" "%s\n" "Non riesco ad indentificare lunghezza della TOC.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "TOC info troppo lunga (%d), probabile multisessione.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4274,7 +4289,7 @@ msgstr "" "%s\n" "Non riesco a leggere la TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4283,12 +4298,12 @@ msgstr "" "%s\n" "Non riesco a leggere tutta la lunghezza della TOC.\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "TOC info troppo corta, lunghezza %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4297,7 +4312,7 @@ msgstr "" "%s\n" "Non riesco a leggere tutta la TOC.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4306,11 +4321,11 @@ msgstr "" "\n" "formato TOC inatteso (lunghezza %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Considera di inviare una comunicazione di errore.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4319,12 +4334,12 @@ msgstr "" "%s\n" "Non posso identificare la lunghezza della struttura del dvd.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "Non riesco ad identificare la struttura fisica del dvd - lunghezza pachetto non plausibile %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4333,26 +4348,26 @@ msgstr "" "%s\n" "Non riesco ad identificare la struttura fisica del dvd\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "" -#: scsi-layer.c:947 -#, c-format -msgid "" -"%s\n" -"Could not query BD disc structure length.\n" -msgstr "" - #: scsi-layer.c:970 #, c-format msgid "" "%s\n" +"Could not query BD disc structure length.\n" +msgstr "" + +#: scsi-layer.c:995 +#, c-format +msgid "" +"%s\n" "Could not query BD disc structure.\n" msgstr "" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4361,14 +4376,14 @@ msgstr "" "%s\n" "Non posso identificare la lunghezza della struttura dvd per il format code 1.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "" "Non posso identificare le informazioni del copyright del dvd\n" "- lunghezza del pacchetto non plausibile %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4377,23 +4392,23 @@ msgstr "" "%s\n" "Non posso identificare le informazioni del copyright.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "Illeggibile per errori di lettura" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "sembra BUONA" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "rende la dimensione non formattata (INUTILIZZABILE)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "è UTILIZZABILE" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4402,12 +4417,12 @@ msgstr "" "%s\n" "Non riesco ad indentificare la dimensione del supporto.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4420,7 +4435,7 @@ msgstr "" "\"READ DVD STRUCTURE\": %lld Settori\n" "\n" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4428,15 +4443,15 @@ msgstr "" "Valutazione della dimensione del media:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Usa il valore dalla READ CAPACITY" -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Usa il valore dalla READ DVD STRUCTURE" -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4448,7 +4463,7 @@ msgstr "" "ma CONTINUATE A VOSTRO RISCHIO (l'immagine potrebbe essere\n" "incompleta o illeggibile)." -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4457,7 +4472,7 @@ msgstr "" "Decisione finale: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4465,51 +4480,51 @@ msgstr "" "Impossibile determinare la dimensione dell'immagine.\n" "Provare ad utilizzare un drive diverso." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" "Could not load/unload the medium.\n" msgstr "" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" "Could not unlock the medium.\n" msgstr "" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4517,7 +4532,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4526,7 +4541,7 @@ msgstr "" "\n" "Periferica: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4535,52 +4550,52 @@ msgstr "" "\n" "Periferica: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "" -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "" -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "" -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr "" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr "" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr "" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Supporto: %s, %lld settori%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Supporto \"%s\": %s, %lld settori%s creato %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "" @@ -4631,7 +4646,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "ASPI-Manager non disponibile o non installato.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -4640,7 +4655,7 @@ msgstr "" "\n" "Nome della periferica illegale \"%s\" (usare periferiche \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -4699,19 +4714,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Prego attendere finchè il browser non si avvia!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -4720,7 +4735,7 @@ msgid "" "not augmented with RS02 error correction data." msgstr "" -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -4729,11 +4744,11 @@ msgid "" "--query-size=udf\n" msgstr "" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Non intestato" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "" @@ -4771,6 +4786,12 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid ": not present.\n" +#~ msgstr ": non presente.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "File immagine %s non presente." + #~ msgid "" #~ "\n" #~ "dvdisaster version %s\n" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 71c0a93..14e4692 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -1,16 +1,17 @@ # Portuguese translations for dvdisaster package. -# Copyright (C) 2009 THE dvdisaster'S COPYRIGHT HOLDER +# Copyright (C) 2010 THE dvdisaster'S COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. -# Carsten Gnörlich , 2009. +# Carsten Gnörlich , 2010. # msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.72.rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" -"PO-Revision-Date: 2009-06-09 11:13+0200\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" +"PO-Revision-Date: 2010-06-09 11:13+0200\n" "Last-Translator: cg \n" "Language-Team: Portuguese\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,15 +30,15 @@ msgstr "" "# que será sobreescrevido toda vez que o dvdisaster rodar.\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "midia.iso" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "midia.ecc" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "setor-" @@ -82,9 +83,9 @@ msgstr "Falha ao ir para o setor %lld da imagem: %s" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Falha ao gravar no setor %lld da imagem: %s" @@ -168,8 +169,8 @@ msgstr "Truncando imagem para %lld setores.\n" msgid "Could not truncate %s: %s\n" msgstr "Impossível truncar %s: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -199,7 +200,7 @@ msgstr "" "dvdistater --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -396,28 +397,28 @@ msgstr "Método RS01 não está disponível para comparar arquivos." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "--threads devem ser de 1..%d\n" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size deve ser pelo menos 8MB; 16MB ou mais são recomendados." -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size máximo é 8192MB." -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" -msgstr "Argumentos válidos para --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" +msgstr "" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "--driver suportado apenas no GNU/Linux" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -427,12 +428,12 @@ msgstr "" "\n" "dvdisaster, versão %s build %d\n" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? valor de retorno de getopt %d ilegal\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -443,7 +444,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -467,7 +468,7 @@ msgstr "" " dvdisaster -u,--unlink # Apaga arquivos .iso (quando outras ações estão completas)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -482,7 +483,7 @@ msgstr "" " -i,--image arquivodeimagem - nome do arquivo de imagem (padrão: midia.iso)\n" " -e,--ecc arquivoecc - nome do arquivo de paridade (padrão: midia.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -490,20 +491,39 @@ msgstr "" " -l,--list - lista drives disponíveis pelo gerenciador ASPI\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" +"Opções avançadas (leio o manual antes de usar!)\n" +" -j,--jump n - pula n setores adiante após um erro de leitura (padrão: 16)\n" +" -m n - lista/seleciona métodos de correção de erros (Padrão: (RS01)\n" +" -n,--redundancy n%% - redundância do arquivo de correção de erros (porcentagem), ou\n" +" tamanho máximo do arquivo de correção de erros (setores)\n" +" -v,--verbose - mais mensagens de diagnóstico\n" +" --adaptive-read - usa estratégia otimizada para leitura de mídia danificada\n" +" --auto-suffix - adiciona sufixos .iso e .ecc aos arquivos automaticamente\n" +" --cache-size n - tamanho do cache da imagem em MB durante o modo -c (padrão: 32MB)\n" +" --dao - assume que é um disco DAO; não cortar o fim da imagem\n" +" --defective-dump d - diretório para salvar setores raw incompletos\n" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr "" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -518,17 +538,6 @@ msgid "" " --split-files - split image into files <= 2GB\n" "\n" msgstr "" -"Opções avançadas (leio o manual antes de usar!)\n" -" -j,--jump n - pula n setores adiante após um erro de leitura (padrão: 16)\n" -" -m n - lista/seleciona métodos de correção de erros (Padrão: (RS01)\n" -" -n,--redundancy n%% - redundância do arquivo de correção de erros (porcentagem), ou\n" -" tamanho máximo do arquivo de correção de erros (setores)\n" -" -v,--verbose - mais mensagens de diagnóstico\n" -" --adaptive-read - usa estratégia otimizada para leitura de mídia danificada\n" -" --auto-suffix - adiciona sufixos .iso e .ecc aos arquivos automaticamente\n" -" --cache-size n - tamanho do cache da imagem em MB durante o modo -c (padrão: 32MB)\n" -" --dao - assume que é um disco DAO; não cortar o fim da imagem\n" -" --defective-dump d - diretório para salvar setores raw incompletos\n" " --eject - ejeta a mídia após uma leitura bem-sucedida\n" " --fill-unreadable n - preenche setores ilegíveis com o byte n\n" " --ignore-fatal-sense - continua a leitura após condição de erro possivelmente fatal\n" @@ -542,7 +551,7 @@ msgstr "" " --split-files - divide a imagem em arquivos de até 2GB\n" "\n" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -589,7 +598,7 @@ msgstr "" " --zero-unreadable - substitui os marcadores \"setor-ilegível\" por zeros\n" "\n" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -601,7 +610,7 @@ msgstr "" "é dvdisaster-win.exe (também contido nesta instalação).\n" "\n" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "Drive ótico 52X FW 1.02" @@ -630,26 +639,22 @@ msgstr "" "\n" "Abrindo %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": não está presente.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "Arquivo de imagem %s não está presente." +msgid "Image file %s: %s." +msgstr "" -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld setores da mídia.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr ": %lld setores da mídia e %d bytes.\n" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -658,11 +663,11 @@ msgstr "" "impossível ler o setor %lld da imagem (apenas %d bytes):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "Arquivo ecc inválido ou danificado" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -671,7 +676,7 @@ msgstr "" "Impossível ler o cabeçalho do ecc:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -680,7 +685,7 @@ msgstr "" "Erro ao fechar o arquivo de correção de erros:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" @@ -689,7 +694,7 @@ msgstr "" "Esse arquivo .ecc requer dvdisaster V%d.%d.%d ou superior.\n" "Por favor, visite http://www.dvdisaster.com para atualizar." -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -698,7 +703,7 @@ msgstr "" "\n" "Arquivo de imagem %s apagado.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Arquivo de imagem %s não apagado: %s\n" @@ -738,11 +743,25 @@ msgstr "" "%s\n" "não presente" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "Modificando o dvdisaster" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." @@ -750,23 +769,23 @@ msgstr "" "Modificando o dvdisaster\n" "Suas mudanças não são nossas." -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "windowtitle|Sobre o dvdisaster" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -"Versão modificada Copyright 2009 (por favor, preencha - [instruções])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Versão modificada Copyright 2011 (por favor, preencha - [instruções])\n" +"Copyright 2004-2011 Carsten Gnoerlich" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" -msgstr "Copyright 2004-2009 Carsten Gnoerlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" +msgstr "Copyright 2004-2011 Carsten Gnoerlich" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -778,7 +797,7 @@ msgstr "" "Ele cria dados de correção de erros que são usados para recuperar\n" "setores ilegíveis se o disco ficar danificado posteriormente.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -790,7 +809,7 @@ msgstr "" "\n" "Tradução para português por Pablo Almeida (pabloalmeidaff9@gmail.com)\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -806,7 +825,7 @@ msgstr "" "Por favor, não incomode os autores originais do dvdisaster\n" "([www.dvdisaster.org]) com problemas dessa versão.\n" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" @@ -814,7 +833,7 @@ msgstr "" "\n" "e-mail: carsten@dvdisaster.org -ou- cgnoerlich@fsfe.org" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" @@ -822,7 +841,7 @@ msgstr "" "\n" "Darwin port (Mac OS X) por: Julian Einwag <julian@einwag.de>" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -961,7 +980,7 @@ msgstr "anexável" msgid "finalized" msgstr "finalizada" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "desconhecida" @@ -1028,7 +1047,7 @@ msgstr "Seleção de drive" msgid "Drive:" msgstr "Drive:" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Nenhum drive encontrado" @@ -1052,7 +1071,7 @@ msgstr "Tipo de mídia:" msgid "Book type:" msgstr "Tipo de livro:" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "ID do Manufatorador:" @@ -1204,71 +1223,71 @@ msgstr "Seleção de arquivo de imagem" msgid "windowtitle|Error correction file selection" msgstr "Seleção de arquivo de correção de erros" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Seleção de Drive" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Use a lista \"drop-down\" ao lado para escolher o drive de entrada" -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Seleciona o drive de entrada para ler imagens." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Seleção do arquivo de imagem" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Seleciona um novo arquivo de imagem." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "Arquivo de imagem atual" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Mostra o nome do arquivo de imagem atual." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Seleção do arquivo de correção de erros" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Seleciona um novo arquivo de correção de erros." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "Arquivo de correção de erros atual" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Mostra o nome do arquivo de correção de erros atual." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Preferências" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Personaliza configurações de criação de imagems, arquivos de correção de erros e outras coisas." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Manual de usuário" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Mostra o manual de usuário (requer browser de HTML externo)." -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Sair" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Sai do dvdisaster" @@ -1306,14 +1325,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1327,11 +1342,11 @@ msgstr "" "\n" "Tradução para português por Pablo Almeida (pabloalmeidaff9@gmail.com)\n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Alerta" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2539,7 +2554,7 @@ msgid "button|Smart L-EC" msgstr "Smart L-EC" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2793,12 +2808,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "Erro de CRC no setor %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Setores %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Setor %lld: %s\n" @@ -2851,7 +2866,7 @@ msgstr "Leitura adaptiva:" msgid "Sectors processed" msgstr "Setores processados" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "legível" @@ -2944,7 +2959,7 @@ msgstr "Lendo informação de CRC dos dados ecc" msgid "done.\n" msgstr "pronto.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Aguardando %d segundos para que o drive gire...\n" @@ -4016,12 +4031,12 @@ msgstr "" "\n" "O dvdisaster otimiza o acesso à imagem e arquivos de correção de erros mantendo seu próprio cache. O padrão de 32MB é adequada à maioria dos sistemas." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Falha ao buscar no cabeçalho ecc em %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Falha ao gravar no cabeçalho ecc em %lld: %s\n" @@ -4632,7 +4647,7 @@ msgstr "" "Nenhum drive de CD/DVD encontrado em /dev.\n" "Nenhum drive será pré-selecionado.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4645,27 +4660,27 @@ msgstr "" "e tentando acessá-lo via /dev/cdrom ou /dev/hd?.\n" "Use /dev/scd? ou /dev/sr? em vez disso, ou desative a emulação de ide-scsi.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "A CONSULTA falhou. Há algo de errado com o drive %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "O dispositivo %s (%s) não é um drive de CDROM." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "O dispositivo %s (%s) é um disco rígido." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "%s incompleto" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4674,16 +4689,16 @@ msgstr "" "%s\n" "Impossível consultar o tamanho TOC.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "em branco" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "Informação TOC grande demais (%d), provavelmente multiseção.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4692,7 +4707,7 @@ msgstr "" "%s\n" "Impossível ler TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4701,12 +4716,12 @@ msgstr "" "%s\n" "Impossível consultar o tamanho total do TOC.\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "Informação TOC curta demais, tamanho %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4715,7 +4730,7 @@ msgstr "" "%s\n" "Impossível ler o TOC completo.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4724,11 +4739,11 @@ msgstr "" "\n" "Formato de TOC inesperado (tamanho %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Considere enviar um relatório de bug.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4737,12 +4752,12 @@ msgstr "" "%s\n" "Impossível consultar o tamanho da estrutura do dvd.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "Impossível consultar a estrutura física do dvd - tamanho de pacote inverossímil: %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4751,12 +4766,12 @@ msgstr "" "%s\n" "Impossível consultar a estrutura do dvd.\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "LER A ESTRUTURA DO DVD: tamanho da mídia inverossímil: %lld-%lld=%lld setores\n" -#: scsi-layer.c:947 +#: scsi-layer.c:970 #, c-format msgid "" "%s\n" @@ -4765,7 +4780,7 @@ msgstr "" "%s\n" "Impossível consultar o tamanho da estrutura do disco BD.\n" -#: scsi-layer.c:970 +#: scsi-layer.c:995 #, c-format msgid "" "%s\n" @@ -4774,7 +4789,7 @@ msgstr "" "%s\n" "Impossível consultar a estrutura do disco BD.\n" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4783,12 +4798,12 @@ msgstr "" "%s\n" "Impossível consultar o tamanho da estrutura do dvd para o código de formato 1.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "Impossível consultar as informações de copyright do dvd - tamanho de pacote inverossímil: %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4797,23 +4812,23 @@ msgstr "" "%s\n" "Impossível consultar as informações de copyright.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "é impossível de se resolver por causa de um erro de leitura" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "parece BOM" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "dá o tamanho não-formatado (INUTILIZÁVEL)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "é INUTILIZÁVEL" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4822,12 +4837,12 @@ msgstr "" "%s\n" "Impossível consultar o tamanho da mídia.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "CAPACIDADE DE LEITURA: tamanho da mídia inverossímil, %lld setores\n" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4839,7 +4854,7 @@ msgstr "" "LEITURA DA CAPACIDADE: %lld setores\n" "LEITURA DA ESTRUTURA DO DVD : %lld setores\n" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4847,15 +4862,15 @@ msgstr "" "Avaliação dos tamanhos da mídia retornados:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Usando o valor da LEITURA DA CAPACIDADE" -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Usando o valor da LEITURA DA ESTRUTURA DO DVD" -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4866,7 +4881,7 @@ msgstr "" "Usar valores menores como este é adequado a mais de 90%% de todos os drives,\n" "mas CONTINUE COM A SUA CONTA EM RISCO (a imagem pode ficar incompleta/inutilizável)" -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4875,7 +4890,7 @@ msgstr "" "Decisão final: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4883,14 +4898,14 @@ msgstr "" "Falha ao determinar o tamanho da imagem.\n" "Tente usar um drive diferente." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" "Could not load/unload the medium.\n" msgstr "" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" @@ -4899,37 +4914,37 @@ msgstr "" "%s\n" "Impossível destravar a mídia.\n" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "Aguardando 10 segundos pelo drive: %d\n" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "Setores %lld - %lld: %s\n" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "Setor %lld, tentativa %d: %s Setor retornado: %d.\n" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "Setor %lld, tentativa %d: %s\n" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "Setor %lld, tentativa %d: sucesso\n" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "Dispositivo %s: nenhuma mídia presente\n" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4940,7 +4955,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4949,7 +4964,7 @@ msgstr "" "\n" "Dispositivo: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4958,52 +4973,52 @@ msgstr "" "\n" "Dispositivo: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "O drive falhou ao informar o tipo de mídia." -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "Este software não suporta mídias do tipo \"%s\"" -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "Este software não suporta mídias em multisessão (%d sessões)." -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "Usando READ CD" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr ", leitura RAW" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr "" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr ", escaneando C2" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "Usando READ(10).\n" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Mídia: %s, %lld setores%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Mídia \"%s\": %s, %lld setores%s criou %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "Este software não suporta mídias criptografadas.\n" @@ -5058,7 +5073,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "Gerenciador ASPI não disponível ou não instalado.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -5067,7 +5082,7 @@ msgstr "" "\n" "Nome de dispositivo ilegal: \"%s\" (use dispositivos de \"C:\" ... a \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -5125,19 +5140,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Por favor, espere até que o browser abra!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "Pular o teste RS02" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "Continuar a busca" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "Desativar a inicialização RS02 nas preferências" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -5151,7 +5166,7 @@ msgstr "" "Aperte \"Pular o teste RS02\" se você está certo de que essa mídia não foi\n" "aumentada com dados de correção de erros RS02." -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -5165,11 +5180,11 @@ msgstr "" "correção de erros RS02, você pode querer abortar este comando e rodar novamente com a opção\n" "--query-size=udf\n" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Sem título" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "Disco de exemplo" @@ -5216,5 +5231,64 @@ msgstr "" msgid "New in this Version:" msgstr "Novidades dessa versão:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Argumentos válidos para --driver: sg" + +#~ msgid "" +#~ "Tweaking options (see manual before using!)\n" +#~ " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" +#~ " -m n - list/select error correction methods (default: RS01)\n" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ " -v,--verbose - more diagnostic messages\n" +#~ " --adaptive-read - use optimized strategy for reading damaged media\n" +#~ " --auto-suffix - automatically add .iso and .ecc file suffixes\n" +#~ " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" +#~ " --dao - assume DAO disc; do not trim image end\n" +#~ " --defective-dump d - directory for saving incomplete raw sectors\n" +#~ " --eject - eject medium after successful read\n" +#~ " --fill-unreadable n - fill unreadable sectors with byte n\n" +#~ " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" +#~ " --internal-rereads n - drive may attempt n rereads before reporting an error\n" +#~ " --query-size n - query drive/udf/ecc for image size (default: ecc)\n" +#~ " --raw-mode n - mode for raw reading CD media (20 or 21)\n" +#~ " --read-attempts n-m - attempts n upto m reads of a defective sector\n" +#~ " --read-medium n - read the whole medium up to n times\n" +#~ " --read-raw - performs read in raw mode if possible\n" +#~ " --speed-warning n - print warning if speed changes by more than n percent\n" +#~ " --spinup-delay n - wait n seconds for drive to spin up\n" +#~ " --split-files - split image into files <= 2GB\n" +#~ "\n" +#~ msgstr "" +#~ "Opções avançadas (leio o manual antes de usar!)\n" +#~ " -j,--jump n - pula n setores adiante após um erro de leitura (padrão: 16)\n" +#~ " -m n - lista/seleciona métodos de correção de erros (Padrão: (RS01)\n" +#~ " -n,--redundancy n%% - redundância do arquivo de correção de erros (porcentagem), ou\n" +#~ " tamanho máximo do arquivo de correção de erros (setores)\n" +#~ " -v,--verbose - mais mensagens de diagnóstico\n" +#~ " --adaptive-read - usa estratégia otimizada para leitura de mídia danificada\n" +#~ " --auto-suffix - adiciona sufixos .iso e .ecc aos arquivos automaticamente\n" +#~ " --cache-size n - tamanho do cache da imagem em MB durante o modo -c (padrão: 32MB)\n" +#~ " --dao - assume que é um disco DAO; não cortar o fim da imagem\n" +#~ " --defective-dump d - diretório para salvar setores raw incompletos\n" +#~ " --eject - ejeta a mídia após uma leitura bem-sucedida\n" +#~ " --fill-unreadable n - preenche setores ilegíveis com o byte n\n" +#~ " --ignore-fatal-sense - continua a leitura após condição de erro possivelmente fatal\n" +#~ " --internal-rereads n - o dispositivo pode tentar n re-leituras antes de reportar um erro\n" +#~ " --query-size n - consulta o dispositivo/udf/ecc pelo tamanho da imagem (padrão: ecc)\n" +#~ " --raw-mode n - modo para leitura de mídia CD em modo raw (20 ou 21)\n" +#~ " --read-attempts n-m - tenta de n a m leituras em um setor defeituoso\n" +#~ " --read-medium n - faz uma leitura em modo raw, se possível\n" +#~ " --speed-warning n - mostra um aviso se a velocidade variar mais do que n porcento\n" +#~ " --spinup-delay n - aguarda n segundos para que o drive gire\n" +#~ " --split-files - divide a imagem em arquivos de até 2GB\n" +#~ "\n" + +#~ msgid ": not present.\n" +#~ msgstr ": não está presente.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "Arquivo de imagem %s não está presente." + #~ msgid "About dvdisaster" #~ msgstr "Sobre o dvdisaster" diff --git a/locale/ru.po b/locale/ru.po index a468579..1259206 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -1,18 +1,19 @@ # Russian translations for dvdisaster package # Русские переводы для пакета dvdisaster. -# Copyright (C) 2009 THE dvdisaster'S COPYRIGHT HOLDER +# Copyright (C) 2010 THE dvdisaster'S COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. -# Igor Gorbounov , 2009. +# Igor Gorbounov , 2010. # # msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.70.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" -"PO-Revision-Date: 2009-07-23 08:11+0300\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" +"PO-Revision-Date: 2010-07-23 08:11+0300\n" "Last-Translator: Igor Gorbounov \n" "Language-Team: Russian\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,15 +32,15 @@ msgstr "" "# он автоматически перезаписывается при каждом запуске программы.\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "medium.iso" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "medium.ecc" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "сектор-" @@ -84,9 +85,9 @@ msgstr "Не удалось найти сектор %lld в образе: %s" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Не удалось записать сектор %lld в образе: %s" @@ -170,8 +171,8 @@ msgstr "Усечение образа до %lld секторов.\n" msgid "Could not truncate %s: %s\n" msgstr "Не удалось усечь %s: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -201,7 +202,7 @@ msgstr "" "dvdisaster --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -398,28 +399,28 @@ msgstr "Метод RS01 не применяется для сравнения ф msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "--потоков должно быть 1..%d\n" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size должен быть не меньше 8МБ; рекомендуется 16МБ и больше." -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size максимальный размер буфера 8192МБ." -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" -msgstr "Правильные аргументы для --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" +msgstr "" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "только --driver поддерживается на GNU/Linux" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -430,12 +431,12 @@ msgstr "" "dvdisaster версия %s сборка %d\n" "\n" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? неправильное возвращаемое значение getopt: %d\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -447,7 +448,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -471,7 +472,7 @@ msgstr "" " dvdisaster -u,--unlink # Удалить файлы .iso (по завершении других действий)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -486,7 +487,7 @@ msgstr "" " -i,--image файл образа - имя файла образа (по умолчанию: medium.iso)\n" " -e,--ecc ecc-файл - имя файла с ecc-данными (по умолчанию: medium.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -494,20 +495,28 @@ msgstr "" " -l,--list - список ASPI-приводов\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr "" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -522,32 +531,8 @@ msgid "" " --split-files - split image into files <= 2GB\n" "\n" msgstr "" -"Параметры тонкой настройки (перед применением см. руководство!)\n" -" -j,--jump n - переход на n секторов вперед после ошибки чтения (по умолчанию: 16)\n" -" -m n - просмотреть/выбрать методы исправления ошибок (по умолчанию: RS01)\n" -" -n,--redundancy n%% - избыточность файла исправления ошибок (в процентах) или\n" -" максимальный размер образа для исправления ошибок (в секторах)\n" -" -v,--verbose - больше диагностических сообщений\n" -" --adaptive-read - использование оптимизированной стратегии чтения поврежденных носителей\n" -" --auto-suffix - автоматически добавлять расширения имени файла .iso и .ecc\n" -" --cache-size n - размер буфера образа в МБ в режиме -c (по умолчанию: 32МБ)\n" -" --dao - считать, что диск в режиме DAO; не отрезать конец образа\n" -" --defective-dump d - каталог для сохранения незавершенных необработанных секторов\n" -" --eject - извлекать носитель после успешного чтения\n" -" --fill-unreadable n - заполнять нечитаемые сектора байтом n\n" -" --ignore-fatal-sense - продолжать чтение после возможной критической ошибки\n" -" --internal-rereads n - привод может делать n повторных чтений перед сообщением об ошибке\n" -" --query-size n - размер образа запрашивать в приводе/udf/ecc (по умолчанию: ecc)\n" -" --raw-mode n - режим для низкоуровневого чтения CD-носителей (20 или 21)\n" -" --read-attempts n-m - делается от n до m попыток чтения поврежденного сектора\n" -" --read-medium n - читать весь носитель до n раз\n" -" --read-raw - выполнять чтение в низкоуровневом режиме, если это возможно\n" -" --speed-warning n - выводить предупреждение, если скорость изменяется больше, чем на n процентов\n" -" --spinup-delay n - выждать n секунд, пока привод не раскрутится\n" -" --split-files - разбить образ на файлы <= 2ГБ\n" -"\n" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -596,7 +581,7 @@ msgstr "" " --zero-unreadable - заменять маркеры \"нечитаемый сектор\" нулями\n" "\n" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -608,7 +593,7 @@ msgstr "" "(также содержится в этом установочном пакете).\n" "\n" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "Оптический привод 52X FW 1.02" @@ -637,26 +622,22 @@ msgstr "" "\n" "Открытие %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": отсутствует.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "Файл образа %s отсутствует." +msgid "Image file %s: %s." +msgstr "" -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld секторов носителя.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr ": %lld секторов носителя и %d байт.\n" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -665,11 +646,11 @@ msgstr "" "не удалось прочитать сектор %lld образа (только %d байт):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "Неправильный или поврежденный ecc-файл" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -678,7 +659,7 @@ msgstr "" "Не удается прочитать ecc-заголовок:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -687,7 +668,7 @@ msgstr "" "Ошибка при закрытии файла для исправления ошибок:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" @@ -696,7 +677,7 @@ msgstr "" "Для этого .ecc-файла требуется dvdisaster V%d.%d.%d или выше.\n" "За обновлениями обращайтесь на http://www.dvdisaster.com." -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -705,7 +686,7 @@ msgstr "" "\n" "Файл образа %s удален.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Файл образа %s не удален: %s\n" @@ -745,11 +726,25 @@ msgstr "" "%s\n" "отсутствует" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "Изменение dvdisaster'а" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." @@ -757,23 +752,23 @@ msgstr "" "Изменение dvdisaster'а\n" "Ваши изменения не являются нашими." -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "О программе dvdisaster" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -"Измененнная версия Copyright 2009 (пожалуйста, заполните - [инструкции])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Измененнная версия Copyright 2011 (пожалуйста, заполните - [инструкции])\n" +"Copyright 2004-2011 Carsten Gnoerlich" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" -msgstr "Copyright 2004-2009 Carsten Gnoerlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" +msgstr "Copyright 2004-2011 Carsten Gnoerlich" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -785,7 +780,7 @@ msgstr "" "Он создает данные для исправления ошибок, которые используются\n" "для восстановления нечитаемых секторов, если диск впоследствии повреждается.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -797,7 +792,7 @@ msgstr "" "\n" "Русский перевод Игоря Горбунова <igor.gorbounov@gmail.com>\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -813,7 +808,7 @@ msgstr "" "Пожалуйста, не беспокойте авторов dvdisaster'а\n" "([www.dvdisaster.org]) проблемами этой версии.\n" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" @@ -821,7 +816,7 @@ msgstr "" "\n" "e-mail: carsten@dvdisaster.org -или- cgnoerlich@fsfe.org" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" @@ -829,7 +824,7 @@ msgstr "" "\n" "Порт для Darwin (Mac OS X): Julian Einwag <julian@einwag.de>" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -968,7 +963,7 @@ msgstr "расширяемый" msgid "finalized" msgstr "законченный" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "неизвестно" @@ -1035,7 +1030,7 @@ msgstr "Выбор привода" msgid "Drive:" msgstr "Привод:" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Нет приводов" @@ -1059,7 +1054,7 @@ msgstr "Тип носителя:" msgid "Book type:" msgstr "Формат (book type):" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "Изгот.-ID:" @@ -1211,71 +1206,71 @@ msgstr "Выбор файла образа" msgid "windowtitle|Error correction file selection" msgstr "Выбор файла для исправления ошибок" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Выбор привода" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Выберите привод для чтения из расположенного рядом выпадающего списка." -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Выбор привода для чтения образов." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Выбор файла образа" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Выбор нового файла образа." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "Текущий файл образа" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Имя текущего файла образа." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Выбор файла для исправления ошибок" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Выбор нового файла для исправления ошибок." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "Текущий файл для исправления ошибок" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Имя текущего файла для исправления ошибок." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Настройки" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Настройки для создания образов, файлов для исправления ошибок и т.п." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Руководство пользователя" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Вызов руководства пользователя (требуется внешний HTML браузер)." -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Выход" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Выход из dvdisaster" @@ -1313,14 +1308,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1334,11 +1325,11 @@ msgstr "" "\n" "Русский перевод Игоря Горбунова \n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Внимание" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2549,7 +2540,7 @@ msgid "button|Smart L-EC" msgstr "Интеллектуальный L-EC" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2803,12 +2794,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "CRC-ошибка в секторе %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Сектора %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Сектор %lld: %s\n" @@ -2861,7 +2852,7 @@ msgstr "Адаптивное чтение:" msgid "Sectors processed" msgstr "Обработанные сектора" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "можно прочитать" @@ -2954,7 +2945,7 @@ msgstr "Чтение CRC-информации из ecc-данных" msgid "done.\n" msgstr "готово.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Задержка на %d секунд для раскручивания привода...\n" @@ -4026,12 +4017,12 @@ msgstr "" "\n" "dvdisaster оптимизирует доступ к образам и файлам для исправления ошибок с помощью собственного буфера. Предустановленное значение в 32 МБ подходит для большинства систем." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Не удалось перейти к ecc-заголовку в %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Не удалось записать ecc-заголовок в %lld: %s\n" @@ -4644,7 +4635,7 @@ msgstr "" "Не найдено приводов CD/DVD в /dev.\n" "Не будет предустановленных приводов.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4657,27 +4648,27 @@ msgstr "" "и делается попытка доступа к нему через /dev/cdrom или /dev/hd?.\n" "Вместо этого используйте /dev/scd? или /dev/sr?, или отключите эмуляцию ide-scsi.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "INQUIRY не удается. Что-то не в порядке с приводом %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "Устройство %s (%s) не является приводом CDROM." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "Устройство %s (%s) является жестким диском." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "Не завершено %s" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4686,16 +4677,16 @@ msgstr "" "%s\n" "Не удалось запросить размер TOC.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "пустой" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "Информация в TOC слишком большая (%d), вероятно многосессионная запись.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4704,7 +4695,7 @@ msgstr "" "%s\n" "Не удалось прочитать TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4713,12 +4704,12 @@ msgstr "" "%s\n" "Не удалось запросить весь размер TOC.\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "Информация в TOC слишком мала, длина %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4727,7 +4718,7 @@ msgstr "" "%s\n" "Не удалось прочитать всю TOC.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4736,11 +4727,11 @@ msgstr "" "\n" "Неожиданный формат TOC (длина %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Рекомендуется отправить отчет об ошибке.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4749,12 +4740,12 @@ msgstr "" "%s\n" "Не удалось запросить размер dvd-структуры.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "Не удалось запросить физическую структуру dvd - неправдоподобная длина пакета %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4763,12 +4754,12 @@ msgstr "" "%s\n" "Не удалось запросить физическую структуру dvd.\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "READ DVD STRUCTURE: неправильный размер носителя, %lld-%lld=%lld секторов\n" -#: scsi-layer.c:947 +#: scsi-layer.c:970 #, c-format msgid "" "%s\n" @@ -4777,7 +4768,7 @@ msgstr "" "%s\n" "Не удалось запросить размер структуры BD диска.\n" -#: scsi-layer.c:970 +#: scsi-layer.c:995 #, c-format msgid "" "%s\n" @@ -4786,7 +4777,7 @@ msgstr "" "%s\n" "Не удалось запросить структуру BD диска.\n" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4795,12 +4786,12 @@ msgstr "" "%s\n" "Не удалось запросить размер dvd-структуры для кода формата 1.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "Не удалось запросить информацию об авторских правах dvd - неправдоподобный размер пакета %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4809,23 +4800,23 @@ msgstr "" "%s\n" "Не удалось запросить информацию об авторских правах.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "не ясно из-за ошибок чтения" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "выглядит ПРАВИЛЬНО" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "дает неформатированный размер (НЕПРИГОДНО)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "НЕПРИГОДНО" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4834,12 +4825,12 @@ msgstr "" "%s\n" "Не удалось запросить размер носителя.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "READ CAPACITY: неправильный размер носителя, %lld секторов\n" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4852,7 +4843,7 @@ msgstr "" "READ DVD STRUCTURE: %lld секторов\n" "\n" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4860,15 +4851,15 @@ msgstr "" "Оценка полученных размеров носителя:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Используется значение из READ CAPACITY" -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Используется значение из READ DVD STRUCTURE" -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4879,7 +4870,7 @@ msgstr "" "Использование значения меньшего, чем это, работает на >90%% приводов,\n" "но ПРОДОЛЖАЙТЕ НА СВОЙ РИСК (образ может быть неполным/непригодным)" -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4888,7 +4879,7 @@ msgstr "" "Окончательное решение: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4896,7 +4887,7 @@ msgstr "" "Не удалось определить размер образа.\n" "Попробуйте другой привод." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" @@ -4905,7 +4896,7 @@ msgstr "" "%s\n" "Не удалось загрузить/выгрузить носитель.\n" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" @@ -4914,37 +4905,37 @@ msgstr "" "%s\n" "Не удалось разблокировать носитель.\n" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "Выжидание 10 секунд для привода: %d\n" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "Сектора %lld - %lld: %s\n" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "Сектор %lld, попытка %d: %s Возвращен сектор: %d.\n" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "Сектор %lld, попытка %d: %s\n" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "Сектор %lld, попытка %d: успешно\n" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "Устройство %s: нет носителя\n" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4955,7 +4946,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4964,7 +4955,7 @@ msgstr "" "\n" "Устройство: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4973,52 +4964,52 @@ msgstr "" "\n" "Устройство: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "Не удалось получить от привода сообщение о типе носителя." -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "Эта программа не поддерживает \"%s\" тип носителя." -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "Эта программа не поддерживает многосессионные (%d сессиий) носители." -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "Используется READ CD" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr ", чтение \"RAW\"" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr ", Mode page 1 ERP = %02xh" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr ", поиск ошибок C2" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "Используется READ(10).\n" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Носитель: %s, %lld секторов%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Носитель \"%s\": %s, %lld секторов%s создан %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "Эта программа не поддерживает шифрованные носители.\n" @@ -5073,7 +5064,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "Менеджер ASPI не доступен или не установлен.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -5082,7 +5073,7 @@ msgstr "" "\n" "Неправильное имя устройства \"%s\" (используйте устройства \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -5140,19 +5131,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Подождите, пока загрузится браузер!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "Пропустить тест RS02" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "Продолжить поиск" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "Отключить инициализацию RS02 в настройках" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -5166,7 +5157,7 @@ msgstr "" "Нажмите \"Пропустить тест RS02\", если Вы уверены, что этот носитель не был\n" "дополнен данными для исправления ошибок методом RS02." -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -5180,11 +5171,11 @@ msgstr "" "то можете прервать эту команду и перезапустить процесс с параметром\n" "--query-size=udf\n" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Без названия" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "Пример диска" @@ -5231,6 +5222,66 @@ msgstr "" msgid "New in this Version:" msgstr "Новое в этой версии:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Правильные аргументы для --driver: sg" + +#~ msgid "" +#~ "Tweaking options (see manual before using!)\n" +#~ " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" +#~ " -m n - list/select error correction methods (default: RS01)\n" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ " -v,--verbose - more diagnostic messages\n" +#~ " --adaptive-read - use optimized strategy for reading damaged media\n" +#~ " --auto-suffix - automatically add .iso and .ecc file suffixes\n" +#~ " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" +#~ " --dao - assume DAO disc; do not trim image end\n" +#~ " --defective-dump d - directory for saving incomplete raw sectors\n" +#~ " --eject - eject medium after successful read\n" +#~ " --fill-unreadable n - fill unreadable sectors with byte n\n" +#~ " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" +#~ " --internal-rereads n - drive may attempt n rereads before reporting an error\n" +#~ " --query-size n - query drive/udf/ecc for image size (default: ecc)\n" +#~ " --raw-mode n - mode for raw reading CD media (20 or 21)\n" +#~ " --read-attempts n-m - attempts n upto m reads of a defective sector\n" +#~ " --read-medium n - read the whole medium up to n times\n" +#~ " --read-raw - performs read in raw mode if possible\n" +#~ " --speed-warning n - print warning if speed changes by more than n percent\n" +#~ " --spinup-delay n - wait n seconds for drive to spin up\n" +#~ " --split-files - split image into files <= 2GB\n" +#~ "\n" +#~ msgstr "" +#~ "Параметры тонкой настройки (перед применением см. руководство!)\n" +#~ " -j,--jump n - переход на n секторов вперед после ошибки чтения (по умолчанию: 16)\n" +#~ " -m n - просмотреть/выбрать методы исправления ошибок (по умолчанию: RS01)\n" +#~ " -n,--redundancy n%% - избыточность файла исправления ошибок (в процентах) или\n" +#~ " максимальный размер образа для исправления ошибок (в секторах)\n" +#~ " -v,--verbose - больше диагностических сообщений\n" +#~ " --adaptive-read - использование оптимизированной стратегии чтения поврежденных носителей\n" +#~ " --auto-suffix - автоматически добавлять расширения имени файла .iso и .ecc\n" +#~ " --cache-size n - размер буфера образа в МБ в режиме -c (по умолчанию: 32МБ)\n" +#~ " --dao - считать, что диск в режиме DAO; не отрезать конец образа\n" +#~ " --defective-dump d - каталог для сохранения незавершенных необработанных секторов\n" +#~ " --eject - извлекать носитель после успешного чтения\n" +#~ " --fill-unreadable n - заполнять нечитаемые сектора байтом n\n" +#~ " --ignore-fatal-sense - продолжать чтение после возможной критической ошибки\n" +#~ " --internal-rereads n - привод может делать n повторных чтений перед сообщением об ошибке\n" +#~ " --query-size n - размер образа запрашивать в приводе/udf/ecc (по умолчанию: ecc)\n" +#~ " --raw-mode n - режим для низкоуровневого чтения CD-носителей (20 или 21)\n" +#~ " --read-attempts n-m - делается от n до m попыток чтения поврежденного сектора\n" +#~ " --read-medium n - читать весь носитель до n раз\n" +#~ " --read-raw - выполнять чтение в низкоуровневом режиме, если это возможно\n" +#~ " --speed-warning n - выводить предупреждение, если скорость изменяется больше, чем на n процентов\n" +#~ " --spinup-delay n - выждать n секунд, пока привод не раскрутится\n" +#~ " --split-files - разбить образ на файлы <= 2ГБ\n" +#~ "\n" + +#~ msgid ": not present.\n" +#~ msgstr ": отсутствует.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "Файл образа %s отсутствует." + #~ msgid "Multithreaded RS codec (RS03)" #~ msgstr "Многопоточный кодек РС (RS03)" diff --git a/locale/sv.po b/locale/sv.po index 884b27b..683591f 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -1,5 +1,5 @@ # Swedish translation of dvdisaster. -# Copyright (C) 2004-2009 dvdisasters COPYRIGHT HOLDER +# Copyright (C) 2004-2010 dvdisasters COPYRIGHT HOLDER # This file is distributed under the same license as the dvdisaster package. # Daniel Nylander , 2006. # @@ -7,10 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-06 12:32+0200\n" +"POT-Creation-Date: 2011-09-27 19:20+0200\n" "PO-Revision-Date: 2006-06-14 23:48+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,15 +30,15 @@ msgstr "" "# som kommer att skrivas över varje gång dvdisaster körs.\n" "\n" -#: closure.c:769 closure.c:777 closure.c:784 +#: closure.c:770 closure.c:778 closure.c:785 msgid "medium.iso" msgstr "" -#: closure.c:770 closure.c:778 closure.c:785 +#: closure.c:771 closure.c:779 closure.c:786 msgid "medium.ecc" msgstr "" -#: closure.c:771 closure.c:779 closure.c:786 +#: closure.c:772 closure.c:780 closure.c:787 msgid "sector-" msgstr "" @@ -82,9 +83,9 @@ msgstr "Misslyckades med att söka fram till sektor %lld i avbild: %s" #: debug.c:117 debug.c:207 debug.c:255 debug.c:346 debug.c:390 debug.c:536 #: debug.c:658 debug.c:703 debug.c:1137 debug.c:1244 debug.c:1284 -#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1108 udf.c:1166 -#: udf.c:1223 udf.c:1236 udf.c:1241 udf.c:1244 udf.c:1247 udf.c:1250 -#: udf.c:1253 udf.c:1256 +#: rs02-create.c:359 rs02-create.c:385 rs02-create.c:985 udf.c:1109 udf.c:1167 +#: udf.c:1224 udf.c:1237 udf.c:1242 udf.c:1245 udf.c:1248 udf.c:1251 +#: udf.c:1254 udf.c:1257 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Misslyckades med att skriva till sektor %lld i avbild: %s" @@ -168,8 +169,8 @@ msgstr "Kapar avbild till %lld sektorer.\n" msgid "Could not truncate %s: %s\n" msgstr "Kunde inte kapa %s: %s\n" -#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:59 -#: file.c:128 file.c:148 raw-editor.c:362 read-adaptive.c:1166 +#: debug.c:594 debug.c:1105 debug.c:1113 debug.c:1170 debug.c:1175 file.c:61 +#: file.c:130 file.c:150 raw-editor.c:362 read-adaptive.c:1166 #: read-adaptive.c:1198 read-linear.c:307 read-linear.c:309 read-linear.c:340 #: read-linear.c:342 #, c-format @@ -199,7 +200,7 @@ msgstr "" "dvdisaster --debug %s %lld --random-seed %d\n" "\n" -#: debug.c:670 file.c:107 read-adaptive.c:150 read-linear.c:111 +#: debug.c:670 file.c:109 read-adaptive.c:150 read-linear.c:111 #: read-linear.c:114 #, c-format msgid "" @@ -358,28 +359,28 @@ msgstr "RS01-metoden inte tillgänglig för jämförelser av filer." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:472 +#: dvdisaster.c:480 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:488 +#: dvdisaster.c:496 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:504 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:515 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:506 +#: dvdisaster.c:517 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:614 +#: dvdisaster.c:625 #, c-format msgid "" "\n" @@ -387,12 +388,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:678 +#: dvdisaster.c:689 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? ogiltigt getopt-svarsvärde %d\n" -#: dvdisaster.c:712 +#: dvdisaster.c:723 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -401,7 +402,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:876 +#: dvdisaster.c:893 msgid "" "\n" "Common usage examples:\n" @@ -426,7 +427,7 @@ msgstr "" " dvdisaster -u,--unlink # Ta bort .iso-filer (när andra operationer är färdiga)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -441,7 +442,7 @@ msgstr "" " -i,--image avbildsfil - namn på avbildsfil (standard: medium.iso)\n" " -e,--ecc ecc-fil - namn på paritetsfil (standard: medium.ecc)\n" -#: dvdisaster.c:893 +#: dvdisaster.c:910 msgid "" " -l,--list - list drives available under ASPI manager\n" "\n" @@ -449,20 +450,28 @@ msgstr "" " -l,--list - lista enheter tillgängliga under ASPI-hanteraren\n" "\n" -#: dvdisaster.c:898 +#: dvdisaster.c:915 #, c-format msgid "" "Tweaking options (see manual before using!)\n" " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" " -m n - list/select error correction methods (default: RS01)\n" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" " -v,--verbose - more diagnostic messages\n" " --adaptive-read - use optimized strategy for reading damaged media\n" " --auto-suffix - automatically add .iso and .ecc file suffixes\n" " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" " --dao - assume DAO disc; do not trim image end\n" " --defective-dump d - directory for saving incomplete raw sectors\n" +msgstr "" + +#: dvdisaster.c:928 +msgid " --driver=sg/cdrom - use cdrom (default) or alternative sg SCSI driver\n" +msgstr "" + +#: dvdisaster.c:930 +msgid "" " --eject - eject medium after successful read\n" " --fill-unreadable n - fill unreadable sectors with byte n\n" " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" @@ -478,7 +487,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -505,7 +514,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:948 +#: dvdisaster.c:968 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -513,7 +522,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -542,26 +551,22 @@ msgstr "" "\n" "Öppnar %s" -#: file.c:47 -msgid ": not present.\n" -msgstr ": inte tillgänglig.\n" - -#: file.c:49 +#: file.c:49 file.c:63 #, c-format -msgid "Image file %s not present." -msgstr "Avbildsfil %s inte tillgänglig." +msgid "Image file %s: %s." +msgstr "" -#: file.c:70 +#: file.c:72 #, c-format msgid ": %lld medium sectors.\n" msgstr ": %lld mediumsektorer.\n" -#: file.c:71 +#: file.c:73 #, c-format msgid ": %lld medium sectors and %d bytes.\n" msgstr ": %lld mediumsektorer och %d byte.\n" -#: file.c:89 +#: file.c:91 #, c-format msgid "" "could not read image sector %lld (only %d bytes):\n" @@ -570,11 +575,11 @@ msgstr "" "kunde inte läsa sektor %lld i avbild (endast %d byte):\n" "%s" -#: file.c:133 file.c:170 +#: file.c:135 file.c:172 msgid "Invalid or damaged ecc file" msgstr "Ogiltig eller skadad ecc-fil" -#: file.c:157 +#: file.c:159 #, c-format msgid "" "Can't read ecc header:\n" @@ -583,7 +588,7 @@ msgstr "" "Kan inte läsa ecc-huvud:\n" "%s" -#: file.c:186 rs01-create.c:958 +#: file.c:188 rs01-create.c:958 #, c-format msgid "" "Error closing error correction file:\n" @@ -592,7 +597,7 @@ msgstr "" "Fel vid stängning av felkorrigeringsfil:\n" "%s" -#: file.c:220 +#: file.c:222 #, c-format msgid "" "This .ecc file requires dvdisaster V%d.%d.%d or higher.\n" @@ -601,7 +606,7 @@ msgstr "" "Denna .ecc-fil kräver dvdisaster V%d.%d.%d eller högre.\n" "Besök http://www.dvdisaster.com för en uppgradering." -#: file.c:237 file.c:241 +#: file.c:239 file.c:243 #, c-format msgid "" "\n" @@ -610,7 +615,7 @@ msgstr "" "\n" "Avbildsfil %s borttagen.\n" -#: file.c:248 +#: file.c:250 #, c-format msgid "Image file %s not deleted: %s\n" msgstr "Avbildsfil %s inte borttagen: %s\n" @@ -650,31 +655,45 @@ msgstr "" "%s\n" "inte tillgänglig" -#: help-dialogs.c:549 +#: help-dialogs.c:485 +#, c-format +msgid "" +"File\n" +"%s\n" +"not accessible" +msgstr "" + +#: help-dialogs.c:497 +msgid "" +"\n" +"<- Error: Text file truncated here" +msgstr "" + +#: help-dialogs.c:566 msgid "windowtitle|Modifying dvdisaster" msgstr "Ändra dvdisaster" -#: help-dialogs.c:550 +#: help-dialogs.c:567 msgid "" "Modifying dvdisaster\n" "Your changes are not ours." msgstr "" -#: help-dialogs.c:689 +#: help-dialogs.c:706 msgid "windowtitle|About dvdisaster" msgstr "Om dvdisaster" -#: help-dialogs.c:709 +#: help-dialogs.c:726 msgid "" -"Modified version Copyright 2009 (please fill in - [directions])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Modified version Copyright 2011 (please fill in - [directions])\n" +"Copyright 2004-2011 Carsten Gnoerlich" msgstr "" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" -msgstr "Copyright 2004-2009 Carsten Gnörlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2011 Carsten Gnoerlich" +msgstr "Copyright 2004-2011 Carsten Gnörlich" -#: help-dialogs.c:720 +#: help-dialogs.c:737 msgid "" "dvdisaster provides a margin of safety against data loss\n" "on CD and DVD media caused by aging or scratches.\n" @@ -686,7 +705,7 @@ msgstr "" "Det skapar felkorrigeringsdata som kan användas för att\n" "återskapa oläsliga sektorer om skivan senare blir skadad.\n" -#: help-dialogs.c:725 +#: help-dialogs.c:742 msgid "" "This software comes with absolutely no warranty.\n" "This is free software and you are welcome to redistribute it\n" @@ -698,7 +717,7 @@ msgstr "" "\n" "Svensk översättning av Daniel Nylander (info@danielnylander.se)\n" -#: help-dialogs.c:731 +#: help-dialogs.c:748 msgid "" "\n" "This program is not the original. It is based on the\n" @@ -708,19 +727,19 @@ msgid "" "([www.dvdisaster.org]) about issues with this version.\n" msgstr "" -#: help-dialogs.c:746 +#: help-dialogs.c:763 msgid "" "\n" "e-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org" msgstr "" -#: help-dialogs.c:749 +#: help-dialogs.c:766 msgid "" "\n" "Darwin port (Mac OS X): Julian Einwag <julian@einwag.de>" msgstr "" -#: help-dialogs.c:752 +#: help-dialogs.c:769 msgid "" "\n" "NetBSD port: Sergey Svishchev <svs@ropnet.ru>" @@ -854,7 +873,7 @@ msgstr "" msgid "finalized" msgstr "" -#: medium-info.c:89 scsi-layer.c:83 +#: medium-info.c:89 scsi-layer.c:97 msgid "unknown" msgstr "okänd" @@ -919,7 +938,7 @@ msgstr "" msgid "Drive:" msgstr "" -#: medium-info.c:273 menubar.c:482 +#: medium-info.c:273 menubar.c:483 msgid "No drives found" msgstr "Inga enheter hittade" @@ -943,7 +962,7 @@ msgstr "" msgid "Book type:" msgstr "" -#: medium-info.c:308 scsi-layer.c:2645 +#: medium-info.c:308 scsi-layer.c:2677 msgid "Manuf.-ID:" msgstr "" @@ -1095,71 +1114,71 @@ msgstr "Val av avbildsfil" msgid "windowtitle|Error correction file selection" msgstr "Val av felkorrigeringsfil" -#: menubar.c:464 menubar.c:488 +#: menubar.c:465 menubar.c:489 msgid "tooltip|Drive selection" msgstr "Enhetsval" -#: menubar.c:464 +#: menubar.c:465 msgid "Use the nearby drop-down list to select the input drive." msgstr "Använd den närliggande rullgardinsmeny för att välja inmatningsenhet." -#: menubar.c:488 +#: menubar.c:489 msgid "Selects the input drive for reading images." msgstr "Väljer enhet för indata för att läsa avbilder." -#: menubar.c:518 +#: menubar.c:519 msgid "tooltip|Image file selection" msgstr "Val av avbildsfil" -#: menubar.c:518 +#: menubar.c:519 msgid "Selects a new image file." msgstr "Väljer en ny avbildsfil." -#: menubar.c:519 +#: menubar.c:520 msgid "tooltip|Current image file" msgstr "Aktuell avbildsfil" -#: menubar.c:519 +#: menubar.c:520 msgid "Shows the name of the current image file." msgstr "Visar namnet på aktuell avbildsfil." -#: menubar.c:543 +#: menubar.c:544 msgid "tooltip|Error correction file selection" msgstr "Val av felkorrigieringsfil" -#: menubar.c:543 +#: menubar.c:544 msgid "Selects a new error correction file." msgstr "Väljer en ny felkorrigeringsfil." -#: menubar.c:544 +#: menubar.c:545 msgid "tooltip|Current error correction file" msgstr "Aktuell felkorrigeringsfil" -#: menubar.c:544 +#: menubar.c:545 msgid "Shows the name of the current error correction file." msgstr "Visar namnet på aktuell felkorrigeringsfil." -#: menubar.c:555 +#: menubar.c:556 msgid "tooltip|Preferences" msgstr "Inställningar" -#: menubar.c:555 +#: menubar.c:556 msgid "Customize settings for creating images, error correction files and other stuff." msgstr "Anpassa inställningar för skapandet av avbilder, felkorrigeringsfiler och andra saker." -#: menubar.c:565 +#: menubar.c:566 msgid "tooltip|User manual" msgstr "Användarmanual" -#: menubar.c:565 +#: menubar.c:566 msgid "Displays the user manual (external HTML browser required)." msgstr "Visar användarmanualen (extern HTML-webbläsare krävs)." -#: menubar.c:575 +#: menubar.c:576 msgid "tooltip|Quit" msgstr "Avsluta" -#: menubar.c:575 +#: menubar.c:576 msgid "Quit dvdisaster" msgstr "Avsluta dvdisaster" @@ -1197,14 +1216,10 @@ msgstr "" #: misc.c:205 #, c-format -msgid "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnoerlich.\n" -msgstr "dvdisaster-%s%sCopyright 2004-2009 Carsten Gnörlich.\n" +msgid "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2011 Carsten Gnörlich.\n" -#. TRANSLATORS: Excluding all kinds of warranty might be harmful under your -#. legislature. If in doubt, just translate the following like "This is free -#. software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE -#. in the source code." Avoid making any legal statements by your own. -#: misc.c:211 +#: misc.c:212 msgid "" "This software comes with ABSOLUTELY NO WARRANTY. This\n" "is free software and you are welcome to redistribute it\n" @@ -1216,11 +1231,11 @@ msgstr "" "under villkoren för GNU GENERAL PUBLIC LICENSE.\n" "Se filen \"COPYING\" för ytterligare information.\n" -#: misc.c:432 +#: misc.c:433 msgid "Warning" msgstr "Varning" -#: misc.c:495 misc.c:501 +#: misc.c:496 misc.c:502 msgid "" "\n" "*\n" @@ -2251,7 +2266,7 @@ msgid "button|Smart L-EC" msgstr "" #: raw-sector-cache.c:34 raw-sector-cache.c:201 raw-sector-cache.c:335 -#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:100 scsi-netbsd.c:111 +#: rs01-verify.c:538 scsi-freebsd.c:113 scsi-linux.c:105 scsi-netbsd.c:111 #: scsi-solaris.c:127 #, c-format msgid "Could not open %s: %s" @@ -2498,12 +2513,12 @@ msgstr "" msgid "CRC error in sector %lld\n" msgstr "CRC-fel i sektor %lld\n" -#: read-adaptive.c:1543 scsi-layer.c:1716 +#: read-adaptive.c:1543 scsi-layer.c:1748 #, c-format msgid "Sectors %lld-%lld: %s\n" msgstr "Sektorer %lld-%lld: %s\n" -#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1715 +#: read-adaptive.c:1546 read-linear.c:1244 scsi-layer.c:1747 #, c-format msgid "Sector %lld: %s\n" msgstr "Sektor %lld: %s\n" @@ -2556,7 +2571,7 @@ msgstr "Adaptiv läsning:" msgid "Sectors processed" msgstr "Sektorer behandlade" -#: read-adaptive-window.c:110 scsi-layer.c:1697 +#: read-adaptive-window.c:110 scsi-layer.c:1729 msgid "readable" msgstr "läsbar" @@ -2649,7 +2664,7 @@ msgstr "" msgid "done.\n" msgstr "klar.\n" -#: read-linear.c:528 scsi-layer.c:2038 +#: read-linear.c:528 scsi-layer.c:2070 #, c-format msgid "Waiting %d seconds for drive to spin up...\n" msgstr "Väntar %d sekunder på att enheten ska varva upp...\n" @@ -3694,12 +3709,12 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:624 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:624 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Misslyckades med att söka till ecc-huvud på %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 +#: rs02-common.c:369 rs02-common.c:381 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Misslyckades med att skriva ecc-huvud vid %lld: %s\n" @@ -4240,7 +4255,7 @@ msgstr "" "Inga cd/dvd-enheter hittades i /dev.\n" "Inga enheter kommer att vara förvalda.\n" -#: scsi-layer.c:87 +#: scsi-layer.c:101 #, c-format msgid "" "Can open %s, but INQUIRY fails.\n" @@ -4253,27 +4268,27 @@ msgstr "" "och försöker komma åt den via /dev/cdrom eller /dev/hd?.\n" "Använd antingen /dev/scd? eller /dev/sr? istället, eller inaktivera ide-scsi-emulering.\n" -#: scsi-layer.c:95 +#: scsi-layer.c:109 #, c-format msgid "INQUIRY failed. Something is wrong with drive %s.\n" msgstr "FÖRFRÅGAN misslyckades. Någonting är fel med enhet %s.\n" -#: scsi-layer.c:124 +#: scsi-layer.c:138 #, c-format msgid "Device %s (%s) is not a CDROM drive." msgstr "Enhet %s (%s) är inte en cd-rom-enhet." -#: scsi-layer.c:125 +#: scsi-layer.c:139 #, c-format msgid "Device %s (%s) is a hard disk." msgstr "Enhet %s (%s) är en hårddisk." -#: scsi-layer.c:416 +#: scsi-layer.c:432 #, c-format msgid "Incomplete %s" msgstr "" -#: scsi-layer.c:454 +#: scsi-layer.c:470 #, c-format msgid "" "%s\n" @@ -4282,16 +4297,16 @@ msgstr "" "%s\n" "Kunde inte fråga efter längd på innehållsförteckning.\n" -#: scsi-layer.c:459 +#: scsi-layer.c:475 msgid "blank" msgstr "" -#: scsi-layer.c:473 scsi-layer.c:533 +#: scsi-layer.c:491 scsi-layer.c:553 #, c-format msgid "TOC info too long (%d), probably multisession.\n" msgstr "Innehållsförteckning för lång (%d), antagligen multisession.\n" -#: scsi-layer.c:488 +#: scsi-layer.c:506 #, c-format msgid "" "%s\n" @@ -4300,7 +4315,7 @@ msgstr "" "%s\n" "Kunde inte läsa innehållsförteckning (TOC).\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4309,12 +4324,12 @@ msgstr "" "%s\n" "Kunde inte fråga efter fullständig innehållsförteckning (TOC).\n" -#: scsi-layer.c:527 +#: scsi-layer.c:547 #, c-format msgid "TOC info too short, length %d.\n" msgstr "Innehållsförteckning för kort, längd %d.\n" -#: scsi-layer.c:551 +#: scsi-layer.c:571 #, c-format msgid "" "%s\n" @@ -4323,7 +4338,7 @@ msgstr "" "%s\n" "Kunde inte läsa fullständig innehållsförteckning (TOC).\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4332,11 +4347,11 @@ msgstr "" "\n" "Oväntat format på innehållsförteckning (längd %d):\n" -#: scsi-layer.c:568 +#: scsi-layer.c:588 msgid "Consider sending a bug report.\n" msgstr "Överväg att skicka in en felrapport.\n" -#: scsi-layer.c:621 +#: scsi-layer.c:641 #, c-format msgid "" "%s\n" @@ -4345,12 +4360,12 @@ msgstr "" "%s\n" "Kunde inte fråga efter dvdstrukturlängd.\n" -#: scsi-layer.c:632 +#: scsi-layer.c:653 #, c-format msgid "Could not query dvd physical structure - implausible packet length %d\n" msgstr "Kunde inte fråga efter dvd:ns fysiska struktur - osannolik paketlängd %d\n" -#: scsi-layer.c:650 +#: scsi-layer.c:671 #, c-format msgid "" "%s\n" @@ -4359,26 +4374,26 @@ msgstr "" "%s\n" "Kunde inte fråga efter fysiska dvdstruktur.\n" -#: scsi-layer.c:679 scsi-layer.c:689 +#: scsi-layer.c:700 scsi-layer.c:710 #, c-format msgid "READ DVD STRUCTURE: implausible medium size, %lld-%lld=%lld sectors\n" msgstr "" -#: scsi-layer.c:947 -#, c-format -msgid "" -"%s\n" -"Could not query BD disc structure length.\n" -msgstr "" - #: scsi-layer.c:970 #, c-format msgid "" "%s\n" +"Could not query BD disc structure length.\n" +msgstr "" + +#: scsi-layer.c:995 +#, c-format +msgid "" +"%s\n" "Could not query BD disc structure.\n" msgstr "" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4387,12 +4402,12 @@ msgstr "" "%s\n" "Kunde inte fråga efter dvdstrukturlängd för formatkod 1.\n" -#: scsi-layer.c:1656 +#: scsi-layer.c:1688 #, c-format msgid "Could not query dvd copyright info - implausible packet length %d\n" msgstr "Kunde inte fråga efter dvd:ns copyrightinformation - osannolik paketlängd %d\n" -#: scsi-layer.c:1671 +#: scsi-layer.c:1703 #, c-format msgid "" "%s\n" @@ -4401,23 +4416,23 @@ msgstr "" "%s\n" "Kunde inte fråga efter copyrightinformation.\n" -#: scsi-layer.c:1731 +#: scsi-layer.c:1763 msgid "is undecideable because of read error" msgstr "är inte bestämt på grund av läsfel" -#: scsi-layer.c:1737 +#: scsi-layer.c:1769 msgid "looks GOOD" msgstr "ser BRA UT" -#: scsi-layer.c:1743 +#: scsi-layer.c:1775 msgid "gives unformatted size (UNUSABLE)" msgstr "ger oformaterad storlek (EJ ANVÄNDBAR)" -#: scsi-layer.c:1748 +#: scsi-layer.c:1780 msgid "is UNUSABLE" msgstr "är OANVÄNDBAR" -#: scsi-layer.c:1770 +#: scsi-layer.c:1802 #, c-format msgid "" "%s\n" @@ -4426,12 +4441,12 @@ msgstr "" "%s\n" "Kunde inte fråga efter mediumstorlek.\n" -#: scsi-layer.c:1790 +#: scsi-layer.c:1822 #, c-format msgid "READ CAPACITY: implausible medium size, %lld sectors\n" msgstr "" -#: scsi-layer.c:1869 +#: scsi-layer.c:1901 #, c-format msgid "" "Different media sizes depending on query method:\n" @@ -4440,7 +4455,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4448,15 +4463,15 @@ msgstr "" "Evaluering av returnerade mediumstorlekar:\n" "\n" -#: scsi-layer.c:1929 +#: scsi-layer.c:1961 msgid "Using value from READ CAPACITY" msgstr "Använder värde från LÄSKAPACITET" -#: scsi-layer.c:1933 +#: scsi-layer.c:1965 msgid "Using value from READ DVD STRUCTURE" msgstr "Använder värde från LÄS DVDSTRUKTUR" -#: scsi-layer.c:1943 +#: scsi-layer.c:1975 #, c-format msgid "" "FAILED to determine image size.\n" @@ -4467,7 +4482,7 @@ msgstr "" "Använder ett mindre värde eftersom det passar för >90%% av alla enheter,\n" "men FORTSÄTT PÅ EGEN RISK (avbilden kan bli felaktig/oanvändbar)" -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4476,7 +4491,7 @@ msgstr "" "Slutligt beslut: %s\n" "\n" -#: scsi-layer.c:1956 +#: scsi-layer.c:1988 msgid "" "Failed to determine image size.\n" "Try using a different drive." @@ -4484,51 +4499,51 @@ msgstr "" "Misslyckades med att fastställa avbildsstorlek.\n" "Försök använda en annan enhet." -#: scsi-layer.c:2081 scsi-layer.c:2107 +#: scsi-layer.c:2113 scsi-layer.c:2139 #, c-format msgid "" "%s\n" "Could not load/unload the medium.\n" msgstr "" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" "Could not unlock the medium.\n" msgstr "" -#: scsi-layer.c:2160 +#: scsi-layer.c:2192 #, c-format msgid "Waiting 10 seconds for drive: %d\n" msgstr "" -#: scsi-layer.c:2443 +#: scsi-layer.c:2475 #, c-format msgid "Sectors %lld - %lld: %s\n" msgstr "" -#: scsi-layer.c:2457 +#: scsi-layer.c:2489 #, c-format msgid "Sector %lld, try %d: %s Sector returned: %d.\n" msgstr "" -#: scsi-layer.c:2463 +#: scsi-layer.c:2495 #, c-format msgid "Sector %lld, try %d: %s\n" msgstr "" -#: scsi-layer.c:2474 +#: scsi-layer.c:2506 #, c-format msgid "Sector %lld, try %d: success\n" msgstr "" -#: scsi-layer.c:2541 scsi-layer.c:2694 +#: scsi-layer.c:2573 scsi-layer.c:2726 #, c-format msgid "Device %s: no medium present\n" msgstr "" -#: scsi-layer.c:2542 scsi-layer.c:2695 +#: scsi-layer.c:2574 scsi-layer.c:2727 #, c-format msgid "" "Device %s does not become ready:\n" @@ -4536,7 +4551,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4545,7 +4560,7 @@ msgstr "" "\n" "Enhet: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4554,52 +4569,52 @@ msgstr "" "\n" "Enhet: %s (%s), %s\n" -#: scsi-layer.c:2559 +#: scsi-layer.c:2591 msgid "Drive failed to report media type." msgstr "" -#: scsi-layer.c:2570 scsi-layer.c:2657 +#: scsi-layer.c:2602 scsi-layer.c:2689 #, c-format msgid "This software does not support \"%s\" type media." msgstr "" -#: scsi-layer.c:2578 +#: scsi-layer.c:2610 #, c-format msgid "This software does not support multisession (%d sessions) media." msgstr "" -#: scsi-layer.c:2601 scsi-layer.c:2610 +#: scsi-layer.c:2633 scsi-layer.c:2642 msgid "Using READ CD" msgstr "" -#: scsi-layer.c:2602 +#: scsi-layer.c:2634 msgid ", RAW reading" msgstr "" -#: scsi-layer.c:2605 +#: scsi-layer.c:2637 #, c-format msgid ", Mode page 1 ERP = %02xh" msgstr "" -#: scsi-layer.c:2608 +#: scsi-layer.c:2640 msgid ", C2 scanning" msgstr "" -#: scsi-layer.c:2615 +#: scsi-layer.c:2647 msgid "Using READ(10).\n" msgstr "" -#: scsi-layer.c:2634 +#: scsi-layer.c:2666 #, c-format msgid "Medium: %s, %lld sectors%s" msgstr "Medium: %s, %lld sektorer%s" -#: scsi-layer.c:2638 +#: scsi-layer.c:2670 #, c-format msgid "Medium \"%s\": %s, %lld sectors%s created %s" msgstr "Medium \"%s\": %s, %lld sektorer%s skapade %s" -#: scsi-layer.c:2664 +#: scsi-layer.c:2696 msgid "This software does not support encrypted media.\n" msgstr "" @@ -4652,7 +4667,7 @@ msgstr "" msgid "ASPI manager not available or installed.\n" msgstr "ASPI-hanterare inte tillgänglig eller installerad.\n" -#: scsi-win32.c:569 +#: scsi-win32.c:572 #, c-format msgid "" "\n" @@ -4661,7 +4676,7 @@ msgstr "" "\n" "Otillåtet enhetsnamn \"%s\" (använd enheterna \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -4719,19 +4734,19 @@ msgstr "" msgid "Please hang on until the browser comes up!" msgstr "Vänta tills webbläsaren har startats!" -#: udf.c:143 +#: udf.c:144 msgid "Skip RS02 test" msgstr "" -#: udf.c:144 +#: udf.c:145 msgid "Continue searching" msgstr "" -#: udf.c:149 +#: udf.c:150 msgid "Disable RS02 initialization in the preferences" msgstr "" -#: udf.c:240 +#: udf.c:241 msgid "" "Faster medium initialization\n" "\n" @@ -4740,7 +4755,7 @@ msgid "" "not augmented with RS02 error correction data." msgstr "" -#: udf.c:249 +#: udf.c:250 msgid "" "\n" "Searching this medium for error correction data may take a long time.\n" @@ -4749,11 +4764,11 @@ msgid "" "--query-size=udf\n" msgstr "" -#: udf.c:533 +#: udf.c:534 msgid "Unnamed" msgstr "Namnlös" -#: udf.c:624 +#: udf.c:625 msgid "Example disc" msgstr "" @@ -4791,6 +4806,12 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid ": not present.\n" +#~ msgstr ": inte tillgänglig.\n" + +#~ msgid "Image file %s not present." +#~ msgstr "Avbildsfil %s inte tillgänglig." + #~ msgid "" #~ "\n" #~ "dvdisaster version %s\n" diff --git a/logfile.c b/logfile.c index 56d834d..066aed1 100644 --- a/logfile.c +++ b/logfile.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/macinst/Info.plist b/macinst/Info.plist index 83574f0..76db920 100644 --- a/macinst/Info.plist +++ b/macinst/Info.plist @@ -21,6 +21,6 @@ CFBundleVersion 1 NSHumanReadableCopyright - © 2004-2009 Carsten Gnörlich et al + © 2004-2010 Carsten Gnörlich et al diff --git a/main-window.c b/main-window.c index 1106337..ae770dc 100644 --- a/main-window.c +++ b/main-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/maintenance.c b/maintenance.c index 414dc86..cd2e5c0 100644 --- a/maintenance.c +++ b/maintenance.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/medium-info.c b/medium-info.c index eb2d59e..d66f465 100644 --- a/medium-info.c +++ b/medium-info.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/memtrack.c b/memtrack.c index 09bcf06..42ccb2c 100644 --- a/memtrack.c +++ b/memtrack.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -169,7 +169,7 @@ static void print_ptr(memchunk *mc, int size) static void print_ptrs(char *msg) { int bucket,i,n=0; - g_printf(msg); + g_printf("%s", msg); for(bucket=0; bucket<64; bucket++) for(i=0; iguiMode) - { g_fprintf(stderr, _("\n*\n* dvdisaster - can not continue:\n*\n")); + { g_fprintf(stderr, "%s", _("\n*\n* dvdisaster - can not continue:\n*\n")); va_start(argp, format); g_vfprintf(stderr, format, argp); va_end(argp); @@ -758,6 +759,8 @@ void SetLabelText(GtkLabel *label, char *format, ...) va_start(argp, format); if(format) { char *tmp = g_strdup_vprintf(format, argp); + + if(!tmp) tmp=g_strdup_printf("SetLabelText(%s) failed",format); li->text = g_locale_to_utf8(tmp, -1, NULL, NULL, NULL); g_free(tmp); } @@ -830,7 +833,7 @@ static gboolean modal_idle_func(gpointer data) GTK_DIALOG_DESTROY_WITH_PARENT, mi->message_type, mi->button_type, - mi->msg); + "%s", mi->msg); gtk_label_set_line_wrap(GTK_LABEL(((struct _GtkMessageDialog*)dialog)->label), FALSE); if(mi->button_fn) diff --git a/preferences.c b/preferences.c index 9623cb5..b86794f 100644 --- a/preferences.c +++ b/preferences.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -1323,7 +1323,7 @@ static void logfile_cb(GtkWidget *widget, gpointer data) GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_OK_CANCEL, - _utf("Delete the log file?")); + "%s", _utf("Delete the log file?")); int answer; ReverseCancelOK(GTK_DIALOG(dialog)); diff --git a/print-sense.c b/print-sense.c index 7d51ffe..9770e30 100644 --- a/print-sense.c +++ b/print-sense.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/raw-editor.c b/raw-editor.c index 912d86a..2546dd7 100644 --- a/raw-editor.c +++ b/raw-editor.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/raw-sector-cache.c b/raw-sector-cache.c index 0297ed3..8b7141f 100644 --- a/raw-sector-cache.c +++ b/raw-sector-cache.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/read-adaptive-window.c b/read-adaptive-window.c index a55720f..dd98aa7 100644 --- a/read-adaptive-window.c +++ b/read-adaptive-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/read-adaptive.c b/read-adaptive.c index 73935b6..d47cdfd 100644 --- a/read-adaptive.c +++ b/read-adaptive.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -1029,7 +1029,7 @@ void fill_gap(read_closure *rc) { int seq = (j/2000)%10; if(!Closure->guiMode) - { g_printf(anim[seq]); + { g_printf("%s", anim[seq]); fflush(stdout); /* at least needed for Windows */ } } diff --git a/read-linear-window.c b/read-linear-window.c index f454863..758b78b 100644 --- a/read-linear-window.c +++ b/read-linear-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/read-linear.c b/read-linear.c index 3ff6fcf..17eed22 100644 --- a/read-linear.c +++ b/read-linear.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -1339,19 +1339,19 @@ step_counter: else if( rc->readOK == rc->sectors /* no user limited range */ && rc->pass == 1 /* md5sum invalid after first pass */ && memcmp(rc->ei->eh->mediumSum, Closure->md5Cache, 16)) - t = g_strdup_printf(_("All sectors successfully read, but wrong image checksum.")); - else t = g_strdup_printf(_("All sectors successfully read. Checksums match.")); + t = g_strdup(_("All sectors successfully read, but wrong image checksum.")); + else t = g_strdup(_("All sectors successfully read. Checksums match.")); break; case ECC_RS02: if(!md5_failure) - t = g_strdup_printf(_("All sectors successfully read. Checksums match.")); + t = g_strdup(_("All sectors successfully read. Checksums match.")); else { t = g_strdup_printf(_("All sectors successfully read, %s!"), md5_failure); g_free(md5_failure); md5_failure=NULL; } break; default: - t = g_strdup_printf(_("All sectors successfully read.")); + t = g_strdup(_("All sectors successfully read.")); break; } } diff --git a/read-linear.h b/read-linear.h index 7c65ec8..6658477 100644 --- a/read-linear.h +++ b/read-linear.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/recover-raw.c b/recover-raw.c index 5d14f8d..35f4952 100644 --- a/recover-raw.c +++ b/recover-raw.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs-encoder-sse2.c b/rs-encoder-sse2.c index 20f8ba0..40c2156 100644 --- a/rs-encoder-sse2.c +++ b/rs-encoder-sse2.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs-encoder.c b/rs-encoder.c index 35cf561..9e36cbd 100644 --- a/rs-encoder.c +++ b/rs-encoder.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-common.c b/rs01-common.c index c6e11ef..753cb23 100644 --- a/rs01-common.c +++ b/rs01-common.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-create.c b/rs01-create.c index a9f071f..28673d1 100644 --- a/rs01-create.c +++ b/rs01-create.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-fix.c b/rs01-fix.c index d35a115..0e4518e 100644 --- a/rs01-fix.c +++ b/rs01-fix.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-includes.h b/rs01-includes.h index 33a20dd..37a093a 100644 --- a/rs01-includes.h +++ b/rs01-includes.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-verify.c b/rs01-verify.c index f937515..52d49e2 100644 --- a/rs01-verify.c +++ b/rs01-verify.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs01-window.c b/rs01-window.c index 0f4e27c..20e5b54 100644 --- a/rs01-window.c +++ b/rs01-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs02-common.c b/rs02-common.c index a4e3ff4..0459f21 100644 --- a/rs02-common.c +++ b/rs02-common.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -241,6 +241,39 @@ RS02Layout *CalcRS02Layout(gint64 data_sectors, int requested_roots) lay->crcSectors = (sizeof(guint32)*lay->dataSectors+2047)/2048; lay->protectedSectors = lay->dataSectors + 2 + lay->crcSectors; /* two sectors for header */ + /* See if user wants to pick a certain redundancy */ + + if(!Closure->guiMode && !requested_roots && Closure->redundancy) + { int len = strlen(Closure->redundancy); + + switch(Closure->redundancy[len-1]) + { case 'r': /* pick number of roots */ + { char buf[len]; + + strncpy(buf, Closure->redundancy, len-1); + requested_roots = atoi(buf); + break; + } + case '%': /* pick redundancy directly */ + { char buf[len]; + int percent; + + strncpy(buf, Closure->redundancy, len-1); + percent = atoi(buf); + + for(requested_roots = 7; requested_roots < 171; requested_roots++) + { double redundancy = ((double)requested_roots*100.0)/((double)(GF_FIELDMAX-requested_roots)); + if(redundancy >= percent) + break; + } + if(requested_roots >170) + requested_roots = 0; + + break; + } + } + } + /* Calculate starting value for the redundancy */ if(requested_roots > 0) diff --git a/rs02-create.c b/rs02-create.c index 993f5d1..f0249c8 100644 --- a/rs02-create.c +++ b/rs02-create.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs02-fix.c b/rs02-fix.c index 07128fc..411898a 100644 --- a/rs02-fix.c +++ b/rs02-fix.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs02-includes.h b/rs02-includes.h index 70799d1..968eaf9 100644 --- a/rs02-includes.h +++ b/rs02-includes.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs02-verify.c b/rs02-verify.c index f265405..1252533 100644 --- a/rs02-verify.c +++ b/rs02-verify.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/rs02-window.c b/rs02-window.c index b67f02f..d2035ff 100644 --- a/rs02-window.c +++ b/rs02-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/scripts/bash-based-configure b/scripts/bash-based-configure index 1ea01a3..69516c3 100644 --- a/scripts/bash-based-configure +++ b/scripts/bash-based-configure @@ -1419,7 +1419,7 @@ EOF fi CFG_GTK2_BINDIR=`which pkg-config` - CFG_GTK2_BINDIR=`echo $CFG_GTK2_BINDIR | sed -e 's/\/pkg-config//'` + CFG_GTK2_BINDIR=`echo $CFG_GTK2_BINDIR | sed -e 's/.exe//' | sed -e 's/\/pkg-config//'` CFG_CFLAGS="$CFG_CFLAGS $CFG_GTK2_CFLAGS" CFG_LIBS="$CFG_LIBS $CFG_GTK2_LIBS" diff --git a/scsi-darwin.c b/scsi-darwin.c index b1dab5d..2d7d540 100644 --- a/scsi-darwin.c +++ b/scsi-darwin.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -283,6 +283,7 @@ int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char break; case DATA_NONE: flags = kSCSIDataTransfer_NoDataTransfer; + break; default: Stop("illegal data_mode: %d",data_mode); } diff --git a/scsi-freebsd.c b/scsi-freebsd.c index e1cf0c2..98dca9d 100644 --- a/scsi-freebsd.c +++ b/scsi-freebsd.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/scsi-layer.c b/scsi-layer.c index 389c6b8..2a97c94 100644 --- a/scsi-layer.c +++ b/scsi-layer.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -55,6 +55,20 @@ void FreeAlignedBuffer(AlignedBuffer *ab) g_free(ab); } +/* + * Align a length to a multiple of 4. + * Some broken chipsets fail on DMA otherways. + */ + +static void length_align(unsigned int *length) +{ + if(*length & 3) + { Verbose("# Warning: Realigning length from %d to %d\n", + *length, *length & ~3); + *length &= ~3; + } +} + /*** *** CD and DVD query routines. ***/ @@ -143,7 +157,7 @@ static int try_fallback_type_check(DeviceHandle *dh) { AlignedBuffer *ab; Sense *sense = &dh->sense; unsigned char cmd[MAX_CDB_SIZE]; - int length; + unsigned int length; Verbose("# *** try_fallback_type_check(%s) ***\n", dh->devinfo); @@ -159,12 +173,12 @@ static int try_fallback_type_check(DeviceHandle *dh) cmd[6] = 0; /* First layer */ cmd[7] = 0; /* We want DI (disc information) */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; /*** Only a BD should respond positively here */ Verbose("# BD: trying READ DVD with BD subcommand for size\n"); - if(SendPacket(dh, cmd, 12, ab->buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 12, ab->buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { Verbose("# failed -> not a BD type medium.\n"); goto try_dvd; @@ -176,6 +190,8 @@ static int try_fallback_type_check(DeviceHandle *dh) length = ab->buf[0]<<8 | ab->buf[1]; length += 2; + length_align(&length); + if(length != 4100) /* not a BD */ { Verbose("# allocation length = %d != 4100 -> not a BD type medium.\n", length); goto try_dvd; @@ -200,7 +216,7 @@ try_dvd: cmd[6] = 0; /* First layer */ cmd[7] = 0; /* We want PHYSICAL info */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; /* Different drives react with different error codes on this request; especially CDROMs seem to react very indeterministic here @@ -208,7 +224,7 @@ try_dvd: So we do not look for specific error and regard any failure as a sign that the medium is not a DVD. */ - if(SendPacket(dh, cmd, 12, ab->buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 12, ab->buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { Verbose("# failed -> not a DVD type medium\n"); goto assume_cd; @@ -444,10 +460,10 @@ static int query_cd(DeviceHandle *dh, int probe_only) cmd[2] = 0; /* format; we want the TOC */ cmd[6] = 1; /* track/session number */ cmd[7] = 0; /* allocation length */ - cmd[8] = 2; + cmd[8] = MIN_TRANSFER_LEN; Verbose("#CD: querying size of READ TOC/PMA/ATIP (for TOC)\n"); - if(SendPacket(dh, cmd, 10, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 10, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); if(!probe_only) @@ -462,6 +478,8 @@ static int query_cd(DeviceHandle *dh, int probe_only) length = buf[0]<<8 | buf[1]; length += 2 ; /* MMC3: "Disc information length excludes itself" */ + length_align(&length); + Verbose("#CD: size returned is %d\n", length); if(length>1024) /* don't let the drive hack us using a buffer overflow ;-) */ @@ -506,10 +524,10 @@ static int query_cd(DeviceHandle *dh, int probe_only) cmd[2] = 2; /* format; we want the full TOC */ cmd[6] = 1; /* track/session number */ cmd[7] = 0; /* allocation length */ - cmd[8] = 2; + cmd[8] = MIN_TRANSFER_LEN; Verbose("#CD: querying size of READ TOC/PMA/ATIP (for full TOC)\n"); - if(SendPacket(dh, cmd, 10, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 10, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); if(!probe_only) Stop(_("%s\nCould not query full TOC length.\n"), @@ -519,6 +537,8 @@ static int query_cd(DeviceHandle *dh, int probe_only) length = buf[0]<<8 | buf[1]; length += 2; /* MMC3: "Disc information length excludes itself" */ + length_align(&length); + Verbose("#CD: size returned is %d\n", length); if(length < 15) @@ -612,10 +632,10 @@ static int query_dvd(DeviceHandle *dh, int probe_only) cmd[6] = 0; /* First layer */ cmd[7] = 0; /* We want PHYSICAL info */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; Verbose("#DVD: trying READ DVD for size of PHYSICAL info\n"); - if(SendPacket(dh, cmd, 12, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 12, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); if(!probe_only) Stop(_("%s\nCould not query dvd structure length.\n"), @@ -625,6 +645,7 @@ static int query_dvd(DeviceHandle *dh, int probe_only) length = buf[0]<<8 | buf[1]; length += 2; + length_align(&length); if(length>4096) /* don't let the drive hack us using a buffer overflow ;-) */ { FreeAlignedBuffer(ab); @@ -735,12 +756,13 @@ static int query_dvd(DeviceHandle *dh, int probe_only) cmd[6] = 0; /* First layer */ cmd[7] = 0x11; /* We want the ADIP */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; Verbose("#DVD: trying READ DVD for size of ADIP\n"); - if(SendPacket(dh, cmd, 12, buf, 2, sense, DATA_READ) == 0) + if(SendPacket(dh, cmd, 12, buf, MIN_TRANSFER_LEN, sense, DATA_READ) == 0) { length = buf[0]<<8 | buf[1]; length += 2; + length_align(&length); Verbose("#DVD: size returned is %d\n", length); @@ -784,12 +806,13 @@ static int query_dvd(DeviceHandle *dh, int probe_only) cmd[6] = 0; /* First layer */ cmd[7] = 0x0E; /* We want the lead-in info */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; Verbose("#DVD: trying READ DVD for size of lead-in\n"); - if(SendPacket(dh, cmd, 12, buf, 2, sense, DATA_READ) == 0) + if(SendPacket(dh, cmd, 12, buf, MIN_TRANSFER_LEN, sense, DATA_READ) == 0) { length = buf[0]<<8 | buf[1]; length += 2; + length_align(&length); Verbose("#DVD: size returned is %d\n", length); if(length < 4096) @@ -938,10 +961,10 @@ static int query_bd(DeviceHandle *dh, int probe_only) cmd[6] = 0; /* First layer */ cmd[7] = 0; /* We want DI (disc information) */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; Verbose("#BD: trying READ DISC STRUCTURE for size\n"); - if(SendPacket(dh, cmd, 12, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 12, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); if(!probe_only) Stop(_("%s\nCould not query BD disc structure length.\n"), @@ -951,6 +974,8 @@ static int query_bd(DeviceHandle *dh, int probe_only) length = buf[0]<<8 | buf[1]; length += 2; + length_align(&length); + Verbose("#BD: disc structure query succeeded, length %d bytes\n", length); /* Do the real query */ @@ -1052,10 +1077,10 @@ static int query_type(DeviceHandle *dh, int probe_only) cmd[0] = 0x51; /* READ DISC INFORMATION */ cmd[1] = 0; /* standard disc info */ cmd[7] = 0; /* Allocation length */ - cmd[8] = 2; + cmd[8] = MIN_TRANSFER_LEN; Verbose("# trying READ DISC INFORMATION for size\n"); - if(SendPacket(dh, cmd, 10, buf, 2, sense, DATA_READ) == 0) + if(SendPacket(dh, cmd, 10, buf, MIN_TRANSFER_LEN, sense, DATA_READ) == 0) { length = buf[0]<<8 | buf[1]; Verbose("# size returned is %d\n", length); @@ -1158,16 +1183,18 @@ static int query_blank(DeviceHandle *dh) cmd[2] = 4; /* format; we want the ATIP */ cmd[6] = 0; /* track/session number */ cmd[7] = 0; /* allocation length */ - cmd[8] = 2; + cmd[8] = MIN_TRANSFER_LEN; Verbose("#CD: querying size of READ TOC/PMA/ATIP (for ATIP)\n"); - if(SendPacket(dh, cmd, 10, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 10, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); return FALSE; } length = buf[0]<<8 | buf[1]; length += 2; /* MMC3: "Disc information length excludes itself" */ + length_align(&length); + Verbose("#CD: size returned is %d\n", length); if(length < 15 || length > 1024) /* implausible */ @@ -1212,16 +1239,18 @@ static int query_blank(DeviceHandle *dh) cmd[1] = 0x01; /* TCDB (track number) addressing) */ cmd[5] = 1; /* we want the first track info */ cmd[7] = 0; /* allocation length */ - cmd[8] = 2; + cmd[8] = MIN_TRANSFER_LEN; Verbose("#DVD: querying size of READ TRACK INFORMATION\n"); - if(SendPacket(dh, cmd, 10, buf, 2, sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 10, buf, MIN_TRANSFER_LEN, sense, DATA_READ)<0) { FreeAlignedBuffer(ab); return FALSE; } length = buf[0]<<8 | buf[1]; length += 2; /* MMC3: "Disc information length excludes itself" */ + length_align(&length); + Verbose("#DVD: size returned is %d\n", length); memset(cmd, 0, MAX_CDB_SIZE); @@ -1267,6 +1296,7 @@ static int query_blank(DeviceHandle *dh) } length = 4+buf[3]; + length_align(&length); Verbose("#DVD: size returned is %d\n", length); memset(cmd, 0, MAX_CDB_SIZE); @@ -1350,6 +1380,7 @@ static int query_blank(DeviceHandle *dh) } length = 4+buf[3]; + length_align(&length); Verbose("#BD: size returned is %d\n", length); memset(cmd, 0, MAX_CDB_SIZE); @@ -1639,9 +1670,9 @@ static int query_copyright(DeviceHandle *dh) cmd[6] = 0; /* First layer */ cmd[7] = 1; /* We want copyright info */ cmd[8] = 0; /* Allocation length */ - cmd[9] = 2; + cmd[9] = MIN_TRANSFER_LEN; - if(SendPacket(dh, cmd, 12, buf, 2, &sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 12, buf, MIN_TRANSFER_LEN, &sense, DATA_READ)<0) { FreeAlignedBuffer(ab); Stop(_("%s\nCould not query dvd structure length for format code 1.\n"), GetSenseString(sense.sense_key, sense.asc, sense.ascq, TRUE)); @@ -1650,6 +1681,7 @@ static int query_copyright(DeviceHandle *dh) length = buf[0]<<8 | buf[1]; length += 2; + length_align(&length); if(length>4096) /* don't let the drive hack us using a buffer overflow ;-) */ { FreeAlignedBuffer(ab); @@ -1871,7 +1903,7 @@ static unsigned int query_size(DeviceHandle *dh) "READ DVD STRUCTURE: %lld sectors\n\n"), dh->readCapacity+1, dh->userAreaSize+1); - g_string_append_printf(warning, _("Evaluation of returned medium sizes:\n\n")); + g_string_append(warning, _("Evaluation of returned medium sizes:\n\n")); /*** Look at READ CAPACITY results */ @@ -2022,7 +2054,7 @@ gint64 CurrentMediumSize(int get_blank_size) /* * Spin up drive. - * Most drive give a *beep* about sending the START STOP CDB, + * Most drives give a *beep* about sending the START STOP CDB, * so we simply nudge them with reading request until the spin up * time is over. Pathetic ;-) */ @@ -2075,7 +2107,7 @@ void LoadMedium(DeviceHandle *dh, int load) cmd[0] = 0x1b; /* START STOP */ cmd[4] = load ? 0x03 : 0x02; /* LOEJ=1; START=load/eject */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0 + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0 && (sense.asc != 0x53 || sense.ascq != 0x02)) { PrintLog(_("%s\nCould not load/unload the medium.\n"), @@ -2093,7 +2125,7 @@ void LoadMedium(DeviceHandle *dh, int load) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x1e; /* PREVENT ALLOW MEDIUM REMOVAL */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0) PrintLog(_("%s\nCould not unlock the medium.\n"), GetSenseString(sense.sense_key, sense.asc, sense.ascq, TRUE)); @@ -2103,7 +2135,7 @@ void LoadMedium(DeviceHandle *dh, int load) cmd[0] = 0x1b; /* START STOP */ cmd[4] = 0x02; /* LOEJ=1; START=eject */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0) PrintLog(_("%s\nCould not load/unload the medium.\n"), GetSenseString(sense.sense_key, sense.asc, sense.ascq, TRUE)); } @@ -2121,7 +2153,7 @@ int TestUnitReady(DeviceHandle *dh) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x00; /* TEST UNIT READY */ - if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_READ) != -1) + if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_NONE) != -1) return TRUE; /*** If no medium present, try closing the tray. */ @@ -2139,7 +2171,7 @@ int TestUnitReady(DeviceHandle *dh) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x00; /* TEST UNIT READY */ - if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_READ) != -1) + if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_NONE) != -1) { if(Closure->guiMode) SetLabelText(Closure->status, ""); return TRUE; diff --git a/scsi-layer.h b/scsi-layer.h index 6e8e565..5884d25 100644 --- a/scsi-layer.h +++ b/scsi-layer.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -41,7 +41,7 @@ #undef VERSION #include #include -#include +#include #include #include #include @@ -53,6 +53,11 @@ *** Define the Sense data structure. ***/ +/* Theretically not needed, but using less causes DMA breakage + on some chipsets. */ + +#define MIN_TRANSFER_LEN 4 + /* * Linux already has one */ @@ -109,6 +114,7 @@ typedef struct _DeviceHandle */ #if defined(SYS_LINUX) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) int fd; /* device file descriptor */ + int forceSG_IO; /* CDROM_SEND_PACKET broken on this target */ #endif #ifdef SYS_FREEBSD struct cam_device *camdev; /* camlib device handle */ diff --git a/scsi-linux.c b/scsi-linux.c index 039c22b..a749d4a 100644 --- a/scsi-linux.c +++ b/scsi-linux.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -91,6 +91,11 @@ char* DefaultDevice() DeviceHandle* OpenDevice(char *device) { DeviceHandle *dh; + AlignedBuffer *ab; + Sense *sense; + unsigned char cmd[MAX_CDB_SIZE]; + int length; + int phy_int_std; dh = g_malloc0(sizeof(DeviceHandle)); dh->fd = open(device, O_RDWR | O_NONBLOCK); @@ -103,6 +108,66 @@ DeviceHandle* OpenDevice(char *device) dh->device = g_strdup(device); + /*** Probe for parallel SCSI. + We can't use the CDROM_SEND_PACKET ioctl with it. */ + + Verbose("# *** OpenDevice(%s) - GET CONFIGURATION ***\n", device); + + length = 2048; + ab = CreateAlignedBuffer(length); + sense = &dh->sense; + + /* Query length of returned data */ + + memset(cmd, 0, MAX_CDB_SIZE); + cmd[0] = 0x46; /* GET CONFIGURATION */ + cmd[1] = 0x02; /* only specified feature */ + cmd[2] = 0; + cmd[3] = 1; /* we want the core feature (0x0001) */ + cmd[7] = length>>8; + cmd[8] = length&0xff; /* Allocation length */ + + if(SendPacket(dh, cmd, 10, ab->buf, length, sense, DATA_READ)<0) + { + FreeAlignedBuffer(ab); + Verbose("# failed -> could not get core feature: %s\n", + GetSenseString(sense->sense_key, sense->asc, sense->ascq, 0)); + + if(Closure->useSCSIDriver == DRIVER_CDROM_FORCED) + Verbose("# Would like to play it safe, but CDROM_SEND_PACKET ioctl()\n" + "# forced via command line. Prepare for wreckage.\n"); + else + { Verbose("# Playing it safe. Forcing use of SG_IO ioctl().\n"); + dh->forceSG_IO = TRUE; + } + return dh; + } + + length = ab->buf[0]<<24 | ab->buf[1] | ab->buf[2] | ab->buf[3]; + if(length < 12) + { FreeAlignedBuffer(ab); + Verbose("# failed -> invalid length for core feature: %d\n", length); + return dh; + } + + phy_int_std = ab->buf[12]<<24 | ab->buf[13]<<16 | ab->buf[14]<<8 | ab->buf[15]; + + Verbose("# physical interface standard: %d\n", phy_int_std); + + switch(phy_int_std) + { case 2: Verbose("# ATAPI. Hopefully not behind a bridge.\n"); + break; + case 1: if(Closure->useSCSIDriver == DRIVER_CDROM_FORCED) + Verbose("# SCSI, but CDROM_SEND_PACKET ioctl() forced via command line.\n" + "# Prepare for wreckage.\n"); + else + { Verbose("# SCSI. Forcing use of SG_IO ioctl().\n"); + dh->forceSG_IO = TRUE; + } + break; + } + + FreeAlignedBuffer(ab); return dh; } @@ -141,38 +206,60 @@ static void assert_cdb_length(unsigned char cdb, int cdb_size, int expected_size cdb_size, cdb, expected_size); } -static void test_cdb(unsigned char *cdb, int cdb_size) +static void assert_cdb_direction(unsigned char cdb, int expected, int given) +{ + if(expected != given) + PrintLog("SendPacket(): Wrong data direction %d for opcode %0x (expected %d)\n", + given, cdb, expected); +} + +static void test_cdb(unsigned char *cdb, int cdb_size, int direction) { switch(cdb[0]) { case 0x00: assert_cdb_length(cdb[0], cdb_size, 6); /* TEST UNIT READY */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x12: assert_cdb_length(cdb[0], cdb_size, 6); /* INQUIRY */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x1b: assert_cdb_length(cdb[0], cdb_size, 6); /* START STOP */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x1e: assert_cdb_length(cdb[0], cdb_size, 6); /* PREVENT ALLOW MEDIUM REMOVAL */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x23: assert_cdb_length(cdb[0], cdb_size, 10); /* READ FORMAT CAPACITIES */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x25: assert_cdb_length(cdb[0], cdb_size, 10); /* READ CAPACITY */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x28: assert_cdb_length(cdb[0], cdb_size, 10); /* READ(10) */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x43: assert_cdb_length(cdb[0], cdb_size, 10); /* READ TOC/PMA/ATIP */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x46: assert_cdb_length(cdb[0], cdb_size, 10); /* GET CONFIGURATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x51: assert_cdb_length(cdb[0], cdb_size, 10); /* READ DISC INFORMATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x52: assert_cdb_length(cdb[0], cdb_size, 10); /* READ TRACK INFORMATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x55: assert_cdb_length(cdb[0], cdb_size, 10); /* MODE SELECT */ + assert_cdb_direction(cdb[0], DATA_WRITE, direction); break; case 0x5a: assert_cdb_length(cdb[0], cdb_size, 10); /* MODE SENSE */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0xad: assert_cdb_length(cdb[0], cdb_size, 12); /* READ DVD STRUCTURE */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0xbe: assert_cdb_length(cdb[0], cdb_size, 12); /* READ CD */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; default: PrintLog("SendPacket(): Unknown opcode %0x\n", cdb[0]); @@ -181,15 +268,18 @@ static void test_cdb(unsigned char *cdb, int cdb_size) #endif /* - * The CDROM ioctl() interface has been used since the first dvdisaster - * release - it's the proven way of accessing the drive. + * The CDROM ioctl() interface has been used since the first dvdisaster release. + * However with recent 2.6 kernels it seems to become outdated - several parallel + * SCSI cards are already exhibiting failures using this interface. + * Starting with dvdisaster 0.72.2 and 0.79.3, the SG_IO interface has become + * the default now. You can revert back to old behaviour using --driver=cdrom. */ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) { struct cdrom_generic_command cgc; #ifdef ASSERT_CDB_LENGTH - test_cdb(cmd, cdb_size); + test_cdb(cmd, cdb_size, data_mode); #endif memset(&cgc, 0, sizeof(cgc)); @@ -207,6 +297,9 @@ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, case DATA_WRITE: cgc.data_direction = CGC_DATA_WRITE; break; + case DATA_NONE: + cgc.data_direction = CGC_DATA_NONE; + break; default: Stop("illegal data_mode: %d", data_mode); } @@ -216,15 +309,18 @@ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, /* * Access to the drive through the generic SCSI interface - * has been added in dvdisaster 0.72 - it may have undetected flaws. - * Only use it if there are problems with the normal CDROM interface - * (some ancient parallel SCSI adapters/drives seem to fall into this - * category). + * has been added in dvdisaster 0.72 - it seems to be better + * maintained than the older CDROM_SEND_PACKET interface now. + * Especially parallel SCSI cdroms require this now. */ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) { struct sg_io_hdr sg_io; +#ifdef ASSERT_CDB_LENGTH + test_cdb(cmd, cdb_size, data_mode); +#endif + memset(&sg_io, 0, sizeof(sg_io)); sg_io.interface_id = 'S'; @@ -235,6 +331,9 @@ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_siz case DATA_WRITE: sg_io.dxfer_direction = SG_DXFER_TO_DEV; break; + case DATA_NONE: + sg_io.dxfer_direction = SG_DXFER_NONE; + break; default: Stop("illegal data_mode: %d", data_mode); } @@ -268,10 +367,34 @@ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_siz } int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) -{ - if(!Closure->useSGioctl) - return send_packet_cdrom(dh, cmd, cdb_size, buf, size, sense, data_mode); - else return send_packet_generic(dh, cmd, cdb_size, buf, size, sense, data_mode); +{ int driver = Closure->useSCSIDriver; + + /* Using the CDROM_SEND_PACKET ioctl kills parallel SCSI adapters. + Redirect the necessary probing commands to the SG_IO driver. */ + + if( (cmd[0] == 0x46 || cmd[0] == 0x12) && driver != DRIVER_CDROM_FORCED) + driver = DRIVER_SG; + + if(dh->forceSG_IO) + driver = DRIVER_SG; + + /* dispatch to appropriate driver */ + + switch(driver) + { + case DRIVER_SG: + return send_packet_generic(dh, cmd, cdb_size, buf, size, sense, data_mode); + + case DRIVER_CDROM_DEFAULT: + case DRIVER_CDROM_FORCED: + return send_packet_cdrom(dh, cmd, cdb_size, buf, size, sense, data_mode); + + default: + Stop("no SCSI driver selected"); + break; + } + + return -1; } #endif /* SYS_LINUX */ diff --git a/scsi-netbsd.c b/scsi-netbsd.c index d7a1e32..95c61b1 100644 --- a/scsi-netbsd.c +++ b/scsi-netbsd.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -163,6 +163,8 @@ int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char case DATA_WRITE: sc.flags = SCCMD_WRITE; break; + case DATA_NONE: + sc.flags = 0; default: Stop("illegal data_mode: %d", data_mode); } diff --git a/scsi-solaris.c b/scsi-solaris.c index e1ff359..c91fe31 100644 --- a/scsi-solaris.c +++ b/scsi-solaris.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -171,6 +171,8 @@ int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char case DATA_WRITE: ucmd.uscsi_flags |= USCSI_WRITE; break; + case DATA_NONE: + break; default: Stop("illegal data_mode: %d", data_mode); } diff --git a/scsi-unknown.c b/scsi-unknown.c index a226a77..c2f707d 100644 --- a/scsi-unknown.c +++ b/scsi-unknown.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/scsi-win32.c b/scsi-win32.c index 47bdfba..86cc8a0 100644 --- a/scsi-win32.c +++ b/scsi-win32.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -471,6 +471,9 @@ static int send_aspi_packet(DeviceHandle *dh, unsigned char *cmd, int cdb_size, case DATA_READ: srb.Flags = SRB_DIR_IN | SRB_EVENT_NOTIFY; break; + case DATA_NONE: + srb.Flags = SRB_EVENT_NOTIFY; + break; default: Stop("illegal data_mode for ASPI: %d", data_mode); return -1; diff --git a/show-manual.c b/show-manual.c index 72cab4b..2b61b32 100644 --- a/show-manual.c +++ b/show-manual.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/smart-lec.c b/smart-lec.c index 7e53e4b..51ae0d6 100644 --- a/smart-lec.c +++ b/smart-lec.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/spiral.c b/spiral.c index 61520ad..41c9a6a 100644 --- a/spiral.c +++ b/spiral.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/tools/codec.c b/tools/codec.c index 864914e..33b85e0 100644 --- a/tools/codec.c +++ b/tools/codec.c @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/codec.h b/tools/codec.h index ea7e5f9..64c4353 100644 --- a/tools/codec.h +++ b/tools/codec.h @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/decimate.c b/tools/decimate.c index dc38791..b754ca4 100644 --- a/tools/decimate.c +++ b/tools/decimate.c @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/decimate.h b/tools/decimate.h index b452b6f..eb0fa3e 100644 --- a/tools/decimate.h +++ b/tools/decimate.h @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/memory.c b/tools/memory.c index 1f0845a..14b2750 100644 --- a/tools/memory.c +++ b/tools/memory.c @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/memory.h b/tools/memory.h index 41b192e..4f75df7 100644 --- a/tools/memory.h +++ b/tools/memory.h @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/pngio.c b/tools/pngio.c index 25da16a..6c0f014 100644 --- a/tools/pngio.c +++ b/tools/pngio.c @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/pngio.h b/tools/pngio.h index 3e40bc1..36df455 100644 --- a/tools/pngio.h +++ b/tools/pngio.h @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/pngpack.c b/tools/pngpack.c index 191005d..c0d1c76 100644 --- a/tools/pngpack.c +++ b/tools/pngpack.c @@ -1,5 +1,5 @@ /* pngpack: lossless image compression for a series of screen shots - * Copyright (C) 2005-2009 Carsten Gnoerlich. + * Copyright (C) 2005-2010 Carsten Gnoerlich. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/udf.c b/udf.c index 7cb2dc6..75cf04e 100644 --- a/udf.c +++ b/udf.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -52,9 +52,10 @@ static int try_sector(DeviceHandle *dh, gint64 pos, EccHeader **ehptr, unsigned this modulo makes no sense for write-once media. However if the medium is rewriteable, there might be trash data behind the image. So finding an invalid sector - does not imply there is not RS02 data present. */ + does not imply there is no RS02 data present. + Added workaround: Avoid misrecognizing RS03 images */ - if(strncmp((char*)eh->cookie, "*dvdisaster*", 12)) + if(strncmp((char*)eh->cookie, "*dvdisaster*RS02", 16)) { if(dh->rewriteable) { Verbose("udf/try_sector: no cookie but rewriteable medium: skipping header\n"); return TRY_NEXT_HEADER; diff --git a/udf.h b/udf.h index 8965bfa..3e1794d 100644 --- a/udf.h +++ b/udf.h @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/welcome-window.c b/welcome-window.c index 27df83e..501b939 100644 --- a/welcome-window.c +++ b/welcome-window.c @@ -1,5 +1,5 @@ /* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2009 Carsten Gnoerlich. + * Copyright (C) 2004-2011 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -132,7 +132,7 @@ void CreateWelcomePage(GtkNotebook *notebook) "CD and DVD media against data loss.\n")); AboutTextWithLink(box, _("Please see the manual for [typical uses] of dvdisaster.\n\n"), - "example.html"); + "howtos.html"); AboutText(box, _("New in this Version:")); diff --git a/wininst/installer.template b/wininst/installer.template index 33f0b97..175a760 100644 --- a/wininst/installer.template +++ b/wininst/installer.template @@ -14,6 +14,7 @@ UninstallDisplayIcon={app}\dvdisaster.exe Compression=lzma SolidCompression=yes SourceDir=..\win-build-dir +MinVersion=5.0,5.0 OutputDir=. OutputManifestFile=manifest.txt OutputBaseFilename=dvdisaster-%version%-setup @@ -46,14 +47,14 @@ Source: "TODO"; DestDir: "{app}" Source: "signature"; DestDir: "{app}" Source: "*.exe"; DestDir: "{app}" Source: "*.dll"; DestDir: "{app}" -Source: "lib\locale\cs\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\cs\LC_MESSAGES" -Source: "lib\locale\de\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\de\LC_MESSAGES" -Source: "lib\locale\it\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\it\LC_MESSAGES" -Source: "lib\locale\pt_BR\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\pt_BR\LC_MESSAGES" -Source: "lib\locale\ru\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\ru\LC_MESSAGES" -Source: "lib\locale\sv\LC_MESSAGES\*"; DestDir: "{app}\lib\locale\sv\LC_MESSAGES" +Source: "share\locale\cs\LC_MESSAGES\*"; DestDir: "{app}\share\locale\cs\LC_MESSAGES" +Source: "share\locale\de\LC_MESSAGES\*"; DestDir: "{app}\share\locale\de\LC_MESSAGES" +Source: "share\locale\it\LC_MESSAGES\*"; DestDir: "{app}\share\locale\it\LC_MESSAGES" +Source: "share\locale\pt_BR\LC_MESSAGES\*"; DestDir: "{app}\share\locale\pt_BR\LC_MESSAGES" +Source: "share\locale\ru\LC_MESSAGES\*"; DestDir: "{app}\share\locale\ru\LC_MESSAGES" +Source: "share\locale\sv\LC_MESSAGES\*"; DestDir: "{app}\share\locale\sv\LC_MESSAGES" Source: "etc\gtk-2.0\*"; DestDir: "{app}\etc\gtk-2.0" -Source: "etc\pango\*"; DestDir: "{app}\etc\pango" +;Source: "etc\pango\*"; DestDir: "{app}\etc\pango" Source: "locale\cs\LC_MESSAGES\dvdisaster.mo"; DestDir: "{app}\locale\cs\LC_MESSAGES" Source: "locale\de\LC_MESSAGES\dvdisaster.mo"; DestDir: "{app}\locale\de\LC_MESSAGES" Source: "locale\it\LC_MESSAGES\dvdisaster.mo"; DestDir: "{app}\locale\it\LC_MESSAGES"