diff --git a/CHANGELOG b/CHANGELOG index fa38c37..caf5be1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +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..ece0854 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-2010 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..310d1af 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-2010 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..67ec109 100644 --- a/build.h +++ b/build.h @@ -1,2 +1,2 @@ -#define BUILD 20 -#define BDATE "08.08.09 (Samstag, 20:46)" +#define BUILD 102 +#define BDATE "07.11.10 (Sonntag, 17:08)" diff --git a/closure.c b/closure.c index 7388e72..634205e 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-2010 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..60eda61 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ fi PACKAGE dvdisaster 0.72 -REL_MICRO=1 +REL_MICRO=2 REL_STATUS=patch #REL_STATUS=devel #REL_STATUS=rc diff --git a/crc32.c b/crc32.c index 86e773c..df71f1d 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-2010 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..a572c17 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-2010 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..e9087db 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-2010 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..bbe13c9 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-2010 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..476d210 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 (pl2)  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 (pl2). --->
 
@@ -112,22 +113,24 @@ ist 0.72 (pl1). Stabile Version - zum Einstieg empfohlen

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

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

+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/download.php b/documentation/de/download.php index f3404d2..63b0360 100644 --- a/documentation/de/download.php +++ b/documentation/de/download.php @@ -1,6 +1,6 @@ @@ -52,22 +53,62 @@ ist . Stabile Version - zum Einstieg empfohlen

dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Okt-2010
- + - + - + - + - + - + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.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.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
- + @@ -89,6 +130,11 @@ Grundlegende Neuerungen in dieser Version:

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

+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..31bb795 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.7231-Okt-2010
- + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.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.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-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.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 (pl2)  Zur Internet-Version diff --git a/documentation/de/download10.php b/documentation/de/download10.php index 49796b3..3ffb4e0 100644 --- a/documentation/de/download10.php +++ b/documentation/de/download10.php @@ -1,6 +1,6 @@ - dvdisaster + + Digitale Unterschrift @@ -11,7 +12,7 @@
dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl2)  Zur Internet-Version 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 (pl2)  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.2-setup.exe) aus. Es enthält einen Dialog zum Einrichten von dvdisaster.

Warnung: Sie können dvdisaster nicht installieren, indem Sie 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..1530dc9 --- /dev/null +++ b/documentation/de/download_showall=0.html @@ -0,0 +1,290 @@ + + + + + Herunterladen + + + + + + + + + + +
+ dvdisaster + Version 0.72 (pl2) + +  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.7231-Okt-2010
+ + + + + + + + + + + + + + + +
  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
Ä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 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-2009 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..196932a --- /dev/null +++ b/documentation/de/download_showall=1.html @@ -0,0 +1,318 @@ + + + + + Herunterladen + + + + + + + + + + +
+ dvdisaster + Version 0.72 (pl2) + +  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.7231-Okt-2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  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
Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
  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 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-2009 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos.html b/documentation/de/howtos.html index 4e4d9e2..28f99ff 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 (pl2)  Zur Internet-Version 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 (pl2)  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.

diff --git a/documentation/de/howtos10.php b/documentation/de/howtos10.php index 83fb022..d8c0262 100644 --- a/documentation/de/howtos10.php +++ b/documentation/de/howtos10.php @@ -1,6 +1,6 @@ - dvdisaster + + Grundeinstellungen @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=2.html b/documentation/de/howtos11_expand=2.html index 2835a6d..3ab9b52 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=3.html b/documentation/de/howtos11_expand=3.html index 75f83e7..3d6e5c6 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=4.html b/documentation/de/howtos11_expand=4.html index 6367e79..f4e6d78 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=5.html b/documentation/de/howtos11_expand=5.html index bace5d3..82411ec 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos12.html b/documentation/de/howtos12.html index b479e8b..a0e1902 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos12_expand=1.html b/documentation/de/howtos12_expand=1.html index 8284c68..3dad1bb 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13.html b/documentation/de/howtos13.html index 34de9b2..9d955b4 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=1.html b/documentation/de/howtos13_expand=1.html index 841fefd..a367bad 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=2.html b/documentation/de/howtos13_expand=2.html index a253820..234504e 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=3.html b/documentation/de/howtos13_expand=3.html index 6bb843e..228a390 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=4.html b/documentation/de/howtos13_expand=4.html index cd2909e..b488d45 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=5.html b/documentation/de/howtos13_expand=5.html index 7e5932c..1cc0662 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=6.html b/documentation/de/howtos13_expand=6.html index 4fe76d7..4b79dd6 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos14.html b/documentation/de/howtos14.html index 5cfb23c..1270f01 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos14_expand=2.html b/documentation/de/howtos14_expand=2.html index 64aaac8..8eb31ed 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos20.html b/documentation/de/howtos20.html index 589eefa..96c9bef 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=2.html b/documentation/de/howtos21_answer=2.html index 2600ab9..335792b 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=3.html b/documentation/de/howtos21_answer=3.html index e4c3400..e15be69 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=4.html b/documentation/de/howtos21_answer=4.html index 473ae9c..fe4c370 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22.html b/documentation/de/howtos22.html index a04866f..6504797 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=2.html b/documentation/de/howtos22_expand=2.html index ecd9a71..9e5e0e2 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=3.html b/documentation/de/howtos22_expand=3.html index 95e7c22..4ced961 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=4.html b/documentation/de/howtos22_expand=4.html index b71b26e..443f6c7 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=5.html b/documentation/de/howtos22_expand=5.html index 7440544..26a9ed6 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=6.html b/documentation/de/howtos22_expand=6.html index 9833e93..d4e59d1 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23.html b/documentation/de/howtos23.html index f313c87..7f3d5f4 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1&expand=1.html b/documentation/de/howtos23_way=1&expand=1.html index 54375d6..dc8e86f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1&expand=2.html b/documentation/de/howtos23_way=1&expand=2.html index b64acb2..6f18a4b 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1.html b/documentation/de/howtos23_way=1.html index 3a63f36..7f34afd 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=0.html b/documentation/de/howtos23_way=2&expand=0.html index aa552be..8af2500 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=1.html b/documentation/de/howtos23_way=2&expand=1.html index 87622fa..44fe6ae 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=2.html b/documentation/de/howtos23_way=2&expand=2.html index 00a5f34..79c7d40 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2.html b/documentation/de/howtos23_way=2.html index aa552be..8af2500 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos24.html b/documentation/de/howtos24.html index 46b3ffd..74c993f 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos25_expand=2.html b/documentation/de/howtos25_expand=2.html index 38cb2af..66e3188 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos30.html b/documentation/de/howtos30.html index 5e923ce..17d2045 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos32.html b/documentation/de/howtos32.html index b58e240..f417784 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos32_expand=2.html b/documentation/de/howtos32_expand=2.html index 4809e24..a8aa7c7 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33.html b/documentation/de/howtos33.html index 6cc25fa..a396db9 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_expand=1.html b/documentation/de/howtos33_expand=1.html index 8112d49..13758e6 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_expand=2.html b/documentation/de/howtos33_expand=2.html index bbadf76..d6ab914 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=0.html b/documentation/de/howtos33_way=0&expand=0.html index c2d16c9..6391f8b 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=1.html b/documentation/de/howtos33_way=0&expand=1.html index a43ef96..e3be15f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=2.html b/documentation/de/howtos33_way=0&expand=2.html index 6b2360d..e335df1 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0.html b/documentation/de/howtos33_way=0.html index c2d16c9..6391f8b 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&.html b/documentation/de/howtos33_way=1&.html index 91e8238..d5735b9 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=0.html b/documentation/de/howtos33_way=1&expand=0.html index 91e8238..d5735b9 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=1.html b/documentation/de/howtos33_way=1&expand=1.html index 2d9856c..288a219 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=2.html b/documentation/de/howtos33_way=1&expand=2.html index 7fab5be..87242b7 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=3.html b/documentation/de/howtos33_way=1&expand=3.html index f422d15..b590ea8 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=4.html b/documentation/de/howtos33_way=1&expand=4.html index 5ab9e36..7efaaf4 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=5.html b/documentation/de/howtos33_way=1&expand=5.html index f0bd195..d4a6e7f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=6.html b/documentation/de/howtos33_way=1&expand=6.html index a278f1f..ea378ea 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=7.html b/documentation/de/howtos33_way=1&expand=7.html index 6e49778..6921080 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1.html b/documentation/de/howtos33_way=1.html index 91e8238..d5735b9 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&.html b/documentation/de/howtos33_way=2&.html index b948b60..a796307 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=0.html b/documentation/de/howtos33_way=2&expand=0.html index b948b60..a796307 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=1.html b/documentation/de/howtos33_way=2&expand=1.html index e437c9a..d928805 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=2.html b/documentation/de/howtos33_way=2&expand=2.html index 4c4031f..52a01b3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=3.html b/documentation/de/howtos33_way=2&expand=3.html index f357b03..50f01fc 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=4.html b/documentation/de/howtos33_way=2&expand=4.html index 8c0e06d..6569bd2 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=5.html b/documentation/de/howtos33_way=2&expand=5.html index 89b8f5a..f8c79a0 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=6.html b/documentation/de/howtos33_way=2&expand=6.html index efbfc01..5be5024 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2.html b/documentation/de/howtos33_way=2.html index b948b60..a796307 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&.html b/documentation/de/howtos33_way=3&.html index bbffb3d..95c30b3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=0.html b/documentation/de/howtos33_way=3&expand=0.html index bbffb3d..95c30b3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=1.html b/documentation/de/howtos33_way=3&expand=1.html index 24eda8d..121c1ea 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=10.html b/documentation/de/howtos33_way=3&expand=10.html index 3a67465..66da843 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=11.html b/documentation/de/howtos33_way=3&expand=11.html index 12d19ec..9632d88 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=2.html b/documentation/de/howtos33_way=3&expand=2.html index 6d1f430..b6951e1 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=3.html b/documentation/de/howtos33_way=3&expand=3.html index 908a326..74eb886 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=4.html b/documentation/de/howtos33_way=3&expand=4.html index 45d2b50..ed2c924 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=5.html b/documentation/de/howtos33_way=3&expand=5.html index 2e50ad8..4aaba8c 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=6.html b/documentation/de/howtos33_way=3&expand=6.html index 0a3a64b..d34a88f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=7.html b/documentation/de/howtos33_way=3&expand=7.html index 9478217..67124ae 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=8.html b/documentation/de/howtos33_way=3&expand=8.html index 9f4b047..222c6be 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=9.html b/documentation/de/howtos33_way=3&expand=9.html index dfe7ed8..73689b1 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3.html b/documentation/de/howtos33_way=3.html index bbffb3d..95c30b3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos34.html b/documentation/de/howtos34.html index 8396559..da4deb9 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos40.html b/documentation/de/howtos40.html index 7741fba..937b9b5 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=2.html b/documentation/de/howtos41_expand=2.html index 9741355..84aceb2 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=3.html b/documentation/de/howtos41_expand=3.html index 71aae2d..44ae0fd 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=4.html b/documentation/de/howtos41_expand=4.html index b7ae777..fedef3a 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=5.html b/documentation/de/howtos41_expand=5.html index 20a4cb0..abde2ec 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos42.html b/documentation/de/howtos42.html index ec15aad..677264a 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=1.html b/documentation/de/howtos42_expand=1.html index 6ba7979..267ab78 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=2.html b/documentation/de/howtos42_expand=2.html index 5af3c77..f561cc3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=3.html b/documentation/de/howtos42_expand=3.html index ad08253..ad5c764 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=4.html b/documentation/de/howtos42_expand=4.html index 78271fd..1ce2804 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos43.html b/documentation/de/howtos43.html index 7d73213..71bd441 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=2.html b/documentation/de/howtos43_expand=2.html index 9f90b64..dd65117 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=3.html b/documentation/de/howtos43_expand=3.html index 8ff4ebd..74758c3 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=4.html b/documentation/de/howtos43_expand=4.html index aa66efb..dd43db1 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=5.html b/documentation/de/howtos43_expand=5.html index e94e232..99b1a4f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos50.html b/documentation/de/howtos50.html index 966772c..8ebb506 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos51_expand=1.html b/documentation/de/howtos51_expand=1.html index 6fbf04a..3842647 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos52.html b/documentation/de/howtos52.html index b217330..c2b6cba 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos52_expand=1.html b/documentation/de/howtos52_expand=1.html index bd0dcec..215729e 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos53.html b/documentation/de/howtos53.html index 09388ae..af43c19 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos53_expand=1.html b/documentation/de/howtos53_expand=1.html index 1e1d81f..d352369 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos59.html b/documentation/de/howtos59.html index 68bad40..6e6db7d 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=2.html b/documentation/de/howtos59_expand=2.html index 4d30da7..17b17bb 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=3.html b/documentation/de/howtos59_expand=3.html index 202e5c6..b036c95 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=4.html b/documentation/de/howtos59_expand=4.html index 26ce3ee..9878b78 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=5.html b/documentation/de/howtos59_expand=5.html index a578313..73140f8 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos60.html b/documentation/de/howtos60.html index 0ce0ea0..6c173c1 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=1.html b/documentation/de/howtos91_expand=1.html index 8fa05ba..58f7985 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=2.html b/documentation/de/howtos91_expand=2.html index 1d5b42d..6da8a8c 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=3.html b/documentation/de/howtos91_expand=3.html index d2e5953..9c44393 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=4.html b/documentation/de/howtos91_expand=4.html index 89ceecb..ebf1db4 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos92.html b/documentation/de/howtos92.html index a198b14..64359f3 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=1.html b/documentation/de/howtos92_expand=1.html index 91eead6..3aa763b 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=2.html b/documentation/de/howtos92_expand=2.html index e0ef1e5..543b22a 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=3.html b/documentation/de/howtos92_expand=3.html index cc0a8e2..d83e36f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=4.html b/documentation/de/howtos92_expand=4.html index 91c78c8..93c50f7 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 (pl2)  Zur Internet-Version 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..787a314 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtosa2.html b/documentation/de/howtosa2.html index 2c41cf8..c645ba2 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtosa2_expand=2.html b/documentation/de/howtosa2_expand=2.html index 63e3840..3162204 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtosa3.html b/documentation/de/howtosa3.html index 09bf659..3401308 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtosa3_expand=2.html b/documentation/de/howtosa3_expand=2.html index c89409d..9d59076 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/howtosa4.html b/documentation/de/howtosa4.html index 27ba34a..2e2e69e 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version @@ -123,29 +124,37 @@ Solche Funktionen sind mit den Zielen und dem inneren Aufbau von dvdisaster nich

+ 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

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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/index10_expand=2.html b/documentation/de/index10_expand=2.html index a5f3b46..569cc9f 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 (pl2)  Zur Internet-Version diff --git a/documentation/de/index20.html b/documentation/de/index20.html index 5893d74..c35135d 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version @@ -74,7 +75,59 @@

Neues über dvdisaster

- + + + +
dvdisaster 0.72.1 veröffentlichtdvdisaster 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 +153,7 @@ bei bestimmten CD-RW/Laufwerks-Kominationen abzuhalten.

 
- +
dvdisaster 0.72 veröffentlichtdvdisaster 0.72 veröffentlicht 04.07.2009
@@ -127,7 +180,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 +207,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 +235,7 @@ finden Sie mehr Informationen.
 
- +
dvdisaster 0.71.28 veröffentlichtdvdisaster 0.71.28 veröffentlicht 08.03.2009
@@ -209,7 +262,7 @@ Veröffentlichungskandidaten für den stabilen Zweig.
 
- +
dvdisaster 0.71.27 veröffentlichtdvdisaster 0.71.27 veröffentlicht 18.01.2009
diff --git a/documentation/de/news.php b/documentation/de/news.php index 0f96a26..149439b 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version 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 (pl2)  Zur Internet-Version diff --git a/documentation/downloads b/documentation/downloads new file mode 120000 index 0000000..a657294 --- /dev/null +++ b/documentation/downloads @@ -0,0 +1 @@ +/home/cg/work/out/ \ No newline at end of file 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..fa02d90 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 (pl2)  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 (pl2). -->
 
@@ -110,22 +111,24 @@ The current unstable release is Stable version - recommended for getting started.

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

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

+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/download.php b/documentation/en/download.php index aadea9a..1120202 100644 --- a/documentation/en/download.php +++ b/documentation/en/download.php @@ -1,6 +1,6 @@ @@ -50,22 +51,60 @@ The current unstable release is Stable version - recommended for getting started.

dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Oct-2010
- + - + - + - + - + - + + +
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.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.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
Binary for Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
Show older releases in the 0.72 version branch
- + @@ -87,6 +126,11 @@ Most important changes in this version:

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

+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..70e6eb7 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.7231-Oct-2010
- + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.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.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
Binary for Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-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.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 (pl2)  To the Internet version diff --git a/documentation/en/download10.php b/documentation/en/download10.php index 37ef871..71e89f6 100644 --- a/documentation/en/download10.php +++ b/documentation/en/download10.php @@ -1,6 +1,6 @@ - dvdisaster + + Digital signature @@ -11,7 +12,7 @@
dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl2)  To the Internet version 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 (pl2)  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.2-setup.exe) and follow the installation dialog.

Caution: dvdisaster can NOT be installed from 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..1b3744d --- /dev/null +++ b/documentation/en/download_showall=0.html @@ -0,0 +1,279 @@ + + + + + Download + + + + + + + + + + +
+ dvdisaster + Version 0.72 (pl2) + +  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.7231-Oct-2010
+ + + + + + + + + + + + + + + +
  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
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 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-2009 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..e680700 --- /dev/null +++ b/documentation/en/download_showall=1.html @@ -0,0 +1,305 @@ + + + + + Download + + + + + + + + + + +
+ dvdisaster + Version 0.72 (pl2) + +  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.7231-Oct-2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  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
Hide older releases in the 0.72 version branch
  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 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-2009 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos.html b/documentation/en/howtos.html index a394d07..4a9cd1a 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 (pl2)  To the Internet version 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 (pl2)  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.

diff --git a/documentation/en/howtos10.php b/documentation/en/howtos10.php index a252f23..f45ac2a 100644 --- a/documentation/en/howtos10.php +++ b/documentation/en/howtos10.php @@ -1,6 +1,6 @@ - dvdisaster + + Basic settings @@ -11,7 +12,7 @@ dvdisaster - Version 0.72 (pl1) + Version 0.72 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos11_expand=2.html b/documentation/en/howtos11_expand=2.html index 134da4a..7f2f316 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos11_expand=3.html b/documentation/en/howtos11_expand=3.html index be00dde..9c18c75 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos11_expand=4.html b/documentation/en/howtos11_expand=4.html index 76b5c02..98bfd69 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos11_expand=5.html b/documentation/en/howtos11_expand=5.html index ce50540..f4cf258 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos12.html b/documentation/en/howtos12.html index f1db5b2..b299b44 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos12_expand=1.html b/documentation/en/howtos12_expand=1.html index f429c88..9bb7ec8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13.html b/documentation/en/howtos13.html index f528985..c17e74a 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13_expand=2.html b/documentation/en/howtos13_expand=2.html index 33e8ea1..e7a56fc 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13_expand=3.html b/documentation/en/howtos13_expand=3.html index 4485a03..13fed8c 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13_expand=4.html b/documentation/en/howtos13_expand=4.html index 34400dd..f981309 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13_expand=5.html b/documentation/en/howtos13_expand=5.html index 683252e..77e9dd8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos13_expand=6.html b/documentation/en/howtos13_expand=6.html index 6450cae..1d57d47 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos14.html b/documentation/en/howtos14.html index 8405f38..750cbe4 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos14_expand=2.html b/documentation/en/howtos14_expand=2.html index 45bb952..4385278 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos20.html b/documentation/en/howtos20.html index 6248cde..34cfc00 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos21_answer=2.html b/documentation/en/howtos21_answer=2.html index b0744e3..091f815 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos21_answer=3.html b/documentation/en/howtos21_answer=3.html index ce5f9c8..df36537 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos21_answer=4.html b/documentation/en/howtos21_answer=4.html index a3f8610..e983333 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22.html b/documentation/en/howtos22.html index a6f5221..46240f0 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22_expand=2.html b/documentation/en/howtos22_expand=2.html index 7953252..ee7a0ad 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22_expand=3.html b/documentation/en/howtos22_expand=3.html index 4d153ad..ed05290 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22_expand=4.html b/documentation/en/howtos22_expand=4.html index 2b0cd84..9f8a2ea 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22_expand=5.html b/documentation/en/howtos22_expand=5.html index dc84271..614a48a 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos22_expand=6.html b/documentation/en/howtos22_expand=6.html index 435219e..4dc7a43 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23.html b/documentation/en/howtos23.html index 966b6b1..4696d6b 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=1&expand=1.html b/documentation/en/howtos23_way=1&expand=1.html index a0ec8d4..3b1533d 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=1&expand=2.html b/documentation/en/howtos23_way=1&expand=2.html index ef5a725..c67ccd7 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=1.html b/documentation/en/howtos23_way=1.html index d5ced0a..60c4db5 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=0.html b/documentation/en/howtos23_way=2&expand=0.html index 3f9d830..1b15f29 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=1.html b/documentation/en/howtos23_way=2&expand=1.html index e79e711..a61637a 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=2.html b/documentation/en/howtos23_way=2&expand=2.html index a77afdd..dc8e460 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos23_way=2.html b/documentation/en/howtos23_way=2.html index 3f9d830..1b15f29 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos24.html b/documentation/en/howtos24.html index 109a99e..9a2bd5e 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos25_expand=2.html b/documentation/en/howtos25_expand=2.html index 4a5c087..f572524 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos30.html b/documentation/en/howtos30.html index ed19045..b68f204 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos32.html b/documentation/en/howtos32.html index 603db14..0d69b80 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos32_expand=2.html b/documentation/en/howtos32_expand=2.html index b74d69a..5444206 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33.html b/documentation/en/howtos33.html index 4c110a0..ccabdf4 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_expand=1.html b/documentation/en/howtos33_expand=1.html index 89e29f2..937067a 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_expand=2.html b/documentation/en/howtos33_expand=2.html index 5894429..762ab70 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=0.html b/documentation/en/howtos33_way=0&expand=0.html index 57365c5..2504897 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=1.html b/documentation/en/howtos33_way=0&expand=1.html index 1dc5958..4cd30b6 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=2.html b/documentation/en/howtos33_way=0&expand=2.html index 9459b30..e63f45c 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=0.html b/documentation/en/howtos33_way=0.html index 57365c5..2504897 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&.html b/documentation/en/howtos33_way=1&.html index 236e0de..25d7d16 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=0.html b/documentation/en/howtos33_way=1&expand=0.html index 236e0de..25d7d16 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=1.html b/documentation/en/howtos33_way=1&expand=1.html index 9e07c5a..e5c87ea 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=2.html b/documentation/en/howtos33_way=1&expand=2.html index ad6624f..022565c 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=3.html b/documentation/en/howtos33_way=1&expand=3.html index ec72699..c02accb 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=4.html b/documentation/en/howtos33_way=1&expand=4.html index abdd4c2..b71b384 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=5.html b/documentation/en/howtos33_way=1&expand=5.html index dc32111..b8e3e98 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=6.html b/documentation/en/howtos33_way=1&expand=6.html index a3b6301..46de5a3 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=7.html b/documentation/en/howtos33_way=1&expand=7.html index 03cb9ab..21099a9 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=1.html b/documentation/en/howtos33_way=1.html index 236e0de..25d7d16 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&.html b/documentation/en/howtos33_way=2&.html index 49d9d80..2609eb8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=0.html b/documentation/en/howtos33_way=2&expand=0.html index 49d9d80..2609eb8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=1.html b/documentation/en/howtos33_way=2&expand=1.html index b6099f5..25bea7b 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=2.html b/documentation/en/howtos33_way=2&expand=2.html index f42851c..edf7ca2 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=3.html b/documentation/en/howtos33_way=2&expand=3.html index 40a049f..435dea0 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=4.html b/documentation/en/howtos33_way=2&expand=4.html index 5d7cf19..2c296dc 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=5.html b/documentation/en/howtos33_way=2&expand=5.html index 14e19f9..c2bf810 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=6.html b/documentation/en/howtos33_way=2&expand=6.html index ea5fdb1..feb2c15 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=2.html b/documentation/en/howtos33_way=2.html index 49d9d80..2609eb8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&.html b/documentation/en/howtos33_way=3&.html index b201ee5..0456060 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=0.html b/documentation/en/howtos33_way=3&expand=0.html index b201ee5..0456060 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=1.html b/documentation/en/howtos33_way=3&expand=1.html index 92b36a0..003c2f8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=10.html b/documentation/en/howtos33_way=3&expand=10.html index 7f8f4ab..c250d69 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=11.html b/documentation/en/howtos33_way=3&expand=11.html index 0a6d686..ebcdd55 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=2.html b/documentation/en/howtos33_way=3&expand=2.html index fc4219e..b6706eb 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=3.html b/documentation/en/howtos33_way=3&expand=3.html index 87d4f41..a3e5cf4 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=4.html b/documentation/en/howtos33_way=3&expand=4.html index 101f18b..437b065 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=5.html b/documentation/en/howtos33_way=3&expand=5.html index a4b65ec..1ad8ff8 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=6.html b/documentation/en/howtos33_way=3&expand=6.html index 6157462..43ad052 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=7.html b/documentation/en/howtos33_way=3&expand=7.html index 992c8b6..98a79ae 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=8.html b/documentation/en/howtos33_way=3&expand=8.html index babf13d..4b853e5 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=9.html b/documentation/en/howtos33_way=3&expand=9.html index c725722..dee6be0 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos33_way=3.html b/documentation/en/howtos33_way=3.html index b201ee5..0456060 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos34.html b/documentation/en/howtos34.html index b0290b4..b8f6aad 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos40.html b/documentation/en/howtos40.html index 0a245eb..d584f50 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos41_expand=2.html b/documentation/en/howtos41_expand=2.html index b81fe10..dabe2bb 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos41_expand=3.html b/documentation/en/howtos41_expand=3.html index 83c967b..418620b 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos41_expand=4.html b/documentation/en/howtos41_expand=4.html index f50e069..a2477b9 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos41_expand=5.html b/documentation/en/howtos41_expand=5.html index 494ecfa..46ee7af 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos42.html b/documentation/en/howtos42.html index 6c53926..c501032 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos42_expand=1.html b/documentation/en/howtos42_expand=1.html index 22d87c5..c02d19e 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos42_expand=2.html b/documentation/en/howtos42_expand=2.html index fbda0cb..e0e315c 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos42_expand=3.html b/documentation/en/howtos42_expand=3.html index d0a88f9..e18d609 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos42_expand=4.html b/documentation/en/howtos42_expand=4.html index 988b1a7..fcdc6ac 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos43.html b/documentation/en/howtos43.html index fa34aad..663b0cd 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos43_expand=2.html b/documentation/en/howtos43_expand=2.html index 30d0221..250821d 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos43_expand=3.html b/documentation/en/howtos43_expand=3.html index b845654..42c6c64 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos43_expand=4.html b/documentation/en/howtos43_expand=4.html index 0a7bb70..7332ffb 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos43_expand=5.html b/documentation/en/howtos43_expand=5.html index e7da7d5..c1f5b17 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos50.html b/documentation/en/howtos50.html index efa8f53..9a3ed0a 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos51_expand=1.html b/documentation/en/howtos51_expand=1.html index 727cf39..936d716 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos52.html b/documentation/en/howtos52.html index a0c0492..b638775 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos52_expand=1.html b/documentation/en/howtos52_expand=1.html index 890b390..93f76c9 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos53.html b/documentation/en/howtos53.html index 2f5063d..f621876 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos53_expand=1.html b/documentation/en/howtos53_expand=1.html index b4eb39a..a929e12 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos59.html b/documentation/en/howtos59.html index e6b2c1f..fd70dac 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos59_expand=2.html b/documentation/en/howtos59_expand=2.html index 9eed6ea..52b3ca7 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos59_expand=3.html b/documentation/en/howtos59_expand=3.html index 8a47f6f..27e8161 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos59_expand=4.html b/documentation/en/howtos59_expand=4.html index e48e1f1..43f1128 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos59_expand=5.html b/documentation/en/howtos59_expand=5.html index d6df4f7..0e3957f 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos60.html b/documentation/en/howtos60.html index 7a8ff89..c1ab7aa 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos91_expand=1.html b/documentation/en/howtos91_expand=1.html index 1a5c056..314434b 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos91_expand=2.html b/documentation/en/howtos91_expand=2.html index fdf95fd..f5208eb 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos91_expand=3.html b/documentation/en/howtos91_expand=3.html index 651ea2f..c44c6f4 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos91_expand=4.html b/documentation/en/howtos91_expand=4.html index 46b289a..efe74fa 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos92.html b/documentation/en/howtos92.html index a22b922..35519b2 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos92_expand=1.html b/documentation/en/howtos92_expand=1.html index 385fa70..f83c3ef 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos92_expand=2.html b/documentation/en/howtos92_expand=2.html index 77e2565..d7c70e4 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos92_expand=3.html b/documentation/en/howtos92_expand=3.html index 9d0ca0d..b9bd2f9 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 (pl2)  To the Internet version diff --git a/documentation/en/howtos92_expand=4.html b/documentation/en/howtos92_expand=4.html index 61fd85d..f14ec26 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 (pl2)  To the Internet version 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..c5b983e 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtosa2.html b/documentation/en/howtosa2.html index cd59104..9aa786f 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtosa2_expand=2.html b/documentation/en/howtosa2_expand=2.html index 3b8779b..bab2b37 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 (pl2)  To the Internet version diff --git a/documentation/en/howtosa3.html b/documentation/en/howtosa3.html index beda15f..5865b6a 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/howtosa3_expand=2.html b/documentation/en/howtosa3_expand=2.html index bc1b5c5..33894c4 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 (pl2)  To the Internet version diff --git a/documentation/en/howtosa4.html b/documentation/en/howtosa4.html index c4f0a05..c488ae1 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version @@ -122,29 +123,37 @@ Such functions are outside the scope of dvdisaster's internal design and goals.<

+ 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

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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/en/index10_expand=2.html b/documentation/en/index10_expand=2.html index 42bc537..1d0bdf6 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 (pl2)  To the Internet version diff --git a/documentation/en/index20.html b/documentation/en/index20.html index 92bf31f..956556b 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version @@ -74,7 +75,58 @@

dvdisaster News

- + + + +
dvdisaster 0.72.1 releaseddvdisaster 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 +151,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 +177,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 +203,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 +230,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 +256,7 @@ Some minor bugs from the first release candidate have been removed.

 
- +
dvdisaster 0.71.27 releaseddvdisaster 0.71.27 released 18.01.2009
diff --git a/documentation/en/news.php b/documentation/en/news.php index 8708739..4eb4216 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..53bf528 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version 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 (pl2)  To the Internet version diff --git a/documentation/include/dict_de.php b/documentation/include/dict_de.php index 962966b..3d4325d 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 (pl2)  К интернет-версии @@ -102,7 +103,7 @@ dvdisaster имеется для последних в Приглашаем тестеров для предстоящих версий dvdisaster, но следует иметь в виду, что остались еще ошибки и несоответствия. Текущая нестабильная версия - -0.72 (pl1). +0.72 (pl2). -->
 
@@ -110,22 +111,24 @@ dvdisaster имеется для последних в Стабильная версия - рекомендуется для начала.

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

+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..581452f 100644 --- a/documentation/ru/download.php +++ b/documentation/ru/download.php @@ -1,6 +1,6 @@ @@ -50,22 +51,60 @@ dvdisaster имеется для последних в Стабильная версия - рекомендуется для начала.

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

+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..a18c34f 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.7231-Oct-2010
- + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
Show older releases in the 0.72 version branch
Hide older releases in the 0.72 version branch
  Исходные тексты для всех операционных систем: 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 (pl2)  К интернет-версии diff --git a/documentation/ru/download10.php b/documentation/ru/download10.php index 9b508fc..ecbc578 100644 --- a/documentation/ru/download10.php +++ b/documentation/ru/download10.php @@ -1,6 +1,6 @@ - dvdisaster + + Цифровая подпись @@ -11,7 +12,7 @@
dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии @@ -112,7 +113,7 @@ GTK+.

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

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

+(например, dvdisaster-0.72.2-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..bf6f0b1 --- /dev/null +++ b/documentation/ru/download_showall=0.html @@ -0,0 +1,279 @@ + + + + + Скачать + + + + + + + + + + +
+ dvdisaster + Версия 0.72 (pl2) + +  К интернет-версии + + + +
+ + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + +
+ + + + +
+ Содержание + + + + +

+ + + + + + + + + + + + + + + + + +
Новости
Обзор
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.7231-Oct-2010
+ + + + + + + + + + + + + + + +
  Исходные тексты для всех операционных систем: 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
Show older releases in the 0.72 version branch
+
+Наиболее важные изменения в этой версии:

+

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

+ +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..1798485 --- /dev/null +++ b/documentation/ru/download_showall=1.html @@ -0,0 +1,305 @@ + + + + + Скачать + + + + + + + + + + +
+ dvdisaster + Версия 0.72 (pl2) + +  К интернет-версии + + + +
+ + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + +
+ + + + +
+ Содержание + + + + +

+ + + + + + + + + + + + + + + + + +
Новости
Обзор
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.7231-Oct-2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Исходные тексты для всех операционных систем: 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
Hide older releases in the 0.72 version branch
  Исходные тексты для всех операционных систем: 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 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos.html b/documentation/ru/howtos.html index f3b417b..aca947a 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии @@ -130,8 +131,8 @@
Соответствующие функции:

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

diff --git a/documentation/ru/howtos10.php b/documentation/ru/howtos10.php index 4feb98d..01ef288 100644 --- a/documentation/ru/howtos10.php +++ b/documentation/ru/howtos10.php @@ -1,6 +1,6 @@ - dvdisaster + + Основные настройки @@ -11,7 +12,7 @@ dvdisaster - Версия 0.72 (pl1) + Версия 0.72 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=2.html b/documentation/ru/howtos11_expand=2.html index a6c4923..1932dbe 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=3.html b/documentation/ru/howtos11_expand=3.html index 236b24b..27fc7fb 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=4.html b/documentation/ru/howtos11_expand=4.html index 9da3a68..f2839b0 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=5.html b/documentation/ru/howtos11_expand=5.html index 0036e7c..dd66dd2 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos12.html b/documentation/ru/howtos12.html index 316d3b0..26eebe9 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos12_expand=1.html b/documentation/ru/howtos12_expand=1.html index 9eb17a6..1c75108 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13.html b/documentation/ru/howtos13.html index 4f3c08c..0dd9aab 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=2.html b/documentation/ru/howtos13_expand=2.html index e068821..d83c5e3 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=3.html b/documentation/ru/howtos13_expand=3.html index 2883c7a..9c16fa6 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=4.html b/documentation/ru/howtos13_expand=4.html index 69aaf15..dc599f7 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=5.html b/documentation/ru/howtos13_expand=5.html index 9b36e69..2312d0d 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=6.html b/documentation/ru/howtos13_expand=6.html index 874b04f..98e7b65 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos14.html b/documentation/ru/howtos14.html index d6c3ac5..628b0bf 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos14_expand=2.html b/documentation/ru/howtos14_expand=2.html index ab2093e..c72121e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos20.html b/documentation/ru/howtos20.html index 6993428..ba2869a 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=2.html b/documentation/ru/howtos21_answer=2.html index 895d06b..acff9de 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=3.html b/documentation/ru/howtos21_answer=3.html index d506d3c..de428db 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=4.html b/documentation/ru/howtos21_answer=4.html index 6f987b0..2b25fa8 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22.html b/documentation/ru/howtos22.html index 768a6bb..902c104 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=2.html b/documentation/ru/howtos22_expand=2.html index f69542c..abec9cd 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=3.html b/documentation/ru/howtos22_expand=3.html index fb5dcc7..3aea5a5 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=4.html b/documentation/ru/howtos22_expand=4.html index 117b1c6..a05fe44 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=5.html b/documentation/ru/howtos22_expand=5.html index 3287f8e..2f1601c 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=6.html b/documentation/ru/howtos22_expand=6.html index 0e8cfae..09033d3 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23.html b/documentation/ru/howtos23.html index ae54949..1e2f154 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=1.html b/documentation/ru/howtos23_way=1&expand=1.html index d0718ce..9ad1640 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=2.html b/documentation/ru/howtos23_way=1&expand=2.html index beaf6eb..f152b0d 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1.html b/documentation/ru/howtos23_way=1.html index d729e05..a64d6aa 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=0.html b/documentation/ru/howtos23_way=2&expand=0.html index a6cf8eb..00a3b4a 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=1.html b/documentation/ru/howtos23_way=2&expand=1.html index 04e4a3d..87a05dc 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=2.html b/documentation/ru/howtos23_way=2&expand=2.html index f4e2ef2..d463a5b 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2.html b/documentation/ru/howtos23_way=2.html index a6cf8eb..00a3b4a 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos24.html b/documentation/ru/howtos24.html index 4293141..2963289 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos25_expand=2.html b/documentation/ru/howtos25_expand=2.html index 6cbaaba..8fea09e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos30.html b/documentation/ru/howtos30.html index ab7d6b3..e5abf6a 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos32_expand=2.html b/documentation/ru/howtos32_expand=2.html index c0f54b8..654d24b 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33.html b/documentation/ru/howtos33.html index 5b57ba9..3756db8 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=1.html b/documentation/ru/howtos33_expand=1.html index 5f8afb6..d66a8f8 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=2.html b/documentation/ru/howtos33_expand=2.html index fceb81d..32f25c2 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=0.html b/documentation/ru/howtos33_way=0&expand=0.html index 7933b06..108c928 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=1.html b/documentation/ru/howtos33_way=0&expand=1.html index 8632693..a9cc92e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=2.html b/documentation/ru/howtos33_way=0&expand=2.html index 456e65e..23be801 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0.html b/documentation/ru/howtos33_way=0.html index 7933b06..108c928 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&.html b/documentation/ru/howtos33_way=1&.html index f5a6f0c..3ed7095 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=0.html b/documentation/ru/howtos33_way=1&expand=0.html index f5a6f0c..3ed7095 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=1.html b/documentation/ru/howtos33_way=1&expand=1.html index bf79488..382acf4 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=2.html b/documentation/ru/howtos33_way=1&expand=2.html index 0e03711..4511cc7 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=3.html b/documentation/ru/howtos33_way=1&expand=3.html index a04319f..3b78562 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=4.html b/documentation/ru/howtos33_way=1&expand=4.html index cb42914..b4b8c02 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=5.html b/documentation/ru/howtos33_way=1&expand=5.html index 1f7d6cd..9204ac1 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=6.html b/documentation/ru/howtos33_way=1&expand=6.html index 27e7fa4..1ad5a87 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=7.html b/documentation/ru/howtos33_way=1&expand=7.html index 2d41a71..56a5fbd 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1.html b/documentation/ru/howtos33_way=1.html index f5a6f0c..3ed7095 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&.html b/documentation/ru/howtos33_way=2&.html index fb61022..ce3814e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=0.html b/documentation/ru/howtos33_way=2&expand=0.html index fb61022..ce3814e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=1.html b/documentation/ru/howtos33_way=2&expand=1.html index 998318d..44a1070 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=2.html b/documentation/ru/howtos33_way=2&expand=2.html index 02f6d4a..70efe95 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=3.html b/documentation/ru/howtos33_way=2&expand=3.html index 3e4a1c3..90654d8 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=4.html b/documentation/ru/howtos33_way=2&expand=4.html index e4c388b..ea81b6f 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=5.html b/documentation/ru/howtos33_way=2&expand=5.html index ab8eb08..9495e87 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=6.html b/documentation/ru/howtos33_way=2&expand=6.html index 4dce1ad..cbb2bb3 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2.html b/documentation/ru/howtos33_way=2.html index fb61022..ce3814e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&.html b/documentation/ru/howtos33_way=3&.html index dba57a1..902438e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=0.html b/documentation/ru/howtos33_way=3&expand=0.html index dba57a1..902438e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=1.html b/documentation/ru/howtos33_way=3&expand=1.html index 966cb32..8ed80aa 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=10.html b/documentation/ru/howtos33_way=3&expand=10.html index f94526c..01aabaf 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=11.html b/documentation/ru/howtos33_way=3&expand=11.html index 8f0ea01..7559392 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=2.html b/documentation/ru/howtos33_way=3&expand=2.html index e490458..ffac154 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=3.html b/documentation/ru/howtos33_way=3&expand=3.html index 7bf55c4..5ad5286 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=4.html b/documentation/ru/howtos33_way=3&expand=4.html index 56834db..71b5d2f 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=5.html b/documentation/ru/howtos33_way=3&expand=5.html index d76bab2..b00ac6a 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=6.html b/documentation/ru/howtos33_way=3&expand=6.html index 526e005..12712e3 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=7.html b/documentation/ru/howtos33_way=3&expand=7.html index 2571462..0cc99a4 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=8.html b/documentation/ru/howtos33_way=3&expand=8.html index 42a6b26..6f5c5a2 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=9.html b/documentation/ru/howtos33_way=3&expand=9.html index 87d50c5..bb53219 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3.html b/documentation/ru/howtos33_way=3.html index dba57a1..902438e 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos34.html b/documentation/ru/howtos34.html index 576719e..3bf5d4d 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos40.html b/documentation/ru/howtos40.html index e98bd38..cb8b3ff 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=2.html b/documentation/ru/howtos41_expand=2.html index 8d55384..2d81a31 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=3.html b/documentation/ru/howtos41_expand=3.html index d8e5513..ef7b80d 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=4.html b/documentation/ru/howtos41_expand=4.html index b09499b..acdec3d 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=5.html b/documentation/ru/howtos41_expand=5.html index 25b588a..3d19639 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos42.html b/documentation/ru/howtos42.html index 8fc0fe1..f588cf0 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=1.html b/documentation/ru/howtos42_expand=1.html index 54066a5..5350ff9 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=2.html b/documentation/ru/howtos42_expand=2.html index a2e42bc..32fca71 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=3.html b/documentation/ru/howtos42_expand=3.html index bf8ef32..1bb8fd5 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=4.html b/documentation/ru/howtos42_expand=4.html index c3f33c4..6b7f703 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos43.html b/documentation/ru/howtos43.html index 4153f1f..7ef89e9 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=2.html b/documentation/ru/howtos43_expand=2.html index 8eb24ae..b7611bf 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=3.html b/documentation/ru/howtos43_expand=3.html index 3aff67d..7bb5f4a 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=4.html b/documentation/ru/howtos43_expand=4.html index c2b7bb9..c71473b 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=5.html b/documentation/ru/howtos43_expand=5.html index 7dabb20..7b82ce6 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos50.html b/documentation/ru/howtos50.html index 0f4d90a..1317335 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos51_expand=1.html b/documentation/ru/howtos51_expand=1.html index b817481..e8502e9 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos52.html b/documentation/ru/howtos52.html index f69b8cf..ea74441 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos52_expand=1.html b/documentation/ru/howtos52_expand=1.html index 2e7e3d8..ce8aeb3 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos53.html b/documentation/ru/howtos53.html index bb3ba42..1dbda46 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos53_expand=1.html b/documentation/ru/howtos53_expand=1.html index 4c52a0f..60d1efc 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos59.html b/documentation/ru/howtos59.html index b225d0e..0320a5e 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=2.html b/documentation/ru/howtos59_expand=2.html index e4d9921..e148bbb 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=3.html b/documentation/ru/howtos59_expand=3.html index aa4884d..a89c993 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=4.html b/documentation/ru/howtos59_expand=4.html index 7c3e421..9c95c43 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=5.html b/documentation/ru/howtos59_expand=5.html index 911738e..ba7660c 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos60.html b/documentation/ru/howtos60.html index 339e1dc..db6592c 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=1.html b/documentation/ru/howtos91_expand=1.html index d258406..1c5dd09 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=2.html b/documentation/ru/howtos91_expand=2.html index fc3a006..6403380 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=3.html b/documentation/ru/howtos91_expand=3.html index b13ba53..6c02729 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=4.html b/documentation/ru/howtos91_expand=4.html index 03ef5cb..feb6f5f 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos92.html b/documentation/ru/howtos92.html index 8cf780c..68bc274 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=1.html b/documentation/ru/howtos92_expand=1.html index 4b78ac4..2cb9969 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=2.html b/documentation/ru/howtos92_expand=2.html index 609ff11..76d8d1b 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=3.html b/documentation/ru/howtos92_expand=3.html index 40ea575..0ce8841 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=4.html b/documentation/ru/howtos92_expand=4.html index 0a192d9..5d231ca 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtosa2.html b/documentation/ru/howtosa2.html index c91c0e3..9a25cf3 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtosa2_expand=2.html b/documentation/ru/howtosa2_expand=2.html index 82f7ef6..e332fc8 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtosa3.html b/documentation/ru/howtosa3.html index b36ae57..1089a64 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtosa3_expand=2.html b/documentation/ru/howtosa3_expand=2.html index 6e9e75a..0d59c29 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 (pl2)  К интернет-версии diff --git a/documentation/ru/howtosa4.html b/documentation/ru/howtosa4.html index efc1df7..1b0612b 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии @@ -121,25 +122,33 @@ dvdisaster хранит данные на CD/DVD (по

+ 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 (pl2)  
К интернет-версии 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 (pl2)  К интернет-версии diff --git a/documentation/ru/index10_expand=2.html b/documentation/ru/index10_expand=2.html index d68b59b..0b1bd73 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 (pl2)  К интернет-версии diff --git a/documentation/ru/index20.html b/documentation/ru/index20.html index 2ae2973..b6fad39 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии @@ -74,7 +75,58 @@

Новости dvdisaster

- + + + +
dvdisaster 0.72.1 releaseddvdisaster 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 +151,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 +177,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 +204,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 +230,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..9f9d13a 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..de55777 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии 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 (pl2)  К интернет-версии diff --git a/ds-marker.c b/ds-marker.c index 0485760..81aad8a 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-2010 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..70e1e2c 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-2010 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -442,7 +442,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 +507,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 +755,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 +915,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..dc5641e 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-2010 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..86f5aa9 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-2010 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..b4c7d84 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-2010 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..8dfb37a 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-2010 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..3e4f72b 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-2010 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..8fe4405 100644 --- a/fingerprints.md5 +++ b/fingerprints.md5 @@ -1,72 +1,72 @@ -528d88538b60d7d2468c900fad000b10 *dvdisaster.h -41207624d815a1a858915240dc18bbd9 *galois-inlines.h +388d45ac98aa3c00b1cafc23ba9b7358 *dvdisaster.h +bbad982ecf32cfe60c553aedfba6d304 *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 +bbc504cc1b0cc8e38a6280f69cd8e758 *read-linear.h +e38fb7ebe5f9260cd0d66b6207fdd431 *rs01-includes.h +0f3d5161d279f1a616be1613f314d777 *rs02-includes.h +b390d2b016bd86ad75758ab4b1701f5e *scsi-layer.h +ff2c3ab121d96d86bc77ebf1641f4883 *udf.h +6a7edd2814d3ac1ef1588ec00a97cacf *bitmap.c +89015923c38c8f6000b01a4c57b70826 *build.c +146f7ce7fe24fa4a5342f89fcd126779 *closure.c +aa5d77bf3a7ff0ef25900ffe2abc92ab *crc32.c +cfcbedd535eb374cfa308a421e2854ab *crcbuf.c +aab0f4dd4774752006bddf1a0ad528e6 *curve.c +a999501f79e09d469a79fb970470d63b *debug.c +ab73b53d72c254a76f29c8235f38574b *ds-marker.c +2efa936e7f14da666db335ad3370ec67 *dvdisaster.c +8da064dc6f361938dd154e4d3cfab935 *ecc-rs01.c +9fbca939f1ea82c4a047e7a6043e7165 *ecc-rs02.c +c68358cda5a88fdd0a6ba345104fd854 *endian.c +c4156e982c41bb2891604ac77b20a725 *file.c +52c7a852ddd995b3cd9045ba5243b350 *galois.c +9d9ed94bbdb898f19cfbd81f830f518a *help-dialogs.c +dfe6b11d934af5753cd560977c7b27e6 *heuristic-lec.c +b53c292e7b9178d3564285ff9dfbd6a4 *icon-factory.c +74b770fbd2496fc9762adbd6bf79926a *large-io.c +f413c2ed2853a6602c562007ba434c1f *l-ec.c +c41b2e2dd250a40c7cc9cdbdbcd7e0dd *logfile.c +299f89add114ef9756d4eb1e2b256ca8 *maintenance.c +5ab7786a99bf3c6fa2e6c588777908db *main-window.c 9f8e7da67068ae5229eef9bab8fa18a2 *md5.c -61dd02ebd3a633dabad1022dc3da5c77 *medium-info.c -d9536c5fb18adf38e04b0d9852daca29 *memtrack.c -44c1d3da53df9cf0e3ec333cb4356636 *menubar.c -7f512f7bd753fb642a593c5a3f67a25d *method.c +70673a9c78a66eaaa3e2a4fcd142ada1 *medium-info.c +5d0ebc6a13f961cb0d6763746c0fb2c2 *memtrack.c +51a891756ec18e32b5491ff8b129cbd7 *menubar.c +2d9c3a32321034a6366de065ba27e41c *method.c eecfd7e236c89cc36e1de2062754ac2e *method-link.c -e0d0f9eef7888e3ee39a2eaba43df55a *misc.c -23efd00e8952b3d6d8d223d60ed281fd *preferences.c -2d6acb30cac5dee16a208f49c13706b8 *print-sense.c +9811e783887278476c0651c5cac23111 *misc.c +2b0b1c9f568837e509ecdc315bd88d70 *preferences.c +ffef810c1252bd4e376a550ea075325d *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 +851ed918f67eefe054fb7cd7bb1d43fb *raw-editor.c +7f685e600048f9ed3ef59c2beae34d58 *raw-sector-cache.c +ad4110856dfc05367a79c872d1359df4 *read-adaptive.c +31d0341977a3299efca4e6693f2ee236 *read-adaptive-window.c +1b7bed0551a41a6c463ea6f396b63c0a *read-linear.c +c69766be51625d39095c60af6aec63fd *read-linear-window.c +9b515faab05da0f5ad8d7ea3cf534e48 *recover-raw.c +42be3fb04244e10b191acfeeb4331245 *rs01-common.c +40ea9cfbdee89b9340c45b6ae2103065 *rs01-create.c +ab16484e8cd2ca408dbd98b32a7eac24 *rs01-fix.c +655fa19a3398c736bf3022b0b1a8a9b1 *rs01-verify.c +9077c2d3b5c3b02e9e888f99a84e504d *rs01-window.c +d7e1183402184b0862e108059a3b11ac *rs02-common.c +82aacb3dd1a643525e26defee01f3edb *rs02-create.c +5fe3a5f05e197a7506707dbcc38860df *rs02-fix.c +1964ac21e6cef70dae0dece6a73cbb77 *rs02-verify.c +351f1dd265971ec0ce0458a770da967a *rs02-window.c +bde513921aebd7e27365a7f3445ad3eb *rs-encoder.c +0d1efe7aed2bfbedc4a9ba16e4a7d0a9 *rs-encoder-sse2.c +b0ede9242e26fef016100979b56f3b29 *scsi-darwin.c +29d951d863df05988897ccd19e446ee1 *scsi-freebsd.c +73d6a929f1e8a49c38e0e17d37b46d0c *scsi-layer.c +d17049d80f3648f29af6bfea15e38e67 *scsi-linux.c +0a8fd25e6fbaa15e161625b0d6035549 *scsi-netbsd.c +a8af22b1a5e47b5ccc4bb36dd644376b *scsi-solaris.c +60a969a1b1ce76e00553336e1f24891c *scsi-unknown.c +2fb32f60a38932993f9e530ddc5a58a6 *scsi-win32.c +8cd5adbfe54a86545b5992b839bc6b3f *show-manual.c +c12be6c253da9798bbab9bc3020874c3 *smart-lec.c +1b95ce545027ebf93b53e51bd88ea48f *spiral.c +adab99b18c0c6664bb53fd52a3255847 *udf.c +f14ca3983a3734b3b946fbfe63a6826d *welcome-window.c diff --git a/galois-inlines.h b/galois-inlines.h index eddf33d..f2a4f76 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-2010 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..845d708 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-2010 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..f9bafe6 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-2010 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 2010 (please fill in - [directions])\n" + "Copyright 2004-2010 Carsten Gnoerlich"), "MODIFYING"); #else - AboutText(vbox, _("Copyright 2004-2009 Carsten Gnoerlich")); + AboutText(vbox, _("Copyright 2004-2010 Carsten Gnoerlich")); #endif sep = gtk_hseparator_new(); diff --git a/heuristic-lec.c b/heuristic-lec.c index fa57de2..2ebfb3f 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-2010 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..5c5e1c0 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-2010 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..07d557f 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-2010 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..e441904 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-2010 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * diff --git a/locale/cs.po b/locale/cs.po index e984071..7ca6e8b 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,7 +8,7 @@ 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: 2010-11-07 16:44+0100\n" "PO-Revision-Date: 2006-03-16 20:40+0100\n" "Last-Translator: Luboš Staněk \n" "Language-Team: čeština \n" @@ -31,15 +31,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 +84,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 +170,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 +201,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 +360,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 +389,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 +403,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 +427,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 +442,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 +450,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 +487,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -506,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" @@ -514,7 +522,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -543,26 +551,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 +575,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 +588,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 +597,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 +613,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 +653,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 Carsten Gnoerlich" msgstr "" -#: help-dialogs.c:713 -msgid "Copyright 2004-2009 Carsten Gnoerlich" +#: help-dialogs.c:730 +msgid "Copyright 2004-2010 Carsten Gnoerlich" msgstr "" -"Copyright 2004-2009 Carsten Gnörlich\n" +"Copyright 2004-2010 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 +705,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 +715,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 +725,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 +871,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 +936,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 +960,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 +1112,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 +1214,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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1229,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 +2263,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 +2510,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 +2568,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 +2661,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 +3699,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 +4239,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 +4252,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 +4281,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 +4299,7 @@ msgstr "" "%s\n" "Nelze načíst TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4294,12 +4308,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 +4322,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 +4331,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 +4344,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 +4358,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 +4386,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 +4400,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 +4425,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 +4439,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4433,15 +4447,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 +4466,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 +4475,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 +4483,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 +4535,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4530,7 +4544,7 @@ msgstr "" "\n" "Zařízení: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4539,52 +4553,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 +4651,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 +4660,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 +4718,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 +4739,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 +4748,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 +4790,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..dc78c25 100644 --- a/locale/de.po +++ b/locale/de.po @@ -1,14 +1,14 @@ # 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: 2010-11-07 16:44+0100\n" "PO-Revision-Date: 2004-11-30 19:48+0100\n" "Last-Translator: Carsten Gnörlich \n" "Language-Team: German \n" @@ -30,15 +30,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 +83,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 +170,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 +201,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 +401,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 +432,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 +449,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 +473,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 +488,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 +496,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 +543,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 +557,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 +606,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 +618,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 +647,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 +671,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 +684,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 +693,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 +702,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 +711,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 +751,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 +782,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 Carsten Gnoerlich" msgstr "" -"Veränderte Version Copyright 2009 (bitte eintragen - [Hinweise])\n" -"Original-Programm Copyright 2004-2009 Carsten Gnörlich" +"Veränderte Version Copyright 2010 (bitte eintragen - [Hinweise])\n" +"Original-Programm Copyright 2004-2010 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-2010 Carsten Gnoerlich" +msgstr "Copyright 2004-2010 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 +810,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 +819,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 +835,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 +843,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 +851,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 +992,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 +1059,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 +1083,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 +1235,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 +1337,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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1350,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 +2566,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 +2824,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 +2882,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 +2975,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 +4052,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 +4667,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 +4681,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 +4710,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 +4728,7 @@ msgstr "" "%s\n" "Konnte Inhaltsverzeichnis nicht lesen.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4718,12 +4737,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 +4751,7 @@ msgstr "" "%s\n" "Konnte erweitertes Inhaltsverzeichnis nicht lesen.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4741,11 +4760,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 +4773,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 +4789,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 +4803,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 +4812,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 +4822,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 +4838,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 +4863,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 +4881,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 +4889,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 +4908,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 +4917,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 +4925,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 +4934,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 +4943,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 +4984,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4974,7 +4993,7 @@ msgstr "" "\n" "Laufwerk: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4983,54 +5002,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 +5105,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 +5114,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 +5173,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 +5199,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 +5214,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 +5265,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..9e8ef05 100644 --- a/locale/it.po +++ b/locale/it.po @@ -1,14 +1,14 @@ # 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: 2010-11-07 16:44+0100\n" "PO-Revision-Date: 2005-01-01 14:24+0100\n" "Last-Translator: Andrea Polverini \n" "Language-Team: Italian <>\n" @@ -30,15 +30,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 +81,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 +168,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 +199,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 +356,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 +385,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 +399,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 +423,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 +438,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 +446,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 +483,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -502,7 +510,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 +518,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -539,26 +547,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 +571,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 +584,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 +593,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 +602,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 +611,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 +651,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 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-2010 Carsten Gnoerlich" +msgstr "Copyright 2004-2010 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 +701,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 +713,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 +723,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 +864,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 +929,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 +953,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 +1105,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 +1207,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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1222,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 +2256,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 +2505,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 +2563,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 +2656,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 +3702,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 +4227,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 +4241,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 +4270,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 +4288,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 +4297,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 +4311,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 +4320,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 +4333,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 +4347,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 +4375,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 +4391,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 +4416,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 +4434,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 +4442,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 +4462,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 +4471,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 +4479,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 +4531,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4526,7 +4540,7 @@ msgstr "" "\n" "Periferica: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4535,52 +4549,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 +4645,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 +4654,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 +4713,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 +4734,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 +4743,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 +4785,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..8916d2c 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -1,14 +1,14 @@ # 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: 2010-11-07 16:44+0100\n" +"PO-Revision-Date: 2010-06-09 11:13+0200\n" "Last-Translator: cg \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -29,15 +29,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 +82,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 +168,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 +199,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 +396,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 +427,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 +443,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 +467,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 +482,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 +490,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 +537,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 +550,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 +597,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 +609,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 +638,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 +662,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 +675,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 +684,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 +693,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 +702,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 +742,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 +768,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 Carsten Gnoerlich" msgstr "" -"Versão modificada Copyright 2009 (por favor, preencha - [instruções])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Versão modificada Copyright 2010 (por favor, preencha - [instruções])\n" +"Copyright 2004-2010 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-2010 Carsten Gnoerlich" +msgstr "Copyright 2004-2010 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 +796,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 +808,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 +824,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 +832,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 +840,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 +979,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 +1046,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 +1070,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 +1222,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 +1324,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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1341,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 +2553,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 +2807,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 +2865,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 +2958,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 +4030,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 +4646,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 +4659,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 +4688,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 +4706,7 @@ msgstr "" "%s\n" "Impossível ler TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4701,12 +4715,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 +4729,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 +4738,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 +4751,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 +4765,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 +4779,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 +4788,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 +4797,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 +4811,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 +4836,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 +4853,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 +4861,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 +4880,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 +4889,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 +4897,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 +4913,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 +4954,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4949,7 +4963,7 @@ msgstr "" "\n" "Dispositivo: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4958,52 +4972,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 +5072,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 +5081,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 +5139,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 +5165,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 +5179,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 +5230,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..71231da 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -1,16 +1,16 @@ # 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: 2010-11-07 16:44+0100\n" +"PO-Revision-Date: 2010-07-23 08:11+0300\n" "Last-Translator: Igor Gorbounov \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -31,15 +31,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 +84,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 +170,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 +201,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 +398,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 +430,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 +447,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 +471,7 @@ msgstr "" " dvdisaster -u,--unlink # Удалить файлы .iso (по завершении других действий)\n" "\n" -#: dvdisaster.c:885 +#: dvdisaster.c:902 #, c-format msgid "" "Drive and file specification:\n" @@ -486,7 +486,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 +494,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 +530,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 +580,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 +592,7 @@ msgstr "" "(также содержится в этом установочном пакете).\n" "\n" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "Оптический привод 52X FW 1.02" @@ -637,26 +621,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 +645,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 +658,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 +667,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 +676,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 +685,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 +725,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 +751,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 Carsten Gnoerlich" msgstr "" -"Измененнная версия Copyright 2009 (пожалуйста, заполните - [инструкции])\n" -"Copyright 2004-2009 Carsten Gnoerlich" +"Измененнная версия Copyright 2010 (пожалуйста, заполните - [инструкции])\n" +"Copyright 2004-2010 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-2010 Carsten Gnoerlich" +msgstr "Copyright 2004-2010 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 +779,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 +791,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 +807,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 +815,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 +823,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 +962,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 +1029,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 +1053,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 +1205,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 +1307,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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1324,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 +2539,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 +2793,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 +2851,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 +2944,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 +4016,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 +4634,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 +4647,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 +4676,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 +4694,7 @@ msgstr "" "%s\n" "Не удалось прочитать TOC.\n" -#: scsi-layer.c:515 +#: scsi-layer.c:533 #, c-format msgid "" "%s\n" @@ -4713,12 +4703,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 +4717,7 @@ msgstr "" "%s\n" "Не удалось прочитать всю TOC.\n" -#: scsi-layer.c:560 +#: scsi-layer.c:580 #, c-format msgid "" "\n" @@ -4736,11 +4726,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 +4739,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 +4753,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 +4767,7 @@ msgstr "" "%s\n" "Не удалось запросить размер структуры BD диска.\n" -#: scsi-layer.c:970 +#: scsi-layer.c:995 #, c-format msgid "" "%s\n" @@ -4786,7 +4776,7 @@ msgstr "" "%s\n" "Не удалось запросить структуру BD диска.\n" -#: scsi-layer.c:1646 +#: scsi-layer.c:1677 #, c-format msgid "" "%s\n" @@ -4795,12 +4785,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 +4799,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 +4824,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 +4842,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 +4850,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 +4869,7 @@ msgstr "" "Использование значения меньшего, чем это, работает на >90%% приводов,\n" "но ПРОДОЛЖАЙТЕ НА СВОЙ РИСК (образ может быть неполным/непригодным)" -#: scsi-layer.c:1948 +#: scsi-layer.c:1980 #, c-format msgid "" "Final decision: %s\n" @@ -4888,7 +4878,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 +4886,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 +4895,7 @@ msgstr "" "%s\n" "Не удалось загрузить/выгрузить носитель.\n" -#: scsi-layer.c:2097 +#: scsi-layer.c:2129 #, c-format msgid "" "%s\n" @@ -4914,37 +4904,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 +4945,7 @@ msgstr "" "%s\n" "\n" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4964,7 +4954,7 @@ msgstr "" "\n" "Устройство: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4973,52 +4963,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 +5063,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 +5072,7 @@ msgstr "" "\n" "Неправильное имя устройства \"%s\" (используйте устройства \"C:\" ... \"Z:\")" -#: scsi-win32.c:659 +#: scsi-win32.c:662 #, c-format msgid "" "\n" @@ -5140,19 +5130,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 +5156,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 +5170,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 +5221,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..dd91165 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,7 +7,7 @@ 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: 2010-11-07 16:44+0100\n" "PO-Revision-Date: 2006-06-14 23:48+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -29,15 +29,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 +82,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 +168,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 +199,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 +358,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 +387,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 +401,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 +426,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 +441,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 +449,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 +486,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:924 +#: dvdisaster.c:944 #, c-format msgid "" "Debugging options (purposefully undocumented and possibly harmful)\n" @@ -505,7 +513,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 +521,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:969 +#: dvdisaster.c:989 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -542,26 +550,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 +574,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 +587,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 +596,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 +605,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 +614,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 +654,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 2010 (please fill in - [directions])\n" +"Copyright 2004-2010 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-2010 Carsten Gnoerlich" +msgstr "Copyright 2004-2010 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 +704,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 +716,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 +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>" @@ -854,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 "okänd" @@ -919,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 "Inga enheter hittade" @@ -943,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 "" @@ -1095,71 +1113,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 +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-2010 Carsten Gnoerlich.\n" +msgstr "dvdisaster-%s%sCopyright 2004-2010 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 +1230,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 +2265,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 +2512,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 +2570,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 +2663,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 +3708,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 +4254,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 +4267,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 +4296,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 +4314,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 +4323,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 +4337,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 +4346,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 +4359,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 +4373,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 +4401,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 +4415,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 +4440,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 +4454,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:1874 +#: scsi-layer.c:1906 msgid "" "Evaluation of returned medium sizes:\n" "\n" @@ -4448,15 +4462,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 +4481,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 +4490,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 +4498,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 +4550,7 @@ msgid "" "\n" msgstr "" -#: scsi-layer.c:2547 +#: scsi-layer.c:2579 #, c-format msgid "" "\n" @@ -4545,7 +4559,7 @@ msgstr "" "\n" "Enhet: %s, %s\n" -#: scsi-layer.c:2551 +#: scsi-layer.c:2583 #, c-format msgid "" "\n" @@ -4554,52 +4568,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 +4666,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 +4675,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 +4733,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 +4754,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 +4763,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 +4805,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..dfcb4ea 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-2010 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..ebe4148 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-2010 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..5f006da 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-2010 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..407f4b2 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-2010 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..dd8159a 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-2010 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..ada6f44 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-2010 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..2931900 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-2010 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..7c770f0 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-2010 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..a83b4fc 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-2010 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..c14c220 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-2010 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..f3ea40e 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-2010 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..8b37520 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-2010 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..8bb7b6c 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-2010 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..6cf6c38 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-2010 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..dd0acc4 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-2010 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..8ecd7e8 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-2010 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..833e1b0 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-2010 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..97e79af 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-2010 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..c8c3edf 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-2010 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..8f819f0 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-2010 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..353e4af 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-2010 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..0e305ae 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-2010 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..02df031 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-2010 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..7749495 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-2010 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..f63011e 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-2010 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..fadd2e0 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-2010 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..c4bc41b 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-2010 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..b8810f8 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-2010 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..f9a7bcd 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-2010 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..28199ae 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-2010 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..31ad90e 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-2010 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..001d821 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-2010 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..9a15b33 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-2010 Carsten Gnoerlich. * Project home page: http://www.dvdisaster.com * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org * @@ -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..b11c97c 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-2010 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..bce0b5a 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-2010 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..d2b3f24 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-2010 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..14b77fc 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-2010 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..0dda660 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-2010 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..34f3c96 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-2010 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..4d73367 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-2010 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..ff429d0 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-2010 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..b418594 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-2010 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..3521ac1 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-2010 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..68eda37 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-2010 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"